diff --git a/.ai_context.md b/.ai_context.md new file mode 100644 index 0000000000000000000000000000000000000000..8e0b96caf62e247a177cf12abcc0c8d6b516b2f7 --- /dev/null +++ b/.ai_context.md @@ -0,0 +1,29 @@ +# ๐Ÿค– AI AGENT OPERATING INSTRUCTIONS +## Portable DevStation Pro (God-Tier Environment) + +This environment is designed for high-performance AI, Game, and Software Engineering. Any AI agent (like Gemini, Cursor, or GPT) operating here MUST adhere to these professional standards. + +### ๐Ÿ“ Environment Context +- **Root Directory:** The current folder where this file resides (Dynamic Portable Root). +- **Activation:** Always assume `activate_env.bat` has been run or use full paths from the root. +- **Portability:** NEVER write to `C:\` or system registries. All data must stay within the root. + +### ๐Ÿ› ๏ธ Mandatory Engineering Tools +When writing code, you MUST use these installed tools for quality control: +1. **Linting/Analysis:** Use `ruff` (Python) and `cppcheck` (C++/CUDA). +2. **Type Checking:** Use `mypy` for all Python code. +3. **Formatting:** Use `black` for Python to maintain a professional look. +4. **Testing:** All new features MUST have tests written in `pytest`. +5. **Documentation:** Use `mkdocs` for project manuals and `doxygen` for code-level docs. + +### ๐Ÿš€ High-Performance Libraries +- **Inference:** Prioritize `TensorRT 10.x` for NVIDIA GPU acceleration. +- **Deep Learning:** Use `cuDNN 9.22` with `CUDA 12.4`. +- **Compression:** Use `nvCOMP` for GPU-accelerated data handling. + +### ๐ŸŽจ Coding Style +- **Aesthetics:** Code must be clean, modular, and well-commented. +- **Master Level:** Use advanced CUDA kernels and modern C++20/Python 3.13 features. + +--- +*Note: This file ensures that any AI working in this environment maintains the "God-Tier" standard set during creation.* diff --git a/Easy_Setup.bat b/Easy_Setup.bat new file mode 100644 index 0000000000000000000000000000000000000000..2dd69ec86751f6757d9ff96890d42aa209e70d34 --- /dev/null +++ b/Easy_Setup.bat @@ -0,0 +1,94 @@ +@echo off +setlocal enabledelayedexpansion +title DEVSTATION PRO - ONE-CLICK SETUP +color 0B + +:: Get Admin Rights +>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" +if '%errorlevel%' NEQ '0' ( + echo [INFO] Requesting Admin Rights for System Integration... + goto UACPrompt +) else ( goto gotAdmin ) +:UACPrompt + echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" + echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs" + "%temp%\getadmin.vbs" + exit /B +:gotAdmin + if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) + +set "ROOT=%~dp0" +set "ROOT=%ROOT:~0,-1%" + +:menu +cls +echo. +echo ####################################################### +echo # # +echo # GOD-TIER PORTABLE DEVSTATION SETUP # +echo # # +echo ####################################################### +echo. +echo [1] PERMANENT INSTALL (Add to System PATH) +echo - Tools will work in ANY terminal (CMD/PowerShell) +echo. +echo [2] TEMPORARY SESSION (No System Changes) +echo - Just open a temporary session with tools active +echo. +echo [3] PORTABLE SYNC (Fix Paths for New Drive) +echo - Use this if you moved the folder to a new drive +echo. +echo [4] UNINSTALL (Remove from System PATH) +echo - Clean all paths from your computer +echo. +echo [5] EXIT +echo. +set /p choice="ENTER CHOICE (1-5): " + +if "%choice%"=="1" goto install +if "%choice%"=="2" goto temporary +if "%choice%"=="3" goto sync +if "%choice%"=="4" goto uninstall +if "%choice%"=="5" exit +goto menu + +:temporary +echo. +echo [INFO] Launching Temporary Session... +start cmd /k "scripts\activate_env.bat" +goto menu + +:install +echo. +echo [STEP 1] Syncing local paths... +set "MAMBA_ROOT_PREFIX=%ROOT%\micromamba_root" +"%ROOT%\micromamba\micromamba.exe" shell init -s cmd -p "%MAMBA_ROOT_PREFIX%" >nul 2>&1 + +echo [STEP 2] Building Global Path List... +:: Comprehensive paths for ALL tools (Dotnet at the front) +set "NP=%ROOT%\dotnet;%ROOT%\bin;%ROOT%\git\cmd;%ROOT%\git\bin;%ROOT%\node;%ROOT%\node24;%ROOT%\python;%ROOT%\python\Scripts;%ROOT%\cmake\bin;%ROOT%\rust\.cargo\bin;%ROOT%\go\bin;%ROOT%\cuda_toolkit\bin;%ROOT%\tensorrt\bin;%ROOT%\cudnn\bin\x64;%ROOT%\micromamba_root\Scripts;%ROOT%\micromamba_root\Library\bin;%ROOT%\micromamba_root\Library\usr\bin;%ROOT%\llvm\bin;%ROOT%\java\bin;%ROOT%\java21\bin;%ROOT%\php;%ROOT%\ffmpeg\bin;%ROOT%\svn\bin;%ROOT%\gh;%ROOT%\msbuild;%ROOT%\vulkan\Bin;%ROOT%\pgsql\bin;%ROOT%\sqlite;%ROOT%\directstorage\native\bin\x64" + +echo [STEP 3] Injecting into User Environment... +:: Set Global Environment Variables permanently +powershell -NoProfile -Command "[Environment]::SetEnvironmentVariable('DEVTOOLS_ROOT', '%ROOT%', 'User'); [Environment]::SetEnvironmentVariable('JAVA_HOME', '%ROOT%\java', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_ROOT', '%ROOT%\dotnet', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_ROOT(x86)', '%ROOT%\dotnet', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_MULTILEVEL_LOOKUP', '0', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_NOLOGO', '1', 'User'); [Environment]::SetEnvironmentVariable('DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR', '%ROOT%\dotnet', 'User'); [Environment]::SetEnvironmentVariable('GOROOT', '%ROOT%\go', 'User'); [Environment]::SetEnvironmentVariable('RUSTUP_HOME', '%ROOT%\rust\.rustup', 'User'); [Environment]::SetEnvironmentVariable('CARGO_HOME', '%ROOT%\rust\.cargo', 'User'); [Environment]::SetEnvironmentVariable('CUDA_PATH', '%ROOT%\cuda_toolkit', 'User'); [Environment]::SetEnvironmentVariable('CUDA_HOME', '%ROOT%\cuda_toolkit', 'User'); [Environment]::SetEnvironmentVariable('TENSORRT_HOME', '%ROOT%\tensorrt', 'User'); [Environment]::SetEnvironmentVariable('CUDNN_HOME', '%ROOT%\cudnn', 'User'); $oldPath = [Environment]::GetEnvironmentVariable('Path', 'User'); $newPath = '%NP%;' + $oldPath; $uniquePath = ($newPath.Split(';') | Select-Object -Unique | Where-Object { $_ -ne '' -and $_ -notlike '*C:\Program Files\dotnet*' }) -join ';'; [Environment]::SetEnvironmentVariable('Path', $uniquePath, 'User')" + +echo. +echo ======================================================= +echo [SUCCESS] ALL TOOLS ARE NOW INTEGRATED SYSTEM-WIDE! +echo Please RESTART your terminal (CMD/PowerShell). +echo Try running 'nvcc --version' or 'python --version'. +echo ======================================================= +pause +goto menu + +:sync +echo. +echo [INFO] Synchronizing paths to %ROOT%... +call "scripts\Portable_Fixer.bat" +goto menu + +:uninstall +echo. +echo [INFO] Launching Uninstaller... +call "scripts\Uninstall_Global_PATH.bat" +goto menu diff --git a/php/README.md b/php/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c5bc2fce4a7941e29af4f6884aac709e2bc22be0 --- /dev/null +++ b/php/README.md @@ -0,0 +1,172 @@ +
+ + PHP + +
+ +# The PHP Interpreter + +PHP is a popular general-purpose scripting language that is especially suited to +web development. Fast, flexible and pragmatic, PHP powers everything from your +blog to the most popular websites in the world. PHP is distributed under the +[PHP License v3.01](LICENSE). + +[![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml) +[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](https://issues.oss-fuzz.com/issues?q=project:php) + +## Documentation + +The PHP manual is available at [php.net/docs](https://www.php.net/docs). + +## Installation + +### Prebuilt packages and binaries + +Prebuilt packages and binaries can be used to get up and running fast with PHP. + +For Windows, the PHP binaries can be obtained from +[windows.php.net](https://windows.php.net). After extracting the archive the +`*.exe` files are ready to use. + +For other systems, see the [installation chapter](https://www.php.net/install). + +### Building PHP source code + +*For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).* + +For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For +a default build, you will additionally need libxml2 and libsqlite3. + +On Ubuntu, you can install these using: + +```shell +sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev +``` + +On Fedora, you can install these using: + +```shell +sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel +``` + +On MacOS, you can install these using `brew`: + +```shell +brew install autoconf bison re2c libiconv libxml2 sqlite +``` + +or with `MacPorts`: + +```shell +sudo port install autoconf bison re2c libiconv libxml2 sqlite3 +``` + +Generate configure: + +```shell +./buildconf +``` + +Configure your build. `--enable-debug` is recommended for development, see +`./configure --help` for a full list of options. + +```shell +# For development +./configure --enable-debug +# For production +./configure +``` + +Build PHP. To speed up the build, specify the maximum number of jobs using the +`-j` argument: + +```shell +make -j4 +``` + +The number of jobs should usually match the number of available cores, which +can be determined using `nproc`. + +## Testing PHP source code + +PHP ships with an extensive test suite, the command `make test` is used after +successful compilation of the sources to run this test suite. + +It is possible to run tests using multiple cores by setting `-jN` in +`TEST_PHP_ARGS` or `TESTS`: + +```shell +make TEST_PHP_ARGS=-j4 test +``` + +Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum +number of jobs should not exceed the number of cores available. + +Use the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories: + +```shell +make TESTS=tests/lang/ test +``` + +The [qa.php.net](https://qa.php.net) site provides more detailed info about +testing and quality assurance. + +## Installing PHP built from source + +After a successful build (and test), PHP may be installed with: + +```shell +make install +``` + +Depending on your permissions and prefix, `make install` may need superuser +permissions. + +## PHP extensions + +Extensions provide additional functionality on top of PHP. PHP consists of many +essential bundled extensions. Additional extensions can be found in the PHP +Extension Community Library - [PECL](https://pecl.php.net). + +## Contributing + +The PHP source code is located in the Git repository at +[github.com/php/php-src](https://github.com/php/php-src). Contributions are most +welcome by forking the repository and sending a pull request. + +Discussions are done on GitHub, but depending on the topic can also be relayed +to the official PHP developer mailing list internals@lists.php.net. + +New features require an RFC and must be accepted by the developers. See +[Request for comments - RFC](https://wiki.php.net/rfc) and +[Voting on PHP features](https://wiki.php.net/rfc/voting) for more information +on the process. + +Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in +the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old +[bugs.php.net](https://bugs.php.net) bug tracker. + + Fix GH-7815: php_uname doesn't recognise latest Windows versions + Fix #55371: get_magic_quotes_gpc() throws deprecation warning + +See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull +requests are merged. + +### Guidelines for contributors + +See further documents in the repository for more information on how to +contribute: + +- [Contributing to PHP](/CONTRIBUTING.md) +- [PHP coding standards](/CODING_STANDARDS.md) +- [Internal documentation](https://php.github.io/php-src/) +- [Mailing list rules](/docs/mailinglist-rules.md) +- [PHP release process](/docs/release-process.md) + +## Credits + +For the list of people who've put work into PHP, please see the +[PHP credits page](https://www.php.net/credits.php). diff --git a/php/readme-redist-bins.txt b/php/readme-redist-bins.txt new file mode 100644 index 0000000000000000000000000000000000000000..41c86c3982a1da0e532e10b7368687fe2848ae95 --- /dev/null +++ b/php/readme-redist-bins.txt @@ -0,0 +1,682 @@ + 1. libmagic (ext/fileinfo) see ext/fileinfo/libmagic/LICENSE + 2. libmbfl (ext/mbstring) see ext/mbstring/libmbfl/LICENSE + 3. pcre2lib (ext/pcre) + 4. ext/standard crypt + 5. ext/standard crypt's blowfish implementation + 6. ext/standard/rand + 7. ext/standard/scanf + 8. ext/standard/strnatcmp.c + 9. ext/standard/uuencode +10. main/snprintf.c +11. main/strlcat +12. main/strlcpy +13. libgd (ext/gd) +14. ext/phar portions of tar implementations +15. ext/phar/zip.c portion extracted from libzip +16. libbcmath (ext/bcmath) see ext/bcmath/libbcmath/LICENSE +17. ext/mbstring/ucgendat portions based on the ucgendat.c from the OpenLDAP +18. avifinfo (ext/standard/libavifinfo) see ext/standard/libavifinfo/LICENSE +19. xxHash (ext/hash/xxhash) +20. Lexbor (ext/lexbor/lexbor) see ext/lexbor/LICENSE +21. Portions of libcperciva (ext/hash/hash_sha_{ni,sse2}.c) see the header in the source file +22. uriparser (ext/uri/uriparser) see ext/uri/uriparser/COPYING + +3. pcre2lib (ext/pcre) + +PCRE2 LICENCE +------------- + +PCRE2 is a library of functions to support regular expressions whose syntax +and semantics are as close as possible to those of the Perl 5 language. + +Releases 10.00 and above of PCRE2 are distributed under the terms of the "BSD" +licence, as specified below, with one exemption for certain binary +redistributions. The documentation for PCRE2, supplied in the "doc" directory, +is distributed under the same terms as the software itself. The data in the +testdata directory is not copyrighted and is in the public domain. + +The basic library functions are written in C and are freestanding. Also +included in the distribution is a just-in-time compiler that can be used to +optimize pattern matching. This is an optional feature that can be omitted when +the library is built. + + +THE BASIC LIBRARY FUNCTIONS +--------------------------- + +Written by: Philip Hazel +Email local part: ph10 +Email domain: cam.ac.uk + +University of Cambridge Computing Service, +Cambridge, England. + +Copyright (c) 1997-2019 University of Cambridge +All rights reserved. + + +PCRE2 JUST-IN-TIME COMPILATION SUPPORT +-------------------------------------- + +Written by: Zoltan Herczeg +Email local part: hzmester +Email domain: freemail.hu + +Copyright(c) 2010-2019 Zoltan Herczeg +All rights reserved. + + +STACK-LESS JUST-IN-TIME COMPILER +-------------------------------- + +Written by: Zoltan Herczeg +Email local part: hzmester +Email domain: freemail.hu + +Copyright(c) 2009-2019 Zoltan Herczeg +All rights reserved. + + +THE "BSD" LICENCE +----------------- + +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 notices, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notices, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the name of the University of Cambridge nor the names of any + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +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 OWNER 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. + + +EXEMPTION FOR BINARY LIBRARY-LIKE PACKAGES +------------------------------------------ + +The second condition in the BSD licence (covering binary redistributions) does +not apply all the way down a chain of software. If binary package A includes +PCRE2, it must respect the condition, but if package B is software that +includes package A, the condition is not imposed on package B unless it uses +PCRE2 independently. + +End + + +4. ext/standard crypt + +FreeSec: libcrypt for NetBSD + +Copyright (c) 1994 David Burren +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. Neither the name of the author nor the names of other contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. + + +5. ext/standard crypt's blowfish implementation + +The crypt_blowfish homepage is: + +http://www.openwall.com/crypt/ + +This code comes from John the Ripper password cracker, with reentrant +and crypt(3) interfaces added, but optimizations specific to password +cracking removed. + +Written by Solar Designer in 1998-2011. +No copyright is claimed, and the software is hereby placed in the public +domain. In case this attempt to disclaim copyright and place the software +in the public domain is deemed null and void, then the software is +Copyright (c) 1998-2011 Solar Designer and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. + +It is my intent that you should be able to use this on your system, +as part of a software package, or anywhere else to improve security, +ensure compatibility, or for any other purpose. I would appreciate +it if you give credit where it is due and keep your modifications in +the public domain as well, but I don't require that in order to let +you place this code and any modifications you make under a license +of your choice. + +This implementation is mostly compatible with OpenBSD's bcrypt.c (prefix +"$2a$") by Niels Provos , and uses some of his +ideas. The password hashing algorithm was designed by David Mazieres +. For more information on the level of compatibility, +please refer to the comments in BF_set_key() and to the crypt(3) man page +included in the crypt_blowfish tarball. + +There's a paper on the algorithm that explains its design decisions: + +http://www.usenix.org/events/usenix99/provos.html + +Some of the tricks in BF_ROUND might be inspired by Eric Young's +Blowfish library (I can't be sure if I would think of something if I +hadn't seen his code). + + +6. ext/standard/rand + +The following php_mt_...() functions are based on a C++ class MTRand by +Richard J. Wagner. For more information see the web page at +http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html + +Mersenne Twister random number generator -- a C++ class MTRand +Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus +Richard J. Wagner v1.0 15 May 2003 rjwagner@writeme.com + +The Mersenne Twister is an algorithm for generating random numbers. It +was designed with consideration of the flaws in various other generators. +The period, 2^19937-1, and the order of equidistribution, 623 dimensions, +are far greater. The generator is also fast; it avoids multiplication and +division, and it benefits from caches and pipelines. For more information +see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html + +Reference +M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally +Equidistributed Uniform Pseudo-Random Number Generator", ACM Transactions on +Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30. + +Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, +Copyright (C) 2000 - 2003, Richard J. Wagner +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. The names of its contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +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 OWNER 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. + + +7. ext/standard/scanf + +scanf.c -- + +This file contains the base code which implements sscanf and by extension +fscanf. Original code is from TCL8.3.0 and bears the following copyright: + +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., Scriptics Corporation, +and other parties. The following terms apply to all files associated +with the software unless explicitly disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. + + +8. ext/standard/strnatcmp.c + +strnatcmp.c -- Perform 'natural order' comparisons of strings in C. +Copyright (C) 2000 by Martin Pool + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + + +9. ext/standard/uuencode + +Portions of this code are based on Berkeley's uuencode/uudecode +implementation. + +Copyright (c) 1983, 1993 +The Regents of the University of California. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: +This product includes software developed by the University of +California, Berkeley and its contributors. +4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + + +10. main/snprintf.c + +Copyright (c) 2002, 2006 Todd C. Miller + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Sponsored in part by the Defense Advanced Research Projects +Agency (DARPA) and Air Force Research Laboratory, Air Force +Materiel Command, USAF, under agreement number F39502-99-1-0512. + +main/spprintf +Copyright (c) 1995-1998 The Apache Group. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the Apache Group + for use in the Apache HTTP server project (http://www.apache.org/)." + +4. The names "Apache Server" and "Apache Group" must not be used to + endorse or promote products derived from this software without + prior written permission. + +5. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the Apache Group + for use in the Apache HTTP server project (http://www.apache.org/)." + +THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY +EXPRESSED 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 APACHE GROUP OR +ITS 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. +==================================================================== + +This software consists of voluntary contributions made by many +individuals on behalf of the Apache Group and was originally based +on public domain software written at the National Center for +Supercomputing Applications, University of Illinois, Urbana-Champaign. +For more information on the Apache Group and the Apache HTTP server +project, please see . + +This code is based on, and used with the permission of, the +SIO stdio-replacement strx_* functions by Panos Tsirigotis + for xinetd. + + +11. main/strlcat +12. main/strlcpy + +Copyright (c) 1998 Todd C. Miller +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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. + + +13. libgd (ext/gd) + +* Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, + 2002, 2003, 2004 by Cold Spring Harbor Laboratory. Funded under + Grant P41-RR02188 by the National Institutes of Health. + +* Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, + 2004 by Boutell.Com, Inc. + +* Portions relating to GD2 format copyright 1999, 2000, 2001, 2002, + 2003, 2004 Philip Warner. + +* Portions relating to PNG copyright 1999, 2000, 2001, 2002, 2003, + 2004 Greg Roelofs. + +* Portions relating to gdttf.c copyright 1999, 2000, 2001, 2002, + 2003, 2004 John Ellson (ellson@graphviz.org). + +* Portions relating to gdft.c copyright 2001, 2002, 2003, 2004 John + Ellson (ellson@graphviz.org). + +* Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 + Pierre-Alain Joye (pierre@libgd.org). + +* Portions relating to JPEG and to color quantization copyright + 2000, 2001, 2002, 2003, 2004, Doug Becker and copyright (C) 1994, + 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas + G. Lane. This software is based in part on the work of the + Independent JPEG Group. See the file README-JPEG.TXT for more + information. + +* Portions relating to GIF compression copyright 1989 by Jef + Poskanzer and David Rowley, with modifications for thread safety + by Thomas Boutell. + +* Portions relating to GIF decompression copyright 1990, 1991, 1993 + by David Koblas, with modifications for thread safety by Thomas + Boutell. + +* Portions relating to WBMP copyright 2000, 2001, 2002, 2003, 2004 + Maurice Szmurlo and Johan Van den Brande. + +* Portions relating to GIF animations copyright 2004 Jaakko Hyvรคtti + (jaakko.hyvatti@iki.fi) + +Permission has been granted to copy, distribute and modify gd in +any context without fee, including a commercial application, +provided that this notice is present in user-accessible supporting +documentation. + +This does not affect your ownership of the derived work itself, +and the intent is to assure proper credit for the authors of gd, +not to interfere with your productive use of gd. If you have +questions, ask. "Derived works" includes all programs that utilize +the library. Credit must be given in user-accessible +documentation. + +This software is provided "AS IS." The copyright holders disclaim +all warranties, either express or implied, including but not +limited to implied warranties of merchantability and fitness for a +particular purpose, with respect to this code and accompanying +documentation. + +Although their code does not appear in the current release, the +authors wish to thank David Koblas, David Rowley, and Hutchison +Avenue Software Corporation for their prior contributions. + +END OF COPYRIGHT STATEMENT + + +14. ext/phar portions of tar implementations + +portions of tar implementations in ext/phar - phar_tar_octal() are based on an +implementation by Tim Kientzle from libarchive, licensed with this license: + + Copyright (c) 2003-2007 Tim Kientzle + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. 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 AUTHOR(S) ``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 AUTHOR(S) 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. + + +15. ext/phar/zip.c portion extracted from libzip + +zip_dirent.c -- read directory entry (local or central), clean dirent +Copyright (C) 1999, 2003, 2004, 2005 Dieter Baron and Thomas Klausner + +This function is part of libzip, a library to manipulate ZIP archives. +The authors can be contacted at + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. The names of the authors may not be used to endorse or promote + products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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. + + +17. ext/mbstring/ucgendat portions based on the ucgendat.c from the OpenLDAP + +The OpenLDAP Public License + Version 2.8, 17 August 2003 + +Redistribution and use of this software and associated documentation +("Software"), with or without modification, are permitted provided +that the following conditions are met: + +1. Redistributions in source form must retain copyright statements + and notices, + +2. Redistributions in binary form must reproduce applicable copyright + statements and notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution, and + +3. Redistributions must contain a verbatim copy of this document. + +The OpenLDAP Foundation may revise this license from time to time. +Each revision is distinguished by a version number. You may use +this Software under terms of this license revision or under the +terms of any subsequent revision of the license. + +THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS +CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) +OR OWNER(S) OF THE SOFTWARE 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. + +The names of the authors and copyright holders must not be used in +advertising or otherwise to promote the sale, use or other dealing +in this Software without specific, written prior permission. Title +to copyright in this Software shall at all times remain with copyright +holders. + +OpenLDAP is a registered trademark of the OpenLDAP Foundation. + +Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, +California, USA. All Rights Reserved. Permission to copy and +distribute verbatim copies of this document is granted. + + +19. xxHash + +xxHash - Extremely Fast Hash algorithm +Header File +Copyright (C) 2012-2020 Yann Collet + +BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) + +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 +OWNER 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. + +You can contact the author at: + - xxHash homepage: https://www.xxhash.com + - xxHash source repository: https://github.com/Cyan4973/xxHash diff --git a/php/snapshot.txt b/php/snapshot.txt new file mode 100644 index 0000000000000000000000000000000000000000..62d0b15ac188184fa2adf7bc6f6ede8c493ab194 --- /dev/null +++ b/php/snapshot.txt @@ -0,0 +1,154 @@ +This snapshot was automatically generated on +Wed, 06 May 2026 09:36:45 +0000 + +Version: 8.5.6 +Branch: HEAD +Build: C:\Users\runneradmin\AppData\Local\Temp\php-e122e17e-74ec-4483-853b-88ed221b3b3a\config\vs17\x64\obj\Release_TS + +Built-in Extensions +=========================== +Core +bcmath +calendar +ctype +date +filter +hash +iconv +json +SPL +pcre +random +readline +Reflection +session +standard +mysqlnd +tokenizer +zlib +libxml +dom +PDO +openssl +SimpleXML +xml +xmlreader +xmlwriter +curl +ftp +sqlite3 +Phar +mbstring +mysqli +zip + + +Dependency information: +Module: php_curl.dll +=========================== + libcrypto-3-x64.dll + libssl-3-x64.dll + libssh2.dll + nghttp2.dll + brotlidec.dll + libzstd.dll + +Module: libssl-3-x64.dll +=========================== + libcrypto-3-x64.dll + +Module: libssh2.dll +=========================== + libcrypto-3-x64.dll + +Module: brotlidec.dll +=========================== + brotlicommon.dll + +Module: php_enchant.dll +=========================== + libenchant2.dll + +Module: libenchant2.dll +=========================== + glib-2.dll + gobject-2.dll + gmodule-2.dll + +Module: gobject-2.dll +=========================== + glib-2.dll + +Module: gmodule-2.dll +=========================== + glib-2.dll + +Module: php_ftp.dll +=========================== + libcrypto-3-x64.dll + libssl-3-x64.dll + +Module: php_ldap.dll +=========================== + libsasl.dll + libcrypto-3-x64.dll + libssl-3-x64.dll + +Module: libsasl.dll +=========================== + libcrypto-3-x64.dll + +Module: php_openssl.dll +=========================== + libcrypto-3-x64.dll + libssl-3-x64.dll + +Module: php_sodium.dll +=========================== + libsodium.dll + +Module: php_sqlite3.dll +=========================== + libsqlite3.dll + +Module: php_intl.dll +=========================== + icuin77.dll + icuio77.dll + icuuc77.dll + +Module: icuin77.dll +=========================== + icuuc77.dll + +Module: icuuc77.dll +=========================== + icudt77.dll + +Module: icuio77.dll +=========================== + icuuc77.dll + icuin77.dll + +Module: php_pdo_pgsql.dll +=========================== + libpq.dll + +Module: libpq.dll +=========================== + libssl-3-x64.dll + libcrypto-3-x64.dll + +Module: php_pdo_sqlite.dll +=========================== + libsqlite3.dll + +Module: php_pgsql.dll +=========================== + libpq.dll + +Module: php_snmp.dll +=========================== + libcrypto-3-x64.dll + libssl-3-x64.dll + diff --git a/php/vcruntime140_1.dll b/php/vcruntime140_1.dll new file mode 100644 index 0000000000000000000000000000000000000000..2071f2814bbc6dac9a18b32c77ca86da09d579c3 Binary files /dev/null and b/php/vcruntime140_1.dll differ diff --git a/python/LICENSE.txt b/python/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..89bc34808ca6b85055824b4c276778be7a376113 --- /dev/null +++ b/python/LICENSE.txt @@ -0,0 +1,645 @@ +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see https://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations, which became +Zope Corporation. In 2001, the Python Software Foundation (PSF, see +https://www.python.org/psf/) was formed, a non-profit organization +created specifically to own Python-related Intellectual Property. +Zope Corporation was a sponsoring member of the PSF. + +All Python releases are Open Source (see https://opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +Python software and documentation are licensed under the +Python Software Foundation License Version 2. + +Starting with Python 3.8.6, examples, recipes, and other code in +the documentation are dual licensed under the PSF License Version 2 +and the Zero-Clause BSD license. + +Some software incorporated into Python is under different licenses. +The licenses are listed with code falling under that license. + + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001-2024 Python Software Foundation; All Rights Reserved" +are retained in Python alone or in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION +---------------------------------------------------------------------- + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. + + + +Additional Conditions for this Windows binary build +--------------------------------------------------- + +This program is linked with and uses Microsoft Distributable Code, +copyrighted by Microsoft Corporation. The Microsoft Distributable Code +is embedded in each .exe, .dll and .pyd file as a result of running +the code through a linker. + +If you further distribute programs that include the Microsoft +Distributable Code, you must comply with the restrictions on +distribution specified by Microsoft. In particular, you must require +distributors and external end users to agree to terms that protect the +Microsoft Distributable Code at least as much as Microsoft's own +requirements for the Distributable Code. See Microsoft's documentation +(included in its developer tools and on its website at microsoft.com) +for specific details. + +Redistribution of the Windows binary build of the Python interpreter +complies with this agreement, provided that you do not: + +- alter any copyright, trademark or patent notice in Microsoft's +Distributable Code; + +- use Microsoft's trademarks in your programs' names or in a way that +suggests your programs come from or are endorsed by Microsoft; + +- distribute Microsoft's Distributable Code to run on a platform other +than Microsoft operating systems, run-time technologies or application +platforms; or + +- include Microsoft Distributable Code in malicious, deceptive or +unlawful programs. + +These restrictions apply only to the Microsoft Distributable Code as +defined above, not to Python itself or any programs running on the +Python interpreter. The redistribution of the Python interpreter and +libraries is governed by the Python Software License included with this +file, or by other licenses as marked. + + + +-------------------------------------------------------------------------- + +This program, "bzip2", the associated library "libbzip2", and all +documentation, are copyright (C) 1996-2019 Julian R Seward. All +rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + +Julian Seward, jseward@acm.org +bzip2/libbzip2 version 1.0.8 of 13 July 2019 + +-------------------------------------------------------------------------- + +libffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others. +See source files for details. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +``Software''), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState +Corporation and other parties. The following terms apply to all files +associated with the software unless explicitly disclaimed in +individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. + +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState +Corporation, Apple Inc. and other parties. The following terms apply to +all files associated with the software unless explicitly disclaimed in +individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. + diff --git a/python/get-pip.py b/python/get-pip.py new file mode 100644 index 0000000000000000000000000000000000000000..ac3bf23c2c6f7a95e32f7b08aefc646c7e71dbb2 --- /dev/null +++ b/python/get-pip.py @@ -0,0 +1,27918 @@ +#!/usr/bin/env python +# +# Hi There! +# +# You may be wondering what this giant blob of binary data here is, you might +# even be worried that we're up to something nefarious (good for you for being +# paranoid!). This is a base85 encoding of a zip file, this zip file contains +# an entire copy of pip (version 26.1.1). +# +# Pip is a thing that installs packages, pip itself is a package that someone +# might want to install, especially if they're looking to run this get-pip.py +# script. Pip has a lot of code to deal with the security of installing +# packages, various edge cases on various platforms, and other such sort of +# "tribal knowledge" that has been encoded in its code base. Because of this +# we basically include an entire copy of pip inside this blob. We do this +# because the alternatives are attempt to implement a "minipip" that probably +# doesn't do things correctly and has weird edge cases, or compress pip itself +# down into a single file. +# +# If you're wondering how this is created, it is generated using +# `scripts/generate.py` in https://github.com/pypa/get-pip. + +import sys + +this_python = sys.version_info[:2] +min_version = (3, 10) +if this_python < min_version: + message_parts = [ + "This script does not work on Python {}.{}.".format(*this_python), + "The minimum supported Python version is {}.{}.".format(*min_version), + "Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python), + ] + print("ERROR: " + " ".join(message_parts)) + sys.exit(1) + + +import os.path +import pkgutil +import shutil +import tempfile +import argparse +import importlib +from base64 import b85decode + + +def include_setuptools(args): + """ + Install setuptools only if absent, not excluded and when using Python <3.12. + """ + cli = not args.no_setuptools + env = not os.environ.get("PIP_NO_SETUPTOOLS") + absent = not importlib.util.find_spec("setuptools") + python_lt_3_12 = this_python < (3, 12) + return cli and env and absent and python_lt_3_12 + + +def include_wheel(args): + """ + Install wheel only if absent, not excluded and when using Python <3.12. + """ + cli = not args.no_wheel + env = not os.environ.get("PIP_NO_WHEEL") + absent = not importlib.util.find_spec("wheel") + python_lt_3_12 = this_python < (3, 12) + return cli and env and absent and python_lt_3_12 + + +def determine_pip_install_arguments(): + pre_parser = argparse.ArgumentParser() + pre_parser.add_argument("--no-setuptools", action="store_true") + pre_parser.add_argument("--no-wheel", action="store_true") + pre, args = pre_parser.parse_known_args() + + args.append("pip") + + if include_setuptools(pre): + args.append("setuptools") + + if include_wheel(pre): + args.append("wheel") + + return ["install", "--upgrade", "--force-reinstall"] + args + + +def monkeypatch_for_cert(tmpdir): + """Patches `pip install` to provide default certificate with the lowest priority. + + This ensures that the bundled certificates are used unless the user specifies a + custom cert via any of pip's option passing mechanisms (config, env-var, CLI). + + A monkeypatch is the easiest way to achieve this, without messing too much with + the rest of pip's internals. + """ + from pip._internal.commands.install import InstallCommand + + # We want to be using the internal certificates. + cert_path = os.path.join(tmpdir, "cacert.pem") + with open(cert_path, "wb") as cert: + cert.write(pkgutil.get_data("pip._vendor.certifi", "cacert.pem")) + + install_parse_args = InstallCommand.parse_args + + def cert_parse_args(self, args): + if not self.parser.get_default_values().cert: + # There are no user provided cert -- force use of bundled cert + self.parser.defaults["cert"] = cert_path # calculated above + return install_parse_args(self, args) + + InstallCommand.parse_args = cert_parse_args + + +def bootstrap(tmpdir): + monkeypatch_for_cert(tmpdir) + + # Execute the included pip and use it to install the latest pip and + # any user-requested packages from PyPI. + from pip._internal.cli.main import main as pip_entry_point + args = determine_pip_install_arguments() + sys.exit(pip_entry_point(args)) + + +def main(): + tmpdir = None + try: + # Create a temporary working directory + tmpdir = tempfile.mkdtemp() + + # Unpack the zipfile into the temporary directory + pip_zip = os.path.join(tmpdir, "pip.zip") + with open(pip_zip, "wb") as fp: + fp.write(b85decode(DATA.replace(b"\n", b""))) + + # Add the zipfile to sys.path so that we can import it + sys.path.insert(0, pip_zip) + + # Run the bootstrap + bootstrap(tmpdir=tmpdir) + finally: + # Clean up our temporary working directory + if tmpdir: + shutil.rmtree(tmpdir, ignore_errors=True) + + +DATA = b""" +P)h>@6aWAK2mk|@q+Bf6Ax8QD003hF000jF003}la4%n9X>MtBUtcb8c|DLpOT<77h41q#LNB_YQ&vR +R1qCmH7xCatWSDK!-GMeUB&kcmA8%TzVIafH0G8xfVMZVxr5)N7+N4L_bCO3x41&6PkHm8@PUgM7noiQ&rW+DGAt%G|R{odw70-g-rbf14dHlGQ +%hchY3n57XtZA&=^hb5v1W%RJ>aPU(6cYHqEdW)S|}J%M}PBoK%bK>-w1VG#-4Dhq_E9)|Oc(krAc7z +kS&Gm2BDFT!}e+Sn2$z7U_|cr;<&TwWo0ASPJqV3Zu11|Kd{1#{B|NO9KQH0000800Wn#T;=b-V;Hj{;6RlJfPwu=@$q8a89E!$Bp+Akqn{uR2)&JzfI)F(y6; +7(4LS`C*d9Ve5`pAFU%l;MCehh-?|MwN4uTC}{4}vOff>+T8a6`wi!A0S>2YjewCpG0Xz)wJ#AQIo*H +?eR4m3en)8HLEPg(EBCiq&|N48(b-{Myt4h>h(o-vuFtLplD0sQQ!Huz8-YpLa}hXp}Lgg84VBjf_Km +?MYMU6^9`%tAutwfl?IEC)+ijk?sT}I8qEcU3 +zCc?4bNI!FHI(;q-$V=5m^G1#S{KsWtaks-iHdXl>|5C+2P)h>@6aWAK2mk|@q+H@elhf7$00656000#L00 +3}la4%n9aA|NYa&>NQWpZC%E^v8$RKZT$KoGtAD+Y6@Eg6?WPf=4qD~Moq6--&0B|IIN4y1}t?C5+DB9B?Ay-9#7PSY|Ps$oy(K-!+ +C8rdsM4*2yE6hPUP@Y~B@P?vYW08=h@8K(xHx!*o{lUYE(yH26Piap|22yX|!FlPiuMvh}5FEqDqhHW +fdqV4!(L}VWrB^FeD&Io3#_TsZ%sih}jqA{7tzXmY*)F)ml#zm9sM9(Izc95T4uv%p)NO6e0|BMpRAn +&xx%@u87W2uEo2&U`0b_{H6Zmu*2SJcyG0+jt+i1IvM*zp*+Zsop?zOQP06i9cV>N_nm_8V#qb?(c!d +Q3$QhCTGU{x@)bih`+Ft?+#JNNg-eL8tm?v<_(yz&4U^Mxza|kqUH^Or$P?CN~zFIYGCM1cp +mz#dr7AvVV0lhc!-MDR|$=x&@Z64(aCZA8wf^O*jd8t-uB{Q--+IFzwO#1bu(mC4q5{*l#%6bUSmE~J +-5E;y_W@0hDnO{s6Vm_TN$wk}9X!sX`uaOWj&p#`rb1+l&RR=pqiehW)`<_WZ_HSKSh177~ZLl8;3J| +WwEOJ;D2^39Pa)AVx=lI%aT6$^k(RVNZFe^Xg!XX=u#t@Qs!qFQeY%R?=!R~;IQ-gcm(mkg=o7+Q8?g +mz3nr$ggAp_WN(r@QgG|3(u@|JCjSvOV)?gagZ=1QY-O00;mB +m!w?H$G|nf0000U0RR9D0001RX>c!ac`kH$aAjmAj&U +%1)EvFVxRjSzi=C>J@cMk87yJyz4~-Qcqlg}hXv}1CF`fEox?~SG{pae%Dy$pBG>tnWs3{>FohpTZSG +@fe-hAmws@4PFv7Mv`H@JnAXTbgKqwrl)IWaYE>+%OsO9KQH0000800Wn#Tn%mUY&Zb`0RI6102u%P0 +B~t=FJEbHbY*gGVQep7UukY>bYEXCaCvo6!AitH486}+g!Qroon8cWL64rqlQ)qv+oo+`Ix{4xOTmvf +t*+w1T=EEymzS5G^8`)P&pIkbFlCdRayLg5@77)Z?^5SnhsFz(_JI +dEKqS#uQGSCDc+Lsoerpw6J(yuVII!C7b}u8@K>~$Qkl)R)*@YZCXf1>s5u{}*Dxjlzn!*BNA;k4U#v +U0{YZf*+QtvkKXcD38Xbmz%=um^@b_s$AqiT^uT@R$=eDrOe>avtjThKL$%qaEE_1&#M8{GPTuke_Zm +y&Jz`<4^08S4R)Wo~vZaCzN4Yj5K?lHczC%CK)4|OqL3euh20@^eB|6r%ENS#e;>qQ +|Up+{Pq-dvSX77Nx0NsftvRJHl6^jmn;B}uDnK&))@}??xvg}0P%1mskM&xZ(Bwb#WBI}#HycKPhx1C +ty4EPuX!O6*{sdgfcH+|PPGLA*QtE;9HNm*7M&23Lk)U%?xy@hG|W7X=v>ZIEi`C5N$^G*(b?}t&HeC +Y0*q~;~lswiYi3+Od3noKq_dz+`-WK5K-Q$6milTETN25Dr<|W;fa7B64JL4W@o^!{aM*|Nl~0OP1Ve4z}q~zEvvT6)62 +Xzo~x06-%42!5aZoAa^}NDZ+AfDR(5d>3IPnB^9K<5;X|8ljXaKV+pp`UN@Y7xGX=K9< +Kx3qJGralEN=$shtF?e!L+NI{aoN{cpHDt%M5MJ##WCdvDzoG2{258xQPYw+S=<-1kK!Rex#{r{D +e)^6c9s&TO->^JIWI*}<812jF5fsVj6+b%!2?&n=-~q|@VAlBK2ZJ340f1re5tnG4v;z@d!`~n96&Q# +Unwu60FzoaJkW>yL983&Q9xQyZdY2TfoH3d4N8)HL#!HdG&}*=wa{>R|oSdAXkimXe+8sn7LqF29Fpk +S)2L@*b!$3g+3=y*cUb=TUXz!Kr87KSOpsnLU((x2IeX)2Qr_hpGLF$O^iX`irP-X?hYA0#+*fzAMU4*LY6 +!S6&|?z=5mAo(EEzGIIH&jFU`K(*4oX+Q{z{Q{w*(LgC=!MfV!Ub}iEQFHs`tU5ZX}TV7A$IvF_6_fw(WV>_ +#XA#gvvg6-FIRG12NnYAWQ!+{AxJ++Hkqy>>o(lzD(|tyg+Fq03iU5fUH1L;C=^-f*6Rjk?0D=dT%`a +{=07!fj$s{THtN7ON#s#7zx`G)dpz^{Az9afn~Qzn{-HL*uh)`&RzmTBn$$gD*Cn_vVNl}GDXS2|9kP +>H=+VNeBTfpf>Q6reGVGelixJ~8bC~98niSi85zSnrHG%)>b^ux+~ugb!CNe@8gK>bGOJ$%ye>sUlSv+p22KS@DhL&}o8%jS~!R3(4kZO*D* +q1D|ZyR5HHU5bK6MNR-5$p=XxuqwT06&YakH?OlP()EQ(DUP9yAM*UCk@62z?-wn_|3)n$Ey#o&d# +qyve{tzKIoUBH?0aJ@P}P+f(9LIQOScBBYHyZ2kqSX#g))IPs+?$aR8aOPU_{7-63jMjF06LT~uyGG&CT@tm0|4-tK8?`f)n-WJLuE`ZLuXvlR^`fmNR;|0J7S!}( +fb^<9kF26ieNgES#657@;h8&n%h%ma|a>t5h)ogA68(I+ghgiW-q48aHO_aOvDEW=fM+q_WIM=k8h3r +MdGT0IITs-vujnNJveR;prrI+gYn2>0m0uw$f +{U!v~<`yGS^ymq-v^4i4oiZ?BEN +;eM=sQRnN3HO6$(-_eZkarp7TQrseF)7q8FTiE_C`dg{+idfw_jNH!g^n&d?X)RXe6}riDivENe_yo1 +~bFynBh-1Yz8!FCb8Lpa9Y!;=3AiR0#|2DTJL1N%~HiNTO^yzE!EK17ufaJ9pr{urOfcmccy*JjYWoU-e^lRpBz3W(;v9}6~bPhWrf!FCuZ`4OeRSr{zt?hI!H0sM1-RUz^yNCP5 +<4;#$fI#kuJfe;Ir69#1!uk$i#_5oyQRaxxyN5{MI+?Fdal-02wM>f#8v&d|Uo_y#Ky@?T?K2hul#9t +h!k#bpK5F^@)z|s3*@;r$CtIA8rI>5 +F*E^sKUfxm8M9z0 +VRR_)?cHr;W6IATQBnC1ry%7L-V^I&P93w@mJg^sRFHp;XfV~Mo{LMWjiY63A@lFH-kmWB%snT&pNqEQS}z#3p=8uTwn1;!NZ5#kd7cCfYolY} +dYIEj@j>I#VU^-uveauI>B;w +?yM+jO-Fa(Bf?A0?iGDIkT^O80I|27L9EB~kW(@p$#D{B=HE!K^(##MvLWO&G-+h3{;>yxTME5Z@q2nuEpGy;;BJOz`CD}X0^zV;ts&POm<#KEq^R9JJa +2CGB=Imy#K_8tgsM@YyLVB*P#FQvREIJ8^|2q4yDe#_#Alk|ZXCb?3AHYrkEsBRh@lb2x8ava4yMVOb +;S?7cXeOX{j1_FRld!QSh|Ll^_Kyq2OeEi`l+K0fG`)!_X)e$C6K4DpvVw*JR0W#cMD3pqxE`9=29%K)8XV)n$gFG;!ykwS2F%07U(;HZO2!+^mG3Yc2aA$-Yz)Eq7O3Ws^UEx!BBoWo5Lk5CwSED_wB~h_QP$5!@J=m{yWt`9HAMhx*4KO8MC$NQTvzgZQF5X +@&@sxYZl}&1p9qMr$j&OI&U@6s+I_))gha_xg?|B~P(Vhtvq7D=~BdFx1?VndARNbiQgsl +-^Ep+j)rfFk*2&wA~BD{qq&g9h#obBFxlj{(5(=+kHz-R$cMPsao|_=3LoUEO!8QxchgZc<|RC`bV0v +RD^2j|YvGN;IdKd8is_-kx$A@UCh?Rr#C|ILl(9$<)9g05##cxypO2iK#%P9eumv10S(M*x-p%CfYCe +L-iX(8GT@(E{8+KK%E^^w}t3vq!--F=R ++38w0cZrfD-?N%V$iFzT0?TOe*NJ*O6!F|p(y2#wI%RAKD4QI2t^}^n(mW6Uth2|#y++sroI6T~pk-l +_psl}9)zpTW!)=S#M&~t5IP02!pfy|f1;J8W3#rW^%|FfmoD+&QBEh?e3xUUOD +%+|&|$O(lbFp_S5dchs~%VyrpT8T0$0Uyy2+ci!-{Qp#v-I(cT8`e(DR$gMEjoctl%H~{8$#PgFVYVybC~-*-IMNRs2i~m +Hc_1zjO$ICbJ)xdLK5unq781R+26zq<6f}?IOsi*8)8#_YtO^56f71rtKIU!mp@x7`X2t&hR=ki-hs0 +}x2SLRV1GYc|HfDX64dNc`V?l!(Ecl)K8!WP|57ZVo#kU-|@5TUU$8F>^-VZ15vF?71+a88C`(x0soM +Z!tZ}U5Jaq{Q(nTZi6W<913tqTRO2H>>Vl70^$&f173;{^onQXE4M#0DD~ywF1u4~{B(N)A+JMlmeyu +(Wu0V*}Pjy90TsAwxRu)SVYG79)me)UYb*Q5ItZ&1#r8^mo&`bCm)h(sZ24ac_Gxt<-rprEW0A+*iB< +@p5~kMnobjOCqyqT0(1|KeusLF)bzyBn{J*sd@lB&K?Am%_|0-yu$(7$cR`KrQ%JJ7hq3^>_4<{nNJh +{IcAjkX75lf-#7r59z*26mlfI*twU6$V}RXMUA&a1c7xcAg88sFG)Xsevp&9qai|66cjvB6Rdt@6bzA +M+#wz^5UYnSEZHB7~zbUu--)*yjkPbW`_w|9)aT`r*_0iZ=sP_uUug$#8pryQ1cW8{=gczTMihcS*%* +>KaWtzoub;NLo!>c(iG@FD%Ll~zf82PVbnue}e^Lmx-ny7Y5!SMZP=up!!!0PfHk=A<33i0JTdC%v}5(a{g2@wiZ!yOs?1JRfXu5Lru~ +F8R=eA=&gVbI;8=E0+2!F2D2Mt~M|B^q*I3RUZpwNK>()ith|hda&;NF?xIPVoz^GDqU|h7fbuHw+D; +0=``eF|Ct!d=gs|p3=u}m;^Wo(z>g5A<VRyBPJC)@)b$9{not=p8uOLOGHdy +A_)bLl`%k`7#@gkUp_iK1n^Ed1h$bbWrSiF|&W>4YdH}zev7%XP&;l5DSpc7F!OY8uDE1t>E)N&~>Xt +6i3#$MXd6tRD8h(dEb@30aN>u*5Mn2E`RW?63t^$5#YG#O$I$hJ^&xu&<5#{AI9!J<26lZ)G%l`m=E1 +~BU<)cg;%PHPM0R(;XUT>CD>zd9jl=4Hj95XIsveXvZkIXebZ#yt)h6de=`IaNTk0_V=nk|B7S +9tr|9vHD`Z(y)ryS^W@97SsNwEC6%gIYiF}ULRcCBu$3L%^Ho}5KjXa1qPg%a!-?k2p+mq&ijfghWnwp@z#mJhwAnl;QP`=6 +U(r%^6E=Ra1Wvi=)6kh}EDuddUzs1UnU&F9*}lNryv;F%#Hd*X6$h`iw80ul`ns~dVg_#e(~w!>4%SJSEu7M8Zm+}`p2~Wuw0~RMXDl;twDMR*SxNET|p1F8LT`7`A| +KAE6_S1X=QCTXmc2>Rn9j3H{&paSbd!(t`UEn$^v1$6yvJwTu5@J{ZvzeQv2P(frp?EyK&YSyC!WpdN +|f%BOlTjzno}EUr}_8IqYyuaATdR>d_DuErm7CJFHtT?Jqid?tm7B@GfasMv<>WcfTzt5pZrdY2{baq +UN-oyA2MD>#7ci<)$j(uh5V4uhm>SxYP@eWasjuS+;W+K!rf3(mhf}edCGjuAT2bxtR~&({N+e82B3x +#CQ1GD9A17Vo{OvEnBXE1eWO$8ns4)ys*qz+tE%Llqc1F>uiS503e~hJGB3p6<;w<}Pr%%zc~|U(M9E +7!eFv2e^6^$PpH}j1mANY5jo(mU12ykmtA^+f9r0bBQD^mD>?Ag&j@s_~h_uRU2PeN;^73%xz?Ak0j@fYo;1{<&#YwB`kxqN +l?`?jvzQDrcVpZW|st-yuugYg?+UIDrbNS-l+UXaBezH5MtxjXZ44bVq=KT5XTp#u5I0zhbMv2vx{D*KpicfQmZKId%+C8fv(#iVc`8?1C0@x~Zq!cY)nqa`J6o4#Cz51cS9Ph9MCe^%%1X#QH(UT$VW=anjpQsHls%bn_v+^Eum@!KfYmCjm{E18>IuVkiwR!lBrh6(2~i`A!n5nKcBy+XdENnsOlw;MG31oNv3CKZ{EK6{>AI$Z|~l`PF_EGb%FI0 +Q)+C8$+_U2XQ^6?gd7jduBs@V3;O@kR^?3K&(&1i{|kMYp9y^6(Qg$TITsRxa+xV%xANh`N5ZTzL|b7 +%Ssr5YecEAhCY=?h^{%i{3aSt$xmE|ecwg4=EUOAxN~pyyqRDJB6O;L5Iuk0l6fn}RwC0slrdPV-eW= +9l^vK34U%^Pxgx61|(|D^srFx@m6+sbat4vxeI6zxToKsQl +zqyf~`evgUBUPbK-yJc96;E;yt#O##E%03g3AuZq9YPSn;s8u976ODqGJ&3Sf&h|Jvl9VOC~cz`)bE- +8XHgz`lZ$AgOd@1UNP}CdY}jg{)CK)orAs<8I5Mzn#tx_=T4xZl1jnf>+ivPYRiH1To{8w(Lb$9rqCZ +dqsYXO{5w60`}p$yrD~b|XmqYpvDekMW2e;|eZCSOl-SE01dQ0IT)~4BlB%HS$53tYgj4F$TM`a +86MI0K&VbxUVxd&Dk1Y1%+m~QyCFxm%LA}{he!c;Zm_}41fDxHFFJ6~&L-{@+C-byBZ6!-^vot +k{YpnMK`hY8^MCkqR6YxHnvmz<*6A~YLl7{?0+iiO7R&m@?vr*Aae!&^_H+y(Tr5&k5f=wi`BKs9vd*z%cH|e%DO|#0 +YR$nb#d4S(fWLvnrO%eHZmI)VithP4f;C;gCoz7$#(6ee)m!uaYYUIL-5;KfUY8s2@X0L8&ThA`m8*L}A5nm{}l-ffF=`2WPg2 +W{;RuX@ZE`o@spo0G`!lK(MdU_(kx<$_*k9byp1w&8$O~ +iG!XFUUub^s}Rs{P=&B1K|*w83~WDh~c4`Z^syB5Kt&<1?o0kL@7k7ekoWRxP2cV=FX#k_m>qjaK^>AkrrUiEWfpgIHpO62ySUf#f!a-r868uh_0psra`eNzNBH2$5P66jXRY|uQ2GLE>WxrWGoeiRf +PO19#NWi~l~vCI2Hiw?hPkI)b7K+mdVc&K#?f{hV;3%rA!5R#CX1Gm!HGD9m4#x$k`U +llRQr0-5X<@N!hxtMbqvppWzCg}Z}_y0fRfmF_}q^cHPMlJbDgYt@_3zCy&Tk>4#&;jIBRcRdxSYFTf +h!7P0yFE;4kC`!YeE$+EQjQC^k!tPJl8AGky=%Y&J?LFx%*S)^q +0Y6UskaF}<^XNeHLoHV~qINKA+7{Yrex>5ywy(6_p_^jwy!?YXK}cVnXS%UBlF=MD`vZo(ehDD6;8Hf~rPPl9fc|vap|pzvs38Dp$EYpDY +sYi0Ca+4xNl;f`qs;DezEn1)1kmW;ULHsIO*Nfg=c6{-}^NUx>hvyd;FO#QF +o<6_m8*r1EC9uFD+3{SFl3)G*7ecV?nU0F%buiPQm_bu*orQ-#L}3|SD_>IFc?_$dqAG +(wqv?`=r3|t@bm8VgfEKN!uPGsVz(~o-fJYjZKU@+QOiiYMpoykDU`yA;9MME{r9@bQM$2fQKGvPpg; +_;)5;Ok)p$bJ{o@(q#KG`m_=Axq_r!!Sq3-$f +rE#f;1h}sOX-Zo~SJ2qMoiYY{b*)aJ0rWzJI#a`%ubakZKr34^j#@7E%y!hKxMsV(~qJTfZ^O%-%`AD +dkG7YeX_a4G$^5%bW$sThXb$tg|Ya8n-}bkO66>cFDN8qF$St;J!nzmiY^}L;0nxevP*%r{0PrE^{|G +MT5Tj*UC+@j|b^fyb^EY2eh%GT99dlD1rdXf{bQTO~T$jx>_R{tf!$?s@I%1 +zxrOd*2t)B7F0?6!b?|l?I{jxw3Er#$vRP^F>575{4qW>78oxrI)cRm?rJr@rAr&E69cFY2m_!s4;Bt +DAV{|kwq$;=*!Oq;qF*MGJ2JDb%`p*Kp~U_)6pWtybG&6xrGaP>Os7mt}}=XJg|0b&~|E571~5Unc^c +SB@f3d3$iU?I(05Z12;sGgcSOWCw^{4s=T-`Kk7Cny!4YWF|T)tamb`t$oRbEC?Asp)-2b*i-w#Qy?F +)ms3^8tc8^zxnRXoZs(tYF9ti8lLH29_J&wZhLWC07sqw;lVeLA5kzMk8S8K@|Z^JC-mz8x{c{MCk+m +{rO#cAMW4wVXCeCS!_YwY==!#I>(U(08^$fiWbfJ7fk^zz^tA$Hl=N#Sv8*?OZ!p|B2*|Q_UdL~;Pq_ +mVWtRy3pt-YFB3F9>TY$g`*Pu_Q$V>WaCyaB|8LtkmjB&<1 +y{wOHr7#h?iPm|1HRqNB<%!~CPmVAW)K)!#iCM1f^=kzrmW)GNk^}$VlxVYU^JpnB8pbqdRxgT66vNas#?T(Ue +vr_jYj5~23y9Jl9hdy70Wo2_FJLsC$(1^^s>k@O^XWS+ogqn1{TM+*vX6PeMuCUcgOjDDlX*x$9*Xcf +@NBUQJP~@9%rHax|Ah@v|Gktj1Zn|Pphh^rv2w{A+Vo{ZI)aV^^fwrh!dGiN0Xs*wso2{N5o~Bq?J0j +E`&JCxVFoGJ-ax${Pp_qawylGL-d`j&+!DDJ-B0&s)m0uS0pcBG{xubW;D8r?=_ttSU_U#$t&!>7O%w +h8j#j;o{WA;^8_0V&&L6M52ixZ)nqjK>GI<3*}Le+e!Pv?P3YpLJgd`_!+8)pk~n(xx8$k{u1U +_shEkoit;V0nEw`w$sMy*)cWwacQ<$5*@*7FapUUC^J&v|$PgN_hGC^y=#D6n^t +M7RA+*xS!I&-qA4k3JutpPfYKm&Yg3<;D5$4L}!!51aswMj5LjmN#lSjw13!Q3Q>E&@L`Np3cPkcz-J +eB*1Q`V4M6Z;<|=Q+SYhlh`gvaahCo=k{==naF&T&iKuzOaL4rDj5SUi{SW<~F%RLR-p600@t>p~Duw +*Owo2Z`RRXrL-l$?*Eu|Pshp|P)-g!cPj$ko_Isbz7-Gin{SjjSrmr(hLbn+;e^j21KQ|x3}$yNGw92 +{W@NwLVYy`YESQdYo>LA>I<72-&hYj;1=q$a6CJdhg*IRY0tv}Pda245DMVwhAA2H;ywQHGcDbNZ3w( +<1OtA!-4^ar1_G^^4q#q>zd?gH?452uVS)4PJnQkqt1gdJ;$|0uRJ0_#mrwTq?0Iw&ETU2YVnz67g$o +Md1VC^!OUsK@f5BmlndL`BcRzcJ%%6*rQ<5Wmu@nEUm|&e=5G881_L0BhM{F9COFayd+)LH{`CSEgua +dHM(Z2-UF81G&mM2guh;ge=pK}OrNHr*81XN62_1}cz0(jKL#< +K$GZ{bz0#1{|S9Zk(YJ+U*+?8alCk<~j0%4% +l18#J*#2(10{CdO$*Jk2?}-P5H7ws3&Bg><^DYNbHX5K0JnrSgM`FCN9T_vB*+8=uRfRo&J;d8!(S;Kp-+>d2c5sR0oe=3%TFrV<2bE(cDfUc7C(m9i +7QpAhqs-KDa7qhiwfRmm_4B`G*JB3}t==9U{E;zeKcSF%^8AO#Z#;ifBuIv3(sJZkHc;qYv{pqDVv8C +u5ttv9WvXk%x}5A8Hd}|2_t|u>MVHmVjV0rWYjZhgNRE#ArsTkIPKm%ZWsTRSDFi&Ki%2HOVjAke5aS +j+8m~A6YX8e|m3{6yy<1CF!`Y=pmDc;V)nJHr$)l{Ys=NB{cn;X%h14k=tXJtG2H#_SqJB)+BK!ocvD +DSR<4$zA)~p~(wcv?X)`k6ea`UG}o2PPtF3u1xzOvgHghmLq{6ieysFrEALEtJC>+>KF{T_#cI-+JEL +kKn4i6AG0@R1Xx%<_yY{|1=HWA}(r2W!m(f{lf7wYMkun!w1IkOAb{Y#%gu6ugrNvexf%FQgm3LKg|> +#2wWTRLOBCN&o04-I@wdCx>OqLD_dD4VTGhJbJ5Frkc`}DN@TGC-kfF#6PEdR=6$UVCC3>HW^Y6ch3z +->8TgWodM-~CE9X}Wetv@eubM58^n7mWmelvmr}x(Qq%@P*1jpTeFs=@Q6Oe7*TmwWNiSk9d1D2ch}FD#T;pXrMZvfm5w$Gm`PJ<9*N8+-T%bI_2r(3l +vYQiD_7^Cw9F%tMAm-{KK;8D23q?vBto+iRG{xF}M&0r +X9DARb-B~z1{({F^l6Q=`9`&tb^Fc9z90h4*qWbaO3lOLHnUS@iwc+hTjj5T{#YKz2Wr>Hd8Rs_QKtb +o4EQCfohvOj6IP$%Dc@Esqe7Lexmg+*Vu3Op#Q&$>}T49uBiiFAQx||Y5lxpd)wK0VRiAmdotAgd(6_ +^VeG44kUU{=%nS2g_xU32u6;A=6efK;)lF=@Rous#C=Dsn80_>O|2-0k)*40@n?KJ24Ya&O{2CxV+231_^jb&>B9G)Ro^(rg0vj59NQe$t=4%wyQqz04+&*^ +9l^%aV#`Au^~o{=zvtQQchQwf0ims*+rJ9c{ptY7Z}m)F|wiFwc4&&d)sG(%5#dTJuQLt^P30SH(E^w +Mun@T!`-!s`!;w|BmXMGBU`sDhQ9TmS0i+DPK9-8>+Ew7veK}RSor7u&lnI)l~f$~ +TGP`5`r)FgC}nQ7C%6wLWGJitTKX|s%14Y>{sBfsF0WZb2#D;f3jO?R7QPCOb7R)Ul2sxR_iL^QTX76 +`wM5_0HN*#|_7OEc1AaW{5MJs3#fK{0LG?scY;mM%m%Vb@V8a@CK*`h9KvCNF@(20ERV&x2reNccY}a++nVDn<2$FULs@zEe%FgK(l7P7g`LlE0P}6sD^8E%9xU(^7n}taeUsjkPKOgZ56kA;wHHd6zvwO-U;$fa}%==qm}jiO$8z +oScQUFLai(?D1_wr{FEy~)wHe$(dP(=Kwk+qoMeNojmx{8gu8*D55v+t4r&czK}ULtq- +Hp>=+?pCX5zZrY|B`tXtg2+E`Cm@n7TSDKa1E)a+@7cMOhCL9(7BwHhP!T>T|EWQv=}c)p*hYv?Zxfe +jIjfHL)>vYLDr+#p#DGbJKh)N4>Y5LV}T_v&OBk24cA8)Gtz&xys85pg_I +Q2p#+t*pM1W1kodj*twPwakmvjveboYAYUx|0R$Fr`J-^uE>P;wl+b-WTWcM3-j$B#^)F(7&zOhuO+2 +lz(=26eSv+H!2%PONH04`l-Prr#0WY1#OeMu+&$#NkRR#TefQ8t3{pS$+i|te6MA5hp0g{eVYA!yq}W$To+k +;85lZCPYNBLacHV+zwmx7^EUC&_owmBTDF?Dw@8ed1I{L{4fl}M7~0*C(%$1!E^YL#8#`#&4w=}pV0! +1~Nq8q~J&S_W(Y_tOMc{u)hTPO;aZ_Pg81v4FgX!?6JjGjiBI*Bu+DUWaT1v65>r&0$ytzX%w!Ni+xi +{s$jNg=L`3713R;o9D{^7s=^Cju@&=lWrb`82zkbOx<|2G$8d#+{mPk)aDSLTbIqlJj +Cz1Oo~}PvH@uup|NXl;!rcQR{dN8b8{uI=}`V{D!u3}%2d3!dmr`g?E8hQ=EX +xX-R@Y|h}<)SNTen_Iv3U^m8fp?KI$ZPYN0cy_w8!`EEAxl?D*3y;|s_C#eOO~=hRr3V*4ErvV=61Fa +%XEsdjM_#WTCgzzvq>f7(jBaK}sDRi&oAl&{o{zSQG%%NUG?>T2796bzUCNrz4$9u06vg4D#Z8e|Gql +$voj1|?k33iR$HB=%-*nqEorZSTQrboS&7Y?!PhMv_vucKFdz~2rQjQHZh}7fbNNOBbfnox$-|0azPW +D~K5rcqz!ym*K17SE(M+l;UKvl<8tqAZqV2}fyJkyiK@|!=;7Iv0$D7EI5rqSFR2p-O#_o+l&ZbWOk6 +ymqvew%46#Xkhf*bzf_aL|{=?}SO)G9a}d96#tyO?B<6ou8>WHA(dSv^H57 +iEF5#ZY5U;I(7lN~|c_i%??A;?#QZ<6yU6B_XlyX>UwzW;$H6pIE5+n~|4n% +Z3FoojxMXukUo}bUe`(oGp(Sz=HfFs*lS2G}MwauBetw>-6{c%QX8sMnbd#7$j9N=NDLv4eD1FG$rTB +-ec>wzAEezkC?mP%P25r^&Ho0#g$kc?GmIj$Ts@0_US5 +9{a0HwU7Dg!GzA~chcdus>C^YKw*4{h^g0gRjCyxqs;|kd`=@1V?v$`nK$G|E1i42|uD7Clk8JPvsQ! +gP&Vv_)|MAj`!ij4KpUj_i^d{1}#j963sGFnj7vB)H`?r1F=7Q}j&AMtZP>AqskyR@6aWAK2 +mk|@q+C{Jd2|~j005?a000{R003}la4%nJZggdGZeeUMWq4y{aCB*JZgVbhdEGtjawEBM|Me8`Y*He9 +2X*T_5MP5dP34*-MtqNw#%r4rTMk{kj +JpwZ~>20hO^{}jqq5of6qYb7I5Eb?qUUu5e-tb*`9m`nfY=z0+=vCN`%BE`FpSJ&eGhig&f8&PB;Uaq +pd5VJg6iXhz-i#VN&#~5G5-6~%BlQ=D8o(9PsG(XB#G7k#r3xWy%$xka87C3Syrc#3orZAELc@iXvn8 +k@y25zyCM`}IQ6NEO=0G_SYKq#1b5{Wb`L?l--jYLMxm;RCGc}GVCb26E&i*+t16EpiDg&qN+;pj*|3 +$t_<&sRaNWbQmGINdO->6F-=SW`b`3 +g@}{^zbmqwo5%2}$g)J4hT$TJ(}9@7F0Q7V0gSnlLBWlS%?dY1x4iz-#rfpy_4(QF-@N~BAl@RVAkiq +Ije7w6Wx3C2hMs;d|FVvAxs+*P2Yi!01W6oSmS63I@E~&qYpZqso}V^5=5e_20qH7B3~7in{x~piJ}~ +(X#3l5R`K46rq-72SY8mAB>y?2dRT!*fM^oHqiz;{zbTO;qY;+{xk9scxg&S?!PhP|4qw?zta6pt)h4 +SG%$#UN=V55Ru5+31eT#bFBRGvtDd8Q?~UVt2maM8=Xf4K>UKi+=P8}e) +a=l|dVE9oP9LQe8NO9A@~f0fHw{Aq%W2o@8;jC%wWMnWnP|B3?+=#i$|k)>FA`g49^IHR&P1Je&^#t4 +sR43rluLR}idq6YL;pTEODqSdib^Z@o$Honqxfjz)8GJ!#Qs(<97qooDUaUe1{wX-C99DDIR&2s7W#T +RYu?VvO7hjhye+IcPgsbSy$a~7vPoS?5(NnG@R60*n1GzrrC@pZnIecb0T36v5S@#;L!v%F{Jm0mt@_ +3MQcQ`l`JIU%u?PrP1teHjNZsw(2p0x@q&7^f-sL^%=^xI2oNTx2`L2F-ghLq@lSxU7N+z>`{q*zl?L83a$cVigkER2}>OBT|3RCfJ;nFEyO94Q>q_spbAwxMf|f8goK6-#KaGH~6t+952Lqsz6DCon7UqwUukf?Sy9!aU>((b^s<-X;B47 +WT@c06eui%0vQnQjPPtHuRqWTcK{*(HDmqEtAHyTjcJ#C`{1ZHVofU8c5MSL*Q!88l-dum{m(Sb8EW# +8a$rn+sea+ksGLl-jX5)8LnYO(HFYq{E=cdFd~f$0TG;p1CYE@hiG5!KLqdN{MB#k1hHdWkeS3&z-fy +?md@>Zqp8A%?JV44O7EZlOL$cG@c7M@neT>hqqtDI6tL97l~&bCuytpB-`IcRMW*7wu +><6*`Qns5L6KLLBfYj4j}skHywU;n+ML;ojPoY6gglEwY)KmO})fBm;_p0`4Hde921I`rSO=D&MGy&E +`l2W_P%_AjitC|-~|&%c-2J+I>n7f|K+)})#B4WsNKyaU>VeY=7 +9)_m|x4rmAi_6wFdphIuAzD;p?;@KWClc1}qU;B!cp@6km7)O?x;RC_y~2{BsdY#EiEU7)XmIFZqHrX5IUV9>=;P{>|m +v~rNkAVy#B<3gt5QHmLWKm&EfAkdaGP(&~G!N8o!0*yit_j8&bd||v!{hFPJE}xW*&16IS6u4Hjwz5@ +>S~3b_Z2&&TNrGy(H9FaFon{Z%4E@C1k>*SfvM^ldN;{IZ-xrZ2gUCQ>vDpbM+wB?|Pa2P4G#XzxX`} +3;5sou-LS9$>d`24r=SHsBI3-eU8dxpbHt!{Q!qMy%$6I&Y-7&9z>x|%os)bN?UcWMF-|YyBoBOeDv( +%PBwoC0oZaWy7x2oJ@UebPM*9`?1$5{-3& +mVT3Kdvq2|SOoDEAV(q}dmWn?Q1O3AoAR3cX*VuLZUqNqFbKq`(`s}YVI*QB?kvW^Y~J`)nEmPsN~_7 +Ut|6GDQfq1bOm+!NW+gxn#0dtBt9a$t&{7&#gc$EiN^x<1A%6YkZv=1vf*AqBqT{7jGK^<&NNmCPocZ ++~R!vCzX$jcbjOP)o?)8%qEHbY^W$FJR>g_-n(i_U$CK=DXD)xcax4i1z{{#BO{d%V*aF;6KQeqI|2I +0vKgc}<=R>FICetr7#^!n68h1EGuvYOfz086lIIxfkh7S3 +=^wD_5;cVneRZ3I8||XhoPkRS@9}crxC5@?#{^cJ~R86gB+w+klqGL1~DhnU$SV8&c}jX@vu2sJy-@C +R4$@5x05;XF&!Es%|acn57rG7bo~6j8h<9OD2lY{LA^jSy@7n^sa1ZCnv9<`F=7CHc2#*7Z7t}vx$VI!0O0_|$4F$cykT_N=bCLIGS`cZZugEc$0Vno@>pKgG#jn~U3QZrfqIKd< +tpTrMY?fO6+F}qI*!Qj*tg1Ix$8_^m+*Y_6W_jfV8VyWX)h^fe~^QxvivD=$z +9}^_RgEq{wVfg47qDjDr7b}$FW~39>SUT!qO9j0Tw3LMYp1#+H$;VCw&iqpqehh9W;1W +gsZ%-t+OC#@5a_mCKqUj9-$L(C8Uyca3aE2%_V9%6{U!F<=@;6&g{%N+vGr^Yu@C*s`3(Au4MpSZ+QT +bX>#251v9ibnGXM4*?1^FfoT;DQJ)yH{`6VNXH;F-`f{1th>#3fJSha0LZaL22S*58v; +)#^%ZVgMFA&!tRnjZd|OBKnve13Et|cljE$pf$O6X6q!`v^w{ZL&ccof^@UBG_>C(YTUM!ed}^?R@Hg +@D?O@RK3{E&=J6ao1hAQ0`r#bHfzTEkdTMN3u_br`?STxJtk9DuwrgemT1s3Cf+-8H@wCSE3=Wa=nfK +4;e%r1o>;!WZUeLBWxqw|6f$<0M#4qd)+Qm422-GB3pgA|_0fp0Ao@vq^|mK&dI&a;#Wr@ua~{mNV_sYR?tRA3p(0`bCvlqG0`@+y0d)i*9$%W52_3qEw0-)~arJ_4 +oJQ=)FnTL(%6Q!FNjs;v~9qv2MF`!st@hx05Wx5q*%p6e)l2v82ej*Y}AT2h5jOvBX9$;zR50WnNBAb +@AHIE2#y7TnBPQ;2mh8_}Z_4IO$}1Vj!40Bb8qz&?~JJuYDV=;Q<8Ckq_Xf&zAcj{9^Kr^p@jVicRE3 +l5b=Qeuuiu@gOJ&R(XFQG!lrfsI>emBL76mUYfT+ +dWP>C#SQJN;$`mf885_(Inhl)r(lI&MEF3JT3^@d86<`_UV4Rz>Aje*4HMpwIOlpaUL;1_}tcejRaV& +;kmS>92a66kq&oQ4URG~nn$dNKZzEn12jhWuGbiGx6sSpvuV3Yu;8f*0unk-8Xg`cs0DNd;z$<>!Q-d +N&?cLT}5aYi`f=z2nXOsCa^E$7CrF+;*NgAUK2FY#*bxB^3Wi +*UPEQ)n4RU-z~uC+f+|7+<;5432}fSIU3Km?z%-7?f2@I$Ee*bwktvL4z^*G#KE +FT%?ivhQK{a;MT~iF{=R}fO@sa7#t45sZp77f~$0Z;q3mxJ=~=_i_u5`rzI5&Ba;%MDm$kvAF`7uG3n +{~JO&%ixqtgeR89ks@5@yOFJV1Wjd +b@(o|lEmstcz3ga9UXi)I@UVt*b+H#e^xcqpHE(&UcD}5joE{7H6-dtn0lGm8; +6k$k$Ti<=Ah7z)r4o#XhrxWTq08;zX0$*MW6Vh7$h+mXn_^r>s1`JfPghM)xu-S +egIlpBTx1l-AHkm%fc2K`=p;BoAL%k4Rw#Ld1uU5e81fRXFy6DZ+D~Z&ht5J*K5TlX3Nzzl|hv<2aPl +1I(8gk@=@D*?b5`R8^9(tPbo97h|iO>AqNr}jey0#W|k5tEvTEa=9e9^=1r$usYM$V7g3WqXQuBkK|Q +Q86C)`x9;1}Wv>y;d?M>4>o ><2F$jWIdD*6{mUh%rC(Z6QtV;%N*R|A>^TjJl8p +tIHs>eJoB$u9`{A{;2Is3K9N(Qw=rHbhi-o`h0o*&mZ4hp1(VPe|_a{+N(Ej&wZg~C++Kc6_H`(;>c|6K!D|dr=AyAwLC6v=&@wI)fMEZ@Hw1#y`1`3`fD#UZymX^3H7)OaCb$OBasFXat-zq%hf_44B=L3|8)Ubgj? +rVUpN_J|zH@-nuM3kU8EO)FSZJp=0PHTa)xw;hJYfc{vBGQ|u +y8YqdgkA#GhRCr$FKf%xk4Hw;g)cAySY3l228N5*g_Ryql@B_JhMSz0rq>)&?T(DuDGrpsQ0U9J?wP? +QbyJ1oYrq|bq%;Sh{QM-^n#H@c%*1YiC7YtZ<^NFMr6L(aK>z$U)@>X*Oz^`ZZ?0{afAK>y)@vqS%>8 +u*UWa7GxK08yorEbq~WG6xBFfhx@C%+ED}q=DDT7ZHn=5hS}eVt=xHTP{2&B4XTbdG)Sl%rA|#-%LyDr`oP+lv%!(A$E% +wGS(t4{%Dj2;VlSp +PqML9XQXr3-BMJEDCaib$*Fu|F>E;ZA4h3fNsZm0c@7jj^)t(e*7uY=gmMhh@WDH|V*I +LOSwaS}*6>o4TdV!KqAQX>MsCCo$NF +DhgLM50p^yILo8PJsK8Hw((aLW&{XueEzp`%8Q?)$1?(pu4hfKnZJ2=k{=)aJ8elk>&#VE)m)|Lj%Y_ +^(DQO(l*h#tP6TRmXu8O#q8&D~c&dn{tHMRSNczZT^cYbw6?g9#gi;E9eZ~ka*T3~dZ2@H=%phYu7p` +tEKUaQnw0 +KkIh1(xPOvV5B|+Y2+aFYpd#!@Kxa=V5~BzkF}6^}rB|cA)Wvn_yaC3<+4%P@*vy6lKYs27tFHW|%S( +h*Um8AKIiMesH|AMP9qO%wlJ(=j1yZRPqz@CW+I64-3}>){=yRbl#%G?O{pSV<0Bw$Y4?NyPlaIe#}%6cF5A=d17JRCF?7i(@b^_SomXEJN4=Ur3Dp +^TO4dyqyEb)QGTOM6?%c`t{vD|fwZloN#4Kb>Zi=~JO{MY^Kwtxe})nhkU6IV9_M-_0l0`uqBI4Q*{uezTRUz_A@E3ot6k*^RKkE>s3uSAVoE;u8MY823rT*9Wd=xC@GEh)Y>mG+(totkJ2DB#%-an +O1_TW^N*w-sf>Az$DAu@W0dgL0tq{}V^s!4&^e@|jrA%t##)+*%k#4jmoM4$ +N5qv^Qgo2sp$hDxQgKwC?YD9sgd03v#GthI?b&BLG5|_C8JPw`i4_|gk7gY()!9GvbXU +kO|(0k@4E@nILGpr7D6}axl-TY&Ji3i&NB960@3pqk8~IkWagBtpKyY7jv2XafbD`0rH-m|uu+C>Z;Q +C#Ej^Gt%pF(h2yr9B3cmsO2|KKr5^Mc1d?(otf{%DX_-T{pL57`!1bdd~hZ+Xqik+Uo +fqU%}Vl}&E;((d$@4Do0dD?XK}z5hNRDrsj75HUh{T3PrDWp`~u|=dRChl`&kYh2wP1wbMk0wA>hm_b +Gqv{jcr{-P>j(*KVJ{?i`&Br=337FRS|GKfhkZEU;WDea^NKO<8w2YHpX6^pCVDFefJu-Sf_f}QT47f +?qpJ{Z7q_%1>YWigxP+mF+`dG^D#dG(^YWWeJ6~~GsB#|P*O_ZOj6Orrl7<@w6P-~$Rak^R_Uy&GnR+ +Lw=$h$U{4~H&Rg`%REK87ZgFB-jH;kHB2IyIUgx`rqdeq;Yv^T>~{Ys6xc?T!YwgUU0DCBZgGz*6EO*ylf$7wLzmX2^VzuXD?sa560OQ +q5=3uXBdJ}#@tXwrcbG_My#(Db +$(i@@^6khW2TV8wnur37K2O$pQolyBOA*DtCo3-X&sf=ejvnG-(^YC|@7+>aLi)jVmc5j6^%*SAlwWO +Z4GK94F!IlLseX!=YpjI93%TgpXSpgC9h@w;6B-s7nqPADoC?dsq6sf+Q)VYTPZ|qH^o(hq9WjL#`3I +;n`m9DoCBEgBsR8?|<8Gb@t3|8B9#2yyn8AM{8wX`8-l|4pNG#EdVT9y~>uF2cYO}@i4gHo99A;hAhZ +dD#KA=Y8^~n@ksFvHcOqkLvbdr!b)?)XY@mKyY{9hc~d#tk=XJVTM$8{UGHhVleV{cIuD>XVfL4sawR +)HU9Co(-zbc^pvk*(rTos?J|mfL&s0z_?u(bZuKjq!yRszVPTHG%H=p=-^aI3pE$X3jOFyNvYJwtyd_ +>URri?x%BYnn}WKsd}G#A4B7AZWAIx_DvJ#a0FFPwB1Wky$YC<%Jn04kTO}`c$o85OjKiyiV&lrKcH- +BPzpza-87$PpPkR=ukv8NKfK*)n#uWmIMZGC+($+C@Z)X#uz|XDSBZm>q$Pqt;qbnpJPXs860gV2N58 +E+YV|m^Y_m4!Y%+Dut`>#YFkz}aW0t)rAh$|Hs8;vWrCjn2_Hx-cx|KEER2P8ezjyo83ceUKPg>hMxw +(u>&#bgo)g~>1Przu9aBhH_^59nd4x1e}e@q8Kx1!4f(y-HE!-L!h=vox|l5y?6;0x29t0%Cp@7P>nUAzmFT{jr5N;4lB)V{x~U*K?TQdWyHeoS@i7`F+ +9#{U@n>>~u`Wvl74UnJO>f8Ma|wW^2_4TntziYfQ0Ti3+?-bmmb`4cHCTc~^7uwEuw93vq=%G%ENvOYNO8R5z95eF%(0b5%0xbChWY*yq9b%uDClHd@eDYr$=Q> +sc2PO>7wmqoCjCUqU5_y{6-;f3#;a_Jo0Eo<8finC-DR=INBDo04x^!#{lEmR)Acbz9hze;BUcgy5v? +S`aPcK(pGVS{*PQ4AiV*<6ku1`6j1zVpHzfX;c9kz+Y&{Gmm2?cp;tl+@vh~GjsJktGYtwSg!cakw5< +fP)h>@6aWAK2mk|@q+INt&@br#002?}000#L003}la4%nJZggdGZeeUMZDDC{E^v80kU>iXF${(8{S{ +$OE@*oZ)B!zu^yE#Xbf@V|pwpHlqYU`t?T)M=knjjEA1`rT!TYr7#^^oJ+A1rAQmO`}TErL=F~J(B+y +tIwgiN9zqWlRz@Ky`L^D$0v_X1ROG|+1phWCX8dN)Qv{=x{UGSnPl>b^B2$i&oCK$oEX!w#a9Gn^3^6 +Ec>G%6!<7T5~L~-6F(D7q*Zgq6W%x3xWuXYLn5qnRMCCcB-pudkd~nb0o5%xQF|vM|%Z4X1XNMFRbtE +$lcU#okA=Y<-OIe$~6}M&7n2qKNQ9uTKN}`bWY|MP)h>@6aWAK2mk|@q+E}_|9W-?007Go000^Q003} +la4%nJZggdGZeeUMaCvZYZ)#;@bS`jtl~-Mh+%^<_pI@Om4?BiglR`_EfeExU4}r8SN#4R@G`5^k)|O +mJ-i-$$tYGq;kS2-WK9ZC +Hhq;+YQ6t8)Y4DTc5#eW3<^#uf5gV@z&_i$l;Gcw$XLBq$yK(Dn4tep4Z +>8Y<5*p=`sq#*Z%!z5!|1`aa4^R60C)z&Mu|09s8I~rKE@KNM2PA8!vUs4a@;Ilh$P*?3%sRl?OW0O)wWeU +)iS&&t_ui-!taM#wy`^ifsY4*+}vys6(MjZ2-AE@s`OLtC@K3h%WQpLjKbnQHjMdG46TYx5}aowGnp(aLre!HRoAudZsgTS>=EZ(rZCUw{6MO&HoeZ*qy +%1CMc3LozM@H&ppe|Oei4am +2L+B0N#MfAsbwCeUpLKf!O^ju)YtRaERllAUd<#1~Zn|+dQA8J*Z0Sc?sf^Vu2a7&HT6P@GT1}qP1fG +oHF(0oY(4`wEp9w`2wfovBi%T3HfH?YGmR|-^xn58L+k&m270-r5)NRF~O}Jy3qK({0>vl&YJFoA>3) +}Sk-DPS{UyJpaBOBjl_&Iyq091w^J7_bSJ)uY6z|gZ&ORN$CD5(y-A~C51{9XJ(GBR9Cqlb7pJEw#EI +LVsN~nxX)Ysdk9oG3es%ceWpPuy%)LA_wFmBlI;0-ot-LI +d*iiyy5DXS1c!3hdt5$qE`NkmOAf4ZrtCI?^Dxu8s7=HKJ171?dsNj9wfHY&{CJXpFR^he!ys6^yw~gTLKhzxLTmU4ch*`LNTOb~M#?w +~4pSY?^rD?B>DaVIUH;5K|-<041xb|9ig!fEQ4dH%|cmF_Sr9oO7!+gE+mvz++A4LmKl)3y3=RywII=8k)&24@0{bNJ-)`NP@+tQo}y9;b +Ewn<$mpTbuVsDXPNt9=BXM(D?ck~{#>dxhU%mTya~`~nk-)DKsjH-mp0l`6p*q$TPCEgk8N(0hdn2>~ +!oEsvR3>?)60?;$0j1?vKpoAtDwngx`Rj982t=Y0yYP0NedZ~6OU$lL2*_QRZbkZ#P#7oGp%luWR`oH +-q_U29OlqNa(rQ?{?@H7Ks6ERFFw&5Pt49Y=9RI~jxN3IQd)<&5(ZMA<2k5?vQd4#VUv%*-`FM5pGh2 +5FEv8@aGsB~dANBgrfT0YA5LvgWEQWgD*s~}}O1?v`1k?;+z!K8DMz$2B9s4nQ5XTkMMlIOo_w;vV`M +_ziIT~cQH9f=PDf~NH*pGyVbDvdXz2)D1_ot{sS;SlMn8|xs*dr)`oLyQxaAK1rMMVCRba6xcxLYlcP +_i^h5+RcEB}+LJM*8TPd|Q5Zg?kW^V?QeD)cg?x#}RMZHTcQ;o`Rgm^qUNpi#|16I7X>oeh1tP01WGY +Q@WV)%5ToJ6WiX&*lmf;{3>>yZHl`jlC@Y2AP6SM@~!m7rQ8Og|2{fyXU5-F|R^Fn6v31)4pJ3akSD= +1Q#W9PRph*fJCNA%;p9~mpAnjjx%9TKeD`gx<2OvzZPmchMxvr4PhS1?4NI`JT$tGfvm#qABTn!F$-Qeh(5X&iXVtqPrM+jEf +uayW;8w8CihJYak)KqD+e>6IKKyM5Zey%?r)YJKL&i1 +Xww2F+@;5#SW@67I;L4?hUi=9MtA3)|S3y_;C=NtH7IM1T;F!9Y-fJ!U-Z}6@*0(`P7SShaO+yvSwFn +ry^7xbbkqW((4bZp?85?!l5v|j^<0$@cC-K80gMc;geQ%+Fhvt=b;yqU +I?oJwq3wG0%)i%s+5xdm2NM$Zl?+muzCa9E`>~o{dh)Mo^%0v#QFySSxw$Fa($9UJL{!-s7)Xi(m0JU+{sv@(Q(>255;9dqDEKSM2gS +E-i&fTkF4)Nnz$Q?o=Np~5%ET4b*iXkalJh4kVne>$$GpIO6_4lT;Xy6A(ax$e5pWkjE@7?V!s;Dq`w +;S|pckXLLEz@7M>%Ytvvtg`t8 +K3L4|zF7AG%TJzTve50l5~B3qK>O)L8v6NvSpHD4rp|1}P)&J;KhK5RzC_+~u(B-S?MR)MmyL7B(C8! +Hf^n}+hf3^_Y{|@Rnse;>O~Y!iV_4D}jMBxb+lR%rPuH`_KJ}ttn>6zD)WB-~09r~>f$&r^2B3u8&5l2+Mx@ +kf;_cYNmX8;;KARYGv99An->=hesg4UBupkAia`;klz +NPn?NOb05v$Tc|FuTvA-IKkE6I-zn@jB8V-8!QUMISSj8seJg#UvMHldki9 +GI>^}@cJM8(~KfXMkoth8>UV_YTV`1R;LlE}Yk+%8(MQ0s=#v9&SiTzYf8oywW(-!k+a1^%b*NAUYgb3mxrVD%0>nlzT@1 +r*M-WO<5RRe!01NpS=9>`Z{nXJ(IU2A0HoxmAuIb_JRPM3IGuQ{UWf +C;xm~wk3;Ry}xt;kl8NQuC!$oq`ZBpA_Ans1wt-)?)eY)<5%jysX3-^EH&bTq@Vj@{nsDX-QhV&Q>$# +)u@z?mpv6Lf#Ch0~+(?8l(5y!AAhzpXrC(5K~9Q)csU&K%pmvr0_srqkQQO;eblo-M;CNqQZ+V_Vag& +nR;uMfTw18Z@TgzQQD!h$uL^{_44$N&y{(0<9)fy@n9Jngc<3@8^z(d3(0@o;xR+Hx3`HE3T{j`|<7f?$B1QY-O00;mBm!w?0>9O-53IG5yBLDy +%0001RX>c!JX>N37a&BR4FL!8VWo%z!b!lv5WpXZXdEHrCkK4u-e%G%U(+El-S~fP~UIZvWYp)9fNgU +Wt@~|+7S!yJ)OOZ5Zxa*CZ|K9J+ofl~r0s2w`d*RHS`*jYJBzfBv2O(9*RnxH@ey;nn+Lra6-5rFeB- +?e(k-e#<;#KudeCo?i97U~UmL$nyp?C9q*Q>r0dCtmX+jNTYx^5I#WmC(=!md@#eh<9vwUJrN)xo`X! +r&^JsuG2U%=mTT5WZ2OUV&@lEz=s%G^=$xe%>Z%!rT +%dku9M?tiXj-_pJ?J9D^>Lh&tE++iYUc`upj2`L=|2l-Io)Dj}e1ws4cID(f4E?R)%x=BU +Oyka_NK)57A$541}T!Ss^luodl#XMcS>j$CX@Mb0#b%%=Ge!Gey4V1{vU%mHhs%WM!h(6Zj*c# +hT6AjeYrFc7dU;%r-XD|X=WkW&<#2JO4x=M-$YYI3a20o)e;B>r72h*8n8jSJfh9`U_iOLHA2dA?jMa +7Iam7yUd|WIRTd`w#(bS5=RG!CFt{HrJ$u7QQ*G*Hc7Yq;5*ed}g9Lriz&Qk}7jbC( +>ELAnljRdtDfvmT9G+#0#RTK?F%MIj8)8>w&7DR9a-@;fh}C7 +#V`PR8T`$ga}Yw;Z)+Y(kaDB(^jRzTDo*5or!RQjM#`-SQyj2CFj2@iNH28Znl`RXX1~vtdE +e04+NkO3$)03jzmikI(VZC*GJ(emk})+>t1e08xkSLbmLZQuK|BtNXyN8(aapr^B+j%*DCO=xN2W|qnbcAv? +4fvs-0C|;T@u0Eq?^>N=uH?lNen}GIH_GDwOw#Vj;oIcdQ0! +nE2enui!Vjm)01WU;8qo^`!fK#gY-SJ;LXU;ST%B%5NLisda>;^Sxv`>N#V{S0h0KI^B*das&KMX~lK +l%iy8Y?mdlQmjgw{hwePC|E*>tX3nYAGBc-H*S|Z~bFkNw|7nekcb#TVK%qznj}9`A?-6P8Ln$Ry`5! +Ev3wyJ%Uah+OfMZMxyxG&~JR3Ib^(AL?g^IAsJrL~@yFcM%&A!ZI|2=s~I-p*jQWX0xaGyNOo+nG4_o +#Z5Qr`yZLJYjo-})x5G$A}Pz7vUo4m*MjS3s$&6$tFC+uSH(CXn4`MPk-A*BV~uRpwiPX!)*4+x=rBTWk&=(Sc=k72qDpnp#EtKW`ZkChGBuPPoQv ++oNu0*2{DUF;r~uVgo=(q@%DPPy1*9ie!R?WtwWv`f>F3scKK0;pr_3B@?r!2`8K`yOhI2EVV +KCA|3~uH_iXKaPGv#J_b}G|mUeqb*NR^w>`w$>vKENQJ9lzo|BDPS+EH$tFF?%T91=&COlfr24gQOg6~-5* +LNdS6e0z{P~N&Y$ny)J*R_8)r_@y^>KwC*M=I2{BT$re6wLWasbn +J*^h$Y$b57Ya^wo|-o#{UKW-s7ypW^EoGw?ykh*VSpK@O#78b@GLO&Ef%B0cl&6HQITeK{4Wfw?OxHm +|ob}O?3IKjX$E>1O1^u$B2(HJsnfc4@qV9kaeJ!~eIzxW|ElSNNux@8=Ax;~iXy8(Mk-&B-u#!P1-Pc +=96`1($)PxHr9_D&Q{XB=tU+|^aXakcEqJydL~+i+4JAtsI-jGh&r?jHiZ3BaJt>RGE$aYaT`FMP36i2~`u)L-g;D5uCpzrFn}ojgpTJrP^(Vpr4bXV4m(#*YPdq&Bv^H}uq|sy=>_1i7T&MDL +OCt)KR_Yt=_X=IalmY(@W}`n5r_m?LG#Gw4SA783&@_+^xGv3q8t{t~z|jz!K5S@0)6RDo-5GCNbiI0 +(JuG#T9y~z1R4@Rx84#X^$YGYipY2hXPDj)y!-Z+*lDs#EcYRge+lk4fI3_MBUd?625z&t)G9x|9A)` +*v$ME@jSV{gElaAoSJU(@wIk~TKaq^w5Zt*Bq|AL0001k0000T00 +01RX>c!JX>N37a&BR4FJo+JFJE72ZfSI1UoLQYC5$l+10f6qdtR|3MIMxVzz61Hov{)4iu^uEX=g^0b +AH{&pmNd4C~iSwVkbxy-Y{f5*XF&GRj3$4EO<65jLAyDb?eGG=ae3Je`KMF{xb`4+ovz8^MZLm`tTW8 +_tCxH$}9Z@6aWAK2mk|@q+G{UHSvuI000>r001KZ003}la4%nJZggdGZeeUMV{BW`XOtRobQ?644Ev;-peDei8)b2TKUA3CbToMmglx%hD$-X(1tb*+mnY2+3i~1l3{nZE3+(HEDlPZNm +U&>(5F!ZY6Z5u-ic!O=XlIsKp3hY52kHKIwdb{21}1)Wj=`B3x~GN) +21jP9Jv-2@F%=V!TuE_e!YmdGSdD|i@`Bv{N`9Autri465P>^k)P>wj;7$%wMG+$MK+qJ3#h&Qy!E1z +Ju>QsHA(J1-Z&KWtK*{N|OK=rAL*dKVqO3MKVvio=U)tf&)f2iJm`1k$$yU%wSfee +5gf-slfDyKAl6oYgTSH+JKF>(rdq>5uIXirQPvw~X1G&;@egG+ef$ELG0HNv_OV`>@mz$YY=3J +GjPx!;up3ewTAr}F~Ay0k|Pgb>z9d=!G@42V@6!t#2AXqGiX`OX+vtN!KRxNYucNbD-;XRCCsk~SVLH +lJR2Ewf!uh8%z0H@6^mgZjjREcFA+TNVOd*`>XUr3_1+1;-SdL2uGv?}q8doo)>xk~C9Eo=pSU^Y*)0 +@FiX7fQf@~7SGZdOF)3siHw6RURGN(@J5vUZ#dGKZP^82*G^k$Tmf{bcjel-~R7ufX)}K|!iU~Jx!Hm#20!=-o!hp<>1*r8%5s+uMf;vdxJBa +60hx`O}-SBnS8lcwc`ZCZu%KSW>?p$d&MoefGjJ{Im)I5)V(!j%(wkgtmi~(Gc1!#Ya8vd{qzdJ#}Y98&Oz69DO!V->WSdG6%SCR|0%ETT&af~a(gx6Ve{soPlyU5^LaDgqVN~*!fIbXMQ8u37p9ZFgGi~#tn0 +Ak_|25L713;CSc&?ORYQr(D%O2L~bRNb@(_SzA-6BL3XC4SEpnzaCIE|{yA_gCucs#B^Ybqx_tFU)ev +TJn$mAZ6kluzq;Nb*BNjbQ?2GB3`)50r@J756U*7=E4f^eYp>G$_7Xrc!1j@K@R+e&V~>kLz!5c4>@U +oW2dDVcfgk=kW6#2<<`H1M$dD#kjm*1iP^_{KfRUurDfam)jZ1%0DF+`Q~}((ymRSz)m@^8J@T{Z^UK0u#kqg&`3FQ3Mt2uRd2o;&g*V^ru+z9k1AWGQ!Be +i`AT#ff6{I6Q_sVI67`VeC_vo4hSI_X`0*r=t4&Sk2Cf~!uK6|7*oEts^=_C`eVbmv9yUYB_y~eC2## +^U+n+Lo*!yAAb%zh!S!?V!n$>sI-IxIMC(uWNX5h*alfUy2HK&YiKTy(=-)H1jEY7|0P5vI>6;L9U3jS@!)6^3g4#?wGB0w!Yu>Q4mpBx@LXRgAM0vqbe7h92*=o^4W0gg48w};d#=#ii7`#@@0sLQ +Z^S=#gdl~3vth59TC(Cl#5{jhP5PSOXBfAgMSG5_xDCTsUL0+%O>o8T#0;}qi^HM}glYJDC#Puc&Zu@Mj94g?-U@u!=m;>VAuzkx*D1|K9U7Z#Pq+B_FA+@-n|J;)vG6 +chvxCL{O_CfZJ$dg(9}K03cb9&=7fSj5>-#J99Qera;q3DmuE`4`>c=0y*~O?i$}T&5|X(M`@@-XQ0-~Ky85J{{v7<0|XQR000O81DB* ++Vb(9BGYkL#Yb5{xApigXaA|NaUukZ1WpZv|Y%gPMX)j`7b7fy+Z*6U1Ze%WSdCgjFkK4Er{_bBvXmO +1Vc!l=R55=~=c3+&FaXIf|*PFCR1A>-ln~f~$NNF86O@DizA@yp@o1{Pw6%JXM9L@}f^YRRJK@eOCE7 +`T)ZbcfiC=u3<8NC{rh+N{YE^?Jh8w9~%urhkfIA0ZcVI=2FZ8L3h(5E^Vxzec}49c-cr@8!?Cu&)ZB +znD8>H6Sj2*Q=BM|GBG!dO}Vw$+>6*RQz|kz9)CgI6fhNg^XBJ`~HS(rT7VBXVs#QN_5LeIt@WT0fWX +GiXxHT#FLMKF-op9Gq25vyk?5>xAC9nK66JVjOO|zL6_YB)R=jCfQ4Ewju|cQ*139qOi~_mbP +L(956i7`}^Dbv3tF{pT3#hK0ffP$Jy%}elxr0t=Y%q;r_$>}k1aCnWE9qnM}uY#GC~r8_4KDZQ3}Ld`PQ8-bI+tF?F?(m+ +9DIT#=VX^v*eePRq(0u(c$Pb`$Woo4!VS^Dr-%i&1u6?cbSM|z5xOE$#~-I)FmNl6Z)q+jN}&?h)MO*OdneM(5){HBZvLV9Ug2-f11^2mET!rH@Zk-+7&CS3(GajH_Dd3*&0N9KnO5jEB;7ISC+zLazBL&_!8U#Ue#0zp9{3lQu&UMBt`H~<6So+&?Pl`~Ou +~>u1{h@<|YOGYP=H^rkdj*}bpK+GRBu28G>|x>;GqrLP3fcRkKZ7GzIm2$T)JQASypaaGO5}f1aU(2p +ff<%7$1F%ScPxYE-1kZ*adUL28{cAF)S +)f*Afcq8)Dq^kPWD@R)#}oys?*pC36?Z6gvj>aKHp1KcpFUriFa^i5dc;Hp@R<+51wEzo0^T^B!x%0s +dtQrZr9CPHGKEKDIsgC6lN+i>lu$tdw?cEAxw4^^5 +`OzL@*4#v%#2X=pPtj@+lyj1Ska9_vcaHN@vVrFs%?V)by1Q?-!mMr=ikxeH(BX{80a1bo<;EPz$kHf +%8ISfoSx +gW{6l4WbVvkJ!30D_X@Ba`8}+` +a*1TVREf%)rn3!1O1R!qpoK0vExkk>nf=dZ2N{6J&rjyl|D;lF_M}QSCEnd})sQ2cbYcmN4t&E2{)VC+=o=dR&_mN6rU++O7^8YF;@YFN!*Q8rb~5^_WdPOvO +o9A#7;SF+V>e}Wogkym5E$D3FR)5eRnN!(lE33%?YKggDrJc@4wfg4Yd3621Zu~==W!@;RCh^22f|`6_)$~QqY$hYMQV2h>LKZkkg|=9hmnk8oYl_w!FafwvM +xvl^TC0XLVZNH(xWxsjw!Hb%DN>w~BHH*=pJAgpG1-tNu$j{b8p=Npi+1b3VZKt+yz-y9K +hX1iFW~=-~1LwclWpm-c#EBUC_%4wz9e9B05H*hy130ojoib_~rFtc02b>tJv-3)_>pB{;uNoO8(?Ba +NmcQgZ6HQ#Kqi7Sg|CGo6E?uz#@zYXDlf<6=}Cc1QiK9_2H=xHy$DK>l$tWG9r;6Xt3cYcZjWTT*FGi +QP|TP)sEWtrM2I55%P$nPjdZ*ww|UBM4eBE!y}SWpHU9KfA%apX`Pcbf*u$06>8hF7vI?z)T=6ZKTs4 +U=VlTIOS+H(NJRbYXssusepa-gZd4e@kLq#ANUYQS6eG%}ODR*xx31oV?Ake#%RJI-m9_4(jRQYq6M~ +f|n7P_hZzLpVl^gMP;6~MkXkS=%{v%r@VjcFBPkN3{>6q-;{ra4y`yC5T(L +K!oImZ{HbC;^lW0~2&)q)dLdS9arAepfAZCe +IuTkrRU`qeKtm$mr10EG^%=yQo^|B*ba7s<4zLP>n90ynRMCS^~=YcpDSpm_88LFi8LM_TW8b;&#jiX +{ZXS0lgF&@GXXWY8<;@6aWAK2mk|@q+G~R44lR$007vM0018V003}la4%nJZggdGZeeUMV{B$r`>0L9e2k&>BPr&_no^QFPoMiiEWD1kdz(WZ2 +tSy3m`yJe#o8OJ>!$u5(yN5LZMzL6oMews}@PAr>a=hX^~ed$){>w7VA~Dw|BA7YE`EBBwb}%Ep(|>T +B*8FQ$0&_ZR-^IM32?=x>o;?7xh1=G_UF;uhXQ~s$S^j-aIR=lPudr>LXMuby5|%y4GnvhxbWs0o|qb +LM0RYaxh3%E1gdVYLevezbrQjpw@ctTGw}4=W3Odm98SSN>}n(&2_HJB(w19yL1A5&TC!f*#4M?S1pQ +lHq8h1-YTiE_Y62v7X@@mO`v94)jF@Cc$PVxgD^0n;$vs#pSM3+Nbh4pF3L>v~=42*4~itIa<2s7xny$ZaRt!H-E+>AhK5EL9wH;W$?5a#fTy3< +}VmP%roPrC%)2_Ts$z6I(k%4n5LZW2UQw64>p??81$o=%c1{kx9yWa(8k6ctUfG@?{mq{H1nb&2J8E`++(<6R(Pwh0H>QAQ9>E`t0p0cIRV5#eNQ)m46;kN3e#8Is_^#T^D)V`pHr}V6^t~ +ZOT4dCrYC6#=N>Fw5PQJd;%ZsW8nV)JHu-9=I@v~BtP;_TyxpW=6i=kJcsw^v%G)x=bRHD4Fkuz>dVa +PGhLQ-XSnoRZte^&fftg#v) +DS@4-*ec^)p>NC9f;ubNiBbot29|kIjeg{rGgqKmZ%F=o`8jbdv&dccFwZZr@xv>Z*Q8}dF`)Ud-`w} +oZMy7K$wxjRz1j4z)>RPDRz~A!*8B|0S*T3sYO$DeurNR&>yIKP~MxhKM20Oq)bbv%MAaOSk0X9%KdQ +&+gqxyNnn1x-rJ#j|~sB^j_L^kHWTn5-)aK(rN4r8bW#G4e5UIbT$Hhkz&GMx%ihw?|Jp=4~hg=Hcp3 +k^$p3c@-rHA~Ei8eYDC`Jhi +em#{nun*WtY=M2!4ZH;)Zz8v}-_5@+G>|)#EEPz1oM3v7{Rl%YgxVNuQR@nuc4w}QmAHcP2Qc58p~e5 +D{nX4x6*0R7@d)c3_(XphK|$63I=N1_ya861X;h3zm^Edt=+lU?cb(=*xrvKB+u%gGl4%IT7>>s3bFd +E>-w(bpjZ`$;sYZ=agTAV(SSADj4ENf-Xo6DgL80JL?!;`51EWyYH0#ZT96mdXgX3Ml-8DtSKuF%XZgH%H +R=`?{;(t@&|BLf;m&10dgbmsE}`yO7n1Ud!EE!Vjvl->z-D~Mt>P0M|+D-TU5b@vEl1_E1?da!ZWVX0 +sil%-O`9@lxM!OjZ0pi*8qINi5tq6UVs4U|cA(;&z-${&*Ux6?e=5Ipr +oxfO*XuN!#?F}90{H=m^yOM=b70$~R_ +2}6PrHm#vKDm(>6J?nVPb*Q9mE$Uq)_yb~!%?$G602fMbixiNXmXmds82h!d<$Fw)T-SF+c@tHzoYTf +4J55*T{N%pMKv4LfR+6cSObEY|Bu4w)>Fsd>)(#3S(t5g-Kyaj9<fpMXfQAwp->hC`BRUy-M|(+wiO89$qF1J*4DbQ2;uL(r+!h62A(Ag^9w{EV>D2j~t3;~NHj#-V&0<**r&>^2f1R~$2ARi9`=Ycq7-ADNGAUIzXcl0r +W$0H<#>-9WF2hL9238}u!-xS=y-q;2xZMpc0w-+X1l@PdQ +%0L@ym|2)tR2#>0OAd1pNvS<#}S80y5*wmUx4sZant~k*`rmUS#k&3frq35w7n9jG1i~VCPoaZ1F)9q +ZrHjmb#fC{8=&1~C|s)YP;*a{4`GT~f`<$soOFgZwL1Q{i{rBohwtD2E&TcL!{JZIZ`G-Ib{+efxd^M +eyN!_RdPDLaaVHI((pHUTQ&^4DXfka+)^&keBT@wXp3U%2ncM|eKDwn~FV4@2y=>6 +0wIB}nVM(-5jNol?>b)A4xaUj~dGe6D)UVEnra_<7gEHhBWQ3FVa0I=b0X%2M00~x(gZ^?E{sv9!k2# +&+`=zE*%xeuSt_1>lxb`j@txgs}+ZCJ*0qc^C9#ZclF1oe)~L!g8PiZ_aO6I<8BlzThH&urD>Cs3KiP +=3l9InHU|xHKjuZRkVaVIGSc;63Od#5dA2m8I7u`diZ(>zsrj;$X59<5GXK`qIe)2y6ltKw6Qmj&4j@ +9A+$I@lT9ZGma|{UbAriyL=k8c-N=R&P?mmrp>MF6J7>jCbx(v@FkLrHc?d9#+ab*u>!ktsrO&LyhN< ++V+73I^nYAY!3dt*;zJm_kQ%5zWvZ)PHFK)mQoP+~Jf5^8xW09V^K?m0Z($i+X2BMua=2@iPa8Ft&`(1^?V(GBkASqQ^R+SRa^9+{np5F|`{_k(gY;)?uTlE_ +PypFkY$LuyBFhdSMxNr6(Rz{9=ra8T7l2kJlbT&T+Q{HS=O}gC7})omo3V1LvA7D7J_CglZWiJ@4W3%GR$Y6N!EWHDC5bVR$O@ab-puJG^m2&_ts-Wn#OYvCl +s8qsT~%g2&nSFOOx9$7gLI{HDM64917Mte9t{yEgJsHULh9vvzKiyK(z47y&UrzmmbBa;q}EMJ(QE-mE8u!ND%z6Q)!#u7oL2+*-UYvz<6#+ +OR$X6at{;(Q30wohRa$GYz&0@|UysExchET~yJw9aeDB^_K+H6R3e+MjWR2CQjLL14aTy<8?UV$jXBY +3{(}@)bMsR*AoFH+hDQZ+#M!Q5eAX(Kgao+ +B~OHGkF=UK85#)7nRO|I2yTRn%nlIa1@clO~>?XES`Jbbz}b3)?5M~xbiixd@mT-iwt7VQk)gjt&3RE +$pXu6r^a%fwXX34}6pCNgl_=}=4qepjNfgyj>YU}B~cUdkm4SX_y@TGY!-@$Ox{Fk$Uv@-a4iib=}JB +E1EIsMcV};8r8W77a0^Bbxu679~Xo!K1rHHX_JXTYi~kOWlwF3NQ(%cerOd0D^1Qw72U)eZ-lgF52$M +GI#g@bPEGl-Ma71fPOtXM;VIoj6B<&a0HjEX?KygY~u9_)m=RW!!#|*xGs3AAG5>Q#AABV*;~S2iE*M +e*#t;Nq8nl`)iuyFVE{)RhNfE~bt}Y80Ny{8kk|?CGgV4rj{xS$`A7B7|Mcp06K9VBDXXRB*YNM+)vJB__rC_b_egw~<5$o?#rPFqJ`F_KYyp++G=GcKfXJn>sC>P=#;}MPv@5Zoroq$i-V +SI)-_bjj%nK9I`=O}yK4V0}I%)l4EP$NZupAFJ+(kQ5j1;mFXl1}q6Xqh7<83zrqEE)~lq~9cRRMW6k +^1b@mIGr(hAZ{88aJUIRG(mnB(4`KJN!0)(i)5n!lnmGw +MJ}BV$fK~lPUmavq5z`Uh~&B|vNc+8GXE8xjX|U?icHH4z`WT7@h{ed2MjNhjR3pWC_^zuZ_2wZxD~* +vLbtQk2DGV9{*eu(YfHDz%9G1cVJ{|u1^v|QW|1FSZHpaJy=SL +?eBZFTm+u)VPb%0wdLwXZ&{Pb%H^~E2Fx+Z{C)LHLP+n_AUi@TvYf)cIk2`uI2bc!EWgAE^8nrF`9Pd +3kUU2dA*_BGx;5ny5xOsyB{mr7zT?Ex8%5kk*v#bLX1;F`Ia37jcj{*i@(Zmo9nQT=zc0J`M5t+QPSN +oBe;dcnN;bxyQvx#gR;gHg~&OxuoQm;)FGMRWe*z&TaWm26K?hCA}7qug}B_vyn1r7@H+L+{a +ri~w}~7xL&}tDtVXKpH0|{ +25=gtnYm_{AqX~A-7i6n1#h`{UdtW>SuI6}D%hw!9lGjx64YWCqck+mdmdIfZQY(4VY4NCSkGEn|2j5 +}ErRs9rFm3kr8>rkl+^if*4CEa%)&o4e4{(Sr>v+d`kyx}vP*bvSZ{@s@&Un%i1>B?AXBrMQ3)^pHvY +FD3~7JyMyTNer7op~D0e7+%n^m$u}bz@>5kFkkwz%)QQ*mI*-pKHN5TXqfJj!Xk)zuUwsH!H9mqUjj` +t_taHEia)PbjH|5B)Dkn1{6Pm+}e?}9i(*we;h8cVq{0csflG)dkx8Vl%kUMBP +UXPlL`=rsNOKzUu78h>*CNl^hlUvhcdr$Mt);l$mI60f|w>bIuTHQeEFlC5a8D>U +u+t(C@x^1Jj>^+F&Rf{|6X^LBs`U#lR{vt6Dx-Lw4@%-h1j-Ho2PN^+RB(dHZAac_S3O-T8G=dcZR +?K?EXZ?N390XI0P%=jmxVdf4(muyO5Rk>g+2 +nuAf&DG|>;GJ1T3b0n=|XQ6{T@4Z0XW;cP)0Jgt})3oe+#_l%HXNy??n$p{M#+ovQcKjRy!;$awZK?e +ol^<%lp5M3D7if=G;J$z*Cm{y(9fDyhbTqhVw$Z%!S)Jb^R}8+#h+QI}A6_EbA~on%L}i+Dju=I_;>w +eCS>l!x3|*=Z8uxNc=PSIUp-c_VQDUD2iKGtmjddOVglEZA>v$<2+>VUbN!Y?%h^vRH+O(e+F&{46>g +;^NGH5$IX?quyi-TSS^wK^r5AR@ZBz;}3akgTx;yR!_Q0wf(lwTLq>fm7Ld7dfI~o*+ +t~MfWpp(ghUg4HrWt?#zTR=Y21OhVeVcmSEwMn$`s&jnQZ +vb9TX8hEQjwL^);hiNHa5}H8)aihE9HEkcXk|RwO?_ymO?tNe03$O!tNw3@$u<`5k&{-K?J6SOv2Bx}VACbe0 +t(zZTlSfodjHiB)`yV?uo*OUTIlj9tH%KL3HhLv`s+yy8k!1Qlg8YVod#Y@JF@8h(cj0TTkW=)G@pb+ +#v%m?SOrFOj?+aMQA%xxHR6~G!}C1X>0@~M1B~2Z`495+gwOCfo#Vd2P#kvu6n$ljlH#!ZC-8e;Njb8 +~5gdfMc@kh8y?O;N@UKg^q*%CX=Z~h^z6JdZnx)+&o_+$VECC?S?yGZmgSR8^iOHbt!kNsR +%w&w!?@cp5L`se*SO(#+mnQWTd-uzAPO;*Aygi~o9M{(Lxlk*#vXWC%wvfevlO^ez`Gm>8=N=K~h0X5 +77aT2j2TWp_Of|;qY0OnrYtE9JO0J`Ip4K5ouaPRSE>{K4FKePO^|!h-=}%2QzF{k6O1*}zUh?l0Qx? +O_Uybp#`ai@fu6$l`#8COfBpq3n@R=;V0o=a9<0fyu3y2E_Z=&y_HvyAs!c8Hnao5pgVB+PvuMX8WAr +}}5;22|-#>|sq40IVwEaGqW(Qm+_>;wQm4nIgd1!Z1B8cAtlp%S7p@sp7DvK&T_1Ie0v6IwV#1tP#$K8!%97p2yAMi{h{ +Rnl+~AMC+_dfggnj@gb9;x4Rkq0R|22J^}j`d!cr&Fp{>xXV{p_JuUVTN}{(*M6j#8Tlm@fQn)OUB2G +Gy6Op|bLj!|uOgKUF$53+jU@7=BzHfLObne?aM>0Vk{01&&Su+7IETYrmj-{PqEDeRsh<7UT6AB*1~h +d0jvC}GH#$_L+L_*5k~FoptT8kw@8cVmI-43PF9AQG&?M6}k$U}IYK86@kWO~EU83QH#GHskevAN0&kNM{hNP +M7-g-&68VYZ9L#&@jks3HyZ3akGFkutDz4Ku*&p{yD9J{_+hk1>6n?$JT%^X5%&sS6CD{0j-bC{&{d- +&B%%x1NT|MB&peN5<~d2o@BKm}&s90#&>Re`4HmK5eV0$a#WQtqR{7V67a?kkhta0E9 +PKcma7+m_p%g$6MGrmFcn#=VWFN@1XWi34VJsn$Ea)ck?JLn$5FLT5P{8pYGFl)<~8mBDm +a}fCjHA8THO**AYVK#xqekw1L}Vpskxzd?tKP;FM&gKqQNCHCfOBt^`e&?=hyxJ+115GT5Gct<#F9oT +SE>uZ=Cy98ts+Z3a#L>BOfUb?k-X_JvJu?gy+5N@>8%7&I$m;J4u5d9$QKr<$bs5l9pE!r_5k%x;_Jv +XLNy1OxCXI}{piJ?i6-*C`((xK|3<#9Iw3lP{oSdGV#veX5 +WOabc(5Bh9#|*osme}ol?3Wx9tZ{M`5M3zdEFQ^*3P~0Bj*EE)H~!emWZK8m9zL{%KTk8sc6nr{pG;X6;jh$?eN;2#WbDt#i(mvZO72*@$n0e(oXtsKf&IXF*U( +Q+iKeCiu$ZH&M+fh#gf)u{6Y!K^E5O98fzjPrP!280+P5K&IIq8>-@(|%=BN!%YoRX6wcL?5oQdV}Lg +CW7OUh~0GPU@IG!UR@W2oqH>_>xF11@uks2bWK%XJm{p6fkMm;8Zg +KW7;h0_nvQpAw*VLCJCmPfG2rh{1FTkN+C81-0@tkHY=;cKpcjJvWkEfL%C!y!+FodvO_TBUbmKvdV`G +9ADzR$>l{ke-Vx`$^oj4ZWpCU*b^ruiRb{zZx`0Ob`RkDYuPq0y!|!o@Y6lCBgob!-QzkoTVrC1i>_$ +fplccUfk0HXCb-XOu2id-E!)CJ*?1|vjf7-<=j#gKPPuJ!!jqUs=i#-{mnfjKfGi-IGUEj*H10R0s~{ +PTX&i4DjQq3lz0Pbwb45gR{4DTC5@^_u3JdVy$L*T?ctFmu)BLM*|Pbv{?a{q**K@=RM@w#|GC*?k|c +Q|fUT=4AVsSaaLNStS2Z1YXotr0T!J)Bhkx6})u6?mIX!solL +j3FT-wu8~d@tY;q0s#N!E2rwhE}`7jn6gK;ZrHMK +jWmTe9jn&ULA>&~Q|*9;YF9mKi(4Fupj*nPlbzP+QDYD=xX^&}7pdP=@EpP1g4L4CttRZT{^pJjW3N| +YMvGrYf^T^3V}mdSmTR8dD#?xR5aTb$9EoF{`yFK1Yi$G`G)7l*+ZuRtsqKO^ZmqUSrjy-86V-mE`9& +~r*HT!cXb25w#0a+?(?RcisY`G|LB?KCBwrE8Cv@41C3zeo^_Pu-WH#mkOiD^oIG7o)QWc-uv{iU$zg +N5J1z2X^taJrqs{>dH(T(pK?;%I5CXN?i-MN-0`X+1{VT2vqQu(*;m82HTq1N! +|VXXG?kk@NjPI3QHq9@YiqT=ZGe+xn{6zaUd&jDH~oOId7Gp(e7^P8CY3%}a`bL<-5lkSF}cBuqK+|( +xMVrrF_$(#K~U`DIV~8vELwI`5fT +|sQ7fFzw`}=}^Nyb4y>0Xa&nJy7j7`T{QFG|ldHrD2m!}kYqW(b*DZxnO1zU%$y(&((%F2CW(%6xoIS +jGVLA6M}`SzdoTh)^5$y5WCw^M*&>>}Z^pm;X#7Wl^ug^!Ftcc{Y%s)V(-|23bc)N|ubST^R#`RT_mlm_ +Ea{g3KlSuAN8&yDk0^*%<;%}4AD^kaw67(AGw+NIda)u-BZx(YN;fs`yj +|_3PN$9idoH@^jRi8ulPs{J8M{eUn;X^GPsRy_-Gg9(-Jc(BPa)*xUuIu|9lwbSx&M#~a6}uHLDvevN +;Xv@lD9>3PcNm3aSXq{vlw!?MlMdr3!)M3fR&U1xfM#z^e9&i4FWrDa!hjPnUnh7G*fPw?G0$jd(zVX?xi0Tx9z4JjP +OB0$`i--JKB;iF3_?||?rj30qNtV^>`#95~A%-$%v{SKA%miIzgL*h-+4V5Ra-QMB*zaIYWJU;$#_?P +#`Z{r`24=;W>qbp`F#bU*5fi%Q`x@?<}poMS#G5Ur}+Qb(LQFnz&sV#+U~~71v?x$Df|y{4{d{8PnWGedkPv@?LC`T6JL2kGCfZw8@$k{$ZoZly-!}@#Tpjn +4pN5(t4*JKk!vDWO}=l=J{<)dD(T&EEPI*m6~}vfbB^ug&8B@aUM@+`J?SYT>MhVrJ{*wWSm&R!eyQ +q49T7J*+HFsgH8s3z5<+Ei(ch*Ml}+01y(ZL_7a8p!5kllfdoP!+3XDbnE*_rkT*y!blu{|Q$VyE;m@ +<(!xAN6l=;m$tT@5r%(uhljQP@aBTU9z7KiY$;M{PWeP$Nk69O#b7yOH%?-tWCZV$6Egik->fTo1~Fb +qI-B$LE!bt47)wBZ#RPxZCvx%1dJl{iQV10r|td(M50=kxjOT9uX;rD2&m9C(?tOmbs{VaI)u?b(5!SW#M`d1l$MuzSW!Jj +lfhyI^)NSSjpL>8E5i`>~Y8lVF84%oGMJ?4a^miWSr1-)RuP0#jka8)j@FC96rDrdsW$rYZDz|KXF-$punCgaxA=g{O5<8^!odo>wnzdzY88!MU| +w_@KfnXmI;JoTXYE=21+iIOcu$88xapQ@?86$=U4)D8X_~`y7o_hC|+($1aaFp^m4}Vae|GJk@ex>F0 +jqo_Z?@Fif2!pf}YfXSrfc_r4L*dKa2dHAHlL +^a(bB*F6$1nW%s~_w+_l`2E9T;#7AoY@zgSt~4QqrHIp$%l{cAKzcUze^wQ9@6W(+nf8xWn@ +gG;yHZN#rBj+mHE1{2nm-Q_d<)s(vt_p-~tF-Rb~NtA#0E>MY)(rp{0)oRW17at*_}g4A3*UJF4|m5h ++6HrY>Zj2Fx#(Nh8O7aqt7u3!A13!np%mi!b^hguw4IY3SNW5=Rn+Uv`VF2PvZ3M)@0O+dYlTSdch}S_2(Y`gEJp}V7c!YY8(0)N%Q~&GW5FA>bc0Nhj{r(45v$;#s(Pu +>2v#h%g_xN%;eVUMPOaAd8xeJ^A-C$mqsjGi|7MM5Hx0M^nj22SoXM}4X^r=`qm}9s*p$vd~aEU*<)? +MkLI2Dj+AELgnkAMG0&aI|=f+*H)WMQ6@n_= +k}S?pc!r&sGdGQ(@nlffQa_bpTh!r981%B%H7M)3@d6vm12!rlUBj1F8aEuf|4|Y;SF4E-x;27zgVOw +f2kZggh-T4yWpLfszl?F24TiuV1mJB6~vTEqh|9=1}JuhLkeLo$~+*J;F{U>c_EHW?H)kfLL{fW4yx) +bnbouYH4UZL@Pf_a~58|YoKVjU9(T~f@XtQeVS(tRR|+Rtz|%}D1*_*?i1>JD3S5ia@NK3T#6mfPHXB +sX6}TbH$-K*s5Ckx4KP~_8<=-ZDoV6bkqKXxd{ruU)I%HXOaDt24#-%B +RVoL&oZ|Iv4G$&i9t61C}@Jdz1()YZ;87m4&Z2H9ZK;k`^&)m|b)=par^yMbej7KLT~}4blmvn5{6SU +=3@w5`yKVE=QG~S4nTW3S0UKy&?0>l&0{GaxE5!NrjQ_Dw2_q=Ic2q1%jyqQ02DRAsKUq;p7G2nX-;v +ou&;6TrlWAqnW`a$^5b}W;IP_UZ?xtbTkOWs3Ol$??#|$6N@T!B0DGLes|;Xoj^@J6o?%BJ|Zv}Br3O +5HE48WE}9?u6*WKKHZ_HOSXL6EN<2Hwz*p{EqHZ_0RrMLJCvno?NyDtzt=Gd>t^G|`3sv85b>z5P9g! +LI+;5I3zc$qxylvo`^M*}nRkO|$Nf@~ZJ>VC(W%To#AIE^6;W>d)nJ(xt)n@rU?E%D +rp9-MVG7pWRa7eWz7jg{>@ZXRE2zZMddwu&~fI8(pu2m94X^8Grpo0QdEMM|v8(d7~fcat+Bv_h%Z7r +c%Ucm1AoJVfaP>D205&z*QE!WX{Wpz0d4bjcE&;x2&D#m`MVJDTe|r4!q;OG@|*%E&xYPULigCTeujanMVKH96exl;?`3x%6bn3(_fZSa>i9 +Bhe;F42;TB9Kt#~xe-g!lZppy54mD|cZQGv +FlhI4*cEUy+!dz-KYM3KO@6aWAK2mk +|@q+Gq3uYH*X002P@000>P003}la4%nJZggdGZeeUMV{B)HpYHfVba9Ni222;y{manc;x|=_Zn^*39S)QcTkbw!7CM$NcTG^4m +4SPjZX?cL_RhDJX#497SBUBkBRMrLd07A&Q-b_OyPR8Dg7T{`zYO=f;k9mZYc+z=ELIGExn_ju+Hc{HkF3e!lsVY8qfYtjP)tAlB#fr +=#0JKS!&ysEf@Rh6%T{kO(bELX@TREZu`gn1^tY(1t&>WDS49TY;Ai3A~Ds393PU5XcuTQPQ^;NIY)2 +GHvBY%*{vSWV3fBdolRVI;z`{+_s;%DIUcpwaS}sR>wT4YiSujKfw8%K1;u+t1=Jq@@XP@xPVW`~*$E +%@`nL{O;rHt+9|w6GX=sdAnpS<%9BQ1n6G +ma2F;Ki&#DRllGSo3>p_)r@}@RS>^PXyZL#dqe`yEjqqG-H@4XsdTWjpMG*F7+B8)Krj)#`df&yS?x-kiuU6ED%6Lxo(X8rVh`#DSS|B6v$xsd`b0f-=xS+61#Ygh$5tS#56OuywY5SxeEED*-(@M6QZURd%hE{m4fj6 +wkTUQ0Jr(GSl|ek_AXZ)Vj+wmBuSmI=iRF%<=>;)IwiNuze+6+=2kO~FO6?g_xLbyyO1f2)E0VXzY@YWp>6d!fho*`z7+$67UlBRXr3hDK;e~oaI^J50F>9R1b!W +?yRq)v6uRnZv_hBpkgxufx>f4gWl^CGpXuKBUDPBCkVD}bthvyZX$Co6(0RaXcL#Q|D+VEvp{EVjrMk +Zk7*TOt%^iwTT&Prh(R1M*a{*6=e=E%oYkv48$RxfUE*CNlaAWEkTOp7H<&)Eprr1=_`{F1|SueQ?l+ +?(l`Sv#Ssc+AN`eWB)2I9%njq5aeq`5R_uxTu4_?{Ne6q}fk+_C#wSFU1&BVNvMo;ZrPRP`Cm3<+m&H +&1U|{8N!(+t5g$9nC5!68OCC9k;(o6P)h>@6aWAK2mk|@q+AbL=B0=R001))001BW003}la4%nJZggd +GZeeUMV{B6#YUp7l(?GrlL6`rBo!BLL1fQ1_XqPg0RO%q82enMrz6hX{ +gdnMNu@Hl}gqm%gWZYie(w$bt9F5eL@;)IM|xa+?v$>Nw@n($(-q7<)odhhBs+;&qN_rs(5}(YpU+r# +v5ijrwt2rxiCx#TBZAzS4GCez1KZ3lc`n+y02IUx>K9-ihK3EE@acWJgt~^_xAc1Qk4Ag$!@u}l7!qg +1;xPq#!A{&M*qR8=2EJf8Za|yR@OBHS@%x3_pIQ#N$eFguX#mP=0#Ix*kjH*-v{rk_D7}UA +}^DtbX1Ho4sEOm!No({8FmeHz$?5@c+$`zxAWe9}K0U;rgeey0wyV-13u#&vgjTdD3VIp*^8G#=_>cV +c(7I}&Rs^Cgzz_Ty~Pv@Fk{CQ>X*P&UpV;-QX^$7f7C~z`{ZPq0t%8Hlm$eVK*Ixv;N(-(njBWmO1OHf&QFYMqBD{U-k_S;ZOQ+X+g +SWB~Jutx(t%wIbN?{Ezt6~384p4%3%*7x(DA_h~AarIrLE`)v`Ho>6?e?eiE@^2!!dMScC3iwT=+KbG +z?ytfEyG>r)UXxd2O$;nmO8}wG9ne%md6k=1#pMr)(@*3yjx&LJMul*4%v+m687Y@lH!2D-aTOgS3ms +pynVYPPaPS>?l8zrDO26Ti#jcyqYx)H@d*hv3EX8=?I|~`#(d(Q-6;7ZPXWA9`j6xy4%S^LyNYr9ToL +ku3B$`%)||`{a$q6UfF?k*TUrrdd|R0CmwY7~DcH&d^s2O}LH`RXZO}U^9Bo=Dghs;AP-*zA0f%=0%G2S2 +i*&RR4WeP#6-R>?NU1N6kIwwI5IF%P{2eVSI{gIAE?%fl#caZAh^136Wk7#p-ChTe^fh=P+o~Wi003S +@$29@w2(VYqOU{ZAu?RVb*HJ5pvFuj1j<*2Lokgi>n~LFUG6;67aTAzoJ>J2MG(a3qHHX%w$t(PtczR +My1G!^j&5>(QIIx{?=ur|bR&nF5%MAylqXE3ToFZJZXOMk{B2RJ{ynwnPu*hE+d0%Ol7BaMk82 +BP3U6i)-<^@Nv0>dR6#zwYmBtWu@mkzuQx|b8Kt~EbYQ$GK&IG`9H?bEGL5nN +ReZ=F5foR_+Ou;<gp9E6=l~~*V*UW&E{(Jdv>+SZf<|Q{`~3UxODxq*W8$>T +<|s)PnhZ3+V$6t7-lK{9MH%|O2cAhxgJXNN8K{ScatuyR=-gx~ecMxDm#!Y>@q7`}B<2uSR%yqI87XA +-s3VPzm+JK~c#FnH5HS~w)+(~W&tK;uRI|HMxjT~cW21+o`-*VTY15F$ZppI0#IJm$~Q;5B@&VgE4k; +Al{{Zshz{;X3hZWKEj_*d~2Ykf?Y(%r3sI2sx~{V45`(zV#mAwZ49}f9!|}Eu>L!K|9>LfeZY^q8a!J +ST^q8w(kH2fCJnRS<0!H7{m({z7P7Sr?&G`rv0;oGjKo7T2=x;$?yeG5qdK74)=0Laiei^aOThgLfjX +@`Nw4JZ3Kl^>jPGLId27y;JsZEJ$dctXg-uNrWlVH!wsyYv}v%g%Xv*tdqz&OB{ick_C-&22bc-Yod9 +S=mc$LaU~e&e!$8x;sM!Ylz=6G5a~8%vf>x)C;C8heEkm8v@}8Xs!ObLoHR<(d{{m1;0|XQR000O81D +B*+v29B7s1N`E12zBv8vpgw*Qr(T8#_d(oHybOX?GAuVJUyZ3!iBTOKWRhrFm7R3MAL7ESH5)cEr0k|MlkPf8 +S(3-rnBa&JL9IuH5%63EhtR-oLpBFMn)XE18fJid>~eTb9$?vVqY`R^t4SW2v0%TT$@5%Xr@%G8~ZgZ +M9&kYdg7>vbwlH{(z)w3yX9wx?kyDoMkmX0+^DEi;KMCO0l=C=(^M2MAiHx+avE_+SuYJ{iQAhETjk? +C#wqvAHe8q*5K$;v@a{rHMRsy0AK+blS9=|zArUY#queuWqf>l1!C9!l=>Hs_C?OsJI7VTRh>S!@ +TR>^vAsqzz_C)&5NZ-`_otAcH-Ud+-RMaS=Xi-adpRr0}5J<;Doxj$6!e-|#fjozzx`FQoTe*duf3jQ +oNFA`)i>|nvziV+P%qA|a(C;Z%2$Ly95vMm&{Lz02plNNI!cHl(Hy6mznR-)Q1*bAgtX) +}EB;_ks+CT#f~7-lV2ZatS;nT=E>q5s&cj%@|wFncWu_E2^Q$3G=OfAhAr9GZY=mG0D6)-(U4FE +c_f4MG>|jxrZccJFezn3sc)_Zc;C*=Z_KqbE +`c`;J}BOi|VlFT40^!N4Y>WKI|zzY{9E=V0=260!i_Cv>PpLV#<>O2r_wk^uyyMhPHtLv3$pzh=k71| +JYp&j^F9$KGc1?W2xuvAJQnBv0RIi43km<0p#Jzsu5y<_t>z06K5LdADT&28a7SNMqW!5MU{o10n(tU +b5Y>1J=8pw?Nfbokr#etGJ#tw4k-V3`jFFWlJCU2(VtdnfGn0odWuXz@{(RtvJei!5|@EEiD{l4C^>p +(^i0l1j~7q_Z38GaFu$pqQ~WUOfZvSm;nvMnEkNVm6E^_x!?o<&pixpY083ilJVm2;2nKVK-Tc0pkQC +qrKli2Zd+bM-ZD5NkO)AefQ`3cko`7pqxk)L&6od3H($NqB>#k~_b=fKB0VC-s>B-(yUbvhnOW1dXFE +&!ZfBSnn0o+5<`ghBHeeZj@j`u}-q#WPg2gkc@K%O2MvMA80|(EB8xPe)LL}@Os +frH`gpdrJ0|$n&9+*tWpx976Ht|pKPwdz&JRQ*nLl)t31CaPz)RG~$w_UWzeYPH!U9ul?S)p~igVgCV0f`zP}69YU?&N*&PnoK-tJ#pp-!O?dZZ*Hzu=q{!%99C! +u*flIrdwMllrCG^jZ9`zv>GCE59Gl2w_$F{CT0u~P%}titE4~+Iq4fRCGW`(pW377aOyMsCUs+ct_#; +>?9!Mu!(LF%wuNhK4gf3K@j9HYwf5)hn%*#L1*~zJ7t%u-bz)I?mohcLo@5Z!%1VF}^r`MwbS+gA|dm +_DeBm$5Xv*F#&mpq~PM&buf6N!2|Fmm+3P|UU3^mMBN#Bt;$0DUzvu!?U*g&ubznC~(7tqX;+iGp$D?mvUm58i5tSuhp?goKb#$lT@A2NVfr +`z5a|#3180boG~Az`&Q(bpWS|V&=%kpPO@sb%>jhaI6}h|DnlSJ^6TIjnf61Kn$06_0Pk=w +=w~HQ0QvmKq?@54l{208?Rfkjk58i5Q8=@&IY5k(U_@fq~M^BBxaGhI_v1m<^eBK5|LHSSR=|NX!9PS +hLaKIEemz8Xx1XgTUK^`3B@RU7W+x^&*cs_3!_K6|06?^evVe)GTojM}B7D-xm;;6m#U^JJ8krv@q+NKj_r=)& +|rJl6jW~fpyjE;R@+SbZRoFk59NeB&b8BeMJv-?M~#-Z +T`-P4FB?+v78->*$Oqs8FoHZe?;t>%LWUNFoeOL*>Pe|U(%ngh-AP96%)YI#|7-i)%5Lue%O=b)UFD- +DgZdpT*$Y{Ii9g#8C{LZuU=UMohLl#~nLhvBxb5Ox{%q&l- +HtPZ`aMA#BtO!KCxu?XS@!bMQnOa-p8}O!6?<;X1st8AtkGV3JOYixVUl>_H%M`>J4ks}D^IhQ+zHSc +hN~#dyWY=$TdH44<^@(L&K~;UOAONIT`_Ysr02ThUaIHpDP$F?$MtPm*cJ$Z>E!NjnxF&hg0349HiWn +?;D)E-2+-@z8-FlP!x6E1>J1=`hm>vf7m-3qt6-D-ZZXmcfs@8Xj(yN>?;Q@&x}5o +9o)sY%*=aj-F3<_JJL7@>1~+xoEoa#Q%fTbT*4!LZAsJXrN^4;$8F_GJGPEIdumM(;^Omvx3V0L;f_X +iqr{>020M-JlSM;9wpmC0Iw`ylIc8o223Oncgnu*`lb?V5*bKovmhkszZ<{G33N??|HRFvTgSF}#8h2b0OV-uVS<3}6);}fwa8$~}H2-eX*4H87^jKJIvb(Mz9d`*P|>`JX2; +6UOq44GsYW(?UPMF7XbRyrwY`zo0Xq=Y)xZ$gZBG)-jY1-Ul2Hfxv2=O)G7 +(VIq)LFRjyBe7ZIko +Uskk!2Ns#Trixj;^bkw#1Um7;?%4tWUSL-4?pHXY7W_JhQy0FbV$011uAu>p7h`U<@|N+t&oaTFocsR +~duxI*K`VuY7UhPPL=8eT($IN}MRMb-zqVmzPfL>hSZ)RhJosM8=swi$)9WV*kwGH|+Gm& +A{7|lyuss=L+=i`v;owqk(DUY%bZC%jK8OQHP0?IV3i1e0moJ5j{DH^BRyez3y;F%O##Tz!H;5dAF~z +U19f#)fv88hEah~50$bhf7y@eJ_Uk$spAzq=(`a&7_!z+H<%s5K3Zj*4cBpo`X0P#U>EoWa%;RObIb- +u%yQGsPJ{dIln#sdX{!N0*n%wUUW9x7NE={&l9W5Ejw3pr&bk&~abo6bhq>ikmwu9B*^fb-eWNT6ax4 +2WIo6O=o%8;96p7E{+2{D#MUODWlie)G1(bz}f{5Hlz{Qi@xbx#2q=S1(^-`P&Izr1OJ9>Dc2!PdV5f$z@-6(Ns!gwDx_;c#!9e#_;n=%K1Y)G5ww8H +tmT}3j*j9W||t`vRD5``ZwBgI1nYC4FY5I4Yk;V$D*^KPT-4@&+x-i;XHOCw}is +;6o{`L}dLLMCsG!8Axe;!e5ijO;xHX);hloYBxC)X)d$5H!0=jlW-0$bIbF)nRSH@&Jv#Ob>hdxKLLj%y^wy_)g#y`QZuXkdZ4l|qYIIROGsZ +kXLwK6owNLEy=Wk%ayf;7n`aM+V+ySi3K0bmI6w+Lu+P>yRDx0MGCM!X7IX$oD*_cWJR63kP+m0+{4R +%DBX$6>ar;nQFkjElW!k+BVj2q=@bBA%%U6N2!gJ+X$tP`zoh^pwcu^jnA>wkhcT`A(2u6j#7Ko-}@@Z{t(Pr)_5#QM)Gi4FDZX#6a!$(w!=eG0dO +xxC5A6Hm6v>;RGTK^KhFS`dK(wuSta`S@-834$(UUA3F&$K$#wNoI98KeD`|J2h8;FoVPM#CWpRbz>T +m*=ZKVLXis-k-iuQ9wtKrg1~FZ`Zqn+8 +U72^);4~TQG=Ppw;sB#6Ul}z-ZDR>3yXmKk3&>5CK~uYL6R9sDSLG!-EoC8c8~lQTR$!2L(J^E^E1@w +*s&U*aPrRgN4^J(~quMn65>`u!xWg@`5$pht*w6xl%kNr&6W14o4tHZ-054y}8N0zxnm%7AurmMwCL* +mt@Q=a-`I=aJ(GdFe2B#pn-J{Kc@+IK)({Yrk@ARow}#`_bAE2$>7?4(W<=0Kj&xGXwqK5y}k!nNZcz +si{V!r*VOM%F8&2jO9KQH0000800Wn#T+x8vTa^U>0AdmV03rYY0B~t=FJEbHbY*gGVQepBY-ulWa&K +pHWpi_1VqtP~E^v9pSle#gHV}Q+R}kup)=`8sK>83seW;rong)ThC{Sz`0xgZaY`COCQr>P{|9gibsq +4CS0t8*dYiURh=W@<)=vv7=DT=x^t%9N;Y~M&_2o*vaYM2x{ioC3DMQNnuItcVpN3~sFO3tC|W@q%W3 +`$;s07Z>dDS2b?>5_wgLYZ4>jtvu6VZr*(_b-a`*Dub0d-Lv9O3o?gZqZw2SMijrj}81mRpeGTtjUUN +5S3J!V&yJtl)O@)bx@c@1V6t}buM|k7istUt2_uUX*HI;WE?)QFEEzv?D93Ec`l+g}uDg9#1V-?-Nc_}nrDdsG}nYm$cyC-FL7MI +pEsm}5|&a6Euwvk92mthd_%SN1K!j9Wc8-6LlcOA)6emUV6aD0+yuQ502BlfojWs5~f&0HNX%jp%%0e +xK((iZ_=>1A6N+bLRfw^a9b0v;5{xtPxbt2?m4wL*7Z@rI=pBDDO8L&p@Ny#1(n`^S~juXX?hf@2v|t +)fzCKVSke6#5=p*F-`PNw!9)z@FTed(jwq+Gh%i?(0kf)L-w+QERLLIH9_V(vpa$P7_0>x?W!?CCW)D +-F*jkb?7)aFm=>wBnel;SS+>QcNk4zeh9usEAY>KjQnAM3YkOm;{xp`{#;bIqV?wed=1c%Ott~(DAG2 +q(*;9fiv(XdmT1=S}c09pF1GqjBG#ko!u)a$``Z6~+eOmCo#rKhQ&W@S^uk^-XP>QjY3!_dHv;)#`rhmjS{eF)p$G0C-r1T^H#fGC5p)l?+j!V@2IC-Jp) +2iEGpawmBbI(G-$xy2+ualjg#y@M28g@U^-7zal^aq=X4`poM;?XLIKnRidk4HiDi$xuQ2Q9LKchG1_ +@t0SH{R%dW6_i>#-=mCa>&ujw?CK)D-j{^rn%c^AqtbEg*c*vb-aTf>-_<9Hk9R}wuzQ?(9J&xm7U~i +*DUjBtQOsp|jqe^@att?g|XQ%6Ey%WPJ<#Kufc)b<2j+OnLvQuT~CtKczELw%}LD448f(7AppLf_pc2 +uW+xFBZ@Ro44ykM|!JjdWfsx{dPiFdeor&+XS#JdgOIjaas;bEoXJ=@6aWAK2mk|@ +q+AUgOc%cp002xx001BW003}la4%nJZggdGZeeUMV{B2>BWMrMxl%#o5*WqMxvtzaVL*RuKBq24e5}q`a?8~gpDXB{VDV5U^Y|@adBt +_YfB!5T_^`xLQBUed!mu%^etjH)QX;LL?mb2ynV~cMZ(iR0xX@sOsS=5t>YRk**mK9t5x2)yl +OBm=z7>MUsc +>mgQMYi+eqHIwA1MQmU*}wKR`@ +qtVDYXwHsi)?xI4>0;t~kACWh=?>oN=S;=b~;aoJ_MTar}3bZQMeV$oW|xDkz4qx3Im^HB0T*n*%;w{uo0 +TKOiG73EU$rJN~gYdD;@KfR#Ijchvs1&$3Wppy$jvtG#_F91$I0Kq`uc#G6=n1xA6jA2xalVh5(Mko$ +{cMhs?q)Vu$4FBtGjSW2HWqKDYZWtMaFR*9OYa^_P=c;J+_rLzFBgg6r{;jlF%!%xd_q0i}q)Eo0;8L +AhKg3%UXF~_qbkOT%Fb!(Ma%xXEP;zvpLPD=x#9xEX{>gQjw|L-C7*@?!@P3V5_kOm386XXk28QtfEe +oVk8?KM2L^WTK(qXAOzE5(NX*wf5ie#?{Ev49Dgk~3)JZ^bDLTkBLL-$pjF>Wt+1FfLbgz7oWhfQezu +IZKmGpTNb17PAi&^R@&I6;dHA{lAZ9D+7@DcYuSjC+q`7&Xc0hSa;V1u16R0^9*W)V9qN9!miOr>Ci> +%EBy_iJpgj$5Gftq3+d`*+Kref*?B|;6Luf%}D;3~lY)FVXMTj9F +M76Yu9yrBttDClefRY1^jU<1C?a6Bvo11oUNXcl&x7cZOwkOEwnkV>nL7@G$1)#X)u`8xjL=gXJRvtXshO +4U=t5@+aFIKCU@x`-?7c1YO>(#&Hw&s&tSUpx&@&*=E9ujO{HwJT{SX*RKFmzu7%?S?-*fz~+QnZz1M +fBj7o$K}feFtx@cwtU*;KTQT;M?0d5U{xg_Cx-7)SQlyp3}4h;{bMeQ*z-SgKYv9W+@OzvPDyZi&IDu +M})w5eh~9BB_QC(I>g1p0UK=C7F}75My_ONs$Z7lawg97x-6*Ns=y8GutA>n)4d-k*-OF!gWG`e&1pl +Y&7Az0jq1o(C_fsAfFHsd7*HSQqntTDHwnR#5zq|P9Ao&5P=uy9W +K=XDi&Cyf|0Coz)AI?x#}Rq0~8cEEerY)PKX@1DRc1gLa=Nyh)dC6fjY}d2Nya(;ogkOnl3%v;g)oLm>#aT+yr4{crqcCZ;lzF$+;4-O(q_exU-CWt_vZ*qV!lPUo-lb9!0`Sl& +Q2M}hGEj@&PPEu*1B}u)*sdj@y$gq9htA8?LYr;a4N|BTq8r{ioe~+*#z2C86fz>s*;c1QN>pov=#H5 +yC?DdcjFT(_6rACq+6Tg?A2T2HX=AJR80v-?gNxyK6r332tDM0kp}p)uGk5bHrbFbvBAfOHnpq5Lxs; +QMOrQ*n)pQV`Duf|h$KYVGCXSU#c`B8pNFO|XdiNk+J(?U21Uh#XcGJZ~Imb|9Lhc~ojsaP4oJ_m`)~ +01_5W09y6pJTdY68nZ1axcs{^>rR@10pWWHU1F|WVsKG80|n#t)_{Ne;|e>grh`kgW9g1)D +2Ag3w9e)twFUZA>dh^?2MwyXsvSSUNE;I5bep7yg$5O%#2I)2H7Ynu`D=Boyfv?3P{4v7`?^Dc&)Hga +elJ+X!H>v-7%Ua5P?Puak>-X-3Qt^yv!GR%J|7$(uYSYFiiDR|3_LgJ?@@%h^N3bek{3(qV+~yj_q*@ +R%7-E^6Sa3BHu;ZWaZnlf(+>o)tV@6Zt`4X(=>Asr2`2G`-xkw!?-!h6GBfebkUFYJsq~LJroja09=W +a#y)bP8hzJU{XSasf>N+^Si9Yv6GE^rn09>dqlfi63f)T(X;b}>mnNl!>5?MTJb9&t9FG9ZXA>jphD?{5Lr~r{EVyvyvp#f-^Ox7F)vM)gE?iV*VS0wPm;YqQjL +XXoLEH*egrGeTEqv&jQ$DFVa8Z7#!ioflo#`+Y2wr7veQLP_NtF7>vaNgk_=TMIB;A7|9yVAi&4j +K``nF7>GWzR^;Ns;RwS?1x9iRJK#2S9mZ)ddC}}fjd~tKd?DF;r0fzz2ceq{=sW2pqw<#yFN&}{O~>0 +_Ty#xO$P2)7PDjFZe5AOVfq6tA+)kQ?PrEoE7>t4-_WkW_6pFSi8ZQ9UKDvas=x3ZKXU5rRaj$b)otp +RE0$6sD>Dz^cT>p^-9UK!R3=wwBhd(wSP^-MvKIT%E>4+<5og7v_ePuG-$q`?<->9;ok@atEuyLx$i> +Kkl&ICr?+i;K&%UE36MEz}z=1qBS1lbW +8|^oPQ1iZF;J60{kI31eo$oonR}L%p$^7i8m7~JbW%^t$fB$hI*R18Iv0q2x0KuATk8x-7>y$F0ruL0 +R;lB4(&No+JUfzAj&ux$Vn_Q!*v;awI@UIF{u{yd>5xHA83_|~6tVR2_SwG +tXcS?nouzS0Jm$@NVgl_-^n+AhUo&Xdjk9wZUHad;Cm90@E>ntw71Xg|ZMEg#L*lg;1Pt4Qj7`APZOT +OrVpMMqi?YZMfq~&ed@nC-WAqi5q-m?1z6b3yCt(=g`fwql7xQ}PWZ0s-vM-EP1g99e7-@{LvcXnwN3 +Q^_foG;+di(M_1S^;?1=p_ZugXM94L#(n#e}Fxx3l8DOohf1PBW#M%)x_IxMzSm1Kg`ag$};xtS2~7Q+9Rq4YD7OL{3g>`G2Vv*UA~Rn25-XeJT)#bD|LujP}Fnuux}JVr>i2jVRVY +4w<3SD2eq~$i=6)+gg7cKavO$I9F-P1|HoX&Q+z6ooQFqG@uxF!gf~y{boQ`c3L?O>l;r! +IDX~48c=2yOEl(=_n)*C65!W_k8`?NH6)mghJ<1Y34h?c_=mzr#Gc*4C}{S-s(w +bGV?j7dMvj7SYCZXUcb3nEr~y$04~A-?;&AnBnMMkKrb|hMO6Z2_GLTdI#cjqO5m(B0g5_?}@H0JX9(Zbca@LG|NB-hr9IU0YzCoD=oiP$ +n76@e_p~!N>A{Sa%)yotq4Q6%@NezxppXL3xx7N%-DP<3?`z`=u2K!5asT|?l>8aXE`zr%9RM2x4B4A +v&ueaXAxdAY2%Gsu5N@x2nTl)63eyBHGGr?Inq7T5)Q@ +yU-SSk({LA(i2$dl}En1If~Y|L3UY3Ax;WI33IxqA~>C?LK=TuYP4?m)JLzGl0MaLKq<&`B;CSXpqC) +l!NqU)2A6r#buTFOa$gd0SUt2O4b|j{^YZB9aP8e4T>}V7^KydN<{5wuCW#LNP7Ad(cn9bk(>0?PGg6^Y8 +Yz>XuM8pmI{M0^(JRM71Cxt6w6vE5kSmxK9a04YQzj{#mjq!_k`v8H;DO0@~ThBb5>V5#H$ZG{47g+6~Rs%_T~fIRMpvEH{oSw;MLKDmlAmr?O8*{{ns85F?YW +iaP8sgU8b8qgnH#rNWlsTw34yj+F|Wf4wiLZ}G#4+jMnOO+T!QjOBUx5Fe7_&THrGU_Ux12cR-OgE>ySTRw#Qi`T43_`#?jGFpF^>#(6Zv$#*=+7 +?2KJdyp^Es?S)5IO(t!Ios%&bE6cC#$1lktG9fszcDA$2{qO0Z>Z=1QY-O00;mBm!w>>0%$xQ2><}X8 +~^|v0001RX>c!JX>N37a&BR4FJo+JFLQ8dZf<3Ab1ras%~@@a+qe<_u3teYIK<9*wMnl%1dDFkL$YZW +O?QKJf_z900xi)tv9zd?(mK9g|9hVysTa%EZgM>o-4AO^91e%``pkG~^oFJBvaV_)(v-q%Yt6bTdEm2ErZ_pM3uHGV3E7u^e6O_Yy??e!NGQ7gHyF&`C$|_AK?HNv*_Gu%mfSD;!mG +>cPk8$?`_)MarO`)6MCwViH8=h`Sl_coNBD?cY)T2|;!5pi>^ZB;oL9o0S^@j#u&}5+EkdhHN(n)@Df +Ns_R5DC1V<)f&e??fgFVti9jg@A2?xNX?My2UqTUkKu@l?HWek;?w9#u!UG^WVOYPEqHcoOP*0?sWhw +Bw1|vR;KhuQBvcMMZbU0Ak?K2PoTP4(Rym{GH$&yg=}oc6nytq-))Bh$>f7?y^vh=whReA`^&&5Hc-D8tpqIhp=HZ*yg=`7op6&rB0Lr1^3*wi3$Ddd +1x+F#j!>dCx=IM_}y6~kiR&8_;P*8C@4n!`QXHXoKf`Gt~E}=*9|WaIVK|Rx)g=0eU$q83C$hWHol*R +S#jnuzx)5Qm*-Kx17U$DTWQpVTpG01s0jcl9cD&X12knQO9N5~0#gRBLymZa_jp{b9SCb$L|+tUY*AB +-PqiZy2s}`RSEx6NU0%Juo&_#45eZfwqdFCkAeXjOda&Bk79Mk?3IyYJmDe&yJCSC!v1nhrD-M$BP72`eaF&h;l`&4Mb|B`|K{<2edxUMo^=DoX0W6wEJ?zM%?x1={s58$ZQ?-_}EEBLHyWhm< +rAmjdE2fa#O2-TTvO$&|_b?L}PG=d^OtRXMl)%ETaLL?I}OQQh^T`xjusJ-J@X;6G2)L5Bw+09Wc5@YeOKYl`8T>rkL+Gd`0FmGXD;jEnqA|<;q;Mrg-=;s%tr2ZJNQ& +tEV60b4RffQlp_q#~Z8yI#%1am@s4ao}qtQK7bci?iv&vE9AMXOAq +1-g{ObFL*7D`O|elY8K>Z}=u%#Iv3hWYMCdx)QTrAr^`Zsbsqp{cWRpsm4hA@L^hfj18>JTe;?0=%z* +4$iF_{LlsSp-1fx3kT?;ha!Rz8|ZH@3Nm#58nvQd*m~9C5qqVJ$FTbvAgsxqU~_Wv&sqvsfLBOtp{%x +{GBB^VOf#!LZ@&Q!^ybmQo4XP?Na|h%p2$@@8o*Bi`3y%b0q53f30ruecYZLZY)(E8pS_#z71P6uJX| +1qvfo!EomSc+*JFL8SRP|JESN|5?G?^rJlf*<=JM4=`trlg{QAa?)xJDieEQ2D{-ok){^t7Qk(G7)u< +!1JkiDt)5!XBlcHg7keMJ20t!-y0EGJCpl2Bdx-1uunGv~rKAQkAXV0V(!FHqX>4 +NurygB$s^TZ8FaSQvg!IXmLdZZhMyZ8-`Q@OGwZLbHC9=_e)5Gf68(qpYtv0XRU277+(lVMOYtif)uW +qiB#Ge$c!JX>N37a&BR4FJo_QZDDR?b1z?CX>MtBUtcb8d7W2FkK;BB +zWY}Y?xD#dllB~73T&s_c7Q$>=(ar!79Pc>V_{^;mE_F2kN;j$vJ*S;Z0pU%5ucw(ilWjqP2P(9NgNP +zqrH$?>H`R+ppgxc>RRZ+B`L`zr8PBVS=sv5VwQod8)H2Pt&JC68tsy#r^Szw`>2!~r7#a7gO(OG7QS +s1MiJjN?78Q@)?M$9U~Ds~Jz6c)Hdk`H7Y?%?*&u%xmr2t9x!0wE+mVx1I^v`oNNZEH3bRJ|Y6H0v&S +fmU0oRh8?b3CUd7bASIuW5T=s>`})p-S`gbKy610_q(;7enPq8c!*Z(6@212^zSi@jp4qme}jZ +c)f!Pr)iT&Z}rZU{}x5N1mf?LwXVCKJh8pB0Q!1unDqd%ay@aYVkyy^5_Ck6i%Xrm1{7UrOc^-I(V)K1bLQaM>1s +TaWI>4NFPD!U;rFaj^GPg2wRwEz1}7h$z4dngY$L+qcpy!4F8n?{ZgrES4yS3F@F_!fj_^y?Vz?fOWs +FPZ)S!=+Yjf(ZF}ZAeo|%fr=&OkZwUc^#b#6NKDxe=f$(!U=+NW9b5yvtE&kC;i!~kQa8BvSUIHXVIx+qe> +NcoNtCLCdb<3P^ew&V(f(Fz_X^m!NS5++CVmLu(T*b7W0m9^&P+cN$m3dx@An1%-{X***1WYCbF&ET= +LF~dlja42NS%TAI!t^tZw*s$> +!@jPxetW1(W@~5_wC{)5tYVM02BUCgC%4%GX`wI$blxot3=Xf7AKN*#)+i$OL)R~Jc`aZdH*CyQeX+W +MVhaMXT^%20y_u;=c`vw&%z$ujvpm!xcO=Tx{K)PWyIgRV1Q11Y~wmdE*rjc?}nW4BjY@FA0*G{>}We +N^j{AX8hR(g@dI<;k5ozE^!(b!e_7w_XO +9KQH0000800Wn#T>j@3X&MRu0Jb9l03QGV0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WV_{=xWiD`e%^7QN ++c@%jeg&bTh}76h+ug$f#<_<>x7}Ny$OcXCzW5A9mS|h8ENVr{t}n=c-Lp?T0-Bi7j$wI4{m +i*{&3oVnUu}`j_J0)uD>ZvvnnQOq8mOE6JJJ{db(#TRRVE7AJLW@GiE6^Gvyy&|;n +ph4TeNkSb9t1C?@oe-x!7zhEo`{@1S|YB@o<;Pq&-1YyI4gs`!DD%Cqy>yi1<-d#5*2E!P(halE+eln +v*Rz^7!UEn4K~Bc%Db!zZA0MiDIZ{*p4?G`8b#Cu;n~w2~r5p2=u028H>o7UYW8qt7hzGD-KL;xrW9y +peU+iXn?X}EesU?L@7YwEMAFPb$AVQo=G)hpWr{~6lIc3tXUZ+-+(>IB+%yI6~z#@;ybbDGxnLjnJD0 +|Vmp9u(3$qeK4Mu{n+^}WlVxB@Ie;ec+uOgDu|hk&yS;^-f~^3DZE~?<{Cin(DN#N+Ic|?dF~U~!^ds +98z*toA-)hiUwCBYh?D?gtIc?Vx@#d|i@bj{)#0C}ITS2wQuh#&r%LBzkW%*@`UTa_%>~%rmO-0vB@2^K$Op@EorUx&?S}SvOac#XC`KW{jvX-<%ncBN%!e +x!}xI3q{T<%nJCgj9#KmCF;_DJ#jS`bV}dCZOnNU?c%aidYUC_Ar(ZgCeAJvIu=jJEpTtSoRD#r%g#I +%S9MjeJJ%ZEZQe{X0I?>bix9!0s~Hbna0rL1JwW830VIPNNW5=7Q0<5fuzq>~oE)=(rUwn&f!%kStLl +O@HetqTXROgtTy5Z~)fDLz;&P`bOY3k!={VaEmT9v!D}-u}2wUaN9L{wx4>=|p--GyTB54zDDaIh3bz +RUUU@|L`Cf;TeEH2T^Y3KzGVPjEBgB?>Z*iRfT_AZ0)s4rEYU(^7(EqpItFKG?pttI3G0ysNlm@5wP8 +br{CG5@6um=dhy6<(aMcO3}@?qK*;WMCsmeLVH8ql4b1e2U2CiBUK +PM$ZbtCK&A3ac3$JX@&fB*qO3KMizGJAt?@gvcGw6%-M_WMgUAhk&!l3J&^$hefX1*$SR7zo3&>p^9a +;si8&oWqw%F8QBNDl{28KjID11EY+kbHy~&@oX2THm@*LmJ>6nC1%cTRdYQ{_^_G1KHDf?$E_ +XY&RcS8)otohM%8U9}?&pd)|8gRSyf8-z%Ww7#4VG}|w%doiYwny`)i6U +0k>{r=;C~sn(LcoB%V{iUw0v*l6rtP$fwPpvD#ZSRPg6!xv`S^i^YA^$vm!|Zv`bahh(z-2lPbShP&c +jzkFg_g|Jiu@t%`}D$Vr#PjWoVW@pJU0#tk`EkyOGVnuxtLmy8cbK`8cWToP)ElvJ(3&Mr>+ne(5R_o3(a4 +&lN*dBSID(qYUhq#KWbrPJg30pGXH}8TEMMZb09$3%dkb#G90&N>nv$Q*CyNZ!Xco+FB~yOT8Rgu%nS +C9G^M7sIR)BnMdjJ1DKi~}z7F8<^*LSWhJbfxWWM*#2Npc-riZvHfT-U)z*7I}sJM)@o2H=r*UyP3F7 +gEh7JL!Vg#~!jBXb)Kpy~p;{ck72hhcuttCf)4_dc5gUP^DmIuy5!fofm6!AjOET#OEx+KO5k`#siQ^ +}38F&^10jOf*kx!n$APsKu*Rpb2}`abb;3&^DS4vok{Z?*z+i~99S*+7Jik`NWtj^=IR39_tX*)S4VnR)S|Qq5g|O(fV;FkxB4+TIg_Y$-=*5K55Ve6*9U +u&BO$+0geo_cC1z +x>kcNSkjdRkgCJU;Z(9yw#cKd}$rgI5HNt5E4N7})i^nvU%!vC+fnyjFSLsco-_;pQ0ws)8S$j^~cYj +G%Vqi4vF$Z1JN@(o`T)KN4raN^F>7{xp~nI3 +xwg!qU;dE|XCNI1ejl{l3!h7=n#!F#my*WM6C8)~yn|eTBNeb%-fb4igE`k-}kAroyN4o(e9DbJfT&6 +u~*oh{FU{(VZMfoZg~$yf-XQHP67OL#X4~9A|80DFSmwo{NLdst|1z)%;jdk6Y0={ESLIIlH_(91fxO +;!sqZ%ardgOI}L+H+>C|mo0KPt7v{*FyABAJxmMU)I-N@HjxKd)BD57KOSz{OK%N0eg{xX0|XQR000O +81DB*+{CjFqzybgO#0UTY9{>OVaA|NaUukZ1WpZv|Y%gPPZEaz0WOFZLXk}w-E^v9ZR$FV^Fcg0GuQ& +t>He_bcf$b&qt!&V4eF;G*_OYW?mONcj^6z)#tI{~_OD6)6b*|rcJ~sqKfsf=zwx31;JB8 +cAj%%w-0^u|`SITOmEQC#MQ6#0Q$WQA@TuF5fF+dtk4v5q@$DX2s{hTK0s{(M}+)9>x}{^@BcvO&j7? +)Vr{qhlpj+)Kw$orKYxBNi`XiZlUQ-4Sbf@xp6l7Tr2J_R9J;IAb{+8{`gScNQvA +F@hy!aLbl@@J>i7ubY-SIS47-nK@qD7|vAcc7jIOVhnjTf;!ROwcaI37$O?@Hcm6Aj1S#e%9!E}GL|J +tQb=wsYy-GqOzH5QZ90If)#@3IsLn7!f&s0CBR?UGAS6PGEvgb#A<*U&nRF>ct+YXA@UIv2eWLMDU%! +mU&g?DaqJ!WM-MVXyu3<;g3q#sZiD^gY%szuJ->GT08L|SzLxrGf;) +PMIgQfBxPBP7=L_~XtT@!XyNl`d@2r1r5Cyn-VbR?oMAL=)qY>QI6G>3IV?P->i2F%x4uckA!S4qEAQ+Yeg6%8g_B$J|BE8;zEH*N#`j2W$fk(OMC;aISXrb +XMsM06vKWEuSZcFL0C}Q%_7fN*Ib1ax3KInKw37=xOQLn*DfE>9LeodsqWEqyRrMg(VLQ=M*opdBM7S +Pra%&fv-bTfrE~jF6QII3NAph3n45*Mjk|7Y{Rjek(Ivj*>wT^Uo(4_MZws2RJJM+@xuZ(W0z*Ub-0; +^MXhx4kG&2%Wjn@tcQ~aXqAjU6GI=Bhcpz}ucKj@PIrNwvnSpCp&F!}{mEE7xQdPNsATPiUARrm)`O9 +KQH0000800Wn#T%?_#A+7}g0M!uy03-ka0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WV{dJ6Y-Mz5Z*DGdd +8JrwZ`(Ey{_bCKP>fmXET!qUxzMoIbASL{W7zJB!ZtKTq8%*~rIM8M;`zVtNJ-YK+s@O6L?Z7V-uoRL +L`lp9@Mqo&vR6T##3OT)-iE~y#ED2;#tG!Rf4X5xcrV*bg2ZwHDhQ))XnA2^-MO4NUK~X(^$V79_IZk +h3s;^@Y4XTLwb$|sCHH- +ww(x!oVYY9&@HI;auIgJ+ZJhcC7ceO-MzpKoWs&uy*0-u8<5A>eNpJVd_wO)GZ>G+>P +m9~axD)#dwEmR_Z+^Y>$?lS-VF(74Djp8U*W3gI%ou#Kann$MdEGP*?4=7cF0|q>dwFSD^+K{B446~t +u;pv>7i)b{8ePKbM%~1c#r6G`?H*(1b2Qp%lU0qS>*G(e+2rHGyfTcF99@>m54u{{&DCYBU<1n~^igk +z?A#CyL}flMO=Pxh3>DXRQxR`c>cM*b7Q{WF6+tdQ?n)|9sk2F3aX$o%uMi}Uva}yC;)(FN!l%rJ9{s +H}GzmGWAxn8Kd7LtjTw0Ll_z)P`1{`y<#NWgWLKl}BE|6Z!4np4zO6Qfqz6l!s-vq4yI3D9Ta<>Q}B7 +tiz;RNF>e5$y-%V~P9NElFzP}55pBUG3ej2__}S48|kXz-G43ey#mhR3Wk1WuqSj26IYX|t5nBXpjGO +sRl=sfGb2Ty=A|q7SY*=qlBX*S0bGxL^U@0v_$%gZUK(Z>(1X=r +zt#sdDTsnX3`EtTZG>pi52VKlqQj8Hcs=8YiHsdJ$NsH+GaQ>@CY_hnEIp&zg)*JVeBthO0s>~@^JESaEg|dNarNnVD|q +CA7e^JN7?1F5L~v!uMi905=WG^%6q)VmT8Y=WQwDU;Bt&_2_A3M@ +;1P#0-5lYNkc7gEH>?1sr5jfd8O4T(xL>(){K7B;OA^z*(ZAo@EE*L6JO83jdgXd$@#64RuPSAe#q|9 +ct-Ifg5?t*C*XSA$frYWyvOUcQ-)|E!$JXZ8r5YVwTr91Zqz$z{VS11)f+zs6gZiPcJ^)?wcAnWc( +LUO9KQH0000800Wn#TxRSO;$jN`0C^_>04D$d0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WV{dL|X=inEVR +UJ4ZZ2?ny&7w8+q(6;e+8$ahz!WO?LHdU7wFQo3)b5fO>_6bGX&Y9Y^}1Skx~*P%YWZFhonU6ku<&N0 +<^Y7p7)z{D#{~^qO_?S!J~*}$Ep-Hi;JSH<2ow~Ih*NsdAZ+b#oj!Y(tMN6wi4xzOF2ssU0KytEF?F` +{)qF2>$Un+0S>eBrZ@%cJkIlYoAa64QDs#aWktfUOzzBnJQDLvRe?QlJEx#*mf)+cx!pTvFZ^c^M~Rog +F#E27CQV`Eic`i(v&I;6=jB-m=I~M2D~%R9;I`yZL3xin8FWOxa@5NG<~S)M0_jT`VL-CX0be1-`(O0 +I1z$qHf}x5by$?%HjxtKkCVn0ai$rDMK>wsG|mvn-Ecm?!bLy$UebaahpjVkcy6F0>QIW`JWx)s^SH! +OM*py6`AdcaDZpUO)YF%2UzAW#1piNy!RHOI47ug2(7xYDObV+uOW@y2OiOJ2D=WOvC`v{g^w)p +UMxI5B58Fm1EyMwSAy?KH29%^R2@wcEHqpOORs+uhufh**@-r$TWY +-ch*B_Tx*Ka;B*mv>v^6RHB%o`%I1L7tY8MYG={U5p*$VBB$mhdEW0p}f$^V#z?r}NsF=F}4P0FS9Js +v#OCboegL<(Lw^Yg81b*^{jKad8WRjimt0MBbkh5CeTwJY4v>!cmU-IZ|O}9hC|fey&uzMhJA!C$jew +LQ-cfpdP~iwU#p4i?XTwSAnaCd6zQ|kaTh|+cB=XoRMU^dM#_wwczWu>eT~EySTR51e9Agn=ZQu4#Ps +h?p@s?gtt^2;P*&%97eb};gokqJub~~irp=kE@QRX!}>0t~TC0mDoWt) +K*51m#;Q;;?T-4DqnGy03g9-dk)lD?rU@04g+1nMABwT)z%{RMl=p`AZM|E9gMUD6p2iD81o&-JSfy@ +Phv!nbsURlR=5anKk^%O5$%E>9C<{!2N>HpEh5V +7|tk<3>B-LBwz(7Sozh;*P?>C*5vbna_qqPZJ=XjGoR3+njzc45vB*mA2Bx%wNAgs4lmdTkP^Djg5SD +|?qy!b1}k@}a21isGRJXZrL_^77ZE5O`p;IatM;3f3#X}uxZMpKr4MpNoI6w>3;iq?Ku5=jnJLR+p?y +|9Vsp!_*9vOmw^k*+zFuzrKc>-d&1puPllopbk)JvjT(WIh=9HlDM1%de*GnQ6({F-l*A8zmFgnjT{J +^_FPqLukVHo&yA`)I-U3_U73)`k*KFlr};QfbBe|z(x1F_nyX`rjiuNNIiTjU?jNsv|Dj^4^YI^)_(S +@wZ(gQedAYua?EW@im^8}$;pBZk7<6p+p&da2-Nkk=SZhSVK9pgaegCBX?o*obyD;Wq9=u%R#)dWU3{U`IWK(M9CNl>vDeG75VE&9RYk-w`?hh~YZ|E>@;iu +k$n`i-lSaTq(7)ix2x}@xdhT%H`Q2oX%Iqe5x0LqVJd9wgd3sKFF){&0)Hy}C+sFR`-K9bJuU=WHau~ +I`jE|&Q5atL*@7Z<|13gaw;h%j7>3c8b>Lm;v7Ai|GrVadYr2yKtSPxZ$Cjo0DuptG#?m|NewHm8Bh= +!JZKyInDFPArz$8B2wlvIJs;)rmv6^^ZGuM+aFkCs$v3+D>Z`IwAvxSJS!OUSO@{#j;I2P@--8<9ydG +-k5z5ob6U{J2=2=h5k{K79mc7RriMoC!R$6D6d6Xhc&kx>-?mxc0f(lw#CG(~osEL<*QiA{azL2w?>2 +)b@g1)+)7?H|->DohcJIRywFlCv}Jzn8QU2NnfH$aEXGbw(Hm;NJ=LY(E&~Y7!|>%vXQV0)iBBQ193@ +_NEGIS6qceFAw|M9lCAKRySs7mM-m#L!aAc0E;w$l0uzm4*&X9G&ROD40A8>39mT!NDN{WDR#cr2yGs>OAfOx^a9x`*YSe(^*7H{X +9TMp9Tof`Jc#ATj+!&B3^4tt0$Q+jQt`2b+g65@^1ohcxxnmlKC^TZ`iYIivN*FZmfOyuDlbaoyWqyj +W`cQ>pq5>;v1^yoE1pL`&V&K;y;}A=F90bh3?lA;qJh9-=bZd=YD#2ugEht2ZVg<_x(#>K)~9XBfJezZ`K+F%_~_|AH8(+5Egr0V?FBe~XZTwVc +F#jK%i+_5XT_u40I6W?#a>|UnW-2-TeQRjS&GOv#mUKtf9H9{>0as>gBwb`@3l_|_ocd}650L$qkePT +!fq^6V&7nzbh4u!QIVTD`^yUGI;uFzJt%s_{k-=;r78Gb#doNQ5i%%}UcE0K!jYS?^vrLi_U_GZKOp~ +^rtV%ZgD(3n`-s7S>A8C*GCg#gBiz*adXmDQ@?31DfT*u86 +$Xt@eJ9Vitz+Ix;5#Hh&P17v{%3<41mGb>sm4y1*LS^63&|pK~6AF$AaI^I&4b2#XnX`~54ro8kC{Y`bM^ZU|QO)V9wffwgm1l<&2aZWp#JETTnc8_v>L*fi7BC{Bbnx^4dUcddSrE@pF-Bs +7L+xJBlZ_uewp!{{v7<0|XQR000O81DB*+RTXH`iUOVaA|NaUukZ1WpZv|Y%gPPZEaz0 +WOFZMWny(_E^v9BS>12jI1+#NU%}I&SP5{2_SIMy=p`xcfNpPZliW)#AQ*|Vxs^mMNhLLM`QLAb9}+3 +sZLoPrBy#4*`JSQDDA^H8o6(GlQ%XcPNM#7?duf;vve&DXUu$K>T0Xz+cB0>fSE<93KIm10sB$m^Qw6d1iq&|SNxc2VAWTKl9!KMX; +3iGJ6V}_57h6jA_UPJu6ov%RXd$hbv5W|?R1*3d|-f9$*yC49k?#s>p7MgG%$4RE2oC39XE71m^}z~h +F62zMhyqnvw^Q~FD|aGuTQebz7e}oSzpiMMT@7nI&N6a3=0e>7VjU0l6}W}bBbj&qSbI*H!u^} +^5N*_&*o6&-XF=Y6AYWw9H!A`^4!IP4BlGNy-jFvsTNC8;ObITe3k4Zlj)t=a&%cKUna5(M{QZa8F$xfGt!!+G><z|7Gb6o4nl%>oQKv<#!=Eyf7-(GLOf@#f ++mAR|~|FjBTq{WM{f8ClyNi0t9l@O3vun-33gL2~4lWHUlG2V5#wmLO%$U6i_7LuuZ`p+ISql|uJV6!r#e`4`Z2$t;v3F2>RpMc^CH%-xUU4MaB(-CQU$D)^z +rK9>{LhPC1L9Ws0%DDoR5#i%d^9L$&P{vxaThGt$_XHLBas`3wdt~`U +FHi%9cT7GeZ``ID;BBKW31I^J=Oc4sVBBdZFs2ff3f|H3}8_*e +t?592F_Mrv?wUX7D^SGl9+|Z+_1x@ZpZpGd`>=Rx-oVFnIV(FwX7U@3L^31WvYCFPgN{Fy9pSVfo)TO +&3=7BO9$I$}iA5!$WBSwE$Ek?^FjHNsOQ789*i)ps9e?yhR33g}aC@cVYAD_tV!#K?>A=chN!P=2ud^ +Udw8)DZ(*MM8dpQBK=4LpWywfh)}tgfl&%QbJCMXko4`CC(o)Jg42c=4+gF6g;w+GX4NF$r+=_8fGl< +T&K-*5nnOKAthILQzNA)!5r}*JROfpbsl7h%L;@chfWrGiu~amzYmX^$;HEe39Mk;XW{ZkkjsJ*m2go +OR05`{USutY|k#G4ZjhK0%F)g#zrHZBP}=Tgx?Mj8w_di85$F?EWm2GFNqeE0rHC5<|RinjK;Et1|}P +KR1mj=2wDJDd)7n5pfCV{5{inKGf`yp=%Wr?DZ`wBH`4U$SYDiF!jDNaQ}lM8oPXohXmHH+9P`3?CJ+ +ZAfQ_x;eI+r&J@fI#_e2G1ytToj!4FqUq~pCaV5z;`XK)0-uSZaVcs*k;+QV5&xbgqMK`0~?41;yT%N +$-845z*zu1;e9jGxGV_6@{+iv;LJyE;zIGbaB1>fg6l*EiSn;v@b0?U&2XR{#e0XMdkYy-yOIfxEc<{ +quLB76fNtPW(rpwEqgo3&8YGKW4qWa>rZ()5-NC6E7$J#eO_GM|-}tgfH~}2T)4`1QY-O00;mBm!w=B +9W21i1poj#6aWAs0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!6XcW!KNVPr0Fd8JrwZ`(Ey{_bBvcqk? +Vwzhp31_V_wAl-lg#ZW9=zXSnGOJ|D>MJgoa)cf^2Qq&7AIjxfbu`TlMc=y~Z#j9FrON83*x!f;!`>4 +!fr&UE%ZEL0tkg)!Vi3ZG~-K=??QZ6lM$wZn9-cjXMfs9;9bA~V-C_0{sJpi>#@4?dgXiFu}@oIRaxv +DBAi;nppcxF(|EoUXj~>Z*Km$y`5uGHE8CwPPYvgMf*vuX88l?P +Jpu@+L#m7ST0Ojag%p!AWfrz7F@51RJvk<{|B^YwnSSrw?I{6>&Bj!W}&Jbe<$%HKEFd)a;x-lv2ZR% +Ewj$oDJuHjuO*a9Rsp4}#bS{QW(;|!o}^H$2yiA-gjZJ!f`7~9(tmdhq(+9QhI}}F_=_a +YWy+QgD_Ou-Fe}m+RE6k4JTW!oe8)kXG%$a<(o{_ZCk+9almk4@$$j#VO* +U!<4$a^l(pCu1Yb7Ft$iF>#T*b!C~G|(po#BN14*W_;{;VQ@^#4Wqx&pd6MGL4eW-~f}p~|#mri6Y>MUjWMzY`(9W-N>4Dl{q5UR7+jLII98I?DN*B@q($8LcR&U%#jCrf%i;oXD(LvhFRO$B79{jZN;XkiOK&>uei;cXLb>gz$qnR*77 +153K4qlUh%2gP1*ElHb@kwxF@35lZ`-XxMHT08{ltf)D69NkK$4A{jPxk|Xf?Ku~uH%D|KUy3~kn-r~ +UQ`y1AUhmXKD%M0%aG4&vTbluD1mI%69_Ysr*?jQG?(21PTn}lcEc3zGwb>*PObKsPIT@xa=~+VKbsM +4r7F;VtTu=M_s&Sd_Ub&#v=M%rN29YD7FFc3S_ukYbAi+00S4ZQ4dYsZX2f%IGDkHiFbv#h2uI;&4DR +CrKB`=S2<3=|tr-=gN`kD@3(gdioy!y5ofA;(a9(Q-inO>`%O!K}>J}y;Zn*%sf*4;~DSZgm;+W+AhXeb_i$PkMFkdS$toaL0+>XMQt7 +E*kg98=M8g8*gM~yojU>NWW#eWAZd+=gSd}0gPkPnflI@W#KrlVw8c7Hm7$^mNj^zF6j11xH-8B +BR)S169q)g4DXq3tm->@Ww2gJLz|8oeQ4bq%sey2HkU=x&TlBxC&UC|TY%d5+n;YuxNHu#h+Iea4b3( +=Uq4WY}0mAz~XX`xj*Y15ir?1QY-O00;mBm!w?&R$of+0{{RU3;+Ni0001RX>c!JX>N37a&BR4FJo_Q +ZDDR?b1!CcWo3G0E^v9RR!xuFHW0o0R}caU$fzx(?QK!@vQ2li-aYHxMNv~h-81SXQ;H!eNkDhZ7+MJ1F2tGFy`DF&^&YsgS&g;x}d9Y? +5Y-E~|wgVk;Nyk>%qJC9`401hU1A8&78-`!m@(FQD!ITU*f@Yi^S^mWO^J0Y>4tPFR9Ho8WNU1c6yy7 +j7oJ*)7by=*G<##lhCc3#luj@OT%8qC*h`wQD?EpJwg{wz3eRY0^jf<;P*0`4{YndLui*bhIh2e%CzW +0>Rs!QG>?56MY5XC?cRQNr2RRXh{VNF`a19{vt4$g?+&^22PyvPMu8vGWeX*XIL(90K&2_gAkaM`Ujz +czvbv{$$+z(xUwa0pinq +*1cp=?5^CFkEymCZlvZgARUf4~f;tjzAFPKc_DB)vU`Um*?~K(gyYK1xFggk);Z0NZf*e8aV`1KD1t( +a;aY1wsdRUwc@=+tEx3$@3ak8Btu@Dl$U71ahS}5>3#3(av4AuF}de6Od<^99_yaUIN+?Ls1NLbh$K$ +>!%bIkH1y?l3o1a+uJ_-LsH%R-V%7N0VGWaoauOOJ{~FvVI>@olP>>ByCWeK-hY2|B8`Vmr9x#v_%zq +ss|H@to)Yi@DnRbg%U{7fGHMN$Q#}k5hRrNrt+h3nX;Jx+}GL!zIG=O7M1{UcpgV=eZ1ob_eQD2ac?j +ddDS&t?BV^SfiQJuE+Eeeo0?GZO`B4|B2(4>a-+$0_}p}#h7L9m3$g5J!v(=4GFyvc1z6zitL;2b(&* +EXh;>!g+spn4}ef67x755s5%$_D=OFM@@wJ%J_-{aE4|-o_l<8kB6V|t9_-84tVlgM57VIdLkpEp2Gi +u~5y2Oc1pch0Z(s|JaC~>xk`h3@Qgub?c`#+KlNUC488BgK$4NctWz^^s4eXd3$Mwk;VSZWHTUV{s-s +G<~bN}np=&@eKk+bQWBHr|?*M`PpOJ5;qToB?=q7`N`lS1vwutDUL?d5bQS{!1VFw^ZQaPVdZU2s!)( +{Kkf4y>k*1}FXX@w$tp=ETng%lZKIV>Ldu0qtHqu_2lg1_}bJ(+%bXn~bM&a6TPbbDG3vUTJD1qjEf& +YlSv4R|+R{oscz-^6)j63)GU}XhxOcpz3I`-JHQ!hJW+p<(nuM(2jx$p%-30`}c~zW +YAkA=*wGM;dM$DGresmQvTXQ1!I5zim_*-4flojvEVPG~9F9gN+7bCpyZ6a$ppfw2*=xxCK_|w&kjvL +avA9dm+|w*INuK!A>EY?e=b)k=?iJ>&J(VX^rSMk{PF +AsFB#E1F(C*^Imx;ehGhb-jxsPY@WAPfXDo+}E&|Fs675jHOW&6_Q&^ZZNO0>|}hW>xkeJ$8mV$F2Vx +gK?tHN{F1uhl61Uy;x$@K(THcDQSjemoj?k%$N@-ip(HQDHDt94;X+}!fuFrF(1LQ7R6+uAnv@#%JK& +BVBm^X(ka3BHAM*(xz4eFYB);g3uE_%mFSN3c#D +c6+vbrR^2@Sn!C~6GG +jf}F|=)OxnWJ}J|SuWG7AX7$0(bi+1XLt*1TuEWwgLURH2#F0e>nJLsv>W^uNuK7@8H{1!iX}K&u;)u +KW?7U0*Bdpoesr|VB<53c^tgBQLN>8)+|UTGGC6JJHyFRL>+fo4q#VC5ENbAvvib0gFmGnMV!j)aGxM +1`$JJQUG{&OHll>ZLO_16XxUddP@K%nv90 +RRA01ONaY0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!IRY;Z1cd394wkDD+Mz4I$ZtSUgtqMoDfUZRz{ +=d`^<5prMvw_v+tv)QQXfA8>N7EtPov1Z^p_|3R!1uCoj((0a)6`{D3%Jl=!gdyd9Qt?Y*Xg-BBn1bHK@g|FC{DG*P0vJZey7>3 +7MU!mpAI$4EshMjzk5PK%I&$Hs!9jvX +{M|JluhxieHVi?qnUE6L@?E?sGpC1-R$fB-S?{&&mDq(X5cU+pR-{!p*Z;$0~H0m91<9`2_oskp%Onq +uYLke1M4c4PHiYm97S*hrU2ssF|n10xq|)3GPC=EK7%lVmIPst*|XJCEDKkp5gTQ-1EB{eOquvP{@RS +bTfQh3V2loz7Kn_R!QhOQu9{LFaMK;MD3oKy0mXD14J0K0zstWQ4&f2P^rx08X3k^*@cN!M3$ti&lRA +!*QbW9?SwEV1!MCygA5cpJ1QY-O00;mBm!w>|?iBHZ1^@tx6#xJq0001RX>c!JX>N37a&BR4FJo_QZD +DR?b1!LbWMz0RaCxOzZExE)5dQ98!Ko-90jkh`HKqbZ+71PZENHp`gJB4aM8|AoQYERRUY7s9T`*-aYq9?F2udrrC{Z6r^boJq%nZgc;)sE6SN%t=!r-$(jG(^XqHMu2(zF-txXDts$=PRqJJZ +QbgdZo>(G2r~wN}{O+H)ABnVk>NtQfzw?eAOLT_&-Y{E=feux3OIXK6HQ@FJ>(i@I(O!DC7BkLhi+lP +vX&63`r#Nqkkf3i+#y-Y}Q3mQW+*fT+!x4uL%rKxV6IOzJZ(4phVAcf~SVw;RCipm<*^S3|B>+B3VDC +sU>cf{Wzkeywci!OIk6c!rk;i&dgOno(r7iMjVml1Wx#SN$+<4^>oF73(^lZp81 +KxN3XJ3$p`_^5_atyVfO0fpKpXay>KHfwoflA>vf)oRuDSV|k2&U^VROpCP%ku1y1?Mc6wjI4vODS0bRo%k%_t$ZNj`tZlN&9cA_oNkWcn(`?wSn3=^|sB%Ho+40P&D=4c3YaL-EOD26$Dx{L-z?>nNNyrZMD#`9MZAzkb9~L(uYY) +F*2iFiJYg_$m;{S0Z&0Iqd(N3#bj#tq`iTt?+KO!x))P|_YJg(ew6f<; +N2g(S-#z|9J>=2A7MpFb$L;r4GZ_OHI@e%6;I9nhqqMK0~u?E(2LOK|J++iqxDGQ`H8i>$Uugc0fONp +}T8>fIJlw;E6(a}Yb(ih2-bF69clgaMn+FKNZVOprQP0vevJPZWt;vPCw=`B}#57jHDi7UkVqr@?VBT +{x_xwhV6HVQUx*4s&K+x$Z}M_3~A1iqwlM*NK7Zq<)EAxxXAk@j7a_W3+X(+TC%NRG%%PhCg-b=pjN! +8+;O=pU1i;1B&Xu`Cz+HM-)w2jY*omyX&bPcn~8h{etBOc1QVccG2Ci3Xf3I1Flf6GBn@*Hk*>CckP? +8U)BqGtE?WI!;xsIV^XmgbGm4ll2AY4zmK3EPmGG6#1U8ToV@Pmm0lEi;ch(;xN8{h; +$-@tnomY$|6Ul^ZR_vN%p6P=GniGL>!kY_8nDw+uvLfbNLoT=mP31QyQ-}_v?iFu@dM%CrLc-Rqm)-o +)*Ao2aIvfa)LZP4xcu}ULOw$paX|C8zy>j;U!HF-{Gp)mYX33<8z!(!=RIrK9jXv(VqB7EGCa_pU*hH4f{o~y3=m0r +4!6x3)Re#x{U3Sh9RN8j0=a%?A1Q-ci#?*U**h98p!a^;FQLBlp(Q~Rcr|_t0#N0#{reLVZ`ah}lt+U +vsHCV@l0!ef6Nlt6!f$H%$D?YB`A{JlnQZ#{YZ1uah&fVcb_WcZjOh*)q`bPA^3>w`A=ISrdTVsLR{z +)kwX2D==rqTpOTA&{_W0OtjI7Kp@#M(_-oX^-3-^On9cp?wZ>GC?jJHYE#%Y0KgYT#Qo&EXV9Oo&2Hs-zFHlPZ1QY-O00;mBm!w=QI~U4H1ONbV3;+Nj +0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!Lbb8uy2bS`jtrB>f>+cpq>_g`^PF-!s+VS6>;6j7C{Wgf4S_@4mN +k{2p28CtJ7vU??hL!7gV)2Wyh;$?!%QWH_vEngx7fBy>txKi!fTXsNAKu5!Ep|bVex0zF4iMG||S$!C +0XcW3wQHN29nbD=8wfYHMnVkoF3&eBu^arQ4RPI(pp>U$41X$6as9sm9db{pZ`;_xJZ}E-gA0ZdDR~0jyRLVs9hf>K?tI!CD;$>D5A`)okICn0}YGEAW?eUlR{@@RY$CzSt>3TKANXWYeHChC1(>S0!!~)l*Eu>i8)r!hLv4ja?n2 +0#QZ)nG1|W-Mza5#~b?=EL~=cZxi5q`fu8axnC&zfr^P5gRVC!?V +=>IWfOzk{L$`W7X^`dl$YGrFZsvaEIjFPX}r9Kxb1x76gX|akbAq1WnMFGxSZf5)Iq1i?Ftib2xn;5_ +*GWY;C497!dIl(r+)TB@x}l9s-)&M^YI|(ejJ4DG~ROvKZ`l6p#rQ>w3Y;2unlvRGHFu}Gh`YlvHEiM +x?)YlOK4;|Ng#2U0Ejfrm;s30hB-pzmJ_0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!Lbb97;BY%Xwl%{~2d+ +_tg5>#soQ@rc*n(Q(@3Wi-9aQ*1TSt0QYHxp^H$!%#<@juDT%@I&&|_50i3egGgqf+xxLbjr!ZIuZaE +yNktsVY#fzwTRlWz~qJD9R>jva+c6_SC&aSv2xplV?}@j;yMp)IWZ!%R>KMZe*1-Wo3T +X`mcJ`Hd$_dWsNj{Z|l7!LbE9ITrTL{QF67=ARRYqOlnkanoUyGQa?R=dwTlj=1@#xj*RQx^3TdB +s|B+Uwd)-6xrCqHPmo2^WO0*RL$j!ozqeT>*Rp78156NN*lO~N!z2i*=c{xfFM0o2TMR6Gf)t56Ke9 +_6LMU+$FWB@&)t$pV0hh)4FZlVC?jvpDMJ|(~-Awl;W8(sTo3@S-;RdRsH*a3QnZojZ@d8%2u +jg<*Ffa;&qpB(^2IH71NMdbxn~?i`o8`KT7tXv~B+knaT{Tc-?WM_DHVM!>(XGEvYI#)LW>s0Rw7~AN +yWt%J@R8S1W0CbPu&=cP{ER;#CUg0$P|1og+;zm~Xe4GdO48?q`I=?83Wu7gXmoRM*Z&N` +}V+A@;mLGe$61d7gACwbQz5L?q41^lY|M#&$h&}aUbvQx|YfEcCkx4d3EMCmoJ3e{&`e!c(a`RMfD#^ +^D`{-LT9q+cxatT{sBiFiD0|G3*tFk5m$rh)Xmjc{5FR!nyEevS)3hwx6#y!?qy>PL@B!Z2dn&sOVRt +@Y5YU#?NM#TW2;NK)2vJLDkRSh%co13a^V8^Bh_~sZ`Hd|(lj2Qj{Ih&SuwUP!&Rm9mcuG%6_>bNS)M +m>NzOO%kCb~j}JSsMgNPvjhazXXylKt0%wcY{^dv`G%j&BXu!QUDg?wn$|acdZzz?sr_2@pWEaCHV++ +w2ScS=@u0I+}q2EFk;>jDU4~WkK@VS-d=qC)9LFs=kej&m&fPvkFQ_gXkO`fHNcaxeb +r`0VWXa!br4v3tRAr73{q56L--_98-H_K-hTKLMmnAM#@c1dvVgHSpx&D%JN1K!hrvhrm3>4w( +Ex)20WGZ3N;aa8^V{>s$p3~d-2iX4@YklnqcNlyU8WaeJY|TLIf}|pNO|LbjDp8wH_czA>=x1=yl9n{ +K8ybCyTB4nOPIH+q%qUM1urKVi{!d|_^cAZ8+FjFht}f+RPXsRcw5MK8<1Gi=up5w9Vlw;A?@{Erk7nXwMHX#8n?1JBDQ;S4ZlDz& +4aJLiT-5u$m+V4^XGs1_Rn8gH;YByrZTR}wpz&fdDU7Y!D|;cIZ!*F|B3G!CQu7rGlAmvut(=02#%GC +X^Eq@hCf)+h`Q{g16$Vej#Gl%%PdMQ=ea+X~GyHCr +z+6h8r|7RJ$3qOG|`W2fzNXFbM{b+ktVYfBQ~nCUKvmYbryE0EAzGtx4vK$6*LD+}lew?V?-SOCDaEZ +VG)aN7b!@lT{@!Ws$f$YR$9s#o={HiH#Rzwg&fjgo9GjWiY$?3fv-|9zhOUWXozc@p^^EcoO(N?*+{|XGW+&oE +@R+!0N0}vuGG^nkDg&u4!ixrp_nw^o)0ac}_+YNKA;(COPG?~D02$32eOhMm3tpi?vo286rSY{yex3I +RhxX^hfxXItGK;ICS@rRGmdD3n18kh7(TLTJ#12l4lcna^i78lBpzZ8G*qU<|yq3}N=49`q^*px>`np +MtVJim__=wc=TuG>Xz6YINsJLC=((Sx_E&tDYraO`KMu|XWJIar*rY9FE_rY9C@4a05pi(ori&8kD#` +AQroU^tmPsxNAoU{hxw(UlGIPZ+?4n@zNOQDvLQ4+JIQT=4f_Uwb+=WKq#Y?fBr85n7n8bb?< +e8lshhV?Du21IeMK?;WSJb=#euru&P(&o*aZzO_X&+3bQzv29i$6{f79lYbS +~Htwd%9U6&XINA%43$WN*G*;06S+1|Lf^95vWzJ@-1I;>v$TJE^jD6TO%luaEEAMAV=*aCb>8AO38Z< +rp0ae&n=*78mBZBnpJw|`nZBhYM29GpFTs?LdK?b`EV7?T8fuXn-C#xTxf7w3IMZCE`#rODtjF^&kcsc*>^*uwtp!zfUpf#>T;oNqU%;J}*wzh~sY&7V;O;OXJ% +>C40O!>7OeqFz&aDXm-tkqFPEw4qANMT;wqmn{N=n26qoY{xqGvpeCxbF0lq +O<D77BR5esufLzN?dQyLXzJOK$efBjWc<=0=my9BOr(){sV)S3qW^;f|() +*(uKS;04IWFyZ|nRkN%gNtSvZpymOuFz)AHnU|V!Q%1^Vi^d#_Jl`iV|BH7mBfY9&PZZ8zz2jZ#v>(aMm_Z4_x+&lC`L8UO0f(*G%DtJ*%p89={2DXwc1A)|wwgP$6IN=DzGol8eRx +dMlPWqsB?BWj~{4Jty +YXbj2Tma;e-8K?al0HpVpk?-ux%o`5U6bP}yyR_Q@$Z@m#) +)REx6gD&)JIN>vO##Lcx0&i2&iU{Bk|T~x$3oXQMOGDd@fE8&wuKI3>rnVFB3Ea;*KnOetJN%d%NHTnR^Rl&$~L^OYz9EdMmt&j^Wa4Eb@q<*Pr +$!UfK-WHG#XKiZ`^Cq{C9V#AyR)TC38=4jQe=1eW1=7=$xkG;@8Nju5h5Dzf(7;oE??wNf+rt+~IEQ29;^Pln`X+qldK6mC8ozV4veG`!x8z4zBG7mK1#=UTE$xjtV<_;7- +Caw{;)#HUd!(7)h2axxEbURnyhU`mv1^3L2b)5s9J +iI+M+~9wJtN1Q%7`GX&t_-reDuHPM{iCJU%mRr?5D$%!yk@bvJ66A1LYPa2#667Ux$S-Cje-nbt4smb{MC>pG}oav6p~5tp}iD@Jd9*1MJQ2_3r8!%TEujrP23)VwOx(&Xf;qhEB7IW6+Jni0Ycv(Cl8oY&Z(%Nl(P!<=LbMZSV@t>1~vg#=g*6T!HGT +cK@Uc9Z$Oi6I_Z}(aLD3)><6I@V=-dTOK^EUbX|LMjEYIwP8&7mWDYhGk5thyaDr2C+Y-~U0r#TnD=i +JC5ASu#29R>bm_3y$FT`((s<|GjR?qgTC5&<#Fdlb0$qn^7Kc)HiFR +M(D~=eFx$~DsL2}zf2s&R)uiezFg~Nj$7<)+iCQB~=uwYZ@p>X&o7kJJWY=gCZ!qB5V2(N{w +6L=&E&9u-H^gzFQXCdpwP@FPUM<3boDsdDDtX=JNhQK8k`YK5(1TTu +K9?xU~z(lJcK_M|~er>k)_Y_lPGI>tSOaNbe*4U3-&M9ShRJw1^bz21B7rvOz^KU?1{3-_u| +=FLv!oz&xE7C;?ft3=D}#!kCm$iKW|Iu@Z*G14vgVjDaGBK?}z2Qrfr&7#IHYxl_`p +F5uisoxSR_6p5pl6a)?g6Xy;P<)zL0-^#2Af$# +Vad_8+rGs?RteBe#|BMxV$&Uxty8hwRi$*wtaofUXu8M8ZS=ismd=rd`l+-_2xesIz|r|`TtXpM2nJM +>a#wLV;0cPA&bcB2weRDe3;EIV}TQL<)l%sb2!yOrWf%0gK|pkvLx`TE;V+ky8klgia}^ez~wKVs0@Z +a{uH?1HoQ3cgVei*Ct{98PwLx`7%?0A-t)kMi}$?RBsRPmz93+S^&-;F68;0)oF +NyG{4LGDgOP<5Q5E1%OP6=jt1!;=_%f*l +l9xZd|Xggvt%4*&yok1^M2;!+yT$f3fw|MG#&Nuv9u>tlI^fHjKfDlh!!Eg(3K^ya%_-p8dZs-2$=Sp_ +v8v$-g)2SF^$IZcme<(N3%!Q@xPrVY;SfyBTCAGN*9=O@31|=E|wC`YS{BA!FZDa-?kf(sMGDef#|5Q +ryvM!*M#vd`@rR8@7^<7vB7l?WE5!ebRR7;&=VV$&v{t4$>Rbr95xhH=%v5UWsldYT+6x7bLla;h|2d +z7x3~CeeS#YnT+4fRweP74(hjW8eN8!HJR?_PSK84V7lc=Wro +zczAz5s$Nq&yqUQbTY@vg+;a+KNJ!825c(JJUiDgJYcaT(Rbf|pU8ta$A|BWWNsUQ+{V>kZ +lN9rboVXijh$v6AwLkE*A2lDrhXr{*?~}YSxK4Tw8BYZ{YYX!kyi|5&$GkX4$if_#vDzKeooavI0hMf +_!8~;(x)OS!9jP?WmGX+l(pA~4#HPgznJZER@eniqZPhVh$ADgO)+qKtxGOAFbj#t0ejL$sL1~8a7;~ +V|^11vEfQd_KD$&b7!XTJ>Hxi0Kc63)Ts%R(ojnvJq5d+_A#5YYNbSAhh@Q%CK+#t5~?w$Jy9VuGo!FQs(7u@46Mn!ut-*G@Q&0T?voK9N#2_1J0KxjQd%5G;&Mkld8{qozqfkL=$Tl|w^84sgH +;;jQYP!diUh8))sx(I|l81$@&_x@jgnT;M-=ERN!R+~^2ULCOp#Mk_;~k>sgI +n#0O#>ug{E8k_Mn--h?IUnv=|DaQPhSf%*0@TK9@b61>~ +tN!qijbZMqPK#Ul}^|1@4rAaHR8mdwY{oru9?Lc@8!#?p7G#TWH0`aTZ46lzE$?fJwoHGDix+zt~zoCV2*ppHb8LSt0Lw2NHakArE6mvE6nelT1H|RZ*FN|8hF85=p}y +Q(3zsO3hS+s?cTk8u&3mv#R%2TdklVfGUuwlYp)6K9<`JbZ+YC=vXQPD#)cH+yV1HTa4;EMubo@KUSVQ +rn>_9IL)lCp6!Q;`m8-J#xLX+G`RS9LWC|h{5XYN!2s&n4gT)!o$?DB~JCQMr9%*pHXqXRsA!vWJ8j1 +rNyn_NYp1U{H@Y+s$Zsh{yDAvT?fgK|ezHjMd5RiT%PODKIPXl}2^3%l#3E{AN7ZB42h+3n_u8yaVcU +pZL@@9hyji1!M*4>~ATi}&4|FP>k1n2x9e0T=aAF0ziCzTDXU9fuDU%su;~kJ?eG^YQ4Vhg14X=jZ5b +I_qtpit^z7IHs*|*oP_QAHUz0?FSB#kD&d%hWrCjDmKF!df1;-@sR@)pg?u>gNq~2?J4{9HucuIH?c` +y*7WA^x4)5|&fHLBw3&XXO)+m{K;k?M;QztsHe-oM60QQ9@8@}NuRj&9dl*>hG7CI62?}}`{8Ff-5b8 +M5C4_f4V`(h&+*RSMFKS$pulAt-MUp+z24K@=etjbTN+cJFaRrx4I}yNC7a^f1-+?+L7AU5hQVo!1HP +{GP@Ky(6X=NsqH_P7yqAwe9?Rz?%h)0awX+)S(6yC_~Tz^_B!p{hRmJ8}^$azF6|4PGYbcPOBy0#)bd +;fu+(So*PYp{d?Em4LU)To%+59`pf42Gj#I3Fx9b(MMfSM%BY%rDuCsFdI+@bbLdqyDPddsT@Bm0P@7@{$XasR3|uwx`*m)_v}hu^&zWq}SOLrf@xeRBa3k7%9MXws56&7aH8ZF9Hdr;dMANT<3wVXM +qk*oH{$Gklvrmji9@29{%CzoPQ3NZ +d+6={hZ4%+L8HU}d@awXestld%RF{!+2ufqVpNaQjMIx^90${M}>2ZI2fl~|*)6Rix;q}CMg@uD6#-> +RH-mnF>f+$Cx6dZS4|4>=-u@4A!p)p?<`GuG=HkaQW3c;-dX*h|n_=Bk$q9PESRK5hZj2}51#%~q_yfZr$*AB3uNmg=RaxLNrIH$0 +h56{@@cUOsF%@GzJ3c?MhN9eE*o;~n5Nm6|euR||bQM_(-Jy)G@pP31$Wopo>9FQ6;M`gE3eGfFLWeEu +H#4D4zMh$l}5#XS-&Z7FDFG8rkW(K(%azkqYmqZf-Th=3@~O00X4;8{QC<&KWLn-%Yq%W{$6>BV-)Uz +(8~E~n}EARqE&Io*dFPY#e@Z>l<%`opqA9mB}&9lGMY%NiT1YNYWzVuwB&16wtRab{1*NBzC@oV)R~85+ExqdbV?`+yv+MHii&)#QwSAS`Bb9szbkf?k;!t~u?F66s1oPsG_K%Nu +*@MXLSNDw`O~p2?0vAtydey2)S6o?nVT&IP)k%&;wRbxi^oENfNf&{W+f8(Fm!;dA{BCyyWjh{CTX>I +i}+cqc1rjX?rFqEC#Y-;Mr=jt()Yt3v{Dr7A;*kYnMO7dleIAW#{1-a&N<_ii;=@9p~YXRlqT0w?>24 +tI=vH8h-!D8A|XotOdQcqGQ&pKz3ycUTf&*xL1c?+Pe6oY;TC2yX|`FNMXj +inoB7SZBwGl2E1)iRgfw>lmOV|08|p3@xp9Tg@-cb|cktLA9XwQS^~@TZSB@?Vw&k@YPnlDwXS1q~^@pKVY<|9WlFJp|&e%qgS7L9VZ|1pGT|j(X{hBB<5STdA82fM`?5wbVI~ZOF@(K +mww8FV_G8OdbmLpe)Hw$Kn*-mBj6Rz7U}2>1}iSs6Bhp{TXL)5iFtu +q8!9r{=;we?WdOeA?&|9?-Wayd2*HmDV=73LmCsZLSpAH<&yX%NqRTIZ5ADXqZAXD33?yt|qxmE6(Ek +rmO9KQH0000800Wn#Toc89?4u0;07f+c03HAU0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WY-w|JE^v9}8f +$OkHuAfF1)-vdbZ~_BYXBFA=Ca%1f_8!3YjFqyEp5>@8(C6GDv7(@|9&%kiPR&H&GyszLt>LN!{NMVq +^)QUq$swX>I5qa!VhgD6rpw9D5`i<%f-U3ZJJuK2UYR4Tlrl!wfkN*yB)80i!Bn|G*!hm8a=1$jidUO +)l5*;h$XpH?%R9zN5|?7Gnni^d6lqHxAWn@?=Fh-pDxb-efjg +-CD~A^76z{6ZC>25x@-iTw7I3oc-|>qNr$|lbyM>Vt@xj;sOf<{hIz+?gsVE-%lZ!R%3saulGrcd;T$ +9>YFg!+iu)rEC0tHRd>Sz4b;%xzO>;QVy6jJb#kZpA+H|w(UI} +X^=zYwAkQy2%PXh{`y@IO+?{>7ydeBCK6i5*h~tM9mI>I19QBoSb*lDTBoeu`GGZO^Y;eg~^epxI1HO +Y1TRNwritT&YSh-J-qSJ%V!J(p#&d>#m}TEy=y$iWN<#+74`pZ)4j!TM+n6kktCJcEXA+{tRqdufEZX +a|CLp?i+Cn(vYEnz2ohBv$D{bn~F+F3Y7J4Tu#0!10V|TML_tZi@& +W03LZUZ|#R4N8D01aOUJlp1(ramcE@ee}pBx21kYHSrThFatUjjsw+{Zt +mI&p6?1B^W+Vv}j8uRRc)UjCf#y$v7ON#!sAmb51DlN~oe;eM`L1pt_zSo_!S+yv@kz59H^jX1(d*at`4R;UGVFgw#W5_D-8*IaoP$)->3mIw-6 +Xsqi8SI3EB2XSA!->J6S%@jr1p@B_EeHx)vRd+$70Y~lCmLCX=&Fb$(WLXu8ybUu# +m^#*=uBV+ChOey0=uTWMbp>>i(s!j>M!>f1M!kf$Z?uQ;1ybg*MO^Q8|jVfc(EtvuyEliEJBjpz5)!P +s&T5I*IF~l0b3X9cnq)-s~F=Cb3HUeUfYiV}COIhNX6rJ1*tKh*G1w}%f~D7$Fp +y9Sp+Zr8jW!FOM +k>z9VEqTN5ByE57V%_noEaGN0jbuI{2iusQg)OPJ4-`n$;zo_9|9&nQ)~mFSIi^XbE!2Rm;JB$8h`!J +=>JrHgKk`Xx-;gW%=h3(CkcRe*-W`qokwa5<6?RGzzDiqi@%j#GLNn&LZ|W08Y6hw~VTb;R+0Nchxf< +WpU-A0(+$}zh|D4G{-@yXyqCasJAC_;lBvY#pud0>(A2{qcZ~`=@kg%Hj;z;XTR+>r;C2d+kVwQ=uCY +etJ9y6C&O^#&Zh%-KEIk0JH?IkPFDMeE`mh-{-Wb`rq5X;QTB03}%-zxq&ig@82SA*XpKG1zcSHC1yf +Fbk_5kzF|w#DG$Cb39p;?uD# +F^~-=xz=bP3&nD(s*Kz)*Ql-hnXbZZGGK)a*VBL)k=C)~HK&X9|LzgBBUjrB6Fj0<`r+e_Cfez3+x?W +n2Ah8FG0lTOOaUVYui-Fzp7-3jQ`Y4$XcgDD=trh-R4vffsy9pyL3NGw4$f1+QflR-!f%yn??u-Pt`Fezks=md-NZlPy-@hTPON#4ycN6Il8ALmNnEXY;GvXn8@aUg +|omlXIUYormIS%WcWhI>JS<1h2>L*ABrG0e&1lNOwBeFSlSOkpB4L_rtas_6O_G0RRQVg2s%aDK|ac~ +hBlpuueLDE@Ot+cOE%HD2R1(OL{}P=YqLRNl%@KjZ2);TWFQVE=fK<#e-n$utK$DbB#=y>Ba_Il{!Y0-d@63)5q;y+AomQ@8-V8cWg_udk&WVy2VgDkr~2 +wzreR!6GwiRzUi@a2E3R@SK1=*5feTxm- +s*iVyLb~LQfsU_t0X8)`h2~pP;7Dm&X5rP|zY^DffcaQq}z?Ksh~p4hq#rjPEO$gnz(4_3Uh^9|M`cL +4Ry|Sab~AgW4X(*IJmRT%#FVf$5u85%!>i^)0Za5JX}pl0XRKas{pHZ0gzSApdKJ7(7g|{Me^cT5PKcQI2cIv9i`^aJ?*6Jy$tCr!C_BG#1 +pP?gtdPoUuFn*vNtaWBFhtRIJY}1InW$Gs{DcJvQp-e$QAn%?Sibe6Xw`#!nnrC1-A6@g$0Wj5nDh2N +!!3$-O23SnzK`L|T42)6eFu18vhFvh?wE!qseEN3Efy&udN(?Sg|be9hF7Um=>ue1sLRewQG251%ljR +Y*UpiXPS_wUP8uhneh}hhqcxcuXf|f2}yGQ$?3J{4?pnAR~>!B0p7VJyN8565$~;t;4e>9#h56So=yG +=bZVE0vqmnhc`_=X#op*uSNTLwfYp6hMy;#Ouy$fcxmm+j#~9A^XCQP0ibmQ?dA_F^8NIQ;fq&k@~tH +4w=zqX0Vg(_Rd$Lyj*as{BqH8Ze5Nk-1KF5xL@+Qq1f8(B>?t4irZ(_pv^+ae^kc;vXNtk7an6&!A?C +4(8yv7e~<_5lMlLKL!QF-2XF^GMLTOx>k&HuV +0;@4wLB4r7M7{!#AU5Xh418Dk96OEk6$S}Z|XazY4?o9yrWrzigC`P_UO-@#BrBKSs$M;$2>a0N7?Jd +PT}!&1sg{aTY!nKu91T8e^#T(&B7{g2-=I*oRqT%=&8!|Ix$r?p7sH9b#fEHY5r +ZevXRtQLr`iuq+_9*9J=j(!fia{Pxqu#Z?l74HHq{0QAp|ded}vkUbc52SwOm&Aji7PxSB$Fqrn|XE< +p}lOOSFZusu+sVns1-CHw3Zmr2m6BhPV77-q;k7>VFR9`)c$Y8YWL@=iSj#bfQ2r)uduBvTP0^1a<{? +JlvhLy#b*fzL7X2h?6g%sp}m6RJ+Q76{<&j%!$giglclqAKO +-bmW5P*^JrGm$akk+V^N^L}9%;3aXElsXdut8QRMkM>4~yWP*N>oRO%U9lSeg2?3P-*6)9QnHG_S>%@ +nx8^>;J8WSj9-93(9nqpzvW9{*gk7|Nm^aKB$$97H|+#%lRl{f2E7I79Jyx1(z)D35WHMdWn7djGB%t +A-fuSk~Np_R5q{U1e3*a#p7T +5=-RW@!k*es*%bN-Rap{$%@FvG)!qA+;4nhqJ^;6FtZhW)o@+58k;ZJ22_k}g5_gl|7yUS8eaPNB#K6myJbtCow>|EETw-e +6Gg1`LfhrbxAh3!MqMvFaXSzQdKLFe$J4c4^K2#C56f~tc;C#~V>7^oUr@ +1OOnL>Uj1`(_2K%@tH17kdqewd4`OtLA*d8Upx$vMYbPRZuP{!%&7ll@++pl)pte2^rQ^Y!hT%_SEjqGknP +TV&xakSFq(IgvAL^78tx`zbi`1E|tV!@mXQ4(ggP>J57}mYC8f}QK(p#F47bw(*+=rC#ncOeoGkGH-U +E2)wmSkCW0_V-7LEn=5;518T|K$LGn$l85#JmBXL+DMgy7i!!1OI~_N>~$CmNdYp8pL`|mT$>lvWAO5 +lMuU{VZyX`mjC{n3xpYpdO^K{$NA%{i$8RUKJW}k~Dbo4#aee;Ph2q +WmgbMtJRfa!<2VbJTgFr1Q=39q$79Nz`u$6$b5w$AL#^IYv}v%SP-K~%h^E2g5OUE*|@nEgix75f5#4&5l(HYZb?r +{G}Xkam2zURfeEgZ&Q29)_%2(<-}%O2DFWglzSLg>PxUx~$KL7vW~}`{A` +idEf#A-`!*9Gfouza6WD+08Q~wqZWPx?C!;8}sJec&+counA-^6!_98EQ`s3j`jKweAJOKod}i;h?_Y +~#y337z&)=dlrTg{vJ!XGEQr`JHNEGE1Q3dThL?_ppIB#NQ&AZP6=yL}hOWa_VRFd^Db?gJan*JJ*en +ejx8{?~k~3KQOq773XF2bx;*I#t#Ho;>gX_4SD_gRW?GuuEWSxa8U_wE0`iF&mbc;I&7rk)HfwteakAdH?dw96zbAk)P+I_cLV+hQ`PmEk@Y%%q^T +iU5RIo&o`9{}vDG%t|NwM@OH;=D1qC-#46lHL$mcu8$cEQl{D;r;>25Ccx+am%(IvfXF~Bsos+%Ono0 +l`T#7hA4NJky)`X(}Ry7ZHVDV^xXAgz)L62o5wa-6Ptynt|-%EqVxDn`#jZ6^iT3a+k9t_Vd2h0M5E{ +NNO?-A$58WAN;^ii9b137VxMr6m;di2UM$j)LqvmUwsW0ZI$sQoAW#>wM62gXYu3wOk|=Pn)vJfQ;Qs(nO9KQH0000800 +Wn#Ty^ON(rO0)0G1X203ZMW0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*Wb7f(2V`wgLd97GmZ`(E$e$THUR +1}a_Tj;Ru#hVLsX^Iv|(x6VZ0c$xqE&f!H8C8gcN6d;kvbLV$1%tn@bl4YA(*OFx! +;rptTnouE1O*JotIyrG`MY-K_vGt#7S8HB0UkBx1HM`e$l2-oveqYFHovsVcgg)7z!gW~`Y;DAQjqha +6B+Fm%wWBF3T~Vo+C-{RFHB)v^A1biK?_3`$$7pveUZvSB6L~4qimty6d`rPwz|IL>O~Q_s!AP%Ju7MzI)l~6S@v8ts_rD$EGuhW +)qu5=bwQOPM(w7QdzQc9I&Q$2%uWbAg6`RjKoHEAs^JLap&ZC?6=L05_8*_|cT0u$5YFUINJ62Tl2or$-KPfj5Z +oPvlbY%lh-WuS?P850SUXqTg7Xl!Is8x)Mhh9B>CY=1w?Awi@dO0sRJb1`tUaC5RLN|i~oI|FkTv4qLaS}Q{kYKwZ=4saKDgHN$ljZYOtGS +X8SOC9*GgdL0HR;Kkho4E;tj3q#DKKc>qUi;_<$lv>A>ra_QDLImLBRkg1{P*Jhw6qj6RcvZRR<>sW= +sMIh~u`Ey^CN|mHd%*Ta4R^n}co7%U5<_8PP4wa7{QcFb$v3ECz|RZFx+P8y +GxA`>rRMi3tQ=P#MR#oh-C1mpQ6M+@UXnY5S~}=M3>zwBJ`65m%^bE7FG(MfxCPw{A=pb+gY8j}wdf1 +`?W$>M=I`~687gA?IUYV&pqCcKfl#{zMc8-Ul>Eua9fjJ|>=`j_JLHhv+6(P)f>k9JH!cb;SPF_k541 +_x2Y>*Fk<&Lt=#oIGA$N?dsetCm(!hMLcSc(Gd;S6lI-_!IgNuC}Vh0LHSRPCxpX1`vqIA_}qU-H$*M +qht@B_0WaGz19nqgl+1=t)wwYNU~!VaomG5zKeInaxT0hE0n;h)KHw@oYeHbUc%2Z)yLeHD@&+cYc`` +<9K%R@y41RRtG{*sXMG6FyHc5*iV}&Dlf1wmZy4M?L`rRs~(NCg^x4P-{R?Act?-pwGP!e>I68x2_lJ +F;|-7#mZ~ntq(3I5vh%a^ww1TI7wWZ+P0MgO=c3jD9qguJ~m|x?_j1GX(t3}W`oI}{9{^dZ;k_ZksO1 +D2nq*0lX>lc-iMRpO*`>&b__z%o!aB*?d9V7<@x#9s~LH!h%+9>tw3B@0Ea;Nj@WNXbJhpfPH#q9$q` +KhZKD+UMCUKB&lcA+d`Is<+*GoH!EyXb+{s0cbK9VQf@_c`Ceta%_>@G$T=S1LeSClD`FJb`9)^xUJY +9es9&v1N7P8#n(jzTy?pp?Ij{wnHV6PsJ+;UxIb?E^cc2?=D3NyqHc80an%z8C^(%cN;eqYpkVQ0M=H +V9{-8%ix@I1-MM4O0tKDr^SUmuA1O9`i8F!68Y10@>61AsUyX=UXrlcluC5p1Gy4$^i*RI&RC`ge;>e +FeF1X;nVAV1DaK^63Tc+e(qnh{?As5SLmqCH;Z91tnAT&c@L~xi9{QN-Tp?} +ZFPf3#gRdNvrsylt$Ff}K%i5_s_Na6>(c1$|w$W7uo8pkwy7^poSA+QflVQ0i1Tq=Unhtfl5O_Q8|uj +qw5|Dj{sCN;R0+z5_WhcjV*+@Ec0yoUoCn=7Ir$e*O9KQH000080 +0Wn#Tu=w4n7j!90D>O?03HAU0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*Wb7*gOE^v9B8EbFbIP$xH1)*XQ +2`B4z_g;W;D$vWOd&TzBB58L&1c5+Hw4;qIX(=j+w|D>jW`-g~O0s)6qqQY+UYz$ZJJ}pqmhF1gOOa) +)JhY8ejMsIexGI~vTdjt*s@d<$dT(AkCGl;C1oEb;L{8ud-{ywOkD?Zmt47A`or0%rC59(h)0j=GS}r +?bP=4lBFFL)ajxBI7JJw9_T;^pBXQ_FWwv9BM(|nt!#b;cgT8KWfk9wDx~iX`b@;uukm-YV(@vzK0TBj5-&l3j*)~PuRgN +B{pC+A{6$pN`mt`FYxYr-WS?)|gQ{xwuR#e>LUi&6aH32#8JM?u5+JX3&!p|^T=nG1>>DuVp4~y5VsziLzYiQ=vm{9jSh)w|i)@HJ45=p|@=5kWlSTL7MUf3u!cJ5> +a)fI*)n?$t7%nIIf#4vKScK3*kg)4r5KmUtyRs79WErALrNPn;r(Bf=okFn{$T>r$=tpT@pkdu^ +~u^hTZtB7xD-$g1kpPNYR1PI}Ad>W&V&E@6IqBLPCnB;K&9lx-qC`>3UVhq8~=YoLg_qJ&6qz_tVa<3iQs6#V0gC`yGD)Mi%?g#DXhX-G>HhOY75 +^&;CIr(4Ex<;c&JnQSH-9k1M#us)^J^^nozafE$n4x$Amj4MuYn4$AtJv5FC`aKhvw;bJ+xqv8{Eo9= +Qg=71|Lfw@}$Bjk%+6ig}kn=>y +rlMRK0lb)48b48%S5AATZApat?XlkpM8wNc6zx&}H0fLvH~omUg}qAswSV8ZjHV;70o@7JiB3!RgIXb +ze(gQ0O9>Vr)oo^-BssU~*U8;S$%droCtNa`NgQ_pCcWS +uD?{-4`lss;zg!0%xNAwPlH`f%SLjy}P>w6>#4~)*nthp@xkyGsV|-{?$#)9T!VDnlycE`Lv{_b0%F& +kAL9}H@g+Q9w%#;C+V-I#WqTO3S@sf*Hv7f~8O3Ft16!NB4Wo??MMJ6_m=N@W4uh^TXri8Qt)dy6f1T +}`yFbX31^F)}~= +N)}ryI3(t+NWX(dCrOde@7WO-UY9&|M(`jKO>@B-!dg$(BPg_dW(5!!J#Ld?wo^Bp~=u><^Y2qLAQbWK-AJp3y=~VBp7%6VZsuf7kJ=cnU9S!h*{r)>vG@`376m +*4h2gA0Wmr79;lYD|11ayQM#On@cNyAxAx93h(RF-{z7l*chL;jUQZO71Yn=Lv9M2bO66{WS +n8;8F8IWxBsTbS8_ucYXA8mmIQr2Mb>`0#9vY_MR0lm|yRkVmpP@+{K}^>;nfi1Gslm(}Rqx4kd~y`g +s3*7M#jKs0hsABogsJoF1KGJnbGENO)O3_dy?8aNODAQu@;fmw6%mfj9n9~_j>gVf-|QrGDChk?`FCv4cZX(~I5;oX5*qV5?V{n<~CbC?REf6`K85sVxbGM-bU2=eUk~>oQ!E|CUQ2Mo +4zE)dejl?xM|4@B^Zon|<&3%Kf$EAgr{y$?vtDbF@&dV2N_lVZ!5oxf%~Qtt;)J~rc2M&!(qlKP*TL0 +5(IjZ+?rs$5B-;~{kAK7)d!siQ^@mPh??zuiFV@@RSqfNR-G~F7nVfdUV&+dV>xD3z`d@U0&b#prawK +3Y`Z>%?=R$Ha+h8sni@2Rp-7CzQMSbE-OEY4eljI7k(R#RTTo8q-m6gJ~oBZFzAQaO(o|DAsS*ZhpXqZs8_#I{nTPl2H*(yjC|0X +F01FME318+?Y*@?drc!O9KQH0000800Wn#TrkcT;N1iO02~hh03!eZ0B~t=FJEbHbY*gGVQepBZ*6U1 +Ze(*Wb#7^Hb97;BY%XwlomW|J+c*$@_pcZTC}IH)(PyK|OWKEG4=j-F0*fG^8EI@2kw`5`+3^nR +pOQzg5DvjXJL`&x~haKdanES^%{#*1-@SLJfO9tr(^w1zDjkC-# +XzMO9BcUJbUVU7h~b8LO+i9ah6QI^6VelkXzIW~j;^z$3sc&^#q&E3XXf3?}I#m62$@G8TS-TP#P+9q7Y7aTMMMrRD=NH5DvDoBt=Ig0|srZGwUHYvU +YGZqOQ@5&3Qh}7*pT@OI>d^YzSibr?KP=Wvh=Wz&pah4j#Mueu593$9KROyFzno;KR5Mg5`l>P*mU+L +{adLXKAtArf_=)ziWl-PA-5yX4GChon>c+wn!I&v+^cVw63p!tqX0%Z5ozlUSVB%mDt}6W-f6`Cd-oqP&u +v&HF~!+(myf5OYCwqcLY`)FHghsdcf&PFf!sMU=FVP9aY4Nwc+N>hbq1bRCv>jF +y*m}1GBTsjXi=DQcCkQv_EwoKo~uMcR9EO4f`MxsI&H#F_&uj^#-ozYFbe7~A%OV6c4Z8nt5s>`!ocT +;{v&1y$)9zKsWWS&A%(I^<#ROqEtOfkGaaFJ3odLO1R0sv!#uXm;LPI#`q2G}3wWe`xL;Q+stm6*Ck~qx%nNL7E$+hn^eZGgP8Off +8#B-dt70(mzN^y{S9RtSu+^>2FXWi#C`?Fb|!(Y5W&1dRNxB3ANzZ13o`7RtgWB)%SNxIT5mT^&!Lej +T`Xuq9FLGrh5Xl~G=e5z0r^!W63WoUqd(XR(%8NO*k{4wl|62#(X~?lPBrTMg3m-^AnAA>f +yE3b~%#$vkUGtEP?1mRqgpQ?@!_Z9YuUJdM1_A6+lGK4xxW9FW@`e6I$J#_O~|SY&egTCK{64&Bpw(G94%P+Qfy7c2M6wld0sHuNfnOhSpo7hHrWQ0Z>Z= +1QY-O00;mBm!w>7izqC(1^@u~761Sr0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!#jWo2wGaCxOzZI9b +F4E~;9p`|G50Ex4G7zP~bVpv~*0mBCDy6wZ^An0s5(N3{kNzOI<^&=(Ou@a|kS_7A}#W(RGMNyKwRvX +8Z-fU#EnaS{}ZU1Jsos()-8@*$?b*(TKSfu?eR0nnzh^=gME*l4?5h^c5xgGfa*#fB7G&0GmWY1XcDz +qVWV=pk~20rjo?{=c8dZ9nzLnjUFpmDDQWyzkT+wxL@Xu9^2D(i&nENZL3_PTEWdj0zC?d_BZd@Lc%t +!Iwb-WsFLl!R`<2rrR8bW&B}mpdcMM=-sX4LF_3q9;nHbym=b%U@CP4{Zu`&KjPec#i#`E!gyT0qmT}& +Q9dN#w&1R(%*2X*vsAuP4U)*>&=JUD#{|i|NGEA6qEB6@ZS{ruIonhuEZW(1$1uZlcG^GTa&%A~pE0O +M}>sBoWNNj+#?1Wo-IbGLaEOVIdqS}kb5reJ~PUn>%FnZTYh0X=bR@d%H7+_UrXb|>b4lG7CXYX)^J5 +6M80`Xol3qb0_-uX@$OaA%@9Js3JQ-Q}V6SkYo{%uKu9$~Kc~0G7*6oEU=2L>T=#( +q8&CAYE%}B^wP;HUU%g-dNLvPPgl4r;>K7$M)O#P?A7x4gPR9pd$njV`V9)8l79VPD>q)S-y+Lt! +{Jn{+UpfrQ(h|~H@Hs%k5jO`J-F@lxq{jDHG!rQgGMcX5Qb#0E)%OpuW-AO^o8hY8W8+cf^YP-nb_LXO!!0<6)xmxlHs=||x592A6_?l)eDt! +oZH+{B;t`@IzA?IMQ>@1+<287m6dFG>-%*=Oo`XmJo6N_ig&(zj-Bfxy`h&kNHU9l_1k~ahvDC?HMUR +n~N>5I!U2E7!xL7UByuE{TK#1#$N795)P4JsuCeE=BeIWKy%ih9Byr1pR7NDl|K#-lW9Nj%0Bc`|pw)FfHr +wY_|dR*Y6%g#Q*$voFb{Zo(g~ie0bC$QD1A*B+2=h&3Xea)#co5IVgNNoAQ~?E$tT1 +lL`Cv-T35WMMf{%<0~|#}B@Ll|YLpgXhG#jI@>1i4e}-F$QJ>g?aNBv%NIVoCrs4BKJh1`XpMe?%Qy_ +bIi~i+{-TNfCqg*IP?(DR_Wwg_R{9+-seMS*LkE_c3^!LPxS%zliF*$vc#20`(7BRg;ZF&se<`|G{F;d +Uy-Dt-z&0{N*snKk7}bhoXj`{Ls;qvJnDp|zlrHThB#c5po2W8TY_-aHD-IpO5Glqzs3sX7!Rxt>o}( +TP$|=LY7Xat3fHDN>B=TdF3&gIlkof7M)t?8zg?sonTc!&muLBtFb#IS=SOdP!ttAq%%RyPfS+4NaR* +!-&+W;^*FQ9Ax__IdP7E*3M$!yRvbATyg`=R!QqBeYu3+D%?qZ{5A-QqQ=I^`@6rYgsx&hW-o`vk6Cu +PBPrWtN{{|8V@0|XQR000O81DB*+({&9lI{^RyS_1$8CjbBdaA|NaUukZ1WpZv|Y%gSKb98cPVs&(BZ +*FrhUtei%X>?y-E^v93Qq5|^Fbux?DMWWz3tb+dhrwVw^fc%OI|e6FT2aStWoMypKP724j~Ge~Imq(& +qfe>XHE^O+mXi(0R-3FMADD_Zkh4B3v`3)kaxXMDW!YxA2V +T{*wzIwE4wu$8v|~mKYnfK`B*X4UIlx9*gF+;|ZPf-}|KkIZ+%A|?Wu&;1~Skgl# +Du{cx+rH!GgH4mF8-)*<@oJb(~0sS7+m_{o!HQ#O{|7Zl$hXwn7&k`)G#6ucvCh`Gh$6d_c{_XXvE%y +G+F$d0dNN;$OXEnjcV00|XQR000O81DB*+rmLR&)dBzjCIR}j4{1`_`O10B|O!4?cFhM||89ND51EwbcFa0}&80=6v($!v)ml@D!0;e8?oZ7G+CB4l35FPHA!QQJC``~g@of<@}juAfA~%>@<@Agb8`owzzEQ416!uJ3|2*aR!anCo +M;Kz7FkGq+9H@!SuvBTgWJB&q_01hQtxdU(_sO7gl@17YC86DP6J0Oy%UNaF5yA34r3y~jF>37Vd{f} +MjL~TlZPlfW-6@~L%%VM`!I`nF|vA@J!^JsgBJF}ZNZ`&`iolTqc$e3P68ACwN7C!jqsp)aLEI22jg7 +$Rxp`BMhP=7$ZNJ#AptR~mAA_bYT*RE;@G3&s2YJbf6u&zk{vz5dGkTnzsVlJKfShI3Q;8utky3Clg5 +0+rU4~*g~&s#8ur@ksGJ}(3?=v>+o73H>DZt`6O{}~JP#wESLGFG5L6G1)8SQ{r$~x4s8JxtmNs7~;i +_t8QMPlBP)@8`4vUZQs1=q;0ob8OGs}w+AU_=uR9M|xj~BT<`GsM}o$8IIWOo=<#Qi*~tOO5g0x2cH- +z(~{X~}{ub4PP%aF1?Kf9XKj3q#1P2}4HERU265K1juEPTi+nu(SlRaj}Qf?W2_$vDWLNH`vp>^ +(MCRkucs*Al-NWVESM+tBuv&(HsuF6g<>|QDVzaAa5beG_KcATB_v-!!P)h>@6aWAK2mk|@q+IqvH?o +`o005x_001Ze003}la4%nJZggdGZeeUMWNCABa%p09bZKvHb1!Lbb97;BY-MCFaCvo7!HU~35WVXw2A +{I9^#|lo+HS*kDJ-Szr6(a<<79{|sUvy8(2wufs_i7CI@x+}-n@CEjzbSxcS9Z+wFc^A;0(t5kWHrGl +TzKp$zvpcT=2JFKMwlo+u`Z^%j@$$MxJ5d4~Fo9$Y9))212vQmi&zXZskWUDVzXxK$$#;SKf}I33j?vh0mTM3_w4skfMq4jdN~= +$iLqyJnX|aQn#5BVhS(Du*bln4d_y{r({DIftvCK0aMtK%~zErEk5wl))qc7LIY2B`BQ)-lb^wO92|9>;Lb(DgeceRHm1 +h>KM3EQ(SB#SX!;&X1-=|>4m{RL1<0|XQR000O81DB*+U8tfCrv?B3;~4+|Bme*aaA|NaUukZ1WpZv| +Y%gSKb98cPVs&(BZ*Frhb7X0AbS`jt)mU3^+cp$__pcyS46p%LTOZmD1~P2xf-cxr6l;NDC<=j=jvY1 +w0yKTA-SYJ|`=f>}R=R)s9+mNEz^{N+86ofThD-@xew~8v(a=BQz@9K8HXMDfdX_d +0AYbcFCPPe7kyHFtLwgxMt4jn4^vsZt;I4_?5a{lz!i|5Z4R-$8FUNDYYoYwiaXLVHozxFCW=`YUtH4 +`mwfU7yBib*BdwzsitsRXb6;}%b7seXb+%R=nNCZuPXz-lw0rB6Z*liXB|J?^acP|i&h0Z1ja^};T??L@$zFQUrrwx)}wOB05 +nqrhM+g_B(<(6~cu54skmi+;p0Er$Yp+p*O5+^EO7|BnE(wY={bAXLwz9I17Ud6n(?b#yY|`$9r`BPLyn5M76^v|u;h4pnD?SKBxrk8>;&B#(udeFMT +JMBh~XSAF(%>Ws6TB?+gPp!2R0Xw*bW|-!IZYK4xa++kcf_6o8!zI>oM8dI@^$K+t$Nzc?soJVTCH_W +PEO}nr7+&`K_fD=?<9jx7e9-)i!k!u|*k$iXc>IArFAH@)9tyo#C1BO+tWcf`vFCfy7*))E1l|RKXbA +P3{=Zf;03*dC(;=K!)F=cZ*vT&sH-RPo(b8<;Y+Z8TJ;mtMWv`;86H9+vuFZ1;wRVa&xpFM$)Csa_7(jL44&Nt|AFNKhHbFh=de)VLo^o`9wfft0-vx=!Mn!NR^~6 +*vlDQ|r(_@REUy>vGaul7NQ(;DDDnCqtCe(?r=d{TUlr3>x3(<1#2)zN;B7Q+&TB4U-1{$YDrjZo`h* +uuLq?2cL+fq|;Cg-Zv9tmR^D~356Gw%gkihrPB)YpuKJ#IoUPON)+B4Ox!3f7OuAycI?J +YYj7PW$YMnFhHkchE`uB<|sKg?;IoS3z$N@gwRZ(GKf4egfLMQ}xsCK;g>tybf!4t+=O)L{l2Mi)1i0QIn+`v>xCT(I8^8PkEya5GJ* +eIz1@PrMeF*)vd@A!$bSOUZy}!pYL~_)Z=-7wC|VzH`paH?MSTsF@o%q3FR|*w~l$&uTgf+%v^%YD5E +;y6i1B7S#_x@7Ia{5dA5qPN&0%n4PGe|6zIp@^OY{meembk=?wd{6OG6zV&Ce!RQs^pwjmM84utG_65 +`Qa(FkGDK7zgF+MgCY-~r;{wgv5@_dkb^|t&4^~(`)GY=5`LMg+Z;1G@*{gJuk(N1}w*Y1HYqG2ke#g +>meF7NmC=%qYyG9t&2RZrBDC3)&C@^Pko3-DT>HShR)|*TgTXvSabU+jW>$uY=~DJ>vwYlPTJSh6BT-=`ZNZ1kow=l4qYKo!@H>sWg+mB!} +?1I5@m@|NElc@b04Io>)5XkMuuKO9KQH0000800Wn#TzadW!a4!~08|A403-ka0B~t=FJEbHbY*gGVQ +epCX>)XPX<~JBX>V?GFL!8VWo#~Rd3964j?*v@z2_@NJ*85~2UG&VE(KPg6@rykoGd4vv{oJ4*iKhLd +^}@&lP0CjDIU*zelu^Tb*2Nx+CKCS83Wl_;{tH4P2fQq?Tey~IbpC;@5lS6U*C7^{>$$E>%-&c*9!WyoPmJL_(4>HX=oI|A!=rmWAkUltB_v!hn<{n4Sn4Xl1*h|Z8p0Zh9vO!O`)5avZIs`@r-+%lqi&hB!DGyo@ +bX!?N>-BjIa-F!KndYLLo{jj;begt}7VvegwzoI#5+}V;sj* +wAjZx?8=77zS|=)vw3n70mPGa+iXReuKT +WUWtxg|yKCA`WOdziSywi-Iyuo}8U&5$Aqm)2$yO?r-AFUI?rYexsqCz>lWj2YlWJ=7y=rc5%KFCqZ0 +w}It*UaB?6Ou#M$_oulbyih`9R2z>+sfjy-&V4Dl3&#Ad_Y>%I5=9mCV|Fld8PgSz=$%*aZ$vt*jXxSgI5tV^*D)y9*w9Xi?vll|5LSl}e`TrcD +)SL9eD3(t>1NRucH`M54i&bA%g|-|gC#bNXA4{XT$&Ktj(%39bYY^}>1z|R#_+Dm(Y +!yromGeqOXQ7>fk_Lgaz}ATYy7BwM`yCod^jP9xmyG~CjLYa1OI0@(T4#O{h +vlgWUbImWxF!nkYLSPEoTdB{07Jy_PyT7{FbCZ6YKO65n?dpHVHP(FhB`e@V822;sTVVVvK>{b~htsX +fTxcG33XOTB^*U1<{~H2?G}^?y{;Z%(GK`7E0WJat5n}aaO2!v&cV96pQGG`nGQNbu>R2!APqC{f(ra +XyFYf`|@i!H4B6^>g0WQhHf*8!v~<{Rhd%+aduZ1$qsyDqKJmc-K($ug(Vm?cuN@Rxsy;<4?Z>7@1b% +GC00{Y%Nay5-KHt#foi?KygVN%)ehr@u|OJt)^34$W4E*LT+k8eyZ|>167l}+*KdsAqfBa37L(n0L_p +P(1r$$ZMH9eViM)eo4sA5qx)2*QlmzHEh`1PwxUs_Eg{vly1^TgAz>e)97V9><+2Xoo5Db$415xRa(p +Gl0X~u2Ao_>xtUAIGh!2c@x;>n4X4dSlW6Qn5Yqd7(@hTwtn6(|WXw1uLQZ+YGS +i}(byqk!V9G#PSqi(ScCe3&?tuY$K-LJwatL)WEJ*O+>pji2!b`5BnFN~{vjI-e)gpr=qH{%3}|N<8I +tBv?27@PXM~R#L@U!v{a@<|2a`!5SN+W_`bKsgGIs|dsCcfTcrq}i&8O8CJ)*@0x3xdC&s=^EeGV$nu +8S4|O-1rkQ`Vt_!_U=dgqHp~clB$QqI3L<_<8vgVhAklHd!|S(CtC>1SG?t(&Bf +&!^{OtH`vmu0@DS5sE`0O!VClya6MeVk%t#|bPCuzSgx}G@Z+8M=c|_jl)Q)ZW&i-RdXE%HzykJ4tPU +VYoyL|+DZj|JLDeF3K>Y^*48`d1^}#1tEH)5Z-JzNSA}gTC8n$bOXXq7fx6STPLFAV&=>Q<9XoTzLl; +Fiw)&cSvLvfr<@g_H#XBaf>F)yNXkYa8!1 +wI#~w%GO<;K6_xd!IHv?hcZFkj +GMMrXfNz@?^Eb548Os*PFq{&O49gF@>kX0&?hM4!oZk809Yt;>KcSdN5hvokmBY+>u}nii34yqVf-E2_EW`X&{7_ +dIR_xIwt6mNRQ*c=b@t}bqYJ2NfG5ZkNMl-4_w;WB9lfp2~;tZ%5G^TShVm-}I&tn&s#9^OvFo$3EB?bU^rW +5tp;Ce}eF>`{sD*k&2_)r(}UQeB>f3{mv?6wfi>L+lvwA-p_s$pgf3PC5||0{%Zy%0%~XvIMznX)$q?! +dBCOW16US(V+Jz__1bPW}y;Pq3pl3}FjODJZ2};r4<`t2peT8FNU07MyE{8q^DgYTj3!nBB?)m>Y;ar +lf2hi=J&U`T!p?=i*41ACb=dbwZYqi|?{Z$sb){Phb9O+cdn&(th7UcnY>MH~6GX{z?3heifvRngv4% +z(+vx0W1;+6Ty3U;LZxB&xg3A2B#x}Fogjq{t=Q)8UnM!)G22g-y?_fPZL5jc!N~_^{7aaz>-uEmg?9 +c2htvhDv5BA{DFiK1Yso+75q@j3LPZMZw|4#kQF(9@^c7R8xb`SmQfXvN&7FA5}%Yfc_}5OA4}>PCg| +arKxT8t6^t@4BSk-iYuNST2quzO*Yl9?)QVctp%e0~xWNpkv%N`damkY??q8{aH8&qb2_jD!JYbUJ!p +Tad?lvx|uz<*LvvC%pV4bw4y!{Plj{0tW`k#>pEm=!h1XO}B2NuYgS!cwR%)C7=4Xq#;PR%$$vm>yXn +ME-xix9S>c_I&Z-hV`6Ep9WO$%IDGODYkVjh5z1;Kq;BenfYV=Ae1D$vXoaev!2<;jtg`)y(SD_i_j3 +ne+m4OB<8U;JBpiSQc!6{8V8>b#nct1%)D(V+*p}mS2!lGAn5KhCGbnk-wa3fu`I>o@Ku&^9>DA32F} +t>tfzu?S#d{6b@ZE(L^!73WiImE*=UjhT-l5AGK+EpzTWPWH%A#2MF8Aq6unD@{GseQ2a@IV;BcyAtx +1+V9EQ8jKQQ0T7a)Ksr;yy6)4NXi-V1{yIE6I!mtVC73IT^bzq4f>cG#Dqnk_%DD(-Uo`I6P%LVh$p1 +TJeblgh0;~0QTsi+|0{r7L*kyX#g6;T2Q88_<|Q$kz!7m$`idcAT!AP$5aT+QL##2MyBid@a**!m0}gxS@uTLCL(Y+N^a7CwiW9?5b&y*7KxZBg^%9MFJbrSdCg5foWR~WOd +xTMi1r#&}#)Mdohisk3m1ROYdom?{f4qU`pFL0#)?$Q$*d^TFjGh6fU(K&xUYnxfYg;h%@4S$UC>jzQ +QwPRkV86q#elJ(#-?im;7i^G+Q1VAg+U$1Ec-L*%@M~skm!OZiaBXw`ofqYUryyejY=sBd(k@D#6xuQYu +(D^Dbp^v&zx$naGL)>+EHPYNQ}6*pT4^is+ydtM#x7n^8n9?9qVt-g+?BB^Jh&r1rS)nGg)(iKSx3@+ +=x8J}7EmfrUMbJb;(qz4;DvPL46?GHA^G5gqN-Wlp6-?6PRiK?HgJ_FVk=zg~HO_@lZ*<>F?0E6b;M& +>+#*t|s6BakIAI#7^FW-q6iHN%zG0dwcV$k-u9UrUWAYI<_Wh^xEyum}vHvAYv@2PRsqxQbiN_P)atHTgoj8e0eVG +)1BgOkE8XefI#7qM@1!I+qmkjK?2n#_&r3vbfN1GPpbS+R=e?EVz`q +ux|idx%)xPrHmYh)c>FxJIlEzWbt18?EdQqLO%bp1UCO6GAl8LCPMed)f&M~=6 +2U&ASeWy>LVr;;@?`?=8?-7c_N6rwkXaO1&4chsf-dz{6k`i=|WxyEMv0GARTE*ap*S4g_Kf)P3O2PnkVx5GK)&2Mptu$b0prMC6L_rv5-(Zw9Atww>UW_aGodEVN +X*S)=-mnT0-^^slu`d}sj+3kTkfO5sY5TP2FFXOgGRUPGZ5f_FG;CVC3Cz21-9^}tjDY6{SJ0XArW1A +zAQv-6tW$e=`(fd|9Hq&qICt5pmiOqjT1yPF{urbW_Ph#Tq#Qzr_de&} +&HNNvV*^qi$V|BfF2ln2)Rru!Z|NQXHxMxos9N)-ZN52=J`Tf!_(fBD|KqL=t-b7CF4H(ARSU%#h;?G +C$@E)VzpWzlzVmj1jI9PZ6(1 +2vu8KY9#6BfTB*0H9gRjOC+nu(W{bso-|ZWp=I-dD +@6t~afIPE9&GB%%d)!EKO4nOFYC=lEvccrxLE4;A4B!xVk3p1#fE?VSiz6!$waWQD|h+gjjC34lkbY<>*CS@+3wV`T$ie82MXt1a +cO#ZUR(|pg~{2NvQO(~TWrc-)aq%mRnu%)RCQG@>CvKsM?;X_K&N0J26fdNsJHqXKb>ZauZmX5uMYsT +E1FhiMay3n^43LFS-~U$GIRBIsR*&HKLKB`kR<<+8H);lxU=k)A3J{qhk{9v(b)Vj5m?LwZ|PTmY2nVgI4+Z_!@l-c*_N$g*BAS8vszTD+tkbc8WB@nUa95lMZA{T4b*dr**`9?pPJncO95crD0Xk9*4cv5k6a;~1LoiOW=5QXd93UKFfHqPmg>MuE>~VwH3$;{% +vp8;@&NSwQL$-(YfrM%`}BzC2c;4G{|5z9(xs@3N^ +)_dwVp^yY4JeTex<54M&f)K)YC(=3f713DkTPIb3)5R`j3?wXsK0amsP2a)siq8yvznlSR9#MCR{B6j +Znu*D|yjb#T%yvk*df3Ba{p7NT?SL$Ma>33-K7|}+Yfoo?0?y~X6%_M{EQ;7QGb~OFKA#Kb$aC#4v>| +k=8fz<3Hbe2L3V0n~}@_*E2HQpAxF|6~chqB4UtEK^`$;T_|;0XX;)U6sv?+IhLtTPP?md>hN)4tke2 +4gL^3IqzsOW-URRr=*&#HJDKBij8m%pr)4ocL4JOCU64LnP}0w$+$Mi1Nd64-w7a;Ex-4Jm?9JNk)0z +>|u~6r0NhW#+_=6s#ksne7oxwq1Fe<8i};sQI +6aIw$=WCkd?yh@Y_Ff~*ZSae;i7NA}(Ht8|z5}>UjpcW_HFXf{24EbpRl7F}pwL1_Ih%F)!C@zMuNHw +5`1u6?&x!iAxCKCi(W=mgSL|T17QQy$K+o|LIZcQuW +RJvWwqSwSD=km8OSE}^+M(gcJTrv5ZMo4_t+M%Rn~$gpQ!>+2MXjy0JWfy!+rq60STow+p7Q)aUb{qR +HY`=D$mZZV3UPa23uLNhqnT%yDC8c2JWmkx(fvjL-*9%-KJcY*k9V2uzAGR66ESBG+9EIuGD6y0qsR%}@}K>txlM +*Ed{Y83u$Znge4mGvLzJG=Jj=7;ss_tgM}BBxqqWo_y$Ogsdwx~#H!CEr0%pAPcqEB?cQ4ASXm0LiQ1 +xzG@0+Ef?-w<^1QIN}s0-mdLPz+K-tW&0+K?+u$-K&#em`g8e@MiVT){vOVng1 +z;sqwaaok0YtZvuD{KKl{R$$TV39+-CYPMx32G9#-_ey5qB`fbyZ;qGMfjb*<&+Ca`r4JLtwOgDJgVQ$8zGj +}@dXS(oVi8d<6P)7l8kfs7tE!SEggrPFAKTI +m--ZOv8Yn!g0^eY4Qq=LbRA2(?f?dKRF?Wvx)${drwtC=BV1l!&$f1;vO3U(mefZWL2PmD +zl}_>c*|xkqaGCCu?JFdp=`P6ZK!#e#Z?NHm1-KD#)m#W9fHvT2*Hzh0|UseOeecDwWNnZfnQPvc)UF=D`+-9k6%(*_7Sja=b?C8 +r1hea#<{wSzP8pc?YnN)^7Yb1R@qG3?8>>Yo3uVquW*RWwM^oHU04&R_ctNZ7c^b5Z2OqsX#m9JpC5T +|aH79^JrevgxSGrWkE +S{EK5lc}cJrtjjA{7#z=b_~}H9Voj_2?<=v`-yfvqD`(|$0HxVGY!0FeZVnxrzwFUj+=djUZ{+$i +P`C?m{W0w2ZUU^aA;D}!1~4%5L;v+8z43-LNGp!YhD+)lRYHOlBLyCvK9aqP^T@{_!nxx^lEj|ii=u( +N0j9bxaY3{52T&5%1S2D8Wn!h&PZK7J=MbTDGA4?fG1W#$gI#h;NXq4)UsPn0#a;~<+@i07XgiIA6iD +zq7(LJ7II{I=@96 +~2kP;2a1`(1W%BUTFlSifGd?8U2UnqBNs+*iz4v(NwSv(LO0F=89n0ZHwn1Hy+dr7_447ScXQKy$}{T +^D}U=NUuqd{aQX+GdWc$tVpmRTzaJ-jx%QMCfZdrf&|)z7uDHmNay?e-+lWj1^-{dq8+3o*zL%Y{v4$ +8wpkG!>@dMG2>!+3sMRwPA|RUwkfE=D%UU!@j1{ +1sRTy^81;mM?5mjV>cQ+PX8mzwmkt#<1o-IPG{SVO(CQ51QIMH#JYf6(k_zb +4_a*60)heWPG7s?rvH^oNn-PsBKlK=SKiSU^n?0c{ED*nVe*21Uw7Ge#7yTGHou$XI`++Om;ppZFnUv +c1S!Nw0a2lZ?Kh`4>#8)Ms1nQ8s3(F~-}WW(g?_*cC2Lw+kmO0W3gusOkl5RH{Y$^$QlfKxgOpbAk>M>!~IfR<=1jceihLz$!# +ju8{vqDFcWeESA7+5&CEJ3_&;!6L%FlQ-`d1ZeLNjcqmSgd;k+j+|}Q+cX${>|FBwM$z>P9LdHD%bN( +-|WVwC+be`RFz=fK#GxogL?Nqh0827h9bl{ZLUIkKhFcS$Nn$DeG**@@gL%z=xxRbcozmBw=_R{2q_y +)??0Pe>hIpW^gH`|mBFKtC_Ce5tvWLqEY=ZL6&VesEuSI=kJ8${V +LRI#Y|fmJdl??lTiILqRPQ+XpEb5z(ILop{Z{KPo`Gx`V4p*CMen;Lls4MDHGQv>-L{##toeCrCYL@X +jZ5;qKA$f}BgO4Z5)wU8hHe2xzK0c_JZ6Wb_Z@vqQqz3)`e(s=R;ZG2bt$`6poqY$p}`~VdEpZ7R-I5 +HG`iZ?~M!J~S9U=4ceJwRv$USc^99!6l-%Y<0?Nvh{PeKNDWOQ$m3-ttxaVX0La1Rc4s`0!E2yi`h5E&d%*^2uwC2tU(O+) +bqas@e0#Z|fp$8bGE%ZTL(pEFJkC|%*!NW+#6w+5Uscpwmt$oueD1JzI1YIsJC;NpP@bnu7gPOq1APN +-pa2m*%^(czzn}9O!A3}5?aW_ru62@wG&3;KXc{;m>4%~f3vLaWHq5++0cu?8sOo5DET~hN9!YiitS6 +&xbiF{?x1ozmqUQG}m+NEfgVaf>FMxE3X?)K2%FkNed>lJk4s8ECV&v>S|P#Ev$B7f}JO3g^qfb8peu +c0qCC);>{I1<2*0|-?}-~+y-?DB$nT4;4nL +DitzmSJj7B^UR0~OU?q6#O#{W%I=`c`{UNx1$>f?2%S3@a-UCOue_kS{5WVD7*UAo*(gwj07};>;pnw +CYphygKG1Ex^7^{fvWZ&G$W>AntlbZU2F3h@s0}3Hy>l`OS3I@*P!ptOgBoBs6h4ID0Rn+F$yMVJ^&a +!g#mc^pg+o>KYMg^+|g_0Tal~6eJ9@W{z{s(;#xTj=M!;M^}`CWE?Lr-_mA(CFJ=;-#q=yTaEtu +bWr&d8vOUIHgNA=U&7dQ5Q8M(0Cg@iQ>b0RS_Z0|sJA=P6rI-ijXr%*ToHXA3B2L;-M0A0e-Tr>6} +NwGVb!Ks4iW`!L~Y*VgZ?LSMPd}F401(1Pi^xsuac-NOh=_)z{S&p#ptntES#*XGuqqbzL)dHkKrBaM +^XvLa0x@j=?1qXf*ZBBYO0Uq9=A!Y%f-Ttyv;Efy|M46nmjRympb6OSl%PaO +5((l&TFQ8ACq#8G}0+~PEwUUcILrnT>Q_``K9d6)wxVce*bJXd>xo65HPbwNoXlHR^LLQ;4NQ?lOibC +;Y8aZ~g!p9bD=;p+6hFfN^0gl!>VrUI(B!q>Ybqz%;koribfuwmosk@R!gRH97$i)2$Jl~~0erPF|*d +sFg>w+g6;nGZ4Z-qt1bCBiGI4K#kq>JWUHYZ&3@I#=C!`A>xoq~)`J_^Es9$c&eL<=X?5=I}8cbOYO^ +eH#W=P|niQJj>6Ucj;_l;DP%ZH=;FHebMP?$%G#m4Tp3oK=vrbwF?tSERU?0~Uc(ancW3J?@#w&vOCJ +(4aqW%7PD7=(zd?N55{-yOa?2U9SE`E|HS@oK5SF##c|SVHwZ?OcPrn9dU3|TmbFr;7f--p4P~m%8r0 +&s$e5O9pL34>`i@HE=iOjoIP>A3+dB4Y=pt!rn5^G%Ts;-pe?EIK?Fjs|0V;rKb|>eilXnmJ#Py+eXaQ=o*HI(Oq0KK +d|E@;DIabx`*-9fLNg)Afg~S!_;+^u1*LLjh-U8tHH7xu&FjiEvNCTbQgb-QD%*ogO5k?7dcf3dg1)$ +Bs<;0ErX@*|jgSdju0mEKXKq9v6#(ToZPPcyKAAyXTcMbZZW8m?ysOM8|M&Z3glb6NIx!Y)>&N!>9j7jLQZQ%5MI2hW+wIMBAkQJi?{_+AiH>{vANnG>!P +A#gXL1z#;mZ86bw7c?T^J*eORU*~x)wcK0sv9JAdqjn5MZ*1&ROIY>rZ;ut`Amq%jr@0 +62IShz-J3b_&2LOE-c4m6K)xX)~^!o8bygbx4I5!&eRigSUGdXDl_o}prpniK;(jgmRo`9sNIjzn`T3 +2E`$Ensy`17>V<}XaIpL74Gw^+rm>jh01mo7>8xEY!RGOZgs0spp21av-A0XqN9LgYp~E2x%NRr&K?N +w{52K0WwOFf_<1N~Ahd(T>iqAw4+75fM!d><8zAGkWMQ9`E3wGY2L|?JUSnYl{8qq(pu;*_oe5w$E*0 +CWrI0&XSQpeU*O~X^=RYM!Q#Q(lnrjEeOn@0vbBGP;5UJr-^v#Cme@kfU!TH^;o`o?D(a+JqD2ulA?C& +D>^bMLG&cd?a-bIjl(C)8V$dlAH(*X3@9DepMZU2u%W0cW!@NhC)0qpafa=!$@pWGO9M?-N%+Iq9+j5e6}C3K?ov^C3gZn=yDuDs)-4~ylMiIU`8JNQc*OA>KYh9tdkvsJmIMy5kT5cc5R +`v8)^{c2D?+n{q>1pPp$&(wEqzw|f$gs5Q)Nas!%FaOVzAbxn@*pUK6kZOIFOtSu~V$Ocm4xW(o@Z&~ +%`4P0yt{V;T+&f@nH&e&*LCFmKoh*fxXfOLe8&q~E#T>GyWQIAPZPW)d%<1pHNoZG}yxJ!(1m*)b@+q +LA`~xDP!m7QIQAb381p}D}zvE=pmIKWFpVNLs&b?oOj^}XQXk_k7znZ`EM-~0o#~y|DKpZ+0jh~2$=h +2gBHvWRDoNBro!*xCE*pO?N_GaNkCIqfN@b0Y{7P@n9Mh|d*dcDgxq$&3iyze@3(JejhIkJzD;{Ng7+92&R<(bovOeD=-e_(nX`+4_Agz=O9p7B~i7gtornxoauTV^{7L1ge)5 +n|+JkldBpOPTQWoI4Kwq3es2PCgAHm4mYmh*G+j@R)HDtrc{{H#JTlj{D}eIyLy%YvEDA0@NgJGAgM` +DI8zbs0QxX8*$O~M&&IfQYT=K=bN*1(+4JX595__JT$1cN$tYj9WWS=MaO|9?Ze`2Qtn8K>DyO{KLK8#&16;gv9DbQ%EEr?@&IOU`X6c}QUfF$s{DKTByVfy5bw_%Q;gAH(q_-`LT7 +)#L@Fw2@1wCJIugh7-39(0c4mk!)fw(@~c;-*Lj~!rlb&yh+Ki-&8DidOf_=5d^=5x&JdI8n$!!e@HG +(NKwPmX<(}R4Rh?^Cl)7rs55=Sfm}3J*5L#wpr4xE8>iu=rB(Vla}QNI+%Y-$FVV~yBu +)Fh^%R59yrUKqm!<$Fbjm*lv`NZWZ7Nq$&urlp4>hFs1{pU;1^0oFxBY@7_O?=@dHAx;Aj8A43ay2 +V*;Lym&8BZe;%cG9!t!h^SMm|)|YxHIH@(nx`{$0tGRy)L0o~oKIY8l@-v@Ny3=G0SRd~Bf4mMda=OQ +w&GFMI+Hu|}x@DC_SZni1H|aR7%Px14^SJ)}v@ym{1+U!-1`oNP%>I~ZOys8wBdi`_Q{{H6R_I6F+~^ +ohc2{AdN;C*3@>B+J$f%l1Op0k4bt)g+qvy=^2R +)8oL(m^xsiR)_m&Q-YsWGP^gjj3P|}>h$t~nu3WJ|>lU=)YjFcQ#Vyv2$gFJx7^a*=?r;3wKFXLQ)=} +zFNyfX>PUqQj1&Uu!Y!?&F30)3d2`P&+Z&@M)yg>F1(;MMVt<{GvZc&}4rn=1Iih31g8PfD5qQ;NE;Q +d@@1>koEmeZ;M2dCE6k?6%6XjEB=4BZ<$~c(MqO7v^-gV3CNA)~SX=?wMXXcF^;ol@{mBqLJW2a{5`K +>9B-tmAkmSD#|LS&X=;+`rT#p>T&>#@}h|$|WC6dD;Bh^A>mEu@EIt)`}KmPC}0?~WR3w1IQnsReOWPt^G?|V7p<726O+J +}In@IYZw-Ccc_!rtUCaGUPviM{WEHyqL6?d=}a?8J*`(!sX{$30Y%?!_c5Ap4XXn0T1e^MO{6UOx@ja +eSKe$PL8Ubgivh#m3O%(~N(1j)c|&RQGpqxC1s24GI^$I)89%j{LQm-d>(+noD=-OZCYo$$%2%)!J8#bF?3zf>H +Qd~u)+M^cV={FHu_c048cqbF()^3RZ#hw@q7dVv`Tx583%-Be;gdC%b__kfM-%V9^?7r{>xb^~M9tA2xQ9mVK+oRpD6ShGP91I3=?rlM>Ce=Lb{GgY%| +W_%u%%kZ+cx{UZ26X9DE_qW`0fE9QCzoTe|)gPXxp2|CWE@4V_gPozKdfP#*%xde05|*vGt^E5 +Q?G+nouk-9$A%?@^nw$Nx+Du5y{a(Q8){V8Ld<|rvoz1DQAy*7TVbEEatwAMGvWOwP6=-yW*l#X~}Np +sUv^*F*)tcr7_t8H!_|1#!u91YLWXtZ-GKuwCXP|Zu)JPQ4@l6w|0E38hPo&#jf`UTI{6lIi}{c#Yji +vgw76CxCXl1VH%dy&}k}9!WLm&1pyh{@SVJdPfi3T2@iJ+q)QZR6?w%jFi3|s$F|BaTpioPnB<{X) +J0HKrEjxM`@xC-)57I~Xn(CoHwVX9SCtQ$+0Dbmba!)Vq0Q1)?lI12R +!e0{Son$nvBM~!h%ks@&JYWM%Z(L?`WeLQ2*o>xdmxWC@t7a_|$G}LI%m|7KFH3e{osaTR_Mj#z*$i +yhS%~NB|RE9Dtrw5~x|mf|mv=X=eUC9JT`wvM;5|{ZGG?KHfLiu7eaJB}aHeq1xi12ZIF+`PA>d3pT< +5ogeNPXWY;^5Uozqnmov^6t-dw+1xQ)DfC=Y#sz}L3B`1_F&N7wrr%>a#a`nzndq>x*&+vsAe?`uvVYeTf5OY~nR^#KE<3$wwxH2d@+ +qbZKAVn`JaQ#e-axU=GaXVO(CX!K-{_O4YbvAKKkK+S9gta}c2^M}D?4M1_2xq0v3;o%_YCJhG+olVU +etBOyr_v3jyPp~$)+~{-^#4G80x!jVG;I1LQn3XT-POE@aQ@pV}u}j`2BLj)@ordPz +cFpNv-uYljreuaNd>iqRj3GRP17z|Hl}9f{vCN{RmmXT>3?s49gB70UAm^51D0OLrXPwT_c8)9I^Zec ++&X8Ex`f4Y+KpqLpu?JyfFviFER|tB}QM1q}Tk!mY*I@Rkq*@zDLKh~lvc?}nWnMRC>_P6k8af1L4|3 +6t`rlAX0|XQR000O81DB*+-@w(y>IVP-zaans9smFUaA|NaUukZ1WpZv|Y%ghUWMz0Sb8mHWV`XzLaC +z+++iu%7^xa=UxEN{|wzg+)E>>*I79bmjHr*ZqLs2B!=0b}CN$0Z5zwewwNfag8O`5jDh6P1oljnXv^ +jfPOOVjni5<816*tX+GNUz8%axQoC)|cy!PnVd+Ct=Z +0Fz`_c>{N9xz4U6cR)ZL_%(OmWKz6iZaJ6XO`esi6gk}f&QpI}W!mu6AfFN;yi1-USJhMv2C|oHeSEJD=mzgnS( +l=_abG{%Ke_d%+ac%GE8$>ii2TTl?>nWSRBzX2G`$?5G0{)H1NF5@RV8iIVUq#s@hA6?kfdG=;_;%Akc_* +EVGoW2F{p;Q0OvkKd+&LK&$~@Q9|cS3~|sCZ~dv47XN^B?T?z#gwPWL4Io87WC6HG?4UQ3tg4_V63PH +0S0yC$zP5Jr_l#lhW4pbvY@0#eXN=k+qi)7PPilC~H#?81uz1~K0>Ze!ZlO_Zk&6*f<|uW+n#^@)9-x +BeLya15G!2yOHSDXk;qW7-UqFW6<-D@d&OYQ972>EMVe3C8$WWMI0EzRBJLqsCUi1ZBMg4y``ObC2Y} +nlnww5;Ky%G?z7yt(tEh6gl(tPSwu8VLqybsD6F^(5FR;@mT>=B_3GzT|lO#H|(Z5suR6^0J$rYJad$ +ji(5d@agiPW^TH6&8}YRdW#R<>h7KggV~}1EZR{cJl`Y7z8a-GTLoL1bgoJW?T}g;41^P=Z2;0}Mi3z<{o^`3eB}9p3c;>xy~0h +LPp%>oeGRnb}vBgmOE>OrQbj3dbW?%N9Tz;1Y-7vcjVO)Xctf>D45nIdKKCxcyg)CCHr8@UX7~F8`>Fh!;+TT_l;l>A4Lw;8QGA`r`ddqFtthH48vF6Cd0viOK}k}E9{m!xT1^^DO&7SMo#Klb9!cVm +v?d?EAGV0WUP?dBxC>_;2`rnF1a>}c&8@K8$(V-Nv19v+T)&`!w#PD{*5T6m?WiXTv2;Heb+kJ~wlNF +s6sDILJF@{;UlH(cd{(2f=bxG9h$A+o(!5x(aR}%JZZ7bZ63mLdyxo6E3n*GL%dgSq_1j9$48+ZjC!U +nIulw;Uxy^J5Bqku-j19feB!`P1{D0ai*{lh@BIJH%>c-kKGDHQ+#nNaQI}G1!!+ctXUqevLon^C=%_ +0f493D+)5wkT0alf9p&Nb?1gE07f-g`KQ`%ZR;JAG@X*h^Xf`UG=1lhuz3k*iJ_S$4mKpxzXb$BkBxX +tV#2iagPwp(atMIu!%2(pJ%PtJk@|-+zb@|G05W9Kt%#A{?nqt`wDREuzO#xPy=W)pOh#U2018;4&J> +@6aWAK2mk|@q+C56<9nwN0071|001KZ003}la4%nJZggdGZeeUMY;R*>bZKvHb1z?CX>Mt +BUtcb8dCeO8bKAE0cl{L@-Cm`hOvOo>w!XSsUTu7JQeT`b?PWfSk{}5+MQ8+RNA3E*?|T3sNKvxWb+` +EvTf*bR_kIEMLa#)U%&W30WReKATI-?|X`bscEtSqquV=^RRX#1X&Wsz#^kSj%h5M@g#5ygPnVPt-W@ +CbnQ=QM%qSu?_$!oQa6P1^;$kQxd>6y$-Y^F=Ok`9%Nr!Stre4hO9{O60IxS*-7y;Z4T>r}7caJTi{> +8ocyzPs4Hd?we0oD!XGj~kM+-P^8JQC4Xt^J}-OsPY_GkyQCi7D+vC$&B5)q-Fq5Oj6@1?e_%yyuEn- +I(hmSs7{`pz8=!pLYB!Y{Y4kaO6BnTS{4Ryt|v_~O#tt?`oLq#B-(sP=0&=aH@djuQKL$ktkdaLx{!v +4Dg*f9_^>zV^^zpbGSGq(@t$U*CNdH4iSWdU%I%5mQ3M%|bs!#2ud}oSWoZn7F1ChPCmJK3WH;I%&kc +G4Vc@dY>!H%h0w}cF8w0E}8tW%X4(v)2U_>uDKYRS#I24gZd!~R^5h1p?Z6 +@a+RR? +S8U>_4BmK${{K!O3~D|74w>^6z7|AiLez=pe9wR3nQj!E;PuYP%{Zf0S+@cRVWoP*$5-c61c)hlFoRj +$@%Gd6B}U4n*z`riSN?PNZRw7tO=A~s9Y?|a&3-BqlGG$)da0`wBD@K5#T&h##GXbj_y5r_$5L@7;~PE@AK%}@Xlg83^ZQUGQ!mxI+-1z-(sYa?{dh=57Pj@3LM!N=t!gMJ`OrVeDdO&>@W=^K +zjv?<>qW^k8t0nW1}IA-X9IJI5|BtpJKWa+Oe+lW$&^jfQ#2wl=mTA)|4rg}icTVJ7o4H}lnTvv-F$T +6icWMD2r72m2|UniR6T+45p~)Va0+pi=`2PDcQH44d3y2k@tdbFlC$T3 +e|{F2__OCv-hSVM&?0YJ`R?)SSEsMOcb1%KePxnNUCCs!*2%+%Up>0lX~`0JX>?YR*g%%B`jA$O8hv6ZWn<>{-7H;>QG5{{ +)8d|+8@YBR5L^?^LM^T)uH)~@%FUld)wcMdSRBpC9;RIW?$gWNnX3SHEIt<}{I!VYvCcp{=taD=>dhX +@KeOF+-T#g`BbW^SVk7k!Qq$H0zh`5rvp5FPhrOI$U1yu3{aC|5N4r1tKk2rbHfugR*xI4KqqK22r6w +RvLm0R*VkG9~34B4IJS#G!18wgd*L1@n>{Aqxq@Z7Pn7-Q$( +d?e>r7Lm9aD==2-9Gu5Zx)G-o+zc2Jm|!V +E|5ITPJ#<{-kocz=k!39`>wB49Aw})gZW5{c7^Q9-;nn59!@}rDhxMa?fhbAOKdS+QyGU;)Co0Wts?{ +OCXEZO;*$nu8qw#~{U~jd>#D5+~BftjZYAIJy2S16AOlGF1Y1XyoV>EUr(QTz2j{&KeIXxZ|8ayOFNS +Ba~$5u=2=Ff23y?gh+I6CA=aENa1&~oDt2|zx^bOr$BMXcO*5rMO8BycSZ8mCh>v0h7>0Z%{-0;HVP5 +U@UIPg&(q>13O~4#W)dCh^Y-TrU_O#Aqkl43aLR#SJ7|g@namQa1H;=nynL`2|DT4J3LTzc+#deO06` +C}N5WYcLA_5&H`{(b|EZ+_Gmb*@aVC3ey!jOS`=v&i4lcw<4Y^pjQ1V6HG%Ouk1H`XKmfMHsCh;%6as +gHYmMi3`Gv+MazCmB?iA+F*F7#t?lB)Gm +ARaGdgbIH0bm?$$>jEcl9wNx=&AlCyl!b?g~Xa0SZQ@y|3sLhnD*w8Eqefj*^?PJV(-=fvgD1!8C(&9Pmm>`^w*@wx5V%2Sn)Ju8axT(m512V18 +bP>b2ieXqJYVjjJ}V&fJ{Inao81cZ60-37UU^#j;Z?~BJr!?Xo&I!)(5*UH^?9LhB-Ers!Qgz341s-H +FURA&1g)_E1ZLl8LDsJ!aM-rcSUq4Wjy`mnRWtC#zyZ)4Rfq@i(LG>eCL!T*{!J~w>LjU_Excl%m=h~ +TFQGJecj!6{2VXxp`r6{pXwy8XJKG8sEG#-Q8pxA1DFDQikoSV^zs=8|(4x#8@^_k +e^~;K6N)3(5$T)2ujg>g#NF>^hI}IeCy=-n554AL6Oh(ji?Y-(Xv2P+}!jkpb_bJ2ftjzBpo*L*`?EX +4n|8@9)&XK{7uzwI3sFV{uNJ2YjcHMRg&l>NlU7Z|eXN{Ui70bPPZmGhVv&3^R=TTQU6Ux60h1!;@Gr +tO*_p;2m+xx3Gx0YVP^_2f15&3h>DQ0;3#m+wI!A#7ajI~Up_1ejFH4<*ax^SbAGOt^u +>=x83te3_el|02DBS^UG3h1TWHNsiE+(=9Dqr$uRef0cy!xK5)jw#T-4Nz)WNPsFE1IEbij4I+wLgD$ +;ED{-8Csg1#?(DpW;JRqwNr^H|1G{Nqcd#PcR{^PCVZ8^QUU#B^DN23(m@RMqRnNwx_>R`X`Sd +8e!P-lYEq<3sR*5is17Tn<|rvAm%^CKa-vW;8->7LYSnhD +qF5OOQ4gMpjxsp7JMw;$BTXt8ZftI{&B@FfE0BSNxn&&w0_$#O(3Hit`_lFEiuPP^*&+UN!pLkd>b +_gsqv3wl?V_){QC*#cKpAXbf)q8>Qy3Tq@Z24QmmTb5AyC`O^>3RDue)z-jjVTfWd7Zw)Lu#KZ3gb)b +tmq(^Zf~`v%4mM^Bc``_Zk74iFo_OHbEVJ?&VQ_6hIqQrr@4uC>k7%{UMpL(2THGNob`$yJ{p=9z-Jn +W7|etg7bjh>6LqEFvaH*nCCR*o1tg4R}}l>42q~v`UWOXDGEA3F3jN5uE#_D!JeF?H1Cg&A6%l9_Mt} +PS18mU-rfYj`ab$VIVZjqM>`S{3z^^&*sXQ_Eok3}2S`Q;;Ql3B{tkrtd#_*s)}CvreQLW?B)6+>vx8 +SR8*SgaogbmTv>ILkFl2&j?@>SB-&fYR|Hub=95A8wC3hzgi$d^*2u_feTB|gtwsM@r9$QgaD}e}7miz{3_ZdFtAXF_a(zQr7+n=ps$U=xM +KJ|8XM9UR0tl1XLSg#@B+Xia?GQCZctO*8NmqB&<}9SaG|u`LE~*1?o&CbF0vb&+JsEv9y?^xe!=u?O +osZ7cWK=gC)|-Q~qc6WYJcIeB{4D@rx}vInt3!{K!6ib6@w +VOat@V6sFw_i1`Au-zSeZWbcBHDQw&Sx2xYHSGU_2S8Whm{Sg4g8$dhB!TU!`V5465hcBRv=F^K*8K2}GG+uzY&a%BBTd~gB3) +p0<&Er4awb|3`^E6vL+ufaZQzuwKcP9x`mJmNk>stM*G~e_C#>IC?VaaH#!wOZ3(?Vk>6Dpv}rcmblA6!HcG +A(dbBh27~8vK_iQz*jDS^0YGabh8U&+2xiT@X^wKID~*C-KEBtj~?AWYQh=}TU@4e3p+9=btBgOEMO# +2d242{#}Lo8@s?|BONp$)o1@Wue~fQ?{DleRj1vgFv2PbP-Gsea+U*g#?irf<>$`@=MMB*o4O*i?OSI +YV95mjv5ZS(6UcaE`YgMSQ_jIGf)y|y$qjqp7z^!|qM%NVJ42I1{Dqb2fyQ1Jlcwns!<_-391KHZ*g< +ad-nvWvBnBV{xb7o;WUJll8iHHgQk$9haS6%m2Q4|Fs!o9}^wdBGB(t^k5Zw`^JLT4GcfkxS3Z-xEZ@ +wn!F>t2>aB(*fK(bnj8TI!8Ygxt#;dk)8~011d!fL8121ZS}HNQn=o2SN<5epOMYs79?+mKN@r1?HUS +(9qQty2>f(8jk}p0OD-xc!KJfGU249~zdNC~tFZj8Kl1n+0v#mEI^oVIb8SrbJ +s{=t^@7Y;7p+VPMlv=%pI14|$Jk4{h0v<+1NnI5In3jX&W}@iW`d?qZneYC7|`Kf_b`qUht@lr639#( +nz~{?IHTyw5&H0`8QLmB8*N{JZ6|b=Lo0KDK_nvwZ#yP)h>@6aWAK2mk|@q+IZ1L#W*d0037P001Qb0 +03}la4%nJZggdGZeeUMY;R*>bZKvHb1z?HX>)XSbZKmJE^v9(SZ#0Hx)uKJUqL7sB4>__V!++t!5c2x ++^tyG0!xQ>2m*nYD4VS;Y9tlM%i7<*=kP@@PJHjMZ!>~eCJ)d1dCsAdBzdO_Zl!7rJM4rO>>yaJ)K^w +1%?j02a%&b$HpcS0X2y0^wP3;)Ns`QF7wqFsfU>UDK{i{^@Asmy%X?+lsZay)8>R4Hme!a{_S(4isM+hN>YL +9pz1%&Ndt5j`BqTKE*+wlhhZN7-YLP@Bm+!@h4NUa*OC4-65F#MIO5o~kxCPnV?EI68-+(VNJ%0Sb&0 +qd}LD+JqF+nUvKxs`U;Z8G?3*&bWIgk?)8x2wc5g{ZTzWBd@@JlmF?wb#lDRCzD8ofcE$~R6ZgZ~vr~RKizy +p8+`j(v&0lZwzuf%e_P;z4e?sQqi?Em%FAIkizGfnmt+07}v^&-0wcN}+Jw*nbtk4KzwpXQ~qs303K% +%_I^x97=`&bC9sG!OBJ?wSUH$h)Q#Iv@6firI!6F*ah)zbKvWWrP0@LQ^)*W +)w}K**bUY&I)JHFBXhGUHuVgLEDYH4d{sZhO>>XJ`{O*1J6H?Om-vB=vB|NxdfK?y +uG4)Ae(NhcuRe&oq7lYo7TyLS&L<3kgnXT>2ETvv=2e4_+`@$EU1AC?TmK^=K6lCWb)& +8+QrAVbP40sl*cvOB_AKU648ikD&g`Z3VAQLTwOpGic{=Y&0uKGXkp=4LjiCPyeWqMcEIR}B%B+%2d5 +#%&@T=qnVqo}FBs2Smuh5l42x +-hcRbv!b?Z$q|$-XlkyG(Rht(az>WoT2vK!B~z7GBlcEDSV|qZ;izNbkcqq#M2G36>@*#$sAbB3iQG> +SF}fEFf@S|2eSmDp#frJhrlR0LMRHB4p1}5y+#39JLi0MInmzh=+vXXAb^K)PZ+=??}g +yAcJ&UU2XX?xW(@gpG$K9!lsXwtO&t1#rbLX;?T_~(JrQrR7AF=dfF8Vx*y7Ws*ldB#vcR$xHP#)_e~ +u6TXmM{`AbF)cByt1w>fh*}#5DNzb0Q}7Gs@UxCpgshjWYthL;V-{Oi>KqgIu$2vF~bpW9U15=8*aP?$!N->o59@lv+%M-@RJh2 +hFt~vBEgz2TyXy|INthhDbmAPlv}p0UM|`6K_g_BGp=$RyAd~5&PR{+gW%=!#v=K$=vb)KDZO3(W*O=R-=%oWc6MK1@Y-EOthgSxYagz +a({vmWl1fiB3(#{5SmIkZP$9Nj0-*ia;JbE3mrew)9P-w`SqS+P=_p^u5`Da(r7WPCi7ynKgJ~}rPvq +f@&xM!I&|W+fn)=AC69mCLgNZ`vWAA0dr-FQ5x$1L(hYP+ec1%$h>W@qC=9=EGToe0p%wWhppuKz`sC +2zzGP6@7LOUy!t8YY}<{jOu`F)AVj;_dPmT9XD1{Lb~-lka`WqI71e^alpY*dY4& +tNiP8bOUOC12<(iaxup>pI}qi9MlG}^dV#TXSEX8_SHaN~ynQyp$PxO-1L+{Tzf^|TA47w3rX5dvM`* +DuxeXp0E`Aqm)5*G2Ku@HBVVB@=iAjrnLV~ITWvBY%xH(eMMCRfVNn}zlbUtm9zn}@WM_Po;@@InYep +0#^z4KglMlWjxA1*=WG9IYflw6l=&x;SYtRnC~DE&2#wI*=-u|^zlyCqiNm+$08bA4RCQ(Loie26{0I +&>xU8evwo$avejGY?W6hKq)a0rDHi_IIlv(4}#=fDQ+kGrH8=tzLz_@6aWAK2mk|@q+C6Euo(LZ003hi001Qb003} +la4%nJZggdGZeeUMY;R*>bZKvHb1z?Wd2?fLZf0p`E^v9ZS#59Ix)uKJUqPrJVt0D{95dR6OURavQeGFVzz-W +pSG?#Y()@tGQI}L{oNWM184@B|Q2htlS5?(uF8ZY8*(5eEat2i@#rFzg+z5cFH{dKH0`fh(5{MHoO$- +sTHpqrJz>Us6y0P|2*iG&bjHf%9mU{h^*GyPT7O7*@}PBb+(cUzn?^HoI=uM+B|2AnywS8C%r +sthIUy*(>+iILj24W!Ypj8ogrgwH1bG#c=Kgj`Nx=8kIXkrg(g(7C1%&%ZYNsW-~fMAr`zTZRU+Kp3G +*fkcB$3Ogu|t*<3(Ius^16em`YKGrJVEI5JFW0IvClSM>!mCO<9V(dWrKu6O7 +Ia*gU&F?tVDk-od$X}it)NHHzb7j>tHe2#r+msT7o-Q!JnYtUR%qej7flJPc29f6DO-!9vSbTTl+Ae# +W0CPVyScu-{AVyrIvQo?|2V(AI{)eFBJ-rYh0Bew;|_@&A3Wv!ZpIThKD+sF@$TZohl{@ix$OMr^0bS +v`+H;S&u|`ovwwplN&pu~+}e6PV)%)Un$Q;HF;T--VY6iF#74w27>s3RshhIM8Y6~W4Za>v*zup)Tg<$#FY$#gFdClt$2-sPKWWA?AN}ONL8|xj|f*=*FxGLC{gjOH1p +>g8=fH?akixkOP)Dd!zsGAZ5CZteS$7~dZ)91dVZkS`3~?ZRrg4c(Sr-muJu8qeoa*7!4zHs|;HOi6H +bY`*aoF*(7lYPgULw9$0-PtpU^9q1uxQhLTTZ4F204Pmd4;s2U9^$US&Ke}HXaN)MCOd5IP5i>g>2FK +4rkGgts47+k5cwiz%x?iZogI!8FYT)((x~7JtXmN+L<~uuSiH8#unI+)dF#x`=IhzI|rVUDNM7%et{b +vjqE|WY!2_yQDD9mhyI*G)gYr_v$?QqA=C?e1i>8Kwo%i)wyOooC)I?*hz`wLU&6|BvE)w@nn7>a$bj +mkD+o&27G!WPjVv-uK@JVly21Z7DhLGxgbD%jyR10~hul>p74m|9LK25h;6|&;D?5j5ZRj1 +=2oV_8tbHW4CE%}TUOh(?V#p?`bd>#k9p-qP_1>E=bj}!LXbw+&kD0`;`xRux_{q-uQ0x3V@htMJ`{?t?XTqq +%^)It0Ui)BjP?NShrg6#}rayMdt4gRMULFV%HEK?VdJH!Jo)T63iAdF8FIIt%_*0kqVOst2m_yD{2!e{;B&U)|?i*)E +%0D3MHRExE>#*LJRj4dgd-;`VOO`qg3ws5k&pjR1wLMQ%0qrEUzZ#W4}2hyi+c$p@t|yt|nXu~Yf6iA?8iv0(QVw3KsMO1oj>H4THE +Rotuq^4gk)>2?NbBk$NqL}j($Mte@;6SXASZ-@{)t=*}fRJDGRg>chfcOZ9z)*4{bB|p< +v*C^?^+~9%S&RhBU&?VwHIX-r-oU)`H$otyoQtp2T>U=!}9iZ+c1DA38`yIs8pf-d;88rQlh;J$O)z* +Eh+XmGi@D;m_ro~hCiDs1TyN@padRZ4;EbegvRG2F%PWLvuDZ3To2YTlKSLmE3tZ>&?2+N6vtzE;k7g +^T%ZlLo{7t(g!hitUnxqa7%$oi5x1Owr(kEeavesndmOZne=kM17)FkD#s0-!l0{mq}AvK+l1)-3nw* +z0~4nP5s7=BxwiSaQ{0CgI>u0`bY~xwK@>X}HBIv}24Y(|{3F +?As~a=WC|{>Aq)BHZ9s8+S}WHDyMnZH~ikvkIG${^vTifc69gtm-pA7-XEpxlL%n=(F(^YbeDgAe0FD +Zk#j)zSe2}fOr+>QFMmllHi7~Q!N%T9=vv-w<@T37D9WtJTF}5S^JzBQBYzmQlhCCWl`ZWClD~)N-DeIo&B~>f@?RJbZs552PO>}#7A5 +qu`7KDfoh3YIcH~p0ub&5zKXW@L|ZSr~AuV`u!ukdf<6`>0`8z{7`@U%bPWE$nFT2|Jy;Nfiyj#iqtk +Lh*$tgCUZ?bw@okR9L(v=y0a!d(VwpSk=aHbna9TeKlNhVu9LMQ)3}2^)7`hq><~ypgAbJDEf(4o(01 +^$>S3VTInRZ=F$+_um!1V()aFhvt*2*GXgQlTsrbPaxzJM9otLuM4)~`Soq|^*|_xeIPonhf(bQ^iQ8 +%p@HaHs>BzeE*S1l--PEUx9%$cwd}t1J&7m~86j|P%K|UsbUcl5JiC7#P8$)U{{T +=+0|XQR000O81DB*+4v`?hcmx0d_6Yz09{>OVaA|NaUukZ1WpZv|Y%gqYV_|e@Z*FrhVqtS-E^v9BR@ +-jdMi71HR}82JQLRiR$U^}EE^0UmVib-7Uyv4YK&;56v=Oz-?k;tK>woXrfTxmX54?(CGJj1wU(*OC=6->1Cv +CR(dk(pXj$-tJ6mrC$=OtSCAOR+gF2=GAxcR%lzXg3E0yqAMwdTqc#wxK57uK`@|;vMfaE?bCaqIsDa +vo8bO-c9UFQTz;G-@2_s?ytNxw20Bufu6Tld6aqpxa+*F|{c$~`OmQQJfSIPMlAus&+Bz(SkZYciRkS +SBf)$>@vy!E2wuC*mOWNI(jMcE&u^BJ9#jRbz9->x=g|iuCJSTUvVc(TbHbUa>mTLoNq7j|_>eNgF!c +Q26{{Ia})Fs&!Cogp7g{ToCmHVr-(wYPO=Yw70lo?`96*wFdkC$<+@?HE(ND#*2?VB(@v7>7{;p0>M_ +!P!qVZ&_n6C8>gTL@dOS|`#KlS`gxrEDbm&M!O(V{%?gw&8yJ%&EqoVf$)GJ7HHeY?TbD)V$;fd=>{@ +=qm5O76wpV`fd3bu49W|{#PZoE<>yfmol+?AAeUucHoYN7#5(cBjU)TZwe#z<~C2eIS>f^V`W6Av3izUig}&G{0@!x@)j66sl;4MDz7g2XJV>86=p_kcJ +D*^Z`eiFt)C&jmoNmp9WCm&T$8s&d(_|KggKd6h3D*FA#=rpN?erPiw>9uAX^|In9 +-(%l1;~GSLGo}#F!qE%dG`)68YtBojjD)0gm-%K3{1l-CQ47vlMwYuNfSkv50Zhk`T75W;;p@1tf#a| +djZT1haDJ+x6n%tFH4YF$N*O}g@2fkdeOt(yfpef0dhCLu8Q>nl%Uoa0c)=~tP7#71z85wM@1U=Chz_ +bEra6G{6cr7{7)o^mNPWzyP>8sO1&AOpaoFVCfP9$HrqcN>{Y<^td5lC$WvNxkb#VYjql#^VY(O>HMr +}A6D2x|k&1vGen^-j|eG8f_gq*~2e>SxIqI3Akb|l}WS{IuE-Ge=l?*^}%lI@Um$<}sk$QckjcB2Y#x +HOgPzIMfI*H#CFo?dbH9R1b`R-nSN&Z`=mpYF~|J%azHPfBt(iE$La03sR%P53V?I`yKmyq5)?wpN4x +s<^$no5921y05F)e@^)75++e*pX3@z;IgEyuLWLB``o#M==AHLUM5?HZ<5b{-hG^Z`fzh`J^M1h`8^z +sf`0%|O9KQH0000800Wn#T%npfnjQxL0KgUi03rYY0B~t=FJEbHbY*gGVQepLWprU=VRT_HUtei%X>? +y-E^v9ZSZ#0HHW2=U63AFI_hnO|hhPyP!>KZ0Uv}C}diqV=l5NkW@Sm`|-Qui$qCwnzma$#P +W%}d+xax9=(!cL(+6r>sqojC45r}sR=Dhp{eGgR8iz)nJ6{;OBa0UC9As3v=D{z0?|CFor+edTkk4f- +gv!Nf6Qm;%b#a2-=1H-iOD;znWRNb=2B>p33$q=(vjU-@hV9<7?mY0l3MdZB{{1k%M3EF(~DSsc-w}n +%&%8kYOw^^&P=kTiuspk@cfFy627d_NNgmt@{UVUZdj>f@|qV6+|z9H`(X89%EuqaAXS`-kS6LM|zjQTJ~aVrnNdT|f37YD$-sPpB9=`? +36S{FKHL#_DwfOv~)(tHm>#R`_`bP0|F1t9$xMG+VwsalJ=$kSS})Y1T%mTs7)In{K0M4r4L7&Xh}Xo +OJpnn|JsfjtDC$zsv$O#IHpf(Qw3s@t1XG9_x6F$F@0Ac>5=vmJ4s#uy;fs1B+t$$Y2R@Nt|>Cf~+TE +xA!LG$Ih;mMfN!4;3P9Hy+32YRwfSd`Xtf>=$=TN}lHoBs)T(;_9kkM6Ae`?$p#GeN4_*B%qz#QOW7D +K=0G}`8@sb>nuILn7{w!>fQNSdNI2?eRXpYC0g4nkVDE2^`#!*akhP)73{xVS0Ak`~y6l%}O_cHQGLl*?;cD7IK6mg)_?1!r +A&8x8%Kjq4JsMVW+xbrMN4UnscGka9?8mWMHLx|&D;>c>~IW{;0tdUXhT3Mpf=^*~M{InaM0Ee!98&v +^3*odrrcfmBg|0~*~*kQXOp3_MSs9!(t-LcR%%zBoa%WDB`e7CWNq%Cwmw<4Ln!GB^=Rf?gQemg{wJ1 +SF^fpsVp)wwp;QWK4deMa|6f0T?D{V)Ovr-pYxyOTvK}QR$Nz-{cQH)8DKEo72b&a!IYP=ozWwJKv+umDRfFxV9?ADXoD-*}3wcrkyVbpD +ohNMCdr&`PLaBWQPz|L`jH~0R!yrn4P%g~(L?A5kJnUv8S5QJt^n<@JQtbCz*re8006hFOS)aWO>MpVhsJvDVR=Rn|^)<3Kr8qC6RWP +#9Tsq8ld9RMSJb3iKqSIM7rTG&7C-q}6X)Y%ogrcn@RYEkI1VyWz~POQ2YLg!i3I`?_DN@2G`)12qBp +e=_>+S#lh>!Ii4n$>jKW@`Dv(&1D6J)^lb7j{Q{a(&O^)-ECut6V0;b*hW#?Vu3v#roc7KKG=CTbY}_>69kILsDqkRYbsfw3x`%hGbt3#kwu}p6 +OyC5pIb=)EOCIxA@L#M2ue*!0l9t+>Hd-YV-BZJ#)0X5@6wIh!9}9vv*&OdD +@Xlzv;c(GxG7}Bic=-*RT4@sz9I;n`d)*po9BCr4_S}P0W?4~yx$u@}t`cY-oG|rn?&&s4{XzC2VM0e +!gWE==Qzsls5>B>V=bkxk#8bTKHv#K3vq9wqFWZx(7fD`P2Ab$KmiC6O(>@;_x`t^RI#E6WaJP^q34( +lrgAf!;VEQ4HhEOc0je?f1klW$?-JX<2J|*tA4!EX>l0$6Ml5W_v|FgxzxZhtdEz8Cv3|V_)^glB1?H +*>{Y?xM5(#<_okV=X_VGF?*-o3!YmqyTR9&h(WB8;SGYELkmSLRw*YUp>%o%ZwaiWkiK0{g6}@1%M0@ +Cy56sGH#kZ4-~`zlgCtX7l#FnY+z^QIf@gh($NJdx(1Jp3n)}1CCc^P)m)|G5-1lCkKR7-m$zhF%JLk +I3@GhoILyf$0S712IIARYL0cotZBHz#-)<4&QVnVr77C*hVUEm+L?R6YdhU~hg(S(y&rl11yD-^1QY- +O00;mBm!w?sa&Ce80{{S*3IG5f0001RX>c!JX>N37a&BR4FKuOXVPs)+VJ}~5b8l`gaCwbZQE%Hg41V +{o5Zs5^fbHVmiU2(zSW;|v%{Hv*y%d3=*mSJLmUNPw*0{U>ew1uCiJc4+P&6i~Pb9^U)D2m_8AUS#IV +qH=NokDKv)kJpGi9?)GEv{kq838It=#X@8Vt>;p`J5N)1onrf;1(pmO>dqITwZ+Cb;%G8>lI(k`ibRY +Owm`z9N!CCUQv2{5m_~rVX}hwS%Xsq{;H2H{tJ}G2>ggV&`LuX^#*q5M0m}3(Q;a|4CQOp9L3)%Y6_w1vHYo#HU!A +y>lSrQRXaThbf%az7o9lj;*WwG;3i(TavH^-(7pxtr%s3De^?a~KMc? +wmMvQi)ekL6|6z70n>}4g1C_-?WRNbeIJYT0Je_|#zbswCJ5fY +Ks*t0d|%rHH)lc1dSO^5tDjmj=o5T+T|hH?z0jC%9%Xkk}YHhiy +bGufQUk*{RiVrC-(9DADUN&LLO1?32=KlXjY{XOv!o+Gc~yDc;R)Z8wk+RF;NZpagWMSWgB#CHTaz1L +TboySS%WZ*ZZi0|<7u2~=bB)#oLQ+Ufj8uHAUgisO`3FM^Wc +)9=)oq{p)m>Xcr39V_!RV&K^O*Y@$La`922#*roY@6aWAK2mk|@q+GS0WgR6N002y50015U003}la4%nJZggdGZeeUMZDn*}WMOn+FJfVHWiD`e)jVr++ +eVV#{VS&6OPTbMaI&|_<(SglX=6F3J-<$tlhmqo;E)(nh(G{~0Znrq-*3O}o;MzpWI5SdRUDGQOixcw +zo%zbb-7_lvf4J=S|ka}HdR?Sj2A`O@Fpt@`QU+mwv_M8SFzz)9&dz{d@anw)wWnRWtmI!;1^jI=6hb +Q*IBVPKP%o`<=MjgtSykgWz{On#e)^%wJh^oED4L4FO~+m@9pCWd@mZF6{4Q7(?-;MkqiB;DQg9#*;g +>K={$PC;P3R+gg%dpz54Q!Z$x^&t)M&oeqEPM3FE6@Zwnmk!T5oKSY=h5yc0!Q)^Wv`*Bqx7*W$0+tQ +H$lG}4TA=AIquDl4(fR+*@6$J62+&$IN6c`;%3>l<+p*0#xV3+826Zvf8UM2Zufuq7|bB3sg8VBQASkLssSgRB5b7d(%}`=zL8q1?!Ycp(~|@`j((wONd?TV5`C&`V~GNE8M_PS{q8I>Bdsoi}AF +av7&U-({0*>pWcIr>AEp-=8OM&z>hQPR@^?9-kj4FOOfGs1*tS1b;5~|#x?I5nrIv^%MI| +cMZHOZqm$}-Eg5^r&R;!!HDfQzcY>v2l@%GnWLKgV@i0WOUMG20TpO6?cY^YgV7El>CH)!(vdN?sl}s +i`<9xyj!wEO^20Gf+fbU6Dst&40oS;yf_Zzv!_ax^JPK#Cf8d|a=B`z1T0j|}89=`_lf^RP$JU~?-YG +|f)LcA8ub9y#Ph$oW-1nt2x=TfpiaVbuUrry6U0nw2W%khks?LVu!tVG@H=@-zMVgHd7`D)Cj{|;+Xt +A_Yj^Gpih%jR?gVvZsyQd;B@4A&10WN`Z#!L93ZTYU<+2iQAVmIa7p11lyQ4k|EBP*o~+P&_Y?QZv?| +9#iy>jscn0g!^D4w7ilXn;D2%gQtod@!>~K>WE^gi{{S7aglA#pV1p`@ob@r5=$7=fLSHeJ8A@8A +tl(mr5MuN)ELCiop07e5%5k014xvcjSw!4DC@C^aequd6N)*h@b%VxqvypAmt)Fe}*UEE+A;aSCNzA- +c;R)!~_%gdF8ddmS@eL?J +^i$?l-79K#Mk48O*kXDT7f*oyz8OzL3N=kv29pWXV4XJ+?DmUf?e6^% +@iVE#q1|qu=$+u1E@eOoIbUm&*K=ufh9zRNc8yYmgkIb%59;DMBt1#kg}Q2kzn)rcPv}kAE45}{iqsX +5gLK7G8})>m+!psQ8DN{TVa|4cY7r^>e*u!0z;^n2j(8*GJR%;>$~Rbi|@Kj+~eRCP+kDNgzI +cUQEC0X=p@_{qqqU;j78mz5}x*dRiVSa5I4Cni5V&8l$gf>WyLz6x)$iu(+C!5x|5!rq*MpMYS6uNt2 +G8ucOtd=ef)fsM00xo0_|y8(v?FTK)Ew^V1BTWWXn&@;mC8nr%dLRi;)6k`=Q;Fk0roq4p=iCzaHO?d +S!I_PpdNEothtP)x(wMtdC{0r#ZT8<0d5xVx{T)*rxFIM7saVC-XZ2Xin;3^OjNbJX$;x{xCa8cAe-* +v6*aj4k$!@LC`gG=oG-_ZY0vFX$+>Ufqk>jnYhn2g)#K#?>M$Ji4Ew4ubzc`=m(i%utEFK6%Z)`TAR! +1zU>(9e0#v&LVjQ+P2(9G%hO_h&_x5`X9Vl3wR+EOfU_MRF^^z)lLb@D=l|L4ii9_s4TZxPTvu8zHCq +j5%|4mx?Ivj>+_pt+ydbi;~A}l +wWUb-JLmse9i{CLz)n6bX&!#QKxr8@P10 +K0Hu@fj?>)xAxfWid^*=|ybW!HnlA(7Bssw;>FaziVqvoo$e`uX!@--Kt*$Lsae%6qmMucVBz4NE{sm +iazHzLg%Oe!Tt3E!HL&OQBXI+5x(Aj9?Vv6X64CR*4LV^(_&Gj7UFjwVflbX0M*S1h{36?L;mtk7reT +Ylxo>X-(JXc5C`tDk}7(E+|GN+eS;|_C%(V!p0<2u +|5a=<9f_I6XdE{8G>Mnj7$?_B5A&ifk^&5Hio#0<)n=?HYug2<{zg|#Q_0 +zrCu`6f+XZIMo&YEFCskHG$)wy0`Q)oF|M16u84oR4U_08D0l9ogfL*fWPLk^j%OlAm3nsGkXiKaFhc +i#L6ANY+wKxa;7-StFK6PPSATk@=z<{1aSplyGG99#fnjD88y;5H1v! +2wvW@4ximbbxyTpxPG7n3t?bGjtSt^vI6;kYJ5RWe!S%X__4R%e~o+=wE_1^@j+52bw=*KmYvm +kWb4o8mcf$zFtq<=vPP*;3b~rsDPh%z+{Pf0(DERG=;a82?csWe9PP3oS$yB!O +>&l;Kw@gM+rEzO9CNpqa;ZtRJ`AVaw9O@X$fy#NXz{0(RPB6f$D%aa>K5)r4JjGDa!g1ooMzl+JRhQfK70Q)jO|#QAo-m46 +_vFHXFzfWUgVcb(!|Rkhb4rl21q2eX+A4>*;t(Q?FirpUSN}TTl>hxX(h~LeVoB@2CSlD%SaNf}@&ly +?9c*2Kb1$G?y7co^Hh4zL?05_S4=M~yih{ +QRu`+MrPWgZr@1-0}SOd{Vm4hIRqG>c?Q4$T3!X=a(1#EdyU%dHhffZ~p4cAILr&Wz-{bRPfJpIwAIj0CM=T(Bu(#&8Sw|tJxv-g;iI8aEHB%pvKzQn0(|$Z+!l)Cd +PSMiJ%d>2MwXZ{rN?keBaL8Z*iiuBEl4%!_oo8?udBfP_XsNf^P5*M2U`qRlbIG{bR=5&MO7CS?|2Qd +%{s)1XiqROZ$c{k3yS98V+Q}CNvHYY`ZxcNRx4Cz-A1iPWv~e`w?>r`g^A&vENce5yl12AXb1N7PJQ@v$L=SNF@f)1fWe?VEn*6DWN1CCP=fQHH}z;d2j +HYZ0Dz!x!?t+DY4@b^^Z}Yt5GM3>o*-ta{G7&To&3++lQ-ulPlwf_O> +G~Biw{)_dvNDva0tr(AMglIR|ot+o#R<<>l$^~yR4?-08zlVvOpu~XH9a5`y@NBx1@b{;t>QH%00pDS +=AT14me9I;~%wC(}+@NA3W0ZdN5|&V>AHqfJdERbuA{Rhe&oao@hI4jqcr%AAlaK(lK)E!m`zo9c+AP +VnG%0{bm<{`aNbC3^?|-;*GE&NL5!mW2WY|pWnZy)WuH6L6{PvVlvI?tyFeq0^9h`MFN0v?Sj@sEbCW=j-Q!uI7}l{l@WHv5_=WnsOJHTs(11UNS +@xu(-pt6i9u&xDmIz~{zyhK#X^KoJdtr;&fUjTw_Yc$4m(N}e>~m@jhiV1OahXQIxJowvp?3(`w&3po +QKWuP@l`)3^#ZbBR7MVYHsB-LTvEq^bfr|cvd-rzJAigETZ`+wFZGtEsZGQtx^h;IOrLSv0+<&==E@G +1X3NGcD*jSs`p3mS)R&Zr`Q{snWb+I+xG)%*f@RFmj!;_KmI2zG%zLaX;_{ETtcL#XjEeG++)CZFB7I +qsz5t$L45YCYw5dtdV2UslIU9c?MIGse@(*^7YXKoo8~(7nZSoewSr~^k<*9}-javmkL3&+r%*&G>Pt +H(tZ!&4}i&UsOW7k5ddYo?7&|dOYx%1%RLQmKVj4!1f%`uMaqTCfO$;MRj=VlV&sL`Y^rX8l07UHDZg +Kyxiw}0erfOe*`e)^jF9wKAlz0efJzHMY&EH5^Cd3)ZeK*n68TC?7zS_0B=^6gNId8xIql_3b4Q +<5`_4;lO$*#vFu677@Ky)qSyL>&KI@XO>~RXW&upc97^nHpp!7cIANkUr!qiOBLMKW?T8CJ4I>E~s-?0GCeziHIuM$vuqi~|2ye=-=sDaLUm!;qjs-^6~EZlYokvySJ%mBe{{oiB#U +aRrsl*Yf+0($<4QDa)~7@i{!SqJIjJ+ObH4wNi}DKJBimV!_3>xtX(vsG$pgoQxMb;XO6 +iYO|y6W~%cSkvllyv;jO_Nga=D3Z|7mN~C+c@>3JNv8@}2SVtMBht~b18GxrQnQ;g{e;~6L*+ISPtrN +6DJt_N2Pv>w4QW=rW4uS5<7;)fyZG`FR1zKLDR;;yOZkql7xk!IJ$Q +>%WEdC6+&R~OnlYfZT9iBaioxha~-D7o-)dGH;$;Y<^Wmq|AdHA4qF#l?-MxV5>30(op2I1hH6kLn>Z +_DtQ8m9)rRuQbsd014}2Chovd`7#Wsw+WbH#Pz9)a+a-s`)$&6=NDk7dCoD5Iw_KSP&`0IQC3&M{F@q +sLD?DjJ;B2GA%wNvmoK@D%)|hc?wyT4y4@BQLE!|A0w-NHX;M04{&pEthtpW!ORww-y2wp0JK9>^qj`;D=aA3>C4 +k;Ca=sIt8#k3zrKpVcL!p2?4^v9vqA+9;0i5aF@>?1s>ImaVbX`JrMdlpGRu_6bh?Ysa)-ZkN%=?>qd +`PDRnAPsvwG~(K? +rBkeB@u&fh6Rek}b^ji+#{9tM@hvuusmwN0=3KY4dr;BCXgpJK`3AY*JC?0Mi})D?pNd(r6>abxkQdR +I3hC*EE7ZEwBOP1WxFYYaI}%ZH!jg%jr8mFm0w9sGq{F|XXcl!35A`Cu&qSWKu0-%8;0OoNG4qkeK_P +IYK04aUW`hTVvrgFfgJ^VA?hexT=p>(?DIunZ08)I2qK^Ty*v&mp|Mu$97V8*>?OY8tQa6pz`|de1>I +I|uXmx85dKbX&67w`2^$ejFiCzqn`>wG%5Tg`@o$?eIx=X^vC1c46p_2}<67` +K@Pq+p0Ha&(-OgLraJrOJj5~Rv~%r{g5)I%Hv^uOEse~yZ0QcMlHM@_S&g~8Gh+C^vm~?p|NaQ(|S^h +w8S-J4AtRB7xZi!GE!NiD5c`_Hf_i-f=$%N@3mear>xGT=OO`w6&CO;1U0q3lv-GAR?^a;XV2m(`y$C +wWPWXU?%5!lw`aO6)>O=b>E=1!JOMs5PT#Ms?Ke|@FVVHv+{F53myYaOt-E?O`rtSHs1&;%9W2}j`uZ +_?6k?Z~!4AT{9hlo;>NjfvX`ki|`bANjNJB#@y|junK|B`y$i8DAG=ZX946Zd?8;qyz`ga;tO4rERtb +hAgS0cBfyyG-=+Rb-*DEdU1(DzgL8+382bP3t|rW9t2Pm#w#A+|WYUyt{k+BTzIv_`=MHuSw2xiAsgh +n+QNefVj!eh{) +{JY0(FqDc=x53cY8HKWbg5jP+(}j7kf<75E^B=x&rZ2zo16?f>MmlQOMaRCu1#bs#X3$s3Z1|q(VilJ +wi0Qq(*+@y#W-G(9u8v*xY3{PT-d6WdA^Rxz#L8_dT^`K;+=di>GT!YyW)4$2BD!4=3uzyNZq!jxp$h +@cm2B*-w$#;jfv0%q^Ulnuj9*{yrkw#tPct&OVQETH0nc&s4M5>Vh5Q=N@bz5o0`1}HflBw=Zy~|VKJ +!YT<1w%r_L3`J>@hb6J<)$`dl#uL|8B$d81i^6c5Q!^J5sr}CuEPI`7m^Eatv+9v#$ +LTM83G_S{o9d~pMa%_+#8}>rM^D>VXXvBh|HqpuFUjxp&r_M|=xwFXB*Jv-ZPjS$Y{61^2d7X#ncKtC^sN`#Z4ZM~|6Z;{fjR;v`EvSim%o}X`ZG?ZmygY}@jvyH^V1CuHx=o +xa=w;FfWqkyFJGOVe1H7rRYhZFEGI>n>`dGUH{JYbzKBpZDp$31hq_55r@ds#)N$(@ +n_2&*N*E@vMKiI>s?6J&p>J7>xw-_NK37dQZ`!d(M-omDe;O|{v0_ihVzZL?yTZ&P8ffsq3+?fYt*1QeyrD9G +7Nqi^)ayiV|@)N-PJLSpt-OMiPbGlN;2}Zg#9@~T$ +w$9%_3>tEuaoAf&7r?8e8neM82^tB-pk`kJW7={RI4q%pRGuhh2fqs>O5-gRF+KkFcOC2{xgAD_`78F ++S04dGjGdfhLvi%BK7TX>xJZ~emfxEDV0v`Q(ybgfS4mW$l~rYT)I}VeO0YJiL5TT)e +OzJO!Q@r&XF^>JL;<)Z+nHe8vL2P*his3|JOLEn-K9fOMMmMBt)wxs1LUI=}L9Im;Z?~P?T-G9|faeh +AS_3@a~&G9--X0$-SU!hweTxyvn&2d;_BR>Vj^wy}Zj@g9Zu`Sy=q?8xTSP?jghf15ir?1QY-O00;mB +m!w>oY$&783jhExDF6T`0001RX>c!JX>N37a&BR4FKuOXVPs)+VJ~oNXJ2wSM0hKSP&?*L_1t$Q6r`JoUZ?U&-0L!NJ(~k-GZW#DDruKXLed0SW) +cyuGgX{m^`#fcZ@fU>UbwrV^%A-CJtQI`9T=N_aa_wxi&)kwOZ}>vf2ArW&G2#Y(tdOMxG%IYs +@J73vt7VZ`N)xrT#JAAQj3FVI^z%jZCtx_wC`j+oO!48f!Fd`R7l~PmAp}nENQ7|VCfR1C!r09#KZcB +ef*fi_tUf*nQLllKM%;*wSG?nIv__@;y)k`@TZP@U1eS! +6i~YW+W%KAk`}d;d-9v%LidvOqdFO!~q#5j`lBTWsiO#QCB+uk3Sia7-3tv=& +&tC<}!xWlz4sa1ofV;8TRoqCVN)0>qs8g5bWx(1KDVzS0|sH{zi5$(xIXk|fEsUwN<9ldOQ~?tynCe8arl8Oq%-k~;@QQ&iykl&=WPhX-jGuZ>~{-Ug>C +QK|~VLSV?9V!$W!Rxp0T5F&CApEvB2_>5BhM6ZN7iJ)f762^!p%%Yrq%0v6Qo2fB!+599$T?Mf6NQ($J3kVpHO +H)bx^``R{Tudy0sUa4f1BBm}Ik>$WLFv9JOsQqtIUx3B^dk$_KvFyFS1p8@A>4%FF`b5G7s3{t8&XKO +naDOedCr~jAh;?18os=+aS8sls_knI=EiFNEbG%6qY!^m5*8Gn8yJLpIAe?i^#|apfD-TzsJ(Q3$|sZ +*;+IbI;$VZ*7^S8~2kM0VhnNAv@t0M{A6uk`S;YS?277*JG5UnUomr5hkkHuLoxy#LPS7i5QM7%*;oo +)`G;)kNeBlIWM6WhsK72t1=SfeSz}^Gr<&Q|uy13_uW<)L8FR;&A_7K&PhW7)0Ug$zvuKpuy!r6z^{W +rBlFgj35%uS(oWHE&xGeF#(3R(H9eo~jF)g&yi2U^+nk+sa={S5Dw|%>IsZz3mksdd$xtY`o=T$H(Gp +XVuSUFU|Zkmv0ST{cJ;;s0D?q+QnyQrYcOP^iElFiOsR{J2gF<2(wLnHP>cKh;&yUp3=kr3jcIYRuwy +hYI)($@1XN6N5*N|$#-Jhb>bt~(oFcF8Bt?C0;3`LWRsUGeQ?m;cDCf6DePJT4U9wr&oa|I`ZKTcs1C +O+R9aV_I;Z#W1VPfgM{>L$kwp17aZ(m}}9Y>JE7PUp;HW(zp3n4CIoR{Yvke)ny*XSdjsTuB4k)+d&O +9OjXXnl?~WaU5l#tIt;@g=jzf7$Mz+fAB))Cz=r*)&7xWYutCE0Wu@PB_H4B4LdJG-qC$AG7LStBLAU +1x2oCtI+Cg3sz?ZeNJ<$moV~tqi&JDU|Hf(x1oQ+xu>QL?< +_O{vg%-uFxaT`<^>oX7p-1-W@rYm2r=k{=NcM%6Wf>!nu+_QnGMWantdi-gH^f<`G +ej|C`avyQ|9HA#S$ay}K^XIYD6lW+m79bb|&9j^gvk{3TW88W(YzGGwJt{ISU;6_%zD_+rgw0;UN^;(F +AlLAO~~#l-D5ClxsTxce)IKWOyIeNy-Ds)j~ODtt}X|50yb~`~S?rzM}ufMdJF3{tqm0tTpAKtw%{l7 +k2rL{XMdS^KSpVA*GtRRySx4G(KEKE0>MpjQ +g^=lGnS9aMxn%UT({rI@4>(Tb)LO(}oAn_9du;w2%hk0&0Gvut0PEC +{6}-Ib3ND*QDv>4)*-5z|lkieEP39Y#2IX+DAGLs-9oJWY?jg}HcatdO(>YBCTEY)ja +%5m59*&W{Y|QW!G0!f%_|`2m}{jTt^T1N+uJ?PH!(nuB6brhYspJyIjg_vMsleICB_5tu6Hq6rRu>iu +#MOXn|bjMjp~{OLBogS(2`!TzJ(MircA7%ov*Oe!HcCGdcjN*e9vW*2aw3h4|4y|K_lNn{(fY@uuzPEo~)u#3J|C+j8k5)kErpg`CUi1?Z`53PJZsdaEK#!65iI9d_ +WCu%o@;@o}pwd@t1QY-O00;mBm!w>IL +1?aF0001o0000i0001RX>c!JX>N37a&BR4FKuOXVPs)+VJ~TIaBp&SY-wUIUtei%X>?y-E^v8EE6UGR +(2GyWEG{Wl$jmLsFDg-R0dk5mlS)f6^YggUAPQ3R%HZ;@d1aYJ`FXjic_mz2@$rc{Iq~rdwhGZoevZD +bN;(Qk$OeG;NE(!4xwt^efa;YX#^q!tDRBV+P)h>@6aWAK2mk|@q+EVqrv-Zi008s~001ih003}la4% +nJZggdGZeeUMZDn*}WMOn+FKKOXZ*p{OX<{#5V{dJ6VRSBVd6ib%ZrnByeb-kE_Ql#j783N$fQvf4r6 +^+fp_hjskhv1&WlfO+Nv*v}^Y1-FN?NVGL0rSIcX>H8bLPwpTW33}s&)v2lT}5k>#YkUjIlukWsT3Wa +V`DRYEyPHh(-i4?O30+j1%^~GItZkmDv|`<7}|C)dkhUhb*1zRbN&+X&URwUex#E4%f;dDD9`q*Vc7H +t534I7MY=P6Si_gbk- +Q14muZtAd;q-kJ--@|w=ShfhW(SpH$OlELUQVjgd#yVyz}vV}K*8=Z-$_<8_!5_vGxt`HSXo{=*2c{c +Zj^3MwsU)HMy6<*$mu+1mdM;2DA)fM&Q8ilP0v=dI*!BdapWHrv2^nk)gKG#CL2nUlP&)_@dLV1`p2-P989>9c +JD+Imo%GTqw~(bsL(Bz0U&Rw+l&{Ju6Up`uNJlSS*w4aXQGZPpLV=lU8-DA0Ejt*LO;mZl{u){@9F86 +ECTYA7G-HfA8BjW{t+cIUFUXs37S53|`gc(?2>lm@w1=%sssq>jxmnyk^9Rv4%0ZOY?Z<4ryZZ6>i%&qW2){97Em|w2J(#ikQVo6;PH>Ex3a3XyeXl>(4;I@>-u4%^3*WF$TX%zu-k@T>y?L))rH*s#9jY?Qv&Nc>~Sk5EgFa5gwyx};T{8RvXyJ-)Nd^wQoSlO>>1VF8@#6M)4vO&m{Wn6_zL2Ws98hJ1>uKzX%hB +Ir{=n6^6DC0)smrWf-Q{+F>j$A9V~fJ;p9q%Isi%@i@ZZLV=$#*4e1oZ+QD3P)h>@6aWAK2mk|@q+Hf +gV=P+=000Lf001fg003}la4%nJZggdGZeeUMZDn*}WMOn+FKKOXZ*p{OX<{#5WNCABb1ras#aZ2R+qe +;b_g{gbA3{!Lrn!%4qZxPVUXmNnHHoM7^=9g7Xo!R?oGF4KpeVBI|Gm2lf&@rPPM+!qO9B^*{odb#t4 +3{DmaVpC+lVYt>JC?pb`o;4kOe +%ubRMOHs=@%|45&P)%C%{GQ*zhO`0hvJo3mnU3>6`n6+Qw?>xTo)49c4w7{c-Tm;Lz-J8Ir&!ML_xvi7O3xU9gk6)#iqB^Nb$!)?B-K7*LWZ)+jS8T+-;+Zxw}U76zH+@C +Hv92?mDZ?N)4YSYN&mYmzIzO78Nzf!=&u3c6ug+8>u?CIdFiQ~x7=|<`BGw +I&JP9rvTR>;O}yoTRzU{?;oxj(#ZhiU{~$#&MRjo^j-o;mYnlq8l}n&oN($_%Ypyl;tnL-s~PZ3-}U) +yJekvJQ50QN?DqB<>f2i~1S6d}BYUJL +#NnbeYqh;wPcuQK2aI@*k*tBftv5t;du!E~HlIuKGgUVxH8V=FsN@g(h^VZD8vR3VDI@K>-!oTG*_)Nu7VJ1cg{Z50I5KS!RO_|FkGqv+frfQ_o!qzG0Lyfu(Q8F#jM0U5Fn+5(Cpj_5IzgI14;1Ps`gh3VX)d-6`igW? +`?qe`sStX1%Fu0UCT;am-i1bf#wVx+AsAwcFUyED0k+eZNQB)mVxYEVTd1AGdd&bXwh(JgkD@K30(Wye!p@*uqiJt<1WiQi#Q1Tm{lz>D2)}AqHbIYJxWNl50Nj5UGp@#~zVq6E +2~{V@7;X=AGJB#oMM)E$`kS +WRl6J{{$U)2ZDQB3Ffoqpew;{n-oo_LN_t*~0TTL`CNz_!1#Miv`Xn$`|002GNI4Er<)0zR2<;2{0Bq +|6@u#64R$SdlXOT*+*xIC$f1IYE8}?0=k$^8ihS--#e5f6*fuzD7S8O(EA2{F37!|n~=(jZt8coBC|p +XjqP>A?*$m80@+X{wFQt>owd!ZMN3dWDfln0EWCAt-SSc*cx3;?v(-;9Gn;0 +c8yjggjY|7k+qs +VG4tOWn9|30vq@Gbm&^Zloy93Fsl<7Ek+s5o*JPgh)lAmbIwn_Nc9&yOFMdWsd5{C_s|I^j~XTmCc5I6zso2uy0YC}3t=m7e(YX}l2_zWuBNXCHp|0(DZ35R{^tHm63y>FE@yqb!A( +TBVbhe3Fs(+eNoGR}u*AGi;Sdth+z#P)iqKdQZiJd)||4stlD;@{U_KKa7kyjqMn0YdC4+`VT&l}x!N +xCo8g&r!L!-q&JkT%ZEsUA}oj(oLRL)p;as0qI+$z#C3>+a7is9W-{sciG6`5Gf;vPH5f-xgNvwU

N-W6QkJpR`0EERjRv>eaoqu--M@fUp2hAMp-2ow9?L8f=`Z}1xNp +MZtRk@fdR&)jAGNdAX&_4CqjZ1%U9nAaICTe$l$V^7~{IVSEm{RUcylUglH{?a?U({TL9`M+t%Px!8erPz_wAJ?HJ=!Pgz`(iC +^aS^Yrx(uYde*JZ6L`(7g;j=&m29-L>I+A4wp#Mf~9L38pU=yHN(4;?*xdpIv@<_c4K922x-F9KC$-I +Q8?$NXb{7?* +oN2kMy4`?=!3rT3M^{!befAa!VNShS^h_4RjwxzU6{5;z+b3t1KTP%g+iz-@h@p~DLGLB>Vo-y>;Jtu +*Eq+tT+#r(~R;&fGx_OM~oM_JQUJ%uyu1aSwf-cjDPZ`Dwz9BuRbSsKJ!vW3e90tTG9xZFg?4`*07Ha +yWzdMeJANrh?&_hsy|5O96lA=c-iGt^Apo1c`gKD;GcwLJk9mM4)(0=fWH||wTTPepcJfM36S-RoPy= +cZms_mgb5#HFA?N)18s%kx#Q~)~MLIsU`Z$!~k@=e?Uc*IjI+b~EhQm{YBT5Wh7J>`E;O9KQH000080 +0Wn#Tnz|QHva|y0M!%#04V?f0B~t=FJEbHbY*gGVQepLWprU=VRT_HX>D+Ca&&BIVlQ81Zgz7naCxOz +?QYvP6#eg~;5-zS0hbTZA;UH-#R_ccuomdBAP{Kj%H~3gnn)#ev4`Keq`swQ85SUkERl!zeXeZng(^$ymDjd(n@xK!{xkX@&*W9Eyy~79dpzp$*nPCFyQ-8wVMF)PUHT`Vbya9Xn}W +~JtTB{@)1*3Noe^(6)yms?FW%E%4V78D++Ql3)~$M1@kV7f@nNManLbdN+gesCyH{+PY`iwE+mUPpe% +_W3%IN&#iO9TxDWy8oK0LXx^%;*oQ-0Im%T#GgorT-!u(VROqx6w6(xM01jcw5-+<<+3)Z{@q>TLM|* +FS3KYkg?gkA1jvT|VgAmS-yc8dC5^@_7ga^?rT)>H7NT^!oP?*EjFqzPo9SkZESmNW^er{!42~JnUB_ +X)liC(;SARy{FO5@IaS^O^wY0BRW`K-Jd=7VY6XEP%W-HW=Mei9PTA)fK5}xXp>VR0Bi4EYV>^@$D}* +wwE*N!y!uugtTnGgymcW!Owlco$g_LY{*=so-^JzpQxm9NiZ{wQ8e>=|nVwQR4rG7oQ#*Zq8J@1CKIu +R?#oDnNiM(bexGdy3DDL$lL8UeiYuu0FuZ@Yn|MLbstV7&P +tb}YU;{@skRXQq@9TPxWN81oh>Rs6t*ezDa=d3-nhMRHsIOPT<~Xl7{f%bCy-k46yI~6J +s%JDLnHDS3>eV>KiZTWC{qoWlV?Z=$jXB)?xhn4I;jV3>)jr5mWQ0@mW9K^Lx&@}!WNbFs5Gq%ERAq# +W^D;m9uc~#ri^lyqM&UY3j08Ht#j-Ncqe^4O&7B7x(KJDstg{&Qnn^jH5H9%<9-d%@=dVe5$Lr&r~_Z +C(uatv``{%~;`G4~-*ZF@yCTI)=YbRj91#PeF%p7`u)sYWDhg68`G`#cRS{S%JDNm$-f(JvBi9&@LPl +H--7Z^zoQhW`#$z;x@s7Vq!DNtUkAiAom;Ac7i5@m_P@RnOFl8Rq#fhK^B +FUSOT*={uMaV1+*I+#POoGfBsw>&jS1ii{tf?;}Fn6+ziF7}JaWg%IEd2d +;15>Zm-Z1Fr!vpXMI8`xnbR|?s6F3Dc?M4lf-W8O#d5ju3mo_btWBZklsxA?vWXo +g?;dwAvr$-kb^AgkA`!E#Zl3Do) +ba^j$)N)~nXeY4+M>zSkMvqpF4>YF6H^TCUM~z7%j4=^5w1pFo%h<2oh#>}D-iZ^$b(nB4%yd%_Qz#D +k`k;;W7a0sFbPdIWsJxtpQtr@@G)3{06j;uL&oA8C?a8_8$ws!d}mcs2-&HV+Lz|N9B`6O(gY +>U9~g)cB)Y`43G&Le&U)H5AxH;lvqMu+Aq|HK^57s&v+n;!ZfRB?9BZfV|gHHS?a-lRq^;mPc!ygg$v +)J6!*t=$(Ew>a|di=%EFaUy|T6p!!1*%(YtHt)~Cufo8ZWX1)onKg?yN32WSCBBO8p1|c7`Dg?~_r~) +;6%21%!qaDh9?_50uCr><%EJILp6R*d(&=2*zcxHa(2Mx4d$smLoa`pGz9d%+#7f@^UwuSq877XU+HLzPsXOK7U=jLIRq~x4xM|JyoIJr-a +zK|Ud=q{H!sK&M6I=cAL+XJ2T)4`1QY-O00;mBm!w>uQj4QH0000!0000W0001RX>c!JX>N37a&BR4F +KusRWo&aVUtei%X>?y-E^v8MQc`kMC`e4sPE1c#D9K1HQAp0uD@n}ED^|$OPf5)wh6om=78Ioxr{BMP7I~0RRBd0ssIZ0001RX>c!JX>N37a&BR4FKusRWo&a +VV_|M&X=Gt^WiD`el~J)y#4rrq^A#r3RXXwkl|V>LNQeO;*2=W*DUc>r?7IPU|4!1T?XewM;%ECkKPP +<*19T|ZI%FmWJB%U9mQt$EEu$Sxb0Xh`Xhv+m@L>JHoG7vlej&Zj@E?p3BNHIcK~t)iGp!ej9-SFNM~ +;oN{%c`Br&uZVu$tW^-Z%NXw|JyIunWRdT&bxHPo4#xLrFs((RVg6saBAV*7}vkNK9TB5XK-Wvgkm!O +Q(iDM6eekCehTy_c%}uEOA0*k$QcSoXpniVmjlFdT7#uR+?tV5G$0xO7 +nubYGB(8Eg>*-mxx}v?zOpHJOu`73VjYf8=XT#Oyp1d|q8zi_b5J`^FL$7~w-DJBr@eJ$3!{PwuhJwz +3QZjkmxzg$vP)h>@6aWAK2mk|@q+ElC_DZJ#006K9001HY003}la4%nJZggdGZeeUMZEs{{Y;!MUX>w +&_bYFFHY%Xwlol{Fs>>w20^D79eHW|si8y6-T8|}j6Y9?lMW6TKybcQR12B^vWdx5^x#*N)^&Ud~ChY +~`z^%kH1{X+;rsByN%08JlyCjqc(JL>{w#@N7uvc@Ac*8Y2I27EYm${Z$aWlkecr#cGn(g^El$M_pNL +>LvyNgkkgdYUK@j$h^YQN7DM)7VWe+-BgD)6YyRk=1MGted+F^qKqNQ2s`F7Q)Qq?F65zi4_4bt>cAU +;+H%_KG`LM2{KyxbQ}m)g>Ql8{@r7JvxBF{e{f&#s@rN;!9#UlPyI1vJia3I6F52~OHi7&6!(g_X5KG +Ji*?NMBC815;9xAOc`vy38|*J|l+7MyzbpBOqdliYgC_zU +_R*(Qg-0Mo01az?(ezAm6csZs*~0H+B6044wc0B~t=FJEbHbY*gGVQepLZ)9a`b1!CZa&2LBUt@1>baHQOE^v9RRZDNw +Fc7}yR}AKo6}v%PBNZVb5L~!&s4B}%X1k`2o!U;frS!iu_U2)Sr3Zu$yYW1}d5`zjbinz3@PkFpL3X{ +d9)#A$3ong!MX?Vuz3eM~kGeIs>P2%aZlu1c1}~MHlp3LpmW@#ICvq)1OjV`!XthukJ~Y@zNPWX>Tduvo(03F8I7gRl3*c%I^5`734l5`Ml9S^cOfPj;W7<__j1gV`DN?}_OND +lGbc=h^kXm}q%SZ{wq1tcf+l)~Y!(TdYuizJaGaAW6_*+C13 +oi?AVD~;=>seRs7fT@Bikmq?Py}9XQr*P#dF@nS($6BUQvCTl7s)}ATbfS1qh!V$g7F8mHJIxk*!URq +wVCQZ2kpt>SV`Sr88x;iYn;cX;e3;aVv*WfQ;hy=*DLIhny@WW&{2JAg;y6RPZrWyz|TTCTyRDzHCTC +rG&bIjQQdCf;sPex=rIvP|K3tluFP-JX3SEanGLe_~|PQ9_P>HQ(mg)Ej+C&^Sl{n;e! +jq-gM{>rk#B_&`>Jm9qk68IL)mZT6E>TPy^P%pDlP{DY~VF=R!_|^ZgqkDl%%lJ4$~j*^aGCC#1t{HI +x}Y9JbqOvm3kYE$nt7w&`x-lA%o94bq~6cR;=lp#>_IAuZFP@kq@&I@c@dOSWYTn|6yrU^UgbW}$i{z +Z#v`JB>nNlc5Xel&F_jqHW6&JLk8kf~Ctk{8m!8_%I8?8+dn>Nxz2glu$F!4yTEsH3CP3qtG6_fmXUk +*cR{}?V~@0?I|2YENBc7X(#&(j*7+VfI|_-0X!3RELUvEnH(BCG~!wLFw22QqcLIs3HU<7!fEJXkb1y +;??u!<-=Q-6Y|d0_%*PpiQj`;Oo(dv!N|-rf%g3i@oc7snG#V!)wm&^gKT%H;kq)sNlqZLu*z)!`GuQ +^%b2=_L@VqzDM`X370`MH>hGw_EA}Gh=eVf+hREYAVkyMp*V^L4|65Xc!JX>N37a +&BR4FKusRWo&aVX>Md?crI{xg;Py$qc9M?^D9Q)3rH!sN6OxNsiIYHtCi)#P~1AU|ok1-^MAvtHC>Sz*SQ520cL~t<8t9izI-{Qxv0C|*Be=sH_^h{vp2pB`a_!eRcZ?;7OG-NS +>X&MwN4uHOm!3s`Dijhrga)C)}*u!5XC8!N3kL*H|EwabxP@nzr6zyzxR{X>vNp9VSqp@E7n>btSgx7 +k@T9<^b+vMJMK%6$Pf*VgNxcdzc!Q<3rerSl8%BsF_Ro5e7t%X#omhaL%RX?3v2AYE@I?JUP)j4K~yY +?#B(UWc6g`}h5zB~^@{a3|2ly5-!SRfb7FL>-NfxJ=|L+C_8#=HS0ouC&nVIXX?T2E5qD_Bo#oTD6iI +34b9nBpWo!Fz9;UgjP}Up^H#0y-+o+X5+%70z7NF +M=5Uei5sBBRr<*wQvqaTDCdpBE-()JP;uBCy0|XQR000O81DB*+kUc3JNCW@?9t!{fD*ylhaA|NaUuk +Z1WpZv|Y%gtZWMyn~FKKRbbYX04VRUJ4ZeMa`aBp&SE^v8;R&9&hI1v7xUm>zz5{RA6mF~5HdxN{e!E +r5n?Wbiiiam~XQ6yE8lbW*sy)*JlY;C$VgxJ#PnYU+VR9byxxt0=gFSK$g-{njkjkccs2cK(DIm}8D@ +{JK{-|zjQnpwMUgh{g#s6yM+@ch8{D3%_%J%Dw+cmXA^rO!Z}gw^T@%3qH6LK(tXhgM|S2wEr)R&kkH +_)I@saGp!qpZdG~yhme&g%)|1OYU61#mTdKAnEOl;e*zoGNFXevV{X#u2=_}*$a%@4iR{GuHx@6`%1D;^8vvEdGU4lrssxz`0E3^+uXAMomSzPuV4UUpYH!jr_d?4c_mKJepK952z +%sB1iJ&qcMhFm=L%E+9mS2Ex$ENz1#4-EA}9-zm +EWr|C+2UM@yoy0pF6#mV4~6i2CnsobxeDPbxpd#t7UA_S^||1I7O!t#p{4@9V1!tbl=z-Vp$;yJ(%@n +rp<&@lFdD87sOAU3=%fZ>1T$7_SH~$NVdn*Q5v*O**b;&A?=`kV%#c0OYw+joPtPrHHT9O0d+Er^^0L +f;!ugJZ8oNc-gY!Rj%NfW;DOw{*pvIzR3x41cqSuB=IAJl2AmY4=xQ<#Dfx#Y*+-aCDSqwaaOIhW;ao +hFUfN`m5uzjgi+dX|Jx37M_Ti*h9Hx+^aPecausmiulCmN!6QK(R%_aCg(AKf{xrPx6qtAz@(`Bci?`fuBM075AH9}B +?EaK?iOMNE7vi)yD^kZ*Go>ju?uSdrvsQHeh|S#LB!pryvSc}G_rA7@4$p>})Q=&Wb1zPt?(lS2%)6F +~VVrN~(=5-i1MOmI8Du&NTn;c((xpIntcOMO9KQH +0000800Wn#T&arP>gO2%0O(Z!02}}S0B~t=FJEbHbY*gGVQepLZ)9a`b1!UZZfh=ZdDT4qcic8|zw56 ++=_Vo56>TZWU83IJ+4U)n+r;*>oTjg?ZUvE8Eh8?uAxKFZNB?{00{{V%yK?UCU0!wf94-h927|$TgUh +B~i^XEuwOykY3sI~$b<+x2Rdp-dqOSD8foaQStJ-3%?C)h)Wo=!T+BOueYJ!HczPc)^EBmu{FE+I)$AZS-~pRrlP-!1R$9q2Rd<=%5Dpf^i|R&}MSgm9^>rh!)~af!#&vB`>eLd{ +j-@p(3SBQ8sdtWD7Nr8@`-T1R&FSg4i_`ypd;0S1#jBUQN3Nt^^~1iQU%Pv+3!R1J*~p@~Ewo}9H7b` +`yO3SGS|E@G>=nP!o3ij);4|^h0rHq?#N0AldZpTLsV!bCD%i +or0`~6Uk$BbQ&~GhUm_*Nnl1*7agCWOC-Y6l(rcs&7Rh21G-@w}vHp2B;){VGb$rga!DsfwsCE%T1i? +$Y>R_Vdw?EBZRU%h#I`sc+r&(6L%Jp-)bNU!7`_}_K@MT8hXb*vf#i +GEhq{B6^z3v4g%%8p_zuRdYFq^Y +ygdyEuf^|vYV1~9*8n^{t0gy^$E0ta2z}uCAh6Y+?OE3tmL5Ma&3Jty25;&z@iHo$*3+%U$Wm(^nb!hjxFB%^T+E0fA+!Q4b +8*$w-A2Uer-=Z9N$x0C>dpg|7gr!~Q;=%9RWhF;Tn$IE+=^?ZHVhNcBpF(Hq#sfYbb|+0Ug54-;e({C +h=hlZx&WtAa1e9DsPKO!HJ(=>Y_2Z5E1bLXU~ZZk1QGBL;Fg2Xl1)zgTLEHjX=XuyoyMgAgd7;DsLWo +QgYIJrt60kt_tYF96rB~*5qV})$_x&T9nnPZ9({Zszt2{6ktuzj%;R@|`S|?PBuWv6Z2OHOcHwUG=$9 +z{u`a3@c2oiG8x_-*BU>cIjqWGTK01GigPO2_O_*_VwFKo3+O`GZ3etEHYgH~2arj5^vaZyL8-_X(#4 +Nr|ch15vpV9`ef&1&68=N7KW)gPL&AcqCe9XFWR%(*r#NdRB6=vd>0a|cA&OlISD?CihW=IUlOr^WEk +mXg~!1-GDM;N4cjpDBE+D+H;VWN{}p~5x*#5r)PPA896s%g>~ntRF?OEVC7F~pMfAQ(^;y>RV_(acDc +IS)?h)akefYX$-?G4`K(gXZ+Fx0O;a@*->dO~haCfG{(p&iTm@=zF)HC%m-;@IC;@Jl%ujGZ}2b8-^z +BdBw9UQAOUa3ZMt?g{UhydAK`xHnI*5RK*7>puNG2A;ms|?|KZ+@4ZD2#U^%}nWK1OQDVlS1zZ9r2I# +wIvkp|FxSK;fNeuEN;&Ll4c#4a35*CcN(qIoed@W0@hHK|>BX!_NF+)kUU`aLaiSn>b@SSQUcK8|;g0 +l-=R4jPFNEPxD&IF#G8q~+y^cHAJq5!C~LZYH3btO@V!il@=aAdEjEZsxSGxYzJLI-F_%j*e=3TsSEB +bgr6g627_!CFN<62&W8VAQ0SGqEGM_zYmUDBvL_1EaTrYXITgC;W-tu#qOTHqmb1o<#pAn +z=TMw4UM4k$vF7nv=3Q?sQEuff5RC4s>C^cJkPwNJqT$lr{hkHoW5*E5{(2QU)qTQ<=NQ^IUrT&-Gbz +oRf}z_NpbgU%bP9eZ|Gbyw!Zsh4gJ@v1_bqPs)W5|HsnYhxIj@#?NXdysTNT>?G^pa%@r+@MuiSHnOA +gFuV4CI}5-%?rng9rwU-42Pz;R1{ao&>j!o!Ovs+-ZGOpkpL?N<=eCxrF0xUe*8E}`okH>CFB)!ztKM +0qScR*d`8lTHyhT3SX-V-{WDJ9MGGh)IPi*>#U0KTCH{ec|B!3FQB4L~^w3ydCu02f_yFuG5aTx>fsw +!T$b*UEr@wr3{B;tc_)A~>`^#5vPM<$JJ58pAN{s)|8JeMqK%BqeHnad9I#|qVAazkM+M^Y6d$Ak=^9+#)40+Pu!yB81Ga{GJ;5MEHj!Lde|}V&ROgbX1u&vk3C>u!$z@-5~cthTpofj6YrwvJV^%h +vJ<4BLRFQ=JrQF&OOklp{}N4|viMnvkM8aSds14&Dh2KP(eV;_0$FVTB#tPcmQ@ocX2pi*Bjc$BLmiK +*3Z>tIMaRON?LCtIJ0~zfc!L*&@^aagus6QA{2HjL?&KOHk;s;x!2jwDY**)t!rsE0mV;84$T#Ge8e= +Z{==e#*jv+co*oKB63+6*BziWzT^o%x?{mhtFViXl{An(4+KoR9e1>pNDRjEdnxZEzoz_NjGK>-nU^7 +t_a10N$p{RxC#vwdXUuL~4+)*COQ}iT8Wphrm^~9qsnK-6*p)&ylUDE#7mSD7xd6ur$N=xfk;3;Vjqra>lS#f#=tk`ME +c0Fqs|*eI-tT+%yHnH1JqERy@l4d%f2*#p +T_c3SYQij)8lXy*BEm +((^CFY2$rKpzO(*MCVkW7p@^lDow5Mkb%Sd!mumI)ajp=vzn)+P?!4fa5qskn}v{6|B&t!yQlH{|`zc +4{{%n*UC(DyJ3#r{dkmL6KP4jC;WTaF7UYkYk3_PcL+ZLPe**m?jZ2Qv)%_XvFP1ck~tJmAtF9K-fd76I4Hz-YVn)w#2M +L>n37ii&21tO}%yOIhc%!m2NqH&0fB77 +YT#mfym5Pd%9X0dMt35Hq>%N7!j_HpwLoTPUU)HW597L@vP!Oca0={0_TLoc{TQNC*dcx&yhT +|216rNXjDtMvdVh-%Ek+OnARBPIhGXDUpwx@FOgseHa6XPvNt$Cii)(|nKoYkGEFg;`bW?*9;JQAT{`Z|b3=@rGf)n8kOP` +sW$O~+4wuVQ?cn*wn59cAj4h9+vb|^8%9j!kO@+0x}2^x^UKl=QHV*@afip4-NaX1cBv6yE*w0u7cY} +rRfbve7hBtdC#jTs#(=Ro_df +j;feG7E!~F}qQhLkc|%HEkdl#xs$UY21DmmD*YmeA +8MyjLnXWYz_-fPTj#m)lZ_3-Rd8&6U)6dLLd{J++VB)i}Sl>@TDYT_ILvNSNoq!+cjllMpJ4rv=jm|tI-h`JrH)hlWj4&TJ&2 +~wPx%b?6deCT49BtoWHvlWF>Sn=){je6tSOxoS2>c5(0e_uo!I%hx?kBo;HYmlm)53VbzMuf&e6UWVR +^e5siKyBJTK~?LMV}x*;5)2}DGaBAe|zkUogkd0@#~BS8vEN>5IdLi_q8Q}?6 +9j53=Wt+Bo>473Gf>rcn>QNCYJ^;LE_u}Sr1Nb*mksn5F51qeCMfUTJRr23pvsgOMFgnS#tUztwN5my +zsGuz{EEq>~Z}ZK5z);$S`Ctn^jGiN-=)Fbi#NuJb!M>9Wl +}o6u!liQe}TUdW(M%NeUwlDfq=z{W}hey+iSlpGlk~5t*f_f3UTK#0k&bY|u1cNgZ#q!1o@$7W!J|hb!*<>f4p4y)C*daa%V7Qr87`!F5jFJT(_A=sB5U7=z7_Ad_)>x|r4bF?>ORRr)f*N`Uu{C;q9q$2>ybVL +2Y?Lc3R^J2BX}Z-cqYY%lkCH)9`W8m_qd5YG1U6Fg`aNRQHEkiKKY7e&GGawXma7Mb>^c46gj-59Hf> +DDJ|df{a6DEA{?Ta!9i8uyUJFz4*+=`QVe{tB+@a!9Myk&Qz8^;PBHpaVy=;X*q0@Lsh2o^j7ohkr&zk_96Ut{+E8e_ +VKUcykyNHJN~Sh`f0T6Ts5=hc=;Acr +jLmFAJ?EKEq(Fj9}!*R`=f;R@B`kr_<|Z`w&n1eTU3BA%CYJ{~C_jh1%cDI)k>sKDh-rp8;b{J>t9KZ +tfZ>mx^&okazEJ;#Oh|_)0Jc(`drTpK!=N_-d{jYm$G)A()bt_imyOK_T6jDL0rPfnpzn(QV*S4}0Nt +zJJ>AuJA)wdk1%MuTR9gn{$ehU7H(&euCcK8@%7i(9Qwb$-mCh0-c5TK;mEm{xn6LBs1Z;($n)SM&|C +Xo9v-E^s2sn*jnGE=-E^vofkarJXN2xU{C1^O`5}|RwjkQW@7C;we3R*2a3{VY1HJ9XW8iTl>3!k>qeGWemgRz5^d +2lYtnwiX3Y}>`FjWc2XAa$W#R7Z)#VL;s)Rp&;=UDgTVpNcVPA1=qFq!M +NC43&!<%_ng>H2ueQ3nLj!%^DKd_^VTs2tNX_0KXUX}p*nDZxa}647s>h2$CvZtNZe=P$95HGW=%yNy6W1{?>T>efo`JGRbl!LQKJ +;!q6K9|-HuZ6XE-fH4Un|Bh|XLU?mrOIs%%vi8P%3j3|i;{zfvJhy)3TCG8MG|O_xhW-+!0$MQo94dsm1h50DaRVNz>;FR5O?QYx=)|dwAw`#^%T2NH^s2N#cDExp)kL4(iL +SN1Sg0DApQ~9j+E8;hJj}Pe~C?#015W(OL^$X!e9;kIcS_bnqj;V +>LdMukP#l(nnzMt|k%YB#FJ960U~Wpb#*7EeP(bl0sp$yg(csa)u!nq}G5oo1of`8DoNK2TNdt-_BX) +tXc4Sdd>_Ri+ep-CwVx2M#=(gkc7{oysDeIuSqlB?ToQh)?HyQ`z6y{>xj_Uj+$opp&NAXg@nZ}FvATg-mW77NfYQOy{`x +U&4{1?$VxB;xDS>nW$<)n=2O#G+X(vuhA7(jJ*v!|EsiKt!xv*dN(&2n@wka}u-01e0r^XlsRQf@dLZ +pqiUN;c1?zug0jaqTk&e}Kl=eSxvohmwfF=7!JQwPfblxs5N95ST|%AH9ShNuSx|_j_5Gx_CnZjo|+n +URMl?um%@%`8#PSQ;?CtQFG=136>+4EX?M|o|x&)bxWLqNIFXJSPxr|lY{>QP)h>@6aWAK2mk|@q+BT +lmnh5x001Qo001Wd003}la4%nJZggdGZeeUMZEs{{Y;!MiWo%_(b7fy+Z*FvQZ)`4bd7W0HD9F>}mmQYfAv|6YfpDXNwO=p~2)3!p_Z>=?UwOai=S(G|uyxZQ{9j(jE);R!)%=Y>*O=OnudAoOoJzI6pS^!Lu&2iOilNo#CGuYB2 +v${Tyy(t|9>8LdubBgwOGkt&U?(H5Yj^Y^~*6tdtNSb7!@Px&LY^xI#BaunrDOopJ?o3;}c&yOs2cK9 +7IvcX3Zg*`=DVc8N@geoZ+s;|+_svN3j4F{omEFjqAh25c_y<3Cvdp3SP5Z>F6@gOp&gw1PWh{j@qrd +WRvmU2NRfap4PnzB<3`2-V~F{sa1ljH|$Dh#Bpm@6BHelcPy>X6$AS`DJO-7Ig +=Tvm7r>wPs6o^<^JRo`;LYeW`M$@~jYYDvH3w1`_#E8lSFIpc(;p1coKQnlojgc?BDVP>vXTYAf;BU7 +a(JWIb+kjR0wof>C38rl)Dvvr3^=lGFFcz@CvwLKLs)dZQBqTQ?XGW8drHvXJ?aY2w6{ocrUdmBg>Hg +9att~uE)IejOOw2N>ZPi|^-tY7`uQ@IGdY_vUsO}pyQB2`G}$ECoOu3NAt}$xQct7%fV$aGm^M?GeuB +-0!?X!uI+MeaSJKk;tI5+miLkQiKaEGKrqR4kNuMU`BwM&H6+#j?l2EAmeQb8fbzYG{HqD}&fg)eJB3 +`8+;Mgx+_Bn_+2{$EVLo(;oJxiIaGFk4wmzGj#ke&p_TawY?_BB{pC<$0M|kycVZ|p(mFa0t0 +2js@jtECVyrJaR(pAFNfCscEzh`O)HyT_~DOl>>K7u0}BtwBE1m~|tlRp+|NX?|?md!q0eNUL-Zo8eZ +Ujlw15mB&%{Pk%6uZR!&vzHpUc}d-4bTQcdawewym0jW381XCj3p%~LJi9k`uTAKGjjXskdrsT;&?~4 +}3=L90JjS{tV`wmweCY632Uu~nPyB`+Mvx!|rh&9kVmB%cRhmHnbAcC&e#M^LzWakK-Yxp~$3P|*lj7 +Y7J|a^c$W$H*-h7S(y0tS+t}zHt{}9mh#D5(Q +8PP8Hg{OWcehEtM_Pn>du!EUYnhPquc=e~HDDMFa$=*rIGSyei$5>o|?3 +qrg#1`<6P8vXyi+!m(azaTA-EzdUU2&7^j5j-k`Y97v%1aU5euaSh8%7PY)&tRqJ#X`oTJ1)MkVHNNv +MG=M>HG^FNn)4dN1jp$cE{k^!Jq^uqzBrDo%0RR9l0ssIW0001RX>c!JX>N37a&BR4FKu +sRWo&aVb7N>_ZDlTSd1X;eOT;h`z2{d9^`fx02X6}timV7C2?JQR&H +I=XMPVKigC08)K#^nvDmmB(^$=Q7j1e`Y7Q}jLNJ=wYK-f@Aj1kg~co%37sRrC(h`5e){u{7$pq>JQO +|8;FXCOqzt9CN4DwnL3-BEpN%fy@NrW!r->gZ5%W0YQ{?cb=G1^gMH_Sc>=>FZu}+jR +tNX|0^YZg)`L==uycb;-h+$pKpy;+tBlLuhSb8XyL#G4mWr`1D%Ww!jLcJazv%57p&8Ss@Ej$t) +apBuJr-tWgMDV6vJx@6aWAK2mk|@q+ADk^NdLb003%p=`XLP)t*u=vX +G@MG@7<;}zrD{$>vvyUsJRzg8jVKJ%sewvWo4{q%1i5wDcnNEfx;XPN*|g}(@s>zsfSAVycwu%QK%iS +gmrSUx29y7@FFdQbJDT1P&>4UB9*H6_9%5`ELNs>f;Qu|S4F!d720T(ib8#sTP;f2U#c_=)}r90$zrsnL6Ns9`PhhPj}Pw~E5c9sq6&rSIG&E0pu^oVV}8OhA?nHkr|88zwK=4v`b}ybKnX( +&r`%1DV{j)Jj;m4Bzymg(pdZ*&-&7KL(ggw-y)Sfvntat2Q`J8=OBlB1(PHZQ8Iz(_}0WF0@kioy|D9Lw +%<))M@Qx--Vd*bZIFmF$NOM7~tTj-3bJ-x{Xz~|Pib}}5M4d#p;rFDoJ-dlQ`BXID8>{2^v0aS6KKyu +O^qd8B5>FSVs7*7Y5>|^ab%;v5TD_IAyt3sp_3ob0tgSi_<2!cz2JB%hJ9sF3TO-qi;(P{da +w}peJxlnr9znqn!Cz%pv2+k3 +$TKTC)2D0RFML_e}&CS&s`FbyrULoV0D;Vlkjid&0*T@6lj_nBQf6yh4LKWm)J})!{h@KtT?XC+OD}8 +M>QSb2hop&~4cdds>)H-(4^YK8WA>&Q+(oLTOn5qG);dW2i<-NpC4YW%qi+!MOBzfmXSc3Q*qw?>PnaW=IIM$I({OZ@ioxp|(jYl`U*D8IeEnr2GWI +L;GS70NHCo6qh5y%cW;sln(4Xj$naNG?=}b1D%~T6(yJB+>l1K4EmKU?ws^;1?pbJlC^xOp_AYi>$u{8_b-BOT~(MwKY;#mPl}XpaY5D5)( +~O`JMZE|;4ch1v?`A(&WzA7#)Y(K^_{I8Bt<%Vvmz{~HnLKQ2*1yJMNb5#=qB*&Wg(?&n(jd_Q{P|bHBX2B|HB0zMgK +{%t!)nNfy^R}Qc&tzO??#<_lAcMkppEUEA%Y3V^vdN#=lEouCjz-Af9Uge;Upu@?GPG~?wSIIy54X(x +g`D#Jlu9%gZBAt*lT><*qa*hepF&ilpXr7bD7@7b(jcyQQtw|B{~PT+$)RrQNYwO@sct{U9{TJ6c?wD%H55JM^IVgrEQuZn|4<#CPHu%9|lKf2s}cJd;c8vXAv7RQq2 +~*e`*29#mPEEZ$nxPJ!-Ek!+FcCwLWIZGp|Dc4$}vcHwqDRE3Bpo&Y6yFkTV*Z`{;!&e*F0lv*G12&* +DqZJgjLnT`}KiPxxV()}C_BD#A?bV?SP+Q((2c?HrZ4^yFtejI5EMVD?w=MXwyC8%woOvSoWY)>-^lm +1~Z+(^|5$B%vgv$?)M`k4NH!yqx3Kj#)EC(YEmX&_DWxl4uji@yO-O9KQH000080 +0Wn#T$sBG9)JP>0N(`w04D$d0B~t=FJEbHbY*gGVQepLZ)9a`b1!pcY-M9~X>V>{aB^j4b1rasja0#I ++b|5h`zwg-uoh@NV89LwP+-H_9*3aou%p4)bge~}G*NC^U>`q9vYj~XhWTQH;(K}|AKiM}Lshjy7(7) +KsNPv00FAK$gR+K;qK!EX2COwQ6HiHVXiRa+m6bAqyg^;|wjs@BYkiNQs;vp$>Ir(AqF-|GA81dSkm( +eDm%|gjC_c?v&RE;PSNDFP^CCsyn`GCqmW`*DJeit!U4T5R)hfMjOpT5QjX|ml9YKwzQNl^U6Byh94N +?^}c5k%BMwy31A`no918OZHXq6@|i*&Sh=&=VmvHR*7&5oKi{OCxo@;MQD^b!SR$mejTOp?N6m=a5TY +zv#44Se|c{v6N~IP$#;LGpuz?UC@Tanw^Dt2pWD8a|)&6YTb<)C_|EY7Ld}oiqQ4n8obJ3ZyfaBP%CW +sZha03GAp=t*XIcy~BstlOr)pdqgb@Yy7vA+^K0)(j~TouW7y%-oaKG^v{Qgs5g;E<{qXQPE^V?^pqw +lv)nBuXCG9V?l49Xl}`i)RyP;09RfU}R`D|>&sQ{xrKZQ23x@WS*ce`1r5=oxwe<9BP@cGQ&!Mwsac5 +2u!L{w3Z0uGa%(A*0ftQ;ETtzuUTwpWS1=rM~)X$OX7By2jFGl)!1J~BP4Uu0D4aM4yT?|deXW~fG<4 +z_aKNBFVJMp8|BM~cEr`T`RkmuPvBhhRADdE0T645LJ$3ad1txsWTBNa{$tiO7+4nz9usoD4qY! +8;it0P)h>@6aWAK2mk|@q+BMNWcMBg005H^001Qb003}la4%nJZggdGZeeUMZEs{{Y;!MkVRC0>bYF0 +JbZBpGE^v9hS3z&su@G9Aw=X>w#-+JonOQw_0^;?t=Ff$v3iL`HRq{v8>_6Ge1gwWS$@0tNsH&j% +B6x!fLKq>!ot6Fm;2*4^l~g$;Wy};d9qEbT7&bUW9e%1L{{M_a@h-H2%8XTDs!Zk~X&HO8z7Av60nkR +VeNpI%sjP`-?vry;}iZ>-9SP-|2!ku2tL%2mU0Wv8EB$OMEmHaEM9}_HL}eUocvLMCo7@a}f+x#-eo0 +55CsUbEPsU%~>nMF*@N3)^8nd^4uxo9iGD;9>Yp_ogXD;J8v#YEbDBL;0Ni(&zJ-yYN6v9j^8vG7AM|Wj8cfxnCo?>vNs4zgOrO)$Cuj7QO1`EA+J5bX3N9XMm{0qNPg7@KXB%8Xo1K( +oMk9aN_FvhOxQLf%$K26~cPZ%J_dc`}c5hF@TVISIGPH)#vV>s1}KFm{vtpLee@^zA%l+@o$@C +*pM<7@@**)GvydV(-vCH3FZ*NgCfR&mR#|iT-lau#vxTbFMTn1+v6&ZB;NNzB{9kU2>2m{rdV?q@6ow +)=J@$a9kkvCnAAvI6h9#ATEtgVc^kii<)PZWYCx)IfKA?YQatScKics#G29|r+W+J##LsE3Rr#@56>67M1#580$;~B_$eaVjjYvfnBGh2^*`h6_vozrofI|8|;vA!O~zMt@GPu!1stA__$!)@D|k& +)BkJJ8}~JnV3l}U^Q~!8c|4`OEBNO4MWXQ7U}4)&_CYEi1&6Vx~|Zku6ajF6&63n-e^X2g>3I9J^9)m +`|dxR3G~$6r%awp5+Cm9#KTt~p1QY-O00; +mBm!w>jcS^|G0{{SM3jhEe0001RX>c!JX>N37a&BR4FKusRWo&aVcW7m0Y%Xwl#a3Ob+%^z>_pcE95- +)5_2rZO_1p1J`eJPhTv=5iXXzlT?8e1}wyxIKwo{{_=-=r;t7%uqA^L5V58SQSj`#`NFN7_3f#pf$gE +h<%$kh&DDH8)ifz7z#HC%h5Ro+N6B(>6)EZOaLNm5zUh&-=4-&x9Y +p_6Ov0w<%0rQxQ%wc`gRS2TxX>YwE39)n@sPbZKnX%Hor}a4Ih^ZgBW0FW)llysAgrG!b| +n^i9^P{F51Y4*~)n=|uiGcx_o6lKnr<1G*gLf#SUC{pWy`21+gKjP3=sfrAnMM(QL3O^28L=o +hhmhh^>qEpu6^9BuNFQYP)iJ-s^ZMIe`PB}-hPbprje4m2O);ki?FnPZ9$6Zkv~)tec#WuQI+EWlzq1 +l&)oU&!Z`v5oYe%6tqNnh;p8mGe(sm=){lxIFA4&iV8=Q^1Xq?#9exjxbeBzAqsJ;Fv=|}${jzcjOKw(HSbY3pjHS3n8*oHaNPgfqJy8 +5=midUGmrc(Un?JsL6hFQGIVQvQEUr|1nivrBB9-Qd2ybjjcBv=juc9%?jul;zwJ1AOGfx?W;KU!Y?& +zJh#va8(CG<07$4W4b#kB{%$jIhvUT5unUiv*5n(jVTVayb0VpycR2Fu%18s;oCWNZFb3*mQf+OYL`B +(|hK0ZwPbTVdXErYs*RUIkQP<7wJc~>%(Og0s|{9oAzefe=A6Y +KZ$_1q*fA>imb63Fz@|xB;R>80suVR=I*pK5g8#3w%Qhk`r$7!g#hWCw(5xDbj)prU@VFS%$SG)I9>o +@qKSsU1Sb4QC{g?2c@c-%gDMenR2HxYdCW2R}q=iNhAnwW;ZB +Zlt`=D&lh@Y@4W-{eU<^D3*6>;e$e*;iU0|XQR000O81DB*+V-Vv3F#rGnF#rGnApigXaA|NaUukZ1W +pZv|Y%gwQba!uZYcF44X>MtBUtcb8c~eqSa?Z~yNzBYERwyVfO3kTM$V)9L&o9c>1#%KgQd1O4OEPmZ +OEOc7^^}y9xByT~0|XQR000O81DB*++UuN5?-c+5ZczXL9RL6TaA|NaUukZ1WpZv|Y%gwQba!uZYcFA +SbZ9PcdBr?ybK6Fe-}Ni7a9x?q(XhQv)@#*qD~>GNs(2Nh?d(=crGi0VNFo9OE(Vay^7+4Cch7q;5NX +GI$Er9KFw@i1@9ybg9LMLZyKUO*=y~6*S>2U+)|E{iy=K*xwfyMlq^Y~Cta(({9c!0a&Z5cR`>HEnG# +hySQ^w02=T4)nE~1R{CNHy&7165dS(G;gi +KX5Naumn$(b2MPHc^@``>tbI_l4ct8aYWcV(sj>KA}h&bWEM1}%?p2J;vwSV*HyogKYyGC#Y?>O +Mh}ZZHR#dMq^b3KPUb^1RqVsISiue7tVv<(da+{<#tS*{1(X`BZvl{XYn8#+(>-X<3G#l@jjnvcISg| +ezUbT6OK@HtrxX`Rfo +tLo-&SQOUI5-zlUwhnA!KfHp4@;6fN-IFwoPS|?yO!mAaYB|jO6`q7pLjT>(i5;&(2>R(~6^%)EsRYN +E0jGisyGvN;aTMhW>9E--6TwyDK7RG&iK3q-hQEkfzh4qn}TIdkYw)FV5aQ|LM)?3mEqjG!Nz-7cpSR +UczP|y9!CpMBJub~PtWjK!ImVF#NQHlGvTaS&h!RmF80y?MCVP-rqP4HX>Q7A$5E0bcQ3>`O{p4QxTGt(< +{vk^7_~3~)4ono +7nfOy_#Zh3q(Kfk~nmfK)m?~JWrRHVJI~Ym;E}p-Cov4j}p*;nK*c`+!00Sfcoz_!XG^8G^k +U=Jdw!LB-FbF<5JY!*jS$Ex*A3uD!0;Ab465zwb-!lj`nul`g!$s9B9zJ{em%l!H^5^d%(^x)wyeJ+& +efFgI{@J6yJYi4s?9pTP=t=Rkc=XiF0$G5#G1>0!y?OlP`v>sPvoA9fzJjM;q1gwSy#HS;V5)EFHhROp1 +A&aBhx(f;aySIb8E_r(|?@*`sU4G6a*&ru#2;cQ+EuYIfwtu!>LVIKrIoJ!-B>*MZIS@O)L&>7iUi7o +~Q7*Ew>XO8=79uwzhcjFBh-<0)MES@oz6@-(FPi5)xmG`CVe{3IUZC=F9k#BEaWQhC`oYz?+yj-6J~q +$=58uo}*6-iIkhr{3vQd%3(>=QMoin^ +-H)Ydv2;P_A)G@MvU}3>n9Tg=Rphz%Jlk~gysipIdVYc|d$dxoA}EQbI7X9QdXr +ctcgKqQE@VZA2%$nw6U7!l}^0S;A#kxLxn8}1DzO#ti+QKWw;2AIncB|oKjwRqXI6IpKrPw>;Pucp(m +pc(rS5;m}R=!mFXoKVm^i6!c>;}&orY6Scr40;ARGSYFP3(3-H!=sqzVDCE~Pp3ZbF)XJtInJemI2cq +a8zU#+JMWqbG>#H98!69-J79m5Wy!ip;TucI962M<+F(qcLJ%&XrUW%D7^MFjw0UXSO;p@6WHyzq9di +!5ox}(eh)S{aU=GEISc49^4D}i4dU#bNF(5XHPu``p=x{mwNDZ7k@4(|O`i_yx&Z2*0RWH6z$5*>&FE +ow7dCJ99gsYRC0}uv^Q*nQ|$YR?(c=E&3AAUHFUNrUnj8Op$@ +GyzeOgWH5dAg~1QHj$gTLmmi=B-?Hw#~N8r%G*l-c;0j`o4zgrPQm~LXEC6hkQce-1U1y*qLPHOWR%mG*G>8RUz)s2BRANFWloNI2B^m6L8Ju#03E2 +P>&>ejMAk~tm>#{ZeYeqbl+4$7U1abpDzjR=g_-`ybw7Z_vy2o_3GD= +PCJc?-)>m?I-{+TctVNH8}4^x3Lw{BzArAc96x;0kdESR#gnWv32{&eNn3794F?XBg#BO{!TgVK#ulL +IAF@Nusl*SuD#@@%YSwLay`%4L$i$VGpV9W#IsS?*wYBNTTOU#1WoZU}Vf3W#)*S@tFXGK~<~5F#OA! +_u&K8EUd*oe6TmbS>n>#9-4MdiUW`B6FOJ2qxRPSRf+VHKX}>sM4T_fhsCs}gcST-7<4N$fhzJqQ+Ymus?~7|qc5TT0xC2&SScgB{$({&L_TWU@&=&~>-QK2jh)Fb{syh@*` +q9%~!roKVOC8CHIc=kaVBfkx3m)-2);NYj1v4|TQkz=2u5jry$+;kK`9arzs{fFr_|io}`Y9+LfRDqQ +@!gs88G3h*T|s8;C3Rz`}^!PLXzd3BrZ@PK)R3bMx2#+M>_)-TX22qKmB-CGc&WCm~tZWexON*Kf7#%anlZ~ +|yHJa@p4o&yT@jsr@B9z=g~;mOBCu-L3u);;rbWkuN0ZHgU*C+VDDKXH?4lq)m%kP|lpnS(=^cr(y9F +z@sLKVU!SRkm3anSlU_C##2!!E}=j-{I%-jv|L9Jx(8bjlm}F7XLYBACLI4p3kVh7OXPVyL@!z +AI#S5*3P5G0y<^!QhkK1Uwvo3f{kx(MWgFT1wf2&+7wmKT_6l}oYG6Gio<_a6Oisuk_UCh)S)+W!@qY +(j6pt&0Hw-^Zeg^Kz)Rbl&EyDjo+(<-)IRqgZIyLJ$tGctjesIn#YM%)$CGUqtgyTW02u_;GrJvOfU2 +#5p~eQs1s>WMMHM^0NuA6YCom9(CR)#$Md{4^H4sDtV*nz=G(%A0lZBhb1(Eoh(94QBAn&0NN=v3it00w0z(&vq% +QP->LHQm5WBc#`>K5H!v5wY}Qb#5gw}Xe69R`vGRUX!=xMvgGw!#hy<_3c3 +f48nAOl<2kkWMr1t0*L}Ka@K5Jqbq;Vei(iGs8i*E^1dpMfD^ZQb&0pPw_ElF#H5qo2F%^OhXxmNj4~ +*7HS~6_dICJO?QliST`tX6$gfqhA~=Bk;O6qx>gW1?V;1P^9nYi`T4g%y7omtqWx9;AN0xYkpQ{YFu) +o1z`4N;suT#r9RbZSkTFpQRh2}=-YQO6->=4!WGC@!Na|EXqBBr8JwB6yh-FWq9<~r;LcE|njZOlZ1> +Pxh%Ita5Vztv=IgmS|$4h0WxlNQ{$6f+^?92*Ohs72Pb)Kq|Ui1UGy65IVMXzjfFja)c-AE2*QBmT-1 +Rlo*Q}1wE>cn8_-9FYeWR?Ya4~h!JT(NHG)%D)?hE+z#{K$E9;j^W)AUYfALQzn%8qb=W)~ku=AV<|T +47?YOEO{>@R?12UGvri)XZg2H$+0!f211>=vchh~&t=z(9ygFT(Kew^jMjE3!Gh#0E~8UzLub*V?_7K +!)ne|Q0>?g2Y>!RenohyZW<=ky6}PJt-<-X<(L)Ukyj85zgD%DFE6@C$iIRN-1jEx>(gJaGMfEHvb!e +F^KM#d^=7H7Z%<&eN2B>OMSQc8PQqDH3b&>(NIAbV_GeJx6qPf*ot(cF0TXviA+7B#}VrU`Ka;}|)JQ%{2qo~&fo3 +{N|23b6fPW3YfWj$Y~Mk3IXebF(*iunqzX3WdJ457PAmXq3?7y>Z#>!!KJokJc_fO +q)*(PQjdr>n*8c3ZY8c?ZcI&X~k%5VckV6U6)!<`2twFkN*QzszzG86b7>j0!_W5)PK}9ri4#+DO#lt +!E>W;>b6Jp?+_?EClN#ARYAv0^S)F=&Z2UvTXWt`D7XYitz!W^+`bgd>qA7-T7{gpIOD3E3E3kK^+T^ +)q-d8UvWFvnoTQM$Mr4*nQ47hVuZOOPNyGgfG=K&!aRR`N9n@ahJ-Owll;wCifZ4~pTrmXu0lNMi62V +u%(@!(M8SWxhiIF* +ZC?jD|B9b<#`WxT`2h&sNSQd{>fHa@^8wDtmgd#rzVU>1G%-SutOuJ|$j0tL}cz4Ka1=<;ulu_XjJz% +<9k%+SV)76#HK?Dmq)FnADZK@#!=rm$`Lm5Aa&6nco86fm1*_zZipyPl`iUHzvyE*vByjy)P!1jo@Bj +kT@lfA_52Id?Hp4lS}DAFkM6n41N35;p7<;?>8hp3SXuiQy25SK!>q@g2a@Oa?a8{|T%TnqV?32t+w{ +r|UFX_}L+whPov3pvKFlsZ%$2Z#c+9afB5(>Z30cMJs1p7v3I3A_R2bbEHn)eDk3l|AIY)Y@P%wBp~G +c#2yn>d9q_13a>>~Zv=b0s3U$q$39VU+k<028Bd5Q5ULLj=dl--b6vu!L$TO0fu;|T1W8NFgH@8P2goQ_Tb +1X(C;P&Q%gEttwWimTY@46E9+3b-D{j0#8C4<47ImG5yL%s=jy~O8Y>*sF-kb7k$f2jH&*9|&*g7SIq +rwkjn*=UXu+z}7ex7ZU0KvmYxLsF6)%m#2e3eHRP=#0U#NfX`3Ld#q5WHoju +4iIjFlHqFukaYp9Jsp|rkeL75J68!n3J@qug>r4@bC}o2!XQy@_Uv?H>kU8C-F;hO*$Ylu*LrcP)h>@ +6aWAK2mk|@q+Eew^N@lD0090H0015U003}la4%nJZggdGZeeUMZe?_LZ*prdV_{=xWiD`e?O08Z+cpr +r`&SUop>nI$0{ytSNYN%}+69U>Xj1gBSO}CfS}~DCm891(&>!D7B=xoSqMyh5u(rkFaOTaMH}r0|+wb +4LeJx5^HY8LxwA4}Wq*J=jw%hGyQyblhJg*P#U?|VoMjIz&-|JvzH=FoO+wqfa4oigsN^hCTq8 +uH3M?D$ov>B~>M;~0PiqRlG>0~eODOy$1ky9OwHsklO>P~~|@5i-o`co=is9u`W%}=R#Dce>SEyaumH +Dvh%^_4c6Po9r6y3Hme*vA_hB!Z+Dx;nj(mR|DWUvXeBd3dGTr#u+??LgMqtkV^>)9#Zlul+Af#?qNtwOkh8yvJ+Qdi9+jkAI}4?dT~!6lQWZjDz>wiZ7N>L7F%(|*ND_g+vkS$?PaCJExv0SY_kE{@s~Vh=gA!MQ!E3(T9=-Cw_YKEoU=Z3=&6eHf4)<@kZ7((JHw}*WG?~+ +Bbs9APOv3F~eh{$_9lK7T$!@;$TV81E8s#|AY~yX-He`tX +OJTq*?(9mjAVmL1Jwk}S0U8_vyC6pQ8vYE)io@{UtVI8V*szn%2j`!#45Y%U9tRN8iY7SADz1mF{XsT +DmymV84FJAF*eD +zlP9PinPitu5$xtA#FEWUp3e>!fuo-G6bn6Q79N@bzx8jh&%w#@J==wCa;J=&AVFJKW8P1MrCQds^_LI5`mi_ +eVT=#;O_hIVc&3;#>1Uwtxe(#R~~Cm%b+%tO8kr{zzbkVl?noMtVNX$HhlLGZ5@$v|jK2L~Ju&ok@r= +n4QUpgg@LSt8F_U+artVklk)hdI2q?F+D#*n4g~V>;2wV57e)NKyR61yW_E3uQx0Xtut2DWKpx+3uo@ +Mze2_Gu|HqGH0Y|q?YJ-Z(-rgfcD#1prF;#&yPyLQk(avbph$ikvmfSnm>WI^j6^iJSlrM&j=0KnFp2 +jxzN}~CX#cxV&3Ct{e)!B?k%Y=@&XGO4Rwl8;7ja#{lhnJj4H1@;+-|%7S*F2uKR~8i2Un^T>cI +PQUnqKthrxWw;RdU)H!qhA}fA#Uf<<45O)fE5ZJUNB*78L^~Sl^h4~f|G>wr-Rp^z^Rr7?j`a9{GR^J +&?|1}i}i4D$bKkYN-;Ng% +kZq4w{Ro5G)y^g-`7e*jQR0|XQR000O81DB*+3JM?X8V>*fQ854jApigXaA|NaUukZ1WpZv|Y%gwQba +!uZYcFJPcW!KNVPr0Fd8JzGbKAHP|E|9Rr%a|)OVdgE_@JpW%_X^ur+JO->wU<0I1mX*sQEgAwBw}t- +@Chb5FjbX*J>uQL;?%!?r)#Ka=Cm}-&RG-b0UEQi=xm+$5yS6S_n(q3p +Z$+9iSvGasFQp(e4E*I&N|W +ZZ6RXzjyDYwqR~0;cvf(wVE<;Md!$Dkx~{RW-dtXOynx;I<{fMRDA~6^%8IvlXCDl&jck(iMpSv-Caw +6b7pik>d~8L-TalmZ=f@``Wu1${%{v#W0mj61Lf;mJ-2U0$sU6I?V!xcf#n<1RpQN7rd}40|&qe!6W; +2_$bH(ROG{MYsm~{!7s{8JB+t#fw8d-r#DqbX6ArlLmbjw>e`$yhhf{J6d7hRegu%&Kj3#*G(v~x74T +RE$;x@-#32@6}=QOw?p?zV2PU)EKn`PMs~A*ywe6tcRuRNun)xuKONnq)jX2s`+K@5E1FDlhS2%%nP`w#?YqPBYD +H5tgjn=1Ui89X<)7ltd_!Q;*VSYJT>kjhMaTCkh#EXhmja^XPKtbv7uB@^FX%<_@3~$@fVTw!!hh`bC +Ev5UWp9Dx$vZ=mY4%tIFOUe6J64%V;JEHOPp^IMbQ>EFKVSUaDg)eoViNVQtm9ys*d7Fj~bx1Ik +IF!>~2kP2+j__V$2gu2pt06A*#A~UadJ9HX1;;pz5MYLki9iY$N|MX$N2EZS|4!cHonPRL2rwFFO_a$ +IYBd$)`DB48c!i(c^6N0-8;ibrh97xESKm&9SN +=v;-&V_j@XGxPr7+pgy{k`_utErYEm@mqw?>_^+SSqW7lk36#^vm>0ss%o8OKl@6J9_FP}`SC%R>4XH +J{ypf(=wiWHR^vz#_rPC2AY?6NfzvtlcZC@63f{?g-$<6EEA|o9EAgeMf(N`i%XNJ$>@*FZZnNk?>_W +zeRej!x@=P5a2YIPNv93KxN|NOJQZ_< +M`?zaVoc!kv%s2_$z1SaSXNhq!15m4Z$$-@b1^a7aj1{Lhi`dy4U*KU2@Iw}!bc4H9WeA8pq__N@#I4 +pf%^?2NAgH|p*8RZlmY-Q>iU}Tjutu&W=z^)@K$t?>aac3oJu>&Da?%53{yFaPjB3Sv^i6q)A;W)_Lv +R6f_(qyZtdmD2q05r3|RT}^vZYbIAusTK6hv{ww;iW3{rS1Dy*iW<2;j1#-O6rki5VO0rh~>KW*^kXe +a1RTwch2FhYj!<1JdB>DaRa9eclL10%x$Bl*YB_@Mt;inXfEL7V|xfawcGu)=B)Ol}7N!lbD%h_(Sx_ +kD2MU{CZD65poR2D%=)Cin&epr4D=LrT8EYBK@GmFw4#qZ>9jAQxP#8lKY&GvSHq&WEoeul6+|zlhSFMdLF*4C9kDz^8T15diE!d79O#KIp_R- +aw>;=Z==TG|;ew!*R{|vhjNO5^#RZWF@k!H%CLXx`FQTmz>xO3cp@g`Op4_w1uI;M~pc1X_<(hP7uxD +W>jOQf}o?%>*> +@bov*)bTJD~r*hu +dpo1xXZ%^k-A}B-GL13m=5lV>!G?GPVqLyc_*&-)|kzIDI$0Xm +;3&emi!Elx6YzIRYQW&^$1qyk(&At6K!@4C7l@54Y;~Nu*=)+a)m8xKm7 +}p>F}@#W0cXOKQRuuUCkI2m~E!3G`;7@&d{x^a0-N17v93~vI_S&&^H0f7_P$JUn?vTHCfG383A>ghu +Ey{(&ZuJpf(Rz53Lj4O~kT6Ka_7g>c<@kE)KaCvZm@bm6cs9z^yCHXPSUMw&PhKP)k0Z*X>YV&rhXxb +-2z@VQ<{9Fjfr{2AK!FX8fQ_BEG07A_k`zaSQl)1O4xH#B?Wme3*hpGO~`d34&P4od=DLEXF}|;; +P+@)J24a0;YqsPl4V@TRDNO+yfFQ#Ti#Z%2BFrRv#<`B$uS#bw+C3(-%GOeo$7Z?XcVQ6qIV} +-MMOLdAIks$oGht`$I@EoUrzK`mn*n>P3E4;3qNEajZTm)`&>M*H+E?aaB@`;3J$b?+nTRBIw#p7%%@Blo3{t4A0 +86(AEtu_*Yh&&-nz!HsD%Cf5eg`7PAy5>|(5va(sISE527nI4ypzJINw{{%R_tYk5K1OAF%?bi?2Rwl +MAJ^QIu}?F52xl@F+{n~P91lf;{LPw7K9g&sKAq34^u(>`%q3`;lxMOy99`bY}xsgK*^;HG66OPq~{GCS;q5yX^T* +`yK64GI)iI~0zLsRiG%A8m{2mPEq38kW8LJJ$mlMh)_J`?f$aC&6gL&Ip@O0a5PICMTJn!4}rLa}k}# +<~OVD0l{1uzL``jEqRsRc80VMT{A3x7HvA-l+fRx0X1f>gkngN` +C@FT2bT9C;0sz~o}v&!sOH*OD%QSwuPeHXB;Q(nf0rRfXx5(>W|2#ryO|4v31csc?epKgjY{;1=+n#k +ld~F&$=lnpu6VC=MwGT_A<`%dk7Ut#fN>Buzrh4_;oX?kdnxC$rSx3e-Njp62)M#-o!)kBzihY?eR2z +SI)h(2XBcv2MP8Tg|U&;;0$NHly2S-r6YsYjGEwgF0Yk;)z^=47F6L#-Rid1@n`lz6AiUtUQK8Hp-5$ +k{(|Onkns%a_|Y3z=Jy4)KI9d!O)N!svcqh#JJeW;sf`tzwSvY*bKF2DX6|G<**Fr}m2 +BVne6xetqoO!3A~$04Ut`o2eEBZUrxgl-7`<_VdWE>CmM;nllDxp^1APx%(CPu}h}gqTbHW1hazx0g? +u%(U*-HwO+@tk7v{nv#sZKS7UdoHwO!Kk=te*Zf)A53v!)Z(W^r=*FHO%8UdJF(@)#2kGm4wRf;gtH$ +P_caqFWf6d99*HbO%|jPfv5a*aHf0ld}E-nKe)9 +c7H0WlV2`Qan9+lVta}kKmECvxlpHcYtLeKs1rSBtM7nONhR8+xCFU+@s{$JYf5DC2@OaZdR0aXC1}?=usX~oq+Ifq3jJR4Uh +$tHBbb%Y&~1W&0os&@iPh~PC)i*B*|!4XWWS$HRQv_rKL89`I&M^NnV#bmLz%Gw6# +bQCU;d?H;flW+3-e|g+4h+60Q`iE!iqS##>%&#I5*mD|GXv&~1e*A`2oGWKuT?%1j=&La3yzRd8>$tf +dxd(`hij5+(8`>VDL6vuzAsG+JFeuj +$k2#Gw%T}A$Gb8Uj_u;+Hk45Y1y*Kg3#S4J4iXPqO-K-n_&#aK-z}^LLlGpCeXtIQ=9q>qJAywHn +^ottIKUEgm2OPg2FTW-kO^c=?oy3ay?kP8fVDU;xHUKp^i5M&|7*Bc7f=%KrS%3O~IKliMh_1Zb4UX0gbtdR#U>`6BtRdDB`F>QxQ#<@72hE)GukIx?-}M(fk*C)s!hC2=WqCEvKxiZ`Xm~;y$@aV;atgwJ} +h>;szip-!FzYR>hac~Rs2~F!WPB+tc^E{#+=UMR>CSsqUg~^E5u}Op6m(7$77PD^r45&LRDJSV6H`&S +7SA6Yl8nmHWKlGJ6BVwBpQH|BteoS3HwvfLglaEM#Koq5)C-Bz>|bXIz)AnNC@+>EQE{xEyOV}Sh+F& +H0gp*qSi|brZX29BTx;I(k(+E2*6-`85@Emg^I(LOZMyO>0o1VqPs1apEghN(e24uM~?8fJCdeEv4QM +gq7%rf*luDKT$q@ce;|_Jel}vI2wYCo?{Gv3I98;*5uvYgEDc+a1yhhPD=_6A+nf6l2{j}~X=KiV^}Z +20ApDR8^S2X2Qij2Kie+g|ai_6ED&Sy)nLFD4uwJZg!630PQwBgBjQ5sqMf#9H=K`LgrGEgRRdD3{K8 +&%$ApcOjLEJi%VG0OPMJ_+NdgOb+)pguKxrahQy$+6PLkv2u?GuNHfJDcnZ42<8+M{wj?$|$0v;*He<*5SXa+-%34BQvE-b3I(p0^<* +<>;x=a`wXh{;(VC^q~EQ=@m~JBDWo^ouNTCAGGFYMlZ(w$gzM?ZH323fIt+k=dncvORm)oZ+Ete;O88 +o3#$UOMp6_hL>=T8Nx}+K=t`tAmjLe22h7i0RfpNc>T01lDt38uMODFQfo(H(B_7Emyl@_OChqtiYfV +RwYEg!y_5l(pi~Vi(&sq6csFG(L{O$Nth>wTZ=p|>vYpD4>1RAh{4kVmK19*eQeYK( +L)GLK4dUHZ-VHGSY4BJdKRt`H*RhBHdzW?Y2B;vlqh1gbfKBgwl_tr60W=_YWr|qJfRzGS9VWD2A!!g +81qJ`jiZU=V7vL32*_Z1cz~^)RKDbVfaF~`N;TMm#S?#jmI@-r8aAvZ~)8n@UKBWDRkQ&JN)Zu_^Pe6a(Y)i`<=Hs4nwJnpBregFh(;^crFkgca3OtHgGX0Ny#@fqy|cc*nOdRrh +`GP_Q-0zHJ6^9Piqb%uAR0P3<_zpGUInsOkhXl^eofw}V-j$G8pnq +Y!eFk%ph)(X(-8x^NzwfB;%A9QKV3(&~iOpwbzN%UXyKSAtMYyD!Xn+vi-zznyv3KxVZ}cef>8wLwoq1gt<{-`pR^WgG(a6%<{^=!Z+ZjL6;bTxg~)lhHx_CX6cQ`KtdTh)F5V6W6K3f86nP +rK0DmbGv;5uD4x|Mo)Xqlp^Ym+Q!yY7H`g;#Lf9SjdBA8VnZ%M;+UQMA5cpJ1QY-O00;mBm!w<+v4ZP+7ytlcOaK5N0001RX>c!JX>N3 +7a&BR4FK%UYcW-iQFLPycb7^mGE^v9}JZp2~Hj>}ch+>oGk1Q8|FNG>_>_RTfoEH|{T&(z$OmlxQ91aJAMV_u%5G=}~%ta6|xyHp{W +Rey%Neu?3O{}?${j!j;vQ3LJ35ztX8)RC2%Xk#!un*hthe{LsJx-TPz~4TuRT4`Vv*)+ +`>a-oK=oA4vpfx*Rn)fnTIO*q=YGa>C2ZS<=SVoE_Z_BjEJE6)&*!1t{5z2dpjeuZ*?XR4Fn-K#k)TN +^^h7`w$#2Gc0|tM0|9yQPoc{Iv^w-(tyD>GLBwPLED#Jy1te-w4@Gu^X4E5mv{oqL?QJPzb=J?duY~p +oiq#yEdC6E>JG`7=DvF%j1okTnzE*~0IdHEX7@;{pJcqdEuz2fR#xT)@6hR~wyo`%L +Bu_F=leI{S-l;@VKbFa(oqYk{`-U3D;`6dt*|G0o33--+T1em+Wq1O8FU=*EwUcl8LcEo+=F7ogkIjq +#tC$(#TxT4fQ&!-t1Wt%oR8K>o98fZ0X%cVYL!hPzh2OV6sVv{XGXPdx1x2iO4`0HmRT=@m<0LMjuvF- +jkBN2jWo2!^6XXm}Hrxxv*-S(tW?;tzYjvL3K8wEQdRf^tML7WjDgPf(HlyFGz4?X3$aY| +?X+JW0p-E%`RRw7^Wf@c_HK50I{|i3#l5?c2iVCyk#CQIK`K(PEMtZk;J)GLfm){fjz0pjMCH>Je2Q0 +!;IVYU^!h9%n2LF~LQL4ID6+}H!CV%8ygfMjd%nH>^>jqgydicf*u?NV{V^Jw4tfSg<1u2<*LigOqko +A19sJbSJ((OG938j2fQrH{cL`EwI`)7CK`kh7NH%<{%tm}O3Hq8S>a)CC2_+aPaptHg_QZ3^=P~H$3= +}oC(COx7LML7(5%3reN=pSmPG@NH3$a!{V{gHN3eYDN5a1o4urmmB3Fv?l);mj30m&Igm<$Fde-4;pd+Rr?cSv^0(Q|)#dy1%e&yWlbh +MeFBj*xAUvL7qmw^T0KfwlV3fcg#Ma?2A7&S40e#NShL+?0CXz>x5_gExdy-|pi7mQtr!o)0%*@~$m^ +-zS*_gePMa<_68*iZ@)4Xz*gJ-OuRl_`;RnX3#vsi{eu)b5%Y(Bi6T?ezVFkv^&*mX9I`r +8i>x{|Sea##(iw|Be6N2=GY~WOF!!9FK*jF`TCT0M%mu)0y9Zu*ZHEEJ~ACHEV-cuu3E33v?47aV|0} +XGO7Pp758xQJ7M3X!1rQ18FWojzHRi13o(NkUPI3*T}FG$%O%9){j!55G~8MKoqj%PsqLK*K76#Qy?V +mK9ac>IlaSN(}pKo4>c(neC3-{pdH!fUCf0?@n2P(;>URzkRRf$`LmLLis{jajtcgi2VlvPLZ1^Do!( +>O*h98Q7zKq7NOFY02txC8&^epH#==6|Ifx3-UVNfX8VGD$Kqx2j;e>q};*Q|U5RM)-rg8qD#c>2bkL +%gl7D$c#HdgX=iyiHaoWWqZV}a~Tgva%&KI%7%w?Q?hxeyH|pS8OIiUhZN-(Kh8UPFeBPeHP-4ayaiU +6btQkzhNwM^HdveAU{Z0=Le>ps2PLS&=1SAz*pG+YU^PG3tbA&!K_<%XS7s%z+9YKAuEO%L3c;*jabi ++MTxh$?J!2BGb?x`hTP{@fvF(>v_*35}9X|m(D`LAkTTBHlWkIAy~5Vc{r*O*%kFiV1Dy-P>rLB0kz6`Ns4l62Kl&I5JUS|i@I&WT#+7B?~{7yuvL +#j!iFZ(XrH;+Mu_qCJmTzm!k+Js9>$&iKV{~b^KcXxe3jAgVcfH?Q4_{!(EUc?*gqdh0PEsN*y&ggOy +ZZZf^*05O}TdIOe=)MLioj<*f@?R0AfhpKYXYTT@U>-!$myb$YeMom#`YK=4M;>hYxMV>nv5%1i*j#JgQ~43!)3$=+JtLyVii0Fgg&TnpKSC@Jk?6b_sn;{v3p*vDO-pHpON6>& +W)$HM@;-nTt69Qm>*QS6ow1F&GmlhPOlN=36xm$m;k|A&@hUpnKH +QC2A=d(+O%MGyJJg6y2|{pTGJ`GefIB8i#7Z=~fu8POTm>-KxH8w~)P%*zR(swU9dwB*Ro|?S^H+N0k +^kn{KVsg`^YEwehvWI29UmSa?H|6`Km2+0Kgp|)J(D3i5zi2Yh6Vcrfam~4Mo}!7r{Rq-J63e2YM#^k +blI)BbBN6f*fi`H6uln_G<{Yg_t*yrW{|m9&MCrxASGdMc}y`5$|G_g#KubuN(!Bz%+39a6VPBF_L!s +_W#VR>H5U{Jlt~?zL7YI#*zg)N198mK+<=ium?mLdVpI)`tw3a9&PlA&G237u1AR8Wf8uf3L_0|h7~K +U}ulXY~JOdGtI4UJ1b%p{rLtKqY36Rxk6n{`tHk3rpyBvVYZn%nEN3_$lq!5Wx%~K}|LmlH$^!wrV{3 +bYghv64}Jv+HOsg+DU`vvt<4I;d%r-2&`4nNV@DrkDRN9*zM`JmHoSmxm~`-HbopNGC?e6O+U6hCTHk +0Yn};YZ~%8TGpY}FKLXdDI%Il~ylmt9~2?(MC)-0++$6C;`!c|r^s +)fhq0u&9wScNde+eMddM0QI<@P+kE@MvPte8YMJgi#P?2_=m~2($iQsKD1l$T(FUZW=j9m0D+`(u{F# +616McvQx6G64hzn=g-~XMUBGD@y90Kv20Haw3UF4VvduIJ*bR}QU$1pVAS#9VY3@in7RnnfI9{YK`AY8_|>y$cFf4t?RlQ3bgKp}O( +1(#<5T9*+8dib=cuM+>i>c#GP`2w{0|Wp;}!%^EjAkix}?AhJV6VtL0R%;%RKdv;fKQ?x2ItFx|Msgux`&0L3+h_<7df^f2VH3d`#b}J`Xt^%5 +q&Gm}H7s}_0qz07RoB`665~v2uFnlTW-teAh<7vx;7Ed}-rea+@Ca{Br+rtHUGL;mrv?9pry8&QJ3s) +ucNfiWJk*$RA(CaWf;r^aSvp|8Y_wzM1y{xXdqY#0Xvy0h{<-B2?K)?4iYu~#!p-NyQFm+@r%I4C>4~ +PHm94qg`N)0H1<>%|3No=Y&K^`6nLv1`iAkk24HfxiR>24LeVbA2@8z>hs>~rhq3G}^BH{b^5&is7Px +<%}&qQBKqvYnxk}}IM9`D4Ny*&3dYUsHE9I0=}>fxZxfNM8AkARzX0u`L$LSLNHUA4Kl^Yx_ySV#0@O +6^|4xM&L`mSC!28n{oGsNJ9g0hilK>(vy +r%5Zy2LYysgJ73E{LV3aH616;wdXEV^4)ijK%phrlBz1B=WuZ~KX5?nK+HbX{m?+kq2<*1-c&+1^Kbrbb`o``^x5oaP_yoG4jjFeZD5cOKqN_pjCK1&dp!V!Mm +dL~kHfi#cf(+6xAKd34p`-&I+Bf^C~yhdZI+ff%7X*Mo+QK(D9Wk-HCJ{=uaAHF>Ho?Z&L00MtkEScw +Y2Fu`Z|uW+S@5S@^)zQai>Jdc`T*OS1Q*jTE@ZR7#|^Z1{*t1ZvkIDORLP2c~g#Hy=Gy{aJ2G#J8Eu_9QTrWO4 +L``j`$MwD|3;t=kX9lAXVJeXkj0J^EQl|g}yRb +LH_&33P!n%#WuBNMUQerLZnpMh&QZWqn((Qdi>7rh^^?MiVx+`SFSj%g{zdd#d?zYOn%#fAgg-#xWO9 +-}tZl!~vPUC@R8*(LdU5a?Jo}Y%2rNCSBSWpRa3{i{H01)OJXAxWa4L(GEYAjL7f^{?JUL#dvo +~OBrfP47E7Y2o?C}MYrzv$r%&HPR12*j$-2<51+8{5*)m0e05g-9U~D234oc!~_||W%3LQ%-Fppcnz? +-V^z_<|NupHAfSiuEP$f_Cy_<9@h3XW?DfhBS%-t@Jg<@$^ZzlQ*a;5Kfna<>k6!0=?v|AbB5zV4ZQO +ta^r2Qi{3XQyYEx_ap}PRrbqc;tA;Lv&X1U0}9rgUNHeZi4f$=96{UAbKC`IFQWyC}f +*)XB9JIfi3ja+Qw>TBxwr2q`T6B!FY`N1ezdGP#y1j)u={I8uA1t?E>`dbH5>Kv;?+FrlD_tN14}FCBWkJKzlKiV!~XpVjx%=EXesn6wnz}H +NVEhJMfTm5LKj>dCy00)$GI9#eXnPDqFqhOb4=p(tK6elNH9+X=HTaXtnitdjQO@;ab!jSQ^PO)fH@P +#UX7LRUP_8uxV5bX!lVJQmN<`O&A)uYHE)JN#=NZNeOm9fN+p1)vwr8lK{{{J~vdE4jf(I$sXF|rKkY +hhMp63V_fZUHq}alDJGqGkaD!$0Hl-lB+%2wYY!f^^<-3gc&t0faZ#tv_gzIRFVoFo_J99wUP{w^szZ0K7n~UY;98fABL^JnJFPpCR; +1A-29Kf!Jv{svle)+2@W8y)VXi-_h_K91sRXt2X_8)v*aW>1*Vn~G?dg|dqXRgi2<4-*N}KV9r`_0^^ +|~?k*by69$J?*h10HB1Q17=xre-8e*qeotFf-K6|p0SOI`u3BEQF +Z>bodK_}Rji2OEmyMvRY&gJViQw2RH7Bibb%ax1DV6~hxa)Uy=U`74je-@yDF}CecrZ50r&$A3`8+ +NZV>eZ}G|G4jEI;)$&-mJxxRO@iWzGuUODy!V5+MT3*&$7E$`U=paHV-@7?4efAM!$WtlVOijuoJ_V{ +DM99o}wObz@w1o5xuac-DL_~P-^x2bUSwP1=>x%K)Xu2N_Y&6bu?U5-@{h#WjEfv8yl5M389+QTPfm5 +yOPb<_d3Q=zn=H??5-i}*W~nk_)0=dV6^n=+9_gkXLqW(H)AUCH9e~TqqlEcZwcw+ITJvbwM>M5RSR! +j^H|@!a{JmKMauepdJ%%%lWN^kOjTY+zZ8#^C-lX`TYig$Q#7Hm4C*%;O@rRG?bZ6N$;^5^U-Rs^ud8 +}Fvab_icCOeoCGZm5B4n?n;U6W0eT%K?U2_az8o}oog)AX4yN-jhR7qf|Err<_R-wkUFX>rO6F1i1qp +T+cV`aF)3B#o!vv7^-n!$3o +H-3<&(WKxP|1x%*`4FB-AG%zr+KdRw_k}_XCM<}VVs8uC{fA(iVS`bXL=g^}$*OZpkZbx5faP{sXreZ +;J6(AKl+rZ3PjNUxdO=eB>j(cF~Op-2ICB`tPZKS4prCRx&$>`8@8u8DePj5dSnKQr3(xQY<^7!-=c>QN$PBk{l$hpA`>eb|Im#4! +nRtj#;HEtrp_j_)z;T$#qP1XrpFP&w5NpJ6-YC@?`Yb?`YJ^6ujdGN?Q^y;*~w*E6e6MOi!tstX|T50 +wN7}Ic`iEX@usFW$v3r1%Q&)i5*U;>;{~UEup6hs&Af|$u_IDjjYFEFNZ!)@#1fU7Q%=jjQ4DXtToe)7ssbK%1?7{LXZmc +Ye4w!J4P4*a4UX?JQ9DL*>8HsGpDri%mxQr=#^CY>+r^6;%&~g!`>ovqhY@3$kEa;J_-vp1qiNJdQ4T +gI-053!61(&b`iBPa4L%j9v9Ueon-M~D$aDCPMNerODE58*uxNhB-J4T)ANu9K)++1@(V!T^jd1+E2R +o#SJDbTzlCp%?BqwScLc3S}{|it{0|XQR000O81DB*+YN+!_&;4;YaCxOy+iu%N5PjEI43r03g(S%GU5E>~u^R_1oFaA*pg| +xk$)U6r#btJvR+Pa1-kDuqL`sgER1Y$}%b7WIKZ>@iIg5SQ-d4iiKgY0v?2xNXk_VE3r1DBEpQK&ni?3bF~6XQ8K6>Py-2vDvj +kV*BB9O7{Hxcme&+0nIw=ZD?=nPVV!I&6C}xW&yu|omJAYqLrTC!+{q>=9jf5(uI=2Zp=gk)%5y6gbX$jnLGRU21 +H`n2xB3^T*2GN6wC|1$+Cl?93-z}(zwQdga%osqRu*NSDxGyy1&DW4il#ktCS=t&3@xuoW>K5C>& +6FgyX2ymk^jPt}RBe6)K;b;JUk%mjc$BFc;<}#eqH*y!z2q?nQ$R)Y@WCC5xNY7g3jE`*yvtYon(i^o +$Z~MGfv1gMJZp4$c1V~bxMc)i%0G`2aQo-m%d6?DoAvr8aIW3J$Nktl>Q$e#?7)2Eqt +Sy?J7w3-~WWri*RCbxe8qsL8@!*WYt|{eZD9uKfY{-XmrHl(#qC%0#udb-125*uhMDd_u_9phT$^E~f +z|R_Iu}`%MF*jNu!UgM;Mh(u+j?V`NzAETSaba%AmvwH2)uGkv+C}~pST0~A7(?&te%G1q_9_9tli+< +S`Toki<(AM7=&W%UifJKYEx${)Q|9hyG=i7Kl`n&-OUg?)9*t@pTiM@lz>B-z+8Q3=RU)Y-!FvPWyx~ +U|+FU2@ghc4^v0EwYbqWUv+VPXnPW~^nJHNAj1{witTHFXUH`EiHV!tWWuQu-mKlI9$EDopPJWm(Kdr +}_Ot=R{6KQ+_Vc+<>!(Oq;cc5?w-^A8` +hNj;8HQ3Me*6^yO=NIbHw+&-9ZWMy=Z0FWC`XiuWix-Zr~Srx#fp3vP-5LWyZBvD@iz(43jGvr$*%+j +u0ZD|Fwb{KCfHTN;|Cav&#*1*=w(fR+{9U7V^gGt!=~bvWMz>z%Zm3z%Ik=f$k=byaE{@^CWa +Wen|yv#-CSvtc{np+9t;nvtoI=U9Q3~*M5ItOR%7K#Bj_GepAqezF*KSQBN1m4zjosn{08?lKWBS*b; +|rCi#69xh4M}SmjS6-Zr+IuegS5nODNTN;y8ZOe@bVn|b3aNUOZu8CC-w_dXy))MJQq?>|%HG0BuX +^GkdxowjL8o*WOtSyK_HIzAX`}Gv=H6&OVaA|NaUukZ1WpZv|Y%gwQba!uZYcF_hY;tg8E^v8 +$RZWl6Fc7`xS6Go&N~Em0S1Jcq3yXkNrR@QPkn1Ls*5KH|c6M73|DAE1&!&(=8;@t6XWn~t<2XK5($u +*Wd%87T*;*S%L{&?uKsoM&R&g9h5r+JZ)Q5vmhkn@@=__k)EcCGeND&eNqSEM!xO0s~q)XU-+1#_chx +@w^?;qbqA)^*GWkNYHic1Qo9BO~G?Q0&vy=e2}PAdhu-?=wNn`^ZyWKs*(VqOoh5%p7u{I95SLJnsdE +-bK88)lJ+#v%#jy!ll`@M-a8Q}+n$L0h*y*N_qR2{}4)DfwPPG}bZX2J8`vzUE2%g5ph6mSCdD(+!5K +d*0~*+{ZSSFs66~jHOW&<&s~Jk)+w|35edP%2?`Ct%goM!>wdhE7Xv>VurdOP)h>@6aWAK2mk|@q+9?10006200000001Na003}la4%nJZggdGZeeUMZ* +XODVRUJ4ZgVeRUukY>bYEXCaCrj&P)h>@6aWAK2mk|@q+E*=invJ!000IT001EX003}la4%nJZggdGZ +eeUMZ*XODVRUJ4ZgVeVXk}w-E^v9BSle#gHV}Q^uOQY4A_0m%z=iwJT-uAv=IzcRrTHBuGirGdZp9rOEzVV_LL_kOD$he0u|r}w +OS3;Xnj_N@6Z4)~nAQxAM7t6K<-RO +J*CP*N)P&&U<)nJ~fDyLs&)Q9}9k_lSd9VZJ7v%jB{5w+7=#8`So*8he;kCJ5=05dew|ULAMwnj_gTAcxC)S=y(RQ +HqApz(8LekrL2GZwTv!`?Wc8RfXN=187^2q9&cT59Hf}4^3f-F?ewp>_()ErL`nzdrw0fwYjj2c!s?y +EGQ69MI+!Gpa4NiagIxQ**9M$77UeHc6y +9nh1&u0oK%k3VhOluho;{K9DNz8{ys#s^81O}<3=VDq8 +ggllO$Yxf7^(KA`rV`007}scH2jYvWvx;s#L}O*MD)y;n12F#E_s^BWrURXCWcKfzP)%6s?*(}##bX0 +tp!!IFDMtaYXs}HXi059(8zxAgqeONhkn)Zy0a(no)`(?zEU{&eeFPNnNN)=p)`GCb>F2C}P~#L}#h? +R=I50)n=P``1jv<^afptk@=<1^!yQbm?Ar-p}9r5}au(5N%Y&&}dfy +^~_b`7brEQ_08wy9yKEV_}Eo6vY#P+yi)L7+pYjX`#aRax~{AtF&sIXIKsZ3Ix0-PVftpIAbI7IocjGW)KN7 +d>L+xR4=vYFcPQKYFTeaJJM|C8B+;C{Z>GmFyOH1^P$!WeY>BqT5SA-q-w;sY(32YM&!^M=%&W?_ +_~{DIh}k0HNSw0waV=s$iiY~rh9TwbU2bb&$=^R6WT(XCVyEy&IMF);Bd1b@jWO|?F7L0hQgFR-Mqk7 +Jt~FjK!IV)j#Q8enc>^hm(%SIA1F%HSsF`5?C+9lU*xeDDfgk$d-2LQQSOt&VF~eH6cKnn_4m(-EWE{V_Ih^kPr({z8zv^heZ>Xiy%Y; +;eqd`+X*~=5mjsoxMQys+lh5qC(`Pa+q+HO)51o0Le?}z&_Y_Yfw-wakt3QN<||854i4LoWHQ6=ATa| +~YwqO+o%j;d9uQdjf+2Uosr26?pCD$-(|1II_lBM}N +LGAaP0gnt0ALnb(3Vsi@73b#H2^<*a^d1>s#`i`ED0|;Bo{PQQPcLIn&wij16$N0ii_L&ZKt +?2UuUcF;iL&ie|A3@>({$y~i1s>ey(+r1tVRQE>(%@z~>gAqhi(>iK4e(v_RSq9BHB(7i^7jlJiAAK( +4uCi9wSJUA7JN((lB4@wkA)9QEJ82|S*@8K(CJTCYw*x4eQF&&xCIde!|ar2qZa(N1JKMGP0ri!*Lw3 +vXIwb}gi{p9TE%iDANW@A4v>f=e03Fv{TAIGZm6aRO3bTUFVpUI77C9{WA-Xz&xY1#Y-P)h>@6aWAK2 +mk|@q+I7W94%=I004d_001HY003}la4%nJZggdGZeeUMZ*XODVRUJ4ZgVeYa%E+DWiD`e%^F>AKZb8xQL2iFj|66IA+E2<=Ad(ZWM&kR2#N-JsidM!}maMn`8;e2yus9f+ +pNs_!#jbKSaiha$6BDAWwqN?DPTrBKd%FB|aX3kEP{NbUf9^6kZ7dhhdAY-~s9nvdaDOyxaEXm&({Gp +1&<2waU+me~38C5hbsgz8*W$o0Gx)?CfA}=$>UCni|lU*L6|H$s?;WF5;S|pD5B9H>xOGyf +<9zX<2+`8LnQElvcbdQazPaFg1tikqHU>Ib83mM_8AAG_yVpMFsp-w2awv%4#hWx9Bf4yW;yjtul~8B +^518E%Iw2xEMpRXNsaUIs}sawU9~_+Xfdd$pcdfs~!u%t39jK7!tw$6{kRj5={yUXsHPo1V&-#NB}Cq +#Rtuk6@V|A4(s)ltae7W9fzjh%^n>k7oW{o&uKi?o*Bo{>O7~wWDsT~D3|Qz_5oP1pd(nFlr>NP?wTOT&<_twH8-mMF +dfRDdz(47)IVMLz;?oXNV`%=g6|{(FBU~&^#26Xbgm=X#t1Nu)gtE`oE`weXX$IOgBt2v#Cko&mM;B!1R{{5-UIQDrOO>61JQzBmsnAZ5= +hIIPbDuLU~~5E2&&4!PQKd7cyiHBXt8tBiq7W{@NtzJS{mdj^mGQf}b*SmlgjR()c@w4sf^iN<{bhxV +S0u}*Qy{K1JdJo-yf9fi4Bng_r!&9V@YP49-|fZ4m=bP}vRU2KF65?c!e$s6bm*yeZ%mgIFl9>EsGJT&9LMDr!gK#yfOU=`~0kzmnuZWR10)^HS<{ +2pjjxX>uH@+?sy3v#N=_T{0{^`RI$CRpLtZ=GqP)K~m$!n4j5J%WApC`QNK02LA;mBA?&O>-sa6MBDU +d{LqFm*z=yixty*;beW&kx;h$OgqC0YMPzm&)KV@bahv*AW2w9=YzcsgW8z>MBpH=Ct|P0@y3+BsOpM +G8|-G7|I|OGKk2J#xzEg9J}ob`?k6RYy0QADYiapWb3vf{4`rBap?BM1#UGQocPl<<6T3O)x +(Co-|i~e15FRaUxPz1Y<7`6c+n^YebR)!ZZ?~4#x8m_M?gQ=Oe1*lX@<2{BD%3@)AK~=E|zV#I?~pIiK6Xp%{42nC%ZjbI^i7u9oy~LO;w%>CIR$vyw4G88cW*+w500`&&qdR$Q{L9$38AQL!8%{o6{RS!qhP0yFuCiY=1d!f?`XS +91m;G>MN$F2IcDmVUXz%^|liq4?p$1||4_~^PE@Z)A{Uy4X-SW9+xZPPdfD^;3 +(v=$<`Y8jxHbZ@Wf8?RkKwJxaSf0M`hv*`PM_2I2!i7C-FhU^Kq4+**mK;7^7V26FeU5m%6L5t3ZqF; +km{R!pc{hV9=iz6mw4Vq2+13f>IMVkOMTXY5T;VIrA`7&fB{gQfd;4I1rFb(`l;0kjgKnXQ|x_DHb+< +J#tPF(Nd*S#X$SQwL;_646xa7&y*>+oU}TjC30bS|k091)It7?!qIVu^`WIt#UFnugUvGldTo#IpLw8 +Vu4mCN0Q)k|L<~^q)4l~tnz9DDQ;-UlQdq1^bY=pT^F*YAW0};|(xF2O5Mt-_y*50rKk=>8}-SomIbK +QPE;;!WMCnBM}$x3pH-#8pLN?++4@%#iiLk;POX+dBr*3Wezr!RAzboIXwInwiS(*{@ChK<=uv%F_&$ +Fp{~F3CzuX^xSJq;Eo0zD$Psm!Hp%UnBQy5F_$<9@@F)aZT;5zU$Ys-4_~;ux@5p>~(LB3%v^jcz^w# +{P5kkr2Fhel3FkcTQ5x>tBw|$L;S1{MZykh^e~_1-%yBnmnHL?9RL7!aR2}#0001RX>c!JX>N37a&BR4FK=*Va$$67Z*FrhaB^jEVR +B_IaCzNbd6U~lcK?4qMK7mRA`=d@_8yhY7PFD1(MpM~l16q?E*A`v%^@rhfYIQLXhq*W@8}y1&PcYaQ +el;466m|%@q0)2OeT}pootIvDp81asrs&5?)$Q-#ir>*S*yONssbNOCX)z7M^7&v{pYin|2WZA%QnleWxZ~?tSwgWiz}#*;RtPKtD{4YM_l(RO{Q78VqEXno?P>-VPebNG +Iw=*?D2+tGLUBUQNOwa(VfO5-QbGl*f7_|H5 +u7Q(-jB?g_6;1VcEXrC#gzJ3$lfof>>5FZr{PiJ2D{Vz2s-9R)G2NKf{a>SG_sTnj~GaylSju0+M;&T +wSI6;^K}%@~y035)nUo?@>y~b=ji`oey5($|9|dEGqZ51x9k>_9^|E3t(pj;*o!jSB8mQd14n?sqS&Q +<5hO0TE+8GZB-m{lnbWphOC}Ed)yZ`MGc5M~mZ#{6$D=dt<*o%TwL5;;JgMwrj2c38;KoxNZNY=q^FSo}5%fIbz|cXquCr%JbRD$;n!7M2< +44Wk9hGWYScx-p}U=;^n0c800))4Zi@WKEn>SSW5l*bxPH+@IM#JrqNru+DceRF0huZGVf;M?B53Bme +*}!;nHnrDMPq~Rf?s;DfP4(uy}V?wo~{%qbBr{EKU7l^85CZ28Rg*pH{+vyjmaa7b4z~}otS|EfO)_ +{)y)`)$Z1?Bqga6X{S;cyquvdCy~^q6Lx;o8l<|KkrqGYntFtG5Ichh4O|3rvSdE!)0tX&0%WM~S@D8 +u^@i7$|&$nk2DPPJu}fXRJTt60~EE60BZYgeqwYN@u;8Fbz&%HLGR`JbTD@MGe4py}0c5nygQ8j|w|B +L0V1;)yh@5DRC=Gx4ELII$5j_wm8@d@UD}8XBOeNxqC~R*-)aUuV5MMT94PwS*rNeh=1lmOLM()vlG+ +LNQYS60ZFQZ)|SnA;#%= +PvEYtjwL)2~Guh<26=yY)Of(>UhL;Cm&S&1NosBHbI8ahv2btNjm?Q7RjYpUf$u0svqber^K(}b25FY*Znn}N~JpGO +aFWB=?gFtkU$aG5<(#DcQ#?*KY__WyBZXcSCo8?cS<>t6oK$zlY+b9`Q92DB^RWCfZ5`JLUeSeeP&aN +nd0xVd0YUxdrH_!uBKsReAZF6S0bCM|QDa(2hn^pnC4@PZFBC=@Z>LjHv-KB4X2<` +~X-Uc9#U-%m^8h#;L(=tS%sFg~b-31{xQhi$I2gBmj`+I*H_%Nhs<{%Pv!;PZ`cPPd^*79XH@ZV!l?J0ckiIJN_t0>ezAw`Emgd5wL +^jb=B*-$QycpqUMcEBGg4apj1H9!5~YqZjghXoo{WJ06A9Ry-XMNc`%i=;|B{T5<>NG{dux0I@QlUoE +kmtg`~^5rGZAPjV1|!F*jddsPMKmq>{W@>SCz`leB_-x{%rc}nF#q->f!2n)Ry2xv$hBY8TYVOZJ@L9 +6UW(PC#mHDx^wdBAFObm=%8f%|A`5ihD~(5UAj7_c*gs{!6e?nCLQu^3CnziTywexXd{iB+z#5~U`K$4xSPg5xv$! +B6fk+P01-TKB~-Uc)H~uoOuYUK$0UBnJdk1QM?9ju6cmFv_u>)mrSH)_H?CawnqyMuVKi#)F*NN*Zlq +*5y1fF03i>(+r7q)_E-VwjNr6YIA+L(nA&1d6)in;vRZBRT0MAIk1DPcaEwK!7WO_S6=IL+YYfC3kz< +y5^F#(%JxEo>7+=PY}W;>$y*1lYLV0x;{&Vy~5g;jOfaH03g&GHl@YG}svfI-i+hBivv3&`JeWeKufZsy#I>wsPqEw`pu(b;pty<+m^H$NC9-g|fy!G1T<4GcnbH`=a*jcye^2d! +E47F@E>%2mF%PS_cm9yx@`ACOKm#Zb_~q0pCL7!S6)djO%c?o-zXd1`{LEvKNnCcv8S`_i1yZrGPYax<}fs4!A5musttN)VdWM=yf +;W{dOM$$%1XaSJVvPU=}IDh?J+${7vodArQOlF?01%#qQc +xZJI3?OYg7Q9OcXVU7;b-9-85d6^7z;R2wQNRx4nwfB+b;;p}P5I2X>PRY~kir+nsNfjvssN@6vDOZx +DbPMl5r?vpECvXJ$FzKgRhuQVI| +HGIhhmFW08*9Qr~(N3iJZjUo@>bx~Gi=}-G@sl2AxlVDIcd8<~{9!b6oI??g|>M)Bp4qp~Ek7U)r!qD +Ufpt)2exayUhh9!wHW<&VwwH5l9!sh&9luz)C@F@<{`(Qj&$Fb-($Zzidn}MxGV! +<2%&U7!0i?J8iV5h!r`oR)hXXddd2PhZD83Hj%(EfXa5BeWX2hIHqt?)-X(rI`rwq!)Ne?-k{13qC|f +|eb#qUMxzP(U5KH`PL19N(dZ1lDGo}bUFYpmm_?v8;BCuRbo<)d3G7J|AHcHQjbb`vOlx6;rZ-6ahI? +JGKgoX?5#}QL?K=b$Lju5nODxT}2z565e(LiMdM}x9iFFuV-a*?xjXW%;;v0&IiN4&yKcGyI0#=mwIg +i!;eZ`J^WiauzZ-p!+m?|__+<^wQ&8h(7MFP0J*%rOPu=Kz&j_M}RV5ED<{Y^>8yQY&)j9p71F-nhtJ +&fUC9O?$jW?lo+C&-H*id|dDxfunwIL!alY=n;acW<71t#k#&xTqWLJwoZ01^SWM= ++fynAN11duJ|ygwXVSnx6h<*S)r+qYmVun%Y};BPP;&vIXc^HagnnDuQw3amR~r*}dThJKH6q;LPhV0 +78K7i!2AE;9uXy1NQc|>VF6rp`&1TAPmNA_|$z%qA{THM +-^T;*x7Hzqq-7!!?yGK%a%g34X9M=!3R$)L!&tb)wWiDKC>rR=;`ko2_`Kh8=tby!(G;ZaV?kogb#gU^7_vRS<(0@KFqmxWW8v@jywdB_x!lW+aK*Q(f#WOTj)TEbsc +$$51&0`PP%)2@ml=#FaIL!F$2;Jb0)|Qx{{U@Tx`gPBXoj2<`G!4aX@BlgGA&)-WZ1G^t+Jl2kNC|TqD2&o?L`!^?DK>AN`0N$d~;UJ(h+F-L_y)HY_9hT8Gqa_}P5fnl9wB4>)uJj;OLS(xbRafbE|| +U}B@BzNdJN(M}u~2IvBb95micQUDs(`sSm#GfCJO|$GcZfE*q^0lODe2^wVejT)8Y6@x17vS^lV};mo95pW+6}j7Cv->h5Qo|Z7p +eWI9Xo&gc&t@p&F%g>P$0<#nLJBAP1m@Iq~%;?WEp{;-1=a*3M9Ht;a=i1E=sKciG;2 +Uh$mh)Q0kMZ7nki)}TQQ?>0oC9LGp_3PkH3D%x=quGauyxdGJR{AnEoeq^lQ4iJ#N9jfX~(f{R=6!Xn +Z$3l(5OhGlb09YUc3QnZCeDk^#LsJ0Q3zGK~966&rFZxBO4a>cQFakQ%C-WN|~Ie6I>7NezKGy(!&|i +!CEc`b#7HxPQ{I=syMghOSKaRN}PT_ri0GVfIHjB0u6!1rT|SwaW6`eTgtQnW-Z$=Fm$`_h!VOG6dcJ +XqBS`VvYvY&CInXZI?hHRYNxZxlyHs5n0v`p5;+w^;XDq!oV?XhF**r3jXavB5V6yO%Vq&-`Cih`Rh6 +tGhiY;t2f1TyY^DSuo*mV>zwk9vZB_Qu$tf_(SHY=>LE4SU5E-7koHA?SA-gc1K1{(GKh=4J9wzsc+h +kn<e=!ok@^*K(GK~!num^dH^MDTI{N6F~7RO@M__^9MJi!{bslz +Ahu+&6Zg&H+@Fj4L>>1z8R5RxVfX360eIq}gD`Wu+<0EZfb&@v2F@rwL*y}>M3+Pw +D@=Eqzb3YR7KwoxlJ<>nIdUM)l3u3eFFtZ})Lc5#`vdDc$4Xmm$0uStm=>o4Qywbg-h77B47)rgTOPaYJEoa?LJzev2^)a%hA+Y&^iR=PsJO#YC5(`;g+qckMUsmSu3C#I +3rg$nIt_K?*C4Hx0zMBNiAZpWQdGG;CP7J`aVnMmk6PtiuhE8zVRBpm&xgOs1H62(nED$(jNq7PTZwZ +u1%+e_MKqyDCNZ>hq%8uHW(>bIcXi)nVJ|iA7zK<_bCZ8|pY~X!tE6J9K)VJreI#M&l5}z5uHrQa?LW +uHp%(3=}ewOImMtCW;nQOVr#|C5Ko>wQ4Qe+Reo~X)l +=B5#V2o%c80I&6E-jnva>PWzkIm@gg-HisgSANwZ}ikd{4pa+Cxs7Ylr9z@KnWN3JC0D1l0fDI64XaQ +I8hzrxqM;)wt=!b=1v7*8vIDR953pE>~;=^5po)y2(W!_3G0tEiyNj-20Ej+V;}}747n>hR^dJl8MJgK3^ +7b6NvD>D!@}WvLn?a2p(I*q@7VS-2G^ji*cY0NjZjD~DK&ieJv*k4ttWn*CdZ@+Ew)XzBAQI2wUoh-L +65^R@e*lIsue%zuAp7CS&4LF4TQ$JJDhdNwQ(>kJ;~$MEV#77%+W7sz3zJU*!rbQZxGS1TWE}IfbtYcm>cFv(ca!} +N0dyf_X(5o~efUR@HD#sw!I@`KwHUoTmN4NRASlYZtq*z=RhZ+)o|vIx8=&$3<3Pl5#1LQDTMFVv?=J +HVF@1rw_I7++#4(w9wuPaqXs+$roi7xQ)8I$gx%IXTC1ZcOLL)vSEcG95KSn91Wswwcybhe-PE6bsCd>Eb_+As@$UCy +lD8b9AxLGk2h9UrU?w*B6*bc07Qk2CGW`#dWdfnO07lOX%t#YM|@KwxlTbDdlK|_@o_}}hJ(=Q%c0T3 +00k1haY{THTtS^)waw%a<;n0S4L$lF;m0S-_P}Qt5g%cK&4jb9kNF4 +S+XC-cFQt-U-C`&2wX)|d$0_@Xxi%(o<=jGFd1We6jAsA?l;k+iRYOVfHc^TN3NicO9Kju&3#Z~jpWR +Ygu3uqfrfc?BTh?QneNFTtrb@=j-at8X{>uk*k?YO7B?*USYD5P99laYV=fx}<+l%786y&ZkSf;Soq= +kB3pF-6uTNoU^NrcLP7U!HuUsc>F`HHP3)|#2l-QdLoc=0wU%~$5M4!n$7}ljijl*hBp8eO0i +*vf^Nu57r({SuFYK4=eZ@t`f+2c=SbsUCdw)xZAvPrnQDGW+;t=*#iOZFq`yY~ilAp1P{`PSb2F +Kdj3uiILz05cv-OoT=7QdDp6v`-6Myi<3$`u4u>!IFEkUU+xsPjv$B#|dE1umAGb$vI8w(`-a7?UyzRmFV7oebi +rmN-K`409X;Xr8DtS3{rc=D3P0ycZ9*^`vOPk8(tZ_VCm9oS?_x1!W-jBNZ#;ovkntg;y{S9`<<1oo`n#P&dKs2gm5TGRuQ +Hbo9vJJsMXF@m^*$V#G$4*Ub+N28%rk%>k`vPoyG(GfXgD2J6gU#Uq3A2{i8oLE8GbWJMMA4CMzK*nT +MbC%XmS!_<&m4{6N6c&^0OVy8-b#NHM7@${+mffd9p{>jFqiYicgQ7tyd#ONx7;OXI*2xo|B6qBn=?% +;#C$lya5>`(@Phk2ZmAnwOYj!2MoL~gX9d792>06^J4&Z*)X9qj#&R_5U+oZ+75!Ny8#F4yJ3!G{jCP +Iw?Ok3GERIV+HWxN{I_j3}j=LP8qm}wRGYY*CsU^`Cl%Dp|=1m!xG2&0)7R&)zbnSVrmre(I1!~<&>s +JsVBW>{o)VJ80-RSiK{`F?VI{S7F0@l)C1mlv|HGG!g;Qh@PVo00s<=SKU7e)0y69ed>4CUu-SRg8M1 +P??dM=*gcHI57L6U~;qMpU8PSiB@u-YD3(NjwM3!f@5?slV3c>+;b+MjtRXC7H&lXc0q6;K@2(E&L6-s&FWaYZb|DAK^?kZi610pMtiV%Owfx1$)=(Z5IYzf +em91QY-O00;mBm!w<(00002000000000g0001RX>c!JX>N37a&BR4FK=*Va$$67Z*FrhVs&Y3WG`P|X +>MtBUtcb8c>@4YO9KQH0000800Wn#T&r&Fu#N@*0HYEB051Rl0B~t=FJEbHbY*gGVQepNaAk5~bZKvH +b1!0bX>4RKVs&Y3WM6c0VPk7$axQRrtytS`+c*$?_g4@uij@mj55+z#3}msrq>G?Mu}D+wLr^HRMB8j ++QYEP*-fsVW&kS{ql{OD+AW1FG^>F6Qs2gYZBFi>)sGZ6(q4$+_K}ch4kU?AHXS3#6ZcR{kq15a4$xi +y+;A?5OTWz-OSLWJ-cu+S8JJHU*PF13RJpEGmQ|Ok!9-CSN +g#NA7oj!if8fbx%ygbr}oN(Ddjro(x*Y~tE|wjbBgb8pp_%0!)!*`C?`(Zw9>5#@A+AhWk&9S)?zlB{ +n5jcHvim9BOx{`)JD`*A%n`4xyhQ-tT|4eJ +`LgHTv{4{AWIeX@v|a5nDHf4T4Pk}Q$&m_z*9NvpeDRYAN{hg0XQdxV +*Zbo)RCE=aVEK4Lox^Pp8(#B4QcsT>?V5$DR|@|3VnZ|StX4}j3$M%pR#c(n>WXu}+ik)w~^9I5%KEX +P{(DO5R)DkEEZb*v)2SLhM#x#3K%lCke)tYKh4N$n5S;mE{2kjMHz?spsZ7Qhb3E4kM)ujue1o +=volvv%A#)X>TNud~0hSD((_zsWAnU%q~KdOnY(f2+f8KzZruoem!ZjKi(;A`f>xNVo~M4*bdC7`?_X +6yO*H)bcCBtrH?%2)`DCQ`+6N+ZB7+H)&mlkSWZPyKw!87*d=4Mu7Re!>ETQj^FS5bmJ%2=|_sC@#_Ho)rldQq-8w=bw!JTC4IPbb+k(=0Jf!g8o +#_-rzB8S#GaExX1^}o$+CGo#|8KG4r4)i6Dh9&^03G$tN&c(091e;8nSyRHX1K)D@pJqa}?P{Jm4AH- +H+boT{W##S-dm+?rS*_+uk2Ik2hb{)F9#tE*wqDQA@|uC7vXhIob+gx}d)FW78eJFjnm*Ah0hkA*L_h +j&C6NfU#(iTna00Mk~Uy7pSE?SAcr+OJhXup+QMDk0alMpE!EiNzV$$RZnT4jT26WeLF)E2E!g<6a<% +G;6wn{@go3CQf%_rYnc##7rNIoZ|w1?G)Of7+1q8R&F1|Vwgkhr%zz|A|uMB~%imzPSKx=M!V(Y+lq;;E(xuGL +}Hw=W5EM@C(l1t +sB-Nt4lz6Gy$jEDCC$V|8MlF-i9AL7yiWPl35#3qjca3YowsDvu=hMPumzn4`; +K2;l^23n=x??oncXdWH-1UF0QE?S&I2BIE-5n+9&fmY@Yu%pS&pC3|BM_?F1eMtHmg|OGHhq4UyRceE +O1S&QpJ{r|?qp)Xf>N2lyK~*&FqL^!YhkdZ5+0n||EvZ&axQzha5JnL^z6)NK6FI&@EE4PP)L-d_b+t +u|DF$z+rFz|!`94DLg)#+(?~`x*Qk+LrIT!8nGDR(<%6)r@*9K`qHBwD!&A-m44CH222d$22yb!Tmw& +rUv>CULxA0;wtr+a(VP?c~d{bjq(Z>uG)37`(KJjtdsOvH9OmYR93_w(de!08LHcX0lyTqb{cYbWAiv +&?B%{{T=+0|X +QR000O81DB*+)&*O!T>=0AjRgPzDgXcgaA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJg6RY-BHOWprU=VR +T_GaCwE4O>f&U42JLi6@+(~4Y&q&7zPB$4&Azs!-it(-B2thW@}4=B&W^4A0@?3+%}yqwm$fhdPpkI^ +IzzN6kfm%6W39GTJTNi%J|p-hs7G04Ef +)n!AO*KKxA5`9r#g!Qf6$MX)8IRtgO?{MIo+?G+{N#--}u1T;JId%WSEc1fRL6jqqJM7_xRoG_Hm54t{IK;5%`tfJ5eb4AdP6*z#InAKK?k#8@=Ko-)|*c9Yya +c8Gn&tp<zG|;1joOJqx7LWB_l}Xp!H>AXA! +;sVe4PuDu@mGB0P%L@d!b>xL$|DAK1qkqpDz!*U^v@Vb!N>SK;3$^RiM&U0HXRMSiFR^x+kfZ^w5I98 +Cui*G_4RKZDn*}WMOn+Uu9%zbYWs_WiD`eeN;_v+ +b|5h`&SU&VK(4;JM|DCJ9O(l4jYPXcSE+ASgkAxlAJdGev}ls@!HfETNe39zDKew%b(~OXP&_x6`|3!6dy()o+9M4q?Wp&biVy- +XRM1gW&->#L~EEIlVOnWjM4ZnJn!I_CK~+6E_HH{P-0-+0fQa=3*3h}Is-8l4YSV*c68mPaE~LR{E#( +nX!zifW>2g49!7Sc*!m1;pgtGGK;+hF=R_~0@W+&)ABBT3edLcWAm9@Xak~JdW+f)x=-O(rj_TaS)Pw +jr$7dz0W#(J2Cs~(^YrT9WW)o{?RzCmqHxH@lxdIg-e$6Lz+m; +($SFEg@CIJ~$=Dnl6(pWSKHwx@RuaV4RKcW7m0 +Y%XwleNx+w(=ZTy_g9P}t&~W`5)TNeQh8W*5l9GD`vaESOj7SUcCg2k3ix+?X|ibx_{Fz5Gv}O{&e;K +k=mG_YLVy}Z>j@KKKm)%ZBV+smAmH{^)Y +_Dms+D+;*}wEMrs~NY0rJw#zZ^xa|#!XK_?E1_QH=UUxxTEdt@w8LkF9QBkz$u=eJr2BZsK0VT`rd!8 +TD5hdrVeBaUxgzpWX>m7><*$*uBrTga~eLA?YGNV1hAMXOxYY~68@p_I7%Y2eknbb?>-#Ts1a(5k9(8 +Hg|N$#{x29`Rd<*Z~be@KF=c9^v8s0V3t10!|ijma{x!?4j{6O4=B|d!OlXvMoM(eL-g7OdtBtvo}MS=N{R_O+BaU1%&xd`cCjwlC&S6asbGn)O-D!avoBOegGO!p<4~Whyoo_th2P+Wg +J+(>bhY!XG;v3GVY2&A;joI%i#7eUM6HTPEtiCmYroNQ4aH(N`08mQ<1Q +Y-O00;mBm!w>thMlxT0ssKU1pojr0001RX>c!JX>N37a&BR4FK=*Va$$67Z*FrhVs&Y3WG{DUWo2w%W +n^h|VPb4$E^v8$RNHQxFc5v`D@I6>K-yY;%ELO%zTVPTu%Pd#YWZ7sFs_VGyrlayVZHONDKZ!539t(=E-h-w1aX!NLyW6DYK>;b(@sj%^vLajnt{hd@9$ZMSr+O<4L4K4q(l +2P+6qb~>wTMLmSqjLP=&ha@qj2OHr%pGV3C3Ug5MsD)w_7CQtkVEfz`*PQtV#s{Z +^5`axV27*Q;f6(et0x}o$QK@Op_M(bM_{<0gD*9;Cs_bw&OWjpZ^*3l?l# +nS6K2QJKvcY2bdQ|CxL-dxx)090sPQ$wI3%{0@`-3&pHdVpT87d=4(>T}U!bej!4dYADiD?$6Smbv^^ +dzCvQ(!33DJcdokaz?qPni}P+XXg!~swP_t%o>}l$je}i2P(Oaab#LQzQER2Qo5=6t-((c&Jd7&?71q +odj8aaw`8LAH88ix$(hlq;g?W_lr^&ae2$XN%Y?#ZHB|U{#S&yXL$HfbHrSZf<{)uscO=@W+z^L?4*l +WJaJmXmz5*{ykQd}07qhE-s%>DsTO9KQH0000800Wn#T+I-#`ZNFl05Sjo04x9i0B~t=FJEbHbY*gGV +QepNaAk5~bZKvHb1!Lbb97;BY%gD5X>MtBUtcb8c~eqSa?3AL$jwhF%}Fg*C`!#qEJ;mKD9KmI%quQQ +%*n~jOIIjJOwLYBPc7C{Qc~gq08mQ<1QY-O00;mBm!w>Rx)mz8ApigqZ2$l%0001RX>c!JX>N37a&BR +4FK=*Va$$67Z*FrhX>N0LVQg$KcW7m0Y%Xwl%{^;(+s2jO^(!XOW(_(NWIKtQvQfH@t)xCpY_DZEX&o +OJB!?0r5P$(tGNV;~``*{Q08qBO+da#3Vv)eiow<*>uemdcqUdB(*HzQ0Rn@4xY`d%|^72$={tY*7`3U +hp&fXkF)phVk8#veWOnBA?qQ?S=Wuf4p}^b$SYuH9xC1sk83P{A{%O)}C#;+>X(1?F4YF%O2!Yo3tcX%rRGK+T1hrvnAYFxQa4#wHBby?U3tcX&CR +ye!GBjxyOB!?XVY1FOY=#IXY%#RpyJV$bZvmnXR=y$sB~SD +YGKc?-sfy9-DrTdEJnVA2&_ajCCujMHckJX|A(ht0rCNCH#A#n-<=W^OTV`Dra`0Oa$wz>Hlg~Gu +Wdc$eq`K4VpK!(ULmZ11aJmdSOh!ioc`jNYZ3D8Lf~cEeA3c74{P0Ek^7#+xkH;?_JbLirLHgvukH=H +>h}ynviW}gyi!;5p@^JF-FULO~r++>E`w6T7dNtOU_>-(GPFATbf6W%a-LzZR>52ra(RGn6Zh*4RTe~ +Drx<+T~pJ2Jy8kV3gThv*A@>HE=?U{hAv!=_t9ZX@Mn-Ya-u(}qTroriL)>(VbJjmPhGVjjvGG)qEjV +!#DfEa@tktQm?X20U`p_OY36OLL0rTy+x6=E +lE#o7Wibw^J^91D^o8Yp8V~3bqS5TOfo*)Q!6cR{W?QiY0XP +MkO;w@G)9!3S#uvv>n-(Pr$0S8~mfidEemp_zijdAs4;a=;DNW9s*MzA}BS5=|fgDBZv!T_B&k}AJPb +SGy)1wIWSa~;^Bn@hcI*yJahS>-fX7=zp77QjrFEG$)UZv+?J5SpfMVH7%#98Kxj%foXXF!{Cy}bmMD +CoFZ!^&w@SE;(GV0ji>1%FDFDc~YnInC>-B*)}52c@oXsKkKuXL}Xlt7t|orYb7+B{(?vAOazYhz>w= +{JrT`2VX_kg32m?m$D^t>?b@>q`ldb(oy@L)Z6Z?Ditnq_;rYV4!i1*A5(L|^hL7)Ew~~?z{zOMVhN| +euYUgdX9fE9>GMa#Y~2FvqEMyQOQg+Qt4$3?K`*I2tRC&$o+NLrY)p9l(ZrCBA}~=ik0#JfF_LZ}uJQ +(LYNfD+}eK%F%Z&~Ev$F~(2HRIPEsjF-DN;diMA?iY!LrRmtWscKG(CbaT7j5jx7D%J_DmiVcO-

O2O=sSvuvF8kOrJe?@t0 +Vh&1~F(40}yXg)i#AJi83a=#d7xuW?-gvRS!RhGAKwNdth+L$DMvax@5vT4JZf(|fIZtZa0%g6>)Y$J +Z5r+X0%roeGqFbD6iA<`*hUQAP$cZ%q@~u*05c)$fT%W~BL+YzWz2__9^7F0_e*LC@x_xrwo0x93~*- +DbX+Yx?pUS?5Q8;=N%*aCl^;qiCbE#BotMoG*A}=rqC@0M4j#_=Um|o1T4zl8W*)?J-i_(ILd+l^gDL +k}a392XA8N^^;c1s=S5aFf2x}JIF)EM7-D>EK_%eYzNW_%a}bVb=Vw7z!m<=PQ=U=;+{1`jXL%p;Fma +`SO)~&f#UX5J*Fy9-}BLXK7TMcP%UW&;(6EAT0iZcitre20t +&(afaN3Y?M)nB#?w`VcxSNd;bhet|9)=T)%X2(=OnOv+{a5ftmoONhxtY^B&V90!ouCC +XPLA~`ei8Zg4WpW0OgtO+FzmG`<0y@&TBuU%) +BhOy7`UW_W!R_iAmvWS_HjjfI_`xNX{0bJTH`7UEcx+Dqoxd?!FaC93f;_2zWahGhMBb0B*?WA*|SZ32`W>MO>*s5>S0)=P+XjjM`Qk2v7 +71+Bm=wG-@|BJa17Ozy!qNO(C+=>foTP4)DnV6Xd|;gk)|LBg!ZRmLPor7*Hy}!*DI4;cccNlI0)Dzz +2f@&)L`a2u&8#gC)dlNN4LH*fCkWM6doH=$*97izON@=-|kngUFKm^n3KrDS4bi9+EN~(V!INwb3jn62Gmt*=8e(7%p@~vLh`#y#&D0YKg2eK;&bB0w5V`4hH7pU3U2s4^h!v2( +$i-3wg1VDagZW#I7bpjv}Bl2d%-Ydz79(J!T}XeV{zPo}7jDI>Z}!F)Bu7Wh1fNTdX7-=B>* +l(9pO@5XXi`-vcc$QvkMAK7cC+=1t@|Y_)x8kdTa*E(U<-FfN)Y06=H}EXkh||wBMovk!kCyTv8?@Q= +CBqj5u8Pu~Oh7YW3{+nfm+>_o+92|Ki>s#A5_;E80n-&~nj)kv0SdlV*$%E%()?B>!_tt#C4!(?)@Ve +=!w^sWpgP`4{@#=wX3+VvaI!y{@~hyy)j7m{G-+20)J;T$%!qDvK?Sg3de=sMeg%nv$I);U~WcItic_ +r~!B)t}t_;i!L;$ec0PtRG2D8Hr53!n@htzJEwj17YJf6FnJ4OAoSK`gf3xeU=NsI#;*N3KRxS!MYwd +3Sk(enwCXPNg``sVeLoNVTqGZDBh|P|10*FHH#sFI(Rai&zltFs21;RC2D=HUrG!j*yGEv+5w$2Xgygtm^cB9+FFTc9~m9II(ow0f<_7cUCO6No&tqjg|jy6GAMQzVoMRd5RA +nDLm>8hn}@s4!#6qL{RGcQGnu^K(vLw +Yzihg}TrKVvZLu}dRN7G@)Ozt?j=>BbhN)xRAnc{-eUfAP2{Xtj0c5kSk0&OlSlajERa@8kwQRDO9un +F3vf;idRgyi+@sAb=(6w?T-@XvU|YLrigR|Scf||FsAGfjp(QzNVj<0z{7~l?%N=? +cVG8daF=?hD0DB~T%garexG}TKB1TxhjKXI-Y%8PVXY{_x67liIz}|-%2OThBjsxHzM0-IJyA4aM+ih ++>M8c#`PfDrRQQE3VG~5!Nf`NzCZ+M(S71SoHf?LYXk&Re>m|sY>Ik+A>F@XC1*6*lN`lHaxIDzB=N0 +AsKuIi2sfNLxTtrxJ7se-%;Uz(%Xik0C?h$!E>rDqdC6Kzg)hbhz;6phw-@rqtx3L%llWGRe8_{4@Bk +)gP&>Uaj(4v2LngA@Xd&oyM_NXfn}N9 +S%0ZaNIgsOHRh(+oawSMH`LNi0nKfrn};u2X%lj?YjWZ^2dxAL^F2*f$Ro3IOtKVIzGoE +zEC)j#Wkn}#rHKMn@)Uz-nE%ho--(hsYq!SpJ-~-%C0dJ1&Fr8%M;i{sqmYLBdHT@VDZ=gQ>#u&e2}Cp0kYD859k|KC0fBW8 +`KYLPxRSp1DJ>GJ-eYDd2vB%`v*hf$tm*kdMqZhD&Pp67oYMYP=pC7_;=?%((Hq1Ug5AL8^2(KD#)d0 +2oK==!2)Q!Z}>wzLKm0pxdgVeTE}-Tjo}xlR`O3=qrvOVM +5nr)lAbn%JnjEXWl6BTC&f*3q7XPyREdC{dem|P5L4 +>(*0j4YyNN|bR#qPFfIp!t^&{p?_vJPnAc<3@f*bG +r;QC#19me$TEFwWxs^46F&)4RO%M8E5hPf{@+M^{AqYqJ43wNfe@oo4gLqyUE?Z8_;b^7>n_>w1ZGrH +mZq)&S+aOH(HsSQI+FsnT@XD>I!^`7376XQsBClZL~}QiPrKK;uqq_#|v@2ZM(8d)Op36M!b>YuG|E2 +=JZ@-W>iQ_NY2tEv!_<5B9CYkrKaOAEn8M)!FW=pD>vY{vj1rqIguBuHJOK6@f{}%PB1+{SJIy3OuP^ +1#E1yDHpclkb%wh3KKm5j<&%RR=1hjhEiYhArAEBxl#f*DX5qTOE%li14JqOsltppX2#hS&VT@?Z0y< +2QfjHFvL!jz?HM@6{%oo_#s?|}N+ldG*IPuhZ3|38Rhv@?<2wv%@f-la*fd3v&p-E7iObhBcmouszJ~ +R23%w$Rn`-O2GvT+&JOJ%>JqLdg(*+&-RJ8fj$0$)R%OWq&4YdOK*~e``OkEgyR;z%V=#2tXsF48x(b +0l7o-3cM&>=53+5`f`?*jLy>TS|<9w?(oTyNuW74*tDE3A9Rx%Znng8(9nl8Wn$MA%5K*JPjE#&!N1r +8j4m2uNv;z-fP!N-rlA!yQnFKF7 +l91A_#W(6s*vf+MEnXT;`qKcbVL$xXQf?p~SjBiSUBUcz@ux9Xa!kV2od*BQn2ePx`JjKG_^CcE6GGa6sW`~C}s6Fo2iF?ymNP|p8fFr&L8i7Y0FzU--E(Yp34j*qT#U+K0+& +}JE?fe1^_1N_DTnRD1ds(`vEmm@r3JIHZ6y)e6&ii5mSK4+9^)bikmt3?E&`q2f+^I18^4t{J{fx;cb +#gPM(ez1q2#pvI3rI@eBegYce;K=jde;T+zX*;vyQm<8$O6Esd?9O_g`DA +b;O6C(q%Otz$Z!g;JJCTQ;M?9{R8;SP5(@_JO>h0zS)!u1x +t@DzE#DehMHv%BPId=1ITQFyG)cz-2K!FGLDTh9>z+6(^fWxDVTkrXD)ASdf0Jhtx;!S*5k&HW&wX0B +u9OF*B*0FjSZwHu<(~_&*E9)UG+$`A1?`M4YDcLSC)Rff<73Hq156I__Sv^)*)9$FO;g?C|l}Z4KcNa +C7>5bGjSPWkYVn_)A<~tM?rN9p`2SV{oj&$;@KdcozJ>XTOIhys31mZ`mF~|1hl22$-VU~r+XGhbrBA +_Wmb-Y(d7}~*v3mv#K+DpWZkX{aBj2w6mAqK#D0j4=3*00JY*1oW-@9LB0nsP!Jrw-^hI4DvcX|m}<5 +Sa98%_b*L!_%$^ChQb?YV24KVyod)1r1Y5?>vwIcS&vdTs|?& +1Ol&unl}osJ=f1TnrVN~UB#CK+lBGwgZ1Ou#@>TNKBEO$Jid#*gQ87NVt8P~em4rUmqqR|lvhcRuMTT +jy$q2dvzI?Hhi}IS=JY^<9;owky`5penRQr_%N{Qtz2~wg_=0YicQwcL-cTO;Nc< +nk11#!cx-2yWN@4E8qjobF;NDQ-SrM*Iy%!F^_qwRRVPO}o=HYNRDJA@@qL(Fv@*0z3%AE4Na*O_Yrm +j2$LCGZGbD_)R4(f~oj$GnbO77>Hys0JFo^ue7TVIO<4s`hD@N0zr&8=hzY?v+FrOE_XPsVq0!ILuUc +(KgAa@=`6M(n@p?G93Nu<5#^`1TK;#r{x}A!;AOuJf|GER`dk4L*8ob2GVC<2+hLF%?IW849^P8L-*$ +a~CkjXDm+J%>CoG%z1M4Gi5SvguyOoh*^9!AnNtxe_up)DsGQk;ZprT1wQQmuhrvyMHjkY-phZ+6=Qt +_e%Msqr9yn?n~|tQUX6Wg3Zluc4)nbZuIK^*d~YtrAp2r^dsl1UarprL{%9U_`%YP2y=U43qi)e?E-E-3&UAiOM$P@gLafW7TDCB*xvdVWu#F@GcYLwB|oM +n_+n3V4sXoJj`b^CHjBm3*nbNR5QLAEc7?6)ng%WMS{;NDCPlgj4aR8)@z&hCJ!EoGx~x_A%9pSGSKtOsOM_9~Ql>E3YHOt_$fwd(bg0>eISLg{u_EBY6D^n!s9042W08jo$14|0lQ8~f9qijv=wX!BHU +y11DNu(Jk#nADY_)t#xP~ap%*}E)n1o~tcn3{sBF@PfwLR--{6* +~cLa}B}Y2)s~KxpJ>}IypS|j30N+qJP^JLXcYsDb&QXG9Zgs9N6StM@Qv@Y`8gGXRcmOxW*_0b(!L>h +^!p{*1>)CP&V99Wtojh8Ml@5L;h}@+lI?m-aek40|mYAX6OX(YoMLhwp#)H7;bua;Z7T%#SE`#kUFo +5i{As056rFLgD7rQnn95{RZDuFv?i>`TQkUAg5+!r-9jJeS=3QX=PtEwAKVz)3 +#A?bO%}37wptb(~<>UX!SpbPiZ#u&)(&pVf*#kgHsNIJNpkx0afsJW;1G7VqWT2RXt}v>xl5{w3ZwuO +-Y1j$5KeFjCHrx(WryxV{Dw+{zt|wk$!&v2ri=XJOsrTR0dBfZdDBM8?XkJm^jdwJ-TcR9n&f&0x-Kp +;1zpwsX{T|$2Zc4WQ!?U{bb)A)fLt|YMOB-i;WY_riZN3wFh81W%ciR4s2gZGBPILF~dl$QA;EvT(iw +|X=fxcgy0jlwelBLrzD)?~)TM5%R*oB8M!qmOo;DB-i?_w^hJ)twZZQ%AW1?{h$+n%W_wuv4;IeGEmh +aZlgN8UBXJqCmjiAL_xD)6hq=W&3lossTOwvlt=h^W*<~d3^H +X_>p%H`pT;z^u$*leULC&uu+drbY>xhB_||8deH6tI}r;3*yCe-V+!9s>8C#F_HBA$u9dOZ2vHZh(?b +l+qP?Kz;2U`WIWtce*?H&HxZC?~8R`u*9W0UMk^SZ+e>s(KB!8zvVjS6T?xiS;Bcn7VV;1t=D^|lGiX +*46$}sed-@|Gl=uWK>xUaWwhj;o%mmtEpJfu~)G{75thnWwc{gxbbDvzW8`%LoqDVKz0;l%?s23&9JE +#Ir=!;5HTH4zp0_;rm4R;$PukLXXz?z~6oPu$7LGX2J&0mOxW#C*k&%qp7t2ziT?8%rO&{BZ0-MEr-! +=x?x*T>thqB@9z}84pTeP5kc6qce(uX$*Ga$<#@rk~Y={o3%)G|K?A-HNJ|zqdVE&Qf)#oo9jefX)Ir +-yJWpQz@6aWAK2mk|@q+HL(SbgXN007|&0012T003}la4%nJZggdGZeeUMa%FKZUtei%X>?y-E^v9RR +&A@>HWdEuUm;QkHsl)iHQ=(1wWBav==$vvgkm2jS{2Ea7ap|*hi1fdGwqY-CnCJ +p|l_EsDV<#uY=N-Fe#N~mMdwBBG_6b1hkVan1ni?xjYxW^OCLC?9@hAzkvkJtkM&zW0tjo83QIFlBt* +=10QP2r3EdSs9VA7L94R{W9W(LwCxwBKimh{lQUR^8_R^C38_JLph0iB94!~74&{0 +7n?+{&>ioDQHdVi2T8J%9JMl2Xa8SQb@L6hEajm3WfBKsF!r2vy-t@w~od-h&y1J@}|@|A82*(L)D4p +*JQtdRkH}JvO%-h~UOPuFrYg7ZrJUIhWO=9R~rA7-GMn`f*R*Dhbo~apKe~?P6iZmm&S4`?%`F+~8vE +`0q)N;(6l4s)rLi1Sz4*9UREt`1bEExw&%?UFHR!f(q+Y{67UeRw?V1CI3uE^wx_CdM~VlhMs?3+n<= +0)U=upuJBu*y#qNZC8qTeO9}rpHQYkJFx*>p9k4eR#;i*ZsXeE3`o}FnQWLJG3%~G{m#RJoE!A6?|py-_M>2dn}^K==Z4_ +j>zj0eL-BGyDC8(Q6lPUrTh+Gv*&@Tix&j+z+~VshMXpvJp3xxxB!|$^f!T|@-j;_>h?0$%lUB)|>ub +0`a#tV>tb=R^@Cq%kR^Qi~a~_e!<}utrZQR#>bJa_=HJUkhD^KWWE3t0QIG-DNqahA-- +&}}wWK^!pTQhFp8_Mq)qTh)mX6MRnSuM*s;c7MvIHSt-{aL2w4SO}LZ*p@kaCyxor^KRyyY+6-RJA%edAF7#&txjrvW9O;H0 +!j1f25KKY9lj|icR_hKwYeN<+Z4m!{Al^vpiANL~N=XL<>M{L|SG-?Y7&hZeZO^icDttB5eR_Q}K{$* +C;>$;nLEJB30^SEsHInT1yzKXisz5G_n@EGLtndUuNk%FY;zjHvy8UrD_<8q_tw&9BdGA&~H(?V{ExE3*DFtO~bx~}S>X&aEKLdB>QX_J5!HFZ@O2(ResOTKtub`IkEl +bQ5p|K{~XyaTz#ZwF=-IVhf<^fi1xFqHOh#{Mt<7#a-R!T*U)EjCEMY?vRti8)iOL%;_n6BA=xv)OO0 +sOBn3>%}_1k%Z6q%uTKq&LoXPIxl3B<%2xqc|Cbw$tJ0f!Ic%mObbs0d>EQ+adrSDySkWog8(mymUe% +57|Zg(AvX(kcmPX&Z%8!0JGk%YRI^T+3g-+>fYlw!BVYlSPEL{pH~^M!CN2n>Krj+j82koV6ih +}2fN-}rS%;k|S0^WEEy3{5jM*|4sjX! +QbgCkC+93_emy~A_0e-Zxi`bQ>Q9KR!m_lbtKNe5X}zU`vv@(;3e^k_*+%Vt0~cI11r`NjB~SChjsAJ +Fn$_^mlqfRyu7-4dU+N7M=&AAMl_ni!xV%-SMsIUFeDZv5P`Bv+HsqBRad)h`1>fX3BxdI2lobjrWXO +fdH^I|IHB9M1gBYcMoctZO&2h-K=j5ChW|_*IuM1FY>+;hCa@>)z8a3jL@x(p^(OR%jwuL(ZILeIx+) +;d2*gtjCoZa6khds`J^T{o&o+p{rK#}TTq$pp7JZE`A@7W0WHGS7zuyvm3ZgHVE1X5dJjDP8gc~EB6_ +}tBet-kSK!&bi#8u=NA-fBMHy|Mcv1QDN-c$n#a5ZXiUl+z!Hv +%iGIF#OGI5C7ysv{5g!DMB3co2hc%wMfS?FNLOkGh`o6G^7U)J&LVRva_#>xP)-F!GafBfr9;sbczLz +1b_Imb#cjG*Ob4bE#A&TJX-R}2QE*%3j3#0kFeDyO`Fy*BANOLJg3HV%uq@2iE0z+p2KWigDwzq}TDo +e3YKtIS{pLZHY7UJ0uV@(iE$0mecZ&HD)S(R#L}0QGXDNn%-@Un3VJ3o$yZfs^M`>X&3F05BybKk1E} +4Z^4Wo#}xcyCr3xxKdaaaa-u-p4Po^pSO+q}0{oV^#jeDsm6BMZ%!ge*hPv}=Nsg`c$cK^wHD-n(Y(N +7$reG(6D8&SQK#5N*45S*ZbY4HQ8E2h{B~7X1GKB9drxA^Q+GEaU8Q*$d!sc{ys(cKerW9(NEXUWjKA*1=OjRS%6;I?@ps&TVnBHJwJ?O7W@rNO7cEQ +Lqop~B(06IElbl3&Vgd0~qV|xb|MagB3%~&ob|IW-BL&tz6%^T{b44{Y5lhBC!uVS9>5$-Z&a9n<0p5 +4Yu$&*Lz$m?S;8BHfcC(Iih-K^00}xqypNe;wU{fp(+*Vu_pu`{jkMTuw2~KLUmW%6-_;_%2JfXwZ&Y +CS^-eu#+V~7;%Mj<)E0BJQ1B3C^)q}Eb_DOU%2ELSTCU(*%k500pI;|^DVdQ#`EGwI#+nb5oaevyk0$ +BE~9YS9L04vt;H;Bbnjp$XR!vQ3Ul%o05N0sw}10P5SBeD86@O8mgcr+09xqvmrEq-!tIG+gv~M_Xz) +LJI3AAs?iq5Cl{mJFZ?4%(qvdcP{?-CcHCY@Q`%JBIv+)-Izd50_GSIbS0!AcV^S~QEbOX#w%i>+rTBYT7c5bvC_Mgbq(r4RS#aDoaaBjeGO4z +s`6qVyIk>{!{gX;B%xn&qzhm(NNyHQ-z1>1J@ff-HtA3Z`~hGuwe#O&j>v@CSGzj#cJUku?9z;o9kKu +2938!MvdrsF0V^-5nirZWD+EXY@7Rm&hks7p8cddcmL6qq5mTcUH`aQSM2+ +3PLq#Tw)qZe5qd0ark4dbvs7KRv733r;xS+;ajF*^J!GpNQ$pafe4NSoZWRVEnYN7I+3(aDTAm(C0cFiYg<>Sa)2=;P21t{% +UhT;9f!{(8ev^ab^rHbHaYR}GNa$8?+8s7PCRVew;pVsO%|IcWVAGgX>+HNfqY@#mpnDm;DGjlb{AM@ +#2C2=Pc*NHN6+k(jx4qjCVv?U_IeS;{K$GZ_E1_@DCQdZ~#{szom0xWA4P%rkg_`bF9Z*koPuIQGEm( +W`QLn)>k|+)1+lwZW3Nnfs4+6{%C16f~jDd?&Vzjd4iM%Gx5K&;IuE|26ZjWO`3j~$Q7oAl`f;$L$%U +-2;D(-NtPwIR42B7YPA+6wQAMxWrwxETlOK8;Q2~C;k47EdP%y&=0(}AxeJzF$8h<)ATA>cI&NY-hLX +8ve@k5#uP18jZ4uS!MZrvtrW;D=XrCTwZm6aJH{3M+=$RLrXiivX`upcCIiC!JK>&!37cUo_k-E5Lqo +Dn105cbVqMi9SqF_Bt_Ll%WAzS#R>D-8=VQ)zC;-Xqm6DQG`V=4@2JbIG&_FeQLFBE@ux9W*EU&1L>K +frVS-=$Ywn1qa3Iz&;o{)UDfL4Va50CSs!_)ZGb@CV^4uH4StA0BX5c4nR5&SpumHG*!PuWd~fRdubBBEObYnhE`k48_*Z$d +mvQP=ZbkMTq|(%?=2PKq!I9+I1TeJ*nD5Qn7Ipv^L)1XvGBy@jMt`ZFC@k<1lIh@ZiS}yKE&nAvb+X_ +Um{gOD|wTLaHK0K7S`NW{FBu0N=>+t@v+CgL$>dJ%(@L&i=kLG7uG;k&Q +yoHlhjWhXnoiEndHiZ#iANn2NJXPD8oef5@+qb-}QclvFQYZ+J!HMsSW*1R|E1?=LnD`E=6>Cqdmt&qpEaN21H +>2f9hiBQ$h&Vrh=0~24aL0zuiFl>@{t>J0AV(0~MvOgjf*(j;{{H3Pr$nkgNP#D9` +0(i_U#%OVQ?ybpq*7_Uci`}+gn)$Ob<(@6(n)=lX32K1OMHOJ2FO@dHUmDg`1Yj{qc%b_%H?1li@#|r +aR%0Sw~e>^vu^pV#2Q_TP>cwjv6bkB|2n1Y9E9sqTT|LSy<=H;V8SqK;1_ywbf@RmxPJwGF8e5XeCFDtBiG}eLOA`To}O`Gru#`|=d_>j +&J^JJREqtw*->}^_Oz0OKS;0CI{tA+J}TC+KoneUp`5q9!?=d_7!^mS^iT@DRqT3ArAo||HOnQ)=AcP +MH&?P9IQWylOT`8Oqh3Hpke2tL=c+{w}XF|CPluJ`;56G!Km2_zpnl<)-30%+yVuIJC{T{E>Q*Ki@_d +jox|WzI7@hvE7g_6Kr)9QFVYmNWX`buU?aS&K7r*WF<|fs|y{syLXF4e3|w+ULp|^vKN*I|+Or{9##e +vrL;1cMkSVhJg3aFMa+~5&A59a%p +;`;fNkE%BqKWUaFx(@%k@m)MY2}Wl;osBdyhIYZSf=!}X(8H>Ys34Q=9~G+l+n}BnU$=+b-8loT9cQD +nZU^50iN%-j3#;weyhMBV=VOl0IiUUFe9;x;v685_ygBLq;mI96}D(XMZb|*^!XfgYaPW_G8s#v3RDRSWJhCpI +p&Obx_QeB2Id-Rb`?<`_MpJ(J;9ZilI$7CrG{QZ4FyP6ucx0Y|^fJ +#r=dk}Gx3`SBaE-PPNQo;1`A*lJ0q+faY}^212oxJ_fc490I}d~oIXh}x~z9evMel69%SPVM%A3i4=a +wK!r%2i5YRUJaap9|{{h!+LbQ@YuGUUCDD$941v8tY{?QClb?AF;B+ +f2OsmKh#MeOH9a3lGb~5V!=U4%u8emIU6RBm!@&=o4`_Kea+#Fj(7m{n4dha&<^%g;@p2QXuYLl~F7l +?>gW*y%Olh=qFR#@u_O`q$%<&+oDJG5a=b_ +Yv{KhjVK;`_DgA~Q{Wx(WH(R6-bwTujSptVmdGiqRTdBL@Rh>g30e-*s!!ka(dW#3u&*&Vusn +vy+=bgs+ky7PbhOwu%TiN5Mfygqr5B#_6_u+qKB@wW;XaD_O?plG +sMZ`(8=$ByxD8RwslVLO3$-g6Dl~8RG5$l+9XU7Switc)ge6ix)AvL_-RzF#2*9e*!z$!0;`MfhRLY8 +&r&=A4g%I0^YU#}^343zvq_|=o^5v;{OHvzI@;euXN>QGdx&vo-adSmw5Ab+5m;*7$I0sv&!svc9qGr +5w#^Jp&W~$$_6zk-r`=%It`rfH>cw@g?*bM2H&b=3WW?=Mwd!k`<#9Lf^^e(?ei1?vVHhXM<;x+cLoT +7pMex#}YW~9;d-~rugpI0}BNhmW%k3;P`diR(SFJ<1{6}qII^a^u!JS@I=Z4Qkz +ja^-4ZYMS>{EB*2}#r`W%r^|8(;S!JwC)Vh3ex;tL5=GK;Ds8H2sPs_T29SM$5$@<}uN)!m!prMBSY4 +!Pi(lOiI`Edpqo>=8mWwnV)M+`wz!If<;FY))JQqJo3Q&5qa{z32h%`bAAAPobv3yuJ9#n$uUCkZ93- +ANoP>#>ZQkXf9FR^Qfwe1erE<*XR5v-IthrIEBfn4^VgxnOVJmEQS3?qhpe%eslI{J}}J)m0 +UiW{PE=_^iN>OLA*JV_(6{%jxWWeZ>otAH&B%ZfKx=J|q)!Z-U>GwngW^Jkxhb?Lncg% +XZy?<1z+cM>tTTd%%B;THoVI#Kz=(Nz@X@f8Xeb5ohpykN+~_6!FKk{j@*4@Nm}>0hv4HyjP)h>@6aWAK2mk|@q+IQq__1;V007zq000{R003}la4%nJZggd +GZeeUMa%FKZaAj~eGBYl4d4*F=Zxb;Pz3;CW+#b9%+0t?VB9f|ylnaHbst_Wik+VD7ntE-^_NtV^e`o +C7d=(HrM4R#Wy?O81va!YmaG2H3G!P!F)Hfiz>ZyLny1JFNSV$evX`zZXNac&tG**OFZ!nEga+zh9(| +6O)Fb2o?Nt0ji!QtT{@RN(TgpHG#82&gNet9u`Gn^mf`(J(BDGed(FyYsG{3jI8V?96U&+fA<%St7@h +l}aOtK*l`?Mi69^; +72r!JZ6K&DVOChfg0#!9Sa6T39zf%7M&N_XVK{*gMq|ewS8OO~pA4X1nmiu2Xo+aCBH|rGEfsEHXx1> +JKZEG{yaT+K;TDWVy>(&$s7q6kfH7-B{hH+DjN#Qw;(X6LO6(k +g_<$o0(qf~7L$9f>uqt|(r3+}J|ftfNHrl#Qm{qU$eP^nw-NjMN+5aVe>Bc08J=nd!UmLAc;!6rAk=i +AP1_rnaNeeCKR!T-u1U_3X13^Obi!G0O{Yl?<`b^E*V!xANmF*J8d#+k6H0FxnwmU)S;K%@xXs%JUw7 +a}<-Au=X@w6sqmQ{mcC`L9V8E6yFQN)yMPqfAhS1H3Zw6@9}@h?pnsq2ni}f*HD{~(h-qnmHA5U=qdA +-SLxGXXq{g7XTJeZO9KQH0000800Wn#To<2`O40)W07(o004V?f0B~t=FJEbHbY*gGVQepQWpOWZWpQ +6*WpHI~WMyt+d0%I8Z*_1kaCyyEU60~66n*DcT%`{r5|bZ5)k@XuM@QOrtLeTW#F)eZZ;hSWhFLn|zx +Q4{HVK4nceRzu0|e)O`J8jF-59-tN=wNrC$zF9TUQ``&TUPzSHfUDXyu~H1s^e;7^uD#x@l|^9mewD+)$+j2=VEbVv`GP8f2w#(ReS$_5kg_Xipi2k +ljQWEtYcC#T6|66#@zN!NLyBV*D@C!o!&_))|1Jk<_)yWSiZX2TONMqAcb`cw{In1SZ8K{U(00ycRz+ +V^mjf1{A5|?e}AKZa1IC^ST%DDn1$BpgQ$582f@H?Io!W{n1N8h;Aw$nZs$wy@dWm$9Q#yGeAq`OEVt +LYMm!o|>gcvaLDdxMUN=Ob!+gp%)M&Bt*OlmdV7KsEgJk +ee%sP+jnpukh-*W8YOEHKgqAbfMwG%YmDrCb&+P4~#te+2Y) +RcLDTekA7&Fkl2Hibo!F;IZYuOiRGc5z7Q>^=^S3B-@~;0sD;YoK8n-OuL$(;O>Bd)oSKrcMoI!m-vp!EBk5vxAzn9T=r|l-HI{y6s>Tgpn0jTTsVbCkf=Th0hx30hg8VIjI1=iB +b@dqf(zy~~_vdm#KTeyG4xZCdd2_FoBY9=ZlyHmk~H`!i`@6Kz5o4dq8rZYo6-LUP)h>@6aWAK2mk|@q+ +IA`U;OD8001da0012T003}la4%nJZggdGZeeUMa%FKZa%FK}W@&6?E^v9hJZX2^$dTXqEBe8cXK;psE +IT`inQ%5f=!rJArL{DZWF-X#$)<=H1h6b$2(SC>p)v|Jmma-}16+ +**Y&ctFxxf%j;1DwWD=YZCRSG`>tX}f9e40+QONeItjm@~*0#J=ZFP +}oq3~1HKW9bHWnH(cVJ5039x-^%|9(18U;KIg;xET+M8M}yR&C|vrT68r+2|?Pu&P(8zndYU7uCL*L7;D1XuDODi*n~*jKs&Y +W7Z+GNVWK(wo=A4W9%n#R<4`_7@b(@idxXljHH|#mSpD^S9@LUhz +MExop21KS;j)CIbF?z}{rtasz1d@+NPp66eHjvL;8w4%%)9;(kNOu)Jgszqxz!_w?sy?~b26e?3o+K0 +Rc&dADKRh65|y#4;KV(y7;s0!# +|b;%bvpfr!ms&?5ESylXvIym+8sr`SHoyvneZJk{5a@lO&m +F<&d0^{9Rok?+^zXi50Ayg07kjYxu{m$X8ZSF&m~BS&^oX4>$C+S0`Y1IJ%8N!%j0tr)Bh0yp|OA#B&{pnb`Mdtp +^ytL5uShga(;G>(4lQy#p48fjzOv$R-xbqJ6(NdP8uko{Kb%M5OQ4`v>KqKo}auqW4SVyS=mjc%aTA% +`qTNVqwmw#b8L|@WaRuK_Hvs%c??YeXj_rXkbs_Qx)!x$Yy%my+o~^C$VkA6oDf#MspANdk;^6w!(!I +~iwjGlryaYa|9--vzFQysJ{nI#^-mtl22UREZIM2o>qZ9)zQ5gTt6j0L-O=~5(b4yNTbL1#zTZD0(ap +3IBf*FCqX0EP64WU0t@{#uo>dw+ZNUQ0On`ub%z%`doL0o|1l}5qhL#r= +@F}T=VWVmBnd__90EdB8>i|J;NCMi~r)~>>L&p)~TqvmVS>%RL#inuPl#CxHXpgnBwYEVcw=nDNos=0 +(Xk!vfA=CMK{K@G)muUD5ZA__I23_mjc|)EA|VxmnEkrpw)TWR(-SN1WeU^{fyA5kscb*8!2P3!%@m= +3ZmH2d)8dHrWVkIH|aYECqt!wsvB?%n{G#MVDN47#4Rt@V|MTZbr5(6vZ5DFh14X$!L+4o$NNBA%V9t +p`j`R0NhP>6C0%L_t!s59FH|RceVx7!*k3tYRpmnnX~17XXLQ>aT@D(69dPiY;2$Tl?j6#d=*6R}Ax- +2u<7|D0HuhIih@*6orhaHb<0XVCRyhAjL4)H^-|7Q +hs!s)c)U8;wS2^w}n!bSsz5o4hPC|{5x@zrAlj}JiUl|9(5LBNcKI2Kn^Nm@jfdcqGrS)iEFpg3q&Itbfj9n0#v*m)tC6fS}qw6oH%f;?fg05tf5K!ZBtjK2zu(;JX +X75XzEwboqJ9YoOu=y)2c2~CO&e43(fm!>4Se(?qNxElH;8Uay_&h4I_qoI=sZP$@t5^Fg>q43{1%l; +{{1;pc5!&la#&4w&sc*k17*>FisE5p*W0gKyh6zk3gtZdpSwQiBhWn)Q=ne|(KbE=fCGs~L}JEpm57m&+pHrrs +(O`JTE!-oTWaeRxd;YbqKB>m4au8jRe+h%N~Es=^OY@UG)p%P<;qYvRRwel^z;DBd=eTAWZzX7^sp5s +1bMk~sY^5=?XgC^5Co6ou1S-M7D4C^)Ui^xE$<}nsg8=Uk|T9DlOjY7A^cENW=NpYnN~AXrkknUrfFn +v7UHu{VUVgNK8_o8lS%s^z8IL#@)sN~FyX@ +|G?pyFQT7)4ZVf@3D|hKeIr@7bcozd9xuj|Tt*QfXJA7Y9ZJ10MqpUCvmJG7(t00Fd;uE&rIe;B5v$j +;EeHt0@NC54540e*!)b@`FUg%}xk4@8=gvE;84By+U<}tC;l=#S$l?BQgkD@R4PS=wmTmZ1bOSj_f_Y +nZ3Oi@0rPLxY?kmqT$cX&q+|gXYSqzK4V8y4HODsX1^NrAAq9B$`)N=FkIkUqe-sdXI2ykYQKR^;ce> +49JHPeIRZsnS_o(F)MtWFD~gHj&DGdtxlkWxXC%p1t2iQbBbP}&kCen-Qtz|)gJ#Jaa8|o~3wncdOe7 +3CO~|}}<^jKBZMJ8JY(Z<)rGw6K2;;z4p@n_(G{%=K{hG1Xdg?_1L>1W#P>}nK6f2K)*Rlr1)JaWQUu8qKX{Xy&xFS8Qr+ +P=Vb5&6Rg{2b_eNcj`Ngw_ryCG1d>VU4n4m_f6X9fEN3Ip1h3XbI&mpvb|1leRba_Tu$%F!$zU_s%s6 +>_DnzFv&ZRyz;<~j49u+Kck3X)KP{nfkS}Ac@x~!@|UGr{F5&`lm;Y{$P2Zuv8GbVQvFloH&1z-C&-U@%0+85vc=E$&|qe2Hhg00AM?6NXnfo9-dUd?$)RYJE5 +ee8Ziu&ZL^(NaNbhPf^iJM7H+YOS%MQ?Rir|31C2d$Ps=6hI9-LZ-h +i+}fjBF=P1Rp-7-%1uK>E0Nzx`Rohs)uXd1ewZ3ai|MLi7;AK{TjpgX@M-P67<{}b$^9O&XBSSciz%Y{NWp>1yEHWu!%d~h +XfT|=4WwoxGxJks4m-&ViJMbUpp#T-teNL{ih6eo!Fn5MtVNpNMR|~53Gb8!caz9U`rAnOSX)Wg;G&l +_$b@MtW0{CHQMqq?L>`|+RLn|jyRc2BRaCcld6YpGI2aAK&3qke942cJC(gd7vpOMY&}xf`j6KF8fci-#4#2MVU{ATZ^5=uPpD-;LxmfpniuG+cWQwZ2yJxS{$elS= +C#JH#ob^TE?^GMo9RYvL<=CEcz84XZGOWiPU>o3G{8fi~Zq;-3&8Ol3h&6>-Dwnie3yQHNI{K?`4R~g +njEvgU_Vyq{3!MAWR3NhHeje3I7kiVLH)ABE(4-93+)RmKkuoUVH4B<-iyd=p0V)&wW@em7A18+XbHT +P(G7&_`)GvH%yJ;gGbgV +Ybh-ZOj98`(bTl&s!pjnT52@1stjLCY1u=-Aj9MNdYy)TjvZNFTiH+C2Fk?n!rgL-{b{br`vDL9!t9R-Mr +lnfdaa=Ed@ATBVGdN0&J4hQ|)KUOu6yZy$lIhHKwgfjPC&$vye}5OwENk{~fb7hP69aZSau-qHYIU+y +w^Rv;wP+((Q6ErwzEirv+{JBocqD@E6PB849M>15>91T%1lZM}2gMeEuS6Tk%fWND?m6E5Cy)OPI=AXnv2^$FGU=tcJ& +JDaOmJIITTG6bF9v85In!NdLJ))8wF2cd6yO*)9TxE +5cAvMiWhg(Uo82Y|9)CVE`l$N;0~<1iJ`e%zfQti}!JbdG}J7U(!smb&gkhTRiBcNk+yZD{iwLZtvi= +U!WU!Xa4Rx&18le6vW>1%yBM?Fu`b(W+_#;A1UA?5B`S8e_xJ3o`v^&fwq^*UX34)gXP37+z|6~0j0C +T_n0oZ$oq*CW;g52=@BAjf^J4FI7h1yFlvIel%vqH%hBGI`bye=70o3==O-^urgF0k+`m9qax{+H?%`g?}-uz9>($vX~=Z|iPn@0hDTUnRMcWh~ii`$Zf@qStuX&RQhrG@j28`}j+c=QEcOzL +ZAqcwG?riz0Z%Uv0*NlewT>doa{DpciiPjJ>Z~jIW^Ed%3fHu6C=*RAFwK;vf+K2BBNG^8;J&I+g!^_ ++f$fX#9i%W8E$0m+|)TRG@K`(6U2;dz1iB{^mVuIlMgw(I+LM0o5Ig!J1(jve=C!Wz~s|#|fK@VdMu3 +c)5i6Et?7)MW9`WQ*3F5L&RG{6)^R6l`9=9F2m4i6tF)T+V*8Hwm7A6dM`{jtNWtRM8PBe51#zX(Qnx +wgBHHd4(q%=#6E}E?1%TM#NcPjjx0A>1CA5~2uN<{YYgfO3Sw~g3kn2*MuY+De$gfssGIAi>g%Lxt`A +|sVF|I~@agwYpFTZ$`n#u34`FbT6K*gt+UA`+Nld2--OoJeuRO@`hrLhVyB~S@_0lOh4`l=oV>Wa#7a +N;TJD&9f*wh93!dc!&f8I=#jN)345+tulz}8z~-mAW;kn+iEY_xg5_R=-G1N_|gfrh1xO|({M6m6n3DNiwRiNEWi(krCATNU +bm@9=&wPFvz4^!D&2i%GG-r_ruPR>Ip{ze0i+vr-sL&xOG1O#(feAHlWarm*&UAaNs8YcVDL$u?lowq +ATc0Rc%VsagjlnhFj@pV>?4B6YN>rZ2>5*fP$=Si6iN%Jd-7AQ#23|e0?JuPE^;k>(!zF%hF{2l9s>m +}vBHKIplzrHn_eXXrC33?t^q4+Az+g%E~3ja8edEwUpb>=%Zo?TBZ%o{Y!N+(hC`DDpE3Uf6KaRu4>V +}kR-8lKccGWqM^R-anYs!feo0M<^Xv;>_|dl1!e +5l2M2oZ34PU9+SR|QH*J5f0n#h!mZeY33@*^AJt7JXhRYK=NOn@dM)Y5NSAb*Ld{bP)h>@6aWAK2mk|@q+CD1`tg7v003ot001B +W003}la4%nJZggdGZeeUMa%FKZa%FK}X>N0LVQg$JaCyx=Ym?i?k>B@MAW*qPp1H8)ik;NPa8B0aqAD +fPNmg=oDis70LoTu)z~HefdT;;x^<&;M;I31-x@;vD3C#4&bocaYx`*4o+b2b_oyMsbMUm9|L)VW<*| +yzSj&;`#XJ_)+c4{|c*ENHB&~&?9-R{)aPQMr~r?GDIx1)YBO?9O{|6CuobtBHUID<{sG-5;JW#xLKr +twTaUL~(a(U)u0p*xI+vLA$M`IoYp#K7+k<#^fDYxU|4eB~G8@c{Ex&!4u(Gufd&WW}{;tFF%u<>soy +Wo7%azY_hRn*Wi$p6bwxzfW~9_M#niueavesjkC8Z0c=o4fjqxc_&WxL`>^Wo3icNdQ&#_&!T9{y*Sn +L8b$-mY7Fw%U(kaIP!9Z|xSj=YJoMe)fR4pw*Int!{y5c5^&R)2sO&q^S6ZsXYu981>e?It6W1z(6jW`gaDOj)CVT7TH+h6p3*RPT{y|}KsX&`{l>z*FRpf%m5bb#%|SP +Yv>;hMa89#NzO;M9wU!mXKwGD5k6CLb~#VgU5MNVGsLtHSJ-vD-JRWM5th>)}C5GZz>LAN+qYwQ^hq^u2n +3a?lkfx-$uptP%&H8!bt7R*ytA-|ey-E`{Czf1q#kt@rh?aoPV_*KX?_sGlk>5tyUP;fmH?h|j>$13z +3t+v$KifxiQ@ADZ$=4f)AsT?u4O{#Fl#L7Je4Ke2{_EQUtS=`hx_y8&lzwF_Cxr<5}1_L{nFr$F{1mB-4k+DkfHM}jZ>b5#TuBpX^Sj*rCg;CwHU +LdW;scbBPjY|M1z@8OM-n@^&xZdcM!^g8Tv@=AX5im_t +`u8nz^gt?l=wN$a;@ZZ`a)ga`Ox8keTTvyT5@1-gJ@D0Kd5tf(UB9O-!d$uTrZIsX-iu`HlC2mwmjF! +wzck{yY+>PMB4AZjN!bh?m^2J +{c!nQ$@{{cnW3e#W%I2eedFA`7`@IFLf&`F8Mi)0PK>ubwq7*7R*6bG`2sYyfSkDUPGSH`wALjfDXdh+t9~?MP{X_R)|9uxT4BnXM%wb7MdlKholvv!j_v}l*qp*WGqOB?l3j{!ku7+Bw8 +P7Iu=>L@&#*N^cm1_#K}7I!tuHh#zgH@_I1Pk{UvH^B|{Si7Xh1VI)K3wU1oC50vKlmBXnz&jqv!oF7 +@gQGkYE?a|vf&D>-Iyt&t~Nmk$j8T0D%zah^jje3pUrfNIa}6qx~x+Mxk3US=(53;eK956bmG-w7Z>B +U@#;v^lBkYfy7#Q?QLZSU67JzkSWfxc;%#h&3 +vNLb}dSjy+!>ua+&A=3Laq=j6^WshN?bpAh>Doq*-HKr5B$E~r%+e*QY(bx0q~uH`mzR{B)B6uUv*XX +Z@ro8Ewf!`VsO|x0Rc66?Dj{+2h%#IYv;@FL%)=f=?V-BM1!AGn>;lu +wb@mUN&7;;RL8qi<%W4$dUwP7(=ZFke!+ptZ_>Ker=ZByW6FzApPXjk-dUv@UjIH3t_Y2I0IEf!cI&W +<1@Xv1$xK$EmD@%*yC4PEPPNt+_MO`m8p6Ziw01zQfeM48L49*sZ!RskxIvM*h!Q|QbnXcC;#dK<^gSN*`+!xjwYVtu>_f@w1(Ct*UG5NA_cA;3gA-@_%zYuMb#hbFF4w +uxdr3!EKigM9(JP`Lh_yD)zZG*;0IHHft1Z3GH*iA$Ib3lO!ZT|fo7{TwePW5{v)XOZy^b}=mSr+xzJ +Z_(`?rVV0YJ2eh=+|g8siyEUHD!q`|VWex5NJq_uX1j3E*ZB&(;e1CPPj2r5AHeqH*b%UwJaokevVtv +<=@QTL8Q5g5A~btH5L~%vClmneAwI+NO^sFJ0R~9Bso4Y}2?3BSOTgn)$3=xDJKxVd_K@y7G*chl20E^P5k&NfdBTwX!m*TJ!c +@uBeDa%B)DyW83bpiF#ane)*MQmyj0izj^tApe$gg6;1D6~yvV{7M=1WR>1?B<4TywnAHlt8Nw8PX(Q +xjXUVFHSIgRxS4qGQ>ML9lIwD^Z~!DO8|M-3&{Q20DPPmmAY=j_}pSh91@tSaP18@a=W1EOT~_kmnD8 +)vr*S&_{2M&cVaIV%eMPfM<^zDd-%oUU0n7aWFlv!NkgC&*8#^aOTJTF&vDoBOqQ45*e@u4g~Jo@*0Q +|#t!VR#n=_p!5%tKK7907D!Es25soJH4q4otWi858`2mXqbT4H0imox1yGhXmyd{Gk +;95P~DbJH`}y~1P+of^JJT{pK=>JV^|oY68+=5)HM!gU`Hn#LOW$K0)+JY(9QZG4Nzs +*Le;ZuqBL<<0@mVjiALgK%{o)b#tk0Jc3^i?gW%?#-=geHX6Z3ZeTew&I^&Q;IDw!&!y#c*(?G{|7A4 +37dM|GvWxsV!*F+>#Nr^v7UA_6HU|fX$u1Cd}L$oQZxq{a@(JbyyDs~I$I|a{iR7hqJq)oh%`MA^2EnrfSTQ!Z%WqA)5BTvTEHkB9;5TGp36H=pmp<+R+4#m__V +)IcM!CBKbY+Yimq6G)pP|so-AD*1PghBr{jICp1%0=UJ><$rFQDB{dKWeAb=lNx5~EK +UP7^4x6(#1k4a$26*+nN{8A8|@SaE_#&QY3cmPs`5xzX!En(}jO00P9sD?Hl?!*^k_9EoMB6LWma1Kh}|f_sW*``C#?dEjAU)KP|ZGb7N@k%M>pLnBsnE`KhAdU^gN`v#}SV1DPk{6 +W5hsb}^yei5;()Vn-JG7ou;0Qsf6ER#G>o>0K71@C!LkH|sh^-^XDkyD@Cra4K$9R9g8iif;!4w%6M}RCh_lw9qyY>Q$}1Z}rY66*O=f@g8JByGZLt=nK~GZHK`u;ffId^ERVE&;F|vwHZ +xK{V2t&-t$FszfGOp+a=_xrA$NBk(9OBXcv>*GReZb15gzB?!#D`<;U4zyfb=MAd32hsQ>I{9_FektV +p9MG(KU>?$5k^7YtH!zfdIgvpjbJQ8X+eJqBYk^r59$w>#)Y$RZu3iuazW`C6UIH%nRvp>glMnh4#YW +6V=cCE$zK_;@b*n2oX2lg8hv0sa-;ayQ_4j5sFj=o~|$E)?6;tPASB4l7#0BrDjc_@i2a0w2{GpXQo+%#wZeEgytjmfw8yYhpcU +W8`YnbT^C>nxZ`YQlX1>s&)ca)*bM)wYw?%Dj`lTn_V|xc+G-zQyz!p&u_`X(=^)Aia-ori`L+U=wcD +<0%HvOfTy&k?D&;ohGg*wR+eX3wv=Nzo7$%v9}O^Aill;rD-$aCG|rAj+FJt`Tgb)aVQ?E9vBS|lg7M +biOv^q7cg{~u2tXSU=J?9ZC7K23*a0U5p6uhFo9QDn3M$|tXLBkT1!yow^{|JxY!IVNe_pt~SILKu%d +9+LuLA*q>BJFeMz1VNT0UeAU9O?hSWJK%FFIXC-uORQgVk0cIvRhKjdi;=SXkXj +Vs+3c!P9O3nLL6mzM`*DyZXSPbSv!8KnW1(}+pyVw4$=D^!;lh-?^;Oui#1 +VbDNs0Sz?D{fegE`Q5xJWSh2LC(1O6@z?#0@8#4-$vZ%E!j%C7C&hj>?hovD497hQ1l9(4_y$sFNH!q +bJQm@+3vlNb!vsyCcRTG5$0aJe3H6Bxj!=40Hc7BFN=oDP*>Pb-%mAUedmF2(1&)H%C+^N!2D5X;v#30Z7K3QD +uIF0CM`=n4GS32`1%T#6_a^1v2L-GVXC)sBl{Y;;!Y*KTe`o)l1lF^mYFb0;Xz;k;5BLO#K7}G%%!!qPbh{yDcvi~xg2I>i498!wK2~(x|}2-neCpTt4si8vDV1w42@?A+u;WD_HU4VQShHLly ++ya66u1X?03>4LR=dq!O013E`ahE=VcF~Blj`o#!(r3ZiaVXpOjp#ofVT}Ry@{{OccH!+}agmGzI1or +d2q34wPCU3#*W!bg|hzaT-TE+V4#bSVWE54c&ZaH@wBn@Qkt?CbXKJA_3&FMLVfyixl+mX-X81@co>!E_935dNvSruB}}a3d9TXIWwBJo-vgcZA$X#}n)&|;wq^Qp6>Zub;?L( +$5Vrm}6MC_XcJL$HqHBwNJ*bFN;fDF6H3=u9e>#;yO7I!2;A6p&viE5cj1fBH_$Jj0;Fu#G1ijzu#FB^D_@*m-bCG$WAUO^dnM{nt&@2 +Y8ICzw!snQ%kc{Q_M7m-Xl52piMy{z&Y0`4{Lsl{<>9WT|(CL>UI?{yC2wyx!Ym`H(H+fV9|;@;QonD +=QFXKno1qf?e%exd(B{__D_8uhyzB3o~%kVYbS_+BWrOG%*UYZT$HEO1k_?>e;99otL2*q#1%2-FJt+ +2I1Bm<1zFHIc6rfw6ss?kt%+NLP?yqGbd8)?HCw-m +qzZ5+I)QxcwrzBlh1zl2sl=tFY_odZz~iR)3G!Dz?&^wYx}BaMECaLX(;=1H$6kI!H6nWJr5vQul0$Q +;2fAI@It|4NQiCtmwnH(Zf%AKX-;B_xemamNfpO9)VM8z*hy_GY8J*q8x*{=}7OJBopp}y(rtkO7fg5 +pW%u{&Q+ySDL(YD;QEC$PWen0UEEwLOK6oxs4^hU=BP4T95|D{6ZZ~QuxbC)scIi|7jR%o8oCQkyBxn +YBF8PLb0sCiv^H0FD0>GLej21DMe-D|kg_-&!{GHlXPFAV@1paO!W_O=NvbM5Q!D^tNKc}riN$ervCAYr>X?S!@qUzj-vaQD>W90;^Q?8iI ++iP`iw~}jXiFLHj$eWS;`_;Eke(U5h0NaAiP?IkdfW4%{1~(^-{U?=}hG4(@?(5SYjfO|*J4$_@NYeA +P`a@0EZTd#K!7P&!Iu!925E_Tulokc30Iz;fw}L!&)88H^c&Qduqr@O^@;olix!R<*u!%__S+w&rnOy +-BrWnG5Q0`{|8ZpmxQuOATJKLm`=u&Nmj5Wa4%+OW5Y`?OwRj5X;4{^r$hF$c6TVWp0>xp{{zK@W||B +QrkbK@jK%d^wZBz7Y_Zgg60xQ2o<_K;Dm*##>EgSH&}FzzL^5}vn4xy|Pz1_{ALiJ*knhXy47*t5*U6 +$`5o8S3{7s3A88FMpV1BW`mT$@_pHI%1J9+Tt7~a+xiUIFV#zkyu%W#|DcRn#E#Mr=jN^6N*H`_E4Ns +vYk8fk53*PAMl$L1Et48jr~nC;_{+_c0kQq7`OJE!;a15Sp1sZurZ1oY_?N!biPm4BgEWnH#7+%{$NACdS@<*>0Y4>?om_%&e(xB;HBN%q#LP)2lInvH+l7eEIZ_g+ +DH_=f(Z$5quFI0JI$_;m0gGY{!S06Tj+%^+u;QnR&ZMrhI +^j0m`A@=pH7!NngaH-*KeTK)GPyeBn!plP;x;#!$iejieB{Co3^zlaPH4r{v~i*vw;>-1{Eg08~y#wc +R=ZAq%dhwGk`7zDMeMCEG#9N3>DyjTEGH9(s!OtM?qX=%!N%D|#CUOYloY#VTw>HszQZ2fOQbHhE^dhkio5HJ +!doiP09`~kj8OU?DF=DE>dG!a*n$t@!SV0r@zNs5K8fDd9Sg#s1YzTXe0jWh3nNfYLC0g(_K%Zlq9vB +mxQKJa<>f3Ui(3!5cgsv?b~g1D)>ef;Q$658uE)KUh{QBvh%V^DrPO{327y@%oD*MFHq>@-3)pnpQ;G +@Sryz6HFhU%Q{-kf{cw05Axv~H+Ln?P=-NwT_tSZg5+SUq;W}FU{?ZeOQ&C^F}_m~*ZIOfGe;XNkZP_ +ylcR>be@C-xl#Q%ibj#xk-^#Ti=&|Gaz%TRa4zkGSjzv9mN^M1sD9sp6(s0hoNYr?64^cU|w^Fw@DrCKO&Mb6R<8Wl5_8 +zQB(hP5#TXcUa#eg%gG-EomgtYpoA${P(S{3|8H(U>e?xVVV1vbybO$Znw|%ZQ^tHXjlVfd`85lu^b5*;?f0G$D2MP&NMjoMH^j%vV6331PP@2tE#Y +J{^=O|ox>hZI@tFqortkI#tRm-oUf_LqO*c#S7?ZBKKV4%5%ZC4&5aXv$_HsXc!o7=!-4^h-f@=@(_C +*$98mxo~nhm4dXsdquL>VBx*w&u`+PQ`@UQUC-Im-#u8h8U|A`@T|E31hlE9TT|2y#f0-;oZo#7)}H_ +Pyz5weq%LSPAFtQj&|RfgWb6GrbUme*VwS$_kUQJpVL(cU2$gcUQpM!}7#YnLFk>pLAuyfiYp~T2XQU +jJYq;m)&Hg9yu!Kf^*h!hE^0%Q&aHy7iP}o!5-j(BnoqJ{}bIa;#{$?c~Wn>pe`)}z{<2n>?`w5hiX= +dzQJ-Ood8pu)OVf!7M_?B&<&{aw)nX|Fi2emu}YZbXZl)fgk3V2bw3Ws{t?%N03~1QtbsusTpfv$mwZ +FIXyjM@9q1@Qz97M6V@!g%<$v)G69xLQ{!p=U(pujeVN%sko$Nz%$Mkgw?{_;lF046bN%%GPi_HO7xkOeY(zAcIQ(ub*;3nRI-lQ2 +3aXIlq9UJnpxDPuJSi^<)6@GRc$~0lA|(P;5c=0vze&+8HX#>e)6;0>}`fQ^|yEDw|5y(L|=EKWzuRk +*0&76#kj#LaIr_Vq!KL7E7Y;!E&X+pc~1_p`?Dx9zXxL|l+1POgvuQFchbkpl107Tfqex_Ufe9}1N1?Q3qQEQ+=uvwXZj_>KP96TqOLHwiHxWR-l6o$Se6- +4#LDVvU1Y}e4-)?x%oYs*!Rbm*))rWPNU$!{`HnNc5J^rOX%HIo^4yc4-i$^1=G>6%hKcKx{K%{XvbN +-dMEI{4LAmTnOmJuwXB?rtrF3z90`-?6zclhVD^g!7RHsWDI`#}C$UH0Gg0Z(CEJUg>@-XQlo4>X)tZ +;IzHUcP?%(+jUQi|$r{VZQtIY-TyBN;AEn9MSs$0{qd4;0Flq$$4`zPq&%Xy`)av(&tIM%NLPNiVxm{(vJMSIHLVKIpPr*(6#)->BxD&#yGa>c)pt?>_N!(_1725)9 +x*em-oG(p_{cw;yHB2qzjxaG;$pP#&Vo_zm(^5i@862I<#^X<2D{UvW?H+_wl)%6R831T=hCQ?TclP> +j8gpJdO4jcb*0x9VKpA^!o^)$8Sa@Am#Kn{WzdQA>;ECJ*=EogF8_p2Ih+r@o;VmpK|;kxFJ63(`zJX$N1iB1a#jlh9hHv+F&k=~WGeiXGYtbMOrzHjkW6^3u=@IY +Sp1RkArH9P}XzfuvYGP1zWhld{y-~0Ux3;Hwb$BSgXD`mQK7nvT37ddbjJ3gX*;Bw*7z8rwpVn++sP& +j?MK|{?SOVKcM1%r7=54uuKSItH|DV-))>O(VAo|ycZqTWQ< +Np;61|!7to}t4x0vmxfwNS$H|F_OOlDQ<(~ +c;yKA442U +x$#hZzP)Z2jm$J~mSI9qKO+SgJZmSQ)z{i!mXT`+pOxagWiFuTLD50v>D~|mH*DdQ{$d-RPf`7*6?}K +v$r(n|0_szhI!E{RA{ufY70|XQR000O81DB*+lv))~I0FCx3=04N8~^|SaA|NaUukZ1WpZv|Y%g+UaW +8UZabI&~bS`jttyWuan=ll9=T~?TEy(K-R8aS#NVV8#&7^EcQ +uAb90a5Q>?&r8F`iiW$k)kUdeesa#gb>B|~Gn3OD)5}4^;Zy+Y0uE>p&&;)T;7>3_8FbjkY5+!&Pbap +O>W7isB;2bqv7^`O!6dy37Cv_C}15IN^pXq}EjE!^><+Kk+aAOzKNEQ!)ry4>&idO4^wNp|rClT#l7VwoGimL^0t7k;*#5BvU0A>bfSL^};>DZZ254%$c)G$GztACGH2ooMGs>#~y6E( +UOEDOdb`N5ps%-?HK!5eVDPYiH7RGL^&_QJF@M5BBPR7S4f;4L==A6*Q4V64n!>LO`5wt%Pz^h=1Xb)fYPKL+CJGj|6G8Kdb;_e5~b%mg +*(lDg5VNw~e7z8+(PYuK~>{_F*rT1`D`CiA+w7dYbTLW-KbQ*mP8@gYMVjeg!fL55(D +bBb+yMCryYE^n9Tnk?YEzOIZr8-Fp(aT7?*9jU2#@%_qFIH#xI1-v(-~dP(}q3wx=M#7K09ONV;v+qz +kAQZ@~x>=?I+7y(Bap?T?5d`;p~a(2gU=2`vV{+R*@yNqXKzy68rx4`WC%PwFR{2hO}7G2U}~6UrC+j +0#+>Bp|w$B3;5k(xXhp_2fXxZ-Wd@k#qKDjc{MzbK_| +sxhXg{#&Xw%dI@6aWAK2mk|@q+Hl^P(bh+001Li001HY003}la4%nJZggdGZeeUMa%FKZa%F +K}b#7^Hb97;BY%XwltvqX!+cuKl=T~s)a+z`@PLi!kUCov6l8c=^*X31qvd-3cibIKz#0*6;1T`A%Wd +8g00{{UKlqZSx!PZbfqtWkfG`Q}XU6f_(eZTKSmPO^RZMr_n>$>UlzHDlFcBY=K_w}l8no8;ijrk^z_ +SaQYuglHZ8bPm`suC*#l;+EohW`&yi!Se*ZXUhv;oGtjJf45A%4NFm%SsPl<*Tj8a6l%TeYaAB`(snJ+__CBeE+=2tvIhY3=;ylRuiuqY!WwVHs_BX +l%&J-C4#LV{mUQTy`3 +H|Hk+&}>l-~m|D6GlEfZI7W*SJq68$fY?mW-j&jbKrV0QQQdUAyej`K2#I;ri8 +|j2314=7C&V;DALUzQz+T+@L#IDbw6#+&F1sxHwXIaiJlLB*tHY_wjo82W +3GVF@HLs4pHYxXP*N}puwPz_mzfPPGzV}TvKqz`SZ9Dz?X{rXKMFs ++R4(9-H{2(`NhceK2{Iu|9=q@0GAZRT_vJbh$y&Hw1kC<2%f)r_4N;LUM>!0zisyY0wm^g)m)uf0C{H +L7|5*6rJkEc-vCqr4l;t-tdQo%c?3iwU^o+gUx8;Y@JoY(@S#LCEwqVDd1>SReuUNEik@gci~9Tq4N2 +Y^(~@NXlbmxFDdZK1*K36XC>Sw!-GD6x!=9HCfaG-~x(@t54aWUPZ3C`$N$9W9EfC?@&%;WuzkmDFSK +og7>J4pCEwb(VR$iQ+xB2QON52F(043|R={D!G6)P}?$~~WV)+I +zjQN7I`aG&ceh +a!?Lnr~yXtvx!I0P6Gxllv+sc3DEigp;ADY9rHIIaQZkw}219sw6j#d&lijxQj* +T-bU$rMzf>sj__aeCOHF0@JfJf69nMB9fWE@7eYc>NuAG@AkHh?4 +W|NT})IvEi8~h-C9SB4QsAL>4{{d0dQCv<^sH6!adK3cXY_^b9)B-#d$lFq=puA8v_opqGCY-y=(W

p+ow?>-dw)xmMbNvy@~sBET}ec|4`zGj7 +J3WmgW(S5$Yg&Iz6bF(NQaSoGbR4k(v02$!qK~Pe9r(x{}cbUba1poy6lH^u<4Kf5*b$>g>SJ4t4Yn` +$;0{6m^AviN-z9ETMO-l|#o1PJf`MeD|Gck2z~3GM<}T9Ge$vGFU +unN^N%KN_cHP}t{?8QW{}kHt6oy3r}nv%T`cZ}@OqfN?B0@!XPfeyEW-@(#E#ZH-qA`YuNH{TT55;FN +No9IbXWGUpp|YH09O52ymX~(S^zv!TseJ_-y{<>*;U-LaB +NM6f>cs=oh^9}D#UxJ{R3)H`WL%_i@aivX@PKdnxr9}|jz};fJJ5Psj9wj+OgM%l?8NBy{Y&N*r&=aC +-A$-D0dBRiY7jT>_;-`*e`o^){3xW-BBmZT(BcO7Cd&!25Z2hh*Hw(w=sFdw1I(Ug}x+DK35iCJp6;Msc(GtUz)!bif?i9r=#`wf4cBfu>IRF`iQMxyx +^BuieWGg5jaVr_(q9A3?(RxByj?RklmXEBe4w@qA*5$nG)SN>_%o0a1S>dr^NAHbdf@L-if~_P+)XVI +BsEg7bDBQ7Ar&Ef$Oaw7Kb}sPVl{AmEybJFB!fkrqMmfZhJKb>_2%Ly&!*I^sCnMiQz>1}2}trC>!k`{go1}(VlbKJ0TbNByeK)&u!sA|Z~kjAMPL+Vfxd;u7oHb15xN{P50R#-P#6-NQNxp|5^{o7h?Tw)UL8rv9F@#zL&%Ft +eMkTV!X>ukh?n(v9gf+_mx~nc#52?qUPhT@eju(wxp0=FzZ8lUH?G--N8^=cqR?jUM$TGfBvDJ1-^5@f +P8G~IIgp~6u^c@;L?g>tC_RYMVl{IUW3IW+ZPITI0T7{2L~Zrh~zpa#JPZldF_B1?tL +(&Bw(qS}4SZNkRfaqyVj5d*zT!y4%V8k7kf(<#DLf70s^R(8E#UlBBsA8g&1K56r;5Hz}ecP?;r%3-@MZz- +#q=4-V~PBfbcK;K)tH7zcDDjWG%?IV9kM=E;%IBf;?s>QmC4gDCLuLJ#JcnfUopr}6IiY9i7;4K4X4 +Yd$-~x$bk#Ss!-tx_iMYk>UC0{%DfX-7}M@8FZ={55>~W +^MexfKNMm0{#Yk5_b6XJI@*5o6wdWb1&)KAMUAJCy;(_A6A?8+O1rAI(;f+>kiXuvo}tHn`(MY^Tbaj +Q}jg(Scmq|HS}xEriM#~Zamqdet;&HW+42jsp*2*HLExB6mWzhk1py&2Qc1lheZ{gCim}(QrrTzt06}UD)DDJiO99tc>aFC-e0EIeO@u*F6c7Ka%uc#m{&zej4ukjO|n_ysw{gb +N|J4e`M=^x8^U^S89ubAcF4x?t278zwC2_@jZy3=+3$}g0*Y*zo&vDcn=m4z9-jqVwmpLR_g1H8Z3G{ +uD?wq<9M%r?&|+`!#_x0v@;Aaac +EowN*y-)t$93a$3qtKRzOmR0@W5XPD$_?e)+S@GoW_>|#wbuBrQa@fulZ6-c(HB)%anorOJTTp3vYd&rUt&*Y4(g$`fphVw-TOd!QVHy{?Sbn +ycZSphmUy6wwSXm1_xL9C#Rf$FeF3k<11XoDiCZhf3gJ-w`M>GaLl4Y7K0W3#MhPKG2)Sr9iKAM^R^l +yCF}V-y#@tMveI3Anw0Qs;%85)1r|{-`g_DUGIDeb66|i&16Cg>6~fOrsz(RPlV^f~vXb72%S}U`^3^ +7m*Ac#i_1H@Q>?I31Rkv3i@H~vis%v87xt0vv^3SeF^_rqIWUhnHcw}JDrccSRoT!F4o9^QkTmcD+I3 +plmQR=Mc(T4)P(WH~e+Y6=I2f0%es4qe8)!T-lb?mpf!nFX(U@SXIJS#gP*h)=mP-(?=qJuR{uUE_afn(aQztVGBwPsJe2yo3Y +N37@Lp`A7eA`p16pooBm-f%7v?i*r?SJu}eFIj8_7GfA4d*MI<_d{CFOj8T_0QZEfnpEA` +rE$dw1&z=eNF7A>GPEn@36c5XyDO^ko;5A_$htY~ZQ0gUAVfQG}dTNf7ZBwaD88RyqN2|%ZlWC|D*C* +ToOg5oRr?_EdUW6 +9#48m@?$s=s7YR<3x=8pqI7A1b6CwekqFrx-j8F7Zgha;J7x>x%FK8p#(O}MZ}1q{FOQ(jD`7X@CxX2 +B>3lB^CDmwOH7h3SH0bS$?w;7a1{!G*Zimo_YUXP8`l?(0Zv0cRGeCMGn_!ut)%(~#t+UxZeqv1fSIx +$@9v8Ms5%^#{-XpLg@~8{c(Z8aID%VITfsFI}Hj-5>V%+8;pj^SZx~Y8>31qA+|nh9w}3LNE#?c4@DTN>d1hffS75Uz#6&hmFVv826$mMeLP;Z`Q2n +TVfh{>(p%UZP#aoz66!K0?oS<4|!V;CT}(D5Z(di_9gzFs@`xRhVQI5#dbuvow>K#CBGBBiS}CX#>`1 +e!H!1KALf +TGxkPZ$p!qfx9z9awx4*i<^VjeKjPYgBAXG+1zZj8XAqfB8{FO4cf9DF3;wW-{plERDZcIHKivxOv +6ugJE5Hvr|C_D+d;3_22Tn5n61V%nSYf3OpUX8}UdEVdO_UpXSzmAWDr*8~L16~1WC3MLWFeHs@L-m! +38w;tg$z3gWG`r0oHf~E?6$r$nomM34-p`!vZ>-_$1Rj++4Dv=^OT$3hOOhZe6KRrUT#Gym`|^PuUWgwkmxJ*N_3k7Efj`7|cg(0G$C +LkHwDEgXdrzjM$r7CX5-FVj +Ev!3%qvUxh_(wcX8Y(0_$K~al*Q1UobRPq>dVj^zZ0Z8{|4V7G~JVm@muI@i;WSnb9eaN)DypRk|_30 +V1`?m{vF>>_sN&-Zh;Z+IT~y)F>m32WAq`l&)yK>+wYdz-)1{4ey26JllSC8vS&iKmt)a>a`Zk9qWd< +(_YEXV{*v!cI}yb1|I){PQGu%#O3o!3GiEQ(JwSx>8QX%pJ~sYYANwDNXW&1LY0^i5>TL>G{)lOATzm +UFlz-;>dzj{7&5`%4#QG7YfnN?54E|5I1blVN`6pWfKJV%8Z0YC1HSib0+Lr3$M88ID&{Lcn3`k21^D>yBLWfjQvnq`OzWDa+Ki}b5L2jnJu7CgM8N7iP8$T32}0Y&}RT$ +@5d7qT+cY=Ez4BO2unCAoGF#uCoWeNpvO5N-kxp(Kq{W0cxAE%x932eHLa_30+kN0E36E}Gv~?Y<8eu +Ia;{+-irlc*YP1#m{K%a6yMh1`?XBqTF`FINC2km&!WNqw^!0T8iILHuyJf}LR(J+QvqGP*-JNfe9EG +**XAHSw2vqGI)uTo;Muis_R;Ebz0j-FLt{8{-*e5v +zhcmyTIx-nA$c7Xjzj#M)g4Zd>YUkZ$4ldD3%+vP!grITc>=7F@ +K8^z;*(-E1))qkh)+F_m{V5C*22GPORYs?qyc2@QC;dfs0zvjmDJvRot6Jq@R4wk@a#NyK4#fpZtkel}?|BPW-I*UKaG5KHgtfy&Vo`B)$7?RY{7QDTTI-L8jM +*2Ece?A7Lwz01+VzUcHtD>KAook19UEZPUUir(QXR`6gwz&@q-gti_{S$$9g4ene!{04Y+W%c#?i6Th +g4frO*CP(NP1Ma08Dc(!~RY@&GDZ4I!sloZz>*_Lv)C0T!Ijhmj~oQ1g>ZvtXg +J12&4L64tKkuj8Fc9EuM(Z!eNT*|XQr!E24s(NfSK|*+QzAJD>FQyUFXc=SxmYx|}sG38X=c8P9Tp5G +x;dz}N8hkuu?rW9wW3E1uti_b6#>k^fEH#|9wyNH>ss%tdrt~^(E*I;ikjGIWr9x3JB86iIt%RraQdm +ZMH!qsOjWpRo&+N74>rK|OuwMxdI1}WEaCUiEy4!k5&-T$N@ZLOP-~k`Pi(^@HB`p#j2-t{9p{sR0L| +upn)f}ba2^$uQki2lP-M)!D%x5Ed>G~7gGl41RTc8mr +eKs)Nl%XmooW=4K2&T0wH*iJt_b07~`VFvt25)&<$LSyX8<~ZV^p}dv8?Et=4FSHI`rZ!d=kef&wKr1 +5mN>E1bP0q+0N=09bTg2I}IZM1n%D`+tePhtu1M2PZyidAid+Qz=?ZU7y_@2~5_rC9sp6)+^KsenoB? +RuRi@Us8{Jt3UZJmYf(r&wRGxe@g#rp_1j_+@9`3Au!-rtFcSLSneeZdM_c}ZZ{Ur$O_ +M#8=gP*(nqyezcD +d<|TPVmHv=E1hn}t&+4B_G{9d=-=1 +~wxKNC6PPh%QLw-ImZqHD@!DeH!VK@v={ljgAM_+7RGV9N!Dy@}P-8nPMBbVTu;P#rK3!2KLt_ILaJ9 +X6*;b7UF+c^PX#pD`e0Q{tNN-&BF#)Z!p+6pG@6|9P4T6*=Q4^GJp_iEHnmrPt)Bu|W70KDlby +XPlvQqKb+3?Wx3@NsAp$@dn55eYrbGlkeNL!1&e6D3}sX->=ChH#A_Ukd=Sxmph;yDqK%V2>JlFi!)L +1@%gnN6K$HYi@&Ra`j_ECwU=}r+A_-O1gcXX%wsWAE7+1&^EAsC3qZnT{=GW_Gx +Ho>-ao5?!sz3`K2XnlOAzk`CCZE|{t;70lQ@$c_ZLNZSk~)<}PwsuP +y(?XwlpZiXQqqff%+KK#$s|#o!POrClP@LCtJC|;PPV!67>qyKM3&GEf#&utUiG6{j~^T{i$7;$amP0D3Ui4|h4rH^H&#@Xu`pT6GfW~;FQnV?+|t8iJ_EBcAX>Yk$%Vf{GaU?> +WV0!Sn@=dZ%4Ezt2>1&ThGQKl4GKRQ`Zt^USO@kO&W-m=v#f{l^CDK#}H$wAvnob@GRmc4_#EZ-2;j*WdeL2X5W=s?TQj|J|j3INtw$*`HA +%fs+tHzGv}B2*D_X0C9AKi7>vwMVNw#eKzk))m$9gO+~3_pJ5~My(4iSegpSboe-We01>5sm4*Jb&w$-1B?#Y&iU+JMLzIVz&#&K(=}J7KI^T89TV@55T`FMaVKrRO?`PwV*e6thF7X&I(80KVYl~-Wa!h>@E +ndBWOR&^?tUMS+sxB$0Ls{hEorqn!NhamAazVCRaJ+I>@ESE_{Y0)-r7v?sZFv%XZJgh*B}DYd{Lp)E +z9L2<~Sm=K<6c*(1K%y;vveFj)wj|V +%>$Iya%e4r=eze_Z+GoTpPl^`?wA8^ddr%Y7T=@UW=y?W4VMsNH*?K4R}UI_G-(dpW*c=KLc#L2?rqp +X^L4eM}rm04yu&d8J6P-6JEiLg2_?22Zv=T^J<)c)9qle5H(+gWiadRdG{ri#*JWU?kNk>is_sq>~X` +7As)mVn&2qkxz+rbR5e-ZNCc=C!Xlp|BvwNj%@-{l8TE9c?}kj55f_%mQJ%_7M|twdoY%{Xv_MNHJWh +V1O!nxfRD=fd3f>0EllXc>SOHFt3I6f +wuB;ay2AH08j<;Bz`vVdk(G^CAbncX^egis~qt*KvSa +$DWP0HNB5lnix+$60G(2)5~bei^-nn +*Z9)S)8j?8eC}I)Xqw7tyMZ=V8gdefA3z3hry`% +UL+e~f?~30&eYDi!GwcJtH~an;_nn{2_T9klg6&o5w0ea+D0PzcPM(dmPP@Pr!p!k*{&J1XFyq126M|`JW9*d3=Lb9^GUTRzwkRJoidFG4hak$+%ubTeQXsZ>CdTFAMeq~1jrd!*GvGV +F*FGJa-%1_q{4$hb?0-A1}R-jt*I<>IU+g|;z?`^H1sT>NPw95gpGmS0|m3OWlX22?z*j4_u(W+V*Q&*R>v$H##^@{ef-XmAy3JTJY>dXSpCd{)q<;bC>Dc5N8 +lOZ96wSghhqFNo(6LJOQ0#g +So#ax_j%c0g%}77!YC5MP!a?&h$K(~1ql?zVGu$w3?mSP!tt+wUzqL*GBnx!{3?8?SyS<=nY>9WG_L(?{Y7g?ci{Gzc}3Y0wH@Ukb0W}f`6F=WW60qB>!sC2@ +pFeu9}?PH3-o<0wD3b`fy?FNOUxg=g1=6bV)Pu1Y8nBYPOmwxpa;#T^6k8YN;R}L@$4A7m9MvK +@%)U`R2oDJ%lGD%cMs(RhxPKP9nRhE2Y~HJTE$~I?L_F)Zt(5oUlVL6j?Zs_+>wlxO0DNU +`yI9-Z)KU+O?q0yKC9CRyG>RKUUGpcYB!JFE@y|jFF|COvt1(jg8jILz?o*r5_gAb~ra|SgjSR)4@>f +%z06Vm8ymQ^V#8%)0Pi@z9rm_;auMAZ#PbV-988Wh_Mj)4bxQIL-HAiz|100fO8x@KUeen`4-{+s>0{1$Y=t(ajeO0kqn+)>@ZN;D1!R=k2`obG +O^ZpiM{F#9yTv1W#QxswlI?|@Ed8C%4e_3E#NHE*?@_@Bek&6qdkJM@+FS75|4#NkAROHz>~+RZ_;F^49&}E>CEJ4^ifMSS$Qh-+sXi?zlxzv;LN+Nxmr&7BmEG0sY58P2fMNM0k$o%9 +Ht_hsZsCjP!g=^ZA5pvcvX7;$}ABaY*2X2?;HYX?LiSpL-dGXS*w;2|byEE2P(K9z}_2^ods9v?2M`6>{fH>?Z_llkw +iYgdyeU6wlPIkpksuQ{q$DGxn-$zoGQBd_9EnDKq-K30a1rF@eOaxR)?k_%svn75BJ(+Eb(BHr+F36g +u&qt*!k|TujJr>&-%Aw$~%D{6KS>Vy4R|vZUI!#SXf##y{GAKljl*{5IjO{dtF>_m#=2<%JSs% +){&3Dh_sQa((DU-5xya897%*U32GbDNtOe^}1cEFGUJmd7aXir#J9kAOHjOJyLpAU`-D@~;W?IO_P269#$c`6$Joy9y=y`Y|=XGWN$D=XFEM5!ZHFZY&9Jb|1wTuKT +$l_@4zr}QD(LpqHDfa@i5=gRPb2Bn#}#BG{~Lw*!TH+RSNp+gGB^v&TSU5rafRUT94bEu#QQw;Ro-N2 +4vpCu8r3n6vmgCbAEhfV`3jhZZVzm`g@$C?f=-9qVeO?Zh$$3QRX5_fx+>Pp)`mrB@O)^od+Zis==WU +>0@c}w$ofKGYPZU5&YBe)45)BETiIjNH`zs==MSK3~5k>MMdNHnf46p|qE5LAyPx(HKTQPl=?z7=j+t +NyL;k`i46#EM!ni===e3Q;;Zlmto)dMug)B0~ToxTXD-!&<0=|sz~WTqCvV>&d3ocs}oCPJfLv9Mnehs)$>rHyo~*Id(r4AagLUHsc6vaD^ZC6`2Db;5Vpv7 +sGR0+#SSb5nUy&WQr9Q#!%|mg;@A#>2wv!p!jI6 +Th9)3g*>3}_Enr2IsPm9ihh$&Y5eSziNyx@DVK4bh +U&whVXX4 +`YO!`zsVg6$zpgc +wqi^8D1DVXT#rHD9UTA3YM}3z^V`)Z=TT(O%Gcik*cK#6!$pzh55l=%#f#5rO+69iV+Bs^U8qU@xG&4 +V4s%9*Ieb51NB-C?ZP_6-y<1tQ4nxEKdR1$`MQT4zo`SniyIXf;yc>m1j&!}*#Z%cmnOHRQoo!((Y8Z +{tr{k;1ssq?~Gn`9ZoOybdXn!UwTnW$P(B0;{mCf&++^HHv<(d*JG`+EH=uc%0e|rCgXx%d}_F;s40! +#ftQSe=byFS-c=u?Pyi;%nF!zWIjt#&TF42#WGwAv;e_ac#OiE_pbPiM4cAs}%XW7=zMdbvnKzMlzN5@)iTv3K()ieKQNc;QY?C*uLPr?{RQv~qK0x^rBF&tZi +7`4VVhQeujGib#rgv1$m6Dg!WZ8wZ*Fj|LE+YsL-FSy1AdgGVt=RVuC0l#P!0$u#%a}|Fa=&zCt2t8{ +wTxlopK_x&>A;|EhfCK|A{;g?{*~AXl*F^A@b^l7mKLYCeYltNYF#WPdBXZO4CzH+RivSr+8U{ClQ&7 +^5kS&$DsZK-;D2uPhS3bV-W(MDcg0?WWzACv!#NWEMNIsA#T*z->%-$U*k-05_~(&eAawEx +_6LDKTiZ@5^wx)d+-UP^;h~~?r3k1-T0gP#H!QdC1LMz-HBi@ejFcMx+|jR|&RH~l2X0%QU)JR`m6gS(H|=~mLN9sf_l#rqT>#@XaafVTh0jF^O-QH +B^M>?Fi>YYQCSE?{;gYnX(-x^<^nfo{&9tG@`@OI)zu4K6vGVI4agyUsk-~1>3$%}*A-VtnlfoY@e6$qQ^Mobfbd&^9oX77#q@VlKH1BNIX%9oH%M*et{hN>c;cy!uPdF)Bp=% +lEbk5wde*e_9ioae)vsmhxZWZ-835tm>Ua8v0LJhmAGCfwFyF3+j7jkL;!n2t&w4spivH;DLL{sx%eR +l55`hl9Si0zEN*BUiJ;6ZUqM9CaQ3|<%&f94Hzpl^rEy=Bbse02t;4QCT4NwrEtkF%}(9I0;)zo9R^f +s=Zo4yh5Xzr4D5FFoFhF$2X6lAlT+IS+hTD@$lvaJiC5H>T1E +7tfCzbQ=1X{?vl!oZsKiBeUb``{mhEZ!{QdL2hKaERx?xn`OJRgV!c{i9kiq^F +%@Z(F4!oE8s?qh7Vy4Q;nGs*8~8Y&&d8z)xqQWnQ1%9rTj>aU<;$evKkO`+dPGpV7s28S0nuJc>BRH- +r**J`JfSo`ON--GMOUtmp$t{~{}?6T&Wbzju8fCbXGQtZl1``1qx>hE9ufv3K|@_RT%Q#b?K@)(AuDV +Syu1P03a@QSSva{Y_MNCf$u3u2qvJr0`jR>}ob5l8^2l1*uu+RW=R7$BaE{5EL&bGbGJRfl-fQBDa^6 +s0$3(qywXT`wgz%c7MmGV4KV(*)a8@uOcElCFS^LbsA}2C5km4T=dX2wN%XN(2dN8_%G?m&j&(ze2uf +Q;`NG<{VT-=xuIzrHSj0fNjS2*w&}Fu7-kt%LQe?1*2~wg|?k)DIDr=>YcHpJGG>{Q%-*^*IJ*s+rJD +x`G73Iy$!yEYJUlBAf0tj!)-owMJE1o38eXq76s&B>X3%)Bzdg&4NQrpcX}ir5aw*$x0=Ei>3hNcB33 +ATu?~f{gI+QLp?z@B5a}Ol3Z?HE>!(NkkWQRIan&i4iYV8cd(ankuM*DOf0tk*o>P*FK@vgqfrIB)aA +mmu(RDt!p;XL(8$v&m!|%D_avA(5&I^1$s_tL}?wv>$ENih9jR+2`bln(0JLIiP$KjR)g4jO-Up!YPS +;RRr*MXwB#FU(7oV5z2KAg?N5ISk0MHN-CN=~t*#6X9x(BjuCPMQ66E-UK3v7Qc2Z(7=PIS(edM`*bT0JJ3y%8 +4)d-ifZW=(Hjz3d78pIocR0oU(-0-&dvH0j6E>TnP^U_Ny{5+B#aUy+(;41;y-)zJ0_~+Ol(Eg3Hk(n +8;y+dQ9i=|wD{&{oD&C(9vnBM>Xmkb(D_-p?xu4D8sFDtX8t~S#5uTOa5-@p1>i^^ZF{2~7ZGbD+UD2 +Ai(`WHjd1Wf{+RuqGQcgS|^)5a9?OM~#1jUu-SX-02GoSVZM81&CUnG<+pW*}emsY6HvI#DtlM5JtU) +66#E01#d%z!gyjL?=*DO~LUm_8@CqB7dc5pTi))CD|69P*8=9b5I)vT7xm@b6KO*tQ-lfQ^ +}gBL%VQ=*k3B5{@0DJmAeyiIWp@mHdDSScg4<(n4v@@@L;aebY{PW_HD7P`wR##b-56&20K{V6Bus^)qUP7e!{RO>Z(8?Q6mtZQ-DANJ^IsG;kUnyj4aF37H7}u3c+l +3#+cP-HC`N_0x7l*$jn6F$0hbESXs8p}YX*d&+Zad`Ht2oT{pn26z%izfwj-|^e2yv0(a(NpP9b@Zm;apk=d6o2t +I~5#XpnZTP$ZKIc1ufeny!Wf!b(hBv@o{IkC++%F^g6&y%+gkoxb?l;XJhO2bfsfKr41Pt|O0wP$XC_Jgx^GKa5bo!OVn6Y313gJUscrD%m-YkJ=GM)YLokIE@%`?drp{EaJJ +g-Ly;g9GOo(Th*HNrot(`dK22smVd)>0113fAzF%I>=t#|eMd4(&W%k7s%@tU)+aC6ZZc*&01DT8NB~9OETWxLoSXy%Ne>Qr+6SXy#;e2=;z +b$FCgK%Mzw+^~ka9kwf?c$wVf8Kv04f6;771rGRcL)lBN>!e-|F2|q3!AME@p=q1!Dm2O|};jA2XV#S +@kM{Do{G2Sk3cFNS6lMw4#Lpl*zO|NQ-ItBuF9Lz(G_H+S<#6dWP<@oCMI&&$HS%R2@l;t)|H2SSQ@8 +s8V*Bc2sW;78!#Pykz>$=fo4r$4G<*ycc5(_bz9fkM3yY!5nPArN(LN;!`4f-Fn>dn*lUwvOc{NMj_@Lwz6|Gk@hqJ;nRSwAY`1M~$10uYpDaGJ +(Zj3F_KVAfCLr~GmSD=Q{i*&pDM$mYP4g9)$|fl)c=I9rj;ik09TeEEwcJsAVo6T_esxZZ<806-!(qg +$XgMFRu{Tz@DqwUy&wI*VLEQT$)%uiAm*O|37bz)1kUZAL~&1R8#`O}7eIv*TOuTLi|%USQ84=1b>IRI1J>M&)=GX6iP1GMI!xNVeF?^7yH<_4kro|h_Dt*4+; +mLS=b`zU>s=Tz-pNA;V{c14=NZcCIi!%EnBe&_q-;%8Tm#*_a$D}{L>RS-{_Z5E)Iv5ILFhijvj!-xZ +3?XqGrqEBDWZ}&$BZW6pF$9n`kjo-L1r2C$Zob(m4H^|v;QaMz(8)Hb5G46Bp9=a@F&f<93oAo5{xNzrwkKvs_eQ7PL5QNHM#u3? +ng*eXbcQ6T0e`R^-(AgQ(Neh4}bl%87dsNUrMCjCWac?2|1`7EjRO)#Cm8W#s;h6_5C2kApM1PH8wMp +@7~Fd6nDo}dqfd3G{%2La3bFfRM33a*Ufewcp@Hvc}hId81NM)`?!{_$#{@0atRR`V<8ZRj)WZPC_rr +8loB(NdVcJ6TQUzhIWGbClnO@XXcf#0-&0Mi2^tFE`QF +b<#Zn*FVXp|zG*$xSb_5l8hkf$6rUNn%#VqX>+ee!a}TpiuRHbnlGp_uv&cPZ8f@irTtaX5zAO8Jj#S +5^YJ%r_IUOZs+Gtso0RpXbsp`r8s!R^93lOYqfdq&ExU-H%_h|G@Xvi$OHOgHx4Piz)ik)sIMY+mRZD=}0p@|W?-_x`=LOn1j4sBW50 +!l2M-BCNJYJb~h$h}Rz5^ZUj!_|zm5Mpg`Eb#eZ14=&MABr52%C>y6!sApk%4uHEe6baT~R&mSWb%jk +<=%YTaGDPM&Hd`0mzIqqe?p;k~%$L0l2V&YNu~^Wy$?XKcIYRz@amq0uW_ak#Q=d%2-u0bhuj)dOGnygw6sICi- +`nZ&-5z4#bx$a1mcRNQ}`FeDn+#dG|Q(FcOQHnl_VUW&?eSI5M}JAtM5T2~W7m0>4zIb8K88;ji@uad*YDU6widO2NlRm$VkgUFs?gO{y^JePY9ETbp|i68pSBut?7JknO0RI`5e=(o+&YK9$>wcCeBU9alNVwHH2HqI{-_ +crkCC;&n&~w^%HN>2dVJMw43a`m5GMIVp{PoF{^3l3-#3TJ3gAD+%jvGhU)tdSbE{rVK5o +e$;r2*FPSZKJde^df5m%>LS?RKCG8iSFCcVe4+l*lx+!9)g!_u?v)CaTY0*33uf$brKC;7egraLatTr) +USbPz`jInIqO(8mUT=-2XMrHQ9u>jrhnsx-sLJ9U6LGi@^J0Xbo>`gx`)sOnxhZ5bbYh~stc5OS4Djl +0vOyT=OxgMtowFp~VRP79eNaF-<6H$q(k)?UpuIGv$2%Ws3NhNttIpJYkDTbVi2LY48IQUcy +~~^N#_mwnE>dZh5A86E^HC+$qzfXFq;l^Q<77YV^n5jj14d-aaymSUTRW;fu3;sm-6l74Y2D^>?x*&Ma%5d}i?8~-%5}3VDm@R=W$uH#e%~j;37|v6yj=|E4)Nh`bo)p +3aJsJI1WMBk8_U?}qJ9vVX+;=c$Ju3;%|Sgi7UZa*`3T67yMh*Yi~ltC^@DdK!2d67@8ni03-rpL|W0ED +JuVtT|s9^U;m}Q&_3r@3s5Q%st|%p*yvHy-&V6B^he}2du>HwWY%pXn4yx>ZS(IjA6w|@7ob)h^G`Jj +h4v|GC|z_tV(DcVf|>}2X#p4(&^vlXLFACwLwF0rCvwd>y}=S=A`gMBz(SQv%4!Tw|^!ho)C34hPc=h +1P~K*yi?6T<%cTn3{04Lh(nkPQ(${vOxJb{e5#lG!rs+8BeT4yxU;uQqnwYfpOAPjf_KoFV65|9jc-Nts+)AYlhCA#^@G2hd11Nb?X7p?-(MGvi}#XDL2Pub(1j5ov3EN6>3w-=~B(#ByLz ++$|v0k`8;+p<$g!q;7qw2xFD~pf}BkABuBzIW|!_;(Lwr#kWYa^T0=o!N5^t?<}+TAqw;ubT_WbNm_~l&LV+oOg&YlPA?D;`}cdWB}6tI}h8D*bR!ng +;@IoAIHR>J-fR{Gslf5l4JCs>Iga2P=_5)9116irYRj-l|UEd*EwvNkIiA!sn}!r(xDmiW@BO@L$#n5 +K?4Z$Ka(@p)b;1?N%-NbjI4#@e(kVg{&?(Odsjx{c3}G?;6Fw?={p2Cxh#e>FIRgJf2;IU9g}aT+9|; +%ztwPC?5RNdTo>X3JfzxM_t;E6`ilyrMjU0pMs|FtAO;z-mCNdc3*2MqB6lA2_;#Zt64n16Jw}dULRf +Qbl3r^4CVGZ@>il@8Bc=OrXz^iSb7`X~RnY9h?MK1N|N+8UN7&24Yz|_ZCwz=1Qy2UN+OoH4tT$ETdF +|duh5NhDuF)wUp*~r{&1o($?2IId$Jr7%4+{bDr|se*X^TR6aNoCrW;N8{X=3M?F~O?oJg+NN(WR)r1 +7I<7lWT;$(DZQC1Li6vFxJAG^7NrecWWJdSoFvgXnLdR8oWzXqTN#rY~{hM&!c#^YNp0`P{T{pM*o$2fBa?67CVMrlpiA!y($y5OB+qpUK +ba=XEsYq;R|z3wSh&xZ-PH`$vljUX;#|62;^>DJC1iN`4&(45~8VIz+X56y5dm$M3lWb9Ojb3yP;u- +Mj+FDLC8mteA!O7HbWf(t=SfhL&&eJ+~}v0&^Kena^<8A4y2sl|J{h?vfeRnQj1ZKZ_7um8L?XbO{;c#{|^z16oq}k-~z;`yIu+3Pra!I +ZyyOO)bFmgn8IoKUSTEQ&}rtEM1nZe`EVFWEd%xmMd&-jLcu3t-cPfQH_an&4TlB4-KY;YomqY6ZvIL@G=6wIza^TM{`Q|F{)9F9x$D% +a7LRXkT8H$2Q1jPshMJbfoCi@7C_%tO2Z$rpY0&4CnMp^_YM0jE=WzUJhClXl5Ho#zD|RH +_s}d(X*Yi2E%nV2m+*ZK<5Ltbq?fUJaN5SO#c`9`%cXi^b8>1G;S<5NOP5mcUf;e8XZ@IG01*S#ehC4 +L$oL8M@5;7YB=>MvmgDC5@>;Zon20j0;1id!$gLN?*G==hc=;o*>9sj{H_O*L%;T+PbN?SyFVtwJ0VB +U+4|5oC9to@AaD>Y<)5wu`a$yl)0O;ZHCO1zp+4QV#*D_FgB=l19Dk-Sf+o`!Ytlu9UiY9&@v>d3)ljg@(V+(*(vv6s#V+_NZ~L7KD&^9tQy|K1a~=*>W-lb%rJD$@3ZNf*7SMD6)HM +(=~FAIFGa%H}{`MeUfUflnOcc%^G%pdX3pym&{?6rd*-Tu-<3YFg68IukaoBZOt9Z8;DbYO7^;AQG4p +VGKd{r+2o-*W>CF~Dnxlt=x5$S>6n8`rw0ZPJi2dvz!(Ime=>slBvJ^+PVQKx=g2rX>-v{&bDQDe&uL@sKB4Wg< +jIcRz;N>(m!-0S-BSIiD?*Edp78j$M2l1*gK12ji2ayUz~CYn;Dao0H!p6nL=6g+Y2G52k*{nlW`so1e4=%5q{!>83jSPubn2Jo-`(^5Z!3%RZhi*dJfbjZlAIj8+UHF5briGck_D`(Y#hj;^1WPdqi +=$yGb(uWt<>5%)oL?vPS$Zj)9B6-;8B;^g7d^vSVht#M#icECm|$Jh(X2%(A=Kd;F!=E&D^flYo*dB^zzQB<1VQu=59BU| +0)mrdQ9oZj%yX;oN=gxp(KAlyQRiL4QKTy&dw?$`SZ3-;eUJ1$@TulIp3fU0%TO-6)mmb+sK_<#mZ0E +>Tg{3fv7b +1=pi{nhcS{_41Ct$HkR6i(w8{Z#|`I0hXB8vz2WuJEIngCm~48!N0mLA1LM?<5CBZtM9Qjr<^~7qHw@ +>3crU@u%B&ZJfeaIaT3vIaTPJo~jY+(|mV!xQA3d!%Mtywb8CmBaGHYQ$&==Q&S*rCza7eRY(3!rPkS +nR;JhyrT79mD|^_xPHw};QzO`l%Fi?^yRsL)@6c|w?|bM4Q73S +_U9iw#r*jaUWO01u2?RY^gH?t{mh?BmF>iRb3N~`*YobyUBm0?ahdVQQtaf164~6vvx~c?tdcNPLu5GHk$4+tas7d#fUF$t@k8doJtUJD-7i}I$oZ>@iaEv82NR&~r(4#-U#t# +{lzY*s}{~yKqKe+7YIRBSReu(oZxl(G3Vn`GL-S-Ghk|d06K7A{zCKzVj0+>%7S-@y?3i56g3{H-1lUwo<_;iSiUAG=Dd*{ +J0=O|?w0UBTF)qZwr6aC#dPur|>#vt=;*MubCFDq}OMML*}^$Rci|Is+_qyJ~)yyKt$KaBJ9eUY_i$c +In=W_oA#EWP#dVqTWxGq$~!x)P7jWJ1HE>l;JzEHv*cxOKXK33YeRJsoh9N1lw2g|?krH@%K5<){Oz* +$1h8NZ2Vq62Xf!C5ISF4F! +7!n7)rU#|UK814qDi0{#aB8Q*o!O31HOCa_zPfO3E>hX7^w75{_6)VfCyzZdub6`;$v{yv+}c<&M|7@ +FJ&>pJQjU-$I#m#}Ys*54Nz-036in~q#QqZ6pL*e$SJIM4W`-r2{;G?Q|2UeE-)Kk^@eH +$nbwvj8UB+3&)?jY8W&;jny!fA9X2MXYa3(!%=R!vDj0eY~j7b1D>9MsK+1QT?_fAz~DyuT4mt|K2`< +T}Yf1o(muhE#5$p!65%84X7WcnKf*?Pex~}AV+rCdLs}}T3sK2|+L;TPq22jl&X=Zr(vf~ +d`m|Lkqwts$CG%ILGQ^ou;6$@z(Y9|T{jv)a=k*r^FMhqey89D%k?Mq;>jQ=OX6DadCzXE)^@ij)K6i +O9)Kixl^1vTlh{O3q&PngTRYLmCJpuY+pHQ%deBuq8SECwHh}}ZRsn~O|ZlCuwAAgql__LVjvGQY7|t-a9RXBoxuB8(PuXval?5i)uC2f= +cr&WIO2qv<782uFaPCuE-}>=6+f=eXzE=Vf3e^?0Uegfo?Z2Btx|vcHGs(-+e4mUGuw<_RuZUQOf8=WmosypYK-y;V%C!ad@7}ZNpMl-yBdV?tKk`&U1VP43X#wWWiU&ZyVyAJ7;>pO55wehl? +j=|X+cFCnX8T=^@=uU84o9kn;GPczs`$g??yqmiekdy4+{pDh +hY@JF)LaSJ}hshx)3@m^BHOdZyF?KEr4tUe)U~LUMS>YPwSP@Ac!Wp2=A1XE-K=yRFh1f=BmpYL&|QHPx0J_$CnF!y}H&q%y`o1S`SbgpT +KhFP;g%o0{aaC;(wUkA_on9(@AB0JHxEZ-(*5YoDKe4B>7@*<6YUNN7D&+hbnyIs +yr#J91;z3%yHcIs;(>l8RD5YgnRmqdbL8l5EK!M+t41Wyec%{Xo%;cz{&Lflw=S!ie>)AV>nkX^ci06#2Bhd8KV2X@+ku04Qi+iD1yBx1tq{+{haK^~-F9GwA2g2?o73z>RN3Ei +}MH`G&Vvh_u2la#QA5Pgs%Jml{rz0EUO7zt)0W>EYHO1Cos7W_q>KSa?G~E7k+j*fHovBx8^#Bq?zBm +F>ctdN+XplK92B8AdnNHW-)?tk{s;x*DV3YC%d4$PmuosG`FjaBH`Is*~Va8i)rYqD^!=_EVoJ$nyS5 +%*3s;?yK;{22h+U=yu6GF*3N~qa)7&TntKO=@nNK@t1M=^}k19J?%S~1W?is$L=ii8F+I6gZm1T)GyX +iUtZ+9UYwN?N*gkQ&OzD7$~WaR_iwo-A6XPaxcwW8h6fzS)o#{V%rTD9v%QJa99r`Aez|K2O9jW*K^D ++wF^b7PX>a}R(dmgV+zW)=sv{iaQ3@#8m~8MGJD2l=*6q{l|B?yZp +2v%MbhlPhOnf^8t!t2s(V+dlW34eVPFZRdpnbvc$j-bXO&TIGEu$M+8`0Q;hSn7!w|w#_hfjWQ{VdC9 +2n*>mO^aYl39Xh@g1BmI--y5`IWmJ-V@wlOT_LK8Fwe)4c#N41}mbwZlf!3RJc&E89`pjtRh`+7oxq& +hp-JtzVwc66z$p9;yPO1;n;m}N}@|riGUJrl0!s!&0d~_81c$rB|omn&%`~rKG)jug=34Xy7>8V)U1* +`P~y?@&}e@_IclD5XjD4UYdRHY3C(|L^h||m=49$4C9b#7b>F5jUt_|&MvfjNZ8L>8Gx0r}y=RxZ>8l +XgbEo8OJKT-d?}ii)O>k|cWB=5z#lvAP(f+YQ7h5Z-u${v7A>z97)Vz#Gd2x;r$F2bO88@Yhnln7wYO +lef8gzPgU?W#C5i?jLY;fNntM@gVCR8ZKlOYKv83!mgaOJE(!JHE|CudK=;=0`l@kf8J(s+0{jLF_oD +D*DA+zdl_+0qmmwiFnH19|(R!TlYzV@g|y- +%;x@)`uf>CC(KxL;1OKbG3DNukE^7WI7*)P-o3otX3nbU~6MHHz;p}1OU2z|ed+j9bo^6DlPTBd`i1*=1YjjCLWpaA& +$+wE(he^Qny};)oeUL!H$?27GQ{vDdVrd2P@{u#d?&J@IsB23X +^2uz6(=;^vU$!Q`c3lo%J(w-qC%Oy#fh6VfKEe_2DM`nJb1I5D+G?p;%#X{1IE)ia8W+#7FI>*3To%A*j5n*gAtzIJtizRt>!`!h9ND3Vm! +g-Zv-6)Z@r1^Zb*y-RcVdO%a}=7dy&GZ+HL4|Ty6gTsp?e|9Ecmtt?wjq;3~7fA9Zhol9{Y%dOn;|UQ +ON~%HtHJv=Xs}};EVV-AkkmW{RJcve}F_QsiFxC!C{g@DFkCyWQ5`bMv)YZ0 +3NR5EhKB*5SkX|vO;be}=x>RrZFrvf+$d?wv#-DhWPT7(m;{sQ1OQk7uVCQD$tE95rJ%_Zo!-=hU=nmKuV^j7w`u +v`iwjTjIsCl{_VNDXF+ ++g2-ec$o5p3rGe2l(`V2|auS6N@=M<1l`U>XEOvA<;LPt#{cNZ)H+W7QtdrzNNIQn}*M^fFe`u{&t%# +{ITt@s(*$^blzYcfPugs=Sit+X(aXTRwR9`NXw0*0Gp7$BG>AEa|P3j(ebxeLTOer86i!qE}Owk5ZY^ +b^HOs37^a6;!bM-0T~sd>)OVy1C9hXYKBVpvxe}i9aNpP&O`UDOqnqL|Ivw?%5j3I%oxeEI=m}h6SXS +gcO&Q|4yLq#n!*R)R%sV>IkRLK6JhLvrtTD;FHaF*wL((_peZH=${&`Cx;GOHO;oP^m=5aR}2lBE +7sV7ZB2j_2rHk@SkOQl5#5sP@rUa#7K8qgEC(}S3A0f=3IrTbC`>`42ac?Ne%19y0WHQj1?hBR>qrD< +PB<8t0L>xsW)>WQfD48@Xi&$bH+4n||C&KxIVTvx$UzXy2(UhUGnGq#9n^2jf+pZD@wYU&${sIiMIG_ +NrJA3Ovkm!2qh5%8yllfgjfW3a{b}-?(~81f?xPdL%fcgk36SNmqI3N=8NO)uhTD$X*U2(LoK^2T^?e +~mkuD90*GJv`dpSkmfBw}M4mE`H1OYQ)!#mC9mo^a`lnG7Y+p+Qd6B~6)_PdOD?Lmrklx&zeem6BnB$ +!jiA#hvYe4b7Yk5AgdzCL2(p*)sn%wHjdLqI@6I}Q*8__?3M|A)CZX>wG-nnd^fio54^i+L!sUN8y}^ +Ne}-TQRjeutAa}nPSq)??-3zMP;>P`zMBdzZ&J?~-ExYnjKq9y4bq}o +34zppl-eu4^*o6|RYzR$Sai{JCc%Q)%dEvI|?coM1w60iKJ(Yi%Ira^k#Mhn6^AC^xqRPFD2)?ycVdcQesz20Mn3?Rv&s2v8EaK +gm5%8REhg?$u)%VSV_^~92rA?2#A^^KeeuQqTUUyVp8*Xin?(>PY)n7=;x#(oj3ZK%cyvLfrp@6Y~=@ +m$HUWjFc>CjY}rd_l&KPXBR;h~fl7ZVZovF$$$uG^8PFWr7rpp(shA2t`02uApK25! +8zio1L+#llE7TNwA{_m(gXE^C-qmVkvcc*KLL|L)!&Z=6fhyfCBR6Z?d?#b*w%E2(HDn8|`&C!~y79- +A8*XcB`8Jna8S45qLTTx>7iz(3s@Yb&U(_ZsJax`J +l;0bOIHd#;Xc!ewG__G~YI92VgH+=$xJ+!~FuzJvv2R^=;BwH7Ed%iF%Hn~kmEGFwDuH0kgzp@4R8+mcy6AA9@!-&60t={8zT@)Qwpy +iReebiKOo_(FYjJe~Cg?_&AB=Lodp`1V<|q4)9qIjfzuIj7QDS@`0-%YB!j`6qoeQ*1aDJp+^NUuVn` +tk~~#G|k=#OM<NZ-vVW0(#$_j5r4)GI>?-XzT;>6Iy=4FU6|-4#wZqjy)*&6#%K;BKPV$_Xl`23d{IG^OR`xAA +%uZ}XH+w){}9GtBa4-0>G1hzIg`G|!T8Q`qaQQj=V@zJAj>mpOrK8qAM3dI+0)WoMY7G(%t@GuqEeVH +s(U)ir>F8reIiWBEQ0IaAP;tsMGepWZAKAGKjC*}2)YU?{N5e5}XjRtB1iHb)xrpP2gq?pkr8E%HItP +z1c6@IrdX#cZwDB&#;rPD?;*Cj3rVX98UUOYbDqx!V};_N=NwbD#{NxjlCMSa`hAR$yM~_ +JPi2yTW@W*swHH;dCX<>oZEs618Wkz2qx0w0CXjo7%s$#4=w7Eybl(tzs$qkh{SXZ2@ek3?B3GjbG%X +k>4tHY$uLSRFozia{cHdWa-WjQ?qSY-l#X*fsvzwjh^}!17@1gf7Hj=)CsSuVqvrA +5J&KY_R8&BC>q9^|u+sXAlD-nM#44aB3uzP +K|oLS4T#_B+oG<<-MuQAR?Vqs4{xua%BO|g2Pb`H&;_nd<#=jf|5+n9eEr883A!H!UhH@J*fH?~XW1z|Pr9oUe:@oc!oNNl@2)V)-q|6Iy_n7easM&^TSCmzv}G0cpbXMYV~Q0ZT`2Zs!SC4A@ITs +c5>R^^^gy3ys7vqQ|Ajp64#$15l@2fw^fyc-Nq_UWTCW8yAd!FCl);u~O~O#UR=0(IK+E0L#5_rpGj4 +{#;7dOmYKVU=Mx8vK9>s4^VH*ot>_B^L=UEg$e!M#R`HbUuNKWAeNMSkKIfDuLv0O-xIKZa*2OKz&u}g% +K2nXb8s<_`~uP&-b-6VpIL&#a8ES33SxHuK;fXf3(<^>NhLz&Gh5r&f7kCq=-EaDc^>O#Gbgj38=_z9 +QY}2d}B`g)&T@fs^^5*+kfcpdAaYX +ZA1*+RI6)sOYLR>TiN>C&Ksv}lp!9!g*CCMTm;tRZ4%;9td0w5pNPM!R=uA)Z-30aHtGfZ0r#4J=3bh +6nE}oJnR{L4_1Hh+UK{lS{u}PKQ7_;t_bNZ$X85XNRZ#V!9CZ)L;nC+N=1|s-O|yV}Y2Kc%MDVSLO3H +KWt1I4Ss=u04pFB#RvhF1_3*IDXbfF3TBn%IyN4qP?uBdwg0kG=qk>^f_T*{BEe4?uy#i#tBU{BBT=D +<91D}RA}>GXk$RaZ_x?~4ca#oL!FZ6r1Lyc{MORyq5Z!keE&I>7d`{@ly>s$yjyR6rNtBU3!S>N2Q7C +QDx+iw+&9tIk3lGXRZg5a#-ZbA$vQPPcLM(8rIAS<3aZAy16<(yp+n<^y%{Lc@BWu1S>fqQ~FqYeBLA +hL%`2oYmKPl*;#^hHE2uEQ@UE-Ia!ol79bziq%=M>~?AYGRLI8rMsb0{``v>hiiTxzBJ1|4Fxb_>$-h +@y?SeI!zaD_kBz(k@@n6;?f&_dewbEJG)0prh2bcQ!z6}aYxzoUJ6;3{(ePT%67a<2DJ$=9>#`;#25j>FZXp#yh5M$q1V~AIY~ZtF<5|@l6}DwbqhtxB$mni*ECT%D0M>{# +DVM(z_O9U(sEG58kz|@P3mBvSH|EpqFfS8zWoAy58zqlg9Wi+ReA)#l9?1e9GG^wnqX=ZK949vnllVJ +-to(ntqq%`BF9HI&?Z@7h-|Kn*%HT_YJS&XV8?aQiwD*`ZBIC_x#RdeNSdqivzgJj()ZKH+>mf%D=(GhBw!!8?$ewD)(Kb6;C?-ux +z+x_Tnfq#0tzv}A&TVs!5Yy|9@F1hgom}MyTPRWPf)8SIK4>)N2>JT`_voB`k@g`L<&*yU#QdXX(91y +%JK|gqq?hNR1r!FOYDjE6S!*PB~{8#DVC%2V(m^r&Cwbmt4kB*0%?+gyhOY92-i0N)vgz-@!V#`CP1% +;@FbA&xQG$6-be;>v!`pyai_y>NkKlk*Gic&}-qCNqXA;blG6Jz$-pL +V9#NWr}Y00pxXbVfcmSe{W+l8KLRSeQc#?rQJA721Vs@TAqkv@kd=L6D2=TDOQ9t6p?w~T>|Hr}8~tw +LeSA+u-W6zDkSM;5IudxpSQ`CRI&z%ty*GLr8RytG;0{I(5v+Y +lA~mKmBwD19Svihc9M!wK$Knh)aN+JO5qLGg1N@Q+ay_!Un51DJ9)m;%0T8T^N+3jFCq;ODyq{^WK)a +##m`v3=ma1`qM>+Yr>aNJ7RrIbIIW^m<4gANDR!<^J}(iI0K2fS$vQR4}&?M5$&@dct28Et}yGH=^^p +*U*#+lynf8D;m3IEKrHi=!0^uwNrOr0EcIM}InNgquxCNjUyeYi%hKI1s4A;Ir%+3r;IHw_bC!`J?l}^!TH=)+uc3fEY8Y8uCQX~fL!;u556 +!uEl2GKS`PZ6pQ{pim8aS&Ok8%pEiUS_E;w5?$3~DeA;743zATeY_=`fqT1=((gGqBFT&Y6#@qA^X9- +=R0S7}+S=TFsoLiz5n8HjL^Q0dSN9^LB3XU{vY+$S2B=(HyF^Aong}d=r@4oiG%;YpUv4Qc#iGRw!I% +J|D26KNlkao-^!pa%EdlyTXaYuD;FP*L3;;F8=e5j +xztNex^LJ)2#OKQIYZ)%iLd(}q!NNQU>cliBK6is;ccBXAc_7i@nH8W4NHKF};}-#PBWsNpY<(V)j~7 +H^rg=gkBCO~8Kuy@-omXFqI+|-*g%%O>T6vC{O +R_=56cG}odV7JGqE+H)g1mNh7}Vc1foRAe=*PHtWZ)oglvjjtNd}o`LV>q$QvGfCO&Q@R9}1xh)%Uqb +cb8xMxC%ezvB+}Wqyg8gTQOgXKbCsg=mfI067icRcr$~R6$~HEs>}0iX*^ULSG2N)MHKmtKsT2GeBnRmlQMWTadP=DnpY!nM6W&GeRVuFZH77BD8L1ee>&Jz`Uu`up9NDNLHqO*X +o+%8<`41o&(DQoAQAtk38eti&#s)>q#sm!}-53R|z|%GV^{^W?5+?!wb$dlN6lWsc~k6UQ6iW-+T+Nt +Zn=hFdw&;syz32-u9U?)7%%EPE1s@YX)#LB!@2CG;LVdlGph;*bYN9LS_QEQ0cI?2u2 +`+RHk^U_@VhjjscfnEbhpsVoGr$SWu+t|Ry(a<()Yr+jMal9hNYiy+mXkvw9K=TPbO*XKxAhOFnAi!H +PjHzw+L3=__hnEXd@{p^{p>MA9Tc< +II=f*azYcHHK;q?jZi@!*%GDY!MBe8++p2u)c?KZtbg9N{Aw(MK*-kTTfhAm*FL +-Lm%6g2pQ+oQp8S=m{hJeiAZD8<6^@WJf*}-&AS)NcDGJ3&0>aj>FoZ-%3c)|zYNxhJHr?0Q(cOQf*g +ZTmV&gws4(C4E+}t{;e`WEnO5OD()Se$hZVL!ok-8G4Ekv}~lp`x4g3yg#q42gCvC^gWVs!Se^jD=Ww +I|Q43=i3B*aX|XR+8N~YcIM{V(S%dQ8xHS(z0yhV{6Tu?J=fnnM`fzG#f8WcAMj5uf4bRdt}?q|1B}w +`h)1VQa2&V_!$~BC-Ao$gn+P_t)Hw9=d;E~ivr(>+2w6|u&!oV(`bY-z-t!`Hg*;Cywlkw%?FE-ncJQIBB4f3$=y6eRgRCxpIe_dA|^-4;i);R +5pU1+-9y4vj7^ZRDISL^H#mMfbZ#!6~|f4e|}Q4>+!f;i; +_@Zaj7&!P)H<}6T8WV!edu=Y0f)dzHKFiBV&Bm2Oj>E2wgz)dU#~Zdr-~7Y(DRT&fh~qyuOx5Bg|tw6 +U-~#3FDeR{_elsbO{Wf0CLgPS^Z6Sr1_&mzbJpORO=hs~H;{+AD;YeqPycq(g2rL|VtXs@_yh47#*)ohIZ3v#X;%uDhX0q;HnY +>Khda9IP`0jN|$v3Y@l&?Af7;zP4ly3v;vE}3*D~U4iCZa;IX(Fw0kJH-H2R~&q`DBG|5={d7j)O~G^ +?Aug4v-Oqr%QcaP)frX&f@|;PSpuD^vc#DU+P}$VTmsx{g$jkv1`T)$j7A?85AFJj%$wqGkB%MngNl$ +lIh73Guq#q!|MWjQAOIU8bM>tMj)|%jGo==VPl=*yz=FF#TZ+(%U<4M%Xr|7q2y=?`7Iq6yMlXn{bL6KOrS`7&&>7GZVJXamXA39%7aj +}0oZXgDJpfn1izp9VT7zyojme%oN1c)Q-Si0ZnC0_%&`2xsth>z-X|w(YI3{Jz^$o(43-;eqw&PfY0JJJ@FiyA!mv9V$vItlRjT{&T_tSGj$I6neHDO>-R7rDUKA`>o#NzmdDP0!L)ViM*WW4(lgMo?jvrMjkswULsk*=m0A5)#Dm-CxW+ +P4yLXRK0<QR2jVOX(V(4-oQY_K!~fh?xC+;`hW1AqWV +EVR}mtq#=xkNdmzk5=RIUrZEUZ2@F9#)Xi<4?BwU3J-)9Yr0H(elW$(_FueH+YH#4~++kNkdtrxf6SO#yMyv>yq-GqKyla +JmN(8=aJx)Mn!-q>7{?3Ntq*1kjcZrS>yVc7O_!O5mF#{TID;+x5w$e8fs(4)60V**g&`$uR`e;+}7= +r;66oNS|Hz)zg)liSd5Ihh6--`s}2a54?rv~qvK$u>#`{1Z<0O(pz2C;Oe-kl=NCXcF(|rChEy{ZK`{ +6?=rdwY^8_7tRf4Jxzsw#lgX| +Z1)SU_UHk>(?-FCM6749%ai-e4#CoZ%|2DrE3KV-g!_fp_`vqNCM=58pB)IV+iZ)5XF{ae?-C)KP`l< +JEi>Ox%UY;#$d-*{RfRQ^F=jEc_b>P3e1 +*jPI_N0+CbK-xf)>tdMZ}nGrkm?P0?C(hg#y>V4;ch?)B32k1LtVe{Bb%#Lv`??B2@z7rSX@&_XbW@!6QixGMDsiXfHs5a2rz-tApO(?v*?k8;g!&AQ?<3Bp>$DJ~YL{V%7L>M9<0!I)C +BVhzbX_#8;+O?kDHt;_TTqX7yYPR9XS{`oxJ@f`QdA6xT)|znzrp=9Qcd(2DW+>vk6ENI2p&np`|WA7LEsTN*u_`5~3Qhpn*jA*6)Ddl24254^j`JfVO! +h2FnrvIXoQ9Kb!Q0?-`f77ndUsn0Qg;$8c2FkuLx$@@xSqc;HGU^vRWrh6$KSgKQ;`hsEz(?C>b$gCZ +e0n<5+y%W^=VLBatd$luh_0ucaJsiAPa{sec?f|ajL9~b-9$ES@sX&J1nX~#&n`Zi_349;FjIT0IJA= +GtTXVFTPK%>tJw;cE!eRzfGL$bb+()YJcLt*jR(77K6iEh!LqcC04FXCikxkld#m(KOO~Y>>Vs~!<;T +IBKQEsFpSRE60bX?!{+@=mekOWMXP`*oun3O)Q*W1ZQJ5)}Eo9}LkQS$vGtb3_#t$RFaZj#;pYrBC+2 +opr6DI$pbw#aWPDakzY%!kjS{adXjAAtH@}aL5#AjZ#nwG580<;7lWZCJg(Q5yDxZ9d%{~_FceCluE? +)%ezT%~|l)(6ovPC_d$gb9>F5fYMyl-7g7 +|H?jg6@jU3K8o&vhAS4K^gTD>l)~`hPzyIN-@Pja|Rkd?T^1=|F#P)xq1=+6q-$#|__?C3g4 +W6?w6JudJXp6MTFphV-6~xVehpn*b##HvLMzdsc2;$bGA0^OxTp-e7noo4+??+qy~6w^a&{4o&>pxZI +(CvbGw%Z;xB|@eEZ1HqiSM%=^^u`i6PH273Pi=1rRWX}K2I4}QYDN#pB3#ynsJy}dd3$C$T1E98>Vfg +gV{!spHb#q9ZRm($)w7+S`dq=sgriSAEE<~oW#A6T}A;4^^f66m*cNDVn%A~PyubOEPsWTmf}x#AO^- +;uEIeo_UE+IC+#BJ;i4t6|pB>57+oD7^v>?rjm+$4;&- +nJslJ%Kn7vDBf)sS$U%_gC+nEdTsJ_IM^wk|P9^s9JXBYLdY+^EbQHuT&%F8$+$$A7+=H$q&_j0V?v` +PSG=@sob9cTsr#K#A@rqyX{otQWJ%@}pqrYXUz&u`fHt#Ed3N={tkGTvGsx`Y#RZLB +V>hKe6T|*DOzUWlCu%}M3rGQk(-YwU_1$JIy}K^GEFc;EBX_CgN_9I$>ie98>~Df$XaL_8CPO#3Se|6 +xjt;>rQcIm%)sX}U4|M*upm&+1E|kK9z7`xY2-P*;1!>m#w#<>BVQ)>SH7@7O5|S9kIwo;Z5T~_w*l6 +laxwD3DK3=ysl<+Dv^*p$NWApv049ohItM)A26_k8GSIzg?Rb_fI-x8~61cT?V3^M?rvGF^8_0y_3>6 +@hH&-!Bb#TxZZ7J6$)8+DuQsE~(0ndEW6EGH2TCi3{^)wt@l3QSpNi;vWsg;4c&)c@5?{vlKBHzbT57 +(gH2N=^h0LGS5uG~lpoH*|_cAcz-Zgx8z4BI%wqc!nYSZkf)KpOAUTVC{@v8p4L-A{*Wd^UTag}j%j9 +AKC0Y73P$nliCET8lW$yF>%*c{J3c?9GookhjqlV&E$(T;>}A%ac?s3h>ZKk)%xfnX^yk%|Oc2_GC8* +nQSVKhwb?v5^8Wob6W2fT{B{`)3eGA-q#>j#`z6QML!A_CPUcF~yvnppKp4*47Lt06AZi8b9Bj9< +90NGpK~Q^WM+Qt9V7Z8BR9pPDHLEpZbc20g^)$%F3QlTme$xpVgmisl{^pBU>!KU}f50chn*?UNW6QB +2>o@8$1#grC(h!}uHdPUBdc&Rz_I;W2xT+3UtaN-{En81S`@t78PTq%f0uQ^F1C$p?xY=DNl&MMsj+n +HUSsV4?Y@FqAM4<6?l%>>WWFW}E5guvfFefsA+atOA`=ZA^-LPfYVrn~%uAgE2qQuk}yb;n%7O>WOw7#2wyu}L=NRd|9J(s*Z*!CosaV$(9OLhA+{BVwGKp*t&O){fZ +BN!oNiQX<#_80w)7x)D;g1OBY5dAbAF(W9U{oKx0)v#dD`A%H#S*I*MiaJx6aN+|K&O9lEAOR=)C-`1UCx7D54S2GjuY(~a8%&zgHCkNvpUe$5BCD*BX|6N4_Y!+`p`N8tS +x1D-T`pnC$P~UP5y>p!O9J`WJUkzm+=vQt?zt~1Ap0E!#|mZTW|UDrMozI!1pJ8unB +Up7wtn0+ZPEN@S}!}XS7JUR-@w`-|gd^aUlC>Bm)*4;?ACNk`BfZ!L&E)f1MMA-K%5Tivp +9bqFhio4|UZxq~ugNN!Gbb&x+TCmXS}`zipZS*wj;cL@X4!{c`HcG6vjmK``OH1|CPAf(gdam1HwOrBfr{y+Z12<% +VnT3xEBF5#R)*)2E&sU-l&&*XV(BTH3*XLoUn0LCv!hhv{&9QVo=62!Y +6Ep(B}Vh7RG%x5FK_;Hx=P7v7h_`Wjw@<4a#w<}69xvB2p|2rSn}%0o{I73|hOmN&~?Kvi~*`m*Te4B +im1Kz&9pg3Ls#u#|3S_7F#3xt>`uy)!SM@=?ree1@Bv^Xx>Ipeb2Bq0J7KCWIB90m#Mo+lA!H_9Rh97 +I(;Z_pG}vx_NlhyFfvUmAN2kDkOE=`eYzmcT{s2v&rM8&tuKP-lP$QmJ*)r9AfLoBq;*;bXb2YgX58hX}a^6cMGh*t~?RFWSr>Asg)LBZcXD@uhqcC`XpfkT10zCzgl1YIj&LQE8LV +zaw$*!2@i{deBG3#5JJw*PpuIKH{4kUDQtdnqmLeD*<}J+H)>>b +agoqH6U81UApg|XD`O|&q7IC=t_q52sc{8|)}Q97!(%laUH_BMrtHd~;Wuy9y7QQEz0X7Palp{R>K+= +(y~oYfgC{Twf2{oo$a+g<3aBO`fw+Pa!g!(s2jDpcaS(hK^Mp!u{;7)9`CVucL_ANjiL-^x-mnzy{}9V&SJK{ZB0 +g6&1Rd#lbRyuXM8$W1mexOi3pd*A0DsJpqYb^_HXfq;}^reUmQ3C$dJW`hCM$GF|z~1oOODR#n(ehE- +V$2B#u2640bLCbHA86&QZNOsNHLkmH^R*vIH)tqq>~yilz;;xXuz_W<2qC+UBH-C_Sz?Cu|2==ban`<~rlI81JxH5h_O7$zZ@*eslA2%*uH=&h9~2B8SOg}>0 +-$l=477krP|+B*DuCqARLMt;6$7pxQuN;X24eoA9p=~MC{yTi%dXbJxp0dHiA+Jg;pVk24Twx7C1un^ +Q{fP%u?!A}k&^tLwetEs|nzqE~dcM7+C0c~4oE7`+$H{b%>W~o~`ceX9xqQo{pSTDNLQS6Jm-L{%QZi +^1ZuBY2}DCli_0{d-dHs^2bF8kVL^W0glMwtjBoIHA%#AX$#p6-?p4}Y^VdjtOsv)hOr@Sid}o&VH%1 +Abt3rSf-Xw@n*a{HW>{2Q^;7p+s545ykRmJM0@CRUqo0RE$4hyQ>E{b^ex>Ov|CL +e2FBZhuoErP%B2?2IVwfb!K>fw)f_GSEtRhtDW&_?yPu^MwE3ea`5+U`{PM4E%IHpS1;-smi=U^v`?=9Foo_-i6>1J^IM8Ykw1yNTz7*CHXS$2Em`?#<+Q%S8emxS7W*#u@jAvjEJCZH68A|!(2B!p7*T4y8ZT2rGag?~8MSZm-o*>uM% +n!(T}_+6{c6~{KkZn~AUTcj1Vt@&@xOdls}t=})G%?*7mTVr~kaO{bU2)w~;7H@-w6$mkEyK26N!mPF +S?kx3dj{<6k%C(Bm_IKZ`67p@5K~r1y7q%AK@m5){n7n?m-tb!Tua67@+Us^`TNk7DJVrF#uzGz4Y_s +NMcTfMlg`Tx*U7D|h4ZVB>rBfBm9}IHKj{+6%8s~k{y5#oJhciiEvCG>qtUm|CCLa0TEl +&bIB`tpP)B7|XQC3`@>Uh_`d^4*1yB6kC=pyhfb#W8IFsQ!%@8{Sp_|vg(saw(V_s~T^S(y6k6QZ)~E +VP#hxz_7D*2&R-CJ1!dm&QV+%cSZ{8sk&rK3!-A`XW-Z(nrqpeHU~lEoI{ +6McqMtulK5sPN~uhqTize45q40EX;j@&^q@Dnn&j4oqO7k}Udpq8`P&p)GCnP+5&G2kfHr2&{~Bf9&M +ksyY|qGTsCV>c()?G3?16R;W97Bt9@RF!Xsj5`N?56aLh%t}dw$&>)tKD1d)zX7I6>LCOHy(c(18cWz +`}2?97eS5EC)JF!NoIh7HIJlOH*QuT}O&RR=WAkL>1;u_DyW^IJO0Si&6(nWsj&`~=NG#k?~&j=E&!c +Wvw?K|YmZJK5L+`aFLa^xKbHJ2juF7cr+K>H3LC^!8nPKIQ?NB`JV8-vQ&Kc^h~o2{YZHCC*FA?ne83Qcmu}b<9RW@&zx88 +xOoU<+iZ5Fo&~X?;kLh#Z^PSk_u9*Ml}wy%dmx*YANs34WwCFYq}xlAWJA;K3t}4wZ@FFBW?q1xTmN! +>OMLeVOvtTOiGJ!+LK~P<$)<_H@m;%^Zw99HZcu~$e&@E|OqcO*`WX22s_8`jH*^Wy +U7)s8=g*3I%*`a@{_ZuNs%nJh0apP_Zpcx^U#Vb^JH)MOvug32r>izIU+L +mP@7dp)r6*@Kyg9c|%MWXJ3au^c-*T`YU@LKx0ZuO*0|0(RuU64RYg@?y&khnJ}lKm<0OD1;$ +it9CM|`O7e2Zh1AB=Fk>mxm{1L@0|6wE@*4&D)9$47v$GnvKO#-#|yx^ddqr8?rmvLCN1wJgggl~M3! +I>hP=pb;POzCwSK5Gy;qO3mI}f0I?$r*p!VT0160W82sZS3eX9ypv!PT+H*XY?sMEnsrPGP+08P? +Ruat%qg@$=nPZWBv9dQ3Xg_?6s)lh=7*wT`NgD43A-k)rz}u=>dywOQ0h}D#TCn@%A9Zm?ETd)z?sQO +68dsfO?#sEJrp}^)|%Px;*8ARYOuaSL=JS$BH`SS4D1~2>X;#HB~*1&$Xjm&z61xz!`L%!y~@S4Ef_u$VZ{aKMtFRM;-!~5{9nl7iub?+jK +sj`6n&$(%-6JKZ{@ypu=;{3>~pKq|_ZZ;ySEhubl?_BMAGv6Y|ieYxl(A`_;FA?)V}f5-S#J2loDx3T +Bhw?giFJM~*+Dm#~T-)xpYJ&Ae9hpgxmR6UO5kKB{W?92$Uj(6NRXDjJ6zzPdqaoPrx9cGVI#Uap&0}Erw5uj{DS#dbAGsEsNbzBvgP~<0^Fl +Yj*Z{-7&wY6`Z;hst3^}K#+!^D<`C1Y0eg(nv0wx*kGiU>3$C*C;txx#!UHg!WS4K!^C-hy(Y&>$Aub +As`nLT_Cr0)Tt)HCF#mVhhi<3G|FYb?blXxI=9HplN0&k*x9qw`5KBB^Y#R6HZcdu-Sv2e;r=h?uRvf|swUo^P24@(BJXeQJ+A+9n4cKme|U*66z|`k{yn +`Ta2h5knjlFCTECzO5~4_a(?TOOM#DIbp*Z?sqmtTP;^Teu6@qsE6KG>a#O_>$?{a106Fu6TOFp(#*- +iXbu0>*>tpQiQLo~j6Yp#ZTvRFyq+M-QgkCp +$={s{lRvuR5n*!DtfqtpC+Q1rO~a#|BAe<5yKbQ>ehitf3f&1lD9rHAn*N``6gH2ecUf5!2#*~lFnU!Dg`brFoy`gq`3Qbf_bggJQ +fe=fr|vl~X!g2%Ez5zuE?3N}h3KiNpn-DG9g@xGM@;oJnqa@+2VXyxz)zO;S#h$-H&(+MD3A{?IN0O8 +Yco`luQ6&*f{G{)f=VxHDzYxqiErTQH=XowoAtLiwG6Xa+SAzUwmhd8m+q!ek0z_J_ox^XzNWF%C2xw +lm`{hH&NP-CfzXMqE(*mle0XM?w=e4t5ZDb?z~drTu)j`fjQ`^@a=_^SYx~;!Kc5f(TxkEnd0)%vzn$ +~LdI=7Z1clKQfuSUhQW!=d1chKI24N5k(-=h~2=ZZOQL?$!ub8xA6^?9v23vhgZ`*Hc-J0$GQZc$~o7 +Xb-V-vu&Qr=vxc8|ZcE=H-X^+@h#Z)R20R=KWkvevjcw1oz3g6`ctf%uhkDq3s+pX{djD_pN|`?Um4c +2UoIiDIwriEOXcp{;yQcg6K)*&1&LH(~ak-MDo`ckld9*-7~CWj^KZj1YV?0b~TI)MV!Cf81rBKF+_k +elDLq|EJs{fBmEJA<?_U~joKdE?*pw{MyRb7fJ+`Bzt0vMDowz5cb&^(NKz{orARIi +KB!-^vX*?c-l#SKP$Zsqk$j-scOTnl5cUtILnPm>75ue7a9@#<5aHl1`U%t&uY`}5p#c$Q+_GMq$td~ +*>s2^z=8L?F{CC~_27DrWmbry#uOP +WNj4Tf6~E6^4;=&z6cpG3juR2;@DA4F)miRu6brf8dk#cBeS-vBJ~}ifY?C++OM+hL)rlffBt{wq170 +4b+>tYWvthjRwJC_Kl^LAN4-@q_|r$VCw0R9s=zR79gJIy*;P*u`7UZ7$2zbb{Z$NNrdAR8aO4FfT$K +CZ;~%;vF2Mc;!kEIYo}J%K717$cH(IUAN|@ +ShT@0*>U!BGvsLNe+cm{B2S1XvQ*O_sIr*Eg_PrvC(4H8=dq7xc~*2CJN +4@YTIVo%mryZ58aa=Oh%gZSJcsgxRn5$RWB1lZkP-{<#$VGD@;*BZsv+DPjt?QvE*wxveCS+nRB<`Jd +!zTI$~rEwZ4%64zh}n6e7n9s&o;z%NDL`)AVm=IOwnVEjaktI0G^6x8n?rf6X-@YKizZ3LL${LU!15u +sd)ara`ZXV1^5RQZgvd>uh7I>f@du*P^e`b2W%}L^@YiR@9XJ%8W;$QamI#cA5J=Kk0YCT|bu1%PhjzK+(}%&y?&c99!vxi80g?C_eMHe8j4UY~5Qw? +;o`vsq}K5UtP;8dCnWJ5SX}=h6ZLoj)hpYIE4pM#&AQLWp@Xk4IXS;*(jCjk +1QaOY=rXA=M>1_xG$mz5d|EP%BH_TjO_ZM2YLPz@74AmVRmEthHe7f%_VPW2eoSD+HK0w)oP>Qew&3qW<3XQUwwK+;44O +)#VC`V!XI*2iLUqWEY9sV6WpJU6$X#E~iDZyqVkgn9@a*w52zRGtVvS=w-9<9tzJwY_9ZiPsaFL?1RUAKb_o!H<_sCO@s{pERHRAZkPMlT%XO@fSZ&2IqZ39O5DZwzqs~) +|9^j}L-t|(+8>_(L)_X==lHO5FARHowzktAuH2FWU31yoUE(;B;RTyDo%UL)|aTb +jtBBU*+M2i1+NL+H9d;sX6~Tg-WON0E436djqShWgL|Jx9kqwl_Z3;cbGLWpm5T|#;%e+Ct|n|;Z9T> +jMk=7&>JV_69Ebodmw+=^h7eQXpny0L#vCGRW!pcpo3~t$<)O6?uYoYC9$nf?!1H|8!PlV~fR0q;(>q +O-gRi|L#>ogr^wp5Aq-WKFwjD60E=V;_Hlr&cju9iyvz^Q`EpYmQFBzb~8rlJ;QAnABi@AxS!PeB*ShNcb{70dY~V&Je&_h{32K610lj-cIh8`A*!&P)x5bpKX7vc_J;Xdotw{BvOcIB>T0n +v_r@;JIK29Yn0F7PLB<9v=Gu77!@ymLC!MkvsCq_(ngLB?8I3r-(1;*!wRKay)};uXvFO39lKgla-^? +H!*-khRaXZRA8p-LcQ!LGN-&mjk4a?Q{fI1K4%gh_!N0#Dg%H6DWY2Mr_@EM^^I}HOJdNKZF+tD9yWK +&DZ68!(Yec7^`*tYCDUvb|RCq&=uH_`VXIstEVqHl#j;_ENSc2(JB@2cAS+#7bSSb;%e)e>W7&XFUtD +2Da|kejZew`VOs%q8WUM>fj!TwvS^u{pcd)aaP6;cnW?P2na9O~wR@7AGO%yf0_->H!$W2QO#fK+Nso +gl=$ORlv)M5(&+NqpljbMDCufs-G8X3Gd!gw!1ZKE_XkqOmt~V7K*1jVk7FH)Ai)eL?8LKkx;)=Xj0hv-;(mneIDq*)6Ij}U ++-6vmN93@XzQRxPS;gjq`4|Phqj5)ojGh&#sNbQBA9^5f#ntd@^hL#iO#QA@-c +cbq}}@4EhRkbC6CCM?iFTpva`-4D(Ah_c;~NGcCAGNS9{3 +L^o@`-p%u#$;*5{XDDlu2hY`jS&JP^Z;sEFA?3#S1>QkOJaN-BPW1VpoLQ9`9KkpWRhB#RgZ)j^(4+C +RlWOd3x)RT&@5}(_~C~fgRgxJWSC&^r21fnTg0BcfU24+I*etysxeed%9F}&j?s> +s8PoDIVq0O6GVi4lNQm$s!G(Y9FzIz=lhM{*>`Shj8A04yN2 +L-vmAA9ysla6jPBfx;_whkF4B@{Q_Kx!TS+z;7t;*_h{mugWPvb+t&*JZX)|;mXqhcDgkDP1_EM&sZ> +m0w$8X)n@uSbI9=#u2Ma340UUaz+&e!;6yHs;rkl{)^#X&?to{;9FN%QdVqhtAYw^f|q#CvepU`)cE73vXE3}h)u6zf!mYJYjR+j5^T6^@kV8Mb4c-J#U&Rt}d7#g)eG#v@9 +A-i3b6BqvLUv>zN`yYnW&sqgw^gaez91yPjnnSF>`a@HY=-FP9L?~K1r86UN|YSBdFX1KG}^Rsw}Ho! +7gs2Ag1l?4-hRdFM`3K0q;J9J6Ym{ky%0zdWDbKcT>u@?wXfnl%b5qY>n=?MkkI;G&MiYK=7#CCotMW +zJ_{EB^vUP&##2y(v{9WNcn9U$Rj_lPl4?@-p}7)*0}fNyH+nKnc69_>smZ4Y}$WHmJ^cH4_nI!UxO^ +9HFbA`y6LDZ%9#7b2f1PxRTidv8ENeNI)jMR0Gnqv{1sy>t;K?A+3mcG2t*HO+QAsT~H_gzkclTs +Hq)qn>52gdQkp1;$15^&Cw;tnZltYhQd5!ZjVLz#7Pnllwnk34;;v;Rc2#D| +dS{meU6&s0^awlzymcUmOQ<~F)xOU+!!D)|$k5cBWiA{c~X6i +VzE45v_v!f_0OPy)vx0zFidAdZj_M35Nx(}p^P9CUlfF9~{VBSfD#_MM^cNaqNmBR?jF*fH9T90S=um +!W?k5s4gI2m3`k`oTW_WOwSA2*U5jUPVeAV#lL@gM9qJqEGJnul&R^;xNm;e-fm2Jax|wn?{5KT<+JQcaQRy)X9)ApkNb+Oa_}2|}>5%S4zsb;DzVOABD&&E{238s ++;!dxp6h_ScCzC(_4fZ;q7x0g;m-9XLGFa^m=uY?@_Bsw8$NmoXI-nQu-(aubdsdG77k%)n>Wa3$Kb& +D3n|5$1QK`p-lzE}R%FLX4gYII|K5aS1>!~sA}s#ULzfpTY%P6eK-yc{vT_X7;6OGR@n7esmQ +X2GqM?KM@y>6VStn2WU-Ui>Q##I=i;!6nQ#CGc*>gv0u?hT%zAn_P3zzt2M1|8XqWcK#3jdy5+WO#=Q +upFzc+Nyz`fW#4MvFE9B%lL^^rC5Dg`jFKdd?tdr{!*Lv?Fbqa91f)oe`l-e2UKBv;7-Zbp;7-a?^k@ +wqsdB^-cN7yJ+0XqrvVSFi&Nt!oP#qCp++?9+0A??eICWIZy&|RYK|+)4kPaPIjo?8UDf}R(sUK4;Gw#>=E}Xk9Yc5|EHe{8li{o9Qv@?_+#RD%;I1ln)$J(C6a@##?-MJ3&;OT|8nexA +CCq%_Ph0evOQLsD`MD%P_@(5cO)j^pBmiY(cqSTrVsZtTKm>U)+`44GD66FlYvXC^ey1%)o_67S+?it +uEfdqcP6goXRPKA(r3y<4 +%8_)3=nsLkD6W1kH`jf2t8zKgNDeG2Zei@X=2x^lkJ50-Qrs{87QddF5ILTd^fO02;y^uD6F1r +z|TQOK~s3?gX0;1bBvgvnYM<9m87sqMtQ@a1}2>paF?(Whls?GtqKU)(8ZjW0*LN%tH%ej9hLmMT|!* +9|vwIX821~7I_^J)L};Cb;N){u0dN1x>t3DgiAQ^Ol9(Fm8~4kV2typ?64OV>ya1$Yk5%VTLTr=_M$n +t#KFwiI2=XZA*qA>#nnP;_rpAA9~%4ch|ePL~sR23uhN1#2^YI#Jt&L@$(x_$Ut&;Z!BnG_r3rg)ir| +0pKjD;x(qivzeb!o3w}%#21ASS&l~E?=c9rkBEFvnChz6x0TuOtcTS3HanP^(I*#3Y-dC|mLx;-)D3! +s$yU@rS55cldu*T=@$Eb=M9)xu40eT++L6T@~A!%@A&w;9y|_ +U@FA28438r6I{0>Z_`zDWkt)mtsOru3mP*ixy_ivCLa=ee>!PF(butK$4q-6W}}2Z&v?#fUbG)_**_= +A;zxIj6;B+dxGL)$#^a^Mt#+d^)t)ieIeyOPiZQy)@Q!U94}S%+?w9iHmDa-;Thdwt%JRX&Z(iA(&vnhUdFgqS_EZxoalh5T=3_zk`3lvYUs?WSE +C{#YjLSNe!ZY8b-m>3h1M$e3HGlOykOjW#7}msYd36mEWqPm?Cp&|2`Cvy)mjFF)V;!qr09{S1InJ62 +<~AM0dl#k~~!B;p58ioGcZHBzq2u&vXw3a-%g$Wr=qL^}kMoc|Q5GX*)~#M+o>la1fBZQQcB1nlV(s<(gz +E%P!KU0H#M`qj@5j^O)@eS$kqvOk1g+*20%4OeWtPqqhq7vm)%l?7HtGPS3b9%Z=0eH&R6N)^MTm}jm$KvHN +v?1H)x^b8P(X93FMiW1H_Wy@&7XSEV{_JJ(!%O@T)*%qMBRUY;(cEW%ngkIXB~cIr5fncD9GgVMei+@ +M9`1yWJN1mRLtDNBHR|Kmx+A +bdh6sH^mWboDL#_QQ0b>FlbQk}G0qm6aV66A!W};7q<`FxUe6p3ZLwC6|+?_w~jCu!pQ1&sozz*T~;a +2t;=H9>G*>OT0;z@GHt$#gMtsVF-&VJ*wdgm05zhf`5ee9p@re`txUQ*Xc`wwdW6*fmKXr+Ff{pUCQB!9QyepY0bD#| +__c&^(=_hT@I5_>g; +5$x!~Lg4=8r>2gdg0z=45F9Ir(SOB`4a6)u$}1Hen{*L +z6k_~-u;QHzC!hVhz4jsLAr-p+%Jv8R`22hs)s8-9Lp35&c56eacm9V4>!rbB*Xc^-{A7MVky#9u$?@|d`pnk=&sDZ9u~zX`*ZmVQ^)_JV18%n_* +Vt8c6q-1Yfh)x7tdC^Y1t*P248wp;af9c*^Bj^Pj(xX&1u#m{#|ZxIO24|R^&Oie +W?a%y;fD^*UMS<+|&Cg`^_!x&p4=za_e>%k4ZtR?zC(Mx-IW(g=g{0*xSMVEVkIEIc$<9;d($H+akQjHt{`pHCIwbcNP3w~6e~ +r^Mq7AH_FVIz6xid>4-j!}L)`tH-G(T_;-3BK4}sknk6QdATFVIzY@J^D8M4gQMz~Y-tY8>eJ{8@_Q# +SFe1Ri+jv}VA!O&)%NE_IxrxmA0pV +fn5w)rK=e(uKxngOCeiOpd2+0XitM&dHylTq)9EM!xN7}i%L4T6A%W5EJ?Ur=0#Dt(se6fxDtgWxTo^Lj~b +1XftllDpUBs#rR#ZZO1YFte}%}Kst{d=3ikQrpR2eaiE+G;8ZbO_wP&|H!t9_EPc!`t61MFNZ}gTaV$$~2G|cqLbls=t4M|ttO9x5B^vWHt;q2TmzgW$G*G3dcZFCU?v6zH?5f|UWXf&d4r&l+ +-snmjSwK+_^%AnQxc29hrkZ$)t4f7FWj8<+jqiultd-@!11B5)iDmlb?`|TZeW5_2v1v-q&?jQUIe?;8a$A4!Bi +2FY!f2rgCQ!65}1Nq+5s-rMnB^IR%QBnLSpNIebR)lx^8?6XTb1s_(ecy`saK +AW8(!qZtruD%P{ul0D^J%Wj#G>Vi`wGCC{DKo2-Mh_w)?nF)DH%IoWTmVb4MMqMduG>Q3odB;(e)#b* +Gg#g77x0YA6M>$tL>QMKqH!tAk>Pz98A?bXZ +{JYMT#Jv`4DfR*4zXEHrp~mr{`3jZbVz@rVIAhrQwxLiUF%}Z_ya4%Dp8TFFGIPQVg|p6>e`4=h>-=v +R)O;=%pZm0HF*yD!u_`O^&leU3x&}JS!=&pEoVIJbD|HaQjwNHx!nMU}7z~6%6l{%(KniOR_`*alX7p +YG-O@msDz=09Bh;&zap^eKW&=+KfsS?MhBfbliz@7JbSm;9`YgL>H_^ur{JzqU+{Ahjb +jQ=KU;sp1!yPC_mqKdO9<-lh&!950Q!RRJNR~b5{dJ%of=uq(eu&d!pl1hR|9sF{JB@zl2tU!>;^lwU +XI%xvq2atRcpO#f`3C&~x4KfbPrUf6|H=m$${yPZ6j+^7f1=)5iGhLcd>H|NpoZ5&GeO(u!c5H}2kBO +MJ9BbXVz{^QulKPJ&S2y3o&>OT}t5Y^{gZ>Kw*ZjLTb{&{6ToC8>$ul62i6U3Zvsyvi{Twwo38ZZla4 +3Jl?Va!nb=dzV+rlvW6V2BZC^#oNF>mY3&N0ilbJ$Eh-Sg@Xu9&U9;>h9aQpo)`gyIaTGOf7ID*R}HD +{tGf9{G*L*baqV=MKwhldnlzV8j1`NZv15lQLP-?&v&kr2U?vpn9K8qetcVzW7wo9mKYasDnbHYE5|H +NA6qm%eV^gjbf*$IgH7rFz@5RazBKbffLDytwe6jY%&f5?+h$56%2VtIhT^{d=W|e`T +kCzH0&bp*{AwK0_8o3wI!=%C4^@%bqExaE4+nsXl$B+=J%?WT|lyB@lqu(#_gf39w_or)ID9SV;lfp_ +yJYr(g|_%jJ9bDA-a{d?xj?8l=aTI$#I#_KRn4qHKOLVVh%iuH$lVgEJS<&#QqdOtB=<>g+=7iq-30Rf?(1^#v@snEL~mfvmk9DqT)J+Id8*IitJLZ +SLI))5gq=6y-FZkZ&CMH)mAyP>KyL^hPaH2Np8}61kC@h%0vZ=P3R0K^QJTT-Xx&3>38^PVs%Z%c(3_ +rJ1_^|Rq5ypQwcNz8ewI${ck$Dzr6OlE( +A$}1i2$|0^XNf5`%E~2&aP)@JQtZ$-{^cC2<5tU~E5v{UW6k{+P(@XpF#*EE5v@XymeE8|v_sfezD|? +0!rIdU$7#QScF-pz4@D1XxPOy@hpodQ +S3wW_27SQZF`V~_Q^AhL!h!Bc^3ai>U*s~#VU7cTHu9h^n{4=Te7`gFuT>`X0auXUTnKj_&}%-3#yMS +Z1SNpZ=H4ySz7WZurW$@eqIU)J?*SFBBayFfU!`cYwf)f<^`(_Ak`4)?e^b#p*KZqXKLi>}447-*ly% +kNLX*D^KW+3kAMNeS!EeX@tgO=|&2m@nYd{LOz8oNhn=OI#A%xL=kxE|5wim&#+j~;;-L3zgZubWe3V +bkMd6^~lAK59WN?Vl-sr$gfdetH_jd3e9gV%(XPs`d1;FFI|R*LQ{9WoT +XxeG2QR4b;_PkOyF8XY|ymBZ$3;y~Ayr5QN4aCef@Df9heDVW#T7nhso_#5e5ThQJNp{XlLv?K%{4QC +}-j8ZaGRU-JTNEP}5K$X2J#oI3Xb0CB-5o1y9nW*|wbJ|Iwq84t4lJUV0k9FEo1bueFdy}!sZUe9xUMJy!hi<}F@5z}mv +wHC)lbiI^6)=_(t$WLmJMP`C*Cln%&eXSIF|O{cl-%i2q=507gPP?0hW91rWH4D^-^rEXbc0B=^k$OF +U^ewCj9o<_tzAkacsCz6ZDCWFo#qHg8h?57PbgUm6xov8;WI12ma?!#09yrD*R+gB~J`Dasjd%8Z=gjAY^bE!QX+`=n0->xA#pS6}vq8e(2Fv?Blw)0cq7OYeW_sg!?b +?sPgpFZGRks~mu+nHC00c(a%JjAw;J2n`?<{Mm(Uw`pa3c)6nb(W_D2J;`ud*(%1aU$ZD6Qa_YS5K#@ +(mEj0fn;ArP=YF=dHdKJMwego{Vl)vtq1t2Gzq<`+U;cjVS6mbNT9J(A(y3=Da_b3I>M58{$3YJ!sTjt{uEd&T#Us8h6%uDFJeZ8tZ$dE+QKAWz?&q?kLiI_D)`t)#zp +aDGZlvN_|3@s#&H@K)c*3!VwVZi4 +~eiV_WB71xYs!2@a`;8Qbo&-nD(q;uYzC-gxHe1K_98D6>EzI0MMl=~8&u&XiBDKo%YRRh$yBe5So|O1$Y>8>X^aK@)=0I(JVT4Y%- +bBR4~`9qvF!OE!H0PKSI$IPlh&f8zURmqv5hcRygZe|F_JwDzm3zVnABNQfelW3mCmAsmMg6a)`XD*^ +;b6hjb*#IT?0Ls0l=OQs(`z9>74`F6OoW1ufU4I~c$bnI|ppDgvC=hz|f#|=6@w(O2b^Uvfe@fm{1KJ +NF({j1C*r4E3Ee#``Sh?c>>ns@l*03X^9@S`%h9~*G^{pfD)Z??Y^0v@0bj*s^{{Hvft`$2r%`IC>0A +oZnJ3LQG)Bd-NJkmU|K_m@Jczto55AAQL9yFc`~W1;G{RPRFFS+a|FxZnNRKv4bBeUG(SF4XAcoBQ6? +0UO8T+}vs@C~mDH6`CckxZ-P`)#0fe0N+k>Veg%`-uoNo`RGBoVzswFV?@EZ_}{FbIgXND$l@g~T+$m>2fj4`F^s+>=gY$J$yxb!60bK&7dFXnn{OU_ebb`m{FQ4yoh+ +w9At$=pn8o6tE@ZmN>_sBQMz4fVf^QimZ;r;ZTE^=eNEQRWB=vOmGd^z29iEJ%THfsWSr=SXF0;F;Bo +^jvwRCu~bJ6KaVRn^?5`+5!ssr$=ZP4wMC{uB)RcS8^A>PranEB!oo{2rg;$BM +x+~Yc&cSQBqg#G4(t17wILzynha1nz8F;*iT}H&<3knMat%#{!HhEKRA@=PQ)tDmm@`Pw-XW_=p)RX6 +q^if4<$>@zdw1~q|DEa#=_RqEHV3hw^E&O*^{<;=^x$66Hb!0Dj7_`?ycrSz$h=DLl;ozqz9-jHfGz9 +w7VF(yGiXoL9#E$@v38|PmW~p}Ww^x{*U+(qi2w0*Hii!W+N#;%*4T7Di!XIheF=F-cSKZ0)evl-N61 +BhfF~Wr(qxt(+>VEV)@L$nX>QhGXPXbDW9X6@Q1s|rm7i}axzK8Kop-T?qR1Eo)TKM3l#3%M7`55&dM +l|sumOIoW)JJQ#-_~E7<>v=Yg?~58_aZ+Gv1|W&g4(IPr?-{g;n+{z{?s2k5dXL!9swS~uL|Nv@9~p@ +sBOthZ@v^n;HZd4LHr!_{&_(Jj*9rV3*r|NEo#m`@w!*WC#5`@?YuPlx^z$&&9zaeO8W8w!_LG7!M7liyd0Jdf+6oehi-+Ky0k`t5VW9EIH)yig6C#PeSMLC_##VB$&)pDu1S=i+GF0g~17GUl +ZK)fi}JB0_Ka$$W13sdX{~G`A`x{aEOOiH`J!B>A(S3|TSE@TPLw0LHs2-~p5~ONl +u@SbZ6KM~h3$T#F--$r9M#R~OpqyLmN;Qb=$`4tyXNx>FiZ7O;TL6y~m1Sno&}n-(LMpChD?P6xeoA< +7>(@YT{fL6kLM6_&`X@3QnYwPLrpcV%w>olqVKwCvV2>b_}nao)_jrzRs!2(Qn@F9H3@4M5s+KTIk_>u +lv6j2?mglj%HV=x~R*;x?+k*++L3@*4ZBXUISvP@_HrpU}Xq`a}B#VL62C2f$fUxKjXQ@ztMo`LW(`A +Nx&Qg0VG7hnCxUvc5?4IRCz3Z#INtNNaa)Ah!lVGeP5Vs{)sDA(rec(V_YU*?_^9*q{j9>=*TRnj7n0xEQQ-r{ZZBGEv4!pNxFC=f$?45{FdJz9cdG|{N@^yqMq8uPG4 +tJxrPh7KmSh!qqxPx*K)>?>co?DS|Im6L{byD2+=~R9BWLdedjm`yW6b*X6hU15NIO(xW*dNtRjyT+& +uGeFNX=Mqn7#(QCM-Wf!xjrIw)?4%`_C2&$ZPIns@@y5Rg6h}{i!%u-Hk?%qARO+I|a4liC3auq1j7DtM$1w;XfSNr%<7CBJR`$&k +LAZo`Xxre@r-WxSDTTq1vb?dN=+u~fE+7n|u`&}wf$L|Z&46?J@Sf?DX&=u3L5!kSnEaKo{Us_ZUf!f +N93Q-Q*{Td8m44nDmuBVVO%Kd)H$nyhWOBCBb9t*@gh_TOC4!ODH+9yy4zK!N{m^3!WnTlH+mLu!N~^ +Z?>-O|*pR*R*hJkg2-rglXMXw4=smGx5N*4Pm5iFqT1bA>{4JMX)lO4b6&c)KH{uC9@8829;DZ)2Emt +6Cz-(-a_1Z!BC)N3<15vRg?f|v^aeHfPgkG++7*Z;Vee~3A>GMV~Emi%lO|DRm<4TAmhn(t!ZAPPZAm +^?JN5J(aP3{ez>Lli_{=+BVXkypMGKI-F9gdLa#%Z{eNP8i{jnf%V`b}~nPXeRMr> +IQfW2vSVHWB#!aaBMI|!e3=wlug{Yx6U9muQtP5Yr=jA9YQbdw<07hhf6Z@7nbp&>xzC4s$4;$9#SGU$unF5c$^fz#L~q&=?i)K6$zzB +9}k`J-TjrJF|ebo^*0#BbUKe$q+!gJ5JwV;gsP`>kIR;SRybcgI#B{n0sqcVFDs%}@H0XbdMqp}?=9u +Y;Nu>;?a8{Q3pbqnrK)VnlC(_c!;ZWaU3d)GF8ucDs6(*1@~gl@NA%=51XUF4S?z6!aC?CXQ63}7j6N|ngkaOFx~caT6#neNh~fg)((hVQtg!|RyY@lSvutIB8 +>-Ucq}`Cb`NI5~1Nu1)BwZn(C2axpHvPYqYO*x2cEEnm){6Q{<%u~D^Jjl*3gYje&EU~g`8MJa{@-K=)68;K +!5yc<#5!8{o_6&2=Z!kBcS=;-!{oHQhn8jiGZJp&b#fcQ^#M)7!Y4#O30*(bh-|Mw%8Y4m0p3yo@Nax +}_dm`a}mME0+@vKitLf6)HpunxS5))JN=-??m1Br^Ij9J14V5k9pLF$=#;g^Jw)^#&u!GJjk +T^>Yg^Z_bBUiT7TP_Q;au|<^h9OEuj>2+AHZyb2uZtB0O=l>T_O9KQH0000800Wn#T%G&_*O3DN0CEi +g02=@R0B~t=FJE?LZe(wAFJonLbZKU3FJo_VWiD`e?Nv={sJ)o!)jnGSaLIX!I*{YB`m>^KnS +8os?oI5(=ED7V=IUJ_Ef1Qjij9o_MEb?!VI#i`_;#*s+Xo|Qlcll*Ll+=|4dJkJRWp_qpMnj;E`Hy1J +D6M+d#?~McP>~u8c2k52X^Myul+l51Im$&JtP*d6KdpeQca32wfOo72%7fB&l!@@>WEMqNJB>12-Sx7 +iaM{0e*^y`-e}zJ{Av;zvo5KA1*R6Z{hsA0eA=0HFyiUw$9@pt>xfu6p{ZkNfNym@A(OR;LnA&dj}uy +Ap20mh(1vDbz@%5O;4(ZO9G%Hs2v`^TTh@4Z11emc2mgHN&f#NWaaSLuF(1v-SOyRYf75d5m>}ZnpkneOZgNxN6cIgVLr8iR#-#!V}r? +n^X>Cuk~qaUEsc#(rr6<)Yw{)73i>w$Ww_`ENre0P;7rBc$ZrA|>%Xokj{=se4Yc!Jc4cm4Z*nhVWpZ?BW@#^Qc`kH$aAjlz08mQ<1QY +-O00;mBm!w>+57eEk5C8zfH~;`20001RX>c!Jc4cm4Z*nhWX>)XJX<{!-Nkc_WQ$;Rxcy!%cTXW*bl7 +6pWQNc^wab()YcF%ZDY;34OwiU+)R>Iw<_f0_A=(LbHDq)8C_4{R(ZpdJuXJ;mMdBD~suT_=#WmaLg< +-O~V2HrP0xRs-ONBV=?(O27Z#DDDk2r*n|vm}EoXa4SeilwA^6vR_ +4phF<_axzg`C#g)Hafv4{%iu-HNf1R)&i>qO%Uqch62n+aW5Wk67HJqy!bK3tV2N9)C4&fmmoGCJW{^ +0EmQ$tWJc!qFl0eCDyv)J`ES}S3E)!Bkw}o(HvisV~<@eNCU3DcJ_4gVgC$A8YCE~LhEL7Z{ +z)x91CeE4I+|GGC1Y^x)7$OK9OtNIG(p(#px)^5o*wXmQ@YX`jP_bSW>|olOG7jf*o19{3;Oue`s8Vf?&(Sx{a +RZJhy;5$z4pB0#*Q{j@2|u;33Z?Baf%Hcptd(>`yIR;=ozwN+k_;??%WZqo8mLt}Z;In71asaci36+G ++on9SunmDU@?hmaP|g4hP_#or2k`)M~vwa)7hxt-m#oqe>I4cgAZw4H{%l@^E4ZtC1QLg!9H=T2Sc%l +B#Ply7J|XE}o%v<-VJUWd?b+IzWS?>^eg2JJCAUo~hiE86nWF52q`?Nvp4{XT77>Kk9}k$ctf^HrU8p +WKF@uj+o@OMBU%t@-)WKH94W?d8F=buYiMcOPxTSJ!pgpZ3vi`s%vwtDpDLUN&eu2h(mQm4?pyXdCu^ +I*NAF-cNOVZ}!n%HfTFX&|WoYFOQ(TZqQb1@Z$VE+RH`;KE_v8^WVt1Q1+9+EF ++Gf>zqXi&6Mp6>nKGQkh&Q%ZjODE&)LE6lDR>YF?(vRY=7t)Csf~QnamPgQ_&a&D>;eiHS&E;AagJ!^ekCX@oSZ`KWL&` +!vtcNCDD}MtZuWxtRJ(1jxAC$j4Kse?5%R(g&1K}z7sdT$Nd8goDQd`RFY_kYL5J~nkA;}p%y{uNiMc +OXfX{_6nr%9V8a6jURqT(TQPW$CqB33$nhS1Y4>}wJLvb^kvr)7@^;`!yW4eq-|gQ?Tnt9{j`!8|9r? +t!hTlf_gZ?`$pMyR^7(QhW34)*cJ)4w}4{q1#L*N(3^Xa-H&W`v9aRJ+?ky7xn?>xtObowJ2i?Pa9R4 +;C++htX^i<1`Ce(TgKn;3394PV14)ze8T2lcxAr1fAXm};HMfV)dHjX)`QVy{As!jkW0q*u8#AcQq&a +kt7WM&gcT6{Ks^10gOnhXbvXNyzp8G?^@^fx^-;n4Pxtm*an7@QVqQsdTPc^+^J~v#Mu9Zpl}J{gNt0 +d@PQ0)btsz#Y-B*S@{wwY^<>b}gHm^GIg~*JWyyu`CoQ5Hn>;950=i +)!snt@hZCN +Oluj?a5DeAOIyqky`0Q){&Jj#>N)Qet&1L5kuc}MlqDNO;HIlKubWU8`L%F-UC&YvdJxN&?Mv5h3Aic +LZ38eK?SDAF><^^p3_Zt3oU%Gy=_S3X9srKpC24K8WaJZW +f2R`RV2*wD{-ZcZoljH$VOl&f9P~w`UlUD{e0)Yp6~>BWY2!I?;Lji!vNm4ePP2t{?o&VeKF{{x8I<& +CE>!6=fc~3wKG*(BA4HDJogJ6{KX-kc+TJ!WBSGEOZQgVy)U5a6+0_%pzr41&fkSIJ{5WGO^8~B5pPK +(v_q2jg^>b~MlyuQ1oqRuSFcE`U|Ca}8Ji+?Jo$o +H5`{3j#GEN%Ac1K{Wt^i6K_WQ&fQqejZaUplE$)k{6|$81y-Vq0?`72aj8@5iOH^fp*&G$3U)vaY4@i +`-3O1>uixzpt_3#fm*F&e9|%(gv)?~4agG7^D|{-0^Og^r5_;QBrk!qF{73k6CaZzklhIPE!nl@&Gq^ +9MTzUg58=Azu!&7v_a2y&n_y0CfH{byku7q6>-2bZx3ORLb{bg43wd7L3ir+`yeE#sdvZJ86UXB{*}! +{Z6YtgC^t({sn?1%d!f?%6!77?8g+%KBk?)|ZTwaA7Hmx}VKjaJV&wvn3QGXeVs2@Ez21@|19aJz}uqtdp@72-8hRIg0p7`B(;`&d-6T7iX2_jw+ten`a7Y>v$cwrIcM@H}#AO-DxX +Szs%)WFF%|NV?~!$miULd2XnM7ZZT#yuS<^Nf&_5vnID4hMXe0W07~kdCO3j{G5{BQ_Hpn|v(T5pTgx +&TSXo(G9>O-T^%FP{1SVfJaK3#-Dtz7UmoUjZbSM$hKsZyd=67>w-+YIU#{3niBs&&1yDnVCzwjTY~sJle^@g +rRgvAUCA#9JS=^WUSqS%gfn85l%11Itw!l3{Sr2B#M$1M2A57SXH3CbW$%bmQUvRY^@O%uyF{5KVB3-YYaNB|~NoY9_ +EDo?)0bk2=;aAr_CQm~j}PrK9kcyWGlnX6a1ly%4th{2Fg3TUeSy5^)tr`&Pni1Gc{j_N0da&=g%mJHU<6FO;zKl<65h1!SCv=8mWJAht +=5rf40whOkKn=Nloc6wg~HId>8o{-+D>(gyg5DrZUo2zGP`_<>vwbFOWw}`m8ao5->62xMCGK1KEdl! +*Ul-ZNFX8kl3;|2^I@VdvA-hZZe-I@k-IDd5R3hk@I?`R@_4hsugXrQM3uvY-9$Idpxb8b*f$x#`L_u +jw?Df0NtC=$HZBYH1fTP!d2MiW|*d+&B3P_+Pt6$=m!DnmCg}kB2-vvnGa?%?5HIW5ur$60<_jkKBpaWGBX+_Y2g^Iqp6G?!ZzU3#Z1d9OJ18a^3!f)`?g%(g6r +Ph7-*Ku;<$|g4q97^O=Np{;>>r7Vu$8o;dJoR_b|79GGCj#_m7or)^+dyEkCoWT_H8d +vqJIAlj5kCC++q*lL*qw7~$uV0H3Qbuj6XTR<#XUzfk(Y-f#y1S<%>PMaMD5~7eEq6K?FVFJd)s#ORl +3RZ`WY2*w(`hib#Ax$3Lir)A)NHb+d6@tsht0`j@c>xn)YaOon<@r0PI}}eXQSKyT;RAR;*BtKwKP>b1lA%z%BzgIAgGkP2K&Hjxg!0rZB_U+*0Tj8NY03%hF|@GS`)dAPJ>-?@8m@0@OVaA|NaUv_0 +~WN&gWWNCABY-wUIUtei%X>?y-E^v93QNd2aKoGs}S4`3at&s)^2SegTtdWF(q3E?)+G)Gm?l#jw;qR +T6Vu&~AwDab@nK!c@jBmz}y3E*O4hPQ1_Z^}<<-x)=Co)CJ;4cE0PVT1T>0~;CcVqPlV*O#7P-rWYqH +Qq)cEBaV>xoNeA$B=`YeIN-2b*a&g2@93w9Ks5C8WS%oRv9!V)&q>73`} +>PvGNW~~oZ^&);MB!#^mmVG56ax@3@6aWAK2mk|@q+DG|E>ii^Z-ZdgB5^;R?>f+7mS8p%Q-kjr)&~9f|m2)wj&X&!xN~cqi%@<__&9Cb+UpDEKzwh +kG-^*Hks#5i-zFjt1uD`A7ot>sy9qkDCQ$N=EPWmoR7mYZjUrws3td4}(6^kmmnMX&WC}A@9X+_9Yka&#o1y0KQf!%s;&c5I--=hUPP+PXM4$AFBLt5jD3(G*6jOzCYF +C5Sov1at#ROMOmKTD$b7up@XCv?GT(Ko$1yadspxtEI+2>bTUOF4w&#VldMYPM#DmhN~VZgTJfxL$<%pEBj3aj)VYLV66CgNfHl|VPw(b=wTPV`|9zP*N +l1Ri4=w$^zWC;)lw>`U`o$h+o`YCq%?eo0tD%Y>V0kZ=4X{&xZXst)S~X>v>!p{$dTV&a@TbjfXHj0K +Z3p_w@&M{LjqX7Kfa=X^5ml&c#SHXnQ9g`CR){#lwbzIuO_Lg=s$N#e2kZh*>vEoohiD~%O_wm=MOEG +?J;pzyn3L$^;}WJ7@BQD04BlS{^&2XfsIFFk678>eKA^pO0Z3m|xkJQ?vZ{ZEld= +VUs#i42_A0u*Ofe?0fQsCGI#h;bisC@X^)%EbB56%TNIX(NXiWUnkZ(U9AQ|-N~9F|jPsqdd|d#)tzM;Ol`P@B~X91MewS`jW9k^Wg5MIo#u2Y)KQ>j+Z3&W*-~1J)^_;JqN|5P +P`c0t1dA +ot1oZVc*a3}66vrUqWQj`g=Ebr2^x*J!uy)bbfb0Kh_}lR5j_!$qarF2xkul8DW)_y!&12-l<7yUT*I +n6jpL-fZ8gpn+C0<^co>x&eA}MT7ODg0St=;7A74=VwkTgs%3=RJ)PiM`%M5R%s^C+XpWx{>Hksr%X2 +S-;eKusiQsJesQSr!0#&j1ZrwoSjZ>1!jtD^BYg9G2aK&%XHl$&rZe%Pawo6&XxLl(6j6>K@`RalHaG +XUiJtKQE;XY@sx_Q6az_>2U>Ggc(W^MqWZZ6W|xzrz?aB%QCvov-&no959PA&*GJc<|Pbse*O~0IH%x +^;=3Axs`3FML2x%f2(H0paR5|lRF?%nPepuN0^*^~rziu<(h=Z}njC=K0NIL_K}U3T+K%G+t8;dn>MVICVmLZ5ZEZ>K$xebQziv4}?Pr>qOo^>C)6WYkar=ip +1SFzE7^#FWH`}hbXPUqKYk^lsp0!RQb@Y%lPsSE3^dN9Lg84O$%w49?n`wM_bN>qQenEJ^L4t83{(IO +2LiAN^s>(r&+8H(0JhQ1<-g=T%BSuQ=_u}H(4P&_<5?0v}S;9xBB2*U4b_`@Cs8YmB-gspWLB?%FcH9 +YE0C0G!&XEy~XQekPC*25}Ued6-c_Tgv?1hJEe1hlf_6TtV`5LMRjhj1986CEI=5&!g`L$pWX=^tO6y +*W94c7D=H7(inqc0sNgxeD9g2vA|Rmfkk(-=69G&%NikhPAtnGr=ZVLKpRQNBKiG!z +GQLZj@Fs0Q%~l8?7>zWak?MPD;5{%vxSkF_Klq$derj>Gb6e&p9KeoQnWI8Y&Az4pj%s7TkOZ?ZH7@!kP=cZ45T +Ee@4>cM^Co@D6Xr&9`38Z%~AjnWT0A&z^y;tZO~CAEmbdOxZM;?Xt`f;P +58%g9D%9xVcNlgE0hqtU42KABSl*8D%347Uw?ikZZNe3>o`^&NLP@$nlJMv1 +FTqS)MSceu%{dW3utQ`FwHOpFRPhO19tiM_U;~{>ZW%0Mc`pLohDffO~d6P0s05BWrtwAji)Hak>smxAY4Qu1l|qzACsd +KiPz6AzSf?ubm35;A}l9x!=x;DUA5Y1y&<>=480cGdIex(lutwgb&_dZz?ErXVJ6sch<-#UKjJ(i;4h +8PnO`V=M5OFi>^;};Rl@>JRN}VQeO8qP8KME=H5d_QF?a(YD@gw;gAk=)R|Kd776JL0MwNjlj%eU%Nz +|@5MnlRjY9z^l6H|jkW>KSMuTl=>gjQ^gE)hx@0xrhCQqp=oCad +9ac)5A}M*y6g^)`ca23}mUkGbFBkF=kgJMN%B=K4gh9~^In2HS3AsU-5Zs~+Q#NtFOj1b{Y+I!{tit< +Lik1O1#%(JIoed69To^vC<0@OU;+M_zgrO~mIrC)H@gZ%h>viq%5+v!NiH{?^-EROU`dNEZrZ9sm>|G +sW{28PH+jN{u{Lw28dXLTkPgCcFrX)n2E=CrLSeXFPaf9jv&G_IUE1n(>e7g4+iT97HSFG7S$xn%ngLGT##_(>1&fck^M$U`)Hb +gWKcrD`f0Gj&n&)ASv9!We-POJL}9*WCu!8Az(N5Gl#S`G1|a6O)+w=K~U`g8P}6{Efp{;d^pi65P!kEc0jAi;i +qaY*CvkFr9A!`MoALL)}tBC@tmU?pUt6m`sUZt92DMc7& +aU{+Z1IAyu4Pdg$`kl#(G4fg55vzm&m<{y7=F6LwP%0H7Cc|}I~5>s3cdnr%db=gb{o}E(^P@+JH%Ym +DQ0-9>2x^i_e~Yli3N0vQi3jaC+`{uLHUarAGE&)b|WD3IzJxE(6;g6v7P>L}?zN01o ++V3vIZjua6FfB$9A-!anW2ND*htIJNg9KP*PZDSE*Kb~yKjQH*5NrZ#C-T!f|TUu_tnlMx=iUcFuoN$ +a*%qF#~UmX3SNigY4|KSlS^(BJRh2oI~LF_yK(bqWpcZ4m8T$GQ$xfzxbM17M!Rn2s7L%wP3Bp{ +rOlgWq__6J_~HnC1FFOW!Zj&4CIQ7ZI{kt>6Qi;0hD-$KmCP(PC)7atf|1^k;Khys-~;a#fVfs^lylZ +bLn_4#<__x>X(@lCfw8!A**58J=-W_qNF1;Ru_tI+9reBEHNu*J6M_Vzu4>`S1Usa02 +2*3@0Q!E7#m+8PLNn@@XCwH>d@JD1Kt}k?vUZNIux+6gT48k_fyF+7OtIOhWR4{SZQKNrEkixdlr?iQnHVA>EX9 +d6yR1U$nQGqz#NYRj7YZHdd;6Ab?JSe|7fF^zFrq&pG+DTu84AK4Kr20S=yOEi +r555`41B2ldU=IS_H!Y^24)1GSWAnz$9`b +(FTJj7oi5F7q}gD0eft3;73;@&)U1S;Z+Q-Gw;CBK4n_S%qs7EEagdOLP=5|IawLg~1so_Unkt^f7+J +?@9mxW!kHWnzAy|^kTP;!HHSAgZ;yJCgerc~&=EGPDv19eft +7y`i&0q~b7|xTW%tD1m9%*fC9Od(4^gJGcM}Gm8LU9!k50XLwqy(Csxm)&)4S+fV7HJ#~OaTZS!;?2GKz*$oxdsm(W&&Y0n8@yZPPP{xH>E_ZW~*3!Lcr>J52R*<#=>Q5O9Q +pqfHU^X!5n@&U9JbGQ_K44ao8;CI_O2C5`y5gFEwr-r&Lrrj^-8U<$MO3F{HLaU+5jcvdGe!K9%SBDm +iMQp{&H>tKgA210*BLObhYm8ctVpITK!KyYdhyv6&!xJl1sF>7;7>AHxS7)0WLazp1nMb|7`5&Zgk4= +Rs*et_qC<&TEMd7kJ3l@>C5IbpHf13PjqCx2b;gPV3W09H2Vyyu@$`hgDJQ6NF3uqGTRv9D)Az^_{>^ +KII8f^kke+8Xl}Y=^(cRb2X00g7ZNTovjy>4${V$Xgeg99@FT;=vT_Ndm*lip}Cl-W)QOythEX^)mD&wdvuc+%CCJZ=?GR3@R{kp +2fA5bHM}~X!FJ?n3aSu8M%pxgJp47ln?Ey;X?9`@zFEzZdkv;g=zq;|ShdCX56)K+ +qUS!>UuCW$F{g8uR4xP9j4`ZnyoU>8BP~HgJZ!)L3?+%2cL%akbcsdrpm2$T%xH-_MJ+24QuljwbUBVr_b +Q=eEBU7xi#J5pad=o7`CLhrO_6_gw0=R`@l*{HVCq+Y^H$v +~s%f<>3YnRuUGPpTs?6g9&c1Cm^+%P&B1^cdHI#M +l|nsuy2L7thn6KEc+Yg-4=Kn&tuJnGVqoQ{8}>d)h*9YNKt +=HlI8#=IuWAHLP9wYNoB4jgDTa?b)wQ7o`S`BQKXskn113lC21znp^xAnwW6;O)+bPZSO%o$KU0!0O6 +F-r`w;0ug3-u5Cel*5V&E-|1D#``RNFw!8H>7$E>a@wL*a4GWxroQ5A5ofeQY#ue7-2#7fvAoW+m@-D +Okw+nQBh_C25|rS)*F9a)J2@T}(_4goY+D2rahScF8I3Mk;iT(J8da=wu-vu7%-xg$ +ka$5=lL~##v6^P8@K4%i<^a@AshBld+ZzA&-$}B)M2FC{w%Pj*FW0oeC-t70O4{O+eE@hF`w_<%)JF^ +M_~!!-BM=QB4JQh>S}VnQqW@LA~nRwfR%J;;?`euLA@Y03Iq`0|bqpI|X6o0DzE>|I3Tw4v4Q_W06zA&2j&NTNln@1xq^;zN+rB=I*>RWY81M8 +AYn5r(5XtBsP6(wN<3lDQx7n-bDsMpE6ETAb?fsz{*UrTU1kik{R*W!r)eck`yddwpSGWkF2AP?U^0e +K?{nohOx|0Q^T@XM$_H^B4vov;mFWvLhUJZ|xWz@=5*78ezh +|5u$&!pXQQ9wg)x&g)wuwSS#aglJi6_<;ZkDkL<=|hVcpIKx-LLynfbL@=1Arc7h%;P<(S~HG``Jp89-3LNM*v$e~OBma>!?^unc;!tZ$v5!k)A +-QDTKU(2O=PqT;(0lW8?g)z1!Rp6`D#r)3Hh7V<%`zq01Ch_Il)-aHd43(}nk$&MoAR*3e}o|j?WHFE +N7s;}5lGM1I@gxk3g!NJ*JHoe9Wx^>5}T5U96j!pNPw;?>{j2LCxGQ;gsmh{NpL_qu5 +@`=w>{%o+>6SrgLK4=c(@b`iCE{w*A5W{m!1eD`=wk4Az4?~mF+Nd57^7!=FXI~5J6C(-cgF!R7?9L2Zk6dO!skp-R-;=PA2C*o=N+Yc`S?!d$gIBwAkyk6c+<;lg=bq3M9toW!_doX4 +gE>`x%Pc{($o`=(BLYfSJn)X9-G$fr!!90B2lDfMU(l#qQWxaHC=@Z$c!wpYP^sIt#HBFwQyZ>P)aNo +awuPy|`-KP*F1bj7)kmGXx7~HpPk=BoY_t~ePe)06N2&ymCRf}Im@f~0BJ2MdoMlwA?-hQ>D5Lf7O*5 +8idpWop>pN^@z6_@&AwOEA`>}!q{xC1l*vq&eY>SfljLd}Y}tQMFV!E--gw`sFIqE<4<4tvtV%`Ml&F +xhk}k`luDTW>Dd0+lT1^VM`afIZkuqibZQ>J93l{x(Y=#(Xh}{CtX4$@p<2TJ61Z%m9-q=D(dh*2Z)6&F#WUPhyiGBok+2IzVLI6c@DMrRaqrJ^ddNIMZHCrk6_JgtFoshl(8>k +bUK+$MJ7*vW-~9-0zBW62mEG*036;)nGQ1^)^6Ef&v%4<#iuiez-YoN|YV#L(dUmHXIl8kc*MV`gFcT +gYdGf5dt2yD7l*{X!s<-em5=wtLfawe(4c}=hcq5UBgX&I48F(0?00%0~Q~QQ4c^8WF92{X#1W4bS^H +Bglpu22qJVAlgO1z;QFb7i00Kl +mEC1*C(;svnt7kWR?_FDPc_dP>A#Frik#CazxPKuH!OyIn9U9fOU9#sIC)iZ#n|SSkB?6#JQs+ +Ix1)_CaMOiuCt~>4A*DDpFOM+%xWtcR!T+K~zv>$W7w1I0|E22zO{emloGo?Rhe=}+9@St%5xd +demESTkp9a}jtVZJZlgXE&OfIvl$;y@mJparoT8>^Rkl;i@Eq|hg$hBiPcoI2MWwVJo8O<8Rfs1RE)o +jyI)ke}*CffC74mcuA{xR=TVo1|Dv3w_;U71+&h%Ym{Pk`_*k7^|r;GcRQUmjewEn0BEY89Sd=9GqK` +RIg`CfmBf?-o(5MIIkOeIp2a&Y{$44Siib*8ULI%3Xt=7a1gjfS!U!v=Nnte1`C6Q4w~0e8Z!3+ +M=C$9DDQB|biP{07OVX0m*%C0RV8r}Z8-zZ^EX$Zb7U?_YiN!b-iS_hlj_dy +2M))fWgYL6^;*}XBpG)RY7Pd@APNHSK{Nl+@C7B1d%mHI^zTQFAHDaso3R&T;Mbz%{uq*v?0D63I<<7 +7|+g_*1x>*`+k+Q7KwwI6n>pAXNg4#Ve +i+iV{Y+eLw0%8o!b_g@FUHg4(ZLuTbkz177(d6gVz1ouraCT36`*RJvSh$If;-T*qj8%jOQd!J% +N7{A*kfj1!!PWT>6Dq=5T|=7-kE9fhzK3vR7(8ErP5GF$4%@tE#{I`U2K@pb03j$-&ar{ilVx^Ayh~jrqk#RQ{wlQjb~`CA1f69h*=;B=vE)Me0McbtJD +yQwfkmEWMD|3kv@!1q+cj&l5aKxB_Z46p!$LrNn0}oU90)H>WEK;qgad$~8=Fu0{k;)X?@&RMj$}fn4 +jpE55;kVtjp4rHj-aQuqz4o$KX%!5apAGs<_%@_vWx3{7r-|}l{ZH-EaA##eG*(?c_wLIrt6PGOr1j;PL>-Fi%i|47}LJ97}>1t0HoY7w5rs@BQVxOtKX%9h} +1pUoM~Abb(_OJ04DU)Hl*Iu9k^6`Cf}8sWErPDSvq;&8Ewaltl+8;x ++xn}&mxQOaxD3^Sw{}`L|k6BzVemrT{{*Uj5FN}NamrEj=n6~^SkKO%-Ztzm>mt5H8RY}kR@F%Mgm|7x$X`=v%E!xm3S>Aud)`)so?k*+)}B}@*xeB +2%^NP`qL&?8(9mwm_%Z!?3C=QZ=Zk>15X@W036l-R4o`Gq-Ks}?SfQxtc~(xp-=nl|=aR;swbmsA?e! +jHvv!wlGQln4<8r=;s;tJ0ObJ9_SN7~Vy)T5y32MAQxN*G;K~G?_xYn`7uT?8Dx#{J~3k-rDNW+hs_Ru4Rb29abuLJ@i(IG^+E!6Ek$*Pi7Prebz~y; +bEk{bj|=XTk5%5;Ayi@^|l!v-!p*(7v^7M1 +*!1Rg6f#Es?E|Poy}T&tQYM9wQ`wf6H#b;I$`@GbTgak1<@cR0DYHa6F-v4=)rXY3ojyN#b#eOQ^yH2 +EUgFDW|1Z-k{P)TJ7t^b~-^h1;8F!Z%gIaGKp98EGuzdelZ51BUEg-&wN5%`NhOg)?2YgkEy1_xegYH +N?s?bX@;7Xd(H32)kYOu)XSRXRS*9NH|4wsEQX{g^+jXEa5*VoC>^p%&jx};K;1+3^*mvmpbJi<;_Ph +mkGANtdIM-I6p7<|)!x(t&0;Zbx2qUNh=>FD8@(z{&H)GQZxBR8Kx%PNVry6O_|?t`Hp55$M&$HxGnQUZKOwW17@_He%l^z`>gqB +cZ*}_yevlY&{w-R7!017cL|s#UY>6Cy!~bKF*a)l#NWYL)JDh}no|rVcJ7;+m>BZXF3pMdUeY9+(M_a +ycLEZcHd}Gi2#fYyGpT!VH5THsKKJ1XjU_0$Z;>C5=o&to0b_$9FR@-`V;&Lz+CCR3(!DP}!%;&%7$R +x8t|5nT@UKt5y63__>^Pmpe}A|C6@Y&n0a%k~bC}=1_32^!hckT}R{bq_u$lf_(Y}}N9-6!A8xalAwy +ja$w6pnFQQTBU{J)C(AAH^7pS^ao(z~wto#~Z_B2?a~^E5L`0?VDgDI9}?23vL$o_|9d+#2KHlkME|K~Lt6xg@$3d$z<-_=znJ-??@}?(Zf? +QQMn$6{u&A|L{E9Am^MgL@*g7!u3vFj&CO(Tf85K;Y{KWG@9qS|u%a-@8F`Vd_xDlW1(bvIJ25R+K7{ +HP!^ZQgH;8wzz!jFG%xU~+X@fDP`U}|}_j!qTGlnhy)R5*rS6uJ`^)qqdT*yKOLNuVHnaUG +T-2p%*v5Le?);%{GZxLY;5T}xcP0fRJcHb6ip8pC66~06&Qjtl9%16E=IuFHo}(_J_qf%92d;2~2fs8 +`6sP!B6}nD>Q0dN&l5ftT07K8nW#ha50A%^O+)UTHOTC2+L4Xp+%xF`_WgfbMZ|)GO73w=@VkoqaMFl +`?K&5WHyDW3Hh)jbcvzpkc<893QFOTgcIR|eG$`~4%M0&rp@HjI5IvR;L{&zXY!`{KjBUXv+H9ynUL%ed~oNLOWSuH)2y!$+8(mzyVnJgG_RqWh}8+PrO_4sQ6Acj6WgY@w#D@6y# +%yC$^lY`yLt!?Lhu~o`(EB +s@QgoN3T<`fw4PoqXOP1LFFYiwqt-K63&fR*{iVC+K&)Q>XbZf6$ZMM>-zUwA{q4Eb!z{wBxPk^$CfB +Ok=-0sdmHggjt{n&D1<=3Oz#eu^VdMB70+2EhHiB1SEtxyj}{pu}gjbK8>PTp1=%aaNn^5>yn|FyoFM +AMCgY43$W_==_sgms@a5rVpA2GHWqJ!rY8sW3r@u>7RoQYi`0O#>d!TT0@&GE4~rkYZUk<$PW640=VS +cT%HFLf(UcH~8-3^^-YP1orY+JF?fJ|#gLcGdngSKw^w4NpS{})h80| +XQR000O81DB*+oxRn7unPbHL@EFPAOHXWaA|NaUv_0~WN&gWWNCABY-wUIa%FRGb#h~6b1rasty+7J+ +qe<`-=Bhwaj<;#s=Jr#wJ^GEFKJQ)NRvZ0DbN~*LR+-WtSkwlyt~ffzI$he50QF!y>~T&tS!zAXNL3m +k<^%7e0#yxMJn^{oE_@T#h>xXXgnITmqmH3v0{;6G`?t*bk=^hwvW$W3tz3&-iImj +^t9OF^bgXwp&TfiLea|bwUKfWv<+X%o@I_RN!+d#N$fOz&xPGV^&r| +mD{kxAJ-n{tq@%@JzdC0T_E5{r{!~XdQXfmvGQPsy8+lo4&h +sla7F=H?B`)GtZg4eFCvN6!TrDsu+aRSx5A{PukW45jYuVG#8cOqxG5UEI!F5^nE4?-1( +YAtAvi2k3>N643o4R}`OvQCmniEJ}tsLnOYH6-|v8+y#7q8Xb3J@+RV%3;y(1XHlo`4*#t-xV?i4s{T +UK{$LDKg^jDE@Z|KUf*BFfhd~f8dfGQdA*Cj6f%!OM@7>a&Jj&2W77qVO{P;PNFBh%QD8IhfNj&*nTn +#okJbfJC939`FfOpNXAITw{P67AGxzUhfj-nB6StXBCC!N6Sh1lgtw<*GMlFxG5|BJO@Kpza%h{+7Yf9S3y;hEOV1n2?o=KD0z{1&%S1E&dU +S(p><`<3s^;9%d<6&6EmU9Q(`cDCcz&FPf8d7$4!j(VvI8x?dTE6aegmEC|)R|87)hsKqkq9Ka0lXGnEcVmGfyH +tQAiCohQJs<}9-yo$J9Af_&bezHX#POgO+Gn!#3g(y)!X_IQCHTO-B- +|cC`eYv8Vg)2g8Zn3TE3>l>Bza4n8BsUjg>PtxnE7Dj4QV3&WfK+Ofx&ZW17B`d|F(m0ldHpTCBc6dm +L^6I)rDewT$F9JqBLXU&28XI{2qEbL6XFq}qJ?k!jjWKxire2Uz_$l$rdZSv +z!C^6L_1vO}q}nX(dh+$RO0n8JaI{>Z5T9xq~x{J1{O +W37LdETiwaxfadTTf9udeVY#?B0-MqUfy`>TA1H?=?7SGE66jl_Rr`Aj2sztvArs8Ow(Z-jSn*6}l3z +Yu_v%(pi;hCv(@7Ft-fd@kOhHPtwsHe@d$f;8Rr0GiQ)oll1$H**`qHcwl!O4z2*^Q|ZQz~jj23-Id7 +WfoS+cQZX-vH#goTlU7`+xv`&UgKj!b+2MOqdE=emSVRN!1QWHeq0=fC`Wiv2L)9Agn{a7`v89tMQBhYQrXijsJK#r=1NJG3pc +*Y&dX-hTT_#;oR;nV7K83$Rw0Jt58D8Buc-SNM)g76sR%NX+NE7IcirNvJ|F)*0STU<~eK4r5#;@i&v +9BOimy-P2|&*7@{7QBn4tsLP~;%%4tX#gTj!O(dDdJSii#c;lgi;vr`9&KUi0b_L{}Q{5xy84QgvGb_ +)*=?gWf54BTd%1UIrgRfa;wpmJ?k6K5g0zy8=IH8n|ZnHYE!bvv=HSb0bglwHU!C}~A?>=PIW?H2Mr1 +J6LY9f^+%(k!v@S+L<~p-F!=z1DteB`vsZ77_|dwVJeIqiLAE!UCM!5!C~i&FmYjK55jN%r(-Jiko-_ +2BHrpZV3!KT(4AucUe~4i!|DFLW^dMHtcuTSb3psP^u&oIue7}9M}qoJk>poBCgworah@%M~jVaqqxf +jD>KMf+_;4XVjMU6F2l2u^+1#kV1Y0d`WzWhVB$hIlIy*IQl3V^{?b;C3_x +S&F1oCXv;biXOSue2VXKe{qUlXes|pgtWl=_#(+=5D3TQHxxHIf28T*UTzhSf+ddEWBv)*`updez|oL +$8(wELwSeb7-f(J&Q$U|*5=o5Ufy{?axe30kP`Zi`BHZ2W)O^{V}>VS&;h7_6{i9^7sq+Zq10A6j672 +x&yT!_pr&S4RYiaq#)SvTPyf@aGvw+AS_FdHhwDgsoM$r#%a?(vfRNqt3CbVRU@F0-Nq!YHH{jo2Mag +HD_2EK(1?c#eUD=TVyC3fn&gbKOI?G2$fH2z-SvkHrBtgUA5&k@@`{7JkP +SL1Rxt#K$CZGHru84Iyy0&?f!xBp&oxor-Y+Uz^&fLDa(7y$oH1K7YV@(KHQ_jKp7q-$T%K0swlzVbN +Nu`O^0!5z5>*bpT@pM|!;&i)7*2(XH1M2$oHP6q4hcmjGgyb +HPXx1L==g076%8zg>JRYgxxaboE-sSR57Xvn4Skm6LV4%=u#E5|k*+?~$ZHx>MwXq#q1gqmaF6K?O5d +tX$yPm_BBQ=YR!FsJ6HD@OZNo`S>{4Wp13n>OOTGyNyQQy=UYjgSiuC{NsFC@O9n|8{T+g}c +rg>K@nAUJNr9?>o?i!$_AV^_>mDA(rnK)YnduBMC2<&7vy;O-oZ9QiIIqL$Bw1o`}JXD#4Cd}EBw#9OMpO +YijKb#qPC%Zpr^W`Ik-r6TnK$hbD{We)t0^)~Y(Z}yNDa@{w +h%6*EI^k)TdAwM(_a{I9V&*hcncKL|&VnM^yR`SV7@Qdw(T%&4evd +nx)>XXT1AiRpIqr9WyZ8M94&|})-cmIAkKPHPIa_)WBUnl|>B-Hi`An$A1TipawEI;z7=E~V3uVKbuJ +Zg451bJ&KglVda=xN79et4>#5aIm_6_T-sS755*3R~~KhiWl!tS6YwfaSR*zb>t3mSSuE&dn%{D`*G+ +fj)jOX%*#%i#o+PMYhOCuTBYdwmyfZbICZy?M`%4o1u^bnp90za_IRw^g@$BtM4W%`({O=SLm7nrz +7EPB0=`|oeG;x&lWFarMvP)h>@6aWAK2mk|@q+B7~xaS5J006W|0015U003}la4%nWWo~3|axY|Qb98 +KJVlQ)Ja%pgMb1rastvqdZ+c=W{bqYitKT?TA#Ys;#<85`1lgQiJacn=^>CSAD)uSXxLQIhy6142>$5 +D3gv48g@dy}my03<+Cj+1G1zix>H3WfTvLcx1%@OZ%H$wI`dLsrP;;3Yok>~;3o>m>|GLMXJ +w13nc=q(!bM~uGx)+Y7Q%Y5%*3pa +3H(}RoNst65!NN=>}2wKe0n(!!yi7XkWiU@RX((9*0QR&Lt3F$B$>(y)V@1 +?HPCN!UdS1r!q{!wxH&d4aiK5>YQbgv3kF(BFo`pcBK3j1BdW&xWw#@GONW~itKLL-mdC%vC3}+Enzt +bp`%OubUHa6UtYlk&+|Gz{(QTM7 +%ZCuKS$kz;Axkct&Y0yu8s#UyFgsvTNouVA9e3|-u?Nf&W~Z9^UW-}V=zC?N8KWe5A*q&Z^C@A5%Vm` +L0$$x)x$8~1UCm=wh3dgbKnNl49CYxXZil5=0yNH(>?oVB1#+aw0GszOU%*S;<*2) +#!&iBi!q=^cpFiskf9e4AM}q-Vke7EP&taNIVy*-@2l{5XWXAtih>YYm57=OUc!5ae5@qCpdwfp2F(C +0fLWLdk#d#)ffcq<+JCDc2UqIx9-|&b<_}@`C%qQ_pa?P_YE5y+p_dV(^!zkytCHCWR2iT##^svMpm^ +Cyc{t0*=CBtXiadH=fiD0rL_)1V +SX1j!&zH=|IU9jcPp6v@v}5WWb{Kp}5BL2|vM3_nE46grS6^smFQ=gZEeNyK&4;I-)K2nZ=4YNi$mc* +X`7ucEw*USy0Hs9a`=CF4drq$e!f%E2_x)uN&wIJw>vd4mfZFF7A1t|?uZgs1G*R4GvSdJWRw+B%W+0 +@X)VVBXIoi=HBs=^ICOKRzkoasZWttxjhbv%9F+-{k)4MbrrXn4RJO=?89z1*T;ss9sZOy@0r)ag~6@ +w9dw&k!x+&tluL<@WjW`%)`nR7PdU}wNq#-RIAgtK56K#KX+sAs??O9TV93-MAL3rpM|hfB$`$1pFHd +a1q^DKe0IU=To+V-C}|0`@;6k}L~!Jz-8m({O$rt~l;IPQbv$Xz9Y6P((x~0IaZz60OhMHAk!^+lGeK +01agz00)NHMoG9}pl2C~C2mW^fcu7T5Qn@Vx +nJLt`~r5CjaJlyS;K25K;jQc)ZBbj`&?vBR%9lI-SmfFTwBptw7=Sh7eNeoMh%{yfY%svdYzYd&s}--eqM1`Ufm8_q;LgdwauT!>8Bz#Iq;+J$dElX2@>08nE% +h!{ZbIshIxKLJd$tpMD%>m=ef4J-V?gol|_l=PfcjNF+IJnJ)yqQGSvjFJdO65-6N=xk3$L5~w@KXXv +&)|V#~?8UwPoS~=o*go^?$W?*{so1o9hNHlomz&R1J{Lt +6`|$)2WDsoKF3mN6Ws(Z3=1uegS+a#JBVv9NaVt!FK|2^U+mSfJIznchjthN5>ci^%=(TNjk#iEWRVy +pn?kcR6pE7)p9VX`r!_8@PKj7Z+9r{caHlf^xRkTD4ESDK6hV&W01-;p~=c&Fyvgw&YVlOLH{rl$g!B +6pIuJg2en-S!Zc{)`lB?-#jV$SsGriqUD!8aCPIu$Mu>~=W0>Q;5B}=)Y6GW=4KPlBfmQ7s$Jbozb!z +iOJ_WZm`g^=<4P_OPfP6u)KB5@Req@OtaypE_NyVY-X_QRb30IPmR#*at0fBmmNtW-e3IVhszV--BYk +P;t;xr3aoA3~Wmw5shIVNfmgCNI>44Cq1YusiI@k2wGF(jN6q4}N)tdTi7#P-|?j%J!QJ|`mf)ymcA7 +8|IyigHRJ*KdhZb> +Fui-1gDAG?LC9SvDUWTgpy6Mp&A}EWmnpC*T=>s=B(Qsryc%cbJeABpyBud3)&eGH^rgjzsq8-3hFJ{ +G#P^ON_En`BM2qd`oDq)X(z_NR-Jt-_th5Q{14XynFdqixEn`MQ#)pC0p>%y( ++5p6g@GvZ3{^D*t@(+?qHBj68QHw2&$89zKe-Fu+necI1mKGjddy$I4eZ7m}>XjV)wu)NHCkAeW|qvT +VGxw1k^hPgR~2>K~*ux1qII(Ui;Oi`e@zVDJ8t^T0rWkWkMz@)1zR;D6tBedk|7_1frHeqf|sH@q_Or +IKo1$6RI(DZ8m<-ta}`Vl>VQO^BahJ8BWKJE)A{DdJ4rseH95-@Cu= +f7lwaWv4iwJjISw}`z6dmpzUdrEmn}+k$_O{AE$*3D%r=vD(G}_NOge2;c&a%1|l95(I!~%;eT$zoN7 +Bm^yW#C5A`O7dl8RUa@`{Rrl7E11)JmxWaMFxWUHb6KA2;bGK_}k>xWXLLrmXW#ly;*AC*Cds||{SMh +L+_VVGw{{{R9sIFvH;!6x)s7mIEARF#&1WL@KSU9fv7gup@^JSYca5+t%D#^PSzmJU^Sh{QFAFl+_{t +pQW~{YO>wdb}xe`51=@s?IG;L5#C*9xi#;)I~7$!?HvTmRge30J9sN9VA#S;&Z=eq==*v>%m645XTy< +B{+dT%R)gQy4sDfm+S+40XO{e6T`|PDF|dH9N%_>`x)Ryr_KCpj~y)*>^TV}Iy7+m96X3h3Hg>Pgn6- +qN41623R5L^Sf;Ld(gfe2agMF?6Qx0vxwcsp$@`p1K3HA`OK-_EHA&;H?l%K82bQ)R +SWPFX^QgnkX+kE51ldRB;xn{}2rtXccKh%k7b5f`4=!O#=icEhik_c8YF;i&^lTSj|^HRcHn>Uy4st9 +h*ZwRKtd4^O-BpFel+g@;EFAFc9-c4cZzEo!ehtnxU2zC=-S9yr +NzJ}RYHw{1ihdFE0_;c;*^l>Veu)$;*)FfP=d;XrvL&h71t|=?bi!CHeT*ok>7LS>a!w$N4UNds*^KR +h|xh*h|!KND|o#!2T@^%J63(2f+O<1@%yozMv_Q=6{%(&wk@a#fDKE +tuB;nF&Z$z%0&5spXT-oFEhE4C>rnR))h5)d$?2QP1yHs%Ol|)-Jh%t8VnXi$25~p$t!RDkc1py*iu$ +kPi_6K`DN5YK_gAIuUsLVf<$<=sfNQhACsY0kHtiXjo$guXq*HYE5f+Xq^hR~i63+(g_1W9EFEEK%Lh?TQguSjtW)qGG*!WnFhts%gkakO;F2IDTw@(Ou~ajRV{r?Zj0gJ(Yk> +?neb7OOQw95CQ5(MOG2@fa3}AWlQf29Oi*I2U*t(zoD2@N|d6@th@$wjuC@9ak0oK4>#SH+cmj9Aa{);OK%d=N;7a=B3{S6b!U#`;@CXn0i1soMYzdjDIto~;j4i|hiKJ>OcX$ +?MOSq5_q)4?t)H3#*`^kGRUL5gwK5eM@T{USyga57v+H?`xuM>p?37_xV$d{jF?4Q8 +VplQ3BA@o(X_)17OpfN3GAKNHGX+7-D{5i^DU>3z86YugqVk|_G`PLJh5aPgf-4m?NTMkN&@=92b$fP +e1fJki5nQF0O^Cqk7|A)a0cKT@O%;Ryw8)_@M81m!zJEibD3| +;?pE3L7?AI_V)C}LVY3A=|JyXzeu~(`?QKA~#Yg#DHKI}9h1tO~oX+0$10KkO)%%^IQHN8pqUjJK3YO +P-`B$Fg?EtYUo_xXS|hVZ +U^+U(j7CM4!&xqlKbGv=F$yERj<#8zyzvH(Pvh>kA9=86=hchwnX$9HtjeAbdY7b*RZ3a-b+{Q2sdO# +R;5+yF{<`6L&IN%Tlf=4_-175#>@5hX}(27G$UM-QLjn9zhBjyG}Wk=L!F-L5kPbcG0>;-gwxn&_Y|~ +t$Ym=9xq1sg%@SD{AZRU-Pn;Luo)-fC>LBy3B`2(Jg~ZJ~^gUTWFKbPKz5=9v=$1=xLEwr_3#;$Grr= +07kosyYF&~lsc&PBM^FzU9 +)&J4*v^Q8~mRSPS|gN==DAvzWCG%=Zij!)qS?Uk-AaYp%(zx`qg@)@>>&q0=NuF)PZb10e9uPIjNnYb +x<{Qc7yyPQrvlnl0ck8>ffNLtueVK>!k!evBcg0D<@K436?k@;v(gAF^A+y6+mhQ1h<<(X?~-V$5G1% +`4I?3?X}28qJh?Ew91#;k%QE1IRbO{5;xvg@4S5~jiYnX4;zD9-7ImyYEMv{p3X!JSqwchyZEa7C|^9 +L|3PZozSbVoXR^2sWt4U<1$iANQ`B`&M+eA^=J_Umb|3Z94qTwHbrqRB#C?MU$506(kBEck#3sm8U_(A2-z<0R7!F-XEcuAA+R&*9tub#UYIX}(J9X+>dwDI=lnxycBz~bwC)B91 +(|Y0uYf>UEn)3Sl$f}{e=^T52;mn;=1)Al5(93GF +=C@YqAk^y~Yg}rG`9m%71Ri}lm?YIjgTHj>@PJaIlv%RuXttnscLBrbsHSob-zjc91jO|tGlx$zU?di +d%W=hsLX~SkjHU;=3V;Ix$EoJlxNjU!((>3^2FqmFZ2dW_ZvR*e3-?batXz4Aqs +LNL@=Y9v=g*MM3g3 +H5oJ%qwJT7VEWwU05Q#V*XsHRZzK({Y9?F?1f8d#t?yhlZ-Ts)<6@rW&{KNNrX4cmt6SA!oG0o9|BeY +!1%naC!UcPa$&a~+!Ol7lu`z|SU>RCjRh`UUjVuMjO8lV{$?>?8IiQ~OD;u|JyFV!VyoI_(+e;~HxM5 +v;PLNc{uqc1L$p*DVFH(ZAYKWuX`^Z{+c|B9aZFfUB;Ib@*Qivwr^&%ZzBsoE8go|GsC80@@ix8f_v5 +KdJE4Y^-L@S_RbE#ZE=3x^z%N&}G$bQ~Q-7G-VN~$glmU%{TY?`WV4T*V})RO@R3q9N&DDEv|rwhph)sIX +SQ+*5-G#G+y4b%np@y5_x1-(%w{lP?Q;`b0LchMiQU@=PCinZDYYkh5Zb%_X(f-ryfy2y*)X^z&!#XmbcX) +m>7U--X%6W2%$4{L2Nt>cQWN7+=Ghsu|XEp;ehYr9rw3=;N;YghIc*VADt;2z`QWuDG^zeCE`_>Ah1Y +?O1YxHJJIM4rm>zpF-WvrLkR!X75uYf +XF9DC}@fiZn8;H-9<9iX(&RO^~%LUY}`7u1Pl(p+{#=aTRpTW69g^P<}YiMmm*kx;Eo_}T)eL;&GL0< +V>-KM`Qv7nf_51)3%TX&q79TrCYh$oYrrq(+f@)c7kTzQci9pAJp|_M!~cPWQ+-J87CL8daWlPqd<-* +cFJ~wTDJtZEjwfp{`O)H$@~x8ntT2?vjR0$SWl|h8->h@+s=>xqbZ>)L_%USCMj?#ckJdzgHUi-y#ik +U)NDRELFL9?g&O9n!sRGpHZXvX*E2}(o@B${|8V@0|XQR000O81DB*+gi3i5>bw8|0Db`g8vp%Lu)7@8A!*>@ge82&)RG6z4qE`ueJAHYbtJkoU?EoXN5ma*UO +)5vDAT>wuS^>uE73T0mR%kPK8&={HIM+3G_pbgv08STl8W6q*E`hu8AGh%T|M&mq- +*WX-<0&i8aXXr(F5n!mEAD=|p64WY*lqV{k}VwS@71(`1~MXmeB)t%g`q1S&ecD70&}w#aI9n$q(xjF +wk-!g+JYu6kLz-AYDK@}2%DSDaqUsPBcf&YU`g+cG)nsS{BJ1fn9V3jt>FC*EnL> +`5e}wBu35l&ma%1{DMu(GPS}r0YNnHy%xWTBZc^QRQFC}vaew?BwY8=SG03N8`22yVq0F$m-=PIMoq$ +BC?^o)(*c@n(qutpmJkcC@79f_fDVnAQ&3;YlXX}AJcz)Pl2;l9IJK}MJ?_`FzuPjaQ*vdo&%KX-{YGO!cejLSP_gD#oet!I +WTVfDlaYK%gd<>GXXpqCR|s&a38-%Cga{$}^#vkpc+nIso>QyZ_anwy=SVT5+!6s44lfPNp#8%HeZY?0oNTO2)Qi0%WdQH|PSRJWcti#E7g* +IfzM^!1nT2mmKSwZ=D2Yk(*1Q{cQcfi>_L%=Bn^HYmXnaS;zgnOfcwy%po-gjq`Oaq|{Q2%3-?;9D+y +tBMjh!Y`}Eg6h5x;NKPYF6aH~9QB>=wx`L>R_D8Qey=Z(nd{=hVuqC+13n7RJs7UG0n5Rl;GLhYEmHf +622=~=9wR3-aip9W5N&E}bHeOl*FrB;%2BJ_YIRoeb$`T`J_a}{t5?=gLt(HXa`q50D6b~i$T51?Y#8 +BTZ%lw^wJUCs-`4zW`B;NQ#z?jM{A^D)ij3dGxPh!MAeTl8JZvYvcPYU5Ph}f|<8c~VHsB6f(?q*-Kx +o4G%b5_G%y5?nFtJx?It$X#*(Egn74Fy^JB;_HPE2eOns63XXS;xW-e8aRVeqWl0oQIIh4vu~K{lOga +}}@&o0P1}#LF>HIpnFVboPm9B~{&0hT}LPP~H8`1SGk;rK}(qJga>u-`fvtn;4qfjj0J_W@l6~JB~Zu +{gM^oobCiZz^Bp`*xSd&9Jx;uGrihJkPXl~j+a#Ri*~ubUlX%{^x8*WETg0LjEz38X_b}X&?x}&1lJry*7OB4wb}St%bTI|V~% +_P0oF)qzMly1jKG8h# +CBtt3I=Xcw!aTg%I*%lhEBjWz(6Dz)%5#8wE6woZltGQ%du?1e7jRxpGa=SF09amXf#>z +v#uqK`Hl&v+uzfTj$@3ubXV|c{#R=?UZT2ZFDGzzhAJmM3^YW>F)ceV#Lh3ildbXFc?mk5@FUsqfi8`NG}|`EWiKFdA{+Xy6u;yy*>`pvuqbCD|djnjr^*= +OFm#WL3VbmFIJ6uQ*QFn~opO+l>!UA#-g>y7Z;-;WOid$U7pnN;-V?vpa!@M@dEQj7@I)j~o{hEoIegXeK-F5za?}hJ3<`nAv$56R%}A;}Q)=ahCr=gglL%n +i-$e-SBJ?(>9Jc8Stl|7*4f6?eoEmynGI0bHqeDwys&1Q73|dq5N<(ZEXABh^(6L&c6}q`ro-5Puv9MaalA0R#vC7s#r;9}hT@dn2&wBB2Rli$0E11Z0!s0Hs>mz5PXJ6jyE +TOO&mmD}X7x#YakPiGcf!3^vEA6BYlbWbny+>^BBA3*5-tbRmI8ZLhGi_q(Nn3u>FijWw{>L0`E1eFa +6U`SSm11{`#Nq`PeZmI%$85t#$vWge>l{Q1E?jPD>~!z2Khkj0*vMjwwJeV^WWw|WyY%)uLvgq& +?-vA#DbpWkAK4m-JnYSNjS7@<@wSS*#KaFZ%LVy8IFc?;V)S$4^>nA2;Us{m|3!(qkks=M^0d;+(E(p +{K#GrZ_2p!L9?90uQr%FXZ`^xa*g5XpSvw;ncq$6Vc4aR@r4DxL*acJ0D<1tW#LnqJa;tMc^58#X18u +plLRbGymYeVhQ*`h=5Ce$vKY8@_zFLwHJ48AnKn@~bW6DTlGeB)QOO(kw6jQRBCxQ@}%W(i}?pgAmF$ +NShKtaOU8<_aYL{*KcJ=GTZzwcS_;e_#!K_4&MPW+qaj*vlS*@dkZh#rgGKQP(5qyg{(Ox6<}x%Oc*vQ}#!yZ +$thjhPm^!s3PN{&IQs{yMVRx4&fR$l|)2P$pJ3z6uL$!Z18Q<-S`(&#dwRnwXqV#p2WVb;6D9CeG4Hi +meRMk+~Qzah6^=S5ssepD&wNlK^gPNqa#0vur94dfzun5^GLsd%$uCzisGMEVPDhGNWp#hboR$Xq3^R +>=5#8J=_!d@P`x2v|qE`r#uiUO_HAgw}Ekq}U-Lo>)A<*{!~O%ZA%Drs$6{AOU~dYew0PZdzv*=&?iK +nx#~(U9msYZbJ6n~&99fs{K5jZeD*8$a>lmM@=bw0xB{)p9g>#j7C^q}J@hnK(JF)@_1(AA9ODWO9A> +_pq|du;lb)W0#?(=R@-YN=K|6*C8~D_8uv}#N98BX3HT9j$pO~F;(;{JlPRRV)@k5EoC+=>>d^?h1!? +#YWZpU9k3bySQ}y$%& +M$43W^L4=$l(+Y$=$w^++kor2;f8XbqOOXdTDW6?f2qSSaTYMwO1vIRie?H9z$3?3e1>+PW9J?yqJtkKRzi_!j-CI_uPWj20e&S4+Yg5y_IM;*uZBi?x04op^TX +1TdQK4fh?*8t*c<5$6fYJjioJdoxp@OmnoO)jVa!T`;>8dpYZ9d-FB3c2ZS-B3f-`IF=4P@B( +c8w!a9c3Stb6i7d1JX}SV>_V^+H5R~jYbuFP|#8PoLzNO8wc)$ve%DS-!5uvJ_lB{eHqL94#zbvwQ(T +zD&tvlOMy?z6M?!zM4X(+tsf&t>>kE$LcwBdEZ5-y#BD>NU;am>~%`H*Smn_`{JOy +W#ERr*S1*1A!CwXgZlyya88*)5;OC)9vODCQ({xFCo0_mxqE{fnCAc=I)FU|^HwoP1hyyn~(i8D}yzi +k<3r`T_d#nQ?JkbIcBpHh470+iJo$YAd7R8wYCedV#L}a81$&>N`qieB+#tKZYv7Xuk_h)})+WHdJ{9 +1@E}uc?PD{a}$zN)h(dl#%7pkox;b|?;!Iz-F#h!t}1^3Bvd)ol?xiwm1+y;ZzPV{(u+wpDMek`jVXnI&yeN||MN@M9XqJtL4?Cmc#8&Pt5Wn$}z*V3#RYFo`D~I%uBRq&RwF +9JbHnUDh4%PUh)U0J#O~1A#m#w-9C1gI(a-^3Cv3ew_1Zr2@#@-qa)w!w?=AYAE76S28skVggJq1RBz +EFE57*a`Dc?!go9Yy3m-rN+>dHR4E^1zYSCb$Fbht5_j&p%W#Fo<_&@o`Sh* +2h1DZA4+5;;E&R4Vx3|n@!)1W_F7;E9SIhDhcXvFa)!mJzJgCu4e}aMxAaN1QvOvyKVawlfy6AIu)S1 +qcNsPCrc!|cx{Q4D_&J1?hqw5O;_dOlx_R@lw40`3u>70cH+Za(l>WuRr9c_$CWD7&Fgt*A8M3QK=Ja}RHZ +U4q;keyr+KiXinPwCctWY?{p_`KSi`FRp2aqo^nE|WH5wxM1YA@dqaJNOp9TWrvnkD=rCV%I;?xyS+r +I&{x1I%so24rebR2@_sx;MfPHFB;w^+kE;64I$6*h>uZ0cZ*)?e)b>ZQNKie7sj{E& +%z$kcX8Qz!Z+%>_l`C6UGZFsP|Nn=u5xXOo0mX?Z->d=q`$5OmC6m8AgJI6mvUgMVzLtIpe3{73%W@XIzfq@@T!DQ;PuH4yl#IVue*=p^}t(b$8UQwLAUTJx@~ +WxTj(&|o{P}!H?P9&r$3}+H`Q$oS6G!WTK}z7o(X8CgcyFisb2}7#D@x-62^L|6?RCWx}56A6}2t6WC +zNbme)kbB!%3EPyL>gV?~ +TyAKOf?{Q(#l8w2#P%eWC*i$(5b#$77<-IEy?&%0Rpe`gz4IVjElB)PYHO|Y(9ngYu3C8>2MNuPFcNM +34{GHSPO0b@=fcD%?41LKCg#i&_FjjXTLAVDz?zNB-{vIDjG3hOFOoHzIqUPR?36aa){Wa +C8dC%sBSqPLSXCFw0pNt-~e~_Rc8SVw1_W4;R_IDS^t3*kSwceuCSc4`nn4^^>=YW%)QDIvjjzK@@UO +Z%y_@c$u*fe-jGt^snwWH{dN>z8yAq%wSLzEo3Br)VKrZj(%-m_??wE;xRyUwF)?P^!Ux3eVE!W*3*) +}4hsDBz_DYBYu$9!+0ZTTe4D^1aQd_lOpCaXuA{rCLQq3But@+|%f`xcjToZUf1E6eah{Q6!GtJcwfwGNx36neP +I1Onf@>?L=HVLz^65u0j>(8x}uq9c75bySh^%5e;#FD6*l_nZ^M{)-EFv4VF9*X)Z}RYpO0eaql@*|Dtf?N<^1Y7ZK +ELzLjVqnmR0pq$wt;$@>Y!Uf8AdOe#Ovj`#hO@bR7ILp^rmRPN#t+(2epuG=`ix*d92l*s>M6FO`T7b +SUJ?P834}zy`5^vo=$<2AO{NZI)&=SvmY8T;vmX)P+LLQCfeDEZ2BzMvxtW}A5pD5O~+l>sgK%m9f8N +a$TYQA=X=X6YGm*~JGvOv@T!yIB*L +9E9tm@J(Hxs$njtGJhB`zY$DtZfh})T35du2EOb%5~wF4RvUSzVRY^`8^z&;Z7A3>j=anbKYa0DCc)X +i-kg~eTXf?x!D-Kj5EDfJz)<`TkA6aupjAlgum(6k?_t4N)yl~U3;p7uE9r*I^fSxwSPc@xh`bD)MB5 +s~BgLZAetO}La4X-d_JxCMxTqkv7vj;lYxNn^v+Hm}}p#3@ej>J5=wTya^g?@*;qz`yX@NCC?5MGJt* +Ia-lk&*p)2AZBNpr3+L&x&EXkJ+wGB0}oiZf(7iB>(Sg&+?_C;+!eM_4v@6OC`Q4s;@rIaD&ZqIasm>vtRvg7s +G!u0N?%b)I>#q$(E}yEQu{IVPUdMf$6>pk>F|%h@MR1j90)Jv#_?Hlc$(0WYoYQ#Vp?G3c;HsDw6uT_ +$iVEf=MSt@AkM4vOd@kXuU{U1_RCb}n2H#FY(tZJqTU>5-@2>RISakMz{V{uj{S&~jC_Umzwc> +(7xDWkP4ALli_U?1zliNwP~%Wy9fH~bQs@MLp%fmTi8ZVn2HACI_b4l7O7i2ZwyK8MX$v2(;MdB7y5$ +pdETPuQr%e>EmGpV7)G$-Ol|8&7*pG$e@#toa%sV0T=!IGubH`kLybSa-VZErP08#4B#8I1g1b0w +=PA$$*|+b+wd#j5*{^EwLAqJb1a(?Ki{wtky|xB*)I@x`hXwG_*}87LnqDi<-B2ox^aF&4Jyo5wR0X- +ks-^>~V`#NQ$AB2!V2*bKSymuf8nQq{X0V^51VKBpUpLMM(C}&jHFIoMa)sx6xLq%ujEl+*p!|WZXI6 +@VppuyM^f#%W!DUR$#m4%;XXZ+mne)H$cny1h3D-@Te&&J+ +0DZSV}9F09>Qv8F1Dv#ZonQX-K0IaqUAxMu-!^Npj)enn~;x-Ach +|*@5Xt_oD8}8{z@8d$!D9k^VR&L_24i+K5qd`CBvNL>&lga`Ah}QU`o-&&(&hfF*nb`9Q_9S$ak9q$N +b_bhdqGfba(caPGqtvpAxS#7`Uw;8qs+|Z{SFMf1n8fx75MDYk3&F>v-Eu&U|zFB^RY*8leuMZrCC=(DqBFq;=rr``}$x88lliEv( +COjd*ErLM|%eClE{4n(ggNshOP+Vu6{~cieV)~$3b73WavvZ2H2t$7<&dfBz{bdLKTuK-Wk0TYKCwSs +v&op#1=1W>oLfuX6Wjl&C5P8)Z4hg{+^yHc*y){GkEoGC@%_?^|FHAAyT0W2E18JV^0^+qAC0A%H%G? +=__!?fyU+r_F-dBq~jV-$!r(M5ov@E>`bsLe*tvdS8+Qo9HilKU@;8`=k+`0!gJ$3Ou^&b(pURO(Bi_ +Dd`OW_$ooXN=d63r(O$BP!6V2?r2^*gF(hyJ;6#SYrIqYkg+_v%EunG+*6r-2V9x$b3 +@#AmPjY1bPu}{pqU3Q@oQA~DV0|3Pd~&At&wv11M1^UM?rri(}a-OG+3m_?i|P?t(e`4<<;CXFHC|75%1o<{vUq`c?Fs^;HH(`vQNh^N +`T=AtZ+%+WZP0Y!9^yO%qMHMiG${Ug3xTfmkHakPmdw=NpE8w&Q0r7oQr;2%MtN`Kiwnt_&vcnYz+!FHJi3utuHyF;!-jhlUeo +ML)~5b0gR11hZFwmSjEh#8g}^PFsY=W==9BDyV$F6SBha$4;)?K;#O&(z(G|P721{6h4wJ~6 +?J-jeiC}ux%(Zjdz5>bCM95a8f{bDiLkqC)lQDuR?)Re$;QXZ8r)L*OVzUEhO8mh@@bPxUCTRWBTm1X +-s09cWBi35w&T`7wz|}6dBPrmfW-Ud!5pia_JnjHN=7d-kH1#hZ63e3F>l?{I_a(m@XgYVHiOQd%{GU=Ors_;;4X5l= +sv&_LQEiRwQu5T~w<_{xrN+b$_D6Cu%tl4ZI3+zJh&I;Dft7qA=K-a<)59s?5hm}Qz{3>Od!4<{o3Lc=mZ?I;&9-Pkd48TKHZn@9zRlmYRj*erF9*3sAyOL~>uhi +3OGYrY!u0rD!zP7`6P5S~5r1<oQF&%w@X=4E#KoQrUg%>%X9l(X +h%mxVVwM^f7=%3Y=YJdJ1d@y}RK3PDjM0%T{BzRa)xxgC0B)v@Ur*_XnJSqyjH{@p6=-88EI#hs$zruLP)3t-H`{?>UT-g!e1C~Yke+t)LE@r8rU2vE0Typ +_Uk#4Y7ooB>j!rmOmF=aa=w5RBL7_Z@zaIJN|DKx!==C*mI<&1m)p*UrC1a88%XCOViptDv^tXMAydz +*!W4bwSX-4&3^!oj9P7}l;9x7Uh0(C3S1+gx_&p3CG2evFXE5tb&r)I@N?KQE_PiK@fE`ncN>UD5@Mo +4ER9fhUxX6hV_)%l;}bWDemM~k%jCprF&}hXA@mNPY!t4j#v(ixIB&Hy)^f&3#x;HFv)E2P*$jK^$Eo +Lnm`dnDs9rBksg*aGXG!^Ti`B^9kjlOavm_ik%uF5TIfTIzNCu3HU{(oDH_*fVLen+$@O`0a8a+s$NY +ldxp=mTdtPq;A@ZmY+5ugCF@v`u4WVTl7dlZ0dBiI$O&oT@;tP*~BEokyWQv^4|Q6ry#M>96bY=LM8r +l^EJz9=e$J_V^NHy5-LiyjT9^J+AtFj0Q)6wzcizJ!hokJ+I)Thp6 +B{Y!@@U3>_8BFjAN?A?ZVHIR1F8P7jD{B+@HZBx?rL&Cyeqtls +YT2Zd7T7brq*+!AW*!`*c()uYm_C4?J1oVM%NsIky@kKqZ*X5N)tRT7llIJn~(wF-UHA@nvXyRn+F># +evAni?h0kZ-HyR!~wLI#rRoh1a0_FpoIunW963%n>_{hcuphpN8C*czj@xgdSD^hJR)3D1s!`2tPz?N +oeXsn=f&%uyJu$D~UR)dABvmLN2|CEYu1pp|=^wp3wA5eS_FTXJDslu&l_P|7(JVS?dGTVoCgW3_#(oteYD0Ma-34nr?(Bt@dalaCJVvq +;4-8ig-gH&^k3ejl+UrrGi=JI;9+4*?B;6v@GdH|ayAD-CwB?@72k}(9OTmz+7n_XzYR#v9knIF=ILK +LJR8k|>yeX4f|G;X0je!a2u0hAuyMxQB9;;b4kl-XLL>HdD=`lfBDtl->%hf-QY2=OiMq7FwlccE!DK +n9Cf0Q0_uL?BQ(vJBqe?n_S1vBd+_Wp)${6^I%}dUJu8uM?!F859TMwZ;8$tFU)*|1oZcYK +%bIsVSh*OLDGe^O3@n9Hh-e+#ysi)RKrwK!@|TVAPEtSdFLeAim$8`uhk!|(iJL|5+5Hd)^V%RTi6p9 +WB*(}K!Q#Bu1W$ubbQlYDoq)~1aVRVqonqGZf3hz>Yg5xF<0CiF2BfYKZgdz860b5EbP35`>%N#|@&Ob-VBu@K@qs=1HqLgGR;lV5=3Z +c0(n5iMu2r9WmMTPZW?SsL=p&ial~Q!?ISxbiz{@lNj69oq9;)@~!WR!xRpUvjrElR$s>i=7cX98Rxw +!PjF76)q+Xa8G!k-1wN8E&Gw8)(kmoI-!ezYLqpKRWV=j+wx)Hw~9rY0C?d7W6?P~rz14&XV3u6{3z(zC +sWP*QV`Y{t+R8j1U(eGi6-$Km7-Zr&a*Kr)3!8GSOJ%_wXS<>=x^sywZMderifS^-v0G@RCL;eJr-x%`Y}b#E>HN0Z2TT9xRo6w#~ +$0(g(f*_Zi+}BLU*mhNEMI?%JV?k2>$UW#cN>t-MpF;$ExcCz?^)rfc*-cIn@^C0^n#cn@t>tyIr`=v_7CnC!Mp&yXg8*k2v +0^e!kXHdDeq0{tmqy_-kjpywF@6~HW~lB2$%K~FL5WiZ!_J)AX +t$BAqCf?X9*mqYAmyl0_DVnPBjD0LG|Ukx*;fp06qXN}%TxDdqsA_v@*o0aqZXs*0Bs?( +dbGU5L^+|!hnoy;2E0du0+VilBpRXNg%f=q_8IyQ9=j2@n;y0*Yi%XVneZr%nTGnm0m}DK>Pug5&1q^ +Enp#j@*;581r9JinHw?{BFswnvNkH@6_F_fq48P>k`zBtrwaf&A>`GzJJTN8VK(fxQ4Kv^)zsNZWu$d +M+6YIWG>(QgNVIC(Pg^ttQopK8=*LPY0LtRX5g}SvaUFhBvD}P%+2 +4^)t7q6ps4~5bt^-RfldLXh^ST~HzX|7Y^c@Q?oVQ6A-z*1`h(C6$yJQM8ZoeQl(lOMaH +00uq#Had@^w}sGD28sJ|2LpzL+IQwT`EqiEXD^dmFdcakLfAp7bV6GfNR5(_YFVIEA15C6R4Z=PRtLO +lDUJ;7qn@%gW+C(yDxhgNI!!_d7sz3RJd>9kf(xxX=itP%kl#6%?zWvSxH}>WFkT|9-d?LNS!l0SZ0; +G5?20q`Qi@DapS^WS{=_X?3a-EpG5rIMh}5p +BkyRScCKjWbs?K21(&QbA*%p3BRAiMd!6OHSBvt9)-Khr6C1L0VKUoq>zQ(x~7C=EF_w)-+6@6MqrI8 +_uWBMoQsXT)+0A`h#5@IZ;|X__A;4%gaMwB7-mC8c(a6M@zo(;Y1ThO`=xWhS`q{5qgXXas4mHuZdV` +Or@xJbx6vM!{yKEy9?Zqs@xXbd`smBU0RD0~1u&lgv^|KA9T`kNbQlMK`e;PYxCk=3)JG4)+toOfJ!} +U6sE^`i=xb>F6}5WUW0Z8%cxxbJn4d|9$r)086dPJP9mz7G+^iFEq? +!Sh7y*?4uKgAQmDKc$qtwOL!DKro%dJGyRv$Cr>##mXpH`>tiZ;uq7CU>z>3(Gn3)11k9&v(?{SB85= +5duc2|j+6J_)WRPpZ~xIwGQ<_d>bz%fG-#$tMqaeF8391De|=n1ClT6DF@&ZOp=jygm!R@)w+iZS1L$ +h6vDRqwBBSvf9TgHC^1C95x0I0yLh&tpp(*MXeQG0-{=88{EjZ*Qd>1Q-s6&EsAmg1y0arm(NU|{#Uz +F07vn)r8>G}H5QrB#4%vUds2|vQ8^pGXgk&z-*aGIdmonzvI#+K7w8f}KClAY{^ChZ3oJQ{d;cAXSK? +dC?%2gIp!Ic!wpiJet87}+@+dB;Eo^!8X0+v7%K|7rK&m`tPqrWB=}=W-9?D1?lkEC=T8wg0wi-`~>_ +9@nv$k$E`vY1y$sBpeG)uib8lJ=c`x^~-=Mpevy@!ga~m}pLpFInCjp +YHhIZU!4i~Sg5HH*DxuzjIQ}_K>HuV}j+t`2T&zgTIv!M%gCYyBuHMg25Nb8e$5@pL-64`-`c;C4QJM +P248hR<$Ujp<(UHYM1iV&PS8;8YC90uYTxwM?zinHa?CG>z!$b~!JqQftcumeX!YZ_*pe}{`xh&y)bL +kI`tPGjTp1RwQ_2J38ZLjWRz5dwy|q^Nmyh2}?q@+0IiO8O-OArir@he^tx}w!KK2$Vx>i%XAiTW))}S +f8oWIqxjIGZxoLv!6w4z7aoT>!+rFNsKP@UBF1Jiqw%mEF{3*`6Ek)xCPdm4r{I+{9B%(FHWwG@es0w +D!?mS!V~!L!Rp7!rg15KXo&7}pq?j$PJ{@u=QgiO&b=`uj?}{*>H-@~a1rG~x~@x_qfQVAz|rcjXqVQ +?k{aO6^mY7Sjg$xB%YSjc!^Rz))aNA55xb=9@rG-FO=McoiPB*+DY{;JnS}4?MRWQqZQ|cL#hscqd#c +)r7NUt)ONA8Z(ITR;zQM?zCJw3(Kjg7AFMoiFN2<0z_MoBmbW~Or>ZY1%c;L7=82!DEd4*mt}|p;DnO +2EvSG~;I*Ai@VM1&|2g{J%k?(U%bz7SpN_{xXki&Np$?_$Xy~{Y&}J9nS(Xn`AAet|I)R=MUt8hX*;j +Wnn|V&tN;1U1!pl7E2F%8$K$4Q7y{F^Dq$G-xsuNOLiMvD0K|EDQ6?X?=RjZE1Uu<=sYycWG)}P!4x3 +wcx_eqsA2;n|yjepVV?tGj8I-f8AItKwd2|$-e1-ScDZ|9^dTdCD3)qothrH9PI4xnZL-$guf*oQNEl +*K-VdB<>$)}3sBJ22EY8d5RjAA2U5ic1zjjw$*(zTz6jzZtKThsAUscQzAGn&{^>$y<-UIwEQX@3g%h +8E}Cn>5>y;>i&kEs9Ik?Jm4Dix=T++2Iiw4fN9z`t@i@^=rVQxfW3W9-oP!&^|k69MBR%sEtyfp@WCulh0eb^Nm>xjEGTx=rhw1o+* +L10D;%XUP$H>ZAp(rdn=B&crnMhpjLC&UFBn+z)RTbMhT|26}=s_yn8Ni7!VZw(d%LNt~8ExNe2S2Lg +GQJme0>RZZ{68NzZA!vB{8jIF`(WS5o=-VR_de|^Wf$Fl{(p{ +B>ld|1d!rv+5kpr#it3RehfO>?wgZxw$*0iOUmz4Ai1cO +0>#j`#yoVpheY&0G?K2w>IXe%nyn`oZL3S;vXpWQJWS!TT3naGi(^aqwd!m-X&rHeJ$;QW{xD~=(1c;{FqD%OIMfn7h>#da^^=We^^+1hQ(gbv*9zfAE=X^gj2+QshTBni3+ +2dgHm|+TsFQrBg=@HTN`ri-gVXB=*Mcml+_ju4K$R?SL#3SW)*S;WsTZ;F=kauvo*cLqUx!DgXd=A>4 +<-4byS8THYG6fAGcS$sq#}Ekl1CePG!447QD!Awb@y-Owv<^fao!S|(6U0`EqB7YSabI~`!+u2IIf;S +6ht;W3#Ex8uJ!gGuvXk=(-z8o7GYZeeV?e$wY*al-Lz(9b$b*~%J=A#o!`+zzAF1src{DX_N| +h%2=L#!DZuL8=mz~LgHhu*;n4h-aYZk}Wnj8{1+D~DVx?x3xNYLUh^ +_e&Y)QAHgM?788ep{ls~8U$P8Rk+8&0v}N1#?=fCA9Zeq_L< +fq_azPAl82@5VtYPlPy4?p19l{~kJhdVQO4>{bqIKJazA0o#`Xoi~D_2$%Ct=I6RQrj9nvp9}7oHI+V +7jXSgEK$pNzdEl7lkl)m5AfsGsh2c=GMpq7T*aBk ++>?J&hR~f(7$2MxD3yS1TJOvMLxuDowAN#>;xZN+K15$5C<%EcF+AEkFU`Wg9A8O>2c@o_+P3%UqZZZ +x#ii^uRsiU}a#A=lzg8HBtx%*IzI*#3_EbmX!QZ2XjG|S?(CChnfq=$V+Gl)JJh#ntTQqN1dxC;RNaj +o%5vShkJx9MlNEnOCGa)2`2Ie3hB5)~3ncEBi7F?bVnf@o3QC)f)g=skgZeUgai`4R}eOd +-l~L^8XE6&+bDTcn*zVtypf&PYq!kOiqOx-vcRMQyrBH2@v;}POF+%orKKcJBVq}ksv8X%bTnwG25@b +=Vu@P4(8q~VE$?08wWaOfIK`wkTvMiC1xU|WbtV44SxTkdN8DqHtY3$w76in%-RC>(a<&F_pxghW01V +#C6jPlOv-1YFm&u>c1Le=B3n&i5P>1Wv#7!)lSQlA8vkA}pZzBqilEl^NdoJAZ*cD|?g?hG6`bKJJXt +CtTKH4Gv19$r_B%8v52Z4}V2h7X=EcGMJpIxT^D{XZu6Q52Ad6k84RaL_>n)S#(fZWoI*)=$I+FR(Q% +Adgc)+NC?2bC;z0|H|_@M4*N-h8?chqstGg2NKIS5v(gT=o~p<)#GNoQicMX4WjJ2iY%H7Qq-ms +1NFFXLRE?_?Yf74f8P-$j5Zc9rLt*;9}Z%ELEQm5ByIqroZBbyO=IYWu|BaY!|!UXqA*&;YnrC@)Cn_ywLg6wr&(C=opVe%yh}kW~bX$cX}{zm+@~|cu65&)Fy +u>Sehrak7%xpeRUrO9X3)klBw@QsveXBnZ?J%S8y}KhQ6!MKLTw(eiR!=Zeb{Nfw!)OetzC1X0yoAWV +_>k_BxI~ZxY8S)z;_jy8W&$<>k%+B?kmHAVXi-HZwc}1PrVf=%nrp_Q#iubG@RC9eF8vrZ*d-L_IP`S +5q^5?2P~l=rSA57Ji|rf!48jbzZpKq~xee^NSKUDNC)+zD<+-6kzI;70C!1@d~-E07^w>e@Lyc$>%WA +&N+;<(=2yRQQvJopGE<6o*WiH$66rf2F+gYGIlSJ=kh}sFcA298kD-Vg5Sc&$AIkdV?-M)?)$0YO6vP +Tpy_mqV<-yJl1Qr=IydF9&^syK{}T{AcAlDKdtMfrzUGj;Lg-7pn?X;b22h+1xec9-b=txF_WS#AeoI +sFB(t_IUt7of*zSEab>5e*R|(@z2~FsPO^Zg4;AT;o?Gb62kE#2Nsi)Y-HtWv=Vj);?b?^czr_XREWO +u_m(5e#Ylu=n@5NWH+TKLG^N2Cl4atDTO<0kTEmh!L}!=0QlMnjIa)GF*TEl_gexujlp+U1Bn6M6>bZ +=lwol$)q7ClL@FSfRL2Da%g+Lrh@z;c1TojxBjR#g4#=^=TaE#h|+zc_%57byHaB+c-qo +u{vD4`8+X2&27YN14>^n!2^A5X}9(jWp4_I*pEV)YXtyR!iL0ObD9p(0IIWttj@^;SxYq=T~|846{X$ +|MH#5!7RSglpq8|nwREhAJRywGI$lC&(!Ny`#Fs<3rQ&NKve6Y%^kyehc#90+RGL8oO&(+Knm1RYPHx +k*p}v*=(~WCgi!1zQHq@~9cwtaL4}->_OXSa7$Qh1!KJ-$OOG!Y=$^6{cmFD!Rjq(ycvQgV2N_J)mT> +(1c5np>{E=!I>qcHSpHBrJ3-ARbR9Hl+QKcjU6%&--p0(Wqg7$cZ8_5xqRE$hyJBHcM|@Oo$1_3Gt>o$O +oPL-WG@zoYu6G%VO0On$1-T(XvoWMxM4FY1jQa$h1(7RGp)U?hYq*8*U(chS<~{||NeHQA*>}fe{jQF +6v^%51lg*Y0AX1i$DUP=QPmHLQ|2b2TQw`7bd@{1FGxxomM{tug}R!bZ%{^ReB;Io)#e09gN%F

iVztRya3p5&70wQ_wTOZ;6hdqu5cK~6~^r{Kdmc$lVUv@ +A-$A}f9sa!!U093s{kKmsqilL)M*XX;3x{z(QJj|?;p#)X4h)Hs#H}uT2-%+uMeU>pk2>-t0dz +z}5{G`R4Ec6>oMu#G%_hA>xAB^g9NcYui$%1@?Mb$KH$l-3=wo%l`dbGWJD$EIZ$tD%-5%`9}ZuHe7} +!|Mz`E;|t`%bdD}bchOHCjb^_FYqh#h0zB(1)z<-AQ-KrlN4YTO2g3dVVAt +lbyAhKSuiD&(6Y(wN5cs2tVh$fXH4j`6hEM_}Cg)pPQBYu$Cdf0 +RG7h_<44w`9nzCOKx3depY&PTtatH#^+kkUzIH$IN2-nHK?ZmJat7!a)HwQMg)-5N0d(^RxP1p^L%))d +)Rh`fHJC37>u1w!PplwLO5ddMzyPXAdNye?k2_3tiD0<8~<}?{6;-C)R6 +d%X7vyTZxlig(xE=*ABCp-;A!hc1QfPCgsxUMcF +sjdtAmFwakOeqIa*aJp>2@E*_?8;`o*IzP7Wj4fVNwR!bG>-M9ZdUk=+#CCG>XSL9!gIsKzW4Dt}6h5L) +)WJ7&pD6k?KNB63uw}7X2HGozqh$u#JVHw}h-DH&b`e6t@;4r_+$1hny$yYq&r&8-5@kwf%g?c(_~!i-i`cl8TD;Agd@x&>^bCNt=Et_wl#!&S1 +C?a!#M83#BXeT1y*;VUM%_=?ZVS>Lm?7NfDjl61z821vG$Nt&5EQm)+^BQ;u3Pk0@f)k$6$EnLg+=%w +i^x=w1&1^&=210d>`|XUllf2_pACDH;m#x|yN@@EI? +(QAclG+`lEH#}Dl=67`IF-C`RDU81l6$nMl#qGsu3r(B{CTFiY0f7@b6Q}Ab7^q!B+u%>*XI;loBbhw +Y@Sq-14Qu3vnW;T4HELOuOYA>0Z_lq0RC+ZsViTaX!qG)vMq|hr*o>8lfohdN2ouaFGQ6{a6)F&z9T7;NZSlCQ`<= +sbgWJUkW;N+TQ2-zVLpCs9B7OXwMWXz<=ha)tb=N>xIT^s5^4B}jMTXpqDEE+oCHsJz`+p6*?h%s$M! +s^Nm+UDY%=QZ*9TFvK(}M&|-ZeU?Bl$8gUoZ0a!2D$GTmRfKMsXH~-itY^xxDhY6jV-@wM?pTHG@Wz^ +{%bC&TN*L$p_*LXs^#F(o7$!|ChB{UynFQf<_bTEYy&rY=s+j=4l>n^ET0$6^w|GnF1ImT-6B?zloFU +#-xx>7x5dHt?U6lkHA3C;q40%`Cdpkydh|X2X78+w}h;!9&_DK3x5!V^MRYUp0@U5aLH7uRcCmD?d)K +JGNY_{%L_4Jj7W0lStDaR@#gzi}7K0{tr$uXr+W@R@G_q)lf>g|S-V$rXW1W@VPVk&mU=igKd>EtfeE +}bbN7JN4mpFYIBbWr-mGj3{_1Ind~esM=(BPgWj5cYSnut#tI>GEJxP?7Y2IM(_ZyLD_eX0>@)dQ&EsoM#d3IQ=olhVw +yNx6bvR@dl{RzQ9L%ZZQEQG=#hd<(nbBIJLT51^pr^!^d0P-N4C>TaDBPhTKsBrS{&o?trtykzKce34 +ts>>i&X+@}+D6b-wCAB$mD@PeXq0%R(W +pzPR_(rsYVrY;MC53N4{Xvi=x9Z0l`75fTP<5i4QPspqt);>syU9Atw&>ZXTMQ#)&+IyV1nhxJZ^EqUT5k)7UnZAN@*3ZcetSyj*L{OQ9Q1$=*N?8VgYj3NVj +~REr$7COfBt{6Yn#c4%x1@?^e^Y^07pBM^mQBhjalA+as4PU4+53~#rAH)lv_3-j>M7HuW8hS6*=o +~|S9`?aL;gmLCDwj4&XXcljWKOT&b&}SIQ;?U4Y7R1#mk=O_!5I!&%$l}0YAd67DpgcA_l*K0(g|cYp +1}S%d`{qy<^=cIX+3S2?x +{1*kTz>1=Mb$lqq5c_KWu)r0I_3`SDjT^w`bd$`$`7;CQq6e;cxSv?O>8DBi>TU8HMyO$dE3jnUvf6l +2;0gpC61XCa(@@Nhrd22@PlXV^4~}hdqW<90>4Rq0LNc=!f|)he_y(j+npy;9B>$fYW}yc(_-DZ^kRZ +CvRXFjRgIOS9{-t0R)q}w-yx$zmVlD~3OM_V?2Y5X577AvOZfOQ{?99cnEO0>mKZ#{=qAwZC0w?NZEQ +`UwV#!z*I4KPVX1L<_m&UTdJjqxV@Aq9C%i;%Tliho9EDJ1Ucr1&y-(4EZf&|+)#j+S8h%b(15zGGvu +`H;1dMt}Oe)oSTmWAFf%DBg{ur7^dK@GZuWM^KwG?oQQBQmk@fxV*QbVq5GDyf+&jSA3496d@%*F{@^ +jgH11Jc~Lg>IgAn~cPC{S^TR*7*&QI6nF?kTC17K*$*7z +mRD^xugqYF*s@2Jc9q7Q|=)|nUmc4k}LthP}MvWtE@v&DQf{&HqJ{&HrU_`0z7sIa%W=urFyuMfSh11 +39qmiCnyjz7{w*88IVgLHa*27Uco<90bRfL{iG3AFm+p8^#^c#OcH&2L^zwaT1oc@ym<TEt_Q)XUM^DjKVGUSE|66`0bjI+X38i1x9sI>)H~(&;JoOui=$ec%tnmzSznYHzz#g>}_v-P73_V`2 +_7R?-kBSR|W)J(xG2NxK9}O}6bE>hXzE(X`mdN^ls3#j@n@JAL5|S{M77{TQ8+sZ=J>j}07`=&sV+-e3}^2F-r<@w-%c^qgMc^Ltp+v&rbcH^FQcp0x>oIZAq6BNS{5)K8vjdLjI +>Q(XvyG1HgUAd(NY5y@!%qzVNZ#kt?@s?4_xt=jeY3w8VwPg$j8kqF7%Lve&^tbo1vxjw0RH11mPDV@ +bfU&DK`%CN~sv@@Vems@xY_0pcv6-Hl*IM3o`G!(VrCL|n0xlwi_*#9$zK)#^ +KyrFVjYET7}S)P>YwVWqn14tZ4x50ka6@f_mc_*a!vH?1mtjN>9wX6ygO-n#%qRc-&{dtiW3(ZSS0(; +O8Q!xY08j^rSW0)e6^Xg&~S5DB0@x8Z~*;7HxM_Foi%goA3>(F=;lLQmp| +Ml7DoMAvP>vq52@9+P;2iEL;_H(Vh*IxT^_Fj8JCbnw3S4OQ@-&f&1KWc;ej&|yv8+EVxj$0SqlcFlr +ckG^X-x76?`i?y|?jccsR^Qj){f4NmKFWIq-aAFTiuV9|$Bq%cBr{jXKbq-WnduGyfm84@cit@J9w$| +=fuGcaWF<8P$uIYh$uonk+d)eAykPu9hcOY8(-`Fhk-7M}qd$#0)!RA+Tp`HD4N=dtWJZD&GBQo`+H4Kx> +u?CxVY&*OE1ozoV?r(+1K}EU~f@T@PAg+n{JO&!gCq$RrGTU|@*bcx3!rtQE%)p8Xnv&6d?OIo@yCXE +>5*b7U(Qv4SI)Q8AMdm)U#}h&O>}Nm=)u3&Sx;skUlpwz3L0;1XC)A{3l=+b@V7CuLi6KHzO($`AfNt(AgmoAg*LdAqhugyB!xEOt_0_ZWmMB7`mvHYI@s>(v^Tn@H)01=N=n6wI;lNwB{1VqOBCfgt|$Q;s?PJG@ +verd?|mw?dSjJ!WU{2+FD}9}p0y29qWfM-OGN_vE~*K{ZNfbYPI0F~M5WtT-ev8Dx++?aM4U5zDc?|& +6&az3)^J6%hTCh?Tv0(#_MVy=R-JmN!IYemn(8#y$=%v++vsGeg%SUXto_cX{{cg6^gG?UynnmxGRTJZZyDJs>9MCm^LMC$E5E}Z@on#g&X +(SI+j)2+SMQ2gew)?mQ<7>?`8mQ_QnW%1Mk)oxYf$Xuwe#^cX1_ex2}SQx(IV^M6I#j9zMVInS<=t)SH8tDS+Wf?lGITB#D=}%t4OhzG2n4=ByHX1xjo& +akkJnn?Xu?5*uk9owyYKq`LR&t_lpOYQ7X(^y=K#6K*76kSwEQPsv)xO>ST3^g5ThYi`iYuqxXqf*T2 +X5d=9Tll`g4>2;#no^s!?$Bc_1n7bQUgw~8evWU5vuX7Idq(N^|!mQuUH?ZqDO(-feRuxCsLaA|tQ1x +6Fg?XWES`?#X>^JQ(%eptFkwq((F~}k^7$3#_DB$oYMkPW~ciIL?i#DnhPTHtaxOuI72N2Z(MHT9?0> +~ofbLOBu=2|Q{l*_dzT1@?+eo4Wl`<4YLmqpMN@tRdhP&=hvl~jjo4jf6Rw9g8q*1qjl)NV1@+ +R6SpcZV%OwgCAhNQx&x?s%U&F^=ma9eP51dT`z#z4`=3v%wh6K1)^?tC=Uu8CO)u8I#zPT)RhBwq=(p +%=@WHouXES0V*}TrISZM@bqGCD`U3pu?>dMbU!G +e!v7vtE8e;B!n({;+?PdPrwm_ed5<^LO(!~eJJ3Ym5Lcb72(s&4=41W#*!|ii1-X6OnS+Q4`|UAS*T(&_pf+VAF6fWElZ$9#ymWk1& +mf3IEZN8*&2U8dII&NDLT+p7}eB4_4WlH1Km%bo05fUCI=ZX{hvd84Dz(O$etBOLqmUUr72`O>Au}WX +ITsaWDM}JqoSo!o>LQ^d5k}yYupT2AsmPEIkFGcV;ed!I@xT7zdh;=ga34RIRerm44d3B$(G%AXN!^O +fvhn=?lX~JR0aOHrAv07ic4y$Lr73LEt$H51bQqz|%5gTZIY`Mf2`Z6q4tXgs6^jkZaeFmr&hdUGmKM +)&eeDrtah%ZE1{oQFeCNAebRn1*rij#vf22rwOznzp*8OE430ixSI(H}ZBqAt;oy$6M>xesli!()mFa +oQVd(uuGr5NW?YE!T&_{P`OX&O5O+0L6cc$Yq)A<9?Wm1(@gh&T>_U?MbePjS|%6_Lq0C;+V$%>1tTxahir1|xT)ynOf+7g| +inIu^$B*`*QvsGnDt}jFhu}*(T80=2x-5{z+qImYBYabQuw)K2SGK`c;*WlaCMl7?8bbaVWg^(alZ6_ +MN)J*?{b8+NfdgLw|2j_OpF2tAReUB)|OK~Auu(2L@(Cx8zk+L6ArTq50#KOQ#lKnIoUZE2qY+pvM=x +L({*R_8!7GjTFUum+v=Uma~eas9z=-MsKZcr{hKklu}$VGB<4-NjPM_KcTP-{f_N3J+w3yoZHTrOG9- +Qo&8O%xkko-fHl^Mv=c&r%=meYj2Ny3h)p02qktuvpPezfA-EtR1tAK6V`x{O$B{e@Bk`ZSBLVn)W!W +ic*#9!8A5Go#?T?RjWpeTft68e5Bk978k6)Z>MW#vklUoDQ?_Y-@W>6(Opwg_1kXukN7C9B32g+OK4Z4sEM|`Kjda{wMkrK#9nEdUECiMPiloDs_dB+NHbf`Vd@-5 +*rdUJ(&tBd`ru_P)JsUXyvk@P@%XB1-GDZ+Ze~4A%nTi-)IXNyyT{e;Y(bBuQ(G!0&xw>ov%>eaGiV) +O6)5-DV`~obo9B~fVM)dauG^IWu{BKuUf7J4)!3|lt9GBB5zs3B`FOG`2-TgD*?yoJm_^ns+0bql2BO2&3v!lcj`r#S%QBv3H_zMeUsjv#5^T2FC>LrDYvmov^~`)HwWo+#R9Ui6Z=$ +&_C^23SVu-Qn)w-&-pecuCj-|Ea%;@)6~nsL#^M@+)JKw?bSr=i}VYj*{}Y-DpwU6lxQzi;Cfrg8jYh +03Q;G?4))XHVxEf4Azp?{^CrJ^X{GN$M=g)o>8PT?wnnqcCb^;;Ddx?kCu||l(wLOlx+pO3|Ks`lLt;>l+boy=D=>C|DHe31MSM5nrC$t>lcFU&zAr<1XL!~{GDh0P +f1x9>Sf5vqL5|YeXS9N_Rx$kxDhUt6AJ(29Q$py!FD9oXnL!Te|;n0x|`|Ne~XI-@vsw;&cVOsy4?;& +d^BZXV4v+9i$c1gQQVdQcBw2-b5pOZ~Tw!r$M^+y~>nd?2*Vb^EKXYS4*cDbB!O%Il@h(EltH;o`%@5 +PS}w&_g9_wDB#`?zaoSXG>H=L(I@sPc<`CD2aIxSUIVUtFg*tw!1+bI$U5Hhxj +}TcKS1nCLu#!8KoL9!kYR>CvP-`7k5j##7g*o!lF4ApPRPDQn@p|rI`}b4Z@0=`+D1vIgYFoQK?29jm +y()E1a~mcL +mUe5K8S9DJkhT4bqaOlVaOdNy%^0bI~ka6wQL7xV-d5DQ=pu6X6xRlF7ls +E2#k{oEaw*L~#emlfZUvd?XAR%pj1=du*3{XQ`RLHU3Za6nH{jGdt`Aw>+}?-XZB8&aeniqyh7ZqD<DFhVHH}2zZ2G4 +LBFup3HpV#LC`O(LiO64!iwcF>F>gdRd;E#utMpD^w1&&W$1p8T*4y=))Hau3aedMgJI1TR%{ED(uLI +k>oj2vfi+%OLt(u|SO>!zA*|uBh6?L&SbGU8F8r3R5!SJ=1_-MO*2Y{|V_`ibtZ}e@m#d(hh_@rcBN^ +5YgmoIMJB4)ytlNZjHmolQ>pWODibR6vHq-57o9Xg5`UxG?0m;(JT%mMUYxEndxa7$$G&VOWF1N`p;Y +Pn~#U)O-EE#SbkvBwE!8{T!%`?)MLc6+aLZHzvR*4rRrxaxLi&I=Kpey13Mk9GNs(b$I&QUk_hXzcylpRo0+l7hxW``EjaW9Km$zV;v*g*$d?+n=z1Dmm5SZ4U>PhV`X{nCy^^WiK#!GY4?S3`O2QyZ`N6^x>s>a9hjj!Xp +&N}GqQ#|A^wXb6vz?<-N)M%}Nj^n<*dwEEimfU$r1$)E9){|LEuj{+gkBK0Ypx>c2{^bE{CTPkhYSv8 +fp=8S^`Z#v`I`)Xf_j?kjI`xDVp)`)&K8`&;2=%ll)OtA#RXPydqk(U^cN*W5@iD=Ef?Wh}6TC|B0>N +g`5WDV#GxnYnWJ+X8WS%1P6q&VT){V&7N6FcZ>?{GS{fWg>j=6Mgua3AS-QFD`> +NLiLvOoGz2X9%_AU`B4mE6rZCGQ)oso@79fUO1LC1?{pK7Fh*S?8->p!EC9{Z-CSFMxta-D>sPS(F6> +I8w;KSB0g1g8krOz`b@sC=TY<3~|?r$y<#?3FZdQ^GXW)sGZX)Izye$n{>~C{RXUCMYCuyeaCYCzW+iGK0wsCbKJR0Y+UiV0knRJpqB7qKWi{4Sb+KJ_GtCDSq*TV5 +-4$RBjmbjIYh$|ij=h5hr*qFHKWveu?|om +q4)(3hlXWuS4l_0*z$fxbz)xyGs@KY06Kt%;8qYgF~FLY?wK;96eh(NB0p98u~}e5Q= +KySEx5r2`H{uf!1;p`9Or_BQZwHDS@#CJ(m(F$_mgb1vRfRg2zk7@u#h#&X0+d=3?{J7h12dNwJv&Vcwo)iego#x{am5vq1HTu#|#02cPJs{Ut8vYFDk>(TVn7(= +uD(RGiMFW3G;|WbqZRkx9 +o^bay2kqXKoM&349i)^YPO_ZQN&kBdXYUMu2Aqc>lgnZl%}b~ib85x9W@kOH_{ZU)_7LG8heynm%=VoOw>9Wv +{rkHbpJqdIYRF&UKh%5j}-a1s(q`C)mD8n_9sk!UeV`$ZADBFx!xjNBNbQM&?@eeTrvE0g=fSPmiy +L27o8=1+q~rpP=BqFQQO2B{ovPYU$G_)dED=ZCw7wQGaA+9D00Z{ua{wl4N2nmpPE8tCY&9$7C%vj;L +fRZQ?q~z9Re8c0xI{*dc;Dc`$l*MG3Y3TiS`6X|R?c^soud`N{l~><8ho35oDe@m?z4r+MD9#rq8Peb +YR$;fO(YvYaB^W}_+K$CV_>)orY@O^ob_u(ol@sB~Ce4bVqk#%+UX${Q;7Pj;_JIyNO2OH@;GHOc%iu +5~+SZqV4djgltY>xioF!w%uQk5k*821)q*Lj$` +XBPuDmofJV@QqnZEdrloQiUWhPBFK;IL6OsiB1rLF#(OMj^dPfgkr+#UA@5kua{9OrdST_`{@Aq>x9S +Gd0P~EDOeY1IfrN~^uj@?MPx@_v{#j0CZ>-IKvd#BayBnKH#R6&>*Ox69E09Pi$dweBo1Ep0O}I3p2G +@R3CejPV9!hF3jcK~?Z`low^FAvB9p`=RT{qSaffx{mv!nbX-Cpbwue);4(b#ZKhNyVzaCcx0mD6@g?u4O8xLI{j{=42`Xw- +`g$dHWvQP+H>^aH^>=?G?Q7<~Ty}Tualfa~id|&J_m?zXZx~dhm+tdQ-5ss}ds0wpn(IvD9G$HLsHo~ +IF3SS$l8(!J7>RAV8ow+G3Ok#c%Y45|k=kt&3qUxYtE$(0{X`EcuApws?@X7kVxyk1Z1_o>W*9Ag!|6 +A2MUYsT{F^^^qS|{)`jt=uD*e2|Q}&n}p?`GwE7}5Gmr^Qv$|rVx9pCq^`rdy{;^+{ceFx7w9}A&0%P +YpwZ^?Ndn_tO!jeQ_7UHu{K2J9uhv_d`ye1B8&?rhF$dQsZvVn=HYHa#v%z%?05yNWL%snVL0^2HUU4 +?!n|@446jZHc~gEv^*n^e~1cc@g^}WmS$Cj>rP*4l<^{Ys#BjH$4fiP2&`Bspn#Fm#(skc1hvVjz|mC(qF +juMPF9+a5^s-Fcp|c^0^H(Tg0^okFGgQ+!V17tT`I2xshH +=-T}`rXN893kfu9WyHDE)a>aUaW=Qs +O%1Z50?CF|2|Yu}uBzlzMfIa-nMaIY>PsI`T9Kfg$k?4+Q91&VTPpxtpzl@$G=5q9zB^Fvfn?Sum)R~ +sXqZCuXtg*x;A`MG!UZv*d6aKO2tItYC)sXtnL3_|6-+GRHc#In`VeN%bG#$M*lx=8n;R*bpuMZKZK> +zm|Bj{5nCKp-G|%d#IMgysr3J#=MDsm?W69_q;uA@Tv{c0JiTK4!Wn~U~2?3WtBuq4lS@I37bEUm0;! +cmC?4YhRvc7AnmvV|2Ij$7C^oq(UdMd#*O<1SSzdGdLv1U(%*>3jI=5ImHJ^R +w$ALO)oF;(9}hmy~LZAjm>GfMv7|6>CYKN!_hWr@E0_Em?BkKylC(z8iu7vv2deF>gY3KH)sc?>WLVw +!*YU&iC}l>TP#*4op9=;-F6RFtq?YHiAq=<(ycxh9cZGl@Nylqh46UovJS4!|Et!3_`=1O8W6W!ypje)p)pa`fLKY4Bwe%#4H_2}4H`e%JmZv@c{oz|x~j+U#3mgbadC={j(tK$2ZH~>nh|N9;{45;5gktnBStBz5l1Mh5pPmd +BlcHRBlZ$%I)rvB$5TS_Q-x4&Br8XJ?h7&0ZCyFy#S74wN +O*N0lgcSToW5yX^l1QT53jAlmxb-AQ2kM{xH>u7yja<8u5vX%~c~Jr>j?uDB39(dQC4^jricj->Mo>B +zGm%h-!deSBHS8nzXiWj;!6wQb~{eI1eXovqs&4>?Pyn<%LJAMW +Rt!PHX$gefch{2oN(u|0FnrlYv)gtjLX-0&WL!lW_C__{=BSLAZ(2N-G=cO4DuF#BF-V)O$&4{;eLe@ +y@a?Oa3UTmouF=kU+nh^z2mz7#JYnyuEbBxiq?+X4wzWl2Q)1qI7u+0{(g8lxxX0dEI+U$WdR%*4pSlyoM&iaP;(V;oxQGpx +d+c4*+YW5)lBMcw%zqEGt!j}nn@)u8!<}o%nEkz)Egvw%J*>x-jrTpJ>}+|?n$(0twd=4vA8gu%-$OD +f;re^RNq5jZ$9+hgXsH-0W*M$pWnM_Lg2Z83$JaEsO_rWbYcaR&+3eb;PvzaiPV+J6^yBXCQuV^7D+? +CNryvE&%_oD$T+@$B0|=RFq;WFMb99FL9jD$Q8&x0$-GkjYNjhgVj(~J@#0Tp3M2l;4+@0w~TM^xryv +PXx+!d{JWN4XFGp9OBf4Xu?3NA9jb-=~0osMsctE2$iC}qoemcCd+5FLac1AfBsW5Q1|e&*q)u)>KhF +3x_i>?7MK*G`%R+4OE-VmQRFh!2XhpL2YpxAk=GjQG6j2Opcx*}WoOn_zEn9QU>Pmv@hjv;Q({Mz!lm +{pXJAps>Rcl~Y}Z9pAuD6P;lHrOJ&sl#=#Vd&6xt)2VcF+w*Q?iDNcl?~AHGqG<;^O>cvYXYHMh7nXF +C_on+egCi>4f0AE(9Xh^>V}QD(i)765eE*puzW=0hdoVV39*E+4yBaBfqibuXETaCKkn`Y>#--7nW?hPy*VW!XOcLzNY=Ow+WHPUuB(hop%+VRpW*o;nS3`Rli7mqDw`4fqD +vU1*0Pk562?!~77Zs==rJ2-0bKch}0YD$UhEGx!5#+?E&_U~A{7(wZER%wC^r%GD-Ierts~0UXdTJ7? +GBwv+ttMhnBi`fg#DlBKF)|dub$9&nDrr+rDfg)MZ5418ot;- +L|39r!@82Bs9*Pc^%`O?VXawyJgGgwDpdpIxbC|uQt>)sn|rRQ7PCuA?@2u;?Vg_qRw1ba}=~p(oS@CBJ?Bu?PrD57^inkf( ++88DLQ)!)~INdj!-M6CX8&9ter4l;Zy%r#Y7+D9{t)fN-;`K12<|X=W3NS!sIltaFl^ur#DsvzV7Voy +j_dp878Os8E%KhBi)-wi4eY3<5YYjDr>?nDUG&iclz}vaW*B;l~lK8de_ovnqKxB#3eD;G&`-*&m5#^ +IQEUGG_`tcMJo=jzs@Nx1(JTK$0dN0IM?i)ehN!=GjSgtn(&A9P_@|aJ=}? +Rp4+0a$8kkaSnc({=*xE#KE*l`Om|^Z_FL$}QgTUB%o7_bx)q8=)kfT+DLLkOt}$CS55iUm*lf%|kxM +rX&Kgm}DdTsxFV-5*TD7ifw~uRgvfv_}bn$ETd!TLPL&$xZfAL{z?gv~rWzm2jxcdwDDK_FNdIg0%oL +u-^T#qGnp?n>q{p=m2bLr|Se#eKL8om1+lM+`CLX +}FckK_31Sski9mn#mIOyjucV#?vd?zxz<=3V)w)__!L7%pmUx|q_zJQq{?C>K+Pz3-eva|iWi%GmFe& +m@iRNy^2JQKFOo4L4JEOTmtTDbjm&O)NswVaj)oF3TD0?uD=LjmXY*K{(B6l=h!g^TidF9X!S64scZq +H39NfUOv*XVhmB!T)V}fQeTGCQ?5gfuZydG2(Ve){uPhNBg+DRf=M*8EJ&r1Wx-sGECUE8W3ZWq!Dc! ++6=cz1vml=an*~c~uvxIOkUSP*09t?n=u!+oiwi5n*^!DJ_)V~HD%)p^C-Q&5)mGPe=T{t1u_UOXI4H +q>+VQpC7UHVHRaG5b*E+AOSfZ^c*2de<;@g9-tsQptPM8>Pub(kDeNOe8SRM&G81~*2*G@ISwdL1|09 +8`6B;xF6XV&18p|s``(dp`Pua(x4b>=z0C#X}V>3FUtyBlMsTwiI0S(GZ-ZeOYDw-TFmx=EX7dD#2>1 +Z6W%vyC~kn=W;o;)r^YlD=g3lW^(hM!Z09$VXzSS{UY87%1wdkerDXAE|8L;K-{Y-BThykDQ|uUlXHK +(;z>(yhtO=LQSqus`NmlM>&YCH~FQeNe@p^hhex5IZ)P3z|G=LH|5~F*uS3QN($<*&z1yHvm$U?^eeZ +$X28DM0qsw$39t=pUuo;-*sXEw(Tw@t>Obb&r9M92joCxCYO?JfbKKqmcZ?m1*f-|5tsPdBxz(rsGgs +9tjI_iC4qy7uCYnvzgWIE2pnzc$=&x2w!4`;bMFGjO@`k2ezvAe5Vn|Sjy*RyXZ-=YN>c8F@#8T?NR* +qd}hII9nZD0Eyo<&}~{}xK)|Hh-eR>Q6#2qCzcAdz4$!4iUX1kVw?P4E$cM4-J+!+H=5CKyYQOfZk2k +f4NM9l_HC+X*K0)Ue?MAq4FSf`iFU5Ka(BFpt1Wu#Vsbf=Yse1jh;L2z1>kEWvn!83dUGR)UoT_Y?e$ +;B|ss1fLLmLr_a_i9pvw!+H`7CKyjJjbI*um0%6Qp9!8M_!~hb!BK)bg7(*In1NsnK?1=%f;$Mx2_7V +Pn&35py#&Vy8VIK11Qk8CMDtOC#_Kefm9w+2iG4N0#8S4K*keacEd4=~$FK4`6C2adbXgqr@#*;Ed|? +tK5ggZ38BssnK&+oUG@31-zany<&Ze;m>?Sta%RY>aWQoiy(wWXCv3M54CbL-K5=Vby*kbw{L-C75m` +vqwFf&kI@}I%uvRwIN!hNW4AF8-8mMpMiELt&RnT0U3Q2O)f*DBm5u>!WFh1+BbWg~ahC56mFa`6sDl +M}X(porY@B#=E%$rtu~3Mc1XNa1tH4>)F!eF5}pP+3?gEh~kDn;I{J;x)O*_^LRnc&YfPIH-B6`O5h$ +_vEeStLCZZgLE<|Jv;ejDlrfS*fzaSBWw|($jdE_(#aGQHn~otP~PuJgmb=EoD_kZ_j`t*Mb1ynM@?H +zPfbUSj}LHT7B3!CB$y+Up23DBdJM2Er-vma4b99Px?E(EOw}Gu5NlarSv=n&DtA)B5|4fI0$TyBDV9 +Q;>KJWbXfLv%L(dawB-rysMMf7|b3`3xSQm);v&^^JGpur$jC^6Ge2_lUMVd$p=^zb?w;X98KH?${OU +ba=t(h4jjS1EqVVjn1w-zaGX_m}Lg#k8lVBe|9Uis;R_1W@>Q}>}EEEI +4Y6;M1FZi6RZ{s%oK|)H6zb1>=V80(Rq0V3)D8R@$uFA`3LCQweJwvv6DWi^EF+%cDwev;O;%H@7e2y +-iAJX`-Su$Ffeq`jbVdt8ZtC|*v%2cM~oabI&zG0Y}75|Owr?GV$BmK#>FSxnwT_ca`Kd^DbuE>rp=g +n+pO7h=BCffn7<&?lC>~9CwEca;{1Zb+pR@5`;w*0mf!KGJ6EhMW-$d;^RgUUvbA7=1+~AJcx?gkhLy +O)LX>4v3qbu?1)tc6rxugDL9|w@2xkyrVPxMFl1h`<#8!OJCMOe5MvD-w`A;SJ7E +YxdAzW^vFwumKEIS}W3_`LPgygUYnTFgF$p&gNg1PB#hKP?nIXkQD|NN-}=|y;<2HQF`Ej1srev +SRUM1QxpJBhkSC`kf#jCtyD4l6ay;wayatRlRQbSw%cko3^I>J44s5q(R)*1zwE#luyV+u9CUDW7&r4 ++AJ3Md2Mr>5nd-l*SMe@g|0S8ivmTx77B9zt7>m4OeHTz}76oIuJr^kckb+ADH@2Q`b3Ot#g<{lYQ)G+EGp)&b?{r4} +N;-=bDVHN!oK>Wn>5&18el`8y!!ONq$`s|Dp`@;++tdzGrUil@LWLa77JZIEjCd{0xZ(2l817X+SC1b +;$UKNTTP)sf&F~BNs-LS*7o%N_&D9i(F5};DFL|9M>OgKia*tC;?>Qo-LG(_A!o@1yRV?HZBC|8x8%^vQxRcoh?qot0?GqPFtUH;>WcDEQ_%9}QJ(-1MVz;${%p +2f--o$#78B8WdH!n7rSRXPg&zXq-C>=5}b}S|H4&*~7^mfc66JHcfWG0EWVHN!}`d`qNDrCPZ6=GNz{ +TZm_nvbj!$%YwB)BL5qQVv7JA7f+1{G))%6rmO?eXkrFX)O|^xs-lyQR=374rWh_=p)ijZkE~@L35~> +F@Y-wi8Mm2Tt=Vk$!!shB(m_DO=;RpzIyNdiJS{nZ3e|urW4d|S^XOr0S>ZB +zbQFRGFrAJJ9sLF9*nb{8hRgm!J%5+`UH%tGHFKrE(pLVOhgjwHr@6{M@A#{|{(P?TPmOE%pDzCY1<& +Pmn*HC+0h*@2t9_brfTros=PLi2IN)FX`!)LU*OmUf-@N^WaZxh`uUBnF-tYp<{M`_tzcb +7ZYxYkyzyJ!7|Ki_-bU+#b4!G|7xP8z5L3nTVLDu`WtV)_ +4Yg4cT`sGtlstR?mc_=z4!k94?a9_@X$wxKmNxjpC0+_=;z12`0}gcUw`xMiId-bFV+0uKK0KZPuHIL +>1^H4=jt2I|8k-6;wAnsFHE$(@NiWN6aUln|4--tZ(kT{+y8$>`9qg+2SpSc!_pLTM3Vwb{1i@Ii(mXn`Zur$S%VaqAVhx_y*i*@q+T+0Gme12 +Aeb+PbBlj9_26xpH|*m9Owk_!s$g~CmKmy=;hlw!t0%lLw2X>2-65i5-?*BJ5mmz3O9vZ{mzV!n5k+_ +k!-tDhf@#LCLbsNllGOOi{@I1uQEpTv}MzY#fF!2 +a^c!Z2>z6Cnz(VJl1^OPhO+QBOiHwn=O1Xe(X=Xm14YmS9L7^qzU|D8aV7Fz=&%+||^n6(0mqmqS$jCQj6jGo}3XfG|D!d_HVXT&nOhcBnU@?U +j(OJJf_+}AJ)WlJF&LER9qf(9u1@jFHC<^MxkR^~1ZaGa=XSm&Nu`bWaU)Yv^k;P{7@@9)O7U8wXmPr +)n;7Ood%U%8)5KFZ)MiLK$)G|gqu89SRmGzikQ4Ys?Nv;QcdO2`#`1E^2FDn1q +JywYeAkNJ0m|c&tkodzNWfbXt7aM<=6}h3NkH*f-FO!x{f?V%+=*@HA6+7Rx;;{oQEniR6OQoh15{w) +a2Twv=%R>oDEdN$d$@);1J@6fv^>2TjpnwV_r_ag?K2hsMR!t5jGEU9y4_x2qxvCEZ=O_ZNRPd&-K2{(C@am +`W|RLkujJ))m*&{A!7oL&46B#()n(^ZXM$EGOeK#BPbs<#F0BhgSH^y3mfwEi!~!mXO5B$ud|L7uuE&x^h1AiKP^#$- +sA<45|W^VMQS8 +Z!lfaKcn}R{X+*`*?-E7SN6{wdS(BDVa@&bw(uVwVe-&ec(bX^bjFRmay~DQy0U-W=;rF$u^XVB^j(_9q=Ke=o_)nkHRCbwO_LkwUOK9))5^Jh%#$7kC1Pkzh9roGkNzhyZ^y>sPydvp7h@qgyMEB +lwce`WgCe`aD^x@tUSy&rpIYKh;wHMs=_YgpnL*6Q=0eM#y|gJ74 +5*VcY}sk-c6#%k!O*Bzp4G4|ECwTHi#h=!Nr|v=Vz}rPgRx(^>csOba(weLb}fr8D#}@y +ucR=opeb=SS2IB*pv;6Q^{;>_P>-P@hi9ikS08dsD#*0wStiifW>Ustgni0)3P$U#;=Rx}$)0D+8Nb| +SnO2aNlWB>`&akotNGAou5_=({rLi)&Orz0&ToCLp3ca3`sBg@aV`a)jGv?!?%M(XUO2o_mENB +3p)0P)n*iG<_DabD>$g{-Qta)-MD@zjYcB_>JCb2nI%8JGkX;{IJ$tx(bD2d%_o;t~#NPTr?ULIpE1~ +jMAuw#iRh!h&Eq%pH5#b%}dc#1tngrKUPFRGcP#3iOhC&!EE2Yliz8HHlY3VUDJWI0CLn;M_%cZG0e(MvTPpD_)<=oMdi0J&xl){|+m;yWHcUOz +n5zP*Z(rMl%7z@@;wdGCEr$K5a`#^+{d4*=SB86mxW~V7v!jcMhktH)epC+6bdNStrb|->V_iV(Cj!9 +;06v}n7ISKamR4%E6d8TLw)Hc|=+G(EsM0;TO>@(VnH_r~F-FOp~9Ng4uWNxCGDne~|@$S1`Y68p^ZSE@PFKwJCWPOCh_-H!&uO3RLh6VNvNjm2wh^u +`Hwpt6IG*Lj&~9O_MS?9toeLLOQhK!Ma>7A*khc_EVewv;vPjV9&^MBiUjVm7BjnCWErRS4e}L1&b8A +sxId$DxT$n|CblpEQ_b*P(DSXt&@%2qeu@pq_J_ni3J(NQS+@CqGf+1cxI|auEd9Bu9M{g)%Xiu??ec +dOqymwp1mj=iH)~sWzoo<`b^>r1(O2n1PgY*S=4ru$%u&yGprU*Ij5m)y~-;!!NW%?PIS7u1v!TIVg_7x_bbV*WGoB*-kOrD}Eik{H|5v!qhA21}SdXA99TXaPOnIk +5JyDmG>CsJz0q}RdG*I%rqtanM&Syiu+>5#8+(WBgdW+tAeY)623&id6ixh&K&`}aOUZ9cNUq0Q&tj@p0A)Aq+q*}v_NZU3`)|B=uCbskWj|JPX +|gvJLxTHR(6$n#b&U)@J>e)=of-1wAiu6q2qxXaeGvP76$D16nXqniwEB)jU8Y?>5v>s5x2R?OEZ{DC +J=JlTVtd{TOHR@>>X+$d~Qr~{dDbna0DOFx=>^ybUMA3pNs@$-xgTPerH`W0k;+|MQ!OJE`xOE8*XI6 +*i;D1m_>m>`gV5j519*eL>u-~_>Of@1_n2tFn_NU)z^FTpN?N`kiuUM1K<@C3nwO8E5z1SJG{1epZ038oPw62uaWB^XXH +m>`6pCqY+&K!V1fC{2Q61P6bT!|x*Vb%HGf_Yss56cWrPm`0FDFq$BUpz(}J;CrR<<-hWT42u3k-!<% +VTyfQy`fSlevvB`t_F_OZ3#GX0Z;WPKd0z09?IrEmzw~HYn7`G%E&tydzAgX%JpcOhYx~T6T0FkWqsB +MU$Tge*{P-O4ox$(k?%wGSKViBmP@f?RgcGla8h;&%m1j7GA8c$J&~`LR+TMKBaz3ekPw+gq`uYDM1^ +s{g(JH@SoN$_sbRu&ZnHZ$4Clhn8E%G$QD|~>ct4eZ5Jslwv@oUM1zfQwSFkdr}iAowxCgx**agKB(^xzN}% +ldF3C<4;`}EUK*`- +UDnEJ_41f~~Uo=Owid-j(EGX0*VOAm#shqRJ$dh;cOAW)rnvOJbSd7Y1N +-;y7w_nr8E%(3%^S0X|I#~ab*CsY->tkaJ)mnq{H&}-`Mnt7_aDg0IlWjA+D+<$;VtVMC@8lQc5*l0O`cyIXNz~;U$>=$7HVX~lV12jrF?|9?dfMNn(!ZZZF1OWtkg5Df_9;ER4ukrct;lo){QW8r^Nn +v-~aYr*AU%!4md+xdC*sHI;DtP>pPd;HMPoDJfc_EfH;cE0Sf5lazYuIL^)k~#i@V){wypkjD?4Xv#6*j79Ab +U;^X5**-e=;g{7vZvY9hyvN?0+u$7q;*usSiS#EAFTfBHNvs$e}eymurf^D>qW6$3a#a>xyWR8Vqwsu +hryRRUcJz_Pnw^of||5Xyt9$qz{ZF{hg?Y`$$c5u@o7P_6Y!8oTOlzs8V7wq)OBkb@`oPGWE*Mcu< +YHC>B=^xm)=Q*pbt!4G~^@3OM_zb1~BAGFNVj3NF+U<#NI#6TpL=D)$uVGPq7@NhXu;u)A_8{NDw(^( +Q$NZ2gPgz%r-OMDgNImekH~Kh~l5{ia&tjn<)Nm6yHYi*HQduDgI +81e~98Aq4-}?{BJ3K4aGlA@y~h1A3A{gH=05f(lma(jr#F*G`D}2`rB%1gdcTg{KzoIznH@KiQ5_fVF +Tl}FEM`3D}Gms-=62yBNRy +QN}mC%=k-t89(%uS9}A-A4%~ODgJzlzl`FqqxhRC{woxJJH_8a@hQ&@$0+_uieKxAKbTUul~Tx|6z-- +Jo}v_XQ3_vE3bma%`)L?wbyGMycROeG8#p`v5@#0oZ>%3@t>ynuTu +P-6#oFlKSuH0Uh#EG33Q|Q*HipH6n_B4A58IYq4+Z>{_PZhEyaJD;_smNN4?@Vf70d0+bJeyeDwHe@t +uGr-Wb|Hq;KB=6Ft7s;}hcJV`CFy#*K@PO}{C0;K2SN6DRglQ;3ZxZ~BiXOKfa<*dPR$IMJZ^CnUv~6 +UI^U=9uVl@kyrWgy@*q7>W=|TZK{^=wA(@jIol))tOzhS}zfkID@e~jKwKe|)6IUzQQN_j$WK}4?!3VVzj6CHiCu +ih_wTzXP^QoLEgGD+pG_?Y42V}@!q?I$T7D69Bb&x%icdgRcccK#Yo=QzR;C?+M0BSvcSj~+E5JffYi +?wWY=j2Tb7JbZXeOp||l`uOO{#!dl#Bgq<*j@090oAOVOL6FJDjy?e<_{WSRc1>VS{wN<}FjI%lohGN +pB#ko?uQBGGzWl@mb&gDmrgDt;@<#fx!kgSjMZ_56n|sUrL+Qs7BgUIYjA`NRl|B_seDs(W-YlW{lhn +eS^UC4|eaX1vG?1wLW5#pEtw5_|xe_+6#dz+@;}mr~H+AY%F&@l`+<3_f5^JXztc;%H>#CY({H{TRvg@05&!ycjW# +)~vo*tKgH`|!gL#n|A)H(#-DzWIioIB|lx-EMa3)G7AUnbTry@bk|Nur`A_IE#=pjCVbr-9tJ%alW9Xb@6rh6EA^a$?J=f> +VaojTn>eAc~hX#f5L`w#6Lq#x9g-h1@vH*g?@?Hts5XxPv&*0b-8p+kGMAKIA$bn4jghMs-;hYsz~KJ +*5~!C(lzai~rg7)o&lUDK&!kKpTW9NIyrYv0b#FL01v-$U!)wSBYFGcA^@05R7&#nXeg$*4VhU;P|{~N=?Lc+rOgbDh3(t~fYefr2>{EGFA +jm09KuL5l?`fI$xAUrl)^p@9$i0#=t5yWssIeQh4x;4b#3;dK^|2v-F^T`AFVk<_s-o1OHPyskjIiOv +;b|hJZPGTx4p@M`Yh1kxamiQm__$uiJUS)WcE4oLpzv1!6A5Wux=dIJHPk;C0k3W7-ea|=l{O3PUlKE +9#UEOJ#m!3Fw?AS|t_Uv(KG@7unW5*6vXbM)+!PXX(!*3}+)HOQhYX%G$(2q=%Ri~?r8$4^)tZ^ghA^ +Y{8e){P>G>_&xcI@EafB!wF{*-_6$tPH#;$MCB6{q<(hdQeEaRUUr}D?5sv7*m) +hG1!eJfa{#N{HJcYbG0Q^+|4Jx2cQ~>@e9jaZ0mb9oqID3HV+ymb3fZv0Eb#?Vxs>i;>6Q!VG=gyr1f +AGiAqen#@eEs#;;vG1mO;8&a=HbJK1)y!9K47BW&~^~#{rBG&_@fS~{d3gArAwE%_e1X&$h{H%)P`^V +E%={1caBpxB=~>y=+Ohf#{l5}!3Q7kx88b-Q=M}fGmAEi@<)B_+qX{uaNoOkuV^brjvNto&;S_#enUG +!9Rau3e&pP8l=E>Paz1dz?RalJlR>ojXizrRQ(KfBW|B8$v=tM$j039mz}7hoA +xYqRdgQpa*pU++j!EfBEH?0$@j(qr8DH_yDv3ZlM8hu5ZzLK9yu +*3lH#uK-jPu6E#z%h({v_)?0Q^-@>q3R!(@xM1z%OZEaz610=Q01F@&^r62P5C-{AQvd|5MJ-HFBPHi +1YC6o=+23g@1j0J$QL-L_|bi;)PPsK=p7LEx-kQ1RPtV1Lck~M;(E0!2giDG-neCO(y(r{amJD{KuT% +Lb#408b%P`6dsZB&pFI_$lG$8xLW+F&)};32me!l!~reqMCEgoE9wG#1>R8UKpO|2f$z~SR1@t2Ps-P +vPa+x;i2o;iD$@{kkn_k7WE#S$EezhtdFYPcjz7ub4gLG~A3^o74($xGr8PRh>uvED${+sd7Z49}#`{ +SG&n&%9`!)@Vz{``4P{Y*0e4JxQ~v{omr(Q)Cz1%Bv_$M{osCh&)EAII-6Fb +O1X`;PPJ-*P_XIOj>A;WMQ@6VHrQ+w(rTJwql9*e#}U6XH{$X_wC!)!~fLBqo2R5KG1&AAEcFle`!FPi<`-#zSaxDjg~6=4e3O~tnY~iulAgvwCCuHNf!sfu(C@8Q<&wak#`kMSj2O|E#wex0A94{Ucm_0J%%jo*H}tjYxD0;iZ!u=T^JYmTe{E$Xe~D=LFQQ=! +(eU;|1-$Nb%~c7T8lrPC)yZhJJu733f!kZhAM!%w|1o363_x9|fc6T!fg5mFX@TsAyvMu-auae&Lndvs-@+fW-ohU&9LMj=H}QM&qPdG`xQl35O*E_^8t}9nW6V9=y8HqD#0!G|iLXmR%UyTf +#b0>g1wqf%(4o?TxYD6l_|DQ%ypm{mi)aw-nP`AaQrq(rB$FPsj^hs$n)tm$!#bj24bf0We6-3U?!^) +^DcWm{@rt{3`49Y6{x=$p1AqhYD=#ni(9n{OE75ZCVk7^$>S6xw+8DmWF`B=nwC9(-+Vf_GhDQ_{{!D +zdZc#LM=EyYQ5n~MMpA!il`(E_F@3YIF?x=I>e>Y5-G9@8DKmR@8iuQ;$uyW-}L4!Ac{aT&CM4M_k$7 +=2Qbl2ZJV+^$C3Z*@_c&<490sg4_xVSjf1Aq3}XT{hHV;QH@$(Jly;-TS6bX=)U@IWTLy7DU8GttnBo +N4Rnj&fSReti|mPCjtpK%SnS&YybfDUN=*sHlkBY&O1j?OM^Uzxd({A$KqqYK<1)jlKc03S%LRM=>A3 +gZ6yjX*+NHh2|TZmU!B;I>vZNY0vAaE&Lk(Z@>Mvp2j-URQzwc>86ocSy}m+nVD{qqoN+3eDX;?dGch +Ql9IwJDk}K>_utR&yYD`M59as47c`(RKtG|p?HM +xZ;bloc|5xWJGH +D@(}swzeE}R*7YAmrndV;VPWA{fBMs(E&{}V55T(xS|$7rVs2?_kpJMR?r02+Y*`0?ZUj2Sb8JL&*5r~n$&c` +xQ-7+-_$fhSDx5NPw}EsUuUo@B|NLqbAEzWVB`_h1h3d+-Nu0>DdHZ-yK2!kV+)ZWrx0CMJfPOeQ{L$ +PiHv@JF1MbhO4>YTHmv@Dbzz_zLnEb*HXx5Kj2qcD3Ix1pY+#+L0qi_N6i`MSFhdop%HcC?BjFQu`1z +WMpLU#Kc6wTbnm;7WkvAQRc7%Z?pr*AGl*|3jV=Z8|?sX0Br*4LIxA=mnfam;NV~r)%%mXcI}dw{LLr +eYVk+D-s2y&TmhIb0w1bdPGbw~Di-a5>YEe42_8Tng)&y-sOyQ4qbO6z|Ce8Wng8u?e-nM+-~ax15f5 +ceNa=V+!-#xDO`;8dCVf+L6PwjCX-qGG*0vFUb+AQ&@7)vZ(yjaLqYU`qZgRB96t9 +*!dfOd&G0iU1_Ad|hvL$D)V)Dh|f{W;N#lZud=epiXR2Y+u~_2yx3-Ue=<3p|9jaQEGJbCOx2pZ0!$n ++k{nIRjaQ2mFIM5dgS@uE!sL9BYhE`1ttzR@^=KtK)wv?^4j9%Ei{`KzTz3QQs}*3E(O8wXLk_3;aKFpwb-?%FC6qbZ(1X~_|J%#G8UEh<4;j(2k8Mc{Osuibo;{mC@W2CtzrD*{1%v}Hf!FblJ^;9@-$!U +%``EvLyTIRj{!4w&I`Ad>Akd+%_d|X_)}cT0rUPaB+H0@zhaY}e@Uz;60iau5o5#2b@8B8r`vJ+!XMB +Bq{}tRl_xHwJ*W{)PI+%^RFw>qO +N(W-|tX2a6>()-{eqdkVW{GfNxNs1-Mflzemno5r6OXA9XHur8>d*9^)UpbRU+wV+~}oa-xHvKAG^X>5$k;f`v}gpm@ncTUsPJI2e$PfuV5PchEt!PV6j-H(0D(VWIncGW7`?V+})TLpC +auq8aQ9_4d-#6$luto7L0ESH&=5$`$Nt@`AOh%B^*F&Pd`7uQ8c%^o!WE*UEOP?8C#Y!P%dd|CJ@_zj;?9zS{kF9gN|yc0QX;5 +*3417o{V`-lN31}&m^p-&LsBhE#;@S{PKAm)MJ6kmXsJ@#o7?*mr$+Nn#WE-or3tMP+qKYs2*^*Ilq3 +GCPL|Jxr~I3iu-F(<@wfLX^QksimQxM|wqDDE4~ABg8i;6uO}Ii26Xm?xXSrcnHvNq%m6{5%YdKYU>H +1@`ClDTN{jhI}w`@pSAs?Lqsn;}q`~m6wx +>*2{+8Cvu6%=OT|7-#)Nc;Kz?vLWH_XBN%&v8Zp-iDki@CD?A*Gw+CB4&8(yGW#z`r_`2Vr +`HK;GOa9!><@LXi(9xVZ-{wW3T7~@+P1K3i9i~nqH0JeZZNJ4+TF0V*<7@B8D#w$&MZ`J)JN5Aoy|T1 +?;KHJ_fAc6`;9bCqkkdqNJm5#<#euH?n-CaRto`y{4~Vwf$MK`PG&Y8l4U6>wMerlF+l`I`UtcW$L3{=|gwG$3v&3U}pwp +Ewqdjjf7Z?k$x{=g}p)ss6uKYy*q5ZLA$7ar$F(Vz=5d3lUBZ#Ymd4uQ&XaRkM-%xlAKy-TR-dnwQk+I3(38R17Yid%K%#bJ&j!1AOTlF2$^GT{}C +dKE+rRXagS1L_{96#!SZwGoKmkS<5E*-cA3mey=^6>W?5(I)iIh!G?Dpg!c}Ve_G +LfGu?I-d$kKkPBRk0vZH4UiizvRN%MMGfevhZJ%$ydJZc-Cjom@T3RY}1Lmp*c}0vDXpQHFPTsR;&w^ +jrwrC&ikggH>|5E)3eBc!;Rz#*xpDuF6(2dAB1(@QmY+JOCb^`kgUc&PRJ~(7Az$MWK@E9--{rnXk>6Gv_PPQ77ilpa0x~1q&|HJ4=@?JxO&GFJ8P@d{5WZ +nmc!H@~m02Hop4mt71F@8-{Tvncf$FKk&58n>QoR`aRWgi1_a;AX;ll;~OdwOxWj+2KjhWz|?k2Y;wCy7QSb_~kTadLNCW`k3Gml4O;I&`;#0-B)#~SD+$PxM)yx* +~N{k+Je;;3(!9gCe1KO%lbtbkZWrdVkT^$S=lVsi8y{Ev2D8JaA7oHG=IO+6c}1F<+_FT{R``w(|p6n +Dahflq~gLvNuVhJnAh>cxJdj`;G~_tBgV@(768KtGHVY)~)<_4Q}(7ycIfJ@|U?HR0`+V_r-T^ +t`dHKdG>jq8xOl0^dq|<^cFBV%pVABDawkWUgX%JJ%XNyp`OVX?VkrU)_*@td=+pSV;4^G_JpbeRVEltQNvI2U679ntAx= +Qu(92}|hsECyJ&k^&9?$|<5uOP)8~G&Mi#Qv$d&`zB7u}08w9eARhIB|ZV~6xJM{rG@*l{DiuOZcu5) +vAU)t;~dTMeviEdIj!Yu8CwuNW%_VD+_{5>_|HUs!vsmL$tj?Sz%rYR9fj5bLg8AGVf^`QT;%V(ODEcV^(LFbOr1N0eXL#>lPM%TfsAryFU_G8ami~dzlxaNvpr%7c}X>6y*2k49)B9rN_ +T&b9@xmR2xOBNlBj*yfk5~mN6X{;gLN7oceB~m6`KZtr0-CZ6fP3$6H65DSwrP>~b2~rm+EIy$;A^o1 +}3ffK*J5XkeK9z{w=!@yjtEuyTv6EyreOq>ZuS*nFsux#(y0|(VSFa+q5r-_!A@Q9|V^u@Yp-fy~B=$ +AE@PuWt-ByF$EBi=y()B6yxwp6ylqn&a;3;}j56dL!65nCh_WPt3bp9puvP9n=iPe)I>s#=AMVIYkJM +3C5rHXw%dr|$_bj8(=83LbrKe@j;H7`ZWB*BmARA1>OI1EX6xEr16SMX6-?06YJ?)7R_)#91qa86-X! +JveJg#|@nw`u>j=xystK=zVl&I48S*X@1$D*x&R`X->cX)JjgT)YAL``2{(>bHe9;jQ{z5vFRjrBqe7 ++PC-He{&$;ZhLej16!*<3ZJN+OKQS9ysJKmYGYi5wO+DWBGB;mnyzS*%=WQ?QD{p)Lq3LhlHlU}MnwX +lHl$6}DeMSa-fb(>OXkK4VlpmAJsZqwo2QeZP#{bhq +WKIwxMw$SMR6q)c?!iMhD|zBikr2N{z9`WMh%B%vfc7V4N@-nXSxw%~Er`IoVugzGdz;_nU{zde$GTy +R4R$Y1peYl0g=^1a7ZXsNSHp)e^Nwv|d_~_JX!e+ov7WYKGKMBYmOOiEU-?vXks9_LM!vK4_n|cRBxbjykvU#{3@Mia* +RdQ%`#HZ`=Z}fj`urYGfGsMt@_x@u@Mvx|OA|?yNtX!FIB5Sgt+Re%YRHudp}R|7*W*e`p`I+d3h~a|RM+M +ml4hh*O*2z;EKW@jG}k-jb`F@pimD(JP%l!E=dbPx9gXSzgJf@Oiw7ujX&@xA{)KkAKe3@ax<+ywhGo +zpekAzuN!1f7lmFMeLJ&yWCvvBxlPd@_);tAY;{4>8@ldIZD1#NVW7=MiOoIDF>8Klqc17>fcm9lo}cnnjD +%PS{_;#dNcG@sD^%n-b`sco@oBf-)w&b*N7C4)nT~2*&^F$iSG~R>f@FHHu%lT+Nkx%B+`73-mU(dJl9YmpT_-|az4 +ZDNfx$Z0Oa`!FwL${_^?#=QR6XzZCG@tp8_?`W3ewLr_7yASJA^u2ztY7KB?9cXJ^;i09{SE$R;*TBv +Zldld{yEUMr&u?ac%{A!er+r_lUvBL?8`~=gL0Z2mIuj`7nE*70M4vZS{8bPPMset4V6Inxhu +0�B^Vs*8;L48-yl1L8F=3(rjmrGAEhqNpin1Z?ztnC-WI3vG4F*d_VERP41uE`9#I*iQnGA(k=pfmK9UEU+qScd +8f80^n{+LH#S-tbEt14%?V~3tH7FJZM7tOyWQ6r?JRe0YINwlgt6;470)tv$1SBTgT72ra#zU;BUuxR7%niI;~I|hY~`~Ld`?1LNYn=Rw!H +NMn_|V@tsl6OferdGfBghn^Vm9P3W;dv+Yc>>)Q_z1$x^3>>)NMp6bFMr)SUQyZHzFEN|@Qxn=GMw}S +X*nY-8h+O6d^^ltYOyjETpue&GBitZm%UmhcWDc4o*QJ9jVJVE+mqw;)cHOW*XUDtg*U4K%ap+96~nB +C1{(z3J7g=S;xDbl00SrgWr<+E{Y0oz7=uG&x9tsK>{oDNQ!^9;%OZ@ovoQ{E;YYmC++zO&`-@>lXl# +22;o+w>OtBYLJD)}PTQ>#yjq>+k9Z_0xJyqmglsv6!UmtoglJ)2eGVuo_y->OrzK(yFk=S(Vlc*2~s3 +YnFA)I%S=;zOl|(S*(!wV`vuZ!n$yQAar!$WoC;^ +W^PDq>B=hfrgIbbQ_Tl~b0Fuk6Npqd%-*Jg(IN4oDR9xfU?X~nm-hE!K*VilYMv*Mm_8a=Q`gi*+eeN +gu50Xqi=J)dZ_+@^%U*V7UU-D=9OGy5(kadP|2LDr@q0Cp7ke#Tb-mE^TW~ryuRPBs*bEu}?il}kMc- +Ne6y=NUE-cMp5v72qjUQPBOV(X6YyzLb7v3vz@pIi4ByD#nx9`wXO!TEg(IoMB +`31S5a+^}B%v6pmYt*;NN~h`nqtDWp(b(&9kdw{fe9MYy=H)7H@~ +Q*E`@H@jmy?dgr`aegpp&zp>xUZ{>#s1yh7p>*W`SV55eZguU1Qz?T}<5cJEFE96CF`W;vbOJ$u|2J6OpvR*8Y6|fRk#s-o;8qP)%&y8c1F|M1%=CMU=DXU_yv2|=c+r+kzo +bDiNdWaoiN7?7>6gx|n^&H7=ExWGWz;0;YV&85z{t2hHBkk6~PO($%&US{~jbyx+oo5%=C3cxTkfeRM +J<_fqd;E=E*SXzk?xZ*wPB*8g)62MFrq*vipk8iJ)Yvo$GR<4z6<(HKI2T)4`1QY-O00;mBm!w>r2zmidJ^=s#$^r +l%0001RX>c!Jc4cm4Z*nhWX>)XJX<{#QHZ(0^a&0bUcxCLp4SZBrnLmE+otfm$OaghCyzthU1ZXD%)B +;IJYHMynUlOS8lBCtGyGsI9CxF@%P|{j60bhouYKNqv!8OoY&CFV*ZK54*CBV8Hn$;~(Yt>Z}Xx)U+7 +7CP1+c3ZHbI!e)o5=)F>;C`0&u{Z#xNqk?=Q+>Yd7kt7;kzGUCdQZ&!Vnvc8g+x%%)!>3(0-BIKE)MxJb__e92ws{(iXTN> +s{`bZ@3-sU6H@@w@$gdsl&+zLm_XS*k==zobp>Pmy;2 +~a|Czt9ZdmK3a^maqcQ-S3Pbi5UpZUfb{oQGn&+PKFIqX?f)GhIMC58AeO^}Gcp?jIJB>IoVuFPc;M8 +%(p)wSrE^vmSu3Ae2BA7pj|-RzZFZY{36aZNQONHejUl2FVFnblr`M?QQnkqj?hlvuAkb^2>JeSFI%T +o?XC5(rV<%@fnO7^}PXzI*C7)id^;M+Hpw4P2j-CZtpG?^=jD@XY4~S5uE5YcG&b?-;uRT9)IhEi3JDkQV{O~1dD!pd1q +^W8a)3oDR^P69E_|t1>fCh4vsxw363q70vrEM4Q~EudGK>}6~QL&^56sa-W05Ns}Yrz0iThL$JfN9{$?hR9JI08gA(h`W4_307dwMGhVr3$Ygk&b%N0$nbL~rA!<1qd!#$&WR +-Dh&Qd~=o@Z$d}eC&+L!fNTd*34@2T)s#Jlg=D8vD&f}^)0AGZ8NTQ603E&j@>p7zdY3!$*c24>Rg?- +-Gg5Rlh5QwqqS?~>x!YW4wqSdGC!sK$$5^7C$FBp{K-5f2gdW5*^_Hhq$lrj$WMM^w&}^W_(u8HTtt3 +$T``qGaMv(*v1>Q(chkMA*mW=N@1^@(x=+D<%3oV|`U7sQd8a!^iKZspZv{;s1Khkcc6cp*E>|7kyHX +zm{5%Ek@N+S|V=ht7d#g*q7=PPdJ&#d +DpD-A31Ya3y*@26{~gt%3hxqA}4Lv^-37C;IDoiN-{0qB+rCr}bl?HI=hgE0f?q2Ab#jP)Gb+yYX%}y +>k`ksd$H<>t4LOm)_+T=eh9C#ovJ!EafkyS@fWEc+OyXSL^ +dH{OCWZ${ZS0f*(lr2_g}9t3WI%gK*yR=2E4VTG>&zG`O6_Gr5D*g|#3>fW+5{{ea0y-B@I>T3LSKD+ +v=e2Eo4p|Zder#`>K=`#I#_oidx-yVxbi}3C6ewlrneY5U%HaqWj)^+cvWqhkpSoLnk`c<>9m2e`S3? +{eqKQ>R@a)7bIJTp7<1L)wXXf%i39Vb|zJLO^TmA6rzWOxS_G^UVqMlB`b44GI~2HBqrd3;=xLml^r@ +s9X@!er_<)r#wZIZ^+A_N$P*XEcF}Ht{IIMqM3B; +VXT{QuXrcQ>(hn2M*KN0$=i6H^CKb+i$rUwoDE3(2h<%N#}OmXz@L(>cEKOwjVkK*7S%5WHg5O5RIkO +NUIyOmzW3Ppdz~-!oG&hoFV_jaq_FBIU^fU)D)$Mqp!qnDP~XQKYDq;jI?khE;5mI-YKq-vRg#k|W)l +h~{L0ixeBgL)F!I5G?^faiGYLMZIv;LoGvZFP9Or{>XEeN?K-*$Wd)&we;QUx*A|J+i06h5jQSse38s +otq<9HBV&JOdo8*TQPwTt`DB(sQ-KlJT%veu@ry{_LWr;or{twlbrd!!=+rnC?|CkLe`TQP=jZ;eHFl +8(mf=PDcEZ2Z8;>7|c!5Uk~zKauvUO*w +_KENK;k{WK)|4n#Yb%qSFMF~xX3xkxvjv$&Zv7jZ~G6>q9RS*v2`@sb2) +ognX0}8S*TUY+2J9R(qF-peznnmTh)8Fv=Oi3f4q!5tqg~{qvG9YH_>;&`DiVbP3_|TbAlI%%3BS&-j +K^`mtV!wyxuh>YZaxxjyYrgk$Zoad*1#or(_zDX0zHAslC4|z)zK|BLm5uGub@f-2~h8MRnATAEg@r{ +%ccuf2SZ_9q2J3-A(GVZv4j6DM)8ckPhg{@ +f2HO8we-16z5iS|e~k>a+h>k92?jm5!fp+VBr6zI^<e!()jl2*o`cOkOa9^3ZZEd1E>DD#3z3 +LF?OGl!RX0%adZxr6X$sUB$w%Dj-NMntUmi>^PHUf-L7Uf#ceUTv45*Vmnwr`Om6&jpW9mw>YjoK3up +vuN9+CfDHsi50!N%@sHS+z0SJfbvx4t6rP}xbPb!DI;(k?>FOpA7iJL533OuzB8%pW#kVGb06VfyF`D +&)uT)L-o=AbFlgE+PQ1m16T`HtiP_5kGhD|1=DozH^aFQ{#(XaBl% +7G5f`)_LUjZQXsO3wfeD9eF&ElaWj66@j_kH7bir^~@?eJh$V8|})5yAO)(8 +ff`1a=TKuRZ`6Cm^FFGlbXA@l5S5l|?r9r+EH7p7$lOr>HEV? +LOHt^4*M@cYG>DQ%@8E%7Wqy^fnVVfxHT>2*94wL4@R&elkHCkv +jxhcl7i2IK?{5L!KZ`V*)` +)hr6LeSu{4!0xBmOU|qYCVtGo3x<1ug3?E^oUDKF7v<7NB${*f+A}#K(Wo+wKD1rx@7n674r=y2_bqZ +tT)|aWmB!cvIWHTnW7LE@bs%6{u5rkZi#u`G!4=F3&%#_e*dXRYInSR=Vv0zh2DVvp68y)~rD9UFHaH +6VU#UA3}B_6Lx~w~E;p)-hTnYE!cWN#{2O3-GlZ=n7*z&FOIPu3CY)!((`1Oj8CpY~_^yS&`M!-O+%IDa%bc=lEnQKZ}@L!V?}s>jgBSd +f>uN{u9g{z>>*cst{(Ccjs-LpkH^f=^~eJbjTtmlpH3#KZHV9eH)R%-a*e)2-Fx^xK~sIDv1+1-$Cp# +xyz0QzQFj!AD9v_(90kZ`7s|@rE +@#YuuCUi~c}O?(^mZC|@%2JY$2ee66~rPs=l4Qappmr$(biUcfpFc^fi(`<;MURIIhv;N +1zFOheH2{1U!}qUW+S0<-P!Tbp{%JFAi_YXRPmcwC{R-kIF1Ub(uyZUXGc$y2Doo%> +W49~~_5=4T%&_Aq)2Hs^WfDwn==QP~xDy<&np +dtgVB9IdIUy;hx8}OYUtNrq~blbT8`NGK6|6rrxGShyhQUa{2p8?fnqa-X`Vt55w*o)A!;10x1XSvnQ +mlL`-WPD{u2yT3gE@Un?ySw{Eh0wbcjP_<{+g}G*OJe8T( +|aJ(LVkj_6fSxPI{Zc$6>_y3;dY~`POypLoey$D&s!6L~Wwz`{CoUB0XYYHEc|8j7P}+-i4UpM-prQ_ +B_@elz3d=X_(L2Ga2K)2^z_EWj3qnGO@xL#2ae!_Im<%BW)*s9>iI_Xm`<`wEsln_Mwoc*^?J&0PI)5 +v)|yi1K)B0m#ze_66tP6-1{(|!}!4;Dq?Z*%>bVFN`ekL&X4ftSd68=e*y2C@Vk0`j0O|?y?#Dk=Pzk +>a@$!UY((|G<*f7`yvxM9LWw=%ued!-F<_mI>@_QLBaOdeS{Uv8i+SZKWXE1)E%pG#?W9WsPG5Bebd2 +6h^>*?HUUcQz1Jm)nQp-#BtO)l#C<{FHyn^x?1-(Pi+ejB;%uWq2`0a%o@$OB?0+;jp@`#85eMid4#~ +|NbE_?aohWtp^{dFxr$t&8Dhy^@-DPP2YzInt`HFEzvqMsTTeUq6X*npkH^Sd>^DB$y*;Kdujo%)H0U +O!_zHiU^{4oZ86mUakub}d&+!ONmQ&J}6K9yl?sZZ&SKy9ebDr4B^vE9$_|gGHT}} +dLmTr*WqMO7`7j0eULg5rR;8Dg9tVCuk;m!FWtGaj>T2=Muf6*@(nJ7rQa^wpKIbwf-(O0!^qN=^;@( +E+SM6rfAL6~lsLgzYm6ry-IA7=nf8J9X@XZ%#sH{|!Pwy3^E5Nk?-))HJZ3Qgo!Ov!85il*ni`4y(?m(Y(;Rckfu++MUJ0k;HyK(eiuEUb3njcVAle_^XVj_2q~eDiJ=D$tgEt7kM?Dv%N9SZ5!}h0*31^YL_$1nZ=yb;h#TK{JP6$-U#vhq0=eE}^nF9hBr+D9TeIUNS@2*I6=XSI22z*}n +HCE~`i=5{%9qK1FKMh+KG18gKLKexr@T&~(Uu1h?<6Zo@CH72hFWn!BvooA-Bz*`%2*HHHp4&Rbjpj-$!MRby=a +3R6_{8q+Lkck!egPCxKC$|dAM)LSHqPu%XLf2N~e`I!d}#(J;*JSl=Zu{z6_(Sd0OH=MWhXJaF2FB0v +%Yp@lyjXOWO>leoGo}uMwx{xRBqZ)ZY*Q{JljjHv}^C@D4wxlr=(rJu3C$rZ20b-Dv;%)|8{o6#Zg8w +2#z}I2ZmsAFtx^(1D45L3}xTv~u>pf8~%oC^K#ra+4gB8{+e#8(7Wj7FN_Z4L;MU&+kZ+dT&fAX8~IZ +%SeSCPwS|=J>6D!`+^VU-X4;3mlb?Sxm`(_Q`0rSufroLCn;8{O7Hz0`4(PWt&)^JESD5NV%dK~I`Uq +3{oYS2$m5SjyB7nFo9^LfSdo_6j>TdUIw)TvUM{!o=P?IFnINZ&ir+5^+yCr{zlB|X +grTEBJtlO`!+R;`iNclQtWqn1Ou>G^@&4Hu1{>+A1zI!gZv(7TQjM}JAq1{&yR}@TRxnvvmlWlmqJVLTnw>35Jnbl|$$&bN1-G6;k>w +gww8o43zU#VOg=QxY@!NtqU4EazFy+4jLCKHX}WrkkMS0k@xtC2jU@kT{E^&rwwy+)9i>fD~h(y88CL +5E+6xog}fr?I3T;Cm)$+9{{3-mQ2LOwI=9yYUF*h5YuiDWBRv@ +?4^d&LFckiJV+-p(i{{yox%w$ch73{$*0Ta8Hj3tE{&jbx)tnom8A_fe{0zvL>m;(eh+Kh{nDQKoe~w +%V)5R@7fdG8ylG=iBR?qVc=*su +X39A7lbv9q|J22gJD3UPZFR$|ra;1-$t9z~FbBX3~uU_j-|+j|-e@sdkC6?m`>VR5skf;lM{uuWFbcj +>j+2c$QISj;^~Sd=xgB%5$JR!ZoYK639VphInCB@Zzz)y6T)=Ty~Ha<*YiiZhCkrVrL!y#Qn;o&p#g@ +cYX%#*HXmgk074ulX;9BMx01^W>9RV>lX3+PLmjOhQ78BJ)k~K`teK9vBi+rfqdl0k{nao+j$;`=XK4 +Wjvx0vi+HiokUw9Pz2i2(p!`WQSUZiY5xh#Yugw{Zw?Pt@Lx<-$^8PpAeDY%SC*Eu|O!1-9GV?x~%S` +zOdfok{WRt(3wyh%{8F9fvDLG&tyQM8POWombT0c6?>N^t5o3_gfUpN1?-qJfHrN2RgRc2xL!OyQ^J-~`DaC`PWIk38q$wVBjDH{OEqw_1*2`+}O>X0+w|)|I9xzQ0WsxtY!B?zu4SbfO>kKsL1 ++Db&;Cu0L*RR=iTs!t-)TNv#3YA)n9JHPfVM-R57Fj>pv_Fs#tPba +AGm+i2HH@pxFFBA3;K4X3coF&ku#Y!7Q?3@8hd$+?FbRitnkx_jvk^R=>448TZri<21{%)Og|lC{a_obq=cmj~YFIQ%S!Tf5) +3lX`KuBq?a^qLGV9H@XaEYC;7_5_kFT*W&`;`Ixl7<)leV*_;a4Z+s5fCja@RwXYzgF7)>BcpowQtEw +xE$#Z%%UDXn_Fhf`nfa8G}^!zx+(U6P}f^lPeie(ZstjgRMFSZe|g&75~O_z%-vz9aK+jc)uv|53rQmlK`0XHm-@keEBV*-l+w*7c%A27^?4TLF +i=d2$@U9B)%1qXg@+8f6?zaTgES2{onE4z^7LeK2>cP39&w_zRf(O|lD*FQB$2#-qPln(pM&UE1z;_r +%+J)ur)|0r}sm+o_`#TMG`KuOonEIb8AQP1mWUh$u_!<5>_uVQjcvrw0_fsE~g$2mZSHOcqhlWa4z`u +a+7HF1oM(Epq_-{ifqZ0LJ@Xxhadq*@`4LpA~x-+u=CeV3#FgE8v@S$=x%e0P}(mjBC3UpWv{<>L8zX +F_Ka|0geU#BFEys_<}4#FRC;E^}r7x?F^Tb{&s!f$<6YsWrm+6b)$sf#oph0o!jJj2`k9pn#Czu7S5$ +?7dxq2*x?Uk9H*tgV-L`l7I(k7(Cgw^)~vXugjGelx{)WTjj5H*bXeQM>LU`lwrvY?77MX4x^~qdv?7 +EbtM@SDg!5{P+NkL1c&Y_UuLvYkzjDbJRwC?q4>Kc2)mF$v%1ZmY?L$F8Rq4{3>RbDCu)Dx~gZF^d0c +DR-vsUKh_yxrDa*HaV>D~0!*jm7|8?usjk)T*u16qIV_3%C&E9IWWs>=dF}%U8O%nT*msfqk1QUq^yE +tcnzvNX=b&VUirw1$+DZKhM!Nl6pD*g!XHy&30``BvpL0vX9zRHZhLY&3jK`Vg-%(#V)r)An54N%ddb +JF{;R82^_rbSc0C?G^&rZqOJTB?Eet*^8SGXmN44;0JYQ9h +FU+bw(-6#=&c8OTL8UPn%0fl!E;xheOEtd(vW8fi2gxm!g;aOkIm;pn@5*%So?1dHzO8X1AX*r?Le_+ +7jgi<4>ll|Y+iouE)Vn_I`EVP+4<27Zc`g2=mLC*Lh2W%zNBUwYotCenr}inNpn&7d^lW%&n0WVoP+y +v1fTpOf?t@$A{4`HFwlSXT;8^Zg-?=LZmx(f;{kg$N3me@iguuIYeBP7xQE3J7`fn{;fRrttS()H*|#7EBfW^ek(A8RwFtcWPr!kErauEZ{RH=k{8^H>8p}jkJ7AEtBJj+C +a4a0!`R0GVw-{TsmNI@F(HvVYcKKVg7NHU;Tup5-RMA-|-Q#|xspsY6?|+bv)OFW%A?%2szAUFRMhy1!wxDsSel1 +)zi13R+v)8OVQa6JoU<*v6OhSzzNDDbS9%sCz6rJ}y1cuM+D72p@&;`Mi46W+&TV+a>5WvE5mSw(pt( +9^*bjaaX2>Gh(wB``*4aQn$`KIv;81z5(|kv_Y=@ETBTRXxh^*VJji_mJl;h#qhB@UhE5=!JB~Jy<}bzi0Vn$fgo9N=9D}QO?A8cudjtLk3(-jYPHm5UeIKpT~!|n +F-!{jIwY!IInAPekRA@ym2ux99oxUj4uh^#?y!?4`v*GTjR?)(o4V}HCebGB^zY*S-u9%mr(}Z!?Eu! +iblH!!9N;j-iY#lBR9VlZIhn;u1$R>dQ{pnl+!sg+RRFa*0R!Jnk!8Hb`1+c{{urGks~yxZ8&NUM%S} +&^kC9xbb0b<)Fd@U+wfc?mqzbEni@Is_FNV@d%_ZoK4YeSJYLU7Atz`Di-AYaMl&m-F>i`FXr9_L(&) +0z155eb_1VDnBPQ1EfWNj8dQ9^JNssmPD*TIm>)a&+H5CyzV&9^gjkftKQ3m+WYDo^h6tpPz^i>6hWd6RsE^?$Y?6Cg4N*`^E>*Kl#$UI +P%x?qG=K@?ssn?Ui@O-mGPqg&A)&bN#MnxbIYH``zI%^yHwce9ZtmRWUI(d-U8bDHQ$SD-V8q8QxRD@ ++I*D!o@P1i%yy*n%M}s$xg&VT$8@G^{h6OYTS!VY_9v&@uvjBI}Ouqh>^l!$pHu2-a#d>Lc2d)I)8(9tE8#LhS0lq8oo^bWz9&t+(;cvAHy#JfxNy*CR+7j;Cw}4f{{c?0p)##jx^wT) +rsi8aIqZ@F4r`Le{9a^920_8tD8oo4r7mcyHftL;V--c_aMsI)CG>-p5jovA7^d17v$90Z`0`RPe6CFTV0o+dm_IJ{+8#MEY|Wa1K#9AkdA*Cc;@o<2{5vR-|2?m>4 +(kb?<{-{TK68A)@tQ=iax+&@x{Bj9Z_ivDt)`m_*mCBakY|vU}1}C9G&_In&s^E3&zB}o5|~@4RPzNm +|dF+*G~c02z=Qq#`i<4=3CdY_OiLI^?wPzky&aaK9-zn{0{B4ht{&bt>JuL#~HSY=EjS)=h>m6RMt*& +A)FJ+bgUn_sL|+B>q7pV@=$jwuk +wm`QO2V)}Z-#1y|Nm9QU4EMmP$jWpO; +U2+PX)g2XH*_I<0%mIIPdJc1U9FWjAW$=fV%aNg5<;ci0reL(q96rs2KQyqsBJwD$UtbIVWx3|Rm +?ru!VvH)wbLd*pjspL{H&KuCv<^FN{bPK6zdS{KwCr=!g7EunX`M#gT2UyE4YtEGK?7W|+&u%TJfsxm2c9nD$ +u&gm_ov<+wnJV>{CKWn5hW6#*J61wk=Mr++-{AvBdbbp68tG5L9x1<}Y6CB6EU*o2%(v%=KAAS?*k*S@<3r8wY>adDL(N@Hv?>x@<$z{!)L +7Hg4P?H4ag`^q|^iZDEHO%y{tVLm4dasfKmW65gqV_qAxVQd8|7d|TPD>Dl#w+nmQ5X$?j59M;%Head +#0=C1me61P?1`=*i2{D8g=LSaSOb7HaMzrQPDM`K?V&4FqDLQ;YE3&{n|vQ*k!EtM8&F~Mul@9SvnGA +R1o>yLdT36<=!1@dp+0e53*$u@k{2z$(yi3&ZNmI(ob$GT)S1oB+! +ooDRKSLv!=L80a5{`eIq$5{ +vxX$8l@|;}{eCPxpg{ +hw7iCP6lR}NoAA_8HAc345y%^nD@K?&oOifN^`~`9%WQ2{&$SF-m)*EEx8=8#x-u0QL<=t` +C$BRhC(UtkviW_MljiqHPF5M@NvSrk@A +fm%1DVpMwVK%b(e2VmXSke4KiY|CDNJ6wnR!GGe6L5iDKSg>TCgRWL8V-&KX^w6h48oN35TB?ib_b%5 +}7EZ_W~$e;A`(g19yTE_DW6(l3FFj)N6?Q#M25^9gAUp+6;e*)aJ{3t5=f#WTnk?17`KRO0hWD2> +;iyUZ$yG&dQ_J3lJQt0jDIP{VG-X=OpF@l+D4_2E}GA8{d#wJw%;A9mR)sc|=8mhF)mX&sO?h4!@TEp +_6V)}Xkl4>E;CXg%|dfLVnrWZuz5{rNYrFwJKsJc{X>BI3o>zZCNz-83iikl3Sag(TL4tp2T-yUf2G7 +U|aEn;Z7W26$8!t;MRWmsWBA68f!}S#5)vebha_ucOPviVGxRFS~#Xjpdg;rPblE#QXBg{vdJtTsAB< +(mI$vr294R6ZTaf#dTO)6FgqmrzX~QyT&h?k7B(crU&}E4k>M`OES#2xfK8A%a`ZhOEY5p`_ljN?|+_ +uXh)3v>oV}~D;odmb+7# +m-;7rLsd^7SdJ;uNJg!}o<>Pp=Y(|A}39xC$>P2%AnuaJi?X*@hKiHE@DsfqQy6c7I#{++)9{+-K>@$ +ZQX|I5GsDgMRJALB6w+G3kUTDAHQz&VrEZqJ18{`aA0tun50{Q}*Hd**5W?T1aQJx?FkPGap>Y4^MEp +89jh@3u;_xxZa5@wqe{hTX!~lRFyl-A!vbXf2mCV~H2(Xx}56+r-!SKt9glp7PPYA67hj@x38GxnNZD +w`V44aabz+8o9i*FNGCt0NkPFv=*E-(VTpzm6iI_%{5)Lx7Um$US5|)@OA@Z#a@e;59zl^+&@yx@Hv* +V(gn!-DbVKREMIjO^&i($|FLb|9zH%N@V-`~`81}b0UaqlVg}po@Jm7xD;fqaN)m8yC@9%iFY&#s_E{ +j`(|y&{7p&NQ)x)<^|4l*3dWs2()$n=5NZx8S+-bS$KEzrp3#F`;BzJ2cqrI#g9tk+|{uuZ=@jf2)c^ +iDZ9`4ggS$6X2sLuCPuz-M*<)OY+g0m2Q73W8)iRX7)(esu5-bs*tx^}&A30TJRS%UIef;_oQ94+QZP`=6VEb*VtV%(Ii`1hOHA*cmoKe%i_Gtz-rbDu+eC14rLkJqCnO%LMp81*Q=e3Rjwu1E3XpSS#p?}rugA{N(msV@V*?QiCr2n-tTf*UT|py6-Z&bkg+x=~9E%m#AoMm>+G}deS8m*QKyc=u(qc(T5<28=@@(nUbf`04hwLms-&c(5kd5n5^ +JR2s+l9Zf?J^0S`}ZrD&&>mFe8w7bfc5)2~e)qbB*@rpf)bIJu|iEB(EbApLahdf^hVjOEAc +-8M~c;`12wF1~z|;oT&?)ApD4zBXC!yq9UiJ|@TXZivP7F4>@W?b4<7F6DjHyH=C7SEAO2x$XaV>)qR +NdRHW68}u$~T&CZAJGyfdt~5_1rcc>ipSD;orAt{{m-znkZ^v}Weo0*tvW3Nu$xE0eGL|2&OItKuh|goxrTFqqhIgb(@$+^`hsMVmtP{r?Hn*%EJuk8D?j$wRjq +92ZsbT6jt&YmeEBKAa`PkX`jQ~zs2b +u3Ptutw;w#S^kmcxL>~@r>^q`;3r=sb-Evw(F2fWjnYz$@hm<=$^fC*dDBja5?V6I(b4Op~q!zLv(*Ie0}k2IgmSNU +A8b9NT~IO_C?>$z=<^v{L9lAgjAk)G1L3D~ZpdhoCAYBh2QdOA+4If7QSwo%Ws-H`U1NW1Q8nnTuG+T +6n$^>nn3eI4p&m1c7K(|7NDt$*@S#5=Utk}UcsL9=DerP6rb_0xRS>yxBXYt!ruJ@2r|7FtiXUXu;CW +b5~8GC_Og8rQe*{zgV;%uZY{b6NR-%$_7Wd^!0*x+|5BQ)mA#kq=u;K9*lbKFUcxbXr|TKGObH^6_QX +^uEYP+_;p{#vVRPdy}gXZnyZJwsaQML_Vx-S-pk$&|;vs&IcJZzK7^gAqD(S*6xxu+b2t +%LgoBH4U}{9R`oeEqMSBO27H>u!N#>05?2uTK5&zBAeBPF!4hIsfb4j>=L1-Oty}ic|WlBuBc^o$x=L1UZNA_ze~$6Xomcgd +9)=9aOU%VvGL0g&`mtIdxd#A3>v?a1#Y{}p*3WureXfWFb3 +_w%N#ezJeGM-i7T*dM-sBy_5r&WAx7vR}`=72WwLWSisBG&6(pQhR(XpUy(h^&IDO*)u~lcb3*rei<@ +D@{fB@!C8JbL)bbexn`LB=W4NEp7&}ouc~anSO-MUwj{n+*5L-o0c>n3rRC$$nhq0g|D6#VGx+8iF=m +ixEx}V;15Z7Hzqg-w>WQh=6-*^V4gV`cf3^&jQdV-TU46d0A7n%dnfH59GrJ!q$^~kz9cewGF0;a<$Im3qK^I{iC)5u +@ljX@bgypHsQXBw;_-9mg2rtZ!`2d%s15G<jZBaV0$Wd;xq1Z+YL^Ky)Y7Z#*shd7c( +mN=Ip2gVCMvIXwO=j6<#%f3#!q_`i8Z;NNwH_T{ +m`1Tc4C1pglwyveX?ZR^O3@c`3Un-u{7P4ftQ{Ev0r`&pTC~1zMheK_2gUwRDKFVt;x}=1Nabo?oNmZ +G#_BwMPv)CF=<7L0ws|mXf|!GNFrAEHI#UDl3cdXV6kY+hAwn98j+$ +zBfp*^?LsUX7AVHsL9Gz<8=tSq2=yalWiI=0(UeIZ`B%+!P;ctbqdHSQs<&Q`tt +?iLr3vbhXdfxP4t@(_KCKRmEU`M|pv=)|XEpbsXzz@M-n$IZ)h6G?2jiEbZI-#rIdo_Yj`EpVfF=Vps=c;CE3XeosZCmuAIiMC%*}K_7jN +Anm6SU)L+;cZmUisE>n_E)(z1v4W@tCF!b8+A$8C>ogwG{`U7_9EOl!=3GhM7PTWVsF(E}x|`Z}|yoIB!!e$E6AeY +93MySF4>*ZQ>e#04hSP3H@~?G$rn_rSMvnZ#POebc$E7HiRhtZ_fh;YqMIxzDgRnP3eh`>KyS6R)Kv- +R;nD%zIayeMZld*RUnt?<(;=u!2^!-%h4UoEI4Ztu7d7^{_^(Ow@<=hW)HYt7XYbYndr$q*tTYyRc)l +*4lNAx@D?0*i|O62D{W5n*&XBV;bEWQ5K7%+ZC~5yp09uY|P=uEy1A^xE`eYq~HmY6ga ++ILi;4~bC+#z&{;}-mo4{dL%F|sAIkmR>l4eJO0Pz>ea2`n8d_g|0kRV@Swioal0wUpS$7X`BOm#tBy +s)^&2inB#JX$oqcek{%e5D#vG&(YGeZvW`Bl>l+7p)cUkW{z1ia}SHQ++~=4!uriaf>~62wpkb2iilO=J362fIEoiBY1}Y6Q(r^K54WVGG0n~XkKGKzEzsV +-r{}JVsvkMJ+^K#kG;HD=s04aV@DhvzhR(b+hyqZTcRWFj{{h=M~;z>UyP%pZ!#U5bUHQ}==fO +!9k00}I!^A#q`lL$eUUsh66>iqz|0tjIk7LX)5aS6E{Z*2=bno0q%nT6=T~NEC5!F%mVZj@pLTkR{mN +ujsAq-K76tHsI}MK-zr=C3&xs{c4}u;Q^b=LWz@1;j$#_y)a_(D9Pa}U;4Bc2*t?JsDWol!NW_`9^T +-i-WsJSyUJFZ}1uB*y2s())eG(VgTIX0fbRdVU~F>~TPQ!t*+4w5Ks^@>$2r+I-c7vS@ERolgaP-!`k +wY0<_P;`aWgy)wP|EUfcR$McqHVn1; +}D{v%xz%~Kc#eOEBnU)j*G#XX;Gp}7NjW_GwG8ts8@@pOAqg?i`yU!-msF);ca?d|sefe|+1GMzPbz57jbgGTr6!K +EwF_ot~eih8u^~?s*|4CW8-vW=C;PZRbANn;Q6`s8i$|WRT{!6o_^t +R0w}}7|(90w~6$%z{&zN2MM;7@6%LlVS#df?m>3wYeUhUy8)vYW&J26wr5+LxH?2zoETmxcx}a(OIMhxbK}5_IZOCm*9JaPWwHb@t8HTmgZ)`-=XgRvxT6K#jD)ua<^)Gro!MhCNz2x#$H_Q=dbXFw;~_KX!~SkM3w|Dvr}Si!Y@yXHi6cnDG~S#Yd)Pof#s_1Zc7T>C;guUn_{;)`N`TPpWY_E`OEaXm|GeM@2TNu7VvdNfZ0$#tqGscz^)EGF8Y;E+9&R7WIT_G;8UMwG}`GOiXQV*A +0mP^es06-G}k~oE0yB6(0p~vf_dteN{h702^pz^e0XtxTg&#D4Y;RwUfla6WhL6xBFJH31^j@Di_soq +yUE*(mh!L{wt{qn_N&olc;!jbjlCIq8+t4%#@WDwBW4zV4zsbJ==pIQN&EFsyGpikn*nyA2AgE;F2LT +%V)4r$+F+vN>uAGArmGR}KlAgCdjyZ^Y>=$bbHK&TXl)eRo3sDw!0xM6_y*=iI?FL-wt95P#sb!+4O_ +O;oXhQM#L=*!g!=Ft@DoWc2Em_$vspXAcig~gdM}gTs^zyD@;{^Hr+t!rvX#?$6X=Zi>u}q<(Vk23Ji +d?WQs)RpG&?g2I=&0qoJ9;c3OW8geqq>+MWE};pew~we;gKm&!x_Udxp*|W4;}V^_7lhlQObhi_>;%c +2~^PoDq8bchQ|o$D$L`cD)y!6vx0m^YcPUm#u7TwY_=Pu9L_=oXNr`e4$=;P|;%itoi+IrZ4<6lsZZiP*O|B3d~7J}|}KlVy=XEJa1W^%kg3!H~ +-BDUN`{u|)7S1jwNvz+c;zO3IW<*ckMU)I{7#Q?B_M`>@_&WeJO#}WUYd_aA=Q?`xRAe$d)X`e}B_f^ +`ymqWHgGp&EH&bk0z6JE>BVjVig7J5wa3D};&>2w}ZjwcKLlgq*iRm5iP2VDIMe6+g{y84GR)$mEAN! +8{sAD%7x@_c~zQ`C*VwL^yPPG*Pc3?)@!r9@w%r%kf8o}3OJ;(WAcz%(oLW!hgo0q+Vyhws~BHvN9uq +e72wq}faK_$J91V@Y$C7~>u~-&a99&cOQ(T73H|Hi+|WJK-6Z=L3^;hOaAvKSb@q3Dg}l4~c!^vO^2S9_KthEFI!8dWiNo-;tF +F-Z$p1v2#6Bo=X45NGGJ#umtX)qWOOP%iViVP$|(z}sN^$Q~*S@ko`8<$ +g9poT=CcxuyM&4_U=|oj$|^+qHYz`?gBEr@hXs+Wk3GwkOYmx}^E43-P0QBz?HPlqURDFRq*Lqj;kd* +IN8YPyD#Hr-}W64<#AOOEQ#~WGF8wRvzu?+?DRD?oJo`^!MTVQo5L<&;^*?X`;`k67Op9qkaYd`1zvZ +ydLn^!{8(AmdjrLYzB?TA}$1d;?q%EPH8>|x_(bPFEr8EK!CB{uj2PL{JxIgBlzvWuMNL$nf3PINAiM +paxcY!dV43Hneq7%8owXGdoN@_-#gy3=!K5ew5PCkHZad;VTOI~WBo;mV2}*!d(i7`B-uNE+_|g9eeI +3@1i`e?p7x5bx(e_bBDh25hwHF9WeLU +wNn?>mHiM`hM{A*XZZoo3!PITVu^AGZQV8=YVE*0B=U%u+h9=uzCa%M_btc^dP?`LdJJ%e|#~df3N65 +z_2@54LKn*o$Z1)vS@mC@F38Th0=)O=L&22ruMyBR%a!LusA!1&;nC(t9PONWG;I+V5Log~mF$fx}Ka +pKBH<03HNq0bf@wWYvEaKZ7gX*(f#chHg^bX&wRm_+`IF+u={@Ev0v)?}W2i#Db0IK^HoAcEy8IjR$x +E#wzf)`*T|TjCCh}--mKtCYn#hikv>yXwI$Tdr7a9Ss~T84*4hz<;^qDkII~ihQ=}|-61-gN5rU;zVF +4iyYTH8=;GGi6FsJy3pMfl&i8iE*^g^vK5n<8Lfg|=u^#9s!+Sd0rr`7PuA%9!5Y59Vz_TlrwdO(Iu1 +*!UnA(6lQpMRC#<(wbj)xwfkNcjU&30DUl_d849tQnSD6w{>{l7(QUPJQ)oruGs3oVF8wz|X~<*y*F@ +Z))y=I{jho-uouhE+PRq?_jMRDus}`2OlPhVW7fQa_3wI}?u7{=EH_@?gFew?C(~M-KRF`;`fMtsj|z +dQtpNdnIn2mfcD)Pw@D`!P~DH$cr|E?-?FNJAMl)m>R*@KUXJu*FKsh)l!t7WO)K{l^6TXcr|`4PsztxT!MJ +hoiTx%7BeUKds6(5#+roM%p0Bj9?%NShsAg8U3C}N?#W}uc*SaUhw+iqB%%kc3$l1pC`@&4b9Q`PCljR|H=vd&W!q*SkbR#A+Kc1%aHDz>}Va*`jO6|EW~ +GsC6rK!#((&}JyhpHjo(XzZ1euG52P5*B8>AR67`=o9i#rUspv#~;f@fkd+*ZdwBFL%LHqAd>_uU+2yM8`XqWSd(u*W+m0Y8QPlQ`rL!_tDG4ZHj}tIT2h#dp>T%0Y{}X-jY=P3^zXB@-ymthRn6m8C; +M#N*BN0}|>*MMgZ%=(4i0@Iy%hmY{TA +lAQ)Y;det+O%EanpFcC)Hgn9o+Z#! +S5%3ty#_J}Sw@HvoGxV8dta?pqU!qbP==el1Ezu*b(o67GMk@6|2NA9_X`N6WDb +zayFPz5BzZoaXW8R81adIFHz+EC1%wp(IvBdoxiiBhGd2^i%%?`3Q)Y!ax;@(5 +&_Skscs(Ad=-$AjGpL7Co6V*+#F}$s#*ook?@+7|Yjm~AJ^#%Oho}|D-GUP@p?-1xgaHPSMz;;|+^(l +deqkMd7uauW6-btx}uh6@sSRR@$-j#1D_1jdw*OXOarSZ1mDihfZ#sDjq#`fqe8hXEW$5`y4fy +xF3$5D(7qYvm11dWkDL3=#5;GrfJ6O3$5B6$c|P8VSc|8X3IgO$bGR)@#<52_Z>w9EF+*(bA^D;_yY= +tov3y2d5b_r5AE0?0!Xj+Z@ZiN#H~yeh`El7!Frh+@+(6wQ0j>vekFwP+l@0<6iJuZ|NPM&ot77%fOzP3~;`OnUJadY~uUpMIWMZyoJB7w*)3Ux5S<&$HS&jPo}WP&sbUeKGI +>@@44j~=$j*iOsDBQPJceNBf?iWwAIGX{h*kf`j_|PneWSyPj;L|=-g6%_9txmzgo$rADq-Ka9%@Cxx +Lf)E$AS0?*wcJ=@^Zt(3p=O>1bcNq3_ED|H8xGpS{`13v;}-^tMk4pY5UCPB(|7%z +EKuu{qnO8Y>dm@39}*oKOx3_`5f=2tHj>1l5>gDW#V&+X@2nwph@K!Yk0t9^~C!xoZeq5569}G&DSxD +zJ@+SSxs75il#HR^rS%L*lNEzX7wM^`r6@}cqZ`|_AF8R8b42^%qslpS#10q$8eohALqZ~^B}{EG&oH +LIJZv;XYxAR3$TAfGM#m)MiA3=zXJNDnAAv+uWL$qA!tz}t*}LREh77aXR8{yUAzAO&~Hfd9MU+FS@+kbWwxg9`QMJvSEpsQQatviXwxiCAUg%hfy7fyeLh0x`rK>`klhnU)?V%1kzW3#^0NP^yeSwyi(h)2xU{KlxNLQ() +v0FqMKhji63WpV3)YqY>v0GV0>$jNl{PRoA^QLhd8gr*}OV?{>Gt;@9zXLySL%9taKO4Z$uK|ZU7yU} +`Gl?B8OJz^h;<+-3)kYA@UI6_^LEBxhYwh{$FwIG&aW+4FvmE7w|)_gkgFr~dH|BkevZXM~ziq8n*s5f^SeuljjTh-~&Ln_itk1So)}EQ75}w`hF%#(|&40<){PsliROwt|z3uzy;G}t~r4#3=4wtyIS +c!M?Jk`<*a%}v%YcTOV)$#M!^LT$|HX4@hvee7cmboNW+>7@L+gn|R +7>nW@UEc97<6UjM@I727kBdF8wVe__KaI{&{~Yaifx7hr-&at6F7W;QAYa4oc$C(m*w`u>15#k?$X<| +67Q?@7LjG)&^Tu?vm&q(pXzDHf6zt$B*seb4$M&mOjqSG$TV7zf#Xms1(=GLuz7CtZ0cnVaoj+!cL$Y +(pg$(~px~INF8r$mpp@>}=|I +GhS(kedgcro_g|3|i}N?(gb{j`!em+7l0vlV62en9I{wsB8RisxwjOF`NV7IwG?xD$S_)1IHSPdLp3M +w%_4CDG9XI&J`+_#U8uxk;;!B8#=ul%LAKQ=6kzaA^4c7wyYTXO`0ZPnsXi>+0Zho^RCZ`sP4%=WnFkWi)T7iRhM +K?ob1KjRq$AwP3q=8?czqnacLi8Jm^bT=*dqE4;>_Kc8c48DuSk_(Sk_N=osS!Qacr`mZo;2JKVx5$M ++2rtFnd&3}r|2j7g38zme^oI?Mo?}~f~I`4C{rhg+6YyY*($6dnT1}#4$F~>K^CMM9oyWo?53;AixdZ +|fma@!f7Ye6tG=c`-D=k5IKGUxpvTNR|WX_9qai&#s>^HH8-_s_bI@Mv)$_ +Bg;A4^G4NBx_tl>jfZ(_fp$_ytBGlwyr;(f^S=AG(Mh+YiNc@vvtO*Pg4ANU{>P^`hIejmUq@Fnn%*y +F~4yxy+1HtyziL5>SO%+GNyLOHf8@3EK96Xe* +$oy^%oGN#YF=$beyf&$HIvnaN~=dd~U%cmBvHd-h(}cfIRf@B6OzV(0rA#`_t>d%T}nKTW=$X}q7gc! +7LBtA4qS?`IkBXD$Amd_SiiXC2|^De=6)?<0bvOJR3BI)FfBXsfz=w#O9|HIG!!%q`GSuZ8^#(R!wwB1qXTqwplcV=pqJm-kJ#afQrq< +eSpjI*d*(=8Us=N8Jm16sN~=hg{@r$xZi*Nk)S$K#xHEyfwqJm#EZ?4KO>_lLvh+#Mo(&aJ{ZmmP7={ +b-zXZfyJGpK~$F%5&}}oO5Ta+2fvb(e-#fk9W?I$99&@^wO^Ay4CvO<`b(A+iU7}yM(=tJQHn#_DO%DIBAb>+aPn +Mxzjb_|8q$C$Ntyb_$@J^G_nSin(!CBfs%ppF$SA<$!zWgKG(YFzv*!N&|+z&9>2qqHFyehrw;rUoIzcvTUsOPdvK0)CJ1k7k&tmaYb> +JV6yzo5g>h+FgSW`DIo!`eP3m+G5r1hXnW<&AvJP#!SWm$`Uc!{N3Dnc@E{FD7wBsh6Y5&A~G8^qTjJ +a`MHhWVgac!w)tK}WWz=EEVr3Fg2-6`b_QKE3txy9WtN*J3Zut1Hi+ER5^`rV;il9b!!J$vtoOBmEu!d0x5ZlJ_BmZ@D#Gr`nQHA@O${z1e?vy^}`PJ1Jtl +amIYydMBv$HrJZ#zShb0)*HCqz2GMxr$?@L1J~`EQR^M<6OqUi97=*sE= +fyNl`eF6vl~$6%K_H(@sa?MAC(DLe}wEly$~?}W0wkUnwCh4O6!?z +~h4+{pm$WbvNxo|QwS>(5V}yk+4VJtYNB!2G!>t?7&*i9KH{PSim=Mb~0%rvDlBy3Fh5p}nw{Bz@0T%)h*q +azHs?XSW;vG+5^^Vm<4yk2>t&&ry!!uK~T`{ezqX*0&>B<(3-r4Qsuk?D7Nhj@Ft~!Pvr6rOi^d`)3% +>3QJDKahyYMV7(c~;g~f?+DJ`#rlT?^OZw9ld7}JkKLEe=5@59&sDpA<2a +Wb$$A9WCCo5Y?_mzK^=YCrBx&Nn#aXdR5dG0gUL{{Xv&sY)e<$qSOB6#jUVU+)EL>vG9*KjO~@z4EO` +{Fm|y^XsMa6Afl-Eg0Nm@xZKqo1Ee^pmEEjJxx~FguF*ADbeo_8I%;D#8n}%K^+5-rF#g47fQiOWsm} +c|YtL4YO|#YDtqQkP0U?kv~jP|hUC` +(i^FK^L%@={R`M;coKKwBdB3*AmCAedrpm%u&AH^GeqsyTh%-M6|DVhj!RPQyztUULu4!+56XgaxKOH +^`c{k|(JKmQYbG1)P-ZEv92y*V6H}@sD6#p4(x{v#mdvq&sth`^HvERzo@0miJGh%NBP?l{~pdZ6mVK +LjBfjxZ=@(RE4xBDG+j?4O#5mC3+B5iAAeX}lMChKF*Gj_^I{Sy)ODesL_U)BXp;5<_p_b$#DgPf}!_ +}o+Ch#Q(K_k3T1w-@G-01r~GoW+_xEi!ex?Q(n}cQyc4i_8@xilHQP6czmO$qa4ptG=KQNsXYkS@6}y0W^gz +c4kBQN|!J;VMz^>U_YZ+e_IAx#`ie0PfO#)3F>w{$H@0in(a9zO5C)i!hhZ~FzyELgsQcsH1cD*rs7;o!T +8KTeMo-8-9x#Pgo>@1g1wA+_6;e!)p7ZS2)#uw#>64qKLB;W&WRBr|E`ZN5^A+LkK4iS!Z5%v=b +-wPA|8Gt`=q`G$H5bqD)el^tASX(%>LfS!1Jh31Ys)~948)dIbyS{*xe$qYdE=?O;2by8KPuo&}wqHR +%TT`x)aqZ{G*!RHwyhMrn^l9fEgOmp>Vi&(<;9KCdjNd`KOW(FhIMeXVHdwwHxXL?tH_@+bP$q +tLfSzDy7;fHG~AJ>$hTBoJlk3E&zcooh$@Wx#hn}5f71@|}u2Pew==CQWNk`ACB#=mi(k15z2wHWupy +m)UuZDBRnxN$7;;ibdq`>-bO&EHJ)bOg9kt{P3dpw +2(zkSuoS#FpdHZK*U3GZAw=BW?^0oTzli=&wp7fne5RdmHh$`~dMGY&5EMiS%xxx+UGa(FH*PT|eOP< +-l5!ZK3VnV@91vAXganvyW-Z!tWo-Qa%-mpRmbxEF*kbxGytK2zbI>fs~9^JLsc*xM +QD;BYiIAKz&LvuXuHpVdl<1pKN8#IvrYa;BzSYF0bz#2I<=kqg+dLI|BA=;jWFtp4{mjAV~WN9nEV50Cg +LDs%q>1%y+G-EyycF5H6ZAJgI;UGLgvvMNo8uOe?H~gI=>4ofXo1OnRXnXBm_Qk!p*yu~fREhFOHv5R +SZMo2S$k->4_oVK`qB%?-1-I-s&jIRvDfyaL)}9K<1Oyqj?l&sh_FS70oRlTl)c9Lpp*mcVE9;9J +(ozBjG8zBjBnka@Fx$H7lAca0HeNXGJ;Vl6#F8v!#<*&t&;v#mUvq=Auj&3eQSl`rPPaY3WjZ-Zr-L& +0;6L#-d?MH`im&MTOvYhz(*`gqH`8yUAHF~Wv?d_N%B-(I7?J_%O|$0pA6{D@y_M1L7Zf9Y=emL!<{^ +(Bt7p&!q0My;Py^_S-y=?}P9`MXck-?j_&H~RclFm;aT!4+(sUiRCAejh@= +%EMxcAjpzUO_gA{PzsmkM_E!vi*sJDvYGe(P6h1H}n}LUgG4POiL^wX;qE+dDeAPM1Pb_-_@7VQHmnP!S&*?7&?XRyGT +8Oik@@Urt5zIGYEi-l}{d`$QpiJef^6qI?wTi8f+KE2Q`cw7_Z!L58t%)C@TV_4#W%%rRea=vKx-R)a +=Dg?l9vxPCv*;M>A7jrR+;t?>R!cuU!_K!LPIMQTF`_YU<_yS>7ipAfC=-{)=ibR&nRd%fb3G1Or=*{ +{P{yXyBH~NOYs_!O_~wia$+!wKeh+o!?5|ui@~$kg=v+seC4wB3od@zJ&%cx{iEYq>UduGA0i7dOp|953Y_+7b9L|1 +Qi0GH>wV<-+?g=t$>fBG@$p?O%!K3HS!Sv@=@-cdQfM?N-gZZ3k#P_Uaa##f;TQ|AEgBbFP0Fvu>u&Q +pTe+{mE#nyj=N{QAZaFSqf-p5X+~mTi#t^eX>=&+`werKP9y}*R*Gjj>9_=>(zikUYvqKFY_f_p?76y +&I;Npc34C`V>vO8!pXr<8}rgp|CE+1Hsf0zbxE<}C>ea5^sgU@32V1Vo7`{=+tG1lMJ%~8D!<$&BjyX +|JHenuj9<#wjwAidbjn;y(ta9a_GU|4Sa}~3=?4&LUrajDLHpLI{zls5zGnUq^Y^3#na78*5$^a1`wD +Y%<~OA&I5-`V^J=_bbPY{ +TUqGTN7RFZYQqTaNJCzAU`1iKySB4Y@K=QhMc;=X6&f~?5WIU%J(!sSsZ)<`-}Hnj9tGIw08;5z +6ki_W4;{6mRCY;b%2Klu&`_CvulPO%{~Jb{qsET7OR-Ya&0I_xj=J59;BZMznmt;zf6(*0UJeZxxsrq$<75LI)kmAyIT{t)B8;VdN$oRbF`2=7kv9okH`32%zDO>e +54AQ;m~`EgxMKYjdNBjX}4K5&ZrZR-TupA@>jsMYU_qYsCuVjQ0y$hEFVl}^_6xTqKWpQ_dKj@(tE$- +7I}Lalz8Lsb3AB8pa6E}G3d&=r+NY5Y=<-h7M(gB}0B +Aj7w3kb7Dt(vX4Br<<%1oGTw=^BHn`PFd82X0{-{(=LIv7HkiL>{kUH~v^uC0;%(&uKq#ok&TF;3f1s +OZ#kQS$7F-HN%7!m&VmjeAS_z+Vbl-8W761MBpXUYyO~HH)Zk$l*O9U>En#O_j&xePM>QOWt>p*etN0 +pT{`MPh9UGbQx#!i3$GjzIVE#;`I4RZyU3~3xM`|a)n>f$LGfIfr{6)8T^-P#1At;6Psz9U@O;y0mk* +Qh|K|~;%`hJ%xHcq+Ry*ub29gyA7mNQH-!C!ooQlIupP}kSGFEQ)*VA#vEs} +9TH`q>G9i-n5Z=y|<$cEpcANIg)V#uyNK@Fzw*gZNL`-r +=)hI86bZnlK;RN6I(J_EFe333Drw^C?q)Njm29ebi;2fwQCg9KQEyMaSv$1w0G5guMF+5clv7|AX|c? +UFwFaRm}?Yc7*{J_6t&8Plx)GWx$aRXX#9|2Tcdt`zkBf5~1p-OIRB$Bu*l+N6BSz{>_1r_vl>MVHmz +kKg&%sP{G0l{IJ$tY`nWRsIJJ4E_i9!|@%|L2KT=ovN*E(g$v=p5Neqx)YTi-*^346}Nq~pOnEzqRrk +Nmab0Y{+08T`AjBb{w_7IX6g54EwBq2y909PbQ#xJ`32g2^U!{8HgLXJ4;G%4F$;oXrXHMSKF`vFSD4 +R5dT@sMJRS2kp9}Qhbo2RhdT^@wT!#6Z&wXXVi|{OcpCkPAXlEz++~WqHi+5Lr!ajP@dL7c5ChP&;k8 +@A_I8FLJ$^F3hAGaqGQGOHl#0nW3CEfS?)L8LkM$4xj>9;;Q-Z~i6_qT4G@23pJGj8=cC0jF23FCV*u +L$JLL$q^YIoh9XI49$z6lx8M7kVV9>hSx^;CZS4{q8vx`|}{a(cYOfa_u?#aET(LokRDZQ?`_}m6r58 +r0V<*b>vvr#EsG+y)5Ty@I(=`@!vjRz0vT+_}_0b=0!MuLEV4&OdYw7^PY2RGUoI(@^g?W%{hHDsLJ# +EVPj5}#+?2W-_qpWZo2P_#+;0H4lO*V_**rnbf4Xr(+^N*r?FO%>s0!|*!W1FWS!DK!8%W5yGbdJDVg +e#NfraKUdC?X=67k_{Ci9NYUect@TW?q@nG^OGsVJ7gRh(l4uanb(Z}FY~)V_NGikyN@Z4H%Z<$|0jA +7^60J=%KnovEgPmtny;6XCycelpUHiSa-_B2%vJez+5a>}DPat^DR|e*7@`vxZ!27%a1?0MY=?2^ww?_Ym3}zdHt-*^mlX8KK|1I<91@6^<%{%~%Suy#;F +mM0DA?3F_L#|nzuNUW0%PZ>qD!`g?KJ-o4X5><2y!+4uC2#Hoe3z)0q<+ZZ^>;wViu;iJUH8-0$A-1D +#fe?CGj$DH>-Sq^4uTUu%hk_zjf!IpdjDLg?bOLIoOJvT95?(e(xc<5|85k#R$>fy$yk!2gtEKJi!A) +qqcF}JZMxpV8EnRS<2un6o_#a_K(8?Du|EnGne!nGdzB5&DEjIOX!U!~hQ^)8mobm$I1j^5W#u8|&-| +hxN6^-3`Deuv(=L8AAEf!rbDcRg$g_-`>n9fa?VSt!cvnl>_u51in;NChU^R +jBbz6zBqknv>qVDA!#7z> +>75RSO$6<*aH6Cn(Gc(MUc9LH>?@bruDcr#|JsauVR9y%bWqfQZX+JIi8=Qt!+u_9^&K-$foI{d*3A@ +9ei!2yJqr|iZU(LDMX1YNtA44zhdZ#&Uj_t&N0viXrDz?=3Xq)7rG`dnR~HF9cpYk)PVO(3$FWMasp^ +4=5a5|Q-``A-&`;19~7r{v{RPPPf%@r6Xj_ey^^_(Fn$?}6MM|ITFD3bT2D#7RkdM%QQx>QL3CT#w$^ +)yy2?Au+=rUBeg?jKra#+GU$Gf`MQSbnFMUJ#e3ffiPR4^QpC}g7M$qy(kuGBee{}U>+6ZnR4$ZyAIy +CP%;7M3bg#5?52+XmtEB}tWyEXV$7W6iQx+ZUa6%Gh$_mn)C>-H7p!c8o{6)E(FOHUP2W>wjpCcQ-pk>LB)*1N~ +KN`tVXMZt#?pH#MAFR^NhI-)iR>-jpCxx!=xUza>tFY@e?C-}oBy_zCxMd|!+2u3e&jFuS9jYcud_M| +-Emalo!Q50q=pR>n^eT6*g?OH2DNCWZGA?F8SNp{u=zcK%__cB}ilaDKK#q2m30vb?M&KVfmB{d&){9 +l7@D*jt#7>$!qK@}7*h0Q%uRWsR3Kgt=&L{~$~+E^%X#7*e*>r5&(ol`$DbeKKw1;?Wj!nE)5 +^jlJzg`?VK~;(ZqVkbUo*R#&2Ud=6l}-jWWO=d|+fZ|bbsUd`IvPB=~nk2ob!6jg&>e3Nk{Y>I|-O5H +?HN$FnjN4&2~(EZ8rV(}efXzn}KijMC;p)R4M^DL&)$!@KudZ+c-z#lelJ +k4J?2|nXlrIpnd}mxl`4pD7$nq@fNf9N@_9W+{@wN(2T2F~hOLltFL`kVr$lQ1~(Np5utLz1-2h`$(_ +lZ5@=fdIs*aTV+lAWFbD +KN8wZY0e&Y=^%{9J?*NQekw&A=%4hRi>Br67@6ED)MpXR_10OSd*yG->6TZN+O^n|jfoJO#p7@(BLvs +UGTLokDJG2|`d3k$t?n-%=8GCHi&la|-_S1b|K-+8Y*EgB;dh*^2ucgd$6BT=EtUa)C|3LeF(67@nS4 +h0H;UN9uo#1is3Z<(>m-3y;biXF|f1>-9Nd_HT9;RdTz2KUWZ{wQI!G1mp+Letp-)FHO*lSUH>Fyjw! +$9jwE>dT%wCyWR6|??n+YR?TFMXixb?a&Cnx){;c+6G&#ymavPnet8m-6$-@cj#9O-T#!{n8OyI0>{c +#~oSjcjuKHHJ-h&$)gouj`^v=JAipL3fo{W;Idsv`Ld)*3(K(mqyvgKE`c2Lxa%TOO#E9OCk{5F4e~Q +H8(d4igt`4Y=t;kJrT1ZbO6%nfbwiA|GGN4;4#(I|I>7z{-v!;pex8A{0o0+~Wy&uF*_AJ;=GPr+AqIiZC_f&diyh~jSBEE3#-c&L0WtLCTeNQ$agqkC5bAyTN1-RpyW7)CW8AAn*jbPlekUSV;2_|5%9_BK{JZwNAC|ZN<4;Q7 +0$tCj3Wd67;4cn;d*amnT4#o~nD^E^XUp-MIQ9i=&b&vkzncwySlV4;-pdTw&@S=?@U3?6ii{z~_e}< +m**v`B@PIYn4S6@MT64{A9&S9W0WSZ**p35FsdxB)z-i`32u!^Ca1zP{z%PWvy&q(ycI58)mR5f|dCx +eEt0DJJj&V;0#+r!#Ia)nstiTM~1tqypgAb>?b)2!-3>rt-FL8;D4%Wx-C&F}(g_#n#4(hW`cu?<0s9DWLflEz{Wy`mhG{; +oq~v{0)6+-@sVnxaZfIdtT`!mZE>>C!FVo;ZU36@kZOQjLI)adI+5P$sSquptNJl(*2o`3+0{jtfVEK +c2Pt+^1|^@8<6mQ>Z+c=zGjRfzW>8g3=RJ6)UmRnn4q6huo`&0p92xq?WSJ8)c?-{ +*{T917{|%hw!$$n1cu{XpP;LF{xU%gr`+7L4uU|y;^|MdfS0DPa4$b8q81MG_rg7bb_p`tYVG%_EtIp +i1QWp3g_W5ai?|J@YG1nk3!tRFUqz$>nR_DaNr=FoV)FE@_HK&2L+r{FRG~wS5o=B}S|3b9A_G0>f^WIF96!1T2Fk|%(`Grd`C3Fka18yUnWXWGcSgR2l2eQqfoHX4f8i^lYf +D$;>ZsQr(SlOg6?@zf*WIMj10v<((G(nyJdqlJA*sj^%?9IiAL|r{R1_hez49Ot(wB7O4j~ZP>MZc^t +bI^vnCzSn)2@9ZQ*ipOHtg{Jk)355A~!9rFH}c@(L0Tgo%`e5h*u@o-K>YeY`PSog}OjGRkm9w?rZ%s +VkqWscJ)cg;=`#+z5toXS~Z)TNpuaP^`O`gHD#eE0!S_Yc +R@!tCkee%-l(&I#G`qoXk%voXRzz&7&Xw%(BK43R>I>8UkGiYo~SW}N|13l~q-3&|<4Q75+(ox1aA`E +PReJ}O4;EC2spHuOeZU3cS=SBKqdqdqS(6zZTZ(s}XtER4)beJ?y@&oj%_=z5D(M0!jtld8T@t5p_aP7TJZwNeRz;(h{eQ(TopUVGX*KHB&l=GtLuNbBeQMO!Rn!t1Rd?;*R7q2ZLU7#&rE +W5t}#$uB1#i;kuc`}z7^!nt*Di1xMNz-2M3$@)cRrk}@@G9_xHmqqi=p6G_b!w95uV)M|+Cg4U4$oSd_gO3^{fG +SS)irtN6MVqXmp2*zT|yhYMcn~Pn<@V8ZBu9KX#PAbmz*@>2Nm+X*{<`>s<7Ij2j_f%b8kE3s{1wCGX +}pT`2_MSqKG!V9?R(Rml@@8W*!qwrH{{uMhJt$j~B7)TE(B2q4P6N*6?C6}%y +fdQz@8j_*e@&6bT=t`V^VYu;YJ2z{b;rWJT7&WJvDgP|u-=hlJbyxsaqHQ}!+#oQj9r$oV4sE-{&nTdbu0?ym!JM{%o5~ +>g-X_qi|FlZys=yj1f^=!-qwpr$0mNs@a-?4SlepklVSQ#gZ_I+O;@(hP|o&3uDt}aXZf&AeGn=(Kv@ +-L>}eY(#+yx?%7mO1#&x|a4yXfp|akK!z<{kA?dp03xXO=^7rZA`*n2jkO&k77>0KI +rjUn0|NQ^wl#Ev99%9V%GuB*RFV_7p7#DNXl?(P~iR#aC0PEsiXw5zlz`i(+Ip(2%=H}XbvCNNGL>}g +wb%jHlr(!&4H(SeYT{9f2%Cd&@w#A>|n9_ZnmaK3Ldz3x3Zhd>U@<;CO`Hntx4rk4o1n?dB#vHcN|Nn +i{*J6CX{#ZJn&;QP}pNXAERK=9%oU?pELl;7uxY6^^lKI^N)4FY`X~ +-H+tEbocMMH_ztw;aY+%3O4?t&vUnDKW%#N9HNw{-~i?xcPdZKIF51%~WumvJXD4ul#LyJ)K%YP5AxCjj~oWLu%-mXcs%bNj8}=> +mz$9>JEZav{qcnad4+(K?!6oQiVfM;Bs$ungmq#4Kmn55@XMd;GrVG^wk9XIT261ml$+vff;S-t^{nb +rvW)+hgl2Ueo4h2=L=Q5APnL;WNvKwfJ@Pz3)=Jt3b0ImV(9IJN%{TOG^&QR3%ra#y&?|b~l-A^22VTnTiUM6Fn_AuW}A?K| +2WrpvR@^y93!5JRdQC8xSJ}jBOS0GjV6_$7N2dGohmAr|MmH(B>I{O~~SuxJG+0>o$j1PtI +;#rez=Co-3QIVnoP0^@#SLG235bGi=UO+kxftRT->l_j_tTVvl(DJ{4*UP9yzU&=uAJDO#x6q%(~uJR +i0PKkXdL(~!TUtj=@4oVvvbUZ&XOWh@3Sqm3?CG#I|yn?jpikzw*G?|v+=lI31t6`L84pdbdXa +&{opHhEC-Dw&4Q8tLJ_bD=85W7x*wF|yndQXFn*%l&8i-m{r}UAKpHN +e1hgR;|WEN`-K51*HsoMztTe|msljNIJv~y6#}gbP18!g_QHRUPL#g?Kco}VhFA068Y854+;*9FEA?dHU$)`An+iBB-K}yO15YyWTjsW#jsAW{bAd9=1 +dtc$A(#EiY9HwH$>XBzy7Wo6a8lyGnegnuAv{L2(}oxSSs+l#_%VoiI69IERc8JQ+H~S@`Yc@nZ>`gGA_a@0$@bY<0k~gfE9l2+A_bNNFL%##hOF6hybNCsj +j`8?-4-DSXkG=3xex6pDW9yiCNns+91D|4xAlNw`AsAj-}@%?b&pTjOFVieh?p +i>6iAh8=Qc@2e{NRUkr7mX~6<~?|4=WIkfZx9a)gEYgQBk){8w^qL}O0@{KsJ2e{(Y><1hu>#3<>-t) +!G-9cZsXuYf4-%iDA)cCo-FFHuQOm%|p&&U2^Zo?i2W1i6tU%`R$fZXQ}QD~EX3gF$*zD>qUjH}-Pym +Ny71-_=24DJvm{a+Ja>TcggId{BXLORcKyeDm4m~Yf`)YYI~{!G0%a6VLYEBfah+CO$+jWG}Ul;#t#K&Cu%BeDwXV+-fRF=B}_1Jfc)Ws*Yrra7wJEz +nKjQ$_}C{%=X_MQSAI_Zq|8#3u!MDEH7mae%Mi6v6E3%a+&h}SfozP;(p+bZ0)YpD0p{otwVOxteyPK +j%p4t0E}`2CYO(@%kZv5w^$;5q7C^kk@wy4^h%`a)&6HyUzcM}nBO26L?L56i8T+qg%bd?zgXMA8z*% +>U9q)R-LC#HMk8ZxO$XYvkR|hWrTnwhisd+@G|!O;_<|GOrQA{&a&Do>=I2V^8zmWG~L!$b3zmhR+W3 +HAVZ2)PsMz@ob1Ts*<+)(AGlD5`1x#eej-9dh{0G0>9ZOZ9I8z+q_8S4BvFE9=w?Msp!v#G4nTV3#n7 +z3R=38u@cU!xqHrs=N?dgN|L6_+<}Ikb2-}BiTaza6~UVG2JJo{rrqr4iFah2#}S`~NF9XzO`esb{4p +MDPV-Rj$NnBm#~EnC+5;Jh&jn={d*xWPNnX#TqU(W^p|)e{9xZM8e6`nkug&#nPRlQej_qakHUFffla +FbAmw6uzDZiuf?rUf5R`<2!S?)Gs3TC8aOeHbE%utbcb94zb-Kfd>z--Eb +q8JSu-NK!yFnNG6o1!~909!~0J=Lv(@Ve))RoKF$j*vd%*Bbn&PBD +wb@XM^E}7lA$jx&iwT|*VXmCDgFy*`gS+1tIbl6(Ym~owp3W}El20R~9F>aQrM*pTf2pQPFpYdm9-q% +HbTcW({Ok=#>Z^}7jkIdoJlj@91EX(tf7JeV^{(%2~!uog4PS`S-Y-_E>*lT$Yh`Df1*n4%JqC4c+TS%KVn>(;*W--e@$~8mz{g8cYF{c60UDCimV$LaeCT^|VE(!=|#uX*q=Ui@|ExZTtE +ydb&=*2XQ#htQ+a3cNgYVfRTnJ!ilPF}yxqXpvU@QXl^sd4Si5Qv|8O;_AA;|dx=R1Y|7wXtuh7PQf)U^1_1aZ#Ez?1m6K89q?vp>w{T9aH<{7w7=_D$T82b6n@BB!f{j}L^{`QY +Re{B`6>7u@w@qMen^Gx5D3tBYK)d{%~G>7XceFhG<%X(YML%p&^KG$#$98u3)3!A}LRO8v?F&NJyPh6 +ZP_rNl3#P5}5W#7DG!I=8LOFgT?<>+w@U|i)GSF=TpYeK|$dLzcOFk(Cf+!H3BLw?R28^^OMN8TB7Zq +#oC(!WdF<@z_%ztdg=_u}vZq0T_%ax{I199V*pp99O{f<~j!?S!(eW3iq7-PK~ +=LPL<%=+}PV0)4Ef2!{L3e$~vsTooilJ0vMvZ(o+`bs&+ZFWOm&-6w5h{d)m9)12r!-!*C33-+MPBY| +h+VFmQSY=3972zB2RPOme`TVUg+9prBUFrdq&Cuy?!~btk>L4QKWaM9naSo2}ZxPn52C?r^aF_e7$h+ +yLG#~vO5~ZAuHOcaoPZ67?4$3M{#HHVOwmMx@Jq?<=@&|e_H?gPWNjwMI^&rj|!@eZLw?b37D^~tM1U +JWtUAs``b;kVJD1ETHgGWPcQ&L4Y+c4{vSykPCji^h#!c!AOA@!=fm${O@_dig2)tm6l`c)Hvw;QGGx +63Ry9pAQYROP;eXMVS(sQz9~R{2%3tyu>c+usH}R6ZXznHToWGs+K)To8bdK~L(m_)+RdPs&_|qWcTn7iprKZJ2ec +o~mt*XW5Y~nJgRprmYJVJ$*dJ>X!~0`NM0;1Gz3znY{$P9DBZT)?;^iJ`7}+BuG(PJ<2H?egQieK-QT +rq-YM*4k2KZs0S#?<1QXPuEqxV>3+_FOhDhF(L`S2g@ci3;b>3IS +iEiGD?FWwikaw@rw%k6-w)_Uoeqd{YqCtnr +2T_1JGhZDpA2*Vl{`51r6K1&a}Q}tklUH1=)p?Q=G?ii5rfb`KI|EnAJ;*t6q>JrNBi~ +M%cEcrCr-{xz~LFn+uvM1eS!(Nkiqtm_BDc}oIRQw6Hy$o}yPQ$yj@VkHEyDYrR3cvdb-{s<6Zung#- +(7-tmxSMak?*GB-PG{Aa=yD1?=B6$Tfld7@osMT-RJr4D!jWY{H}!WK96^w55FtqyZLxGKm6`WzPlFh +t_{C)^W7r6TNHjbz2AsaGEO{J2`_5|ynqL!r)K?3wwZu;3E_7W`OblNj_^At-(7)sSA^ds@ZD^@n;m| +q#T?IA{ZLDa)|&smzLE5jci5-aHMf)ZX6*d;1EIDR(w|M)3S20@xSSt&lRmUVJ7fN@J|?`!@w^86srp +&X+iO10w|f7EXYP~gXX9u$)K#6$en<}<;(wnWd?{eGvo_v)&}{RT1n(b5+DY^t7-`?ey{p=s@9 +_SfZB~{A_pq%S%Yx7F|5wX`PxJrR%Yy#E*tjyc81|)<^%lm7gOKgI9YSw#FpeVrQ~oC(AZ(y#_yfH-X +a~Ju3^jhAqS-2xzUZmZ_wRLaUFT*fz0r=H)QgLQXYm{~<#ubX&+w6UpR>mK=;L|Pn&9^R9{e$AM0q04 +1r?v5zJPh1Fvh&p=3G-YQ~pNG7m?wf{*kmzao>%4JWH5+=#~5RO`VWO>}5j6zL~P7qkSuAkxNWGL7Ck +4S?075gV)i9_UL`To-lm%;RiX+6;~d>x_TiCbT|L_$MRe%eNV|c)ZcYJy+!)gub3~qW~}a$XqU2&8Sn +K6Xh->Br2EWq=E-jv?z87q{0n)88u6))(O<(l+3??<l+%DB^(rMtV(w`r?dJzpHW2J2aF-0 +dy0M&FlYxR=tFV4d(*U_9q$kmtO*YxLdjA4c|xLpSUgqvBXO{zDHwkN#tRTXlhND=+Y^Y5Z@b70G!My +^da`Ln_yn4!N{s>2rM@c&issuf?d>5>c;w&DSMQcHNq#L*tcMw1zURSX?(8DiRy?;0@9ad#s*8#?icA +57rp8%Z#5yyC%<_)D??vo2L7zpRK+}+Lm|Qgzj&qJul?aYSg`xxw`Hi{q1$*+mrl;c3v@lAI5*rS{2K +b?KU&!<#+U;2wD%mz;Em6XJI+GpU>Y{&wpTD)cGC%Lr$CxKAU6B2JG(M9_L*NI`j&4zZSwz`K&itMvr +ILTeM@-gFErRdF|JS_K^mzT{_fclmU(wJ%VpXrV8)owK5mT;s=LSEXar6QnVymC$UwNI*j*iYi7%P0m +k2P{71akxJyWlyi4e{+T1E`=VNK(#RXjv(H?c~w1Mz^z07amO3{CwS22XvzBQV*eatu(f802F6F~>Vd +t&hg_Qc`~?1{w}*b|E{uqPJ(H}}NiPp~HzUuaMK8hltZ-&69A;t6@D(rm=e;GGKPr%m7omOxIUzui~f +Qu=6(ak=JOyiTF=Rq@;1Z^e%3^!(AW@u+yez&r({*BOHHWcr|KQ=Temu8=n6hq3l6Lm?UGYBSD0`akj +Rv)PCPMmdx^QhrYeshCYBUpy+ldX$~Ck!MxLEmyftUTJ4;#Ah*v2ab)7N0edsWw4L`m#OA!o(sF~&)T +AVoily4nM!73+?0PyyWuSFZnuN4=9$rCNpH3MTJgcrJbQ#*Z-cEbtk>flMRGiCl1}s{cI2A(Hhk~Gd- +Azs<0*`uBkd{~+lxBPub}9F&O6^Z5;GW<=LAtxCZS+`*B6nlkx1>i4*jnybwJq +N(@`TqB`Foj=_9POHefiR!L_XtNWPC1pr@J70r^_5}HO77K{!lpP)=0aW=n|UN6*GRuNFK!z-zhikt| +y~C=0w`LK$LV$74?_%{+ltE9GDYhwxkIeqqZYgB$>Ck@g;dk|g^&gk^gxctn +JrD4vZQmZuDF@}~n_Z3HAH4ydm+}b9Y1T+6}s}CqV=WFZxygb}-a7d7|!rI$QXk#&dHj#xqg)<#$cq*FI)XzDC}cJ5uef75H5P{4K +|`Z-NLi9{}%xmd1QfyIMg|YtG0LYkF+Tq@%FZ=9eyvGEdV%lens17zPdgD|jaqZdCtLGH*kdy8ztvhmni +s%clm3{H$@*4c&w{oPC%zfcU;ZA`f6w$+9AB<}@mI8Mw;ZJG%bcby7>}9LG#leFb6=jrdAVxA)YfxzM +6iFVeald`%xe)0Tq%Mcyk}h8h1C1!g<&miwWkSx?{Urh`@PEkJCvw=FQ{+JY$8n%^4iHO!zG> +m0OkLpg)}r;|TmBp=-u79hLW5dP-NQp=9bGFiy|jnXUa(Cv0&CdrEMQ71I7 +-Po}7^0F4ZQ#_rKXeUg@b;Kc-$8HyaADuH1G8(+)`3eW(6 ++(5G$=~Gh_={gXot0nIZltJihA026sI=lS{n7k$B#3O+5u>vE$l`iI|?+M?Q>I%=Rud+UrdNFZS%*R{BiKysm)j;H8c&x1Z8Wnzc*P +*w#AQeBfOz)?_|?eAZdKcEH@@0!`6uj)Cu5N<61TN&h-a3HjSu{h>CNEoV%$*8;1$w4u4Q#kxB|c#nd +|wj_%x*^bm-2(Ncg`CvAskhjcYT&#?#5#L+P@2J;1P4}Dk=0BJAiWaZZnW*@L)W!YjjMDF9B}u&r_~3 +Z&(3R1-Q?uNCJHqz!y>?L;m;+uioj#Se3g%O-(lVVNPQX6LdhW1;cby^X*H~0;`M?~}V749EuFPG(T# +U3kB@ykSt!Dm5+sy6AHZy@Ir?4*w7s{#Ifun(6T-!BpneNwd*3g!)LlY+$f74;$(0<}q&B@|FGJf3Ng +4RLcQZ4Z4`PKTSrCQS9AZT>6mf;Mbeexg4MjLkk4;^7VOeKEL&>XF7i}ig*ea45N%)@e|OZ`(pm+*ZN +ez#!U{b+a4?cCxyrE9Dy3_$!?Ie%&^=`DHud7x?A<3-i!sl@u6 +<6%AfyeO9_0Kn_txrP#w*4O05(TrYm@q4i&#WWdOqebI6fjE%48rjG_;WM#XsGRa)SVOoyYbF)Y3pdfD`1s6W0{AD +xkE|-zp06|VHfY`V7_NDzo#|k6iasxE@w=u$=-l9*T?enqu@#2cQW7^3CrimlWEQaR={wCCi>P?{$tu +?FXPUdx$9d`OF6{7%OVPS9=}3ZqKsBn*vg!?+btOtCfs|C++`Bp>C7RW;e^~@w+?;PSh6en0dtOzxt$ +M_SC7tPZNQpvzutiNlaGG9KKYa6y*KnMBYE#<{9WZ=p7ZxGKXf^8U}v1F%CLt&z&#A +dE%@7&bel}f5W^*Hc`m7`q2h+j=OC`a|;8ZHs;V^oQp2{dzs(ShdWV~r(Y1?G}EhJOW;zVSZ67?H7~{0{G0y#LY>A%tz1MY38-jd8gSk>)5^D%yJduo8|oY29q|MOhNR&>=U-O7BFX|}35MF#HPAoJX56{Z{sT=)L$kqgrj#*{PfC>giLm#G)e$k2<+G9(j{WbK-;uxJW;>1 +%HK85zr|25qHuZ;E?kFhE$c99wHCsTxD$lv-~701ZYq6a&(^kREWZE-XH+wgyiF;Cjlg0DH49t!RHbn +$sc=f^r}jq~lCAf!(JV8oc$KCNONMCU((9GG^OMfkU#4|U&4KhBleca~uu%(=J+d-6?dyb)i?;y!NG$ +k)qzPUb@Uxw4sbccWY<`Agv6X68t?H2Do3!AsFP0yoa#g}}G`Nv<^JsHcAO3;s}B75cu*@PT<%`h~={ +mpg<0`tR3A+NPd@eK9^}dkaLYcnU)sT88^{V-6)H8M1`C6HLroT?R5o>skmhOI!^r@OYNH&KnK1uRmKQiK_a=e +X>iFZzcj72-hK=MD&dnG~lJ49!tUD`S}RZf~9ayk<%Y4i=_y_rKiR>|icDTC~m&v{9x?*Qzb*!y--&v +@>X5$(+J0NFbaGCFmtU7+c=7_z^LPnzv+Q)gg(_48%-oV0GrrA$Zv8N!14W!{&%l0Z+ule@G@b+mKm{ +3x4-&zfwv|F6=%tlJXtuKTZ2Mtq!ezVffiUzaicyY6=_`5S$1KPS@mhdShaICVCcM&K&#`TCElZ(J+3 +TV}NTQ={GL;gEzSdCbUue`tRHC{(q?$~c%kC1#E{>V*kM!l_T%4Rlm8kJb{Qa*qY^%>1I8G{u*l0-Ux +zTiALF_%XKq^spiK218XDBEv~NTvABgfqWYKwx8?-JoH5I-qU+Tta#Zctu`O`72`TKCx|by(UrwnuQRGB9I{Gj&R&uwtYF>Gw$my`yYKa%54Fj(Lr{fh}aOLUpZb8;rHc8gW(Db>I1}$9V@3-c=-CCB +TRus>Zxf{}ize>Y-nx*?|Id?5#b`AQiN#WT&aW>)ZhP+;z!m(7(W!xycmNT0%qc#hVtY_B}Wu497>(u +Y~*__j6F~#^DC%?yvR~`%J#7-5Lns^t!CkylQH4!wG^mIh03z|wAYO^<0&gheVRJF^%zgNT+oBZZR|6 +kPoGGmmI_bB)a*9dS+w#c=;@-J%tXDK~WWoVjcP&6preK*c+nO_5RNZ7x65B-wOT-Mj8sJNK|=TUf%r +@Mdh7q!Rr;qcxI-v`I?KiF;FyD?6yJlBIb*L!8$xp?qjac=Tz7lSt#!2eUFSf}ZF7iGXjcAfVtvpmy9 +SFK$HIlmKsRyatWs2OM0nLn%feMFzcCuNLCnVW~S>&>XLZ}YdoSA8J)*QUyWFX;XdWQcwE&ToC2t}O^ +uFdx_ow_Ouyfd#t1|7(xEjZszTp^wiUrbzyJl|)a{TlGHJm>R=RS +xL&n146secGifUU-|u7{AiRR9naLz{Jn{P%l=$=9$m>(Y!?geb@WK?Hv9fRP+Gap}ue{<0adaUL>%*r +zBI$oz1g^=Uw>S#j{C2PT`q%5Pgit^Mo451N8AU#S|#F)D*Mw~p1A>W9T*T0~rqyppV#J8F^#*X!Jd}}!cxRxzhHPooKw60eIB(DL-uw;IR*Uja~9EIRC+4Y>Joo_>#?7FB2c+I|Ik}-Xqe8+a{h8M@{@BJs +@t%@)5Z6?(1s3E;uIO3&%tlCt&~LOwS%c-`rWq?_-?+XY0T~O_0{UVF-yFx7&N3Dl<4L9uoB51K$ +7%T5(>yCx41s;b!4ZGQ6|1IbscEL%bs_m+ygbHi|F&e%(~05)ee8Lz^&9+G7ycKlY0hQtpc;#4h|E_U +o1U7yICyLsD_zKZTFjR-*Cx6@v}XApj2GPvSfh5v7eMIC(h_YN}WiUYEzChDhJ+uNB +FN6OO}^Hs^ly$H?`(1vb#9&3~9y2u+Oh!YF3<__@XHnF907vv{f!6NrSx}>!YfrO??#|>F?)?Xo3$vm +xi*X$79%?{qlr?;~F4d+6;KE%2-Te1$EWbCZrvQ2iw{s%mI19Qgk{r#_x%7L{}>WIc!d-?+2MZYQf$9 +%$hZ@2t#WZpclKT1;b*1^a2GS4*DjXt8A6V%xGzu(AFM}FFri@~StS}J&N+jQs(+B~2y#^UEaerfe2n +SWQq?;-yFa^{_+b#BIC$Wi{QrJtR6C(k&-GoQYt!>;;%z<3eMT%=;Ql;%6{q?{BO-h=Z*t7C4lT7JKz +sq$^B!ehD1oVkGCE8y# +&?8v>8F(nejX2u&d-#;Sn1VvR1;B^CSqO~3=f6?EJIX{e?y+xi6mKKAjPRlfGnRuVaIQxW!Y-_J!gYp +D;ZhWV$gI$)1ld^Mr`hKz_kl|iLj+^Wv(XA`(oD{fEnWjV4V4QCt>t^m9MxtLFEf>0WVBmz7}J- +P#&9Q2`WC!mmdn-T#Sj+33xKTfwXFTnFA3 +UQe*R^T{g3U~AB&xjrfk6(eK>hdax3f6w$3wLeb~8G6iA;I%(;TH1?aTuH+f9Ijo|H?vqaVRG-pMJmR +vVrO>z&)I4Sxj_FazuSD=4BPr(19+Jrjt+l-I16y>dUzy@Le+Yb&_gp2HNsWKa!iN +Wx7dse~xiXPac~09N_VgNOT?*Np+pfjd7oXVI0QJF*4V|vl!dLI0e^z7~6nV1leXX+WbeN@V_kmr1hY +0`jPfWF@~ey@AC6rZogi$`K-+2XpF&Wj3HS|mbS$2q0Rzhjo!6C*FMmw|9amu)-6Xh$DkeKqMjwNuKL +&eG+V2Ex^>ID_#S9vjC|W5<1;*bzkc{vC|A2WWy?GKw#M$GZ58KTBkZlETJqo@K^GTk&I1M5BPlp9i8 +IVGf0+d^H}J)cd6myZ8{p%dz=wbq?@W?-bo=i2q-{fTUAdNAQ8&G{-L~rT-61WpZW`@7%l>JQXCv>N- +vSKK?x9Z9^`TwXXKZ3S+L*D*vs>C}pk992j8=y>q1AzQu18%ZzcmRu$~#_eDkwiUrd4Lih)TWbVxT$D4C|cgP%j{xv9Hb9Uun#;t4oqy7PPFM%1lzf<(g1xm@evSlaF9s}BcpP6c<`3%&|C+bydu$=AS +xG`Q|OWo^mr0Bt#ysQRIfX9n6Cgq+-QXkz{HOu%~1CA{DDQ(tSdY^@w>P4ovgCHgOSibC25y^Zhh%+b +7EH`nfN#vgg#GBdUfU|2?8;Q5J*Tkw~>I)2GzzzeQ-f|gi;J`d&R{h>V`xZ965Jd7!Jvu8JLdftZ2{t +xSPw;gn_Jab`1i)OEIfEF%g%nWPGSGzQ)v-Cx+K530ewIu+@K+kx7FmKUZd^`F_tseWa>Q`vdrJI!vf$k2XOzq8= +@8(&<_KBN=6}q1`s=@1ZKkL1Ny~(+i-kiT%#Ux9vV_ZFcKMgqZY?t?Xc>WRopP6j&54kM<*U4M|5pet +C|G_O5+@3&L6K*?cEBj~cTi{(_#q`nm`Zc>hu-xu{!LIQ29ejTm?d}Jzb{hEFXB&;LEr1>Ol@0JCJfm +S~2kc5wcHpv(+#3y;wO|hBco-9SKVVl%UWM{AbBjg5ZIJ;Vj>m*2Vd631$@!NzG^eX~1-t2=!nRB}y= +}mWaM<@9@T1@fR^A`KWbOU;D}TG46TCZr4!Ji?q{(D%(*%B$GOBO;#c{FU=siTGfY;0GMID%CQsw{+7cB9^FIKKS`-JtxeCV2_-?f9o3yxX +_YLyb?eYxczP9<^!5VemT({e{I%$ietf19*^Nih$!Plr|*Db{O^N71?;BzoP7xp;s^9 +N98A@&g8Wuq+D{Q>mB`I~*R53E&2C_&VBVoYbOb~nqVH|mF{0!J(s$Vk8q;t1s;;>Us=)WM1j6UNz?_ +xe}Dv1&gP0p~fvP+=q5?oAd|uO^4*6rNA|xbt~|GBtjOo{skifLnYXME{)E@>%QK6KLOB99Qxar?^CqM={3f^fi@Vx(ImUkcJy_>Jt9YFiDFdy=Y?^sh9x2W>gcu}|qaFll +`tV8;SI@hG_55_R(wj(9c3`lOope`JLf4BpvCeeWz1r{L=SJthS2ao1vmpiI5AiZ|rwnvc#SIR +p-MAj*0_Tnfr2sjd9AcZyea$js#Ii8IgPcRZApZJ3bL!7ieL;-fkU@*E}BrnCFqH5$%Fbd{JvU)GXUg +mhG+|X*Vm}ZXVhN{gC^`rD&0C7w=@dpeI7Z-az}1owLtcGb_p)JGbPZem3U)%?NrCYA3yD`&9H|;m(rly`FbXs!#4Ij3EPjw;a=H&?m6C?NPKM>r>H+efK>AS}~(_-{nc56<2~*Oc+BeP +8+o1dV^LlekA*eMJopJy9Ts^@-AUji*J-YPaE`Nf$m6ESU=zl@r1k+c*qf2amHe+$bKtSWE-IqH#sX39Tly|LSyK}daI%nTl+#)KkN&QrW2n4pBHLje4eV +s#^=-LL)jebhxo7XS=layupf^BH~4N1=E?c*5Mp!Ra+|kzn&$oNxlr4Opm(l(QNIm%Uyy)tf&SD$Hlx +k^ibUakA#U{f_9f6DHRhD4F(-v-kahes+oWw1qsNGMa*QZ@55~wj(B_Hx-06cNZ4-J#st04^xB@OcI6 +zz1c;W9BL-QybQirf%V@IyT;&2A0$s9`uOUvAY)Hf8&YHlyoCQG~LBK+S9TzMBTgN&c^CEI8^`=UeK6 +r0Ybgy(1(pU#+c_Co7W7O@V0J{xM|Sdz7-%0a7e|G<)7aTI&_t?Z86w=iGN>L<2@ATK1L@Aa##OUi+B +_T=lFb@BF!+Pxx`x!GIso;)V?%WsK}T=JNnMKg=(!?Fi_WgqrhrzQOW+jC79Ckn8R`Foq&)3tO7lfE+ +{=AA5|-k9{`WMW5dV4bdV2rL)g#zYm*IJE9^?_=99Y|j_VwxHh^Y7@`5e};OQ7hibch1hXhq&=+6rDE +F1$-Ir4*mc?Au&(;G$4xu6(K>U+J8Mc?auzsVW#+?saVua8I%>xF--fY2$ascEd-2lFDt&M*;FEG#>B +rf}p2w9w{H=(46NgP~PPE0c2mI}bPkXP-0hI1*`vc^ak=$jucTNG#^<1GdcTi=9=B$8>>yg&74c9Og2XO&KM8Ku8WPm|NV8EF{!L-me)G|#=vrM$*i?ms3 +X^UaDU@j?InVMo!;ZkW?VWs@fx%b>RGf%L--{0^1|NfWX!|}Y&UCurC+~wVO?|JvK9TTCA6FLIVN_kHglv5X5ITYu}yI@<;L*EVkO1$&i#1)O%w&VIG?f-t!Pw`oqecCv*^lCrV4tVlmVJC6=&jy +!s&fL$0Gmy;;|4t^Btz3MW$C-oYd}?h48@D$Ey>w;8sF%rqr57KKUVN_COS)DsU5&+{m*Rg>F9#dbi{ +C$?mrzJ;a{L8Dfou@0pBq5?y2XSwSeX^V`q&-S!XC?%N>G);sy3YgvYI+r|;q +PMhMU^oI8A<52f5XB6W4P~U3j^S80Mmt4*Rgp8uyf5i(84QueMKn%~%fQ9EYo+*TNh{rDu3vf-_$v13 +3qwd8W1GMK5YR^7AP5V^DeNE@i;+`;owA&&wO>sYJ?4y1YXUO4tbH%S7p78wgig +*cRT*S{eZBr3jCiYRseXh`5oO{}~VnmrZGiWR59_>lp&pi!{sD&_RpufXChEID0N1(mSna>;6;4^WVE +-)v1VOXFK=r^JTi~(@IURfH_)S0M%wI1?%8GdKX4*ed>?ZYEtJn$PRHV19?{_xO6;5jZ=JiPdM@4tC? +N9=dWM_n_%e?|m9hrSu>zpNeFWU@IJW+M;Nz5?E@R{ug_&{i&|ElZsT@t*dseybU$*3lCzAha53|fN@lD%hC@Tlu59`GDxkKPxvg&Skng2@OD3bT*Sob~GzCM2AJ=b2>i9NT)9&02I$-5Ec +DT8t_dKj;`w;R_z*>GQ;4iRlX7vlxwi{p%eiu+z`8)>h#b4SEJ-53VX-7D4X$5sMiP9G6AclbVHWX}C +yW41Gj|I0G;^f}i +6E&v)Dh=|=WnjeWDG-Ir@Nor(T4-xsB%8sGQvd~-Y>-Ejo>bQJsau0O(Ux3BR2U!lFNln}SR9nZc+I~ +d{D*8L1!IujlHFMd8Q@Zx>G4)x-`kKv8_uX{IO|J4fjALRQwT>;(w4(|=SK&Ie>&hG~Hyv)O`yyq{EHSTavC|{^!e}I02Ep4CtrK^7BFF&%)xE_Bq_DvokdwqO9U&r^C?#wR5!TWTWN67iJ +?OEz!T?o8m1)sm{5rTWNr;0t3#5bFAFLi^*$j{Nf+427Bb%%9;}{~=xQUbKO +M_t8U3Ea#$1EfG=iZ5Zxbur1i5?Osf?^iPauys`!D+^@zQ4qVvwNtvbtWO1e&qNa=AtY3h%aNqcu9zi +^<*-GGEu}4DXP_)m2{%@$|Qdm?1et+bahv4gYNx5fw2)PqHnwI-|UO|oW`a3%K8RYndhYdWB_J2Z`LH +yg?8|i&N=o)Q|r0&E2MtFFcUGW>V!EL&>d*MCgJf4$~ouQ4>Mve0#elrDfdFW)G+Em~kTbQR@U7IHJg +nM|c4p_Ag>)9tTM)|`J_e*PceiOv|4bpCawBr?eMw+zgx8vzoUTYYHXCrZ$d7Kb_Ch7I^itsfM9@Fvh +2;6&qnsIZTE@UshhwOzoGdTMw{$Y!B!8xFPsF%Bq8W{th}D3NoV`#wl`%^SVn +Mh#vM4$hv&{AEY}>MSU)!C{LZ7@SGI!tTQu +kA!Nf!L$=3Pp^-+wE&er+tHA1)>+C!`7B{ltgIlo?bAJYP02C( +x6%4lG+0;yUh)vm19rD0t>0&P9o_7tX)Mv|bV-#%O3?(=Gz{{l_t55uIamFU}SG3uDL6);B(Oyywdsj +~$QrX~&Lj)UjAJ$X4m={{G^=hcAx9+DD+B(6S?9EH=f54H~LT8Zrdvd%Ctc`}8bzbR%OqZT!0^exWxT +jOQhl|C3|U$JRGK79IKJjmM&gJ=j)v+1hBvnL@slBVt@C_jVBD)_mAWj4F>doU1$?8j*+ZL)Eq-{S@Edda$1Fm*%tb^g!d4nhDN*AAUI# +GxRdJ;hX@zCrOO9f#Q3kpo&Khp>F7mVu-u!kled%Z~66hoT8lZ8-6?|T0T2Ie}O+c9>sSH{N^0za#@Q +pSA6i?-WU%#AIi_FzV3U0M)n(B4g68x!;dzs!F?lFaU4{Ud5C`l9dyrP_G+95KcD%czO%>5xsYCE%P~ +CP&?i>NH3mNKs$<(QTpI`%Ue&M$=V6ie>2qSgK8%NP%CF(x;36K5!SEYh(>^4?gD=wjvq%MSt9|=ALH8OFr;^h;s{FHm(YxF>}N# +KhSs7P_Ki*-~PT~FS=tIdAKJn#KW+$p5VeO8VH+!rv?a43s$bl=Km&J+7|2nbU=xa~9A=HhrayG6%l=qH83ul5Dw!=w72Y~`1yYC(L4g}m=jtXhqma%QYPSj=vQdZ8Xq>N?1`B9 +yS>mJpn1+>PQA~cH9WlTV@27EYpNf?JLz|xpa;(okV`iQzcsE3VgY{b{UREe&v_3RKcekCzHgK(Jts_ +n{3Q6WV&os+f)!Wdw~h>+@rw9%$%6GMX7rpcK=uA0w+EKpqU3N^hUfP7EcIcB&f=K3ID0#u5qSpqy6S +1Bf_qgzypDgX1owaLb^lfgpJN$MI>*V{{m*MWl!%z3<^k|d;Coibf^m);>pkwJEzg!4iftLjB;V|H_J +5C8h<6rm(N}Gaq%hdl`(S^-XrE%5L#g@m;-8J}zYb$Q5l;cyjLYm6Py3x9?#I!Zhc)hi_s-S)`3di4= +ipgxgy#b8_m!;^&n2`QIonR0&w}6hqZ@wnB+qDZTW8XwgFKP4z7b|Bx1pzT?uc^2H@TdN6{a~ +#pe`}XXjqi?)+P_tfzgh{a9VqGvQHum&I?KPwf{r_%$9aD^}}R&<`!@-{_9tNI@IMbu?W=LvRw-bJk_L>t~>H#t?OnY=y2V3YcW!BRxhusxg9AOWg@4F!MurHetRX{R=9s7d3 +snIz+a4-9#(&@Ff0V(C;Kf7EuL^k*sZhf3`>I_o|B>1)l{E?@iE$u=;zl|`}?pNAXi0e;QxqsNpk;N3 +PStpvYytF4N%p7>)`=p*AWeG*>x2R?hQI1cwx +T1~KAZ8aIcV~T<>EfnQY9Pgu)m4&{x(17B+KjY}^!k}9ULzBFK*VM^jQ-IEa-xDGBPzTTs6H>!&hJ5` +xYD!oeh;w-Cw6I@2*$jv8ywEjSw}$-|Q5YIBb86Uh%xlISVab@+33rC^J+E>90=TALY+Z?TalMXRY`C +LpP|5I--=!sqY};`_XoMp2K^eyc$Vw)sFiKc}<{IP0+_1Z|Y{Xe)wzJxW8c4|)K?MJW1+ +3rZVsdw_ojf!~6~gWLB?5V$Q1!M#;6%vrSUSm+D=u1|!I(jj0r&(!g~3a@v}AI9jdwo3kzt;LIYZ{P66JmV?Z<3Apmuc-(H1#vgy4P{Zc&(N|_CHeFFoX8O +or}maYSxRG^%GY!TpP>(JK5ucV|J@=<}f0kN^9I$mOk>t}HK`>_?(rx@B82;38BgyL1tI72`+2bGdc|+4FYB1%<6lxef%99k4rN1`L5EznI99^t23=O5 +Y)b)Kc-W;vHpM9$%G8t6Pitss!1UqSRe|4K;yAJj#)Dx@Ighpl_${YC`)pKcL&IS0bIH!winME^uY~E +@t8!0pwyX6@AKWj2zO|R{`I+!TJEwF$J}l?s-?VF?-hX&R#9&b79VJ`te-Y>&B +-p=NgExIzDEf2YhNkMvO=M-&BY>hqe`B&oprkDUQ2VdGhxax9|ROU;JIT2mH0BWEuJSKbvnUAIeb!Iu +P#$*UO`h^BOttRlmS9#TVLBoYHAP7;9&npp=GWE1_`T);1f@EmOkaz74rExDO)t7I5F1yX!rD`My()^ +*8v;%JB;3d&T4^!F>OU9Hkw^)!Sf9G$0M)^Y2?h&bmO{k5)e$pR4%&*ixlq3d*$s`UWZ21|?LLYlG5B +m1~32(T2PdSkw^4S`3i+!@AF)jRNmS^-RAs9O~;gF7upvZx-B}>0zA6B3%2@8jn^HJK$M=)}wbsgu;B +wmFB*Q3ieYh#{lERD$tp49?I8lz$sOZws0@yYct@KDt8dvGjeYY_bs@4l~*w7?fU*m=*^e(=1Y3>8Gt +%F<)ycs1zjP(I>pD=2y*G6KY;x4{$QEQx$9vbdXL8J-|&6w^#B%t?_i&?;2~R?aR`2+|16Aa?DIPY;P +>XAF@JE68)5|ar@1@!Dd^6?J!wb@xUc2zVFBLUT@UWlhZHiy5C;9kO70gLunjQoE5vjq)emvE4golyD +d$gIZI`az^|t%GXjgWnt_Qn{GC#Lg>`z{-XVYu^*wt`jT4+6;SBi5y40J$y#Yc#FqGl24kY0gq*3-BL +qBtk4ZNx=ycJ&?5Q4Ngq-t%Q#*Eom7&yN@ed|R`Db@#&fw<}v&3u8cW_A>6_iM9aB%APQWO@2?z1K}C +yLGZh@+n9$kTzp2Chx?me?!b1`Ltk|jQgSjkHL8FZM= +&69~VHL>v|ZkUg?VSQm*rCVs8hwp^}%co=toWzkQVTz8UW)T+XB7@7?qc5A^`&Aj0swanL=Unf9B9X9 +doy;hZw=3wajYFNd<=kuBJc_o4i7&S*8@I4|7mi4BPNLU%oPzuZZ>hmkwu?y0JKD7pJ{_pKeJdna-a= +I%kNdq?gL`HlhwV)AbY`Ga+3FFkO>K7sDcN9^NFv1Fx(7d$Oyy2|I6iCevQ0v0^WFF;^bM? +Rz*+AN)SrFa-7Lb7kJ6@V-uN!Q?jA#m%4G3SHdv$<1pSznrwV`i;lgEwoj9L8n3>pgT52@WYf&?KtEp +j2>jq(zH%k}mcwra{M7SGJjLFGdc8QmrVhVl_*kqNBJY!MA5QCsuJfJpd5inWN6^@i_fPa}Z3*?}tVi +dFK1$1_Jr@`c>+z@fEPVmSl0MLXTNIy9d>|gaBg^*#--X6i6BJg_%Y~mzN98}B8`;Wd#930+O`StJsG(s?iH@zr{ +hZTioeZCirQl}L>Gz`F@dn=C^YvjYGkrJXjsqffBo6R3B*sVU6X9Lp9L{OPx2`;fW0kn*;6x +v|@2M!Q<8@ItheH{qwTN2=6k8d~-wUO4`VgZTJfRnj7UnFZqI#; +}zuymk%8bR%!sV%0-fc#qf$@e;%F9?utqIKB%#Quw(@BttKdVK%sx#zZV*G3?M(@Eg=zN%V$%U1XIbd +?1fdPaj3Tfy)P3k)I8Iy&?W2!LjQK{{#)GVJK>H}ZOa0)7bA#cX*<_zNol?ek-?MI#(rRgf(tN2O +e^)H2exMcq4trY;{1V{zsg7+eMHxXREc*($&%ynzfMR>9!#soEOepsZ7+>Z>S~(!YcwN*G*Knm2u8R3 +g_@Q~+vWv}k4M*7nAP;ju_GI|=g1G%4?nIyoKu_Wx%P5z^wuX29WF3C15&^PK0A5SHOOkskeiLwxG)_ +?_hj*?be?PTcUDMqI>0+7IK-zqspV}$b8wKi5o&SG--Ld_Pbtm(`vF=P3_WRrxArbCMC}&^b-$L;{*Bj~(=Dk9bcW9rjbMb6N(tDLlz3BC4LuwziPldLe)}nM7? +q%Ns^ztg`B^>k;59vmNPW(Y9n9s=OO3UWZxAtEi*%$SM`Sk^iXL;jiq7tyB)3xu|nanzCUX){~hAb_wmH-bcL$8Kc6 +K&U_C8+*5mTL&G*b(3y-~atK*k`ZMEI(4i_nrZG}c__GQ1;M=@(nGe$~n~C2o^yh01LE{a;BZgh_gFZ +jQlcf%UJk3;;OCF%Rf-%OIEW6lBn@{D43m$$Id5~A@BDS*4@*&npC_j*S<;`$EUQrIE0u6@Wj?gy~SA +=d)>>suzaRBH6^B(TOwjodamIu@73VA}EjfXt9MqaY6c|kbv@6rI_Io1=6~20Y +c{3@?RG2hDcMYmzHudfD|j~RSBetC9H*S)b+h$J|tnVzs;+Rbh>*9{}Qo36_obLF&#DonEYowpvU&z@L?gx4quZ#x2z# +w)d_kE#@S5w%^k=HhqA~jq)Rq8sgh55!X8TPyygV(C|o#EF7eyR>&96SD*rgd5a&;6S|Y1+TM6+Z`X8 +}cdIFT&yd;2ZEP_v2-GrT1Tl+41AXro*HuCCLqY{+h?HHwdGrdUbW@4fq6#Fts<}Qx<64@xcvb#q$G? ++(_0ik;dK|r2%EJ`v(4a*6rIj@W*lA>o<}C+CV9tOSt();UKSZ@Xl7=&bZ?REPvcLUlIG}XVZ6W_)S} +Lb>IBv?)&CLK8tUlE7^`K_?qr^TVrjR{Xclc&D3#v8&Mn4hlrLFeS_!$qBTS>5^bI)XcwXbh{h4Ujp% +Hmi;1ovT1Ip`(S1aZ5xqe4ccRP9g5FKEfM_PsRH8FXg3cxS5YbIU-yvE}^deEubU_1%b|KoA=y0OriK +Y_GC3+vxO+?=!x{v5lqP0Zpi8jv=G=yj*(NRQGiDna>Pjo5K$BAwt`U%m`iPjSRiRhn1TV@JsAR0+@6 +wySY=|pWr?<2aL=sKd$6Mcv1=R_|O^`-LZNHmh@SfcU@rSj-YbhOFczoBTWhqw$hH65&c-75@H{8|N=C|M@!ZzlCVH(LH>@F~LVqxP-7b;ZlwNTEaduAB24gZ`a@|!p#X +E)x@tQ+>G!=jXyi?j{T3j%NKmyJ-u+keuSem@kbqZ*XwA)o`jP${HGI^ab^&frJkn2nVRs~8vk4kF3{ +kj&tPvc*z;s21ve}x9G)`VZH!B1&$8DUyrXU}T<%Qg5#4c?+jf2+oSyT<<=jen)a{{xMGl?LzA;D +eg@M>P1T2A|O28V#=1;5rSypwZVw4Zf@iU$4P`YA`#YsqY$WIN@GD!%w)^mngzPgp)M>X@mm^7ZL7Ac +rD>hgtu$_k81quHU7b03EY*ik#LAipRj>&Dd8}}<%Dk{d{7hrBH>n2Unkx5?Mc{6>hGj`c*99|`9_~~ +?|+g`y6ZcQa7)4kC*9>)ane2iTL^cT`Xby-%6rP)Kb&wc!qZQ=^DjE(uCFq}T?khZ4kuhsI70HT5x4{ +4xElBVcsk+MGJiGh{in9SEYXBttKq-B#=U+WtZ~=RMZ)cy;IHl9wEdH|eQWyzZU3aL|Nf^1ZbNwH%yg +68oGH}@I3v@XkqflIWX~|=I^FG#Ou)G+c4S-ZPKTK@vrKk}E1ql4aOB&h3-HaAVCGD-Dcz#-ooC5%%< +RwH@c9kDrd-P`t2vWn>5CaLSk3dK+=fhZuGwK`Bj7$d8pesk8S4!9Bfz0E{ +BFNPgv&25+e{!Y-uHu0F0B$0{ +zZd-az^@AB_}B!Al6bPYx&_F!p_;sSGimUL!mx%uE>usci+ONL= +qp~;rX{nAh^)>+PQbFsWZE8t#;1=K^j^WqZff(Y6WX_@9MQ(>;dkdbed9)^tEe0!md%a(?9!E}T8#NR +c##UXUw!!7+ry;Xl9ep6g9oW;<`|40E2@>M-P)3S>Ub*@nLmMH{YBkzD+5C{kKRenD|lO2 +c#tGaUw-*->b-@?uIG6UWk$Q&Z#J%T=uv?znNrSpQ|crur`-OUuu*S`1i+>=vvQX-*}HkXre){!4XwHq__4>a-Xso}*R#P4{4U5&{ut3i--)u8vK`@z5>2GqFi!2UT`CLM| +*5ex{cU^tGap=bM_!s=$+Pfp$W;SKIG<&r_Gj!=0CMcCXU +@xm+&x^djOVS9!<$`y=`_@pe`DcYFAOJj+pH1X7}Z|h6wkX6+!$?4zNX~WVr_gqYy7&AzWLZV%PpbwsURT-mG!`xYoxT +^%GjTZq)u=`wQ2w`bO}Lt{e3m`bH>ggnBdg{z3j&6PRh@|4;k>&t2in$_iO7{Ph&rT9}*L)9H`vy?!p +?I|24|!H;Y3!+>4OW4Q)DqQNUPc%=qEs==!?c&pAGZ_{8oPa)fxoR`UCc9y~NnT?s@uP@8wI$$g|-!= +xuuSvH2471(NSj}Gd`EKJrcO3kSz|)BqM7dML1wku`u1FH|2bD?g^A;Q+Z>6+z$vuyWIk5sJ=9X+EYYEA^i0EQ+znA#jNAaPa@)q+n +;f*B6vy{$1$o)-{>j3$GLH@UTiaC;CZ)Y9FEA4wxo@GR9h#Gznw1DVAqJ|#@O(R-Hw1%kRBKZ^DLe&2 +fxf9(&w2EjA(ThZ*eiGCK8nduIy#4fH^WfeJRJNo((2h*Z0e24Y$>T1$tUvrOet#W53tZCS&c^-Saj{?B!D$CTu=x@rBPYXP|BLs;a1B~-}cUf(MT-cov*mOEceRQ(&>jB&Njk=OFsww2aASPT{l1V~Y556y3+>+GBEa^D|_AT-?Xn%w|_S&g__K$}Kc&!=<>ody{ +*-IxQD#gS!kVac~b+IV?TxP;h=rUF$e7k8WvGbftz%&GYavGJoZ4nBKh3JQ|)b1fOgAPo(QQq +8tJi`9h8Cz>7E`FsH(1O8yR#HO%RHWoA#MfsDsKO4dl*ciZxEFPZPlh|lL|8p6x`wLh9uJ^nCFAhrYM +t}D;^5-66k;|X*H~(DYFLwFU{mnla*YKZK|9|`{S+w}x`|f|>!O|s5mp%0G@<&#ze00_7#~xp^_K9^* +KDGYo4P_fQJ@f2y&;O%*bHxiUzVz}dTV8$b^{w09cys%Xx88o|-JS1M?s|Xs2Ooa)an+tr_U_w%;M0S +Lst+Ie?DH>PwS9#C=q{oTv02UMJYy1)77>;YZ#{de-K{nIy+=K#(>QpG{=CtVQ* +xXAyvvrPGR$A34!&U|ZK6u0RMPt*7pX#7hw{_%-pnZ=sL5@QmX)nr8)o&x{ +LDKT&hx5IxDqknwjXm!R6{Vmo^j?KLyBi%>OAWwrxCzEJ4(OjYhL>)wnh%O*{AJG*=*Agu!x|L`p(S1 +Y@5D+LM5~A%Bzlx+4beKH7l}fD%&9+71JNj=Nkr3#77;BWT1s>U(X~X&h?W!GLUcRPN}^Rn4-!2}w +2mm#k$gIL{szL4M2$p~h-MQlBD#X;vqWDcx}E4jqV+O84?$B3t!!exm8HV_$24;$OU*81V{I0eVsfBg +rm2{rKc{#>I6DFeYZZ6oo?U2@5aO#Iz^BkgXgsvPvF3C((PV@75F5~9HXhO+Uzp2c3TLqta{-%_;b4j +RbJ=LKc%_0kg(h1u#GJneh|k}X@dM*RhC)t*|1&wx1{cs3pA +*3F_*O0B;jEkBE8;t`;A2-^1V5{r8&mn)G_Eo|r<+I@L%N3>56H^Hn^`)S!^G!QWB3e}z{NbA$me*z> +VW=*Y!>Hh=5w)=_`C-6tB{YmsAoPCBKa3`uElCPHWwGtKgT%#BrcJ@MV&7Y>6=~TMme1Eg*=6P-h!!e +iFp?>FG=-+%bBmb33;`lr2OvgF-%mJB%(s@iL4*!G!ymemQ{R!VpIGC`U$1)HeN;sTwG~r0Xw80>Y3Y6m;aTy865RM}pOE`(}Xu{J8k0qQ&cpTwu!qU# +Mfbe+2MT931E+H)2c`4yZgjWR0ahSN)5}r!9jPNwV<%Dk|yoIprS+^6uhj8W?8mCbQP)Yte!UqX^5Uw +HYNjQn>mlxrSBmIe=AK^&yZ%)`qxP?rga7)5zgj*3VAnZ@Lgm7z_KBX5R`4 +bK#yn@095iTR#hVT}`ZKeJQ2TT1CZZGvmI7I4;a0jWcHq<{zeGu*>{^+PyJ%1_uJ^+UL`)DPhc1;a)QTgnP^Ux267pa4_M1gu@9BARI+_5aBq&g9%S3 +JcMvI;hPB;5so5UN_Z&YwS;dWTuyix;q8Q@30DywN%$yXBjGy2F@)<0#}d}Jqy9#gH{mg|ya|t$o}*AVVRxSnut!u +s}9zX%%$N6Y*WjwNg)oI`jzVTA@%*@Qg_7ZLU*TuRu7@LIyYgv$vxC%m0-2;nLzFX0*~58;ba9yve@A +$bV<6ZR%-AnZdplCUpfBjM(RlL&_pP9r>wZ~U0^a)qW^a&r7=@YJz=@YJ( +>C=Ew-+}lO4kqkNIGk{E!cl}n2*(i~MmUYILIcVI$)9kE6W%Vv6Rwis2T} +fIc*1ouJmGp7o(8D;PUKHGn6NUO@-O`fM@fGp3%L29RqBdoG~-6AmG~ov +?}CiPQNk0OPhYc**zDIC^u`D8mxE +(U_0Q(<<5_}=3jxQmDTFON{diR#3%3%9#|;AcW##E5s`0ImBgFE(tAP6_ss05#{wOtl8=sF!R>RwP`p +Ihg*<9W@H9Xco)ZYXZ&jB2x^2hp!{!$+fn%{|2v5jNNuaM&;l^@nu%-?9$KZnmRIm^q;<-b);FPEn$^ +=sz&8>6P5%jHQ>-!pT$e}byNEMA`RsyuUfc}-Q{W3#z+RE#>4hV20HZJZ0vRmy&$(5>F&ak(d|`Eu}i +vfI>r6mh*c@q8ZNiLqU|;v6pLI5l6wdTp#)ZrNP!cvbE^p3jMDKJ8p@&Uzv2j3%mj%;EA*Q0sXP&-Vn +iUD&yG*#tHHLav7?*XhB*({ynike`&T`D-<&>!E*+lYACM^1sShc-~`BkTUW-7Pogh +hWcN-Y=BKRDxy{=w;Q<@{Xx2M2F|&Uzwpm!v6I(XO5Sm}@(Tn{H!wOYlet_t4n +@GIlH&hSQoiO&*L6HMXg67{wPg3C8_*H`0*+~5kA$W{@Z!|Pj(BR;3ALE+cdZEW7P5x;U~EGTY36%Zs +B9q=e!6XqbctxYJN;q4({=jH2#w{HS2o{r$BZKXX9&j;-cNWs;TH*K6W&9(i14F?O9{Uv^-1_csZYXNWqt^MF7-wDpwt&(`CP9fTq +*NI_%LC)?kd-1_5B1sB=tr3E2$sCUr2or{zU47@HVLr!n>qC2+PeZiwHj}^+EV0sSm=Zq&^6*lKLQAB +lSV}ZK)5!2c$j-pO*R{d|c)~Qs9#^|AfDk`6v95Opo*@*HNR$U$t1E`X|>xRi~4`w1<%E +;BuWjoBZW-L#}i7mHH%qX;C28&E>j!DfzD^yq55Dgv$xPOn5tC`5dnz{08Bpgx?`7*B#|LYaRKQO8GV +Gw)NyM*B#}$zFha$_ZL_`r{p@WTo(=|f4RShTvwOt@ZseD3gIZia$F$o2Bcj<9Qn)Vrd+3%8%9kh|Jj +7)y1HD4&+aeh$tZn|ok9`$%XM36mmuvHO3D8*!fOf3_ZexoAg9gC$zMLF +r{Huv~Y(h44}GUrboqNk}^ixvnhN(d#Ju62kR_<$Hr%SC?N1=?4fbEoh`2fwVgaCjVK4rQLzFQwS&jE +SW#T%O!tGPud;Ck$)cH>4fhkEZ5OT5Y8t52MEh`_+f;L$p1dV(yl<-k(QGGddZ)#+_0;ha3SICgys8# +v_p}0DplnFxYQS6Ic}{ZyoRu}Tak7x_2mCBVQHrz?JD#G1-@JAM`H&QO#X5lDeYdQT}(Ln%W-cM;k7b +9gddXp32z{rO}JcQjh#&q`OEipX;;&Za4GrAaj~?MplNirmi+H0Tu%5Ogtrr(OSp>gQ-r0RjXYzZsZYWm%lvEXjHZ+S44FTg$3H_joBZFG`6K+U)E +D9B32!0%1Yv2HB<+~0$bX&G4`I0&dNYIoBY!WOFJ!T*HuLRX@sSn5iKLJQu2RV%18Jv +!qU!4+GTAgf7*VKRT0i7e3Y=X`>P}THQ{=~D+ud{2)vPSFyYsvJ_%PyeG-;-QE`L|2#a~y`RemhyvLf +<@sq&m>UhXRU%<|H!)EpQAh1P!-xPSZnqPr))c#lCT(vwTE_TCt8u{|o=ZC;^H2(JMusc78TE7G?cFF +I2o`3v5!)3n3)jii`en-sTr>p$M`b)a14>4bCQPUIiQR#f{#+8p)r!lMJMzKzlq3T)8>&{a3B-U**)% +Q{{Pi9ibVFEktdNXOa0ka#FzNv(s-whYK;dE7AGkqs+(%^JAJWGQus(b>^R +?FE;-%Y#oFHrL*utUwiz=f(l1)i^wXTDkw#e9p&C4Zuv^4)NT`raV1*55sTrpDi_&J##%cf+$>hR{wyV!wfeSVMb6xm3xcp9B=$0R`4rNi(6YGXqs=Q*oCri~&7WFe +`H|(rG5@);NEEoPZxB8n!{f5-HSO;;+C)R14?NY2;I_=)Y`je}_joPg%&Q{YG>zvtY`eL2Uq}E@t4ro +!wAz~fWqRJ!IIh^?u*rL`4VTV3j?YG7H*(_CGV!bOzZ67(Ben+nRNEczZo}MF2 +}Ndh;<)ldlc(~d1`+o*0G%Fi`n8l7i`n`i}vP@^VIs6N4p6~dBnP~Rjof_UC3E~1h%T>X{G+d8Q$*J9 +~4l1wW>Imw~t&EJ2-!v8!k}gk?Sh5$BAI0tIUMh}uzj-MGWm-8H{rU4O1BpIC +o)$|Kebus^YDu)_^o-NI+9@(7%#)-QqWYX2~w^f6Dxg>LDqSFK;Fn9KIh=yT`CIW!M#Jomk0?7^pcZ{ +YJxreAiv@ZPgCc3t?vD6Lw-ZR~L;)NG +xeB6Ar*Dtf$zH=z~l{f$B`S2rYtHoqv=jKb_Zuji+SEg>>Fs|8<*CyOiGxJ1=Z^gBX#xIwbA1n#U=?Y +y#W>ms}$3LES?`NaN*P6O){&Ix>@ON!Lf3woj=GMv<&v&|z`(=dx;cqeb_lMqYnq;*^+!fsM>m<)!gT +CtbLyx44C+6&VzU|rZ%ftKX+vQv1L#*vl+r|Mm8DH{DvV~sx?9l3-Z|}c7>+!zBHXUF1yZObGlk=Y3W +Z05&<-Lzy=)QWw#5103QJ>v^Tt3((IVrr=n?L^)I4v+})QN?64E_9x_P5q|jCz!P9`yPHJLWw%-*oNG +fY~NL&|d3K56{{?)eyG&mSsbHp43|k-rZ@QYdHVGO;4_`o7KkZ(`J3Ip9ahcoE*3Fz@~4;B;SK?!~Sm +FDqfyW`@P!jFz`4%+eM*Qac)%n1|1=e4c*HShhEv6DaD^H`55FMR!Zk8jJLdj3^D3uGLB@WS +PbrCsm&Fwb{-zUOPQSKecw +y<{Rc%M^&$(sml9LZUtsgsPVs`WAk6&H6s@ti+3)zu9MsI!MhnPig?EXYI{nF&@FE@3cyYS&TiBN+w| +M>Ra+kR^G(zMmBx0SH0Z9NU2R)6@#!n~2sb)5L-{*wjkkBx|F`)1-N2j{E}to>reEyhV-k9^@u{=A7d +efx?p-zKL2lox!er#F9o?@gwu58m5x_O8nh7S633-TTvVWid~C>Gwo8d#kLj>eKJ0RQ`VYwb9CtTkbY +=vv;>0T6AT5?aN+myp8F@=1;og*#iS(zMhnq*Q)bR1E+p7HE>t=HD8<$zwi9xhvyB84}G~$*f>MfOOG +Eq@cYu^`%fl5P?533l&Sc{P@)$o8GAX@pQYN-pv|VQo8l#=- +%7kTY2)u_WI1rM-pc@3~o7l>a3t0$Bmy1izv!|azM_PAHMR-JC;nG9b_u#n~Tlkcg|K{)yyXDW;ao@bOJmXgX +@Aj^#vwU$=w5@jQ0~IT7?=p1YQ-$91C#*a>uFt$H)^*<*{n~y||7dgni!*;}ox8jHsAX67tY7J8e`P^ +~*ZqBBw^#~$_33@zwCDYQ3_Hk-^FRJ3eS6*P(xd+0tleMr;glu*Q{K4s;E|nwOz*#VyGQ#m2_8fDOl< +!m`!MY5%7o&LC3}V)>htQ^`Yw5Qu3Hjy*U|RH2W)dcD%!B)o8m-|)wPP~Yc`%eG9x#CVeOOOeL3vP#{ +BeolLsyPsP5KYC#Rnr{^|6Fv0d6Mm{xvk;deKs%$nCO}cAe}J-DcXUSC-EF=9hWPKKbsM+mriwjF|M@D84S?|JCJWpD}lw9<}x5zJp$ +WCjXiJBdznpxBfP7*Mx&r)w62q%U_-~Y|l%tPp!)JTfhD>wkz)T5leTDzdYp2048-6YPtv +^fWO^!8_)E8Ehwqt;TMLU8#Uj=BI&BkvF&+PlDXTSUSoKtPPd6|Fwa(K>&xn*bj1ue`;==FK4`c|C*ptS3~xVt^X?O+v*3sE$t5JLatrf7X9)IJ9g*)p +zpX-JVcEZ?;96=Ij_F=h%ZjhS=;Zs&wMf_+rDaF{>s?fB0fKGLKkuEtFZ?j?iSeNrRuJ4wtw66gI@cZ +z4^)cSI3>0;IsY{-H8vEPyV)l$<*D;%cu7nG%D0{S +Usw+=>9UNv4I6kuPhG)KB|C;IR6B!Zjc;2-7$m|m`5B{smuSI_K{=Xk=@%zS +u?(zw(s_BgU?htB +e)_j(9UouWz2>`)v!iNfzWCI#pS^#-Q2N=6yKajmKb+U6u6gjncKNFZO +Mv>G&hc)P8ue~s($?zEd0^gXt$uxv%iu)sHt_gNA5Y2MwQwcVbOi%sIvK~Z|ZILOn7DV{Bu;uXM@X2D +F?ER^ZIyEC1>5A)CuW*$D#%)>X1dHNEmttFRvTEeRxh(={ySN-)}J!()- +}vK;3wuC=%wfbgB5+7K8n6=tm4!5R>h}Xf#MTfs`v(%DZcG@D83-;)lKZ5V3b +@1f!@4;Bv0}3;aYQ;((UklICU%c2S>xSW)O8>67;|J2oxa9}X6r%BoqnZ0vUik=LmRh@b1EWgo1n)m2ioO<`z$?4r+R3a@&e(ZgYdrka6#BcbJ(8dm-ox>ppFiRFw@3C7p97o +*@AwpHWw&Pza{n2#4sjgQvzp_t>o_$gJb#$GFEbtC?k|OW#_79?52SM>$S%`bfYj9)9{OoR%ebui@^|Hco47J2 +@@++2=Ipw>y>7vTvW})Ht(FxJUN?n)AQ2nA4iGm7E&B@IJ%ihbMAcS+k1MG~Jh+);!Xwmh`}>vHn?3+ +0pMfHS~%2hWlU1;nZk+iPJLO51iJF>iex+j#RJXKNl}32^$h!HA}a4mpwcB>5ob`-2Ty>(NFZ-m)cu5 +JvuTa;FkHj)1y}{uv=c5VTwL`|7)+#?mjVk)BO26-dTEk^oi$geZ1?S{OEbg;kc{b*63d^KQZpqfSl< +1jz3+l?U@^WYll;DRS)<_N5;(EI`wiw^xA=M{MoN8BYLh+PU-XCnut$Mbn=vEmOe5qC;HDFugs|$YKq +Q0pm-nt%p5(c^P$(?`7SRyvu)zq26rx%zlQA8YiWM>e1R>~eba&KdixduC-u-*#cdL1Te +6ddSJequ$#&D|%$n`H)waq(?{nVr$oF$!*aqw}tKWpOg{3>U`V7r=QA;9`(WI_7PJvq7(FSzr6HyYV` +a)RWrVMD2enC8U0=l-P_Sy@}k#nd1}k;ZT#w?^koj}Cb8^ts+~$< +f1$2md(qcWZQR{;dAkf1m{++Ct(!hq#73mcP^DJb{7Xeh)UjE2x3Lc^mi}Zz1iEioUmiTX%R1Rd+35V +@(cIuEA`x;gKa)L$0aNnvrd`-D2o&=YecA!#vhx$u(yh9QlU)0<+a%E;45n@*{1C&lD>^-v<1%EY?he +$!ahaK)_6hgS(+v=9>Fz!toPOvTXTz5JRx(+L>_+QT#e!44cl^gylN*`22K321LPKAPreu7}eck&C0j +s39mVYW?M0yXGCGN{&us&;o{BmOgRYcj!ekC#R^%sh?9CKfYU#}(9u``x}4!amp2GE1xmvNI>lXh4SY +ur1E2LaGqDG(L9@fIfzQE<{c#Pf2b5ke;2uDe5=EjpKHiASu=CZw(IigEWcT1hk+lNlaZfkHs +og+3gq77c=ctt^Qd#bl72jW8_;wvML$0CKUei1Q&eEia0t$#d~*zZtItBvGy}t=k}11HTBL}FEKR;XtCv6@iZhE-kFZvRTR&@ +$}fZ%edZMAJIws}Aa^#62|fI}wl$Nl`Pf*rx>k)>s!KA0|2&H$8|#wYVY0b6|Gi{g%8}=n!Ze~knLp9 +4U3p!n?@TkV3a()cg?1EeO6u4?QH_^RkFGuNG$Eb~tVNm>t`Fb22jnp~H-8>7#@LOCb$z_1b<#xrv&| +~R0=FB&&2yorvSb;|c?FK*o`0QQI#e~POeWkj*Mz5QQDx>z$usBWi!Gj57ixW7)OKiS#7$gZhy1`hQG +5mAc3TN>7o~Ia!+AWkQJDdLGc7O;Q40I_Tm@pCTYFVjH@^SBdi}fP`ER<)?`}L_| +LT>TGCF1CH|rkC8M`%ceTNRI_E!&ng#2S~nK8v~w%KP)g+^FBBgvMJr)Ak^*e!T`)=c@Foe`5famb(< +$>vDFS!P<5SZ9yA{6IhHxv +w4c=HKRGq$-OnBmVgJBM8+|co;yBn|4HEwS4JZ_!F4IM9P+|c +g49^8VRZrl{z|FBy)o<^{nTM|#ha9H8CgyhD}sv_OPO~-&y?rxl)(akND^NVwL +4|Zkht6Y`SUZ=ab7=ol1{|6IWoG5>@tI!+ijd*xT{;L2p2g?C-TAFL^vacgT~*tNTeG#L&xnnsSLRZV +ga}XJKeZhQYpB(lr=ZK!E@@THdEb%xm*FH38TEelr8`Hz`p~Y(N3d*GT@Er7f^sLI+lcdZFXBmw@7Y+ +ne>{DRZUjiq*>(OzS^*~E~girIdkUV;)vQs_}`f`omg1}x*hVYLPtR$NC?}~{xr}BYb#5X2W!t1yrZz +~4Gj%0?nYPlp)At>bk%)Ty8DG&6}Y_&#q_mqROJ%ndQb;ne)z)&GWBuuSYgr +#=^bZHO(~FKMC`UF+@}GhD-h+#~fkW^J(YIF)KzljS_K+Gt^O1v`*cW)Co&F+-Gl&%+Zyp!>iz;Z5_d +%&dL0F`IE@3;seLJ3h?U^2M--X|IsqGB+ZRox)OVV>0@9$D8c`h(AwgP^cz!T{x2# +2GG_gGWhhK(mlzuXT*@2=-v7(0^U%u_F@hrwLGLY` +8HKa9$MJl6Gt?sa`wBW_=TY-PYp>pr}Zu<0x*811r8ixPMc>%MGT8Q_=FgkNi3x1ISoI)$-X_|;H8d_ +eAIly7a=6%g(zm#_mGk*gZ=fcE9uwhi^dzhxtOM`ORBjZQsw)}&egEMudeW6bkI;U5ir264SsxwY?Z| +6uF`_=Qur8n~}_!T0j|dc8ipm_d&nM+ETY<#+EPwLW3Yr?x=-+2WLMGcyJU@wQw|Z7TxG*XTcz%Ov6^ +10LssJK|B%)ISXdzex0ZP~ccdH=2ia*URck$n!2p7v#_0g*N=|dNG239R5C3_2z&2{wg;f2R~%2<3~_ +#6h>Q~WgkO*|Jcbx>t6?cmtFi@Fn={4YWeJk%pDN-NSkB743%drD+oS)Z?*R!uA^|3XY=F04}M#TXJQ +lKJkLNL&p5*cVE!~|uRRBky>rgCJs88>>#l>EUl=R;71}EC>95J-cJPb)%~_|1A&+J5JnjSkLG_>u;t +|Z#ahGMr@9=E@-I>lIDCgBK^&R>G{~<2r+!xwe1oaPXG%|(5|8e*uUV$2arofm?ar$@E_$PtiLoWVd8 +vhdbzsiNb9b_BB>!gsaA3XFwp_LZxqjx<GQmweOAo1O9D_a%zau++==x{SC_c8(-7C{O3U1?h8V9*d&o&{`0BDPS8flA +{2P-Uf2ppO+6wfs^uR|d{ZHQlx{lNDA1zv&ca9q7Be==a>(D)zlErYda46onO0*b +8varaEzurv7aOz6X{HFSn6DBB=bVcnW_T4}agOsNI5}T+G35|?VXWk%RkeQ~MJN8g6`Y4Bqo3yR}&J?Xa@jinWMX#jWsX88V~T)CWL*7e)bA*8!-c3MlOuZ?>w`Q5LzmEueW{GYH2IWog2i +f{#;S!}nIbTLw;5x%TV`41*<|_7B$xxkPR!3N%;jga;o)Y}82c4nQ_Xn=B579VF|jb$VHs8IFsJ5Evt +*iMvrRU(SsBa4mKJXYL6m%3@ihE?Jr-Bf%&Pb?c*cb5QM7dwf-uCHgc4!SQi}`BYy={V5SyQAR?n}UFeW*1Ov1nc +eKT`&@hO0r28E_`WwJ*&PB!P|&*dsgDKKYDW0RB=hYkM4Lx_~PglREJ@jUuyQJzU=8!sYjhB-FB(CUC +X5Q1q_t|;mFOcv_mnwpL4i{Qx4@)9hzJIr~hmOOKeo#z1VSh|Pv6uXoJi`@|iQJ57qHpMCy(lW;sWta +=FazHFhxyV_@Ld76+wP&&;cZzkM#R|b$e~j-^Zci!BGx(lXT+i9tptzo{w_cHF@(onRU@kQW>oNAGM} +pZjS9{3N&bQ)iPGTNMLc3ca(6QOu-08Bx`SzKCj0?wm7p!f=e +qT~2IS0=l&Y3;;VGgAsIR$i;v(_X1+IhEnPT231gspYf*5oi6bM?$_Slk&@R_q6*tjNtNuhsz0wfWHv +^2_kGo;4)7c3l)dAVYZOpkG0tBJpY{Ma_*LBF5*tp*!>>yc96u9$=eKZ&CMGtCu{Fqj(wK>Ozng +0;3Hvv8%}aJPsrhQ}!=iW#cCL{Mv9P7T$V;*@uOKWN7mukXn*|rmrm?L$=aG%5ea1FIjV`ojqu8Sgv$ +D)KI~s2}%W+bnqoB}%vL2wmM&xj!>}OJ-$e{2i^3p^A{R_WOHj9Gt7t&--$`ZAP^{@N?4xbg6jztQ>Q^>lvupMSBQ-NaR96a4*2uGqhd@L#_ +Co4ka-p~>stF53T=tLcM1g@4lrPyT1+{&!#hzt;=R^?!LaQFNYekH}}?Ns+d=cyVXK&(lU?8)?IMo7 +7X+R&^VymlXNT-=m$UxfbIkO0niIT4Xqgqo~&afKn+L(7z+nl12hsS8UaQDtwcIa#}>4Kwgfb-En{&& +_3dD61GEOHC(aoMg9tz)ff|4&0gVJ&0yGM!Aq3*1jZmntCn^ZVy^PK%2Z5%dykWw>vw_| +R^q>LvLd()khYo16&g@a%m9Z9z*<*V*3}3^7yCXFzCEd}sIbAsl^oo+DJJ^Gp)B58cR3)s4(;Bvda5>Og^dIoQ+WQi)s;agBwGWzDme_D3tLt$_O*xhWj)0&7Nus7<)&*1$ay +p6wmcwzlh2=H8w_BK+hxssLIbfQiSz&2nHjr83lxUe$4ph|o|9)$qjYq<%+xPsR?|bg5<;&iCy=%Sid +WZF{wf0$Czn}0R&n~JE$$;l@-=~{?KMZg@`m>~)PKUX>5LR9T`T!>N;JYVLT4@iS{TZcs^yHbFQCfIU +y}pE=JQH%P$>GC2#|q)qi)V^fh!ViLzz^!pGdYfHMNY_lfD}_)1OB3>A5Uxa;~8(j158BuN9GW`zbZsx0MBNKHdO=8K>36~w5N^LDh9$YYp2}ogN1kk_e+C$MrV +vEIYg(22V@??{YtZSxVDZ2t0N#sz&inXaM~fGew?cJt79tn +I-@kJmHHZ`RReC&Dn#*g9r8uV&450$bXYwbe4ECZtk0l70gLBDPtl%b5##_q6aG#5$(d1O+5;0Ln!?vY8o-?D-7b?A0d4cO#Slkmt@_HK#=Y=i5vT +%NHBJIq79@DGvs@GrQ}O}Pj79I!F$Kl}~aEA;yf`V;iiMxN~vrP%>jYR64J#XQ>-_O_Y!2zhU&e8*}Y +Zwe8MdVIDBkpO7hN_#k_g}tTw9fuS0V7gG+`8Mi5`hT0=Uf6cFgMQr3>*Jca1b!LyL;|J*Chid8C0_4 +@TuARuo)LFct9o1SC(ACLVOb%9-l6?gh$6smQ7-IVzV8vK+1}-ugi)ILJ-r`nfF2`Zw}2Kvk5VDtqF> +w%KScR`p!|qt|A6&JnyNqG9yR>Q9^HTV?a}#2+N1lcqCGkv9(#3vYu&5+pX9wdJr#gqXvgzIr+fit;J +TXEZYSLmJ`&>8O()$-KiBQv>mc93gCBLm1i-l{pY#Rwb(|^kkPzR)|Ac*o_D!eUtZ;2dKzG3rEvqhHDQY0?FHzoA}1f4^Xr&|%UKwEtt8=a207OzJywhTiRIxBf8yCeQJUY+LWHASDPTkR@3LReKe+akwCiK0a!GkbYVJZ44%Q3k&T*OVz2M +rSX`&L)4!B!Xm|{&D&vVg|0neb_L^nRD>rW*X!2~)U-CdQ*&((M}jV2oSPotn5`o8T6EmnOn-- +|`ntBmjEdt%&S^w5-^R06gHeeOLq;fedny)=w>$4rTRG|^UzHWl^NlpnG6(}bPR5$&%BEDZoXtS? +X#<$#WX8uS_cJqY~{f9f|_gWiqR$^eIPoCsn)QJPOM7xRgba$3N0xd{ +rEWa^GVbLnEW?Q_yLwiXyQ@8peXQ(@{w?zRe%-Ix;%YiH2Qs06`+;nC!k*di=NU%I-u8NO?(djD5gN3 +4Nl$Un6C7}S$4+?8d7tm4@!H1;!<~@tUy&ZZca#kI +@%@`w2$v+(bc|;L+b%EPNUgz_;68h-9FX`J`fNP!1g_o2ci7=NZCqg +R0pxE2;413Wqp4qP#@2J6=Sth^xv$=Bt>->d(eD<-^&2HuxLOeLH+b!%NrJU3lL1(zWMlTzg!)F8LYd8(g~flBU`-&zO>M?e +4PslWcN>A9E>BzJz{$uqIq8swZ{n(nSm&JXk#T*kd9tE>6sxIa3#?&4&MNA~`u(WMyTE&6_uil9Cef* +=L`L-+uc|IG3<&sxU69c-2I_xX0E+G<|RO?0xETpFCS*Yf>|N_T0HFa8~ZA*(dj0#N+pH?T(AHz{U0K +*}SgYw`b2Db*;9b-0{y@Sren4&z@W5{wHNjo;~~C)o)x>^&e*Y`Zd~@@`ZhSNE+^uzM6eM9mdrKK3DWFs(F4-&7KRagV(^;q>ktEki;v-}>Wa{aNYU(x3L5 +P^H5GwF{-O^cER6>c_Ps6Y#s?1rq_gzl)WkTqvHS3KV<7&2|Blp7-C{H5);j~N*u7Ra +>i8%DCe&C6N;0x8d2yjUcZ7C$4z{1z>wN23-}xH+@9N;b+ga^|LbKe3PeR6kvP_q=V}wxUy~PQqfbh< +^S034eco5gZ(>`fk{;VPe#%QDXGy(c;M`pA_@Q4-yk5Ob|~!^^}-Ad9s*3eY)}=^XAPHDKmXV?$iCm8 +}s{!#S;dKWfKF$OH=*Ds_A}W%fj9w-xe%hT{u>3O16r3Uwl}UrA-uG+oX74rxab^mBM$I6y4vKqVI=N +Jh4}bfRCkk_@ETS4oeY_Jo2a%V@^sju0o2j-%7D?;X<)==~A&`#R~DtE3b%^D_4rut5*xV-7YdRGL(F +aii*UB4I7j%+q!kDIPi9nSoFOV8>*yu=bd-N?%lh^-o1Op{{8#K#~*(z4jw!xzWnk_arQ*HIPilMM~) +m(dU5L1DRJ)XX>sf)DXOZf#Knsjm98+EyfK1@32_sY#vOz9&Cr`$VC=WSfX(uD(NA_2W8^R~M@|#Ta) +sC+*NKnie#4)NJAvN{_!i*z1O5=;j|Tn(;3vpt;(6e&27UqXOMw3o@Q=ITw*$T(@E-^M4B#&Zem3xT0 +)Id7%YpwD@Q(ri6!6ai|AGs?cRP%4{?PR?7-wc+9A7TPzHE%QZ^H;bY9?fPS0TR~CgkyHLY`hBWYsz$ +FSy{}3H(;TM*x%5ANZlbM_pBMz@G#B=YhWl_=UjV0sN1Ef5HXdP5*wn6~RhUW8mKmeE6R#1Vhq%yO8~ +X{{--#2L3C+-w6DVUGT+iB23&3n{A1hsT0h$hu8a9w6^DR-0{B(6_z$3lhfzZuYIqJcWT1v!sNo1|sA?v~4_&1=H% +y8P)1tsD5C8zwZG5hzD4pZQE8YozH_q{rp4 +x0|EnpPrAB1(5X}Zh)YCO5%=G5k0+j^fS0pCy9nU>`V% +=IB;wvX?zl&Pu4ru2$_yfdYwM4=>&`pwc(|V`&`A|&X(oO^AfNj4`JH#%|FDy^AsyKQ@FRTvLmvqV85 +k1LoE6;TdH3CaY0{+0eM8s+pNFc1`kP-?AcEb%=K%vlgF`|>2Zpw|tN@<3@2Kh@5E>XVFf=f9&|jP1< +t)JG9lSaZ5qkXrstKdlBKop`v;S26UHgQhi$e#7geoRf3r7Eg{)oV?ek36Tbu=F|=#D$?K!Mul5j}2- +@beys1|GrlzYZFtNVu=|c|g;KO?_^&3=9bjMK2F(p_sVe_%MQRZ-4&>-I_ME_(p_Aga!|EQfYj5NdyO +U8xY{#K)d-7=L7ataG-zf^N3#F9*u9(v}Qq|kR*nN_(G8`J@@a~-SSXlH}~6v@i1Tjbh%r%fPhQSBO( +U)5AAbXqlP{3XFvpN4-UN4enbF^4DEBPsgWO_2lzr=jnAYR{R0K_yQSG}Ln8u0efvPygmA52PeC5ddW +HIMpv2qa4Wo +Oo_QJ-Oak&L({8#B*1VQ;c|S`0(K>9+@9KxHk64O6V^V;|7Z4=>cN>qJg65)%l`lDPjuvxuDOa7_re)(mwYSk*SX3ZLrl9D3Q)6-R~@WvZ&sCe+rH{VpT!Y3tJVin?zBE$;2cI^@$e)yq^4UQi@ERG& +MDvlpNF24EZ8}aS8--;i;KdWMc^XJctUw{2othgw}I$ZDn#l_Ehx5Pl#lLxY3pc{vQZVm>z7ctOfie_ +@X=qk5~VX{QkaI<@Si_`45@@7lF&slUOsps5gjxrpcH%vXB(RC6iA^8CPF3w? +cv=Kw~kBIc|5+3QGL3FGAZCYRh$T>6~S|8)8zuilbgeh%`k7A;z^Q<-@bV!OtT8}poPcn0+oRDRNnM{ +4o-EThN&tmNjbx5>2%IurYq!z0z-ymsx{$1v_}IeYf(*WZ2j-ARl+N6(x&a{}=2xpU{vVqSXu(4j-?- +h1!87c@=l)VFV6ZzoTl&U*N{Q})A+^dDu-f%*1!?b`8kpX{sKu8vZhJjaX~=@d9>WV +eY-q)@}$IgDnI@7Q!Y@+!-o$`%)cd{g9nLm_RGr3%2VL=$VVT2^xBRcI~EKWFo5S2QBM4f8IQ?s=A?y +kz1f-h_pQ!n{CpliZE*MG$&(+duCD%B=$~l5Ui$ArfA510@+_pgd-m+vj`V>pMgRNnzb`j$-Yh|%EG{ +lqbe}kJLVo@A*RrgvOzz*mUzH;cVg%kl4xF{?)~%bjY15{82-yZMUc7jy)oKk~zI=HY;%d^yPa=1^`| +i6RTDo-U;}1UgAp6cUFfh=I_1-A`KmPcmL@cwSb?esM(TB@VpFS;1N=j<`dEdT$^7GF>S9C%?igx~8Q +Bfhk_~Hw7O`eR5m`6eA+_~?+|GpY}_Y3N*{Q2jfkb;06Zb~x +M?A&0YBT9KGI=mEWnyH~Z}4IKZREPV7#TFzX2`rYyWVI1BlN%h_S?%K$5zmZCFEh}&Yg;W>c_!@2bBz +t966${Nh56nHmu-*0|!*5ZBQPBlpAe_I3IlQfuf%>g#Am(;kVz6w@mef>tArchR1 +Po`}p{@qaHJp{=Iwm$}L;ANXT3wW>z-L{-->4@7}F4X)i4;Rkl)IUatNo5A*@lH`)nhMA|lfCuQ_ODS +bbbvfFMcz2A|t(+(-Slt?-JeJOKJNO}Ikg#)ma`>sj33;o-+ZClZ%O`GnB;g`c-QXYy2(#t+)zmgxyg +0%B*%KodbzEYWgv(MSzq?dX?UPw3lpE6GUR?5InrS$tq%0By~?72tEhf2Z2E-5>LhjwpC+3HOxmmiX{ +rlw}~wMoB3KYV>{CjCY>WMSk#Vkfi%>dRwaNjbP&%79PM|KtHO=<$J+4}ym&pGkS4M#`A|Qd+jvZcSV +l{TDA@q%JRe=%I&NK^K;g2gu=fypR^^5oxTC5B59zoHC-`Q2*(7F=tZ*4F&xVf1&d*;A1KKgVx^Qp*! +@(TCUR{cR~`SPyNSuB$?~V#L#p0D`i2wqHY*`(8j4})O*^60cjUZBaTS<2zUsA{t +x<0=b>Mjl)d)qJXl~05A2lEYx|AU4_~~ZZQHipA&2F(Gy0bL_@J&|Nx#_te9m!!c=R)_Y1DDpD0%o&% +3$y?5Ihu}k=K*HM}GB6^#AnJPZHzIWtlt}+2Er-nbgO}FTeaE_itV!GvPm#6wEA|C%*%8|#U +99AJ^D0%qYY0uD^zJ@*T*6o=-sogf+o;z>VZ5keT&z0zhoR@X$)~yx%`4ZAkJ*mqF^`3fNmk)y%>N@r +4@SgQDYj$6mHnX36Exy0vf$7OpQjT`=5O!F~A)qPfa~FFi4^DgTLZ1Ym+7>>kC3t92tov4^h4s4)EwC9jN^xpVr;%-Q{9DtK4}9+;xwKc4^(;h^KuqdE_UJ(CB+p6 +QdizK4E)TgndP0sU{@4Erxt)qGeV{qXln|6yy(84uCs3_c8A$OFfNE9n;Lr=Q%g&|elj(?{ljhYawLG +DD|7{;ZUd-++foDIYtb+cSMq$QPIFnLHTwOdbq-rcd(PqN=%AmwwtA#}~v|wV6B^xh@~|*@(dl)20Qz +L%Yvu-$m|60Fsq+DUv*l3_Os4I1b7&85B!1SiAm)tnNms|%P^1*`xJZxP#Rh~P0>bjiGDeyTNGVw +9&*%@QB-&Q~U^cRNy_wL=h9c5u;+AHZMZKU1cg}$Hup7R>|O^#I@+nBa3@{yat!-o02WzpO|G7mh|wd +a4sC#{(5FPBXmAQR&P4jO`NGV{F~! +=`%QnF^*t%I2~`C#B5nFV{@(FO#jl@}(( +$^2JI1@&)klEO=N19_E1urn)i4-wxF8e@H)cLFqsAdI@=X_St7;US6K!=X&@scp+}({x{^#B|T*cc-R +6Sls$t7`Xs}i?eIyfr~ArRtbX!e;9)sFVWLl3KmR)H89dbEXReg)VLv4$CGCLklC&3o3MgP +{VTbm-*dDNi4bLY-IVq#*Zj2}P#8~9Nrht$+mIdteyIby^J`Hz46L%#g-%krg{UQ+aMeouPI1IGf669 +ylg!;lC1Q|ckdLbkE%g+TdH7U{nr-%p=)DaM$k#~8F{`lMGALP`EL=U;vM_FWnp8oH4B16^N%d4Kl}8 +#d&@h9#cKgoFeMn~=PI_~D0DjPTAo?^@rr-WVvL?k{?&BSRofJT6F&L#~+uICQVZPj(MfhCGt +SKAfKd-eAMNIYY-fVsrMYCX)9ch;5?G|7$Z@3#>7wMo=ftVYM}4|w*oFbANAw5OEBa%~&RE|N>d4*e-oH@ +vgYRWMdh}?8K3qb3e(SBb6c6klt{cKW6c15RQF6$TAxgK>)6*6G>}&Qp|0dnE1NtA{XKYISVXRF%pbg +L_STB7rX#WlMEb;X8^n=_}ckS9$DfB&`M%PO}+jWh9jDBV2e3A4(wi2-g-zrx20C`L3o6-S}QS4&_$5 +>CKA7!7?|G)nF>$0GrK#hTgg@p=_eT{yqgl~HiW8_@Wz7zMJ6Z*c#_3q!O_>J)o{Xgt+Ij?DNgrtS?r +p-c6RV*=i@?_;(Ve4vqqpzWU8+u4Ppj}cX)Dy~pKG`)M;@_;7GNL>&37@6LY1c&Bj7%K*8Tuk7>JR5c%%q)stzEm8Ym9c2$#kQ%*V1pq|LE@} +}rVql{t>y{TDUP-Etm!NIDH|h(;Jyy^p1Q<7rwt|ZW&RuQ_si&a)qnbkx?^lzUI@9y{=^ec$X8x@Md` +O|zZ;q5s7us!UULi}?Z*BH;@UO;0qu%@*ZD8Tp5@d_jzQ$ZSnsF*ps(Y2>t2qX1Te!{U@~7((gJhy2dcBvCY+F!fdzO6+Zc5dGbbjsay1&!3R9E?3V%8b5Mn(9FI75vX43EWZzQ`#`-Shz-#( +^`da!i%qi5q26+CnX;<`9cdw@BSJHP^U&QCex&`~0JW|)8N53IPsD!LIt~URZX=l1!=PiD5k_a6 +R~A5Tgf2AA!#XV-{E@;Bevvnzz~t`jerX6KYN<{v@c?so$ktn-iA&8T2o3La9T|3EiBqkrOs`!W +K^G>x2uOQ0h=4y!>}NX7L9S-|uPU%nij=Vnwd^A@4@MP-ni#YwoDjT@SocVq2bweJvRCL!zUjhauh%g +wN+|*nI7bF*iReP^+h``^#!6XC0L?=u>@FIu!H>ZO-n8bu +lyJ8}NN@sWO=V-bBdV_C*2e8#_-##CO~FXSE%_dB_!&HWv&$#akGTJ3WVfH~+C%om= +R?o!??*calh>Gllp!i_sZ5+)wgtUSvp%sA5{CU?>^Lh=Yf5~@$1ZqgEDLJD7B8c+_?rg_KcJfr}cf)5 +l8iXU*r7&SAFFE5ce7T0)BG2PPX8fg86F{;@nZL?_p5>jDblD$Db`LC#y9ut_O2X-e{lsZ>RNrPwuxV +eJt1a+PKFv-$@Hok#m0{ZI-?sd+zLMx$yhTX`nuis-us-&OOtIocdU2pH8 +)pc~aEMl`BWN(!sW==Y&k$Z{wOO_ZPS(yzv$5HTMip|19Nn(9&2D|8Ezde`BpE23erAwn$uUZ7@L>#F~>t*4)UdJ6piQ^x)P=LMYGu}|oG*caz2KbP< +SD@^SZaDBSSxxSw6ViVkFdcnC*w!ldPlhQ}D`vmf#iqVjw6yBz!I|EUY?59%V@cHMLO?&!zz%+XI_6Ls`)l7H=9+11+Tn8I}quIaLmIlqD}) +~==3-3v2hLs`7DB1~2t|5%koN-AXSIr;I=Ib5*QNPJ(f7GZ^M|^#K)w(P9rsLw`%hyGFIQ_9#@vT}PRRZ@-fd)m)E$$VSSQMT1l_u7{MWg2=aH~`H4o%i&wUy0Eg{a5W5$e8d|z +p;xvp%Caol*f64mp)=d1s~AN|j^5r3TKULx0xgM)+B`YUOeHf@^fclrZkkHpXcV-4BR2aFRnlO|1?09 +}qpjKm*ybIyOQIaLex75Y9YHa7NM?(uMqe&ooJlCt3b8ph??{Q~y8p@+shA_l}*^)veO8Pv5F^Yb%8| +H;O+QVU~^pLH;{V}ElkmpaI`bna`=K3w+^CWt1`J +rkqK`gb5R5r%s*ZBab|yXfxLRjQt^&quv<)g6}21{`%`FLZ2&KPg4Gm{%7&x#ZR$5uE}%Er_bTu!jn% +vsrHy@7c9%fJ}}mJ8835Bg>gH0SbYO+*S24G4a;>+g5%Nj>C=^O;Jd2Ex+3Mpz9!%F$p;P`$h^U}Rr_ +oQzDD`~`sgrX;C1WP$u(=%sI_AHMy@#-dy0RsZPh;8F~(o&68SY^aN3@+FG(7xW8CB5`qQROn~e7a|7 +hE_{9n%+DE$n5ALU$BR7CwdgT7cQ^!1ZJn)q82k3X1cU)S<)S4=f6Y`zuRWxu^;zSeJcU4OeRqaAW?OnoiD9Av~7`g>5mh_6>2RaI>=@L85R%^1#zXAGO +7FN-*(&zTsXeuS{5+k2PA$AV)p+oG)*b0XJRFzSpx2j29g_89Ue;v +9zY;v4^-rs{A_-~6Jl>2Mu^b2j!L<-{?_cn5XMvjbJU#dwdg9%D_$x}0z1tzN3?;G81}bWnbyM~_zf- +1K4Whl*V(a-*%EnolxzXWY(t1Lscjq6e!sMjV#Xfqq%FYL$uy`Hl$p)hJ8qOWjz!Y)6rb`{#|Tjk(F} +2KFDu1?9K6C&%{(jIoqy-TeOYbj1PHpPWPeJx;ZM&X7NKkG`IIN?8scK3w%F{WN9y)y`D;`l7+={m(T +C56k!8%p(2<1Ap7LZ7NnX-p8TeX3Rx-(4V@}!oN9|yXrs78}c{aNn%|bC)qy7BhC|8H~lik{spf1^wX +r9^{_9vS45sTW^+A>xSVHm?B2C&*JZd&^Bd*)dmsxpXBJnd%x498!=VyJio* +TMLA5dLO*tHIgd^mFhu<-iT->*Tiq{;Rv-8l$KlA!dl_B2G*Z6Hr^6m?WZ6^Ar&yrlQOMRmLKGkb5C_ +<5%o)KLkUgCIV1qvapIMl%E4?qId?bs(S=#;uF?p7DMo4Cd!NxvACX&J0nHB`itpr;$GBcv>k{XkCM~ +X@4;u_->Ja7o;nAL1pGA)cW2<)SXGYcLDATy{!yxQyi2`ZMHiJV3U*WXEP^NDvL9xs@>5XbBo_{6i-% +Be7yO-|uAdUEQGN*io}fyyXRPQGaxnoE&Jd!Wdu9aF0ipxojr5m~qHUWsu ++*@$ANRtS%Rr@%qfp=UdNhoS@C-K|#Z&50Jf25gCilh-iW>CwO_)5%JS%#7eB9J2{ +n~f!Vrg%Vo-%Ig__!$(`n4bV=%CI%?alEsqNa?GnlyDvbiej@Az@C(UYU%J5P=qH+^dS)R-Ba$4#BwJ1Ty1mswrgn0$9auA)1#-&L@Uwb!=}g0iklQYAv(VHq3h#;2|(rN{f0!(ik@Vi#DDv>kBS +eTGHdF@=;`gvGvoZn@hf%x+Q&pqijQt@_P*4J_mx}e>wOtbeZ6a$W4C!5{f3LW&hx+N|86S72!?^8B( +*HHGPNqTI#r~(rp&qavd!Lu7hnnlmk#ewksJk(t&^TV_(GJ+mmY +B(p5DBC{$}WO-znvn*MDSz%d`S=KCDR#KKdt0=1^t1PP`t11fvr^D>9IQ$%8j!1{qVRIxo?2aNwiKEO +>;iz(mY>#Ynwk6vyJ1jdg+nR05PRh1t7iE`Zmt|LES7nPFj~sK3CC4u(EGIHYsDoa|1Mte4laOP}Nz6 +&gNzSq7IC6?}N^(kb%5utcDsn1ws&d?OJ#)QsExA6qez`%pC3&TJWqIX!6?v6;Re9BUBHumVBi}RMob +Q!y$@j_k%MZ#A%MZ^N>d@G7fRfzO+_K#A+=|@F+^XE_T#@IV=aJ``XU_A=v*h{Y+4CHEMR~<}*IRRBe +r&!qKOx_ipO~MNpPX;ccjOo47w4Dcm*$t{m*-dHSLRpcivsroj{?sEbAeZZrNF1auOO%(tRTD~vLLp= +T98m+D@ZIzDo8G{7dQ%v3W^I#3Q7yg3d##A3Mvb#3aSf4p?jf6p=Y7F(5ui==u_xd7*rTm7+y#PGKtm +DpM6z)3>600h8J-!NnUI;7nVjj!EY2*=EYGaWtj=`L^33we^2rLy3e +SqoO2|sgO3rd*6=#)Zm1k9ERcE<7JRM#RA4iZQ+!5lB7nQy)9z*Wu?N}1?XmU*d!j +wr?ywizOYP*vsq{_A0wb@ +klYJSW^5_!crnrtSPpXq!fEfQA$ZlSxQApRf@6aW +AK2mk|@q+DEO0~wRd0001{0RS5S003}la4%nWWo~3|axY|Qb98KJVlQ+yG%jU$W#qkicobFEI9$CYO% +|$I8p0;61Oy@)CN7B$nj+m&EgeAtWfT+*MpV>HsAd@v6DvKF=GqR*Z;>`Q}{{47Jchz0bz4zR+-E(di-n&+?34&mUKf@4&DuMsY7ykRdPWbCTdP9HV +-~D!8S!D_CymHRsN0)j^N}qb9^uZ@QMGrpt?>@w7JKDk0UHf)9f5PoB1F8hp6;lvo7w*(wMQ{1AG-1(%g3@uzQEVLtQA3$ayL0sv&&EW*hDx-xzLS%hlqcjsQKJiJ1I?<-H50O8o}7nbn|!oq7y7 +d@yvC-llLfe4V+lTt582mKPIzlE7zdFm__OxLozMCA=Vw5ymQ{!S}RF%H>~My0o+iyTUnvxe?~T +_Z^oj_wbUZpx_)tW`VDT@cJd?rhWHJ{QvV`xGD5RkbM$}%ytz<3Ni{KGdyznaoH&dGIRVP$0Eo%TjWS +ZW;Ub**|rThuYqVmhA%qJkfXuOY&qh~^l1Ah3W6rPp-j{VX;FEh9Cf#*Sp-cSAPDPm9Srx{uLWU8-Hs +jK(WjmI%<0po{Xh2k{$tSRhl4Nd^Uv7l?2(B+N1A=gk@=ZUIih5`?vd5w9_IKLAe+q2%Is9m!60i2My +H(Gnmrr83UmEAUj`!&=V~RQAV_RSxEk`(posYM8m+m0|Ypdjw1;+bOeV?FhB +rf-<8o*D(;1LykiBm0pakMSnr_w-?6oA+)T0HvZxkKOYuva +brqf&?iHqcSPrB8HL_YONWc=9958AEalmhl)|jfAaUtw-B!pB(~|u;3vqRRW`2Ne39$RJ18gZgJ}n2> +Vd(+serbU;e*vH>$Dz4*Bcf*Kz$BcC-g7Nt(?ad_beNauq~zHIgEC24k9z|^mf60XCM+{vjx5Ra81Cz +j!``kID=J_*H{({&p8>?X0)dat$y|)vXr6Z61Y8?@W$?;cw3D!d!v{lm(Yv0>n-8)}oBv41=0n4Ca4% +%y#`~ZjY`l}O@c^(;z3!k+sU7V#gc|n9td7s*5!LdTt*}?JAGn{7RXsjl?XoHujN6yd>N1W +7Vt~H|u?}F?L*^COr3H8?`_#X#Vdp+mfT{nqe5)pb=DEW}Vve!?5ucX{=G3;K9@u-7c%!VWoC!#|hmp +APGBU2IOoWP=&=VIZ^_IVTFg21?)l_=)xL}+K&v}i=CPk-=lK27NUd}?UYCf3$;a*pvkIXC~ +mHwP{a^9L8g?F|-Fo6TnZ#Bkr{ayyq21!24;)m9y7u^G2vw$W8{l=P>6J%K4UZMpDiZ+1sNyWbYx$IY +T+tV@Q^uwG)M+52_xAFDQ2s$ZmUK_=GYtpq@9BA+Q?_cY90_5}h@{OJVp+EO3qr>;U}a1$dut#}F&qm +65XA0|kJp818@b0=(-V$2fxK%WO%ejAVV5%vNR2!v*B~vW~A|V*QA&%h9(xp$FhyZ7IaNmS1D?u5fEV ++&7=+?9FL1+%D{^3HHdkBu+abj&KmjJJ63)ow%gw%it9$!>o;n-nA$9j4N-%ifyOdx3)dPdAQK8EV&d48dma&j>~{dtk%C=2$veX5Gl +G +<;g8ikxbk;C7@M-xYrMPD}Xx2+;ROt>H4%Ua4wgAp}wYm+KJ&h-Q8sLm$mf;@A>u2%$*-#&dJf#2gD< +GY5`DaO{i-e$iV4vL0Dd{n&bcF*augh?c)sS?2DQ$8RRVE3K5hLVTEk&b_ +X|6MFvDrMwWIMmp&fGgppqJ}9g`=r&x +XVimQ}iy$yY7Cjx{GJpl~?gg7pmb3X@j7&fkpkRq;wb>@j_*qgY{Rty9D3O48kWV4=APEIuEKTwz8dn +JGjD>8az;pp4BT|_ruOD4K`>(z0(xi$$=^r^!@1h0Z26zAnCK-HcY`W5WnoOWNd* +ojEcFBqLP&tehuF~R6!t3F6#A0o)l3?PvE2h^=rF8D#&!!Y)$={Q9wO(J!^{V?`3^$kd5%?h-2!z=Kp +r^3UF@F1(lU|ORkpjQ@4k?ZfScdWS4BFxeT!K?wvi@J~5`U-@eZxF9kY+PnNC@^?imJTh;OIO6Qyc8u +xHfm&VW9doV2KxZ&hmitqwsCH7__SfX2Z9KJ#x{u+0^9zuLcaf^_4+N +m76B~FP8Yqq^t7gd{_s=TMgXK^F#bFUY)Sh(Fbo4`9DbBkoqycV?p%J`ht%vRD#q +ddOrv6ve6W@)x=YJE=qydKy5Y^Fgrj{bAvF4*}-VK#fCHqcGm|mu|X +8dgONp`59g)uJ%1-KQj)8+r-8xlxZJHo4fy=Dw3Lj&ZR8dq^gjbVhW-_*%9O|IAvt}*7n*uqZ>dBv3sYgdwQLZFb>A#mWUF!BA!|l~F!{7a)ui`P(k-`th8e1 +7^>{{hY4VPQW%YP;J=^C9e%#rTuL}yjj$aP2IwyO@ZFluFa{|M}x}l$8{vF(=rwdbmF|;n}m-INT}u^ +fm(>#2g-C0^y&-&2DrElrTuVI$gLGXUmLNjNQTx8_{Zu%7pf|wPRT?-dUM2vT+0r9Cu;+s28(MEdcR_ +CtujDXYhWK(a36dP2_d`8YU*;T>$pBJ3uaYz1|#_y!HDdceYdG^bb*)?pG&v4VSHjPmjWDWqoL2h0_H +@11~NtFEUgvraV@U=&k%~1AlpS6;T)vNyR~tkbuv(zKZd!uZK7Gy4_gT6H7Y3gliq{c)=e}QK~@6{f6 +h%7kdHx5K16$MsCFG+B*T3dqyP#2_-dFQTS9N*^9V9lKAB_kweA}dOnO8fBq(m}_|>ExDyiBR@C3`3A +913tbYUB?3iVP36xbQSS1xpuf$^gv>)VB+fK}CrxvWC!77!p))!=0fa$ob--ypz`oefwT@EcfAk73oH={i +vu`PwDd~ZWQ0i%X%r^Y1~@{gbmSApdGZ0t{zy;u1h#csgCJ=)nGq=X>s`}2whhi;X#I>dD&Zz)#0rP3 +7mymz_1SgrFQaaB7hsgshbJtP1aJC*!mkcYg*-WH`^zaE4Yq`w|*gijEF3($+Wu0>1rp+H%0jn_)SS` +MtW0|>det}d&_mkW|LilD*FZ1wjzC+A6pM^mLAF27amx)b!^>d~lpmVoA +KN?rG;{oq!{IZSmG +YQj8J1ugP;9y&15uKN6cOZzmp@uK!8v$;2TerP97hJc5v<57fE?ka#GOh?^D71!PW)+YF+P2ZvjPI=& +~ELUhFO11O@6FGQqv_-7Co31voS0e)|fjGBX)sXTMMnVDQQ94 +YKFQX;<@28ofu7Fn&$2Fm4>jqM;SFh@6N2Ko^sD8QSbj6W*d0<19@b^l(rfWlra*K|76&qoKCy;gp_X +Gwgl9(21w=VSy1u|VILEA>-YmeM^eF +lJ8lU2bU*OAcpnGUuEEa?Qfpk=kvlJ{aeJc1pRfk5lY4yzg0QXh1^{O&fz!Brg1F%aP%CR&ADB8~7Xc +Le@hsejHQCVIB4`e~O&2$mW{A*t>@m#54vn$Xd0)7n(sBnVur@WY1wv;69W7)~tEt{iz7=y_XPjFMKPYC1^*$duHh%>{lO+S0lh`19`YA3;gG;xe#1=L}E^YFa@y!~$4lx +;K!khw_5OWq5p&elr%tGT`L<9zsDz^{G!nVQ4nDsO*=1EM79G%%#o`-#f9NIIW2BJt;2urk6dxVs7SV +0CW$Y2E-tYGwE7uup0)b-jYL9zzob--jF&Dut21-Y+>%ZA#~^M+BjDl=EO93cnF4TJ_ZcI?k&?)!w!V +btTffoQ?_K%}58pcZL@_BWBNqq*i8if8WK_ayWSyv$nhNtDooXir$*WrbLF7Co` +d+2KI_~--^cq=JR_EwO-Xqvy#C@i!0GD*~e73vS`3_?$!<4n-oxNHL1?_5DvpR*TDAg!~x*$E21(WhY +N@|ObalYscQ&pM`Oq>&<~D@i^!GgD8J$jE~>pM`Sxpja^vvdvP`24qUg{lTK;PJg&vnI%@DAt~TJ=@X +}Y>u0-y-X`(K$Ivv#Kw#g4GrCy&WC1icVYyRc^+BNDi{&g$wj^U-i4Q&&25oI}R%7hqN* +DXlx(&nd9$S_wv06VnEp?pIf#7cSv2Oz%ZN9A2dI~;zkNL&vr=fYo=%;X1(?J#Wo81N2K9I${^Lvf`X +zYC)sB)GTTV`xG8 +bxBBK+;sGxEjok4&@8L0q`JPiPkkxK +^;j@sC`=Qv!Sur%5ZGO4T1tFASSm)P93nNRkusIWy&D!u3lJE5!PJ>Y}kniN&YCLT!n0hsZz|t#5d;m +subUhGF6JxNWxI17?1lHh2>(HODFNvDs(Lo*BvPKHil4P@>e0rgtw(2**kYQ%Nh$JE4ya+-fq+}4apjHAHH^(7mVMw$miawPpD=&G()r=5$d7yW +altDBqg9b}IB`{0Bb-;SDVCp*pdt6c`jCUc7gG&GlxrCiC`D^>j*JG*-(KiMmhqkfkhEp(y9UM7XsaM +$d?z5kYztO;}Q^baRf`{#D94c%lKu^C!Q(Eg4)Fq;nO@D!TN)6gQ?C=fS6xGja6`be3Dod|Cv%v+AXy +-heoZ!p9X;7AJa{4&FR(QLLo&VzU2R9_i{Nd__pYLL-<@qrJXNdkCynn~ +^j_Zw(DL7IRITbkrh_hElSY +I$3>eG@j#oflNIx#Uik;vmSS~*V>dRDDnX`33Z|xiB!AK=_~`{1v+_-Wd%oJ&AAdw7cFUW8zsa +P0x73)-N?CDI<7Z!Le!tKyI^=wz5-K>tN?}q<&8o48GmkahDR9|2?Dj$+qu$#}*g6YGxs?*3QVS^_FW +Slcj{RW=MHfCy`m)T#a5rvypJmO9N8R)r7ACQZ>4D~cRMbsVUxnk-LBo$aQGBO!h!w_w&8)3&YQ0)Lbsve}{riQ!(9c~mn_~UA +FA9_Hb0-Qhart5hC=c95FD2tQ2^AOH%^)SF`0GtOA&htXMFT-h3`~Yr-q1>WQ{a1ek_v$|2j<^iCsQT +Z#od7-$Lrt?81o5C=h{s^ +1E^7eJl_k1lUP{bK5?Ff_|<}%!6+W_So`q((o +){l~x%u$-wkw$z+?&U@d&A42^0`j*ZCyCp0P}j;x&?>-)U51Yx@#ma~-k%1TT_AB=3DBE&k=|_AhT$l +34A^x?Z?XtbJ5x3C#VE6&&f0N18`(xG!6||Fl8yUPb_l85l|pTT^!5U$MGXImXbMcm6h7o?38x1Wu9T +xQ;*)c_i2z9TMHgFqfS}`bn^9m+(hK<@!iP_U7GZhA{Xi3M8c038-vjTuj3dHAx7I_J9LWKKc`X1wBM +ShndV^iNL3^EDD|hHY_601XooJ_aYtYup8fsb{K3glQq#k`R=+^VFEg1O88!bX?G$69idqfN)TQVAAN +YOXUgXie&jhc2dKVr&8ez{aG`WSkxf?9!yy;*g<2v4ACrZvmuHGE=fmJYAacS4oy`uu(=>cTYG7S;2p +1$|%5Q3oo-a?$RKBu^mj^+4DyAU5829yNN=*W+VHvG96y2-Tjr6$P&?TooX_3UH=`tc|8W#)Wvm{V~Y +LZWeOm)*#9Rr$KOP@qs#v>Pwd#SJS{T6xJUeLU9_NwyhT77gVk6H64}!vk(mx;mpOwcbqn@Jf +W-nRxgP*&4JZ!Bb`)FO$moZmY7#y~T1xB~H;{@IySVfsR%}JPjJJ8&EbS^6%DcB&V9U+~1(;=^+_WMH +QWh-yczh|rgBX&d?m~f~vnN!d9mgY#+^fX!^El~;M6`m$P}SG=l1ov#Z2?NkJAKS!wpVwV_Ry3F(#(< +vda%{usG`DZuH|iquGfAfqJrH#KhWvnBCW;qWsS8-Uk2R1r;LdvqZSuvJwnqKm#W;I)pk5(DVl4>pg +-1{~B>>mj&TvU$Quv^fqIO#phuUooeX1=y26Bau)uEidTRVxuMGHQ)9^*!>`IqUtk4;{kdiV8Yr5Sb8 +C?x-<#0r&A?qDcK&Korl5|xlP;xSSqGKX3O?c>ErT37bdlIS6H57g~O%PRmj1GnC7cm}xh5%UZ%6-^# +F+WYwKZCEx8Qi|0nE2oA;t{rINBV@2kLMIy?Xq8Ql`c_!u=7I|h^WSO9D2yM7u206f`m-0A%|RG`xSd +bsAnkZsuaWgl5WMtda^woMUfJZxXjTW5hua1Aq50xtIttQ|49`TD2csCb+(HW;6QgxhTk|EJK_;Ogf3 +WsqTH>(bM`^er_2GqVE4oQR)gV7M7(!hIBUf_>Q*Ne%O*dIi`Y1QWTuS_IGl^*@_vh>lvL>9`{;1pZL +n<-~_S*o>-e;WeohBS0O+Ap+D2eL?AY*n*K&`eGqed?q+d?rs>~j_Sp>AWUY3kK$L9}YMKmbYzyIx1Der+AkRRHfs&%x592m28ZW3t83`f +f!adSQ#)is$HpgIXcrP62s{nL*9KeyUB&iQ(2zr}#+fh^EzQKq~+}j~Z-`7Xt-qBZwF6x4P^C3AK0pb +6?%pBh9EW&zRbJYM!kzY}Tr=Ot|Z&zqkd;UU;GE{pDim&J1tu5LsSl3&pTmkJokI$^pa5q$Qk0itWQZ +*T(t$>-kwdym7VxMt0Gf;#;0F1h~UyFM%ZCfG8g461K!<+(aDio-mOyRUEu`3e#LIzHeX$V8PQtj>mi +hM;1mrUFH#U)d61OPGjVehB_^s;mTI=-=QP=5$U$KC}=s7-(-0rJ5aaZ@nYseW!zZi2pVgpsVp)OKGk +h)JoC)Id6n-d}q;(LSsWWc>46T8I(aZ~JioLWu&}wQYTfJ<6W*AGn{}Fo+aoR~6oi&OnYMptvjcoP&C +zDTm21SW4)j^Z_+N(oo-mg-pDg!NoRdH +zlJ4q1MWBiUbBP)Ko_~O;@ab|41XuvGG28&`uj^;@eEykj;B|usRyh$x&L3|k8kr9$qw +Rj2o{tZJ=k1S~W$~a;dj?}Qsva?uXkH$hXnMYB+SNn~lVQiqr5FOoPl4hFBaWX9MZ9n;@Ws*}Ln{2sP +jLm1Cj+I%3dbiv0|tEPLs_Q^GQJRULh|R3vP0{D&$WDm$=ue$eN@;I?!X;e)cqKV{q@Ngo +=A>sgkzKB3poL`9d2|{%2PH#vFMqU(i>$DsK&k{qk{f)P6sClZR5F)l(IB7ZKZV48cA>h#@jN{7z3K +SAz`F%m)-l(7E-~C|-p9k+b5M@2!09`=U)p2u(+vD+Gp_7hcu}YBbCDH=m)mwHW>mb7{_xyVX1JfkI^ +|msSfDEuV{@M~5P3W!5LxQMc$>awH~EEZrL&MtW)kQQD{~98Ittn6L3T`LvA2uG@CoEIML&=Okr|DJk +pd8H>%BLLYB{oM8_fUwhBQ{t8T7V^&!NeY6`aFo^*5v(*#)uUr}*TxD8rDS1~WlI{U~5-Fq+Xe5`nzc +O8GNF(b6YcLm*R4eeN1O{k;N4yb_+Ye?QKh_crj!+iAETf@C(s&JBjt)^6>|Bz%OWWwY(UqC%R|@t80 +^VEZ_T3~;CEFQ>c*Q}z^k7uExpci~9ZAxX;P7P`Nq7|bM3&Iu5b3$q&D_9)(*y?H~I-5^J2I++Axt1e +Au7Wi70X4J}RjmtZ9X@>q4tA)v6!3G!br6jhbAx*dWK*ol7li4BfO-tv>Mx9)9*e=^XV+ChmhD!7JtS +y}kx}D$!Ly)Ui!aP+(=HLBp65XID9Yd8%J`XZ +6pJQEl=OI&t^CLaFm6-_gTyzUCsTu4uIC=XS@7tpPzhMZ%#O|dX;u@osG}E+WDZ8t#+1Tbj5PuKW=-1 +3GO;Zvx&C%%@!MMrF4n)NU3eQb8|mD(%5Ci_9WKKT}Z`>I^@crT3{rhxUNy{n*Hob1ZlwoR@J@mXE^%T_B{H$5s?TWpH)i->d97F8OZ*RyK!x3T#`LQ)rszqM~$=1*^^=O +ZJ)6)Yu$lrW)(7Oo1*ZV&6m6t|T!$9B`zgK>*enx)FNmujlz;wX^)JQQ +XkpU(dp~QS^4Qzdp(=nFb|AT@*JQOjF@Gc{yU3M{@=7sB;IXB(PJ_CBF>K#jlp|aqNd8hC@n)4GrWl63U49NBSZmXD|| +ij<&*=3;xEN+W!(%{uDYW&b}Oen|efc&cWymi%53mykec>=ic-_4!&jsCi~SpH1CQ66A< +KIRErl2lw906Rt%O0YN4ttPh~lgoDWc8sM{FvR)`{}xT=f1h?M1cgNCLP*X6Zks-qO0X;uh*_IrgPyb +_;qYH1H_T?Zmoy +TwK{6Uo_w8O;NIp>VU0T?VMD4Ix3w|I|nRJs!B&LQ(ohPVOEi1+Xag0ZPj)1D-!e7*iHU^>j*mL3iSi +V`|(+h=+!Q6o5cLleeyTP^9NJD>HD-_>mJ@)<`;=Fpj~`19Lb>j*|Yp8%^r--av?4QNK(X_aN7G%{;% +c7ThPBZr@9a$+(5MtA`j7q|D8A~=9w)(6?B^;`6MzYGs6evT!DrfkK<>XdUrD2x0Xw +AaT8Xt6tola?Vz3q0gQ8L?HNA`vObj1)NaVF8wQ4owJ9p`pNuUvgvylu9k1kzpNR2FCSKf>&{kg^nL~ +0P=p1mZxJ{232JTl#w#qrX3wG2!MOWNszRQGUI6Hiu=ZXhi%Fu!9L2T4If}#J~k%6G@2r5c*Av=XW1hW7;6d!AaulXb-Bf5~phX +SlN;3LD(K7qDDiE0 +dFhN+q2%z-Vh(B=xoMJ^LIwEvRVnsbULllS=GClakiht9?bg|-3^e|hjs3f^$o>=iD9{YFR3!J<2L9y +ax$}bWthQR|J6b4vQK&^M8s|)&?D_)t+b0Wd~-sVX-N#cetQcGOKn^r;l~UaEtoH&A +B+!^I{R=3!^4sAOldGZ=b|?roBPXNS}~8wqUe;$mUNy3>t~g2(T;2;Z^i?Ci?bQ92P4`mJT0;Ws^nUs +L#>!pM4WHR*&=L4pFWY-|a6)=dRVdo}jh?SetCrOL+8H@ADd~4xmkqp!Vg>$t)4W%YfZW?OXE23csBX +#VM+3@K}t&!*r+v4{|IEbNc`ZlTVWpA2I=040yT-pj2+EB$dU#)>k%Kp$s3DFIEam3#&M;A0p)NyP!%s_*`5}%9xHhujgINR!ud@90Dg$*%s7p$GMISB^@aQb2|(ONz%K0g +#W=_7<4tGBOzl%q+7jTZMwv7!bN)<0#Y{*ExAM7dw>Tq;(q0#Rjs$jsV@Qa2@1CrN8NZSb+GzaT +SUzwa +tC02k!mUcbLXPix9->29X&b&^Q^Tku#1)P9Jdp +i52f%{ZGKiAHdZF{K=V{d{jx*yo|nX#=K)0(^bwB!b~oaBN6Uz&G237+WVYMb9d3Hofi!G19?w(cR$FcLm4NWu^$*E*91UX&h!?O9Mjfn!Km3(gaqb+-q*WmF35qk0`T1H=gPsM#+7E`0X(O@6VMVEkn>p_yNU+K%+hb +Wx?N319Q=IXfzY%(-?-Eg@#h0m3<2l9mvo1hMcrGsCA;;4|s&L2e^cY`yt>GtfWN|tFo|7z{iELFL|O +>8C2zoCq`F%j+8?02Sb)A*$2(c4+7g<;m_*uWpzM}w9r8E(_)QLU$bCF4XWcD%e{Rbc6G`C0#SFavRS~ +I$bE#mPfS7^p{J&hH?ejFT2_UvU+}s*L2YdU|0^nwFSXb +i +a=nc&``1)w#RmIn*60ZurB4Lfnhk42)kP?+V{N-K?2U@I{MZVD>B+vrU+Q8s<#!0TG<|n2yb`X#DB=! +8n&;*H-LmD(~Fx;ldB+#0s?ly=)pw%Fnwizcgx=L=Qw1c><*;(w;7u!YfVuRO6oDlYD5F|5LtjOOuBe +Hk2U`p&Yv}M6VG_8!<^+CIst_pnBByXK^i`qFx`QG|0zG`FEPvQ@Q37x$)e5LM%MxFW`Y+4V%r$sNoM +M&1Cz>8JC5eDIl%&kN~OYmbpe#n0I1rCFR41FLX4@}zsyCnvPr>uqs3I8d`R|Z9vycZ!DiaL%G)S3}v~)PopPMWee(8? +19h2k!cfYBGo;@`S>3tus(JPEw~nm5e6CVR+Q|4!5*#M@jCV4K{33|0BL6@s~@^buRI7ihdu|7uX;~Ubg$tH*z#O3d2zmQPDlHiDYixsz% +bmnte6NHYeR~CWMlIvcsAG=BRgMzUK~AxN-HgPq{sUgiW8oU)6bmUNK&eV9Ek-qT>a8pNc8xFd?s||G +JQ(zFw?099_a2K+e7D-?tzAAu$^s5leS0)$FF}{Re|oeRGAZ)Gx+b}zI`jd%Esb1Laj8*l$!53NeQZ0 +oqK8WWQOG)rdNUr(FL;!EWAg_;JX~3hlcguumvfW6Q4_$}d1 +HI1QNI;&^Nvw453fqme2>~WY`GJfiB9wAX%fEmhgJZ2FKWZ6#fko)6jaSvqPY5>KB5WF91|Rn=%Wz}Tx-@TgB;vK|dB+I`&5`c)qMh%@9JwfO`ToQ7yV +qRmJJ(IDzrMOT@i1F^SJacE=farZl3K7o~fOm&%~@`UN*(`N9E!F%W$!4KV?(HS0Xo-1J+N}N-YJtiM +Ru+R^AuNH*H)v=S$BhTvY35{)VTyL04z=R$+g$-> +j%_{7X(`F4F{B7OznHFaP*PtL!uuCKn%qhTE19x-5d(|mc0GCksto)`Er)wtaGnd6j6x$`W_c=6p_@m<;C?ON{6+6`^qGztJJOR)!R +9|p2^guX?MBsU}UfgHWroK{GDlGhd81}@!+^t8ruXkh7Y}TX2j_Io6Yw!ATL;9i`NI +A_GKZN_-$Yk{HA=Y|%H-VdTa;_WcL#{?N)~VP@?o&Szc)%+W0PzjN=^%=7TR`ro0lC&SLNJcq1_;zI1 +6o`1hS5YHp0A>e~m*!NR=__*LKkIzfM}k3Goq^|p4pH@D`yvrB +Npr>ko6(xc7PhCXYuR;ku?{0@!@LDH_JFr%a1e6zA?ZT`+%@6N!@8^%@lFornyiRVZXy&2P|sSIdsu! +^%mI0iV#fMdJmwX)=Af?wd5EiI6g$&=ViW68>K2L@=K7(B3`^4jqT8!=dl%y%g%@b19r@HV=&lzz%Mh|Hb$HV +x5{(z0I8V35%t7je0xaFd4;yT|9SFseSkjuVr0g|YH!9K?P^0SB<&kTYhYkb2-POGf2luV}rs9ktKf5 +Pk`pmD9K7=}C(OO(k_qCr0do4Hj(sGT^Z^bfW8knXC%A&sh|OdG%~4TZJNQag>%IGBg0zr=!{C>Zvtj +f1jUC>FP>>5d$jysz;tg8$^-LVmha_lsy@9lRdTDztup_YICZkssz#@ap)wHp3#ba+if0pKU}<%RLvq +W?cB1-S;&r&6BEsq%!()Hv`Ds<}dFzRVbhzDXIP<_Vzz+6?r{U<_N(k{`upSjL4VCiE$>lAM7UHmVKilkT8rH9 +qp`*x5A5%*BNA7!p_Q^G#G9t&f|D8f5L(cJj1Y7XG@4zhX1mKlw8b9{BM!cvlgy;^FFgoCbvJd=bHd1 ++*|0jy^qa6Q5|uDdb;y)7zARG84%|3CH5l7GOE`*-n%Y*i2`ioC3;e@SyCui7u$Sz+){oW)s~3l89}_ +m6EXjlpq@r^zK!zlOqGraDOczdLd+v4#3M_&`P4-jQ4^>9pgc!2zr}g@7+xIMb^=w0JrD!cC}AwAzR| +I%s3bZ-eqOVGX1spDgPCG)w9-LM(x*P?5*j27Q5G7?aTxeiUyh1yL4 +A1#enEwityBRCDwmq-29aE*auRDM{uMgpgLsp&BO9x^ViW2QbS)QUw1~-+;Feqksqi|o=SC-qqtqCpcZTt4l+Z-E7J5#JozD;u%$44J>J;cxT!+baI +Hn7=*A-%9w~LjJabzuiS|jCLX=NIc;+zJq@KZ@%Fi+5|}7oX(l=sDZRfj7!fb9z)fU$S;RNo#}`A2+c +`a+Xh$+sHC~#t9WPtRgbTtl7%{F1fxp5Qy+sJt_+7(EVy^Qol1Z8Rw2|6OQiO$>Tg{94E^UD45P15ZO +$w14{eD^J}(P_68?jh=jvafYtVqB+zni&<>g1WQfgw2C$sdgkCJ}>PQXBO`ynYEzzJ{h_);@jV$s&VucPUi7CxetCvGM3@qW+vLvjC#>sG;F`N4m~%w8}1KYCK^Jv``9 +iKU-)xve|$FA@nO11pb +5yJ-!K(N*_A3lD?`!W*mQih8hhe3W8XzrWOeH4B$#lvAEEREFK*rNimZVcT2%)R~A*$W2momep`S2I&{Ln)dPc +z{Avx3w+u9td$+`u`cf7cx``-$eG&zYZP!RPzr5uoIS}&y03EV*C+9sTQU40QQ&mVflh`KUnZ$N9{eI +!yuov8DL0LBJ59I2cA4(HU>a96)vxJz-y?f_N=vi{@ou}k$1=txD|>29s=99~KYeBjW}5G~pKUJso7J{~yaF&-->zfE|CWwXTQ^6b>pN`PkjIeJTDXFS2@dj{4W+A7f4Yx +wX+GHi&Y=!jQAHx&r1i%E?Dq!S=(^SUZ()Z!@xr~2nxTs()YJykiRq+TEJ*hb7DsM)|0H=a0{!_Zj(S +z*QRrtPv~cWARI~89g`YR$?o!;n&iVX|VhbpBJFtL`&h9uXol}-g$Akkn5)iMxiO2oqJr)i6-vik@kh +N9b(06#6Feq!Xa5?J#fT{pv-&-2lwF9*f9D1}L>3<4{y5&vooj|v#bbcR(~N4TA0Zr3hVs| +Ld_G30Q%iuHSU_P!t5%ZOZ{eg;~v +Y8ujPx3!}=vW^Ekf88eu)Iu+iY|^bS@~Yv;+)+dJa%k&UHWS-R4L=ahL$=0joykLW?q0o-3`R0|e)HVXJF0 +@20xLfcn)8DcQQyIqX_m_{)5z8({L#HELUx}Dw+R#oarY}C5*Nc(!i2Uo8Os8ccxWifvBC=W{Qe!-&Li(k%A{{TzNG~D<9gm#c +$F8UgX>?=@}ocLt6RsG5gT|F^Rwp~*bVD?PBaY316LmY;Cz;G-zy`O}PsfUz~8ZgG0MS5^ +4gkpMd+v#A9H-xRNb7YR=B_9!W3L9eqc7A7L;%S0a#XL(0U6~-lxXi{sw1(GiMK%jZ&1%yPSZBvM|D3 +hG?#}^1@ulO$PgKNBaGkP*MnXjj)owkqzpF!&ndgB4ClT9#d&r`r?nx0O@Ykez`s(<%F*iAWY12bO145b`>( +of4qPIyvhL>^%)X*)(t?Mlf36b)&B*E?}nkB#JL!sfR7P?s-lFpcO7aW0L2eD6uS&}7D4el6N>K>6yE +?8XC&_#Gz|RbsrXL6JaiBTrg01nn?Vc@K&LtkKQk@`=1V;e%5DOqYv2d2*^7sl4cQ}c~~y`258ZObAsv63vH#fQ4p9*E7*o1r-qVbG*Fm#_uy5Np>Q@9h +Em*d_Vn{4-i_dir?j(wCSTjsbLiEP`Hf)I=|ADhR;x80zkY$6>?OY`B4yyB?a#DLv4(E#kTP&zC^xda +td*{?v3im=XFVd&Y!?P37xi4iMSqteS}1E#etz(9=vY?q$|8XW4rcI6}g=Df1HB$t9zNt)ZwLZ +YIo+UCiBN8F1YZ(+-rEXFvzWH<`z8lK6tsa=*^kL5=X8581Sw`W?6Fhgfc>X+G)Xs1j2XI8qOxC{}IV +BI@s2^(Ej%!R4V!y^Jb8Hd8+EQgpv$*GM1+@yF-UB9}rBwosKK8vaJdBL!)erZLSn9xo=^v8RNH!pY> +18`W%g#L$yzU4Mp!5r736Pa?ge~#P)942C~(pt^06Stpc6~dUn0Oa{YKL(%qGysG_!OPaki9dHkLP(2 +CLSvYl5AO)@#tFDm(^w20LO?-+*m)84x6dU_x-|Gc0lY2)7^)Jxa)(K#bj($&i?%7TkxF!zHvG8i=m+ +d-f$pP|k6+a6MMol$uJ-I)S2^jYtQgt_|7k1v_4|MQ&$84hk6bZgt16Ar-YIv#AjEO8;h=kbdM)}u3N +(EB-EknpiMy#}2yFS@ND;%`Y@M357%UU4N}F5u)B5hN}cFs!{74D`=i&@!!Z{y5|RaKFHJ@T}}hZWqA +Fi;Hd-*iQ=_`-+?I#EK?**eh043;cG0LT$@#l*j3IfxJiJw+k%pd%M8G#BBhT=IsJYv=^Wj-7bIvrB( +)SkqmvcwtP25Z?+Zpy;@*#->U_B8$-FK-Z$D1`ra&XBX2j9qg?|}c(cHSaP`XZ^~nOiSYXI*Tr=}xfq +uIa3t0QViCEM8OKx!4KE;$U@%7?H=c`QYyw3f +(zdX(?36#;v^o`)3)q7bLFzMRs{{WUbBSS7~Yp;0@sNBSzxV#i=jBFZID%5k@Yx0$Jt^ +dvh9(<8wwAWaaVUeeu?KLj3f;)>BxYW;k$|CYfrO4C#)dTXp9s%!zWe`^RcZ^{ldCNw-fV_(N=}b5G-of{#qY*?N}%5s5-Yx@W1$(YHNMR +3N{c?^eZnBTz7LABt=h&1v1{*nF}xK@itnO@jo%8fq!%B!Tyx2Kvzma~=`5WszPmTD-eUd>h=1Dy$@! +&M$Q}FD&y$s;U{;MBamlvELe>~iTW<~2#F9dJ{3RJ)Y|4P*;^MVy@vuv+apE1sXVCXJrE-9In{IoZI6 +7azLhwIO-i1H2xHKEfNA83jaHk9E<->Oi{Ix=T_|o974gNYqE&9*R_#m-v0Q^A>_~2FGp#?vv5`1g;( +S{$Lq2{)-v`is3=OTF|aiJdFYWVMM38L}@AY^P1T56??w^gwM5#a57F^opMx2?eN8$A&zBZjxSsErnQ +eZpw2Zhq&RXjP&wn=^~ +TR22y&VMKg)Mnh3%v8Z({ZyW~z65%s|+!>X+=wc6EhdWQOlv(KGdeecl*BIKf@joEzydx +$B|lZ$F3*3#f_MRhi^;7g?E!?fZi!^klrx!TmG_-2o7#p`MfU{{rI!jspr26RqQeTDmZ1X*V=n*OiVh +7qVS9O{wLGuZQ8txsA6`SJF7YkZTPZ(GEQB~Z4!8yWYqp_&a^h7LYyjIV3#fh44$M==`omLyzCF??eZ +F-B#NZ_Sd)xl$E6)A+3?q~`OIxM`=a@`;5;lQJ0aIF;3PG{0?8-c}Fy1lehQq51yG9$oUbNaC~>AQ)@ +$S0wm_T_CWbL7ic}b$Ep?sET!NjxS3vTKI_%70Yi1A(6%q2^-gRC2VEvs+<*?XW#_G8#q(B-WmeLqvRhKnw36+#>yENT+0O1j +(Ut%^gg=O8tCu5wjRNIIpu+MVo=>82Xv%Q00&iTBZr-A#lQU_+*c#hG6wt59Mq|*cEgc$&`Ym|>U=qf +=>8pcGi{WmCk#)vL2BO_O9GV#?Z)`QkIAV4D4v-gD(Nl5WGoL6A!nnGgHjKW5l9l0Q&&*3vM*Awq#9L +nDpI7Od+)wugyoW-mm>qJ|+fwu_Kp4ps7`7SOy^93_GojTtpjAc09q)Jr9-%E5Q_%Z_CO(&j7wV1f+h +snVFRR`U=YodsV~71&N6MaAXc5DEtaM-@R^S1sY;140m4z_GA@&c!^g-1{^{oBbp#WX!Kqz3;itpN{< +-RAB+-VV%FU5CLr-_>?Eciw@@jSE@u^#W?R<|3m5VUGkduyT1qFUM3qA$2`I=s+TCE&Gs*1BrI8e4o$ +Fx59XPd#f3U6Oh;wv^SP4}$sWIAG3D(O!+@S^t+o_QWhH>(Cy}$F>);dKCY1_R=r?1o`hPZv7$B1H4G +xZMa*1NWZvoVhhk*0CyWS=B;B3TJgU59~#E(Cb0S9OAUV8myuQ3a_oQ5D|qh)+?+~!v6MIDKO*EpLdb +`E5t4o_N$mujyp|mKy;~HQc}qKDUW^A}_(8F*?m@&H4v1+j&U1zOLAE{i7qkihZhm?xZnkjTq)UvTB@ +;PUKTRmv-*BH<$wS0nh5~?~T)4qAiIo>4sh37qoHw^c$;Y3nTH|kt_l2ms#=pPMYhJu=<(%xB^&n!gD +^Wk>D2@!$Z-S+g8)}gk00FdVFFXvmmBM@9x56-}ry+V;Jgs&`@9%E`UN01%L*Yih>auv9#;24|AxCXk +KtzK=@3)FG0P@)ne+A3i-6M&c$ckN +a9*_3*;o7UU#A8m*v>!|Pb?h>-MV{%cKY9MdCy%s%0A{pA1iDqMXdqK +`Y)}p($H8qLRzDjMteu4Z~|ALoL!KAF=4Hxwm8~JuZO +H17R=IL|Bd67&Ozzc>!!#xY?EyZZx%|)~U&|>_`tEN9tZ&Ogb94LD~C{3qdYucwZ-wY$!&aX4i#Jib5 +H{U9IyO*YEd#a&6=?mhMk8pgO{^81y~mhj2*~d6XTbn<*(UkY}dl5CERK#_VB@HkN)>NSpOelx^Lkz-PcQN`h; +}%r(X-%iV@udF`|0_&-ur#+8H#&v_HG&{}9f7*?8{k9ty5#=I6roRpz;HxY5!lp1TC4MhtB&;{n|m3h +QGUMs6o!x$&BS`S3SK^Z&vyG}q>MEca_XmfP5r5ZbHWipO%lLb2Ry`^0i@NXBik+h{My$Om!j2?g|{@ +LK|R5gGFao#l_OgEHO*WjspUV}eE1P|&B~uTV5fYU^mcysPl>>Uo8>iY6pHI^LKMMXppZ;x0e;+0X>6 +eFfGYMt8~gymJbYwo3;Q|c;4AM&>~zKb`DuTPZ2=(;X&sMdC>Wt$vl|+hh|XuRp$ +5SX8I2EdyV<6m_g@buxIE{?OY`OWGSi9Jak+VE719q0?t1Y%z*Q87Bk>{6g|vV6bd%qXXzVko^CON&H +s#K5reGFU~@c!yDlDQK2F?>L3&@ME*<#G20$N_3^2qz)^6j0a&uzGF?5TK+OvgY!7sC+xsNc?w__{CY +&)R-iPQkQLh>4{VLcBmufd+6gv*Iz=|>K&2jd-JVDlQ@T>-qWRfU?O +k=%IjzX^c17fmped721OD|ozB{h@yM~K@y;SMsQW}BsCy9)>IMyE<$U{{^}ftm*;4e*)0Mu=JN23IK< +*PO^Zlth$i_ToQTzKfiRkS=qbE)KR!`s1ZJNPY359O&G()%9oXnsZw5^4b5kJzFCStd*r3J!P2E%6}V +0$PJ*mhA`pMY(8?;ERq!ilY>P^*{5YJb%sdAlWXW;f8!MLbp;^Lk^ogZ~e)+So!ORvT}=@P~E&^V9ef +lx5y*v4X-EKvaj!dRum^8_yA3QrWpjLIsE=1YVvA8a7pKpsKTaTyL26d!M5(6~)}bYGR1Cj&~UN-k>v +Q4ADMR!$Y)Tr=R1|*;R&HDj}D~G9UgdB?f2*@v7N+G+DxlS5SD+dOW-*p0t2ryW>e?uO8HZ0_5jAdjcM@lIb8 +fGE|Y-v7bFuVEhltdEyi2L{ULZ?j*2dE61;N@^BEZUs-j?}jQxIf6(Pn_QB4TiM%1@{=aw!b +6C02&!YtE&Be}29M3as%U3ky&0qBvV(goSJS#@V9afKEjJdY;D%d60OQZ$Sa0Z=5aQM?lGi&&A3F_*{ +Z!f^*A5uMz>)Uy;gkmxNM)HR5}kUI~=Jr9TIs9=b+KTEofGlp8~CscePi`a~S~2{ASg3QWo28Q)7}d@ +GWPcgiBM;wJnC;)=gqH3dlO)%XoG6fXjwvI4dxegiubQT0LAidZX&@9rRWq^+EQ$7(QbS!mub;UU~>c +4&{%^`ams`PN(|8?_`e5x=KjnZKauE#D^AAoeqmz+mhXLmo56J097+7BiT^@BUEndJYWj-n1nV+Wiz2 +Fhjc^iZ?UDjO<3~4CA>2n4#{pceLmtUhPPM+|UXS|6d|iQ(mDIP1x=FL;tQhL@QkNGlRS-1GiF_Pzuls%roL3=A-`IG~`o<*1k>E+|?kS~D`}9UT +%Cl*$r>K~RKgxZ_eT5YPj!l=W3cObtXtm>7G-&ddwliu?-a!t?|iiB$rgH#5_iTr-I2-ql)XRmzWmNp3>DTHD +nGl!y$w;PxaLAbMjxM`$9xj68dOV}Seo*yw`DzYOkN_4Ja+emuW-63U6Avh&ybinDdP%k8lG +y|HjroLBXI5SSgBrLXwxFj5``-Xq|u)*Zd3`w2ySElQZW00JvoCP=5P(odF}%lPU*257lo9nhYE31K9 +i5GKKt&HNOb?44l`HQ-zisxugTM&YGhedH%!cTeJ8f1L)*CVQ_vMW52Fnr(bE1;x(cAwfU5O7oSh*cj0{Mp{t!wT^Wa}=Qi?p;858a4i%fb2z>66kMkJ0as +$X@>T4Zvs1jdu3+bgtyT_qg*cpfFM3QtNNji*;DozC$4Al^N(fRi3(xXb%&9|7V?ik`mpgN(iXzc=l> +iRN{K((_S0#%Jr6%1pK8o?JqsKUw+kZEVI##Ga!#U007Q|Wn~zU(LZ;`^Z_++Ci@rvu3xld6@g|G?=c +PLntt!KMl2DIGDXdQnWOi7F;ly*fphqv2D8z3LRWm2_%;tZRjnJHDp12`GBEA(pi@1=XET{}HuJJKIu$OKy3whA@j)<^Ke`0SQkHVe)!LmHcs`C%uLw}} +^5sqdRcs!Ejlnw348rQ9=GP#sc51EwVfC1%9fZ{eO*;syyEW +|~tgv-z4`H=P;{{lE23A?*$%EXy3woBn{W%pJ?U|ySEbWecK$B(ss$9iY7RxOnoiNHj10YM5=F0yQ=zN!y(c_hv +6QhvMJS3AeU!_J=k1b;J3v>pVy=}R68&M+7T}!P8O3U!7m8Kd+AE@1$q&5X9)3bkOx`m)K7! +_$-q9)MB+WAg;PeCiHlsv%h?U$LHoMMWKVACVps9{L;cUu2!Dp2=~Y38`fi8gMqzCnuVb7GlZCn`d!+ +=^wH};`slS5AHCM^3hMaWy+F~3j^fky)%di1jd+kgi&`C11G@uO^f}>lsa7ZIK_e(tXnr@&n +JSu{6f#M+y3}RC-YxB$cPWDG_HL)os+6JqK;{x-^@C(~w-ca)j4s7jay$Lssdyc~VH>8z2#@SbmIfha +@*{ZyWCwOm_C6nrQsoux+<(2geTq@`Ip0)05%NK+!_--cakD_B}3NXO_CJMtGtuzSU4BM^ncDnXZe +1Z~r^=gmN*bVVQLl0L#NG(;4 +#Ig1TUYy8)`)5@TIR{(>0>j&vuxoC@S5bjrH6Yv?3_C+)zm$k`4)nn9H-7k2>I+TG(CDuIAuM#ErM%- +ZZ~RXw8{4SnNf`XHul|oXVVusRd5Rk};Ke?_(C>F)1<3N}rO(RQ4T&Dft3HOC!F%m3W{LI?vttI)W(@ +=2V}GLxIsDF1969e*7*)DandFcah$`uk=Mo?#e`+dcTjpA+0Hirw?Mpl&*@@I)_U}!&HP97bB()LDF; +TP$U6UiSaRw(_j8>1R?btjE3J)MC<^1gEHn8H%?90Z+iY!Ixj!-Hnx?A)N8OC>40U^7Fy(oCruJVg{p +h1QB_(KiudMzP}K=_MOrZTwa^!!SZ8UKOuA$Wf2qMCXRDtx#9C?5nW~JJ=rLIfzI8_LAzn+vd6~XcT= +_bZ($!j>zPtsvy|Fa(QW}ZUeWBJ$t52&?ash)~^IgfL`v|F)-o))8r@pq7ZW9rH@w8;pCNNaBOHlhhs +{H_J2QzIvR_eN|WYTZF^zcrdE2m^qm6zT;;}!nMgk%+=nvpqaRR+%^}ehNM}?<}(C{ +W=Tb;X!DDpHBD~8fOYL?nW_?`rhoV&o&lowe8QM?jYHisKuq(wf0)cQ?3*j*FBTF{OUGQU>NT8F>9is +xLIcb~qB*+^(Vc!f8P5fU~dSvqTxT1}-kl;W?T=9+3X8s5hTSSx+-c4pj<#R)^5VR6;vKN@!q)o-qb* +^4B@ct}a2m>>Zgd@BM3rB=T)4o!~AA6aPc(7U4rFg2F7hy!5u@QSgx%^>>2|2>>fqn#cHXDGyllgYRi +$R>T+*97z0Ao>+2^lrLSb0uOy7`dLb&qQIvAuRVTD*GJhke#6?%QcVko{(o*TrfCZ~Bqcur730<*44CfED40E=)xgW4ojTd50B8?S}U!)@;bJZ+O+#!5 +5Hkx+2N<`08Y!qP9D$coU1Z$g3RQmhI7&MQY~9rPQKUKKAEyTcV}|1O=|-6G~L{VLt5J*3|Yn+Y8(#uDM(@z0zd{a6fkeY +G%rJ_qfz-zG42t)L@+CBkNtHQ}^XZ-#Oj)E`2#ocjQ{$j$0in)bIQ>go8gW)FMBPAB>zN=BA2MewbQt1g*D->nPY%igV<6A3l{ +Z~N=5S*9s;oPWaVi&J`IILy$}{byELNn{e#j%%bj!PbNmjzH+#efL=t8XS6)0^{a13IVYOGZu&&=b( +EW(5;fI`8(HsG6l_S3hIRL7k|BAPEHdqX`dC8eP6gQnQqtVXkymo8G4HJvN1kqw&9C_+LN#PhWc8 +=qyW0XqG3|?5r_?gU*ra+qQ5?&_gOg>G^s$+>WcjnP(NAim7naH;9 +D>oJl@1Q8NvLrq(i7UovSx7-_@R0ViD((zrH7axC8DpFr_RYjR*S4@<mywAtHf^Yl5-O4!^yN +4VPbyRNm4Co>zp`IMrxcVVy@%HVMtlhcnN)|l)KB(@2$sa7Z7~@lqHIu)RIdF{Hr +3O)W#63AwIB9(h6-6}bzuLuMs{cQ0QipGw0yXc-Aj6%Ii*n;irCaxqxazT_wv6wL!_jW!}d9~L1$e)L +CsL;`#{_ir{XA6ybh*QK!$?KhgJt8kRhPb5<1n=66YXuMN+z}?;d>9j!R6Sxng;`ON-47tI7JZZS?R? +Ey(2B>dLis`tqkxL#m~cHmqhUN*FsPIF+_0cHHT~MM-+M!GTP|w<|(TrI)lTM#KMp`f^CJbEGsIkFY{O(z{9pa9q`IkX&^bB#LmAA1$+&#YW_P2 +x}#My(e!bxlQNs#TD3{k^?#!x2)i|4kc>ElZRiOO(FsZ%mWAZl1^z=De{95w9RKFxIBGeQ5}mtOMXys +7m##ONu!lCtSyGv~9#emv3WI!Vl|DxwKeL>eY-O^9EZwuLi~6tnVb}W*z)5WcBWFcvcEND1n8r`1Lh% +Xmw+N&KwqRj9=T}G|)!Af7cbqs?!;G^HYn$q%VI6`-!q;j^oxu*>RbhK93wJUwpvRHNL(IyGD8-q*U+qin91=>6)lj1g +1&nYSu#mV@FG1Yyu|l(rd(c*xF#04#TJd$Im$0l2758E?n`R0FGm!D+Aj@ge*PeHO=U%2<=XGj}`B*O +4@z2;gt09Lu;W;`3x!>u7>KBrlpGFeht{Th++T6o1_|Cw9ZJ98mut9fIO!%f~Nw_5|r5q3rt!S&pmBi +G>(Lkkbaj2moR(fB=|T(=p|;hvg!N_nCN!}#?-KNp3?Je&Jg*FP3o}}*R=9OtHvaROn`Yy(Y5rrbAqVx_Ze^xt+`DD>IXy(C<2{FE6L-Fo)$gMVv +Q{uHHWqRnFEynO_V38 +a%HyUGj#3&|FPpQO;M#H8#DMwSZ&|zNJ%4!*O+6n`5pV!sd1vIIYX2tpg%$uVM(D2rG&^CVn}%V{ +&_A(xj|#=P>$chkhqyfUh~;)=IZN~&Pu<0N6snh*@;oPUfi+ILF)aPv45DK-S?1Z>zYk>1_mfcDl{jI +aSN!ZQ(5HnAL{}<{17wG@z>Hn?!jcH!j+ETD48->c-;d2TwTTFpQa&H+nlJCKIUMJn25vL?eXOpDX$ +}|{OuN!HWKCnnNCgrd(KAvJ!;KRYqc$pb`*O+}uUBdpVbj=zc>7-e*t&+|myk>wPY0OfF_T2Ar;>2!x +4me?w>Tw6D^eYA#s_auDP8tzJN#$N=bnrfo*|VywqeF#~^EioHIZ~) +H>4k)vmA-g-rL?hGKJ^xqY)m6Q_+rGRwr#Zm_4W8Rg4~?#UYH83C4c@iju>h~(M|=69bG_#2%6bC4!x +S0U}TldN>8gf$q?Lpg#QdCd?@+|NHZOO>@eXdsu^wKxi*-5YH?iKD&8O^+i`~g>r%p5{ry^Ybu<^dcD +H-*i!U4HoA4$&t=Q|9sP6@}(1fRh>|P&gNvK;nQB8E9;La$T_AlP#X~)G8?C0?sX|1oC{wx)4NbISme +}AaUC+;(BbPBv<8N4|_d?33;x-H +Zq6-8R4uj%_R-gV4~bu6|+9h+aG)-fVEbK{gGsVN!H5ML;7ar#4bk?h)Yx7#86p@s}NK_w6>3f7SwQ? +ZUT@;Y)DqOfj>yYSar6B<{hL%oP{*Nbu8iO8FK+#(W-#r`L^cpT4ki-+DzJm}IeSgc5v4$xKMWZ!Dp_ +9m{A98v3xbd;`|a*5GRW%#OAT+e}8i7$5?Qz9y-;>qlGf^aXCG@cHIaRZdQec|6z?iucKH=6KPYODO# +9XNP;f|e(gb6o`7gMtpF!V;=Q+jn}m`Jh)UvkgPt_gM`{E0k>)_7P*Q`^9Q;31;D0_4|8R5g5iQSp!2+D-x8JP +}GY=Jp<}RBVr8dH=@3b`Yd8f9qKk)DQe71mJ%65u#~h?fRs{dB~wgcsjVLbLn@@B?kpCnf>9$OoE4dd~NX4%eoJPRjhGrp0|a~Y3kvt%pdn~^s%z7_cijK|erIhyf^kt7df +JbeHrl=1jnjI3omJ}x7-rYr7;VSZpdebJ?n@pvs*{*duFT$bw?kH-V$w-}EP!pPehj}O$z&oLhF#LAB +{z8Lw9jK@>waxvpKAulriQRH(OpNsrL#&1PFh4I^wH!~h*Mshsk@iv`2it%_mO*SyT0r_yoZ$Vzicsz +3{Us}NO8Tn?$%gBGj_-5o!GQJi0ddB0nf?Umbe70NO!T3<*w=zBw`6n1pAGF%U_-N$I7>}<`%BvV3k9 +`c`%8`s;g?upMi;*XcuR#9i`K&CEml^*k@}Dz)3 +-S$&--`SJ#&1V{H{%i9MBX-^E)P-61)L4%c1x$pxJ=Oy?1%V+WmYm`*voqyTnnGVma3h$9q@|B{`DY?+9U->=^f +@ezMAR_ym?^^b%(`T#i38A!Ep~IlKeU|e5Vy#Or41fvWNo9XrHFm0-U}ii5CdtG2gn0l?m^rTpK8Uee +m^@3kYs(#X5q~;L7>Y><%61Efbt02{X +nk_p5dx^btKqR;^w>YNH}B(jmtF*qQ@G2RjE*VXaG?^O2#)FI#*9AUUhQR)7q;4nd7C+H8sfS-k4-~Q +)GA4b~A3dvIlnAX9pxF8`=Vhiv*>djDQGu1NtvO_@~_bRCOXxvI=ou|N7gkgC>vGL-naRm!rxqkI!Re +{dC-p_WX_0dk&c&s@58YezV{IqjSj!_*fa#J5o8=FJK}g2IjxI@%psv}XA&nMKH?TeSF ++YE3AviPSV|1>b#mdQontEb>EZK5>VvRhhbEX;hR8v7gK6+YljZfvA`5GL(p(u@unCf~eIv|GY#c=|^ +XvsVdo5CcjgZ`f^3o#T}A&yr3wXN-yffu+ob`VsPn2tr%dHU^?p>WtHBcGi`c+xb%7C3D|V@HcLBkoK +$-+{*Srf^1}-(8E8033aOk4)4Aigyde3N0PkCuaD44ZA?q+jYQC2yy)?T{N0faOaWy0zEV(|AKYdV9E +S1_QJbDH(>;Jr>yo;y&5>7iqq=)HQ#A7DqBbT4_K9GddVo!{64~Vk9JW|0Ewluy8r`fWkxst}R>2e!e +d3K)`kM)8}LK(|@fZk(fl(oV1bYa!ZNV#$gI>z^rl!!l#p%S|ENlI>ek}i@u{i+fpUH*t_-SO=UvHjZ +@^z7bQdD+7ZXz=cJC_?PESDs`-O8|S5Y-OR?dmhTJQn?8a`g +82+WFUbcs(L_ud^uhf!H}vJ~Dc6u^12-L<=NX)wX +(UVo9x%n|>9_lvFq2}qT`5&2i!wl8@W@;XWG7!+_nJGZsi3Q~SMbuwiXt>-_|w=$ZQh*6`M;FPyO8A3oeC?6vkN%tE~^bI$>_!Cc;`Ak +)Fe!=%yl@IZVV~aV;sB!x1_x>2+f?^9PK|d3Yi4&BFk7EdbKD~jjEDZ(=x!gi;CE^WkK}WC0v1g$0h_ +e#$J8lwcrprtgJWLB#=s76~4<5$V%QwxWgPj!j`J&r+eWMq6@np8x6GuKhaO5*6$6OgE=Zc=8kKs1Y( +1#-D^q`xTFyJ|h10MgJq{=YY5etln^t(vTv`QEg(YqIXRMdo)LeY}kOH{{2TVY)Eiu)Wq!k#xER9a7g +{ddA?01IO=W_>B>GaCBkRQ7YpbaV!s{9chKifeE69-Vz^mG)Um&nwP>$uXxOQa(9}mD=8x(tR{iV{ru +1PUFrs +KDXD*YAk$AkT5owNE8NjHYJ?&fkg0uv{O>@v6aX%%G7P-~rAzJ7VMEt0|BwlpS#pF5S;)6wdw4l2Bcw +m(Skm1@1r9qW|Mb6ak$)X$WnF1nC1jC;Ca7+PRB;5Em~@h&e4(1qWb)_seJhfTjn##-=cIz)NWOR#A4 +x4uDcP{487WmHbXF~de&Rx>|v4)QjFfmO)X}<&L +D=wosizAsM>vd(>KvRJdK5@FFQ=%w)dO(5Wak&Z3OE9xO@FN&M|X0(zd)RHEJP@3fVHhU(iE1{t3sJS +fpURe)E24N2A#u&RRsM{Y>m(ENju1;gnd3$Oj|Hfpm-XXS_M%O{Dclj2-=jt{)$_8K*J8_#`7b(&?qj%qt@(FE!%aCJAtP+a9ba*8nY +dy$s;(ls=n-I4ck#qVHXM@aYyK2Gq?_qYp2r$U?wI>2cW;cmSrMtZ%G$TF_(Q2*=168RJwknA71uf6J +;g1y`93}eOLWl4SpVkc!f~uXy-9Yn-Vdf`+bm5f6_Jjjjy4BIm)cmy6!@mp_1d{yhgvvH!1F$oYK}ny +!&i4={Fysn4%zcRvb41@v=S{uNfQVp4T9F30QY7DXsOv16M;h(yLUTgHDaIYmjOMg2aGnQgCKAQ^^_`11U`n7fsG<+Uk3e8>rKZ9k*^= +`L)Fa1HVaP&+@+vn_eC>ngm}=bgPJ!{x*Yt(C;2H|hgClfWAXq$tQ1uYnhw)kzD;5M!^2KM9m`6fPvy +cU&Dk0&Zeq%76c9ah6rMXEXr@v=9*l+q9UP9WGtof>0Sxo;naxzLJ9!r?x?$7FU_@2sO +j)#ebiog~#l1~uN#GKjvx!SY24)|q1tDiQC|OG{#qFJ5O(Xj{MA1ta$KAt=$Pj4(-;Sc0J)FeS9<@A1 +V66XtQbqA$mwp`Be=deP50Oa5i4`=nOjGQ^*4+I=2p=sl=+u0vQV0<^&f8igb})>9%9hq97+{Srr9`^ +@zm^b2^LzG>BYc6b9zc>qm>wubf$Mlr}#yq5IWmyHK2^4&D#ff(|pr4$UQX)5T)fIQ%?V-4(>8?C4 +?5CY+9Q)~MrYo=ZSR9|y9rhDFGpDAHp>EMsh02rN&gsp11UbgLf(cVAs~|;dac5XMCs2Un;SW~1Q)H2 +}Kf6yIG-@6Uu`Lo +?=W79=Xx~`0Wn@O$$|MvW^;NKb%|2DTH{_PSE{_V}(- +e{Wyzp-iUM>EuC)%2Bq77rWrYMGgOX2TuyjyGDFti>1Z4yL5#lQWg9saEfm52DZZ+6DN-MLY>eV{k~E +eE}-7JTcb>vxv*XaG}FjjY8&fRR?KPG2^io;0gV!uBGI1Kn=qh*lFg{TtW+g3~8BE#rW=QU5i7xB(Wt +2KtWy;#MzbVo~uaw1Hg#;tqzU*c%YH_KJYGtC@FQ0^-)T1H_%(9uQX-)FmM9jQ?$bxb}SV?*_!Z3A0j +u>LZ5giM{ea2Z&3>2LW+wI|Aa)V1T$YyZ~`$P+X`P|91d!U*4cx0T35-LXIrOV>-3%0dZsdk$(~p_r9 +e#n8a&%T?69gQ1d!(^G<-cuYKgk2>q`H#Ql!0N_PW@d(G2V0>s_6J>>s)0OD@h(hd-}#at;~0T +9=*yAg4ZMJNh%bQBSHBHjwYl{M&s0-)7t{WXBx2Pd*Y=9K_)r&562F +m?a +wHzY%8V-@$hePD{_ce{ +HCw$98Ua_?^OzHh`~aWOmNq2+i^P#7|9m|S_gIwlqn8g~I?aXe=66l~jYv^_9_c4P5qy|)rk-kUYRAp +ZA(Q`aFkIPQKts@erOF3!8++rPzoHS?p;+u4LfUg(}tJjmupD-xzAKv+cu?dC`3lCI}Rc)=xFXg5FV< +(?mXM%PbIy86l`?qKAH7t)XgHhb7C&@Cp{KzSY0m*;z|>Ju>|uYixM_-(YI;C@OUW|I@ju)j$R#U>=A +bXKIUHZckfT)jb|6{->qpg~vm&=Nj?n5AP^P(1s3Ie5tnS8v&^k_`IX^k3PP5+}P-f=k6dL&D;!n>O& +BZ{N}$3Wu6n5g~8B&9h-(oknLz*@Bd2#0w_!3vujriK+DNaH22AWi|b-qUT!;S6{UC-n-lpE}kmGJ#3apvEKQ>L3h``##9EaUuP$^lSSk@0LDG9M;E~d`( +U9UedfWap@##um*YA~x--hBi@h*M&0IJ_9?b3aa_G!2B%@0Vx1tUwmzU;ZS_A%Q`ufY8f&tEPbt=@?1 +{(aaid_70{-Yk8I&xiID@K!~g+$vGA#T6%dNhqVdnm;XiO#WQL3wxpg(lZc`Fw>*U2c?fpQa!(*urCY +*u5ZjqdaJccXwwTddwl2u49o$pfH1{zmhpW+?>RC)I{u?{!781V{>pxd=pt4i=rmeJyJZOZcS)pD8Mam9^p@+QZE?N|Hhj4%p^Aq;pzX?Le3bH7jtW1Wd9EFw+=oi50~tf!VHb4yP$OEIXF&Y*;D6eR!Tm>&eG&2s!QK9FWl&iWCpCcT4 +MpNu$N4Ojp({si6dAqc!5-k_T{X+o~P>}kyZX_JC;*<}!xJBU%_tc6hC%fZFYHr%y8cRDHVN9bfL=sA +>0%R%7pp#^YGkgUHD`P3L3@F-%AbyEH>L>vU;#9zQGjZ#a`AXS=wfzkUxYUq@OtWQ)x4@8S;(3d_)Gd +(0V2bW4|x+{y>nSr}q4v0yDCnoezv$Zn&7m{2##zK7Nst&TRP6ysXh99ya>U4h8D$$9V_vCg(d51RERl)w!$MP5JnAAZG)6je! +m?z_l)5nCWaDVxng(JV==#pv9fVO<3;QKK|*rHGRNQo#6X3x4o*CYRwrZ%Tot*b_}%nU-Gi$MWVlJ++ +}bJ_czve-|hWAPC%9XbI_9R?c{0J;fZefXJ_>`d0bR%B{odQwC_(V&L;6CpeFGeS8NCUd#JvTD- +u*1-FjE3Y95T{n)u?R^3R+Bbk)P9H=R2*pn5o|Cd3aTfd#7L=YOzU>MK7v*WE2Gn4~E5**I6Ao2Qmi$dSGu7a|3zi*8VviJMeKJ0z#QrV~71J`NaL2~ec>%#_ +!Lemtb%LlGq&aNN0-k;X#f$ONBRe}0}j(ieBbMX21fp4=`GBrw|&s)M!W5dq63JB#ekKKFp`ZLvmqYeJ48@uz +HyzbqeIP4^}Eazjw-&3H{p_K+d;`{z`=8N7w; +cWw;EiGW>h`e-z8cdSe=I;1Q!kJ`;n75uvbe-`~!}D1X?|B$k~n0q?9!5knCaP6|IPmyhfaR=eP6`o6fU%Zv%RZ!T7XtsrMzWn0{#l6Vl7Y +W?OK3H~~kM(NsEBF4c))n2-G0zv$eK#pHxt@1P9>BcXyNZM+KUlJ&P6yHVJm9EVo^ziWwT}4w)Th@gx +%49`+mj)?vp_c*q&+q@|U*k9prDr%L;~DMAX*8#kIi1VtQcmyX^ifV<<@5ljjhwb{s*7VZlG9O~PT|z +b=|WDIa(WM^k8>Iw&uAY`{W<;N21bA8_Q(WAgE@`jbPA_8bGnq%3QnKkbUUYqIsJmuGn}?@+G`@C*K& +F@rx~0Ua9YOcgPd;RbQ`BTIo-$Uhn#-JX)~u6I1Rj>Q3I!=IK7e6xt!j?sh!gbPB(G7h0|@EzQgHBPX +EfOj_2<+oW^r1aC!%)t2n)v(}y{Ij?*2S9^~{CrxSQNs=s<(jypL$8Q0#tyWf`K2icqXG6Cm5}Nf +zggX-9@Hfd~Mg}-ak#qnZ-zPD3c6d<4_H0?8D1vo`$;Ll*(up{1pLBBdKIM8BOB3AF6sBxt>@_lH2bz +ax<}zL^7M0sjdKjlgV=Un+*OGx$R~1zfr^habSN2x6W$*N2vZ-sy~+N5RyV;4RcCP@n-1;|@Lb9R@{n=n!1T$549#A{zbhK$APO=2PA~3_>OyKi*JXCc7*e7oLc5s_V^0_*hWP&=2nF4Xv8>^*v^5OcIu)WO~Y@G +qODyuC>(*!I>-hWHnF*_cP;>8;MB>0;rk;i>+s{;B?`?m@1E$;+2dE^-T0HvC2zlHq4SW;Og+{wI&k& +K}DYDIhK;E;43YmTmcBn_D1mE?m)0Jv&P*MCCl2T~rNB&Lz$wi0n*fKJ{;=vw#-7$?nL*GDyyJWVy@P +w%Fm!bhtBYW@Z6ZLbwk|%rs#BJXHtKrJMuUO`I75&6uDK9U$*Q5o0mq +alc|ym3#jHiC#RVr`h)J#4cbFHXinW}e0;Tj{sFokfkD9`J@uhsy?Td7^ywSfum6C7gRU8D7&3HN)bM +LZL|->DX4L30V`ImSkDD;@`WxaWO-`6H^~RfwrfG@hr0FvR%gkBUAEX +v4SoRw|MS(2N#bXorLfyV&$sUcip{a?Yi|OvCxsUDo;#t6lU45beDrHWkK0HKniSR49G-2m +3Ie~0}*6qIp`Z`jdf6a2AYl#63FGz3Uy~5{CV3^O;MgKP{(F;V~X`~Hprfd+Um;ATxkDdNgVv4&S +f>^P31ltn>ZDkC!1+me#4nwp8hpEb@dO6h3<H^BdyH1#W}4<5h +JJdc`Wg1bC&7q^GCCy>@I=6@cog?ZpIlg5^XX@Jn2)PFR`cDRs+ie`5B%XhnAK8^ts3r!{Sbvfu3Q8n +6J2L7_RW4bVQ4jK}+SZJpZQf{FBZ^^cqA?%KC5x%BBbId=j_UtEB0udz%BK0B*&!9G|DJk^d0j~5B$~FjxwLOG&{49jos@K6Ut +_(>@9N`=HkgcJnJ%YlvCH_zdX?YR`;Q}I9NVit7j;phs{fw$K8KbOt8J{uvV%I0`e2~Fo1N-7s9KE;b +CcaEk9;`I2xapvooc|PW7(b9FziHgI)+uHGKZ +)B{xixO$)(eh^b%!_`~4daxQ^AX6LE@VI&iR~PG;dX<_VT&<30ja+?~8b7YS#MO~pt#EZ~08=N^y6>R +l5*%+}SoZ9Lok{I|iKuNbBQCfk+nVM&w7U)%OW9T0tQ|LUa5aa-DF6ZM7<^%e-j7q>t`2R-gu45 +=k?pi*C`k&Iyx5@7Oil(zetYz0Rb%8TKA6S3cy45& +#)zpdzNr$jyKsWVn45{B&T01Q4B0ha#vW0d6_`KmIdx`ipk|bvEn#CqT(u>94GdzxFmty#6#-`RDEa9 +)KmLWopSQ}}?5dN@)7@TuwdwVw +yQ2<$NX`8#F1e?)to+{JR8($|Hdftt|E32X{O#t49)9G}#~%OP6Tg4*sVz@G^Xzkfc>aa0FTV8hwpU* +LBcX=`ud +x1|MH#O^u6ncAJ6>MeD<$@`}voabFJquT)cF-P5Gx6Xu4m3xvB-4|L*kvcZdIPUm)w={C`CL<9=|ESA +7@+YOR<0;SOqilG1xDabE}Z{TT39KCw_)aU29yBSCCz}a +-Nte<`ov8ep->uF?;b+Tb5`k$SHIzrv?kSKVWXnED}vwV%`c{N}=6pck44f<{e1}pEH-(rWLMYF4M?7 +81v1gD@bFA8Ah2_;{Ee4F21+8q!{oy`JqB<#J0%GP)C!Gx^|uHmEXc~WIVKy17g0+Ny6b@U^73uj2C>jkXtxy@Y^!WpPBC+FzPfXgR)7jL&w +-3HWEL1Q?O-t*+~BG@WayX<_8hj%Y(tKta5=bO-V7UpdqXBjnE-j54wR4t?*Gif#fB_!f@NsPp^P&S6lwLllNAQx&ckjq$6&8q&!hAz+WL_=0#w#`tOW3a1 +h_4pe@*E&4=VPk3d4xo!^EXML#z4}X9WrqsJd}bvN{w`k*u`odCV+_Oq +xkhw%}s)oz6lL$_r{jdvCgm^ps9@YY|=BbHF@tp;vp5>J<$0e`TJSi?UQCW;(pIuP#`xa-`|ycDl$vH +GQmJd;8TXzq4&r6uj*ioJAP5wAAUN{lw$ryFrZY*Lyb$}RqJ{IJkXA2*J`6jmqJ>3y%kBBLMQS^|FgveETqs^YVT?U{F}a +E#`W@C=M|x)mlim}8NbkA&hLGwY`{#*lt?C&AA@9LwyvXby2L1~#by$Bb=|8@YJt8AK7TutKhoD{l8+ +^BNJDPrhq@Nf<`au}|QiDjp37~dFRQDSlGI8($JsBYOBz?0(ApBsWj|+78H)A4 +Vc(9K^hVSDbs`plJE(75J6+@L*{4v4=9@y`x`boi5g<0BeX_am<-WEOn)spUZPxF^_!e1? +34{B7*r5LT_0qvZxd?C`zF?Kgwl2cW7RQo|n*2;~q;24q8dOz24lJQ&{4t2#7A6B$S%q1+;&+#;b2BI +iX*MpW#4-z=n-|g3K6Cn$x5z_AxqncnJ608X$8bdHKWQP$$D$I=` +Ukr|c&HWoA8~Rj-+cg7&$w0`jfvG*oK*;lfb0eGkH1hnx@`QBiA)WfUo;ZIj5Yl2Hba2RR7`GtBpXV|$Qm#5c$_**nNJ6J96RXttA3E{ArI!!V +lG04j%S9A3SR5I^X2=BjbPGIIFD_8Y8&Fkuev@YE;tCtj7WE7Ys-3>af)c>D}QKgavH+l2Knrg#X)Pp +Y|B{ZM6KI<&DV@Kta-HsJC8=2q``jt5!lt%bHCfb<@(cf0)|2g+`V$1PsRTD-)|Z7(h9H6eubdN3$OL +uHBAvw?xE454fXIy~j4#{09SgfuN9WPkfO#P%B<1a)N&8IYO+^<_30pqWXSOP2Qt1g{wwL}l1RukPLJHM`VRFxo42QPBbvSIdkze_UV`sCZhtiJ`{C=$>wqR +gMX|MA66aKS$iG+=z+W|nt)cb;sAnb248>DqXlXj=sz#3vHMj~ +vhIBBl%cfb=x7-p$iC{2nH-#~$|f1KdHGL_(QFLLPu0_I|NJWblON$zaVBq|{Sns9o=`VKp +l$|}@CQTftW6Juyy(I5g4%(83*r|J@e7~J?LZmop$w@VS}%08Ui84co95|@7HlVE1AHl$8P!AulBfy& +NYr2ZH%B)1X$Y_GWe>{;O$qbrFWu?f4fPW~2QR;VLv*B9svhb@Ptwald#?<4e~bCf`{e=9pA3NXK!1> +;mKXHfNrS~+U={{t8A^I5_Ixm~S=Z>_psiN>ZGrGU4eaQ_j{ZcDo%Z*K^{5j=|g&s4~$jS9cjn>dixk5HOCl_G^}qR$RLb0pdIKtw|BED4XXXLzG%2H{R2yqW +yy>pndv)kWbY-y#{3d!Jx(-4FT1Dc5Q}licf6&yzunz{jLup!zbM7J6x0F+m%ci20-{%klV)^33lb8#JKj03nD{Bn`UTswr1 +#rEX`2O9UA5v%g@F@h|>)rsf-{8plQj)#E&RGU#pbX} +3)6{{82CJP+qT=i^yC{+FGPAFS~{4qBy|VG|SCl-de2>IEc5JI{s-gejR~?gFw7RNkw#GYc296LRiqCw6&2+zDd0Y&7J57<*_!Fp1HRe|zW)Vd +icwE2%(l5tv-bA^-Q>b-XTEKEUcT+-%;jkJ1>ZTi>eywx^L&$?`C{I*)uJu6a6w+SEipIKL6)LF^Kj| +JX-8)Z$VSvjwJo=^j35v3^tye5`OGrrDw`!5%G!soVkhD9Eg_pRN4(50U>Y!2TNzM01`4f+}>ZUVtYZ67vg-Y}~V1Npo*bvc`=clbxSWh(s`&b8X8DSI~@@XSZc7AW +52eq67X}!1ZKm1B!YvEoL%Lur4sASg7+)d<0vjeYykZ10PV{gv%}DuOz8Jv^f$Td178xX8t^g3N6tDU +#l&1g{_mmo#lrE${AA#p?sxHD_|?2*-5LiY<9E<@e}d*_v@I>ZjF6>Ek$PAV&{@2Hb;uXRs@+ruGP*J +^XKP5A!X*L6|BrFfcef~)Uy^AE_2$aI}2z;Akw%f6p1E@nRe0Xut7G9wpAiI11Z9_wUojX;3tg6w(ryn@6+C&YMThx%nA!!cGY@=ympqq*I_j={VF^Kr +h-QAAZAQ9Dffpq-#Trl5UNfV?RYdbk_W#q6YHJ*Mnz2hFQ%JoS;uDagPCzXgy(R4mCFPaDB9h@5~D$hV1|g +sECPFW+Xfld-XGBa}r&C{2({piAg^y}P)K;1U@sf|Nw +p}WN(FS3>;#pa;JRglG!0YN`b+l#!cWjtNAouvk{ub9@5)kUIhd1@YnQ$$+>;K=>FeL;-{#N=x&%mj& +9?8u~b{}h#hxi*&ZTbNX_mIF%sH7_+J1ajtfC?#i6E_yc2nUe#egg1mh5bc=`n>#OUn15b*GC$LihYP +L?NG3DMo}I&TdXA50Uk_sfa{wl}ApeBKu@dGnSU~>s```OB-pS7SbyT-IwGm2w^@nRDU5}u*MSHTc&?qSATB5 +n8&$<(|fpiDK{_U{yYF5o(O)DtDolad5(wo0@vTg<9C#sf5Ocp16W?DdG_!9g?9U6=7w&6|MsZ;m;Aa +vT*u72Km7II8}EPR@Bg|Cbol)*7m1W4KHl=t(&pniXrMFhS$)qCZvOmfMxXuzqa{x@(j6${x?)NZd#2 +{uQ_mW@@xO$xD;qg|<0|c&INb^Mk3I9vGyTc8&&bc**1iAho~GO!=uqaIy5p3AEIPIH)cDT!KREeC<9 +R~Htz$0R6h%q&G8g#06EmkqPN#4h&*=nCV>ylH)WB&Zr#ens{Tcm%(?(7|=kz3}A9C8jX+5WPoF3q`n +$x#9-OcF^PPcQqmD5K#-NNsun8F{y)F}oxfkZKjhQl=gWVp`_^8(9p_Z7?~ +8dowx1{eQaXlzYJ1bjX+_q*hOXzoZ@9l3v;Hxv#q??D +DX1S*)ZYVJxW7TfIiS0#$uqq8R*(@=+A*K26_m-&w;N88WI8hYqW-h16>T?)+i0h1{&QL#x-CE>FoZ{ +mII#xbRkUK7Xpv;n!OTx$AY?FnDZ?}{t0Ckve5t_WV#2&3EG!YI-%#)q^mT~y312aUi%W#SVM(rbg;aX;AE6|`3Og|XtRL<7{ef>HZ%YmOefGY +6)jPV&s$Vf!IhWLyEnl%c>6PPDJgGNL0fDZ;@V-0rCXwAblIYOV?^hHPEFKp=>}uA +86x5o>xH2uZKDe`rCo-j)!sFa1Es=CPDmx{}AYq1gM9=M**Fdz~W#A+LFNhZw2a@0%-v|BG9o@S^mcY +9e*S6pg#fVQ#Z1F-U77$O)R|wf!+gOE7&OmYBVx^q`oFX27>=upm$G$xdiZQfZjKa#eWmfQ!wes1${h ++^Jx;q6M3L}1gMk1zXi1SOz;!jp8+%zzDD +4)fljm%@(u9uKnvmf8F)L;z+{L&lwB}lZKXpQ;R~EV=clu9(}Dgqou&6@pvAYa{6uPpDO%_V4W%O&LO +lh36wtTeO9dY3xJ6L!fS&-gS0;?zfe!~dC6oD|znGA3vshWkKyS)sX*2?T1HP?b{{YaYY-axlpikRi3 +=aCw0gcXKaYJg&VQ!JGUqXl$>l9E;F4NZn{S>}<;6Dc%k;n8SfsWz4094}qMxgJ)X9m6+==nSr)+L}X +FJ=5Tpb7aPZ`eKneLSDnQ=r2OLEeCm2D+?}#a{&aLLsxW73f_KLbd_F2IvL&>VUrlbbS%yi-G!yjMo9 +(B(m~CI@t;33;I)lzTsqfxErW;1y3)~X83g1fuE?i5@ZE)NYy%sC-7T}~gn2aZ2B0rgGCNy=o~dNvHUl+nfW95_#0>P)4J>~?2U_tE)YZ|DS3s|Qn7NGx8t@3r> +A{W;=uMAsc?0^uBg~)8K+inG>OwQn$md{A4Ls6q&#^St0j>H2sIe@7zV|%KpE{t)FR;8#0s5O4nEw?( +552(qFQDIW9_fx3nSG?+yu{j4q_1ydZRQT3FTDbJ1^U~7Zh4jUDM(Mg%E}9A=pPx6bU%EJU_WI$qzk? +uFkL{W>?R~QMnh@OJ(hhczzE%VCIN)~xow*P44R|Zim-a(?f!_vnrkMdz!wU9GtfUAgR(^V0s20C1A(sx+H{PicVGh{H=lq!0{sl2&z@j@J_q#G4 ++zNz{p~<&Kj1O|wBaLYqd^~O+Q-a(I?xfHFg_Y+?kCJX(u9*t4yOR!$N2+5qZ;vki-uC)FQL4E*8=?v +zDSVa&w;-D1C!@%KutfgvM>W3aR$l)^rL~^eTId*2B@(a+6&M}n%d0D7wLs&Caaf#?)n+z3GD0!8uts +t2Y3N!V++Iwc%-kMgK`0WJJ8eTc)tv^@I1s5^w$7=>pas(`U~eLWCf0^-kK7Tytk*07Sse|)K@r*LY4e6&`AL&n=M~Y{3kw-d&^Z&p6wETaZsKM~DxF?}lL +dCeLun8#c6>eqQYF_pO=zOIb^l_d7Ri+r-H{&uJP#tt@xW8xsij$Ujpty&aqUq?5hTeG1?Lr@h4WzgW +eGK=}F7)xY-K$u<^{czlZ|Fw9u^av7ZuGqmG{|9JeG#+) +v^H48z9<}a|(8l?B)b<@|Is83Di1YkNVNSLc8DPo_(`e1bWEu~2gbFa)`8+Da0}{{D^V>UtFN!8YC6r0SlM%!GBQuy>%%3x+m(7K@xH +>e{?5bDe3(aTT^I7_2u&MVb=O%U}Ga@m+sPwkB^II7O1-Q$g$^!ZmXwu@dN!IOjDFra8CEWA^u07O|5 +Uebga0V+CQc!m($*Dy+n=CKICuH6Riq0rumOv$jlh+(}x#MGGppLjax96;|l&`#^loA>h+Dj#W#Tn4E +Fkb;nNfo)=+ixX}CRacQ#n=n$@r#Co +5)Kqy+n5G*g<9dvM-d6%qz_osJrU;?uqiYVt@MOpu@YY|Ao +vh`|MiO +USP2antPo%Rkt=+vodEvnSw3MN8EHOU`Gmyq;loKxObm&QjU`j3P9-LjiC8Qans; +;N%pvpV&nLIsatpcr_S?z2?CE65k|kv6(xqhi^5w+gaM1Q+?b@~EY3EJk<-4Ym*ViSG(j`e``%7g-krGkSRwMvhavP5Du}`h8o%$s(m7*iI_r4Vh$qHO^{0n +UQ?xgX%Iw{h{O;rF}|WS*O{fe7^7deZOCKyPbR +QIcx7VueJ9&=VYE(uwa2$ym+xlO-&WcmoJy{&Cbpi>({TBzHIB(ts?iUY%%F7iS>mfcJJOT_U_#)_V3 +>>4jnoqjvP56jvqfRPM$m|3NGY{+-oGxo;@q|;^M`N;zq$G@zd`l3JVLx?c2AduAr6i;CKB)_*D$Qli?3Bd>+G}V)&mJ{vyK{F#IhYyhlThZ~oRj46LQIlX#ssyhtT2bg7TURI@wdu`Qd^tr3flqE$EgG{$+-DWq3|tX8SOF2*dMOg;5MYhT%VA_$3VgIm7Q@_`?i +;K?l!qEtE|;j+2$yl^DJGkYr;zx4HHo{2$Oiu^!#8DkUxx3+@BhTqQc$93>UTe!99e=-;X +`~&<0<>ziq+#1w(b#2($cGf?@7#tiJXf*ix`Ui$Lb!*h9LH*91>!}d}gZVW7AIu*D1H;`LaNtDO%H@$)zO8v+ds54@Va?(Xgr{t!uHh*7mpuR7KYZ`RB@LVee|F7- +MCp2s&DgME$Rb!yadka8;wE6a3>5<%duw7zrFCn3$?pp2AmI(jmLK?azQxQfb)i+kYJ-RB +q+qW$OU}9Q4=|SKuDl5C?qhX(`!zzXcypoW4ET=gmrv_oI-Ie+#45Y{FCE1?-0T)4hb@bNFwA6ivNs% +cwlospkU-NoH})?QKJT5U^^e)=DBb`k073)JD-28QzwZ+ZQFT6)$&!ns(1z&14Ee0otz~RbvkM4;oIK +dzeU-q;-QO==qckKjt6&&bqJ0IT8qgtis92}~5VGMy{h|!l7>EU_*wyi +x|Rw`TZrC>g32w+`q)yiOacs@Klz`sX_DizAN;g5!Jj2;~LaQ<)uF6q(X#WEHAaNgj{>S`1Z&x1d#V1 +Cb6uhJvj5aQc`bxjEU_}12?TJ?4z{>;Z<-D!*;C{Oe6ZCe^T1Q$JR)gK-|kQFgFsC9e0)4K7QHNpPv? +M@40(H3HNnkZ-dovIUj&u}7<^KA0D@x}CFbGZq^*DjwcIZsjfT(4feWImD<+1ZwRe3s}VrbPvb`SAv^ +Zc>oQUYI1>?%|w*{alx0B*M;FbB07d&Ye3~ELyZkELpNdq@|^aWy_YyTw(3nwK5<4;)^e2uJC=%XJQf +O8`+#I?AoT; +mN3ryH9XAj^&H--beZY*+&$byZPzAl9(5{vRObt-y!hg4wd*!;^LW0p+iThnE-r3O +JStXv!Hr=Wzf|Q#C&!viJf5#uv2vyIQpL^@&D#nrUrj +|zFy@@mE76B>Na?_Y;8WvAa(dV&+lIQ&wvzAEm;6xI +g`%8Ezd=;NTf2G`>O0cY#}5MDU(uDryhL_b@KrXFQ@PS?w8v;J?ir`Z4ozIb%t6=!E>FclrIl5AM1QY +H2*@=xsIweNUUJbMcH_<`d1vub6vabGCq_24VQBh=qz>C&Zda@^TcP*CvmZ@>Na3&);wSFT*Sz{k@!Z +rmu~b?NyNCr+&X=9_P3I5;@CdwY9(Xf!!$(?A?&Pv+<6Uu0U(9zJ~d(;Yi@j1LG1Xeq36!lNf +Oh4s-8-~zc;);d0`M`7^DNgZ4p6BE<&&Ye4`z`Xth_}5~7A7C47g)!Q;ZQBs|FvoHS;j}(xpq3lapiP^ML~g=!YMEka)6uB<}cp= +FA!T@y8$KchICd=RESrI(Osh)vI?{@9y%L`G5TJ2VJ{%?fUoMf4}*spME;cbN!C%n9fhw-dZyb$$))Q +{5hY(T(%DURR;~KLnf*Ne?^D-thzldsx!{E&N8=k{qN{cga21weKnKi=*l`V1vKp3xl`f~{WyO7xRk- +!vuEXZ;0T*w8;2t7sz{`>dur!8By5X+o6XO=b${zD#n_wJP)xbNAsN7_nWUY`668sGz?U&GLDVdVsMkKCj0;3JZ{5meTdDn6%ysy0+qNyGe*OBbIfqYXe+hX=8h|f&4!(jO$O5?IG +h~12)G68V89WESfiLs`v;c4LA2K%mN)&jM$nP*whXX`y|3lPr57V%Vs0q{1@Jk}sFNl&)5Z$|XZ}F4h +&%WN)fxqfX7OFpuoxl#DFK?bA>YPVp_@4O>8dwHxz9nkGG{hbwx^<6e&>U0D~VfCiSspJ)Lt&?Dej939|0cn%psZ=nD1yS!$T2=!q6yZ&gUA>as+598XNX=u%Q6PIVjKPs1~{#N +aN&QjvfF@u!I1`S%X9Fk#Y@GZsB0bPHTeu4iukGKFh_!)f*JI^)>8cq@gGYvsZL-rLaO}ol{; +iK^X{rBIA<4lnb8dO(w6epA7=(v0LE*;vugqDvr(!$}sGB=Z<=S~0pKnV5zpOaod3`_H$ThCYnP-_KcTQ1%QOls&^IHUEbB{uNPU(7^n6+0 +6F8M-KB{arm>pm-^4PmW+G|HmB%Nw15W0gGcEW@Q0sVKhdAEKIlLhOv7@fA#H>e|AYdfcP}#y`9yDCu +-Y?xlJUof_6!=7J%a{i&+tiZTjVge?eT}5A--^)W$U0pb$dFBvk^rL+Q#wiXwBI6l=XfGT9wE&jOs`? +3op^JKddx_GY$QIVH$MyY}D-8KiBG$y!Kn;v+_xen1*^=iuFqpf6nh`wr<_pm2;FSz#o1QN9YV_K+dC +R!EcDQDlfx1#9QPHXkScdM;nsb(Q2k4lWADVG;CckjBXTMES0ml$aKcAOuUpmYdJ=vZN=jcf1&ihef# +zeAq&-EufQ9)0e3|Ud_Vj>)-~{(h*gMfXxk=v(PpM$eNubM9@~K|OoP2W|C@bMN{m0vd@q2eMHy)FU; +~XG7)Ucl_N7zD4oVvIIYu)r$9NR}?C+)iGd{_{8+hReoPam%0eCB!z{l(JW5i$32>t(Rnh$-+G;CrT) +{SEt*cM>Vpuwckut1|>HfR_cKvRb>4TAzHX<(3~0S!K>y)MUSy}Nk*htEI^Lmq*?a^*@go6Us0NOiqT +O0tvt_wUoePa|l@458{*Zl_E?po8TD5AG%)OAyOrJiTMvWR}qoE`^N|Fg0 +eA2q4QrI)oP>i2>RI3F(&7M7b2m4NH)Tj}KhlkVh<;w|iIUyl|MvNFiGiT0}c75{XN$Gcx3l&ET@J4K +auR<<_d=%>eG}!Zj6(i~1AH3d3A7!&=m18W>?0GiZ!sGDYx^-(+&UOB-@Ne3*X`4ZV2E`5>IPfz2Q7H +$L$wWPR^q}6od(+1se@t`d&ZRkX=16?7z6ZXb0kHsaLeYUW3}}Eqg&ranVvb!i0_pH)!2cHQTQ=%pjx +oxbW5Ax_lNKh10R6|Vzr4M@r-y`uOoaZhuBY(2zxDd{>n&`<#OEk6F_G9N2;aMQ?J9GG-Me>7eE{yj6 +*5wKrQ`wnpnF*7Ag_ZgU=OfqY0oSNy*;n8v*-V8T#7t!QE8N?UAuO37A#mG_dzhXX3I2T!UPHn3!{4V +>QUpyjfrz>i3{+6ZRk5_P~Dyubm){C8@_e_lK!;ypMD<vLqbvw56>Hhwage*AU=-MV=*m*rjR{fGJ +U=hKuaQ?93^q|l^ElWz9y+n1uFqb1*YT`6@5G{7!ECvXED_OxIR0&y66j~ESG!F~kRk@yWc5@ZKjifK +&#@29|{C*A)6FxzfwTwL7g4?g(d0q}hD%{OI-O)DCjG-*PkM~{|rK+I5kJBkkA3;fldFV+S)!X98Fum +^j4N6gl*J+OWjPq_aE+k*bHE~QPJIPnPV)Mzx)*s)`!96$r`4+sdLK7IPg-ys9gpgL$!>t3wIkY7XZf +hUg8A<(ARE#y?Vo_)!`>esK|X5G4Vv#^GE8vLP~=+GtXH{&ACiWMhzRP|t((- +XWy_XH{K0GR9G`(V>;V1;zauw={vg+e9l!=)6Brjhm~nr=<4kdMbo67nn|AHml`pI{p9-bLAM@(-AH` +R6tQUa~%a%B|z+J`C9$4PQ`X+S%F$z3ZFls*$eiS@~|6j9a4P|9z$r$+g=buYB@S6FQ&%W&)j*(*-_n +rLPRAH@ql(v2&^Ec!_@c(R&$@mU?!x6YZ-mqELQ<+P|#KcJ7%C;`!8+;A)Tj?R}0CowPKu;h8_+))Pg +wGfkGJ-r1&zWAlNe6zjd?|6a;jheQ*kK1;@FeFJW)0|tHuz6cHagEbL4a0gvW +moCK~V``Z)Wu6pw8~!T)XMRrs4azSTM+f)~AH=a+t`neBh_%J+=}Y_}8V?E`jH;q4~I(|H=7 +Y1b@B$!$;W1SbJJ<#2)+GZ@*3R=FOA(t>?SyxDL7mUB`FC0N}3bBb?VR`ETGZ@z<|^Irbz&FA;-4huZ +Il|A4PUJkrwv-fq~iffg=YDD_#{FgoZ~d-KSf@Etm%>IdvIKPy|d?0*M$8~*yZsLx^axlKtjK~GIhmG +Gbo*Mm0T3*Cb61T6}8&QDi7rM~|Of8fIQCH0@<_Y}4MDv1`g=c(#mJ>;PFcOeIShtG$vg&*TJg{*5Z&CeQli9d9=Bt3tWzUzGv&Z~V3@EJ5h*IADqaE_4 +AvO-*Sdd9e;;WeCp`ycL@1NS{Vlh^vv1P(6SM~}WID$oPp(WB1@;ag}u@~3BfEUO(Iw4-=NM+dv{b@N +WpjycZ)|MA+9tVaj!SXMh$(2iBLqqBDO)sEw}BUz6QI2L_w$3;9v!~H!Kv|e76kSk)pkNaNkx9rx7_> +PK-{eIx18s>83+}D$1zA-W~vM1;Jf$Z~f8#Zn`L(ct*(CI10K6!^|)H$LqN3AtB>;txsqMV+sM +wwHV4I?;ivM83P^{J)hje;xMW={)BheLY>>YohkgwVeL}_v`F)bJ=fxfq_voMZFPqF4R}BCyu???{5$ +tyjH4OuQUAgq)C$^=FFKB1{{z(Vf}#k2)~Y41YeC@7I_NJ;WJvl{D<{I)Ob+u#GW?lJJ^#)jqP#sV-3 +J-&{$qC3{~rUtaC9h@@Vixt$C0)=^N^0eSfjm`%o)eS6JNEMUhrurw?*|{k;$N_dI|nh+kJO9H-AFhs +k}+WNid$M1{kq%&d)uU{iL&kfVxhXMH`2L>*PKU)^W$UQLZ2 +V+lO&5!<%OV+w4>TOaV^Q^Tt)Oetes8ONTi8|q1-%8LuYJS9VUhl__8#ivKzTU0!SsamDXC)crULy8$ +v5%;qAGKH1kKeS@M?bAbgIXVIOwdR7FRlJT&5!&?Un{k*zXKPvY^^?#KFYcud!yhIO}ttZ2k2v%oj&? +%HPe=wKHAmk=Q$IiQiZN +rx#Eu_7eyG0o3LLO+0$!kDe;u`^Os(FBIurIop^vCBp|&wut1pcmVC{1!MM)f_J|28n`?jCoz7}j>1B +U!}O!bxZF4T&!r-{9BrH|MbM|}mg30dRP<{vk(lboxwP9Hn|r>OjqlTDvKJ!0|V#bK~TtoMU=yg1pjJ2`GSJ2YG`){T?N+byQz`6iyJMaX)2fVnE +{{!v&BvjT3us@xx?XNG>*#zoLGqgI{cnt?MsgFGG+uTpwE^7a3eFi&3&abbt=xcZ2)8lGJxjR3XH5Sz +BrZ5gkTCGvn{^b8K|BM+kB0l}}(=gPAkdFfowXRn84FV7F0{#f+&``h4djFwK6sM0mT`SiABgY;)c5L +j_sZ(RXhgq{`Nxuibi`WPM4_yF1po^GWUvv8H+!4BR?kL-YojykU+iGPc&5xLZeGcsDg2z~2u`Sy6(( +P+uN;Z(i?vzj}Jb#1=emeS4A4fdY$3;nRVftd@KaXEV%^wyPcGlO|SMIx_HXRieMIU|ikzC&aC*=#2u +Y`QSo9p?<>ASS|X!B%$c`ty{N7I;2wC3M&bou-VqDSOEK0ZDz{rvpKfR3c3q+$L0_y5Mz)05tN?>)H> +oSd92_b$}h2Rz3S{8#rjf*7lwuL>)O+{lWbFfX7+>tZ`pCxPnzP#D#~ +8@%z;Ep3LI<&zj=BcyLtjUL4B!_42VB4l_-*)1;JJPK_F1BIH416}GiT0>NJ~o#Q)_O>88{3cJeb_w- +Kl%`?h-e(@2BcRxDI-w`~~hyT(f3Pny{`FO4FqOga4U4dGb(Ks<_%kC(my_o}LWMaT=h2Ho(`bTot+ +K+yTZJfF0A_}PuuXUNwuf!u&>AYw@0>n&J%pkI23vI7X5M0?CPK0wZRE%w}1c26Fj%;@<=>69y&kj9P +6WD>C&a^OeWJU_EEnrU%vcbD^{#1;&&_-O978DEF&XB{?6BwOHWS^PEAeSmYJC;<*8yAAD2E#!O1^^j{K*Ts6nvUs{218a^hj0fcR)?07MIyZb6_;6-d8f}=+QLZPEyC +ZMMx&dpaagm+n9KBBytz^C|TC_;!gSbZobv4Km`eL7pAKZ~G^Zs!IY&kcGT@U_oT#$YXH96crpkgW7> +Lee!bS78w6Kkk{M#=eaDEUM8;On8MkY%r4y(CZJry*}4=GZ@84-Y>LyfF@Vfm#u0Ld?c~5@4~;M(p0 +TYgZ9iw4@3a|7zStS*?o_y1J%<)~n)o2T?(|xKxvGd%_#o9PpQTj*yAUtWjSLR8X?A11F((2d(%G?U#^9$U%ZJXux_k`E)~^|3r+w2s0NybNf?*GI}Zg%~R8@%7# +K^I&-;I1|S_0TqK8!x2Ih^P3AN(+1I)k59rcFNs?ZZJa0#H$`9UBXRT-(9ckY8zu(w_yhQg(#s4BpGt +p%x94VYybP537{=qp7o%a=gh#sZcRmX}O5pPmMdV(oTy{C{h=hd5nEugYToPlVV-q^Mj*O3OpD5M7gRA{Q0UM)Q|y-&KR<{+iHCp9lMKlM&(#Wcq>w=}P`E@^$zhNLB?O-q}fwlZx~+Mcw$wEVO?X%$ +V5Cj7;PBM@L}wbTi#W@pULNX=N8k)5$ABPU}|#=(rdj58Ve8HE{lGK9IJxtiJ0>|%B^dz!t>e&#ObP; +(#iyXGP0ICG+Tf_a*Gwt2oe)x6T2ZQf+gG4C-SH0PPmnD3Z{rJ|*p#nIwoakF?@yexi}E|ySBAIrOzA +(l8xqGf_*nq{_Sz9rSN(vof2WXZAYu^hDISLwpOnXcRO?i@UcT6H3ymL%Gl!nul85_zi@6aWAK2mk|@q+F^^T&7`2004Rf0RS5S003}la4% +nWWo~3|axY|Qb98KJVlQ=cX>2ZVdBuHgd)qd$==b~z);>9;Qkiy=rtNyGcD=6K_%w-qZKv%X*;Q$Ywz +;NAg{17bFZ)BMRS`}Y4A9SkJB`GwZFUf=6Ek|-Zw!~%!1v6Hz!B?e}8*&aCD3hq1>Zvz9_3E +n3l72T0gp|$~k<`^K^=U>Ofx4(s#?WEn76{`zFuM^^^LBt6t{ixvG=VkE9OjW;UT8s(4naZ~v^zLVeH +6%gd~|R6omFeOug3rsaH*YzI +XN9l1#>ss`nQQShcLTENTmMO9AITBA|l>90*vT^Q&z>3m`Te&5_y$>LE5ujZ;slNt8%L$FhWu$<5DCK +?2iwuPq}$mZ!I9*bDj`#P&}u=c1$7*%+D5{$Z;7ppkMOqK33-o;$)K|+U%ZEXg+)lD$v22FHF +_qmv7zWd1dX-KP;G`~>)fCDvtGryK1%3HvnZcKx0QAeULWop?M)62yM@0Pef8Uy@c +-!7XT#^e|2F>DM`t6c_Il^&yS*cCEvz>9E&3AwHEaHs6~7f_b6S6#6$0g;i(y%vp7YC{H(z(&!a%FnZ +=k2ghdaA_ZlUP(Sat3gWY?Q-C%Z4-zWJ_GY+Q`RMLf-Y{x_@2a86fO%GO;~_| +pa3l>F9H&~;lKb|r#6^(78(w&fWbS$0mdgh4cEf$jzsjJkrgCw4c6KY9@k;;IPlOAKP4hT@Z&07lo-FWpWj}=gzuvzel(A07M)%#i)-SO@*Vwohuki+s7X5zfLbOcgV88>*KG +$s=dk!*cizy5yAaAA5Y*2&SuBum%69{Ap@)%-+jbd4eQ+|E610ChIJ7{%nfqZ9Ze7Mn@elHv41i3}d$ +`9-5o`W^2ywa-v7bE1XJHtlt`bq}-G;ogRI|`bda8Qp0I+)W&YcY+X;vW6JN$8u?JlALvVDD>Eug6y< +Z)h-5<;T*Q458ZD{gSu0_sR#obO)oYqGVhfHsqdQRtJSL#qd}=K4D_aOIZO#7EG?;9;k4E2+5K~N^?dcqt8%e&q3b7$e~wZ452u6>5X$}Hu5vqt4k|A3O%z%6KlQMeu&{3c`~Z;#@c`|N}+& +v+IcG;0E-yZ5X#v#f5YoKNOHgxk{hO_kKbT{Mf~`%PNaaHSbS?|!OhN$;qnnB3qB6~>$0NH_{I>Fv +?}A64k^gFK;qQGaw5Sz${9diQ9cJbnAsv4*BNyD1|mJaFiMwl9cY_&=-bC5T=WfNHM*=l|QISISK}3~ +Dfhuh9LI){RS0B+NoG(h;fB5X_kiR~EvGpQWz-MJz7oiI#$#0Xpn%AA6CBrLR6RHaME +58diVDy6es$AwXCY}Q$Ri5jboM7!dLpZ)ciJG{cUcqWYJ#OM6ZSrzDc+gPow>YYy>X7*!Io)S0STJxk +zD%2m65SDenfTNr^-(LL`O)id4$BIzrR5@3&T@tuG|NSf4!H}U#T_z6*ZzfRj?T2%knp7W7(b|aoGz` +;S>}t~k4_z9snQeQ{B*r>o|@yX&4C}5^C#7^#|eU;2beoXgA;S8t=}umAN4`5DPY(6$_sE@tedCL$!AmF+c0UaS3v0kxZ|XOPGgO$q +nk(u=Hg)`{Qw`1;(9T1-B#t2_+QE#bvz;Y$_r?SbzG-=O09^KSPo~GUXjy{x~m#8BrtUisl2@xupQ{X +@BGQNhYxyRI#DmxGmj%t}E9&X0~Y?j@G)+(>=d0)2F}>Yz5vx(WA)g&i>ncYWP{9-nZ2KAT?io)`J}~ +NO28Iaxkydx<{MbviCX!H6$-@p`3bKEa&H9tlH3$_&lDX#;ZFBla_7XyP_=a=A?rBYa|7u^K_alfl{b +OdBC9-g-weVom6?oTf!bEGYm*)X4M`=06#6?Ok95PKwiBq(7Qx=APJryzA4Z@g?n0g*b3wrNvq{CT0; +L}qzx4%3jZ|W!=j+W8eBs8I`(P23Ux8 +5(RVOCe86d7&q_d69jXDL^ktL(KY6k*9A~(Vxy<1$?F_wv +;3Jk`kv2l!#i3#ED{iV@YiE(4}w)FyHTjrdgvBN^+JT3TbJ0l37P{SbGDEO6Ku}Hu3q{jHD<;6wzen{ +nzNr?0WZN{h+vsWMqNDS4oZj`KZ35eTFmvIK*F} +HN|hTs#zv5KW+j9VD7NVwi{a89znZKy4NRLFZ$|1!?DbbkBI69I!JPb&d?}nNnM6y$i(!0I$bsxY^3_ +RPO(;#$>Be~-+S}@EAk_iD8m4oBpM|s2JLY>W%20dKl>YOFjZB~RNVWZH~m$0pW?+ +2zjup|sfR+WV&k~=g;nX$LUv$kS8>RmWCIod+@0P^FVn-bI+Tv4V;O|cZUY2ZGWVj8xZSyCg7?8X$Q^ +kX6_L|`Dhtx +xrl=I27NWpSZBh=U%htF|Wk^U5n>Lg4yUBHW7r_L_aLZOE8oYonhJhIqZ7>4`X^!YmTrcvhi5zw_bOb +0ANL;6-^vm;^FJNX2FHzdh=u0n$Vdyt%j3p>I7`~k*^R_R@@uFh_Yh0A5h<`Z>o?H4G@TY`+qDuVf}7UjwTd6`aj19Z-&7IumWoI=gIUMgS|2ltV!o}0bm1?@y}KK1*xxMnv9fjf;Bx_3@J$?S@ICa2|e!JyZURBfV_xiR3x$!m +f9Tj&KWkXua*#&)|VB6srP}Y2NTj50_pTv6mWRRCrmPBZ)y7!BCBs_1 +n7ssj&*(`$QGctCr(GQD+5IqDk?;2B3hj;d_(h%T$0dzeBx2cd4=1-KgrgIv>dK590Q9ejlTijv^<`F +FK9kOh9bx$>5X0w-t0x3t{=|F!z5_8dLi{()d9fZb>Lczbm0Yt{;4T09tSg0-Q=?HQ8Un@oM#Z81Q5U +e8(IVUE4;j3{4T-#9YsngQx@0@UYdY4Mnf8Yh6!Kh#*}qm}7t_$TGV9Ub+H-fYe4Qsn0`>}VA|67UWtAdmGa~`Q2h-yD^$frJq}p +AU<})bH+<*s5a^o!@{)($Pppiz+>;Z^OuMmxy;4!_Ov9=D(3g3Mgz)Mxf#>$V9E)L)xfDWG!oZ!K@5) +@=$%(9r(qo*$vf-vJoQVNk2?N^oe;45Y8PFaEdpkDL>0erAm(;TE3AFrFCZo2@G?1v|QkiF{8-^1dA=sMzkyWOdB%pWHK*j%Uu7Ol~ed?i35f$COb8ZUx(U^ +$F|fnGG_)R#wf=X!qB5(FwJYz>XBIoul)001hFN$dBqvEJw{r!Bf*4=ClkRM+NYLv@mNuyvjVMSWq6H +8wkDHtw+5~f_cX7z4zZN19Kb5DA~fu0!hh&cl=j$4WJjppguDqwp@ZaWpkrgVWknh_x)jjkbCa?w_pX +NNZX7pbKVKb?wSpDUdxS@}HzkY;otwGDK+PqcAV9FwWrh9`9=;4Cc1jT8;?*syI0)X5w&>f +vMBr7Ro1Je@@YJmEQ%tJ(tcEJ_dz?;0QM(c=`GsM~4(Nq!1ppLyR`E`YPb!6h&iK780_lVy@l0p6(_gZ*>-6=8Lbglgt#06y|5kBJkIMfUpDC +)tYn%iJK#5-{vr5yoQ+5W73~Jt+W|joar5J2F|M_*l-(aF|Cbf8BJa{d6~oz%KV$YNN4ns^rDfeAq%Q +l&e%LzHpHRhCG~>zQ1Bte}UoOw8yGgYyM&Bf$nz#a5UZTa%-|W|5r7o*`GRXYo&<>F4_H9@spQ3AfB5RU{2gJhgrAx1+u3K0ct^D)`Juvm1^@6g&5nodlAed&wdLYFjBz!NWZp+_#O^Q^em +==Q|RPy=Z0WgHVU$4Y4SNxiOTEjQW_?oe$IflcnoY8u54!T}YPD!p9hNks$MhYSYR)}GkE&bp28KMq1 +WC=nzH%x96r&fcXMiO7Y7e((4h!rojPbUB-$#doDxntvKhofgv)bDy}TgSdfgx)Nu4@%i(tD}EV^gB@ +%?fQQN7z&-1Ce*jqR4Z>_Ik)}#`d+rR6-y32=5Py;jC^TrSzSy8GySRrPKsSmkdbloI{B-Q&4w@Y&>4 +TYxeRSs;X4^2OBo6hEe66l-w1Oo_|M;-cbSA%}1L=-xy|o)=Ksqyx4&zK?j0WLF7tVz^jvQyPpIDAI# +gwA`PcNNXesC$)rEyy;rb=m~>l!VB-iY1?)zo>`P()OHJ!E~s@d(s0pPd8owMBPaG6uoJWC;-S?$}A+iJqQj=?R+)>%g_M9r7DnEk{5kd2pF_XO(hy?w(TAn=x#qw1tR4k*+UBUY&xmnFHWy~ToK; +FQH&EIY@S4Pe3*Y+BP`ZnuVp;+ABb8M^G4=|cvV^iMxy*8Xi*0dIVX59H5NDr0H$&@-JsOa+dftp +zcR}J-`4ap!K22Y;Y?NU}5HV!Dl=007*;d~X0NYRO|JZ4R2*6S6zUz%Emo0d!-gNls0o_QoQdzPLrFQ +f1Xks|X~ySZ`KD@dAlg7>Cexqtb#x6*ontrVtGMuqKmWNZKFhOQXy)i!%h7IiG;9->lfXrPj1`~iZ8D +v<^I(1GGO{UK@ue{yhEY2O0qg9pZPUfwe@wxiQRMbDj#3s8WocjD-v4%?;6Zgb9*QFkK#9&DhPp_j=N +Goy+;f!{w&4!-LWtsCOUv9^YaW0_ShUaB;&Dh~-E)QgbbvSQ4wzzs!DJbIZmu5;XUZS7JC@n(avCt<+ +DfL(SM%F#_{>A4kMSIYW*X0pZ_EY%&vE?*40v)C5O&Stv@_8$X4X+I*D6l{nqB9xGR+qaMsD8@RS4E1t*(*<9dL1~PbP~y*8C=z-WQ=cC8`vIbW%=>kTj|k28 +pLhrS=!W+RG~8F&hFE#$W>6s*E~=HB=3-C$>XV@`_^xk5!*@xDrqYzj?HNp)wU*sn`jqQGl`Cnj&G(` +MQ~Vumo)sgwUIi4+n5g2A2mz{c^@h>v%9Pk}PMoD>i6ESF*K=eyz(KxI|(VIC^GQ0{_h>h6F>eXIp|~ +^Bov7^vIwyJdiMPc{Mg_N#Y%A;o=ID38zn>HV%_@;HYT$g+IidH$nF(Vr-9s@$TINB*~Ce*t;@wjx-#D|kf_Aa9O2GxmRH;8>UX+eWQ^^IQQ%*wwOhlh-pX(NUX8GNFTde^k +9uVey{aUH>5i*j9VZhst|oZ2S_cmC6X5*4Hz!B`m>fB&s(F%xVHkaN_yuG!ku5vHlC(RgKt)S75gMTvSKDt$F5N*WTr_3o_wDbD*prjF{gks7Hxy +1LMXN~CCPP0$vQm60UjkGQcS@v(G7n&SS5cBC&eo!OmR +$H6|w_q6UC4Cf$lI;3NWM~gEZh7t#FYY8)9rUF&qCPPyX;p1~^RYT;fB#hH@==}|2K_rx;%NYjmXiyR +?b5I07WW}t!1@jS#y*k+4d9`zR`1Q`o4k85bR0@4Q2~Ec@=XBKtJSZ40H(%GwIfp{hQGpga-l)phG-@ +dBlPu_#B0AkBomo~abP5#~3}tVV0w;`ARz@FXETrU(6ow?D0M@q|*lPQF0qqRQ$|3>Rge7O>NO;jPBvX=KmcSBMb1Z^kp<)QH$Cl{FB +#b}*4C>0yKPw?Mt1xaK*h;cSXo(YUY;1%|-~gN*s9R1sAb(2R>_7j^!Q=?cTi>h>4`RYPyLPlYNd +ilFzv-Ge3!Bkv|T@`piV&LG)(bI}Q6>&G*l90Q0j45*J>mJY0&sWUihhJLShl!A|;=*NNTj5^%SJ4+O +D9~pu)lS(E(5t#1cGnl*Tls3jdayORd#41&9z#6TDQ+5T-gT@jOOI}tVlgFjtekw)2XGKQ?=A1Ym +B=HDoPoOq}N6IeD;ii>qqzHZpdm$n?9-W;yZMQ)H+RiH}i>=a2th02GWU-e8W$jU@aN=AKYTKHGT7+u)cHRxu$ZnZV_(Dm;L+hfPF^0o@ncYh8;iT>baonlbvpa1y}OGzbfS(KMd}N +sen4jp`CxrU#UAH>P-m3+JTC6~Q~qKrabTj4F$Gak20B-O_|wEZ=>USSs8VUtw^{66M+cWR`9`(ZP7U +>F(27htS*ipg`dw@SD({P~sivagbWtsfqare-jDdstI^Ldh6i6fnVRm8BnN(Md_s~rSUj`ii(H0s|7D +wI8oX1(E*N)SAnk>>zjVe4n4~K!>mu`RXQ&4{>37~)CwB0GrT9D&{(@VkV|suv1@3ZR6?1d9c`q7Im(Igffx@;YC>n(bITqz}?>FLD(iOuY&`f%A_ +3Iwi-p5F4xS!`6lJFdx-&9SjOQ%l5$MtDQ(R~cs?}k+BlX5{S50FaYGsIT_J3O;|zn +HoZF9}(uHEm%gH(<9>iX~?`Y!8X)((<(Z4YF}8+lCsB6l#APg;4Ez5^|Omfnh3d@8v$s*kY!vNaS7 +{U8H2sKtQ!z*s)^u=@5zl#hDQrZ(4>CpcUP2rhO;o&3l3#%-%hd9QUp^V;K>#k^`hB00cF(QZlDW48; +j=?Ji^Tu{U)Yga;JbDy!EzC^@_LvrP#2>R8eY9ice+Qtl~RPL=~*cO@$3~f=D>G4i}YFQ?cZ9Qx%;mZ +RRMIT&i}CS6J-Rrl8_RtPDX~uH(vK^hk)5wqpMq;IMY_Q%uYFBf%cmLM9mLVUYSKht2Hdb)P_abV}l_ +%=Px>=I!k*kYTnlg9(p{z~8(ezhaeYruS}1?8ON4D-hg77+F8Vs!7z?b~DotD@n}ZgDI|d +>!u!fW8m;I_KvsF%Rr#2^oWI14NMGdOHBJm8`NR?3PGEjkV?}S>z{Hzqj%W9a>MoD>Fwb08r5O1o^5t +2%Ge#e{f5}bnx5wS%?<@PE~b9wH$BiIQlp~SiV=)HX?mx27ptH_E#ncBwLWzhl=1Z#KpW)EV*;a);Zi +B>w7Z7B1QkJ;{@@{2Qohx^9y;~YU|A2}0dWy}eFOlP#6gczXeqe1jWpAPzOI%+e(9pWvosP{O~SxHsC +iA9y&00Bcc@iB#K&?t1zb(W0$kXEg-&4OxR1EmdfdS7(1|;^rrYnBp;ZEBpF>zCkGO(;0F68 +yj(6IFnDN~_3!8&YzcNY{3*3hYP+djc+ndC+|69m*lZq|Wp;fo^0j}ag0w1*$-v^7tJUPyL8z6-5C$)Sg&>hc>Chzz|^studNj5V*b_dvfMiB7o_YLe)|VtEeZa< +y46&oPP4xf0a(2}d`mZlVEHa`HykL-m>`OnO6G&TY}5>=Ue-Haj!A5?k3?YY}nJ~g;Cfk+ +XCeZMkBKSJwv@eLYo{TXmIxfx65HVta4gVVA-kffr4>Wuz^DYE6V~@Q9jTs&+JPL7lBqw(EBkR;dBF7NF3o)ARb +Bni_3G4>@h3>*eW1W7X9>D^j3`ZF@NNh?C9#Uooo^7yqdt?&NX^-;@RxXfaf%$r6}>)v^q%60Tm7qmF +7oGil#TZ@!=o<5xIWl4f>O8reh8KLXr+vb1@Z&W5pa4W>ky9paL`E8G(eEOmkI*N=j;nXQCmuFpW#gA80(JB3O<*0`VK2UGyn) +w?!!YI>&pJ%Z%l&lg-d}#t6@lFF_9EK8Bv@)47l9VM}XrHV6rr0$k1x*2%CCUS1VZl~+FCGRIkUy&BLT=bq5ShK#e7JOPb5nBJCJJ|GEwk@Aa +l9eb-l@YjfaA=wC*&kG8eZ8(WFz7!npq^_)X8T`7}3qYkYn7kT$uyf4)tEgKc^gbHoP~oT-`LRh`vGH +_b;Qdh44aMw;0O%M6+S2b_wbGX48zhm2a%dRvPS=~2c$7}bvaRTJAB3anv|hMMIj@vy8B0nNhryY!Bu +=I(WebQP$_yt$E3YiV7hsY-Y0(hZ$-7aWmdbzk%Zs@#1UCbibOOi=$Z>{$sERv?t@W5!@zE>u!Q_}UG +aituqOrFghd3|NnOd^(Rwbh%n3lu-I4<$~%tkE)P!%lLc$wzw|J+d^r*Txq2e(Uh~&ep08N6qr~{+x# +|EK5dN!9I=fw7;#NLnCIG1EtP!7#n;Kq;zH*2_xTDfTPic~yS)(;BygsNd>1HhqzLq1cawDauK3 +UOnUX{YadFTg09LE#~i(?|Xyr()*g|NkIlq6-ba-U*SdfwM^Pw8@H4FBpXhl)fWjTpLLn%Wzf#J;P_D +eJUTuE#D-B@d||@O?n>1GdZzPhRXd&u)A&#yaSFu_)o*Y^wVGu+r|!;Nwy7)R8+tTE&rua@zKD7uX=ftyH~6*mKXHlWW_i2M%pt=h(%fOSjqBX{u2|C5j?fdl*KV_bxCs*8@G*13lM+=y-ScPjsH=hS_t6 +Kld+!pRp_lt@F*HY%ah$>h$R{Ehyj?y-9$UyTrN(jm(+ZrKCr)IdVpQd^fY1pLQfhG9yt3@KepxYU@N +@$!r#bKtXN!CX +lx2@09vI>}Vz7X%U)db_U`KdRt(Saz-hftT-(~@0V;rIo#o&%U|H1bNJ`>D#sYEoul2C``_QZn@Bl$aN3P0pCM=YgV@J%}B;7x*E}Q4nIO)-uoU18TA){Oy +N}Z>?97>@=*l%{LEgQFH$J$|lcyn?wK)ZIdThe=G3P--_8no&FKGh8Xs$H429#9&@o}ez7#zmQzMDta +cAt=K9}kfwv)eBm(rIW4`xfnCGi-MhYyQ`z6<5cMVnd=c%~<9>vv=F!oV{uF2Z=1xABTX;N%xw?o|wy +$|mZ7_ao`KhUFgtUi*l;#@GE>-4@bZ_~pMW_M2Qc-yC+J$>=K%@cqo8woAEHY@?Dj8_n$oEMXyb!7uQVdd?qEsVo9?eR6En1m@WeRE+GboWe@QSH +z+(<@x3r42^z2^)%xy1fb?eP;y{! +jAG^vv4Q70&w8r?g$$j8N_DO%XctGX(A5_fu!0G~i<5P$5W+U*3tm~Vg_L!c4iqE-=9{kf42nH2~fyziE{*_LM0Ku1PI_ +7f!QV0#7RM4}?AdlVOCd>d7h;6a42eY$LZ1rM4aFw-gNqmbJHUzI$`CoDa|a#_3@%U^EKK-MWa%ST=e=2^9P$9P6&jjDFKl|lf?#aS71N61`}LJL)2d4+e2PQ +vP~M<1b^2qjZrsE{hkSiu7G_l#fR34uFHAV)!jn$>c81ErvWcq@1kw1d5&XU +`zm3^aAk=RFNRem)BxKSs;yW|jL4sltl-WQNzhVN??{srqRXDN>JdW^N7I1dq=2ZRhAnquNKCufE!*| +61~_GjZFt%tPqwPW6qAZTfE&b=#yjC>ucexFGouK7P6V`1SVVV-WrH=92Db)14f6_Ul%;9`{am9?n=g +BWn0Hyt6HCokm&&jH48C?%H56JO3;GLl>%`_G3!CE)m)W0nfm0@LpC{SZ&ywRP7|tq7e9kF8A@VfXBj +Uti{HU`NMl{LcPe#q`802aPduJMQuxZ;YJOVcshWI>K!8GLzQEG;?XtIyE@aY8T9Y^F4DAf38;_YJ=_ +lBI+;q9C9Onz14|VY535nrf%SH2a +2>(38f1dvy8=3CBT~s+o+_v$=$;eCV{R>$P&IF|x7t6sCMg4d1?9h!Hu-kaM8poZbS +hwY`+M*IV8D9F9&f8Rp3%Y-J1w{E4=bU6jU*Y|*(x<0Ram5_ulJIyW)MZm$@+8*%Zu;z~|CX2bETjy( +tsn6I4 +wmxYWh`Rn{|K$UlOaF^WRdXrX|$g~coZS8uKK*PgXIY)oAz@b0vw{U<(=nKuW^VoTA&|#WPrYYZAKnl +E$q002Z50zVy9FJ6%9F0-DNR1moc|U+L6MGMVk@J!xtS;Kd%yeglc3;4d@rB0Zq(2m;XotchbUD5UMk +0A^1qnZONnvUD2SgVq(=?*zB35~Dd{jDq7}$Y)M;oAAHk}ErZdhOgDV#J*fS1!Kg8*=k1ZY&qC(z>KF +Cf4oCx`}j9n$w?4%B&keEe#cA4K@`@aW*=VE5qF1fJhKd)~oUUAzWm0o{Yc$(sW%>bq%8T8c{w_^L7g +4z^*`x`!M%sI)N^a<1|fZD5WKVuH!^Dp6;Vb$uCy>y$4fwY#Ma>(xk0Wt9lEj;0CXII`OA$|sXrG#D>;jwi=&_E)e?+u3mlt35QV#R=Uary1C07?ax+=C@U{nDA +7H@K4_fD3^whl +(9yrubx7-{5O9(c%v+yU;+yzKl%@7;>X<>Q`=&)Bi1HNPJ&j-x2Z!wAXOOadl%f5%g}bG(D6pA8jk~R +!Il%;cIS;dFnKX8J!Xhcrp=O|Q3pG*@CifUyzI1H$y&1SrJ`TkB~LI@JZ9;F3^u8ghw3aPymJ!b!{S3t&NMLO0BfE{bsc5F1bjW)sv99S40bVY^msx6G`3p+CNUw +Q+Q~D>k9ZMdOy#r#S{%g{cOb@Z~}<)9^qCWJ{WDeTaHppc3R+@e(h;4cG@sO8ylP` +pG@103)9qXTL%L_h5z5b*!qhSv3NWYOHrg*WKVVTXrcid=MxsBgRaiI@s@MYfD2IE$)wHGm|l4b87+( +gwmMC#+%(p`yR;S_PtOb=g~8ItuvYtq*Lr@B0(t*1KVYcs;kKH8z>t5?up2|KEyH^U-(Ubqe$kn2eP* +Vz$fV1yCFY~Szk|sh%xDj0Hp?}{rh1=7w2}i=4hUS34{@k;SI6c+S!!=S5nI(Zv&(O!H`O_u%Mjc9zF&3S?-9^^S{zt^V3w5wlFBmvfsEX^^HIjzENvSe@rY^cNxJOJ~#Qn^vv%%C*Lc#7txjj#*patI6>S +D@Ae6#UTEF)-84;eHTdTsrHwsMNPWa9Eh~n3PLFIxRvHG{QoF>%aleK{Yw-5G3momI{ +EXRziX9;v14IGD>YwB@Z6aP*Mjs{EM%)bIgN?|^;qU=ctWCt3-5^1l;K>X<8*c9dHR7 +Os3Wj5R%w5~3bZlHrT&aw*vmJNFdGup5QQeQ!QcEI_&4CVcj%VRfD^{BX<1Zoz@K`Z&yrDKCcbMZM^c +OP^8`oWptK?A6svOp$IP!P_f?R)^y1{^ZZ}hqD5MRGi+1fZ+E{9{zR3$97JOUI^$b(Gm1!XGB;3Uqume=kzeS9(SR@hTqRz#>(`}1`9Us7=dug;Lz&K2;L^ +evU!U5oxjpDT+i=mqb4P`2kVI35)Kk?aCiu>8uz-G#k(0FpJocD|yK28C;E +1t|E(Zi#&p0b3hQA4Fd=}aXe&_^|tCUDZ&b=^hDMRhadA-ZpATphSL!lX65A`^3yEqtwb}acJHcNO<2 +=D0HxawIuEJ%(JWKY7ZY5xugUk|qMBp)m!Zyvo?$?|+&3f|yW@tH;2r<>J*)GVPuTp(;Mq^{FDpITu| +p)nM(ZU{G~tHOfjEML&3E)#( ++Va$6RKJ)Qak +``Du(1D(O%|_QPQs@FL=}bztoY#|!r`FaInG#5h$m`AZIC8tu<}B!>gMHpSvpaalry8RNERZT^D0j}k +2pg2-LyfRneTWj!sb9MmOBb3^=OSO$R|W}PJ071AyDke%9W+l0mCSTHpLs16OlQ*aWqe42g9<~Fz@#J +d<^JIwJqJ{}&$}yA^AuOrD;#>fF7SlD;Td*VF-C@g$;pjJ5oSi2kvB2qFD5mbr|MSB_R+IH03UE?`0& +Mo|EvRl5#J`6)!!B#Eji3&!zpH;15QHTePQ1uBhvcO=f_N0!NGrJr~fKH39@w*U*WI-`C*)M!Oq< +O6r2!%K5B}yRn8Op^>aus8cC&A&~Ven$>xsoC4fqAu+acX~--fS+?MUDS#Y(b69b=~-EgYr{6G7zlN7 +}yHbwv9=A_Ay_)D#wb|or!cMr@mMYFV3o_n$@8f>m=CLgKt$TK`=4!(vdolLTosoPYutd!+Jx@=HcDp +zP55WLNEp>`X);9@G*c`w?SfEHvpBu&X)+uSCX|tE{km+?d~#k>>Y5mSsyyRt|(-cjb_G +~XL>;=&F!4tU+;ah^Y#^nNgf^?@1GnT{Ub20A_J8dmiZXzNCU=~naai7ZPlGuudx;u>o-m>3Q5znta5 +h&#D{rIdX;*kG8gvdeU8tL(QZd0VD-|Ue`Qr! +kTW%!^xrUSl~DxPbyhTn<;NwOla?`ZF7iz5Gc4I1wCu40b|Tx)wQae436WBvchgro%kSkd#2FTH8Iys +*v)i+N1JqW=p*wl>KOXos547LAxwj5B}z>n@!bW;z<%f0h0L$jboY^g>vhrZS3_({DOmUU9dLR`NHcC +<&=Q%+FTWcrAx=X!Q6+)hAPqw)iT+a6yTlU^3ZOb>Bxhh}abNP#eLlgwoG6{p|>;R}CKqih +&wdE@1^;q$MW#xJoD=;aWR1YubKZLzZ4!0k2je85d$OiU6hKFMQgCLbf7U&FLzstNvS})H$93hJN)H! +b9{jXGUr*lzV2h;74BTVXmQ6xsM6dv@sY~$EtW1kv=e_HAV`UOj=4UXrRm3d)l*#JqY2hUz0G9mN)Y9 +5|rBemXtD|Nm2uklZq+tK=g_1{yAiJvUfwtSjBzP$^`L2-d|Tcc)(z`r1ipVCFk}%g4Hj%TKVL!uV44 +oH)yeK^suM2vvTypMESezk-wetW=3+a6VFO>qo^?qRKKhw><>v&@S#fDg^n6mnwbNNbvN@4L*-0wc~~ +Y)B;v#It#diNFvlt9wuILy@GFxuTC%LJV60@CdbZ=y+TZjz7X_-Mg3`yY>2MZn^$}@oj_Z)TXeiCeLQ +Ci@p>3#PTXII0@APWzEDMrlL6M<^b_%tLn)*O)rdEhya^=*AnE_y+vgZgC&0+kzr4(;OlEs=Q4T`vEu +&E;*+h@?TMW!zJ)uCojx8h_g;LA~mOzj$D;^r9`(*U=*O_S?d#~XRzYMQFs;m~u$&Q?4ft2R?=D?Od6 +9=E4hG&lm3`mS7n=bRD!v2uNN%R$ndvdw}bsBv~9p71}r&5lMY-BG!|I~hx&Es7Guben3(aY%>cy;9tO45s=mrocD20Y~~9Chx>` +@<+`)^-yst(2|ZYapf9T8Ut!5)HRZ7!05BL0JMps2`w*0NL^=5rH!3X-Y3`M=PW0hVxa{oN~-zb4?wE +s&!2T6efr5CgJoi+Vu1|u$eEbnIOU|i)2hU@dpK<|B_!uU&F>WH)+UGlIC**SX7cjj_+)bUYUkvegQM +4Lk{KW^ZnDa}bV6~Mel_j^APN4B!9kN86^i$i`UBTQbt<~7aRp<=#$3UF{P9OVmXVxez%NcjQwn?)yg +5M@BZftoJ2+>C27uSe6y*w(dHw0<*I4B6aF;kbeh3Lq*y1+@;tk9}OqzO;CpRFzX==YMGRboWJ>lhoW +4)_1PkCRDhZmC(U@DY!zz#BzSgJX>Iopzkc*i{Q#FXIhjXXiP85$XH`EVnJ-~#@s0IL@X-XtF(3#=U? +2&4uEUDsD@Jf9g^LWMHO3iH9T34{PO37Ua%5ye9=4@T-+TP(n0lhCcWq0E2c0c>Hs{emux2uZ|+=1}i +Y&R#x=LvnYMMwOiB)EwP=PU#PLj{>^2v0-X^&p-dv8QBg4F@FTdhdW2i1z)*bu=cp#cwDbxaw9dAYRI +@Rayhou8<56jZ3`V4d5LihUxeFySxN!p`T{E*vosIvqx^bALXq~NBM1m8zJEN6C8HG#Y1B410D=5mbK +dybwi8LR9{eD&(R6q$)GC2Fu_BCf4|Nc2;y^er%LbP8WPxLGo~NKs{6KNHl!0~HC@&e_MvKR;oa*STL +uIF4)}RQ`Y`UV*u-ZOK3M*B?TbRE-d-};|pM3uO(@#Fz4#MZp;0-X?U!FaC{`|9NThBlJ{KY4qefHw> +EqqHWTxc7vigz*ATF55A$2jfh$@@C{#khB8J-EOXuDPmMi6}9%V=+srnT*he(04;YuJBYrjR_64f?;v +WbLNyJGr690!U;T^sEjaTvfv{viyRI$--%&jwe%^sG`+io<-%yJWi5GS0L~{>+R3tYI^!K1cuI+|TRx +goS*#ROz_?;R%jTK8YnWo)d3*_EU97+z2yNpoWSNw;CY65IIc96`%&59B&TM1ovT~+&pWbsK0^4`qS5 +XNDE!|tuXkr+f#sR*FG$?w-Unj7j)R=go530zWHkI85{TG@d%2Vgj}ng`M-B +uy?H$}`X@woSE1o`bfbpOX?ZeDu3vlep%Hv)Egjm~_Bn%1{x~QYOrPG>0a<>&pwJ=o-Aa@cr@b>#rx! +yUEG7ClkESB-Hu3dcjD-Du*f$Mo;A&v#XE$nmc>+{{c`-0|XQR000O81DB*+m6UE^CbR$m0A>LI8vp< +RaA|NaUv_0~WN&gWWNCABY-wUIcQZ0BWq4)my?uNXMYb^9^ObaxNqT?;0tAQ<6bx!~h>{(G17t!}f`b +DyL`cxPkR8V_4Bdb$fn+pec0>nv))xc`~YScHeM+^r)sKieT*?N3}c2rRb`lijP}pT{PTZt_{*8`N)Gc<##@&hG +%SDXl2!gYHWzMcxc4Uwx8Gg(Up5vt2=^4;aZh2z&7Q)$@7=KR%IxgSA|1zZwrSB5cYJ+! +@-OYOEq6Z-??(n)cfUm6o9_NKeOKK58N8nw*Le3YDC{?PpP}(i9iG?Uo9X+OJAUj(eE+EKZWqHWH&~d +g?63bN8Q0Ai4Oxavh6zL9H(J~ci{N2{zfPSh_-$ku3uB<^$v5+YffDhKLL($Qn<*f|rrxO+{rA)W)Pb +TjFaw?+sNgdO=B^B=%5jD%`0qNQ|DwKvdNvvUG5D4I#%(;je{@){5VqBPAxt5|+;(NdhTHku8D`BDdf +Tsrzt=B>gL0i$YGBN|>oCTk;r#pe;KElnY;O25eABimrh2_Th-}g9BJ^SnNP7f>bSO4wC@_f +$Y4H72CSe)3x=#@^wGagRs*-2kzYlt42BMxQDqhyz-W?|Wx3%#)IfSQ50RMbhd%$rX3R8ckAT93bNel +%oOr%`oBu1`oM+3d4Bheo{usR_KWFljQ#5sL2%%Se~p2HNJP|IY24@UD*Nh#Af!A_;`kqTmv$c1F~tj +=KDoFKbsce1xg76BxeeS2B3(OP%XLN9(D|IPlWvmXoe*8xk)`nyZVY<0|5&ZTLZvPj+RTzHYDOaxw^+ +x-5p@&Ruff#{|WIUhAh@fI)aVyVQY3zrgUnb8a`a8IGLd?ubZR+{(3p<;6jK1s?VB +g=9AMm7_5LD?km6bmxa2rgH#Rj)5gj^D$r`Gdp(;7`vh8KWSnn9er&l?mo4-~}lB*w)+;JIXboJM)uj +|nI)#?pg37l>pl!Q2$X=Rw28sLd(UVnVrVvW&QB0ZNhts$v#+#=zfy}HCivX>D6syjl30}<}GvKnYMM- +ZvRwm_%_dOf-m)B;Ji)#P4F4WaI1M%I&Pgh4;OfS_CYWFQ}Z?)2MOTyhFm=W#X}&Vs-*<#r{?*!q`-N +E^!nF81N@s5Dlj(DBsuQ&X&LW2j*ZLP1}~kU&@eS`jYg^|V%#XC4Z2v9zy%D*agde|X|+*WCxl;FkF9 +CA7r^i24yBe_6oKHW^NhCUB1JRGXC0$;<(V;vuFE|!OjM`RP^o+!puew +-K|;jMBk5;wZZBQTn3#Hd+}nH{xk!-q)Duks<$lE^z +ODMmOZj>~=%loHePp@~#n6i|I3epe917t=H`#;XehEg`2!~NlH+hVXUn{VnsH(ipF~YTE!l-b>xfYy+ +#Sx4g;#$tal;G&+TE2oeHpd1+rKKAq+qjl4c*~^~Kt4}kP(2wqD|f+j07#*pgmF$D4d+%v;K82ZVI{DT+XLB^+^xat#QX0VZ%(Jt=NXz}Se7jUB+)IF1-cR5034Ia~?BjBpND96u +nbd;|9ODLzLWR{0E%`T=AE^!8I_wF%xPHYQX)6G*Rq;K4G=YU3Cgr;%}tgd*1J%+uVrA#>~m0D{;9EU +Wr_QjnYlBIY@fpHbF65%D(xPwqkXUrCOfQ`MT9P_Pex+<{Gpk^jAc47C)K)w~joA9KV*2(U@80Q)H*S +p1Iz3O8wn+|AiIe3%mK|G=g(d2s~!U!rg|02inT1)l;WJ~z4QRyxwPFbswT067$FhX9ktFkCR0>aYv? +E7*-KIq8vtJ@7%=6RH|B7rjSI7>Wb$>_Y%A`6DFw2WWIRM63HK_>&l$--oepATUJ&b3=2877W}ZJ^db +hN&C9+89WWo!#J+JdOdwU5THJvx(^8oV>cJ-=ZFdAYF-t5`Cdlxv@-NWKcwEW((Uu33aI84L0Tx-Pa8 +^e`khb*ANgtsOSkEwLnm1w0IU1nK8w}s#7gHvrEAFR@B|znsNH^x0kJLwz^ZZ+d~eOxQ`EfMkYEP?6} +hOqtV8NQPMdpb2&poEm<}biw2#UvgfSYWf<=W~+$4u +c;$RaM9>ERv^`(L27s)SSx4^*wqC`OG?!2suve}%1nGb5>E&8Qb2m_C!wPa*&vBmZkeV9}ZdmBTh&iZ +%S@IK77X6thAb+MJBcf?_mi;S1Sil}bQGt6Qs!kCODU;sZKX%`-zc*NY2g^5#IHVhPL?!{(ZmKn8QN4 +`adip!us{peaS6O-5xL7B~Kfij(#sq^8gu?xrFJ7;GLbpd7<9c~;tY8eo*{SPBxgc(0^N~)(+wU?Fgi!*J(Rc@Clw^EGxH06|r(bR4VVa|Xt#9z&N$+N)Uqm1<|rPq^ +x$7$p}I+>iNPpku&HQ%6C=OIsIAvH=oe$0`L!$~lniT3^mOc)So;eMd%1W_;vM=|APEc5a{F(a6wH}R#EGd1s3G>1 +d;}cfr)ie32{SJ|sp<$@8Cvpj)%NQOM(D)2V}EJ=>ww8mcGL=_$aHjdQT(@F8BNHNi{f79&G?$(NU +daY8<|;`1H){R(~laSlFzH3zAZUpLxnXaxu3z$WJeJ9wjdTx>Ht1ZzWIvPok3s_Q@p;wSs@P42xK3dB +K4>w{4>WG^U4{%4>K{#JO9-B?|eqN_lczHTMN6am1&CP+Kn0*@Lw?r7W0$?1T`sCJ?zKGN{5SiT0!Sz +pIb_2U<@=p|V}bu^+(#aJX^pwQoq?Dp(T=qi@fAPG?Wgt@WIV&h&^-# +!O#w7^E<}5v(Z&dKW3<({AP3~Q4+dckPQPI31f21o9*4k7o8f4_jWGq +-{07xV)j6sMXKh=XY5Bch9YAKOxQBU@(IL!YD6+EV~Pb16lS7@t7rOXsmz8=>M+}lMxCr +D48+~n4M-!1dH&fnb8Q)X9IoBSLU*DEypwk5XAEo^7M?9Q2ZS9z=J@soxRT^K%+IN@*jIuAvaXrPnV6 +r(h|4jGQ#5GkGTV8hZtYnkS)e<-3rr3A$Oo3ru}}@7$G_fqtj?~7?dux+QwJZgA#guy`!IxDhp6vatB +OqawRkqvTEUUH<|9B;!@MqARFZ8Gcl(HbGCB_;D1|jq^U8%)bZ(ZbzHoC)A{vlJCZ`85W1G}3ird*i! +E)&hES0@iM%*H)zU#l;~GMzME0kVtoZ0I{GwodV8IjWdIn7Bt-_E)GV#e=GFX~0@n +W+{S5KHEb=v#E#@eg_l5Tho9qN=O@hq57%hddOV}K>joh2>=oqMAX{a=s|{A%tUuPuR~oiw+`~BAH@9 +&CC$;+m@c>N!IXg6OfA>D#bMNZxPO!SBQ`W<@YnCC%qHL5A&bueXQmqU5^k8K +$Wmr76Q(h^ZW9DV9Yhpd~jtqtNy_`Wt38kK6`jZ=E8)UECfyXAvW|mE?JlK+P+x3{0vuN~YLW=vDKc0 +_u*LLB)7(<3urRbCVsH;EZi;uF~KE#AU@L3@yuO4%%`@q+v!mEik|NHmkZ*Rf{9gP>N_>AQP)O8OGeh?^E`bf;F%;5)OWl{*yaU){VP-n27Dc|ds5V{9BUte4ROlnI0K5?xh +Y9yXlWY5^v*L-LGLAw>yiH)F18_Ev&P;BD$0!P%mpQVuG|LZ06!H}AMqTH-*Y&ABZc)6)ppDBg}>Ruy +`KVQJf48+J%SUL&rJ?4g1&AC-9)O6JKhAbv3&}Tn#*x$-Zur6tls|v-(}V8=5e%8vKDJMv$q!HiQ~;3 +O9S2Z6KjUP730Q+>p~S7Y&kAkY@I+3A>!8^QNAF?90LigjB}H}fm&VzQ5i7?=^=($kZ5uj2Zk6GKB~uG}q`;9{QD6JS=7s%4rHKgdT$0k-br{ +@9p1RB5&1ic@31{4vkUmHCouKuM3e25`{`EVY)uKtVbXUjY*>kh7d?#SKb%*wNKs1of~n!9DaUMEKNe +aWO@R6K^HM%-vx&EHX64i$4b8KDRL;H}?19dYYqlpkbZZIKc2TUdGAAe!}tLmJB&EBn-$AC0&l6}*(r)w#W|;r!ERRe9_aP0yNCNs*J^PC{CP=F0Rwicl-8g>tMIr1y|u>uu3uY)T)PRL +r-adRcL0CrIa%y9-SxEVAF7bsBX9MH=Tm=`P4P@@YN +LN3;g8*|TU%An~ITvEfoYU`{>#~86C4{Db#}>)mABl^^&V?5JT(Im% +xR}7jQuobP_f1_jGv^s|}OYUX7eKP*tpYqbF71mPK`9z5T7VWJ!NY2zk{~B%7K?Eg^wLMf@e)`^8wgr +vYYVz;JkynF)IXM)L2P(hu|XYn{|wJ&4n`&KqM;!T2%Ns@)ee8Z`;*VK@FGF^ze2-jQ84-0&j1a#Q{M +u8ONT9Z}FHtaJ^vngvlcO=hXUx_uPzKPh1EBMhpu<9w(YUdbI;1lj6A%8i#}^^T)s*X#Q0#YGH6L?B` +uE}^_%FP1S`{O<>Y0DU2$&f&3GXR%xzqq*XaWd+SE4vF)HO9c%av +GPmy-2X4@h266dc1apnf|cRrPO>pzUh!M&N0$k7Qtf_rn;Cm#sH9nxysSfWhM>?=PWa8#vh!^waGVI2O})c4n=UT=S}jmd|EJ;YUU9o2#2}2Wi()NCF;;z0l`{`g7qikQ9c3|?ujrJGTE +sH6YqK2G0Gg|+u3J90-`C3fy;4P|A8f?y7BswQs8V#UZVZ!3x>DVI4mqsWb;ZHm0&Pnfk+EORQcwBLg +K<4RVWq9QB61CJS|KY3B%i}c(zKI;0X*UtS4|*G2!-H9&Xyn=~6)&7!t}vQZo+gjFlj_!>3q?vT=Rgs +B-JEpYr+~Z*E`f$fkAh$fy#_-_km020*&rO9uX0abbzdm*`ayrWL=*+iu|58~#BpL~9z1JSC63YfIJQ +6nskgv=VE_D)b}3`A2NDhUD24I2GhTAy%VM!xZvwI!x0j$_`M~K)RcIsP`>C=zRwxZ*l9_q9+EAOo@MQlp9LxZfR*-68eL|9Id(=uc+0i +Aade-*v(Tx#S!6>l)*f9=x)N@FGrZRk-M&Pv?%9?pySiKRRcQG*fOLDv8 +C*T38tY6*@vOchyY{5an +Rwh`5@h}&onFe!qI$g*TY~;mM=3W^w?6IO5S)et?F}&q+dBIYT*T0Gf-v7DgvV{`k2J%z1WERX6YRM+ +}k`^ed9NXuoY%C1y<`}7!rbJ8AK?};?xV(4?ukffv06vPT`LNTJy{pcVK-!r>i>h<9 +Cp2oox^8}BL?0gju?f%V58h$>yw&SZ{>`nGs^d-HZe<|+8+HnHMNQ56}VRKl}qEG)}zL+Z1n*PTv=Ay +4-x!N$g?*x%$`Ef3CZCbaEbQ*400v?5N^^kL7f)UwP6S19;!keHLlEYlRo@(#I{V4)9S^A+scJ;K7eq +ODOE}9j1$|;avGpIftD(C42aQfMr8oVvKPtna3+Yzbg~%t57Bl?*ux-=9V58G)COwitjy%9#@*-*A@n +G`bR8&vpz9f>5+JBxqoDlz$h}#(n;~~OKH}f^kei_rp-qN>(M#6!Y7|SitBx43-CG&SWdm|F1D7j+md +aF**G(LZru4*wOR$s}mIAUVN$3eWp{GE#qCWgbMCg2I0s0V*Sy%Io4yrs-myvA5UI3QcC?TjGZNUYZk +L8oaow)gg3xRZxkvH8ee2rVB!h5)QG9B~Jq^lLmYokSo@2Jp^xkP1CoKyw)vtmlcV5L>$7kJ5U=VH&t +$>bYwL&@`Z^t4=HpsUAJMSDk8#>0)Xni5je1{xLvW`)&9-o +RZ)Y?e`D-+;|ekRI=+)6D^Kctn^=evz&zLR-_vC`-Lq$>1r_m!|3Z(w#b(I|WAfbCnZv6snL^@y=+Kk +kh%tPz|x$z_)ow`=CxfIbBo#tRC{duHGsf8A(eOJZ65h>b!bSI_@LYvK~@6G)5{E;Wm_DA*Uv3J3>Vh +lZ)#mpCJLEv1|P7-=VPt(1%>V(jBDigJq?2E(1xDQF5Ct_QO(sL~@cNH0bN3?%$1t}wRo>27k8!t7fHx|i#91E +0nnsBTwGfy|nfZm%EPLVnu~a>&(PCiDntZn6&Gi3ktnO4-#XvvP)1ecHW}%&o*(J1TD^vg9zOHt;B#6LK1&PnSzZ9o`iJwX=qr06eND@!FH0_c +&9>3k6;^mX^{B-OFWJTHnNQ#5JqzF+ao+xa#3IpTKQ&T=Nji5dbV=fVmW5{D}L4rHawD*WC-IE@tc}JgADUmBFW@05 +s8@#?lz#&8|Q+@sL~imiivO9dZX~p`j~2*gHb0J`~!`5(yhdps~^F7pQMRKF8CN7zX|cP5zs=!H;q{_ +Xn$`LRq5l5z^CvQD))$F6@RNpa(Gu2&;cryCz3QSI2izjqIgC{aAo~PS%&Mbf}?q3LOp^UIDq+;t7+` +)jMa%`%nUuxxaK!;FGt}H(&gYT-fZtsj9Fc&6&fyhny#MqGh7Sq*9QvMYyDETh>r(MUcVJOoh(_YYXe +-c6)W79HVOniSS|>uEEaz*(WQ8pBIcmf{1bYAouV!_z~{H6X%;N%INc7qGsuPBz=4Fjav}2zW%>MC+?7Ffwd!|Bc42X-^1K+g +Z5qK)o%S?l_wN%Ms; +QQ1daFRog(*%t#t1On?H&XCDJ1ZJV;-1!Zaq5KT!f>%teH1Zh1QPZOJeLU;e9^=4^3E6tGB7l=38QZr +H(a&(ORmB9&#l4X;5tj%rjaG2kE45SG^VX=7biiU4PRbPqc#%;|BWUm2@$^6#iMqE0!RG{IRQ-cQ)W< +|s>TN@=g8FZFNI~X@DW}*-mCBv*9mC&Me7YHx;RHgekDGGCb{AvSO11R3~gI={{|@=KWoyUcCmv_bG!O;O^Z7%!q=DWLvxngnsc-h#`*~=> +Bop8Y@5EuMy>4xt;t{iYa>>+~_*Is +>lXiohvUd%3pnpd*w>MyE4TC+TO(LQbiHFL7J^|MTxwI1?YM9$?_(vI5NUJ0LOgsyAj^(`1_VCL-V(U +*1c$xv!KS}17=1z<~Lv~ma^m*)eQ48_Av&Yg@E$HhDT8Y#$7-lW)#qxhZdVbS}+F@j<-X3EHud8POj- +vfqVS<>L#nY$%cEJi}d|P3IolMj0bTSJGvUsu<~5>z5?~WeD%ILBu@uCYGzh@eIEHs^dq&Oun*c*_4r +z9k9;YAD@R~RezP16RY>iCbXENveKNeh0CS6fuoAtV7d?cIUu*Fc#a%`0Eh|;ND3|QheUOf_jI81rl_ +T!)(76lGn$2{1GGso>z?ZauiX62>jO8a~4R5U!M~b$;YY#iu*G0u53W$D(-^!{-p4JIK-oqH@lNW(fK +0(|8`fs*Reb+~poq|#?1qHp0Z5}DKEM~T!rjYB=;^Z?BQZTvIcSqAduN&QESLgp3fm17bR(}=B?eB&` +Ur?8!XXL4}Y3NcSVU#zC3R$L7s^*KQbO}-h0CV%W;v$Z9mpper%?OYF)VOo10YL!lPK;$CRxM +iE1A=UVoD2NYUys0k8Jr1YM)o7GD)>PN|v-pN%xVpm~^qd|E~ZU1*~(`3s$m2TFb;mAj92cmZ~kDv4L +@9=tESLuT8mez>Mn0Mq2<8S&AN~&TaH44z8hhD(TQEsKX}9JqyY-nU00}k5r*LNB5wfnXs4{-QIf^LV +Nb&0GqRR>7b;j8)u?4`sEwb)Eb!LAQjO +&?Z(+Q&!4Rk#PJqpg-}KRDqVT`yBQL)e^o$J^$sySf}0iP$nM6hVI6Pl6e@Lx*H$*`n6lDIB5U&u-Mp +b0L>Ctrd{1adcZ^$00))1deG=til&@Bj0Yx%Sw0h5#9PE+voKY@`8KKgJ!#o(5HBo}Z{8qPcgB`&co^ +jc#LSbk36K*k4mrCIK1?)NR(-m0vRr){2rB#5NfqN*)pc6=E5QvRDJ|KRc{+|6>edY&b#-@*G8u>|H+ +G?=!m|N}yhlBSXxfF<8YjDwbxM<6ozk)m_Ap_AOruP2@Pc07^V)^M@Musi4Nn-e8Oc$1+T`g8JY@zvs +`FV?&Fg{}_0{vLr9~FZcba;|2M2|zYH524liZ&I=*D1MU352&e_TnJ=vGTRQ;=$>n2jmw?jk)s2fD2X +t(0tvpmz(fI}DS($a){)$=He$Nq=A%{;|q+Yk=lrJsy{j#)b?xmNgdjd( +eht>=m$C#7VXB7MN#a=(Gas>#=C9;X+ybVk2Zw5=!%Ora=4ZVgKmbH$E}`3Q{@HZ(yZgq?o +!Mym%cbmfoba^y$<71hYlH0uXy=bq%Ku1NCpya_3OF1e7OKcKuk6 +?u7H;$mLLvs&ro1DyNAb?bFs2ai{CJ@+O3#x<{T^g~amC*^*}8SZD)d3L0DIJC?x#?1|ahXj`4!3_x4 +IJ!1h9i)3-U7L+^)D(3@8#sCr`b6?@*Tm3L8^kW6v9Bdhc3l-wjqcF=gZczZ3l~_qoRaSYJo9Dtsvqp +3m2t7!;w0S#@&?R-LNbTqK_NJrp8~^xv;^|kfSPqFUIu_VPaFqi+8N-?mG6KyrSF|5{=we)OaP3Ml6R +7_9$^mv06J0(b=6c+Ka_(n^gEfu`0)MU>4EiBMjSkdPzV1Bln+$U19PY($EHXR;Wt2t>YRqp*Vm;s&- +DdJ0~+d3iNy;|k>&+--SHdy34P_UDxZ7&sC@K7|InmjQnk?3&K+2s>+y02?n|?u@P#T^^r@RFH(KQ?t +K(cl259}J4;{k|nM=g*9LLE9LdkvsIt^c7#Gii#c$M0cyHUG$i+${<0T~AaGG#4FRK3D4ZGG`_s;Z-* +vq?JhOa3}&4124i5W!g@8w(i +5gwR{bAX&ymRa4pvYkbn7UAYv|9G)KB%0Q<D2VrU+^sIyeomQP^*PoF87id5D1xFkE5V!FMc~cz4zlH#( +uvd>7mj!g6;#mVduyqg2RrqYQX)Gm5*7`3kiJ+lpDetrNTfcC4p9ROK469G&zT+_3rLtY)m7p!;KdTFQ9JmaA=0SX#`05n#Gp@htQJKT +{-Tev(MCd21DKvWKGw@dlFU!SVEo*PKKTjx*DPG+^oXQ$rjt5-ISxNl5`><_@&W5ow26+QCXYtdUP_S +&`5V+w;#q|1v58c($;zp!n@0m~mIGq1EQRSr`gEI1O2kp>Zt4tq_Ki!l=2gz;eOR@P&fpJ9PNlVpj8* +<4%TpQRDQOpiOISq4#7s9kGUiUBRybv@M7cg)L#eB=qz*5W($l=k}W%?OP`nN1X1^UCxM-e3LPLZ7Qj!pyAkMe3RH +x2d)S4=3`PumPSf(VX|`PtTM(@>ZZKlx^DwFqqX1Fs!)Zt`CB5}2`hjgdqTHg9F&69rH2;A@sbenvmY +=|9s3ixJO`V}z3&r8dTQi%M=S;JORu(GR;&+p`S}|A{TG`!dQ%r3Pv)J)YLtD~yGCf9l-|Alga+qA!2 +UFNaJg6JrO%Dex+r&>3cizSDljN;_s-+f^({E5Mm0aJ4Hgz`nKmAGlaI0SudK{(ngweGyB~0;-Q58ot +Rnbdc!Th@sNLuEXDKupBUa08P&CW+;p$7`!zZu<)>$7>FXVA&~D?lSnGf%SP(OSD5u1cgfJf0!JOvNMCEnNn=ZTJ;%%GG%WWyIk-owU9B{2vl#>mbBp<|EI!1 +&XIZ9qh(2W$_+kl4I!(|7XGVuJ~&#`1zj~Ff~?}yKZFPc?y9%VQWkj-i@{r1y6lo(!Ua@2Mk(G^X@EgCm)pOH+aFedWZk=(wnHLY;g|;449gtxEnmuwcxt+7 +5hHX$$EmJvv5f_D-V7KTdgU0@Ew&UrJQ;Eanu=-CQY$ERA*lrr-C8eST`!f05!~3nQTSFqLv_sFm+=k(-GM+i0F5y3>U=nW1*$fUmn3mvaIt4;henGOvXVLz$$rI#UyQJb(y7!ss~V1DgV2y6#JPAuG0 +KeQ?B} +BfATR1QzZs3*;qw^ql&CaY5`LSvXB?Tz!;`lPmq@+Bk8OU&K(gtn+*1azfSF!OBfWF8C#Gd +s%RF8n__t5Wom2{wg^HmzwwF;>5F*-IGt>);$GN@PsMosAAmGXsef(FSXT6Ru>D=PKD5va%6(W>|M+A +3tC$@rDH;`mVhIo5d>B~N|@HxZ7imJuF_GPs`dmrno|}3unj9d4dXoO2gwm_#GzFJm3@vnFDSFY8W9S +chqYWDvIldKbzdYGkrcDIv75nd-;)p*70cb|og<77oF`tKcw-ifpze=h{X`sCAxJ57Oa@C&eh959bli +4h;NaN6OJf7!(LiXuJLY0>QMvhnI1e=DGw78&m?l1u07VZdoD4^8YBehWg7*O4@)BLhIyvffh1I~5At +EGT)dr}6^#4({Kyk(Uy^?eS8|gvZT*Wg{QU2cY1?b@9mmkEcK}20yzHqDj;6W`k2|^Rx#Q10E#{HO!{ +96UJn;v}W0)S6mPXUah0P22f*LIA?AAXs|qGFCuFr~DvZ_jd&jWjA>m0OSX8H~0u{;1Op%Ph830(g`ptAJ|e!RT +QJQ{7qXfZ}<8uOC#ASP-q=wm$B>d?-j&G*VBjv;=IPg+0%)DsiTA}{$GJ+BurH8=^<^$wT>H`Ak3u{v +s!(lzyMD0hB~UJpHA;hK;(0atDU&20xvzy;(jjNWvYJ_~!J+AREX56;3?GN(7WW>$)8D`MMSUQ(lK;- +=?x30Ruf5GacpJ;bT-e#X~YR{5<)QV|3Cn8clMpLufU7i+d&cb-I4?3;}sF9+g>88^=Rp12}Eh +jn2Hwy&>02x?c@?($;y&T}EUvdxs;U`4Dpu4n2m82z#hoZ7F&aIgW0=Rt#Ijs$sQ0=2V$XsmcT&GnmX +a=OqxZw^m&xmr|FeuruTyZf>Ki5GNbn^7!h@sz2via_F`iaYVQlyuAmnqA-(v=Sjbf$l-y3SBIno`G%~$Jn5^pmxO}EWx5^u9JTK(WzmX;<95Om!t3!`mORpOViY3Q9KIXjJ(uEIX}fg}F(&udUMD96Tjh0)uOm%+ON0;vt65x^)9C +j`xBsfibhlm#Uk6Hri9tB6^7$U~wuLV%#K{;gkJdo%nfBA0-pPVtA*Xx>OuCaS!{^$(Z)JnrAzXSHZ1 +cTh|dqm$X4`JKJX;MBY4d6le6BpekHeW|;$%;FcMnd*536+C>oTJ{*Jp58fQim2Vp}G +MYu>WIR(Ti~DnBKvq#&``@YF?Sk%Ks0sMZSkE>EBzt1QBXg1B|x+DaJ#(H>1t}D-=hQxmm!RM$gBvEB^Bp-zsj9pf1d0yo1;aFe@6xynnnYrBLzJ+?DrsM3nwPkgSIOm9c0(SG# +w9qOu?8b;BMw9NG%L|VT2QEE5tG&E-0XWACV1%585Dx~~e7Vvd4Lka4IX1o+ZSq@shv^tTbrCenljEM +YIWvf|XoSWRJ>O`LoL{}!4HL^l3TA0uuSLsQDDZ_OdN+lqPm`bI^4#K^A)JNtJEhL)kfbqEX)yNv46L +^#CI!%^;r1iw7pU@o?1NE@}r$-4||C-tuJl?LI5uh$xsiOpw9cP3*a{DOQe`;XLo%CocOkj@qR+H2?d +SpO9U!V%Pl0e)*!LjEDN*&SdKX5)^zu|)O0USLa(7JAs`VWo=96z0^&y@Cmc0AxenG25xJf6x-PnwYy +2>-zGfE)h^oN;LMc)&8U768%FzlN-YFKL0|rpE&);Nu!#Tg4)k8GAV3GCj|1G7a}C^iH`f$E#u{C7S9s$8BQ?h94>3aw-+ +w{!oQWFcQ*y^w{)dYz4$>n+(V-UUKktw7sl&?qKiFpzXz{uyNF-7soO1)> +Y8Yd!2kXv7Jh`TlvgmKegAuPn7D+du^JEBd=h^?hz>mWB?$;a}MoB_y!0Na=*iK+`>F^=^-FSxX{thT +gepq?R4}D*?6k`kyYCIASiP`!cUL{D1dxiOB3CyW93DmDua|GugEWs-yp3pJBD{m^U(wG@ukVrk4m-J +UI?Wkv)?aQTg7uKKUF+8!cUYVV)qRBc;q`vq&v-Ire_`%%fT?{c7slHA)gyCdOR!1`?oO6tfP3x3Gnr +7D0Npg+sY~v?dmcgo<_#vq*QTbjR`(Or;~!m2LXTnM^dF +QAu%}Tr^s(p{}MLsXt4*}3(yt*Se`7MNjRy9bc^qTcLk#;%FML%2kGa()Cv+4{gA>bVKz(s3Ofg$TV>+=*|Kq8@U$TWes-lnN5yN!P3N<6;o5;uw2`Zr*@-KElgDdjxJ6-&QPb +sU515IxRyUcU|}|IZ8a@j3^eZjIaPoLsvPZ`^Fxabc%m4OX+u(*DN_-E{>t5|%NC%^gLwOZdSR`T$2i +~%s6&7{cq}5#T*c=$HL98X%WbA?Iek~P+PXZ=qRe*G_JjJ33C}=3soISQ-&E5>Ff`f>@JpdWcp1{qDu +L~kJULx!yAvB}R4ls;PLj9qoeI)TKCOZm{BNXwvMZt*frKfC;fZW7h47cE=)Fe-987Mc!wf)Blib{_v^aq$R_ekOu7-3<4@-nX;^hOY?`_Ok1rZrs +b>U$9_X;&XeCoU*cV{xEY)ZX$WFi)f06A@Dw5J}4?mMCq&6Iu1*f6o-u2@+_Gcg+A>e24?+TsA+hUdq +C&tind<`QCk$a|Xo72pE*p@d8D$EK|s)=BX`^NiPpTCc@)2qRVE~xx|P!aQ`DNSxdQOb&^Zw)QgSrO# +V-S>^1e02{|Q>oPrLRUL)q6F6BGc+Vn|0DxVK?a%(W17z~52hgl< +rtNWdYRF{pi@Ak_5K1iQCh!%rOwd?Gk)2-DapC`UGzro4WP;rzncr*iXR*MnBH|G)cFG^Hn3&7QUAUP +U{fcN*mpH?{nd%F;(9-G(MhCFPH13lDKNqv{-2yg(ynB2*`|h_Fq{5bN3-)pYH{;`hZG#W=&X{ign7s +>&Lz(+DwD{Kqh;Ts;rXGnOMg0no(6b!X~WU6XTx$~I!BlM+vzV1OdyHls;Zr^t2~5fx|Av^3nzje+c3 +^cE5MRXGqnxaSn8q|{80`(uZgg)0_^4-@+ZWkpSAl_VB(s(i}v?d6 +ouaBbGCl(i^vWYhWJm$>+rH%ner$eJFln;;qHUThqmuLF_dMgK~SMn>9u7WrNon;-{uauaQqX^E@EV) +Zo5EI4EF!6rSd&INOZ4M>QHRsS4}nkBtm>j_Glw+6Qsepa-M0@VLG{fl4iM99nR=7w#rXCnA6hQ@?)< +E`+y16rN96&ddOC+h04!aNDmt_5L4QHa#bO0k>_|!Pca}$nIDFXXoBJkNhKE8XOtJOC#^3FsF6?Ltd) +yO!88GIK@j~h&uT+aU09ggtxdE+#m+1{Tj)-6pbHF}Q(~?)`3@)`gy>h>t4r(W#Ej|F;2j-a7kft +mZFQYeC?kEKXlsmwv)mFD0CBHwLFUlc#SotbJC$_ +Ag+w&;2z!v(V->X^_hP019$~?2tU +oe&!@f(z5fB<&GZ|`e(z(Lg9dwp@L4Z@cezk3gTyx{I|nNQ3WHQXig4&@jO<;7XOL<7o#9OGz#E|owo +`-eEkoevuvtv+6-m6aFTgvX6{)7Hbw7m*<}4~y}wR<7xq3v5vPmsYlX@6;!fjyVZ0bK>luMYy>}yU+^(fwqoqEFsd$%P +@69xI1J_bXKkndK%IU|wT+4j=A#g3l^kW;>GLwF+;aVo+$8*RQ&|Vx0w}dE%#b__nU0Hf}eQ$rd-s}z +BqgNYoOZtcrad@~#@q8bi>08X(fB|mR9LTxgCtz}jM+;+=n-G)6)iNcq)@Wzw5dL}%z2rtZ)K9wu#{# +I+(j!K6Z9rJuo9X=sf*cix>1iyKYdL2|p( +|wVekKRcVq&EDTpy*%J`4m^?vZiOo?U4zpt7dJmnJ^A{o$2va%h>prf;aMRA~ds4&ifqXYXk<9&!Xie ++=~ps>O(R +E>v=14F{}+8M;Ps*2RAr$T$zX+MOKd}b8jXa!wO$S)CxhCku-d0&icz6Pt36~+GLSPCMEsd4F2d2qwL +FQ=Gat!IKZAySEH+KE +Zya}lBprXjIv4dmKCFb@i9zZnvjBzk9NAc4@VMr_^7&XAjKXK+ebk#htI8+IxW=Gwo`r@ngdobSBI^ssTU7nMSmjX!!Q^FQI&#dy8a4boZbV_yk**W_4Q63!R8E5nSt|XI?|;`B%8U +G2NIOUTb@E?1E+5yA}0Hk-64MhQlN5? +i_pnW(s`tWJok);X6%pF*ocv6|9rvYhs(~~e&p3tE5Xntz&#Lh|E&B5^IaYJ3=31;Xoqb=5pd<=T(JG +o0R+EtyRjn*+7F-4>zc}Tmsi^lIr(>WxX6%*1fp>t_y-!NW*M&s3xHU;fWLkRu~nG)p5TiiYmc?}ooA +|=w(4K7wo1KvC`p5wK0ya-9lG($ZA}YGc#lfQuS_{mlT&R>iL#Ii +zGqW|R!bip;7Z2L_2L4CPcub=s&J;5CgVN*h(J7q0}47}FB+$`3VWS=@$Zmeyg6`%lC#$U?_wowuaVC +U6xP&Bp<@*NX&t?M2q)@dDlm%=Q9XmQ;$Evzq)gW)r9h!JE8R>U!XJA%gx_inZw{(EKT`K$9{CXJVe- +@O(Xnt$lY|IHTFxfBm#wMcuhKrv!lg1TMVS&P(QwPro5|dZv41KaqJmAhQ+}FGOs96-E>p(8KoBP-@U +wIb-bA)Lwfp#k57Um_QKasBmQt2hj}}J`4XCQ=5CYT$Pwjj`xl#<#f|c3Yh}K%9(q2rqi)MV0{%(X;O +=i1YZxDaE-k|T1Y}LTUBohyzG-CJ(D%Cd0^?Pu-qj5DdRWoHeDnJ{t4@yBz7i|MJ>g>JmEb5@BFM#%b +2;b>k&~Ww#)m=^Krd+9B{C9Mv3f;iSTk+_RlQ{%``CFXK2Kd_qfBWI@515v8>62@1z?o9L5Zh7^cy)k}ssWCVx8#wmQJ7T#)BC8lZG;|#&;Ld{1na~LW^R +;Mv&AR51LkWky0*JrG0N@q=7fu`?QS#PgqL=A;HBN|{GYi4o!o&)@loYEj~AW2{091)SxXn|J`O?w*? +CmE2v@7msEc7tv5DakOc}j|yzb&#$hqLpnG|hGkEU9+;}6M}x6linmU-zf5!QtG%H$oJpL+u4Wj=EDW4hX1BTb_hKAjTiKJZ2jms08_2FQn(HPnQ*8Tgq2qmL +Z@m{uMgwibJRZo(W$-nwuD%x0naJMi{S;m;~XLH_MOAayo=GU6;IW~oSdxz(&)Ul&#BMN>qeQ20sLF? +y2j`qQ7Mzfs^-^X43Z0{!IXwM^l`>X{>+gO~aa(AO5vHFHKT3K|Pv6V(Q`9XiAu!;Z>#ak>xad|RrAd{nRB0Z=1~SvUfF5?gT-;_e2}QCqx4h8uuao(_ +@=NfQQ$7=4>E(>`NxW+3k=GFu9>VsY6`lIUC`mUzFS)T@J2c0&T!WL*ighq{<%qA$2BIo#4ZV!J%Z^y +XH_Z|H71?aoeyD`bkZv}3f{Gga2|DpRi(thY_UvJ2Zx4+y=)XT#ZS}}?w@E8*0|i+;$AYN~v4Nr*dB- +|&Lm3N`wYB*i;@|$2%*Z=7lt02SVId<{xdC_al^x}eCBt~~Nx7%|=gBaRQ>Cu_Uz1_H?O9n-9!iFB7f +e}H{%A6cYvsz7<-bUVcVT#X`97l_4q-T_{3Q&hLl{?n)h!zWta_qG+Oa`N#|Ey%K;3O?Q+H|NiJ>y;R +0#zC_me=;QoIoePd**Kx!VaA(89v4Y)hEGGN|%J3ug)$_71R)9*@Z9z!-9q)lTh~Ou!UU-UZO~O0=1T +v-D_V(p%F)DgZN#w1U(~!;3WO&c;G*obAEip9=A52Acg#I>;V7O}Vi~Dn}6k<-e(6@F;dKX@Cq(IKI~ +4_%e9NznrGy3r|H|?*&P)Y+CYI$uh8F4inf0BO~?YP+ZF?{u+9v?eCg~3wcY^aE9<7fXUppL}hU451Prf^fCOL3oZ2E7j48mcrjEtn~o<$fg_FFJr` +KqH_H$9rLp8Gi#U+_-KDG^j)P7TW?n$gie#WT6T-EzIDT1yAwi+~KerfM=0Q7HN&l-jxQ;(;BCykG53 +FCL`qJ?oO_rN)#C?}@>gFYKJo1GxWa +b=^hHKsAi4W;r$Br}nTs^yK#OFl>9p{q>s`m7t{#{CN>I*9-%^71%)svFD%RcD%NV|lvzRa#m?h;*cm +k9knxx7UC_0r;~_jugt_ISOLYe1Vd+xP`;lJ+4znwWsl|m7780y@Ew_7P2z1VIw&x!bigk6ZMc?%I=zjlZe-wSA +%{yIS3d|K{+-PLdJcMJ*Xhi?YViY<6Xu*z-O{?yTF-r +Q8JHpwoV*lj9~;_b8HSK!gaFRkL|RPlx6=t0~g7jsnd+`;6w$~SvZ$Ljrv?!FBuQ=x7k6c8-~X#2DaV +4R9cT0J1UasxKJis3r=yBz+e!JkbePT{$-)dO^>^(oV1F1(|QQS#t}`tMrdgPLn5sTL+z+be*WnRS%@ +oTZN*nQ}yS+W9%a&_(z=%H?P(@~g@jKqFicb7@|{tKh>-S2o~-7Oj!wa{NtC$a<8YOS%svTNpi +%Y+?2u?P^BogP2P@sFMyK)WmbyVy=E%g$Ty@iE?%~aQV>jS=IS19oy3Nd%M7D9N%1x2Vl(2)dP6rlvv +$o{vBHQyeXrxe{Uh5p{27*)?OQ*t_5u5Pau57H&qE$yGuyr0lI%7O($~?pn{7(r$(m3r_A);rpX4mya +Ipi7ZlX~n0D+(AR*T=7zTYX5>RJ_!O{)bHo;p}30V+Ve8xn5?gQHiao3dRDIw*8u?2D(9`tOu_v9W84FhPzzc?+gYUZ6Q?M){ +-EPvly1T@QtYm=^|JDwID5%0Gfb^ksVMT%%3kWY_6gF~O2iZBtAcE*mi6te7LhSCk`j@pD0`gxAb+y! +(uXj9SRdP=(XX2-DkKBL*cOrj>(u@g3!YOo%fo|ChZl0jR3#+TKipie5}Dr}C;e6b=|_A}SXF1p-A;( +9{S81VTW#*P&EUAjK=D%~n>XmW{8OLz4<>&N*a*+2D}YAu1_N(a8O;XPt8{2L!Xe-tYbX|NjoGyZ6~= +4{NQx_TFpHuJkLk!fPsco%ci%9+sjxXH11F)LDM67&?^>Lb+CV@(3{sc@FIe0;a*p$r}jb)HV +WF4yTk`IT;_!tod--5Pq;PllNaZljklQ{gZSorRu}S1}z_b`w_CJIBQlE0VhNSVQCO)&p_uFuJ?8_A6 +kAsbC2P)Li(k>VC?|FEy^23a0bixU)5ll(TjO=&YXLHo3M=q)x2&?Ll8H)l2_A1sXS@qYFZE{`F +3|C_Pvjmx~Tx`OjQg%RvkNSr<4kzc9ywwQ+cK{rUeIGr5{@x@;B-=l!3grwJM~@R#_HLgbf0bwzhF;& +g3WRv;*hu)Lb(A2XiWZ>X-7Ti7mi9&1JlOhtKZl;*dd1?JMflmb`*&0R?rb3^8@ +!lQp}j19=u*#jEr+?TWMET+L|k0zopmmU03i}!8oe>Nr9c?p{M^=CWVb!6!{h(%0lV;&pBi5=0E48%2`~h#TlW|Q%!NvO2>4xdd0foHV&nOG +_G6aI|S7u4xl`HVEm$`X|ofq-ffZ`;B522R>SSi<=>H`X>%i=(poE2)ziGjpc+cq^9bK1qNE21F;PDQ +p!WG=ckcPfb=KwK9ZL2_p8 +oJiyIHZ4b=*ZaGlg)rHcN9#Apx+YxhQum=kiRpiAzW(9sG{Nz#f%6Ty{`uKjN}0;OcabfJ)Q+7qCC}G +OrwIr>`7o9v7Scy(#}YQ^3`G<85wbv-=2fX*XX@)}pk`Isdc^b=tFUKfgwLKfd&F3}?KDkNIV;*`B1& +x$KeNg{vQBnSZwAxq8_g*<$QOodE^%pb}8k<1D*E6B +V+<^?h<$*d%^ip;8FR}2vdmkO6kof{HFuO-+(um>*Gmx|xJV<|8++EwZ`7s9ayM~EG|-(qX;s^Z!HRa +zc+SLZ>KKhCeIqIA1IiF7Z0L7e{T38q)ilgnzJ_#jVwpWr-!=cN|1ClV|sSTxk7(~*V4T=IWr?ww=qt +v5ss+%!McdG#~-~yEJqWxAIz7pG(~fxEj?7kM +wj#3ynJvilBGZdZPcl8p^dQrNOjj~pYvzs0qk;4rLNJ;jd +Kj0p!mscmhjahquvFX>NnR?aO#m5a4DsP9VoLO}0DPWh$S4?bLVu$|+B8H-nY8w|VCdwkd5;rt5ew>` +g)w%qm;vk7sd`fo|2VHg8{&3i;G@I7*^R8a=LnOvfLt_v1jE +yS_J)``(UR?*6KWHFz^-1kkY;#g3lwlvjvJwR_>0)^0qq +-MTpHtC4A*#ZeU_)10E^QJnK}F|^XjMja$lNzJ0%ZzXUE2vw}N^GQ1s`Q +!rU!0b+;*OUf`X5{qDY^``Kh4#QmxwO^ly4aR};kJj&u5P?1)XfI`M1!XSh|$+JKta5w;6N)%QL}(EJ +v;Ho`?y7_`w(?%$4+`x9TOUQPI_I&3_~gO_rtTWvnJdHIjwtv0-O1;arqGR>9S9mwQ7#yZQ_>ReKCk# +qTB16I!EpV+tO|4vGS{Z~wX0GXy5GF=Io@{aaje10`;_H3YC>WEWRMp#|$wv}U;A9rnFKX>6QJ{1TNd +D){p)1s4$LL#n?EyFnwl!)^5S_dU%X;M3-oDYDRd0YNv=eeHwmtAZvR(kX0Zfq1aQD2n!wT@!B_ED`^ +));|Ng?&sb^#-J)bK8?9X5Sayzm?U)60qNPF@LYLZ}%w;3)nu#$x;;Bs%T=R|3q(FV;+LXExw`N_P%| +1EZu)%x0o2>1?hE|4s-obJ&4ift=<-0LESkFl8+*1{T9kg+AWlUj$0`2IzaT*x`i^nNY=WA5?3X<6iv +L~KkNl`=hM+fj^)G63~v>*bH0BVz?u;nwQ;I#wfQe(wS9#-RRi7I+*os0hr~@%&Ntva-N +ZFR~MUNwSyHWyI{7&Rq2FSrh6!D+4NMJv+1QYX0wIj!e%Sw_k1$@DHmW&H!DA~>8+e$vzzi2o86U9*z +{Enu-Ql1$!0s{12+3B8`vDEyq*sXEpoa=S;C?bGCB3hQcOj*h*WtZo(Xu;>A{+W1_gR73ZlcS8x{iCd_;(=h%vc +%*q+IJ_YL+Y<(8igKT{P)*WnJ4eL8>T?^|Q^BreHyg1)+vcr>X#jy~|Vzy%Mh%%3@I7>j8K3_u_(;7+ +&e?Y%mnaEZQYAB=F`W39h*os<48OT;l^(npCs=(TXtv@pTY~^z!yx3a7^t1H>(~tYCHdQkHY~^FY&af +53jLH{m#f*b;kgeDksO*@hp^WWu%0~VG6-0TJtu0`Eo~^B5eT=PGaj6us)eP%gwtB;w!`5!Frmz(k87 +mXn>I>^Aw)TN_7+Z0ljWUp}17YpWRtv0M*ct+BTegP5>ZPL`i8p8d5Dn|4JXmo=u<|2Y$HIDwtrKAVj +IH;sV*%7+#)rXn^l)q0dCQni>vC=F2HTH=JIPUyO;yq#%eA +nRTu97w+WidLDi*yfLoU4@`36yFu={KxxA{nSOVN;YA#QyE+GMKvo)88RF|*-w>-_o$}ZC*1Ns(d)KA +J)sdx0JW3_2ZdhBC7(O+Yekmy)=KPS>F{(niy$e29 +0a;^SZ|6WM_@bPrancb)j?lX;Q8#7I`f6Y+xzi>zU3|kY>A_srWu$t>W!cZwacoU&IxMv1`|h541ZEa +I*Czq`C}9aI$r7bjEsXsp2&t$l2DK9GeYDaItw&uOffDYojx^kL{$9?O58jPOk$>+gnB|E!i+<<~Xp*#o!cUp+Z}f2?vE?@G7ls!tLGSCw +0y!$hP$lDK;XX89VFpH}1wqx-*9cl+-0eVUGniPM1n)2q)Z^vW?Q`&JlEW)Cv`E6OW2&i;%4L=S6YP_ +gD0$l)=*vDrha)Apq9w+Q$q$IIt@Y?^R65u=>j&+R_8$mko--#OEUDu?8j#;qIZzoDz)CyNUEoW=UU{ +`~7pzy5Q)SRsA00oHcd+AEe!`tqawCwDtztK3edd6%87Zh4oTY+b3daOnspz;9K)e^%X#bKu$P{jU^#*{u}!#gP84W~&L;zv7JCk6Q2`c&sw}X6@p +UpV +?nnTP}+3vvACXg;Brd-`8JYU*Lu4^1Dr2OQV&ht<^dB0rp~~>9gM@%FD0B60pbg&>EhPC@u^k_n2tqk +yh11?~jmP7%Ul)^0sMCF{-C%CBxt+gKuJwj!ttcj=Dgd+TvpP85u1%f-EhxsyV9*dP^45QzGD6gC@i<$=q6|F#~fxHKds650@E$iKNl5B7+#;Zn{fvn3KSpoLPS=cw<ic^4#ck7t+jX679$dMSFML}S1p{etM(igTey!Sg>8XZ-B)|>`|7@0FqF8q*uc>}1| +C;9cwF{9_SJ5!wXZfTOxstxm-p4ed)Zdrt_rJb*?NcFsq7`*R|`AFZOWc>d~z^OZKrwki?%)&;v_uW-l!J +gdByt8tQz9$ze60MQECzpf=0^|`EMtU4|3i7Zg7m~>99=R}-#qjQ05UlR5eNNQiId;cXf3`KM{$%HT& +A%*dZn(Q3mn1;-=!HWqt7YLNN>{<}7_66$-DW3w3mkrTv+(o2%)R=KS*WvwcP@4izKumtgg@3M+Bw!b +60-W5HV>;(&sr}oyzmF_0YmAJR!p~OyJ4;EcXRpUm6FXD4Xawn9(S`pII00v+{$JlId_LtQ}BW6zSzE +M+Kzp(@NI3uYLS7IKCVK~`m%1Wj-9b58Kv#GG`9?A>+{aoe!Qo;qqDX%R_Z%r-{#d@f%~4xaK4 +GV#$MU0_F;-&b312b5$UUSAezZX73dznafYnFSbwOJJ!sUr`ek2U72E=tU7Tn# +rd-xyC`AK)z(TC1Qn2i@%mQVtxkF-?B)hu-Ehl7qh_MI;kNHpj1Rzr>&RV&pP+;_&Bd3kfP4!kP*o(js88lSL +kIKxeXV09mwr3{?sD?Alv~1izpQ(HiF4sz+pj(>fk!IKyK&X`LanN=+&w&xe7jkAH=HW1oK*f6ltbeA +J5G9W0~`BNR$y~&Lp8g4l()gTzS^5lxhIbHY^J`M)lB3i*xYLSaKt{E*6|d_=xOV0uPndS*t)DUk5F3 +iR#?1A-ZXkbZbT^i7HEF<73`T4p*ogZq&C0l^$Pac_EfE|6!{jUQ{GyQnlxD75z6})YDWHT{uZt!)eN +%Q3QOirvu{*cu@q%+a|2lnOLSTTjLQ@kF2qazE@!20Gp%N~_48*}YfrgxVQow~45OLDNh2;XZk+9<@= +p21j7NDJH2{_GlS~`?4%PPB;zi89QzOcHyGGPCTswWf7T5B(pd#X}wy-FlOhLDl-NxCud0*tRkad6p- +0aGQ#qZ*x!)1xgf7Twb(-szYQ(^IiI#q17>UONr2%oI&wEb?qMSQ!?B3iy>5z`2^5bPx|k$ceF7NMTE +>FTqmZONs>o%Yywb`}++%I?W-WG@}}m|YaPdhh7LcUOz@GHn)F8;vart+a=F#l=!5LlH9wjYD!=z;0V +J<*fyJSIWNI{&{%>@2agD$s0}hEG5j|@3uA9PZzT`j8;}*g1G!p{f8(~Vq=InzKJ0ZeagocsH^@bepN +K_B(^S9UbVGT!WO7K;U3jE?64nIdzmHF%XHIv%x2A>o5P_fldxh59q@F-zZ`b@&)M +JiT=1i~EV{TXDnAFeJy{<)}UlolxS>9S%^^hZl*B(;0CNRo1yO>|u$DC9e5HeV9rMx@cv7S}EE}JhBQ +lc=bZ;$dQ3c{iCP4dG%J$482F_q=b=*6`-s0Do@Csf+@Admb6S5f3tz1tEjGATDX5W*^016OY1Ub}{? +g*sE^-(0)QnEKsL)bF;`wE%^$m`5is&Q#cs8{|%zgz@`&Pp@aJa#N;uU}wizr9o!R^ExkP7|-jZZrzS +W7H{v|fzGA^%*DnkpJr$$e^NwyGpZxnl2J3FH|mMV$yD$>N3_@wQJx_pYpsY9uZifQ#Wl}5kry*xNOQ +v-WYNk7PhGWi=L7T0C;CbMITdq#<#5-TH`yC3iX3!dp@+Sxc8q9KV&R|*vC+!lSF|Al>z-i&b1G&ZPR +3Pq=KP_qS7$b{H^naLBB%TY&gD&T3_b-&@#NbT^g^B(k3z2Qz}n;Fx7XioY}+7#jhK$5a9*4xIB3+`( +to0t)vNz)xYx!bV24#*x8zrX?K;}N_qQkWzIXqzEo`@`o*I}oH6>rhdv9>h-+s_-+SDLg!BjjSd@~0d +<`=%st2UkHcJ`0*nr-&`*ngsj>GAEOh+iXP(;CVwSM~J7!V>b0RZ?C793g +_Wf^7npqNa^*N=EKB7>2I0A6;*DV5*=GKxCQsb*@X!U3q@-&0qJ8#bnYsutFXhLs~&Rj0f%2`Br6df1 +~X>_u2(VA|{&)ESy?T`NY^qwvuC88_~l^NeG${JU|9t(!fPZ^`!b`}oo?q;7#Hw_?vGd!|Q0pxdj!{I*kq3vkz7 +Jgrn&4X;7myVOJbzIo@*^k=4Ksxts_Y%pbb0s5VaFno#+Ra@1_WaYirHZ@tE^U!!vMJYzAjk_pX8ic# +$AX_|{M?71tl}alx?#4%g&$k*vTrX{T&<>Z7ixA8zBt?~%yu#Vw8`4ezTNN3(jT0y9!0H-!(Ah6mH8) +KtPK{n4hpkf89#Q1{n({1^LKdp9Q7+1Wj~sK8sD6PB5YSm%MpfRa=qJDc~99G;&56c*>WbXWW;K3$If +p)&v0%NoKvVQUc*<3RM-Qf9InZl1#3%y5b|oKtPZk$yMZ5Blt}xurReEpO~sQn=T&yreipI9 +0D2;QjUG-f?`$-2+?otx8_@1|%FaaXP?lSTWd|PZ^*OpV@c$xFJkwrSqj@h^P9!yh3eDT1dN7q&~WmNeIB<;CZD-zaus^5q^4m09s<0kEODrO(x9Wq(6lNQ?ws@4}JOKjnA9X3gqV +y+3;4HftOue<5HO@d3*hw6VJQ`_)NNDqv+)-eGmtRwwOlKp2m^S;B +%m7pNNt%`najg)?rBdgeDmu==s?2Godd0PDfc3FEV4{xJyd~yNK@h>cy6{oaji*>lNBv;1+`&@Avr@y +U|L=k%wciGyexhe_I5v8jtIBM(hB42-IzpXia8p@y4RIS^JeC>SV0wMpl4>p`s9g#(IDwLsDnTUX^rp +13?MWCOl02}*@`@ApvDI@OX6A7?PkheZjom$isEvu8?MNlv!&3SwbcEUz(p|o6fL@PHx=itdb^nrKDY +Tx3NVK&FLif6ewukhPj>^h8UPO2zec3k?R?cPgAI_()5CtGG|*Pi7^U69Ixxq77*r+hFG*UZ=|txXa4 +n-h7b;y9u%^g`Kj&@$Y0SW#0#-@k$FJXYMuKvVv3lnB>2?d%87=X5j*`sx`|=0i4$)<&4malUk-c$jm +*ZqwpIigAz{#{+!5ovRkdo)zkDt6ipo1f)8qs@U_LqGm_P(AHY7Z#0aQ83!+R@-fSXy{Efs@P7UUfS83F4WG{S=YL9ZJQ>Pr)AB$yH!jqt{HH`x< +!v7J|tF&_zj1`E4&%5Xv~jjYscYybUwNi*V*mqv=3*bUzXM&>@k_+ +I8f`i9I4N2kb9Jh`yo4)lvcva5uu*1UxlkAH54Ah%78EVxMU?}Hjepsvo%)w&DOVm<{y+)=*zbR{GK~ +)HYJ;Le@u0==SQ6g{cw0wK?sD2Tm$Y`r%ci*YV|tWu;oRe6`i&hjk$n{jN6sZAJn5)PCQt>WTdD8;o8 +Y|A^$4HhI2(@ctfm$NcWsKCiMj$zsvHYUe}?`PO#oz+(Mn>X{2i1E(aF{c{`WHnKsRGHEk_X2UU(#&i +kG3)rcmO9IQjg#BRde%y6X+zSITc5Fj3gn9m$`^4$7br)werzS +6m?Y04}^vOitdL|yH>%RSXSy}k*2%sCd-@&3se>S{IKYmGu +xJI8Z#(A)QHGGpChmquq6xm&w7DzSFT-{q9Q+iAe}*$oDKJHy%ey8*k&wu5ZD2As4t#+lnk{PqqwX>E +vpj?8wx^o6~2JTy&Sw&g{t5C#u=mp*CiB7hAw7TQDx|hUTU#V-Fn!9|@`mysil0O%O?NFM;(6Ca{HgieN3l27>JbhY5}o{7T?V`bjGSUxI-I5d^UW_YtHM%q3V +#@D#yXf(-<_2u>1QA@CwRyAW6iq6v}-@(7j?g#DrN)Rl0nB$`iGs_$#be2k!gAe-PFf?bu@=EZlNEuu +KuA}kXuqStndxU0b8_;&Imi+Hk&<=Q~>G;Z?qB$ya?j3NlDAUGpLaAtPs%v5W1cIM=yoE#yhiX1UnWQ +uH&M1MU+qDZGdA-Yj7F^^y}{gF2@MvN9iMGw*6VDByZiAWL3>5UP?MYsqSBSZ+h+)clu$Sst7_=!6y< +`A+)vfrWUIYYCPl3>OpSz{B@ZEPQAum`25XHJISY+(}_!YWb;(IVrnpCl82U5% +QNP9zX2Zp>I=+xxQK%>p#6If!j%O6n=}T1jv1$lIzd0PsB;xrja!I5(vgvDvm_lzEY^aAR`@%qZqdWrI7cUGT)Z9^zysiSZF#*@-1Rr}Zw6C%{c=`Udj0-JdXUn +@znNZNM|xSDQ;2su`Ol_MHjbmNlB1W!>KOI-`uq+2<2lwOF_SUxrAd_fhMd!L@mlVW(IH2%LMFEvw2WPT@TvF +q_xmqYM0ljWfs*P|)i=Afh}Ie4o|!?oqn*N{IqjvsueGKf5z%J0@1`1u<0=f>krpx-IvLys}%8u|4#) +Yr+J2Wsh2TbwLVe}3d#}nuRH4v>Yv%+GE4gt?B0vrdu +cADld}dasC8A%5H7{4-h~p1XEVOJ^Lx- +^l{K^P%*866-0|JdfbkyV^y?SI1GuOUFmYK~GyxS50S@BW*ohJxx6w#FM}+MmEGf +!nAmF;ClXEB9z+n5G&yPNq$JMV;hEDN_7Rh0zIhtEsQesAu_A=V0+M ++Tu*dfNInF&^eML76}Kls6S;pFV%>ej&BqhX`Qo=uvXyqewAyhY2KZ)w%KP1|<2-qzmSp<^fS&Rx28y +ZsKI?mc?;^6h=6U!T7H?&|M9AYkC2!GV^bA;BS`Lx+WhN8BA5HGD+$$Wbw)$Hc~s9e2<82@~&)zb|3Z +=u;%|X`~L?#*XC);f42lURsY@SQ$qrrs{fpC@UL0|{;Pj~MnC>q(4Xp*Wa8tdFu4HX +U=~2y;Al=`Hw&Se6He`U(a9o?c$}%%U6D{`s1qnFE<4BSM)d35d5d<|4*m?Z*Pd}|NcLM|8CUXX{^waX|Na>uRS +K-jWvGs#BW#MGi>SUsugFvH^8K{mvCty8aR8ohK7c^;pyv3eH(Z-_m3Xy?ji2-^^J>mr{>1YBzoMJav +wcH%*>iej|ce>?!v=^3=jHq*ZI&OFYlqed3lt8%R_k&&ChG$=0+(L78X*5`TFKX=Pe}P-MaRVj?1I)l +t^?m4w^D|%UhU7p#&w9l9J-#;XX4fYerU9jrcJmFq{B$23W^vBS!k&*)uVnl;~={j82`JlxedD)!`P0 +zJWT*kzS+!sE<=d(ie4%D@E&*4Nb5nq?<#tvoo{JsTtuEb^2{{-NzS8%DT}B~yq1jnC +24=eZVJ^l3(O2+W`0iO8H}o=j0g#>~l#EW4#vi=KI!Eh&3eYQ~iMzUL%at%lEHYQp_^&9NpDM^ZD09j +Q#R?xFfS@w_e%!Wc(Vc6L2}@QkTrG;gvtYGq|NbqrxL_Y`x4I&-3r)N~b{DP#_r7!6SELQKxgux4kbn +^O`p64R5iuc5CxPp2eVDN9qW=E<3fN#@LCbCy2W)sx5Y)c$xcPBWX#Nt|*oZR841=*%oC=xS`L6i{4K +r&7vhk_4nmJnY(&opH=aNwp^BWF<^aGAATkiGr@ZY&qGzCZ%TdO3Ik +tRS#H8{;FjYDUrw2?97a*Nf}m0LN(G#%AT5nbynEJ$4t*Be0o<~D8j)5 +CZIjdnGj2vI%@*8xoB8(Cgh|}%}P&-PuJ?}35lsW)(JDHwa7}GWK6?1gzD0vLL7diZXB?Q2j(Z5slO+ ++x77GvQtSKO9WB=lzp(rDzrWM_`rmi>)%?DvcKm%U4jOj$vD6#Sqy4X+PJ;p0{~i`l^ZVgi-`5VT`F) +|`d*i_t(SGpt!}|wcKmGi$n%|EZzMr6P-`4tGJD(0j)E^$^{K#tFEi>3_`wJOf{VjTU{rtWVU4MGdjI +xL~M_r%ZzGG{CKTzwt`-JO^pJMsA5mh$jZO7MH2*IwI4}4 +F-cIoqZ6ztabg<18GB%)^{TxxG06!_iXu}dWn%<>tq6wxoTPW>gvdh3FjgK7;fW^KxP(;e(9G-@YSPn +_)Yw92ikn4HPEP8S3@wJynbk>&d!2@I1X^E(Vm|@AK}awuAdan;dhP8Na* +f$QZdCP%9d_T9Wu+BG&(abH8CkTB_Uf(Mm#Z4QfyfW7AFefGMaP)l`Z0Njb2Ag)RRh7LnW$2Q_eeUeO +2xlkp|(c^>>336SEoL1>lh(#6XwG%!EXZrxfFPPzg##&&o;?J>WYyGb1N6Jt^3lovwz;7E$bO%g!c6C +L}eRkRjb84l{wl>6tl6TI6?!jv5{ssrLjkH2l>Lb13zb{hXtdlJ2kOa2FRXpTaY;Y}Rnbub*>tW{x2j +CIUal>q{aeDTn$Dv$S6Ln3&K}dU|#N#*HGiXgX(23@KA_BGf6ynoa-V6xRUuL83T`#ZbhAMaBh1hjZ{ +&)%mJYL*Msd)(4rNnVLcBsyO5vmXwgi%iP3%wyR6peiotl9!x!_)X53yF~lC0Lw}dZq=e~7*SM#uxtL +AT39eI0M_tEcsJ)=X(3z8yvfz(sK%!y|cwhf#m++jBq)E0ZQLk}u*7PwMq*y14BgD(}BjWfWn?$%qB*k-#-#XmyuS4M&yXajvcE_#m2JTVqkVZ|0^~MWZtv^^<%ifgizRzjjx}j2hI)c>xMm@ncv!0q;1DN1QRRi?Oo)%!J}ODg^ruzXQf +naM<)k2@A-3dX>T^)*L>$+!$jly^gt^xwy)+~W64k7P>?8+|oL(OcYeQRv^cC!{1rb&y}OLN0|uA4M~dk4+ +Eul63Ky$5UW(OQ^MntP09#%b}7)6!1Y+@}h`v*TF9gEe5;8mk(|K+*#b0!<@B3f%U*Grtj~n|L-!OJ^z=BLbMy{Th6W?tEqvzZ~mjOK7t7ZV+lqRL=!| +3gb{=gSP1$PbSLm8Xs7vaLEuT?N>KTYMN|-+Avi|x3Bh54odoL$RueRIt!|T^rT51O784W@%qFlBq!U +aah$I+D(2bx4fh*$w+9DK!lLW^I4ioGlC?R-(6)f)@y$B3Me0N03f%AHitNe;C0)g6;&Z2s{Wbd` +0mR93wbP@BzVN1bGB_{#|XUwNcPN`tBsI#TEAu=}+`2qVX){_4gJrlfs^C93)16YvJ}euaWrw_W85*Z +O*kG7wyr*gRi5AkNRVFd$hGN{@VSyo*MX4-bAR68CgUa65%hkG*p=GEbjbf2oj9nU(002$p&>Ty3@kNe4b+$-vFHx?G7yH`E#=6c+H>u^UKWFhzHAx= +Ue^NhBLu79YLz-4p#`+Y;5#9EK)caITHBE_xxJ!>?5?_B-f>H&K9s(vq7ME+f?-@85R#Cuot_oeiXdu +;Ugryg+<_ZZUeCe(heg|XIG`qlmP?AcQc8#YYD#l?x#)Kp=!+0+cp%cK81@zhgKiI-n~S-ku1yP~9|M +121F=i=(st3s;+^4K%I;3h!o&^~-1&r_Io&zNzDUk}N1Re7FOGiJ=54G-t!fvQ9Dz$N;;o8CR>zu4g=I=9RS9ttLf#ojkea0b=N`y~Nu2SD~;s3y)C632f6>8tOQzLfSum?VW8@T)p>`2@XP#COJje$}D_RR=C24!mC-H6f +flRHak=^zQb--WIn%d*Bd}kPQBK9D8G4^K)w77SnSce-z%?Eb_o1^064~@~C>{>E8WS5By&F(V^8HUq +8Tp0p$K;&_G#9!Feo!@ISa}^nuE%LwP0a|B#e_jM-LM#h>Ay_*?dDrR2}de?+0EpW&a+BRQsi=J**mP +fd;&YLEI^RJAY3J?WAcNFvbQ04@Yhc|xtI>H#OspD|ouJ&;Qv^Mn(D3xPX>#DiH6%1z1JMDDh8+mi3 +k6uFc|$=jsN-Bun?l5l_S&%ecQB1`UbXU9wVd-9yUXUB{gvn@HY&ue7H-ybn;gp?cO<=mpK+s2QH7rA +oPwvA&D-@8i?f3B22UAnYRuoOQi#N77nrI&kqDO@xV*8$y+y9OqePvDV-`Q%YQlj!N(xwG)`@e#hhzG +BdzK_Vz9NQ8%nGw()@94TUBW5u{}?6UE%bp<>FEDIzT`O-!9SRb*#pbNw-A&K$AQ7ARhOV32rwZ +h*+25-JwoA1ofr3=+>|Tg3bG28cKE!o}0`CW*~YWrMc_^;`tFlr;6W)S +d?ZEiCsN#fT#At=q{tx{b6Se=-%Bz1q!g2Wlw#hzd7`MONGw~nOg#DIlVbVu<>J|ApA|2>@Pb&gW)0` +>x^?Ts#*G`fF8knv55&%{zDq}W&?#fKk$DE98%D?a+@BXQ)&5%I||-FQSELKtkg|jdmlFo5obwn^FNb%bUa?*;|a4BgHH^O* +|!+iH-6t@rgX5*QcTdh3`n=eJT7P3Li<~$5Hqx6n>^`CKgfnXDR%f6uyMQe@x-e7{Yg<@D>Vx4~4f<_ +$3tn6$-zd!XKgV$0+L5w6qu!hDSQ-#r?@IoDf}!7zlg%Gpz!~q@TC;~V+w!P5T4q#Xe!ECq^vA +$Na3kpafs@l3Q~ro`6eL;Q}_uK{s9XAB!%BZ;Xg5i7fnU9xP{7W2hy2*sMz)she+}(M7WU6?h&$gmXI +SK5^~zJLM~e`2yg&$1e$5Qxd6n-&SJ^Y4jvLT +B#7q;MC2XaI(v8Q*kzdGYtWF0@bHk3h~U7$ppf_;-MV(|>^*E)Cq0IcaQaOD;baL3iTAl39)=AwYu_W +Hf$pmnQTZn@dh)3aS9Qo#2peklGnH9W+F4fq}$8WkQ95 +fvKMzJ>?--t`WSe@IkFL}*k<)X>}7wA4J{`|aI&L<%+jU`|5kTKqtG(D=vk_YR067Dt6fL@^PZg3f=! +KR%?l1t>&N9BqaUZQi^&d2oD>@7EyS(kqk_7*5}B8#CzP*+-FE|FIT5V!?h3KRd|SFgd#lNzn53T22M`R!U#j47!?snf>ixI=&r +uLehpnbZVIQ5!9z%v`}7G8uKpe$KO|^GKvQ?Oeq;@fN9^Gt)#=9v!^?<(CeH2_d=CyJag7kw-@zXeFi +YcRO-IBBM+F9utO;R^Uwy*7n)ycs5g)@1pAmlue=@Sp*;K +8uK&PgJeXQkLXan(_iqk|I&^&**cxbwHiET%HK5rO#boPtol^rZL +%nudoo}Mf2+Cw@8)pKE=OA&io)fr}z`NR`Xh-aR8Myyz|Labc5QmkIRnstS@-+r6*!S~*Kk9CDlOI{Y +wkiM~wbcLNecZ!1t53+7>=JW}1`t)gW=FAyUUS2MK{P9Qe>o4b6H~8(h-^3q({2`WIlHx6TKk~bwp6! +K=D|b;tN9A(qWNPSUQA77IHFPhDW^#k*Ew_r1a*voMkBVjTEAf^*OYL`sAv`sR(XA*vHMUE;Q}})q-a +_FcDExQ|KaIjKpztdw{CWz%m%>-KbN{QS{I8z!f2*F-Mymtbv}warHm!NIv`wqdy?XV+(X?&MZQ8VI) +8UTxUQL_cMsn7=W4F$oyLRr?%*%9p6MApcp;OncS$~p>wxh +jT?2lO>;1tyWP>t!^5*1g}MEvrcK(ky5){ujXgXXHFR_HyxnAK#9rLTUd-36XK&!qmxeSjfSZ=;f5-E8rdNP3mSVJQ-@ZMV3c +z;BE)5$tq?&~f?;H}^YhO?A4l!Z`{&M``|jtTfBv4@p3^`5^ +wU`~Ph7Zg;T-i#&wTaOS8wg!z1!~OeuNj}zi; +0@`R=>#O2SXR^Ugbr_t~>&<#*qGCl4P!ERP&H!u}A3bOgAcp)k+C_10T+HgDcMhg7!E{QUe8Sy@>jOO +`B&CcPTCVVRN7Ew|j_S5#DV&z*PP3Es5|2?^gN?=g*&)q{}Sp)TvWn;^C4Xe)vI_l$1F5eCW_2` +NbDsFrJh@j63WnPo9)te)%Q8gC-qF=V6m%?!qs>{8CAB_dCU@T)A>Z{`%{$=Rf`Q(|5o9_S+Mb)@Ar3 +Iv=I-)|YTtg0O!Tf6}LrmIHvl4xm8?rk5(9SCO!P@X%$=nnWh`0v=UV=?7pN0NyG(6D{ +`cE%s_as2pk&Vy5@PVqZ%M46y6%;wRfM;TBykRLFSZzwwmvw#17#vge|h8ix(v|LoEOO`}gkxIR*g#k3RZHzW@IFlJZ=V&dg;P{6~K5-Mg0oxbNAshs(;bW5?JI8c+v7-c +U}EN5E~<&r&8Gmoo66lzsL}+3Q2xxh`eT5-CURlk(NGQvP=F;!!Fq?fwe>Teogq=I!m>mvs0gR9_-Lm +qUDepQUrQaT+VW*UL5Di_n +NZIi{DVKaDWmQ$xvwsDDs_Pv9{B_XtLWjRoPEZaYFLB>UIqaB}!JiWUK?CJMzx`6)Ni<}9F6G54DU** +#>ATf2HE~1uU%GS&vb@;O&#xoNLIG%?e7J@d-~u@Uj&;!izJuq;BghTpAN4Nv*%+Y_g#X=Nsx%DwM9R +U0>j0vmFUd{TF%|#Rqf&Z*pq7an#h=;?sn`FIe`=2;pmv_~2#0#c_ +{5%}G71{LmNJ}Z2qhZU{UmSX`Gw%=`tZMe`Ld*TrUrlp9dtVC%9Fb2`2F|a<&k$+$ThPgZC4P)$-iq1GP+3jeDRz{3)Lo_vzE8Bh}{xz#no_n-0i +5sET^)rEh@jvXEHPi;Kf`D^k6E#QxOa +^t)p`R0QG@>QZ?4biaDs^X7pG43lT8Wbtx&Z^}ZbyCEa)#Vv9=;awS=;ax8Qn&XxnoG6uM>#|LLVA`1 +K!Xmo>8PuW=(OP3oa-;w&mJJ(d>}x+GLvYSK1lvn@q_&Qib_K~(J=mdqQOv}Bee1ybX2XA`hTRh&w8E +Im1yYnex3Ca<4^ki;=Xo#(z2;Ra`F8`Jp5dOEX}`5elU+{ptA5 +b(eN*=JflupX&Wq8WDk~4Wd+K|GA#1p^dM;`8Xh7V<`WHbhz2~hb&PwD)?NPqf06~3f0FA0(DKkj56R +bGf1T;M5ju2Q5LP+zw%lHDmn+W(UeAvn=vaqG1Wqu!v|VBsrRw#P^ez-VTZp-g4-`C3XdP8|$t`{_YpoKCO}G)c!6TIdWt~Mn=Xy;EM8yGB9`UT&BS&Uw@V-Fj1yz_p$1F +KHvGKL&rdQF4oF(t>?P>5Aa9chlPb9ALJ{qyu!K{beW=}A~}8fbO#OBqvLvcf(LcdhPgLTo{5G!>Y4h +U*5K39rAtex?v!1-c9rq*@p8?YH4^P|PEL-rTCH;N;>BF9zyA7bu6Ljd)kO>NM%#e83c3*VQS=A!pgb +RX$tJ6=P=909bVqsCb&Ta&d0t9o;m`2@;DZlLr0a~<@$b>2N5ACc@mg%{d?dG8qgM?ozUq(9|km_K7|~jEkqhS?IH5xmx2F9xo`FKY8_*`s$-x$qfUByW +)#r>)Be}Mfdh-8qN3(Oen{4rQNO?M#*G_ar!p+*o18gwrlc|<@qYK+ce9T0;fEixJOFp#iagTgO3x3_ +2iZeE2YMay0_6c^n#(iggRwlnQmZ^4*!(>7z-Mkmc>MkSA6veBIgf)NZLKWJyu3Wz!znv;>LhQ!{dP& +ZHRA$2P&SMJ8g!^l3ji{u$Bnx6qZO0n2Za`DpH&?L?elAMg5~B%r^qk&Z;}^(`|T*@_YIFfJoVI5vY? +>g{IX@se`z+;NATF=Gbj1KJFIY)7X9_yT`@%olwFm?#e@BPb8G% +RAa^W8VY)XYm)u-%z$7|0GK*=gph<3Cd|iM1-6@dp73-XaN30h76Ho$Bt!p>fWY3;GIUn#HVQSM ++mu%@}LpLEus1G1lsE?6%`uGOngz2^$oxfoGiSEVy`t|EbJS;$Y-m+y2(*XWp+>pu#(~yvmAR{9qS+- +WMUd{M}*Wfwqz#HWN^$*;kn?in|Yoi>X44_OPUev*a`&EjkpjE3@7RvV*ckbM&2zAcK{YLRex<>s+=P +LmHMc_kuD@nJ&s$wn=l;4u%jb#9B6nLzM(Z>@}kAkPD|JScyFW-FgO>P7K^{;<%IPjYIq)^>9k=n@Fg +!^`KTOibVj~ku8Vf_vI59)s^k4x~5@&*&QAiq&&Nlsapm^yVT*R536xqU-j1NqkF5aj^n5_tkSK^~w^ +HtIvLBVObY@&oNT(TkmRs5jki5O)XuMp-q=uu-;w8|Z=zp)4#|us~9s#qG550d6`V4C)!wMR*`T=o0~ +eJLr1;`R6gl_=2;u^Iyf?fxoW*6Tb^UgI+JzMF;qeI*8hC?k7N|(AL&5rqB2zZ*(03^E!}w$P##tGV~ +M{^Z#|e*TCN>|EMEsx3RTpfr&Bp2@@vBC!c(h<=e=29pDeL1X;&B+5q6L&ySE^yW+oqJL7Nc|5Dqt1a +gTs2z2P<{ir`s*P%T!(gEIX+O$bN{q)l;&w3dKfNp(k9(ohrAv5~?0o9o=ySTXgS8#XWZ)_KhI*d`bx +n7``yFl-MU5^%h%u}DgL*Bp*`Jm6qAs{~wG +XE88kxHNsg|Pj-XIppg7xc{OmxjFUnHR;VV~{$bNaGo +3V3{6nTwt@sV;=4ochKY@R)W=hp`(o7f4bk|IiX13SNK+Vk6OsSeqFl+AHF^j+PV119f25#ayx+2E=2 +=)?Otkqw{J7!dBj|bNGAgxxU`}$IwACZ)lG?MiF5UTUB3>(YNpmVnr202CCUsp;w{j`)}pQ&?f7z@Un +!ks&$oN!Re&wgcGu7?9?ZRh6Zb{F;Srcs%$M14j&=WkTsmQlU*Bh^dCNk4y)blWu2fw707H$g|zH_lB +tqt26IEEMy60oqvZC+DR+^ox{%J30NIuao|*REMvkG%Jns>H1m|ef(V0`L7b3r#km2)tm1jV$7Lhz7g +|Wm|ww|IL2Z>y&&b`UvFrxw>|3V`Sa%|JoeaQvA_Yk6Z#KmA5pKPEka!lT^4!@zQK-Xyiz@1h&dk2cV +bK%^E()m#~jhEXFnKLK +NINz=7voN7szd1LU#}YA~i*ZC_`j~sg{Bc|@d9-MAG??qd924ZxXNy`t=;=fMG0v6No__}}c-Cq26RW +1H)}PK9{% +}RgY{F&G5p}K&Wdie^#`K|A%$hYTBR4lU%{cc8958MIUf{v_I_8?*(B}Iv&xG+%$Rp;MFt?Gf%`eTKt +iluXQyB-A$HUcg-?h`PJr`Vi4jB1gx*(9}yD(RTF-?q(>+*pN&OXM1LRpIp_v1-~r5!SEcg2A?B+vuKJobw*9;|zko7<`4P+&<|TzVc!0-PM`P~RDE}y +14?OTd2G##*`uqU;1?by>C#ZYCiwnvZa^IuTJWqh}>2=!p`f5X&z&w*(n`07&4@~` +*LP!6H<8|PV!b9dm=pUoK^-Tp70W5HZq0pT!Ln`<;Y*VKPV-)^@jJonslv6vfzJ`Ozeezm@C5O{zWsE +_as59V**e4x5a)FqDwS*x@DhmJja_Uw!W3l>ZTA0B@AVXpU3@1pHP{SR3HKOl=p+c@X+^XX6IPp3blG +Eqw&(}NsyW!Fm|Z3@OYFs2J0qklzZ(J_`@doE1R8|1}@%c5n)nNQ@oZ$GP+M{Bh_J~MY5lCQJ<)TH4xPJ$n^twQ=E0I6o&3WaxJh<|H`EGs?uLaQM@x@s~<@(37Wcit|q^w8 +(89aEfpT%OC1v=)=otrsn(xlzKzP|GQ`|sy*;3Z3z@Ysdk_W{pgg8%y3M)0F{n~Vo>lE05hwyvxH_2| +)K43&HC2coUVybR`+NY9ev$B$>a>lT5)FliI2)#LovQuIH(L{*zF*Z2Z~NULWH}9MJ8+Z;a(a1~Hb7c@2~g<2(ZL0QCaG0T=KB^)~8E +;JIzvwui-y%~5dqU%Ys6!pfB^WA#2a@)j@X&SOx88b7u2`{x$BI!mV$4aOQ~aB0bNWa}Z+{_6pj +X$yQTFtCN#Fn(!yE_3pEhsatgjRNyJiEgueX!TW>u&!eSP0Z9)q8M{`n0rzWCxrs-u2hvu4dBFTM0q +je6(x*Iz$Jab&*w>Z|Ndeq2|rS{44n3omSa9Gs08|Umdi3#-EgwjcS8RW{a5rA&{y%LzS45S3v;dLlLL3iKhk|=ZaC{W=c +y0&%mprXy&e4q^quA;4dXOoPDr_y +`0~s%&#*p-H6oZ-Lta8&YU|>MOV_d9KWDN-=LWGG!9QvjxZc8?9M%u$Z7H6&<_?xWoIJ|>L?5a!mD6| +Jpaa=MT@N`$UXB_yig}898hQE6_7~;)`NMeq=Zcwk%YE;?jPM)v@LRWTWnE2QkAr#}Iv4T-^{EjT*wL +07}6A(a%QPy>sWz8e#Fwb$>m`i$ +J(&Ag%+tA9oE*aCZ{!!ff{9)1Ghwn-fmr>1!?mr}5$qXRo;mUthI$!pUoHnol#Iy +VgMSY35Vc+=Yh=)V){{BjV{7w}<|p_O3lDt163MlvdhH#x!-55fNQ!8s~8z=bqOEL_ho&e4fP0P2z(BgS0a!8cy=GW2tRHc5UPWH2~fI80-_|KfBQq{awi5VR>UrWje!ekN#>1!reD7Slme_|91#$V-_oV~o*8=mH1kIHNnrI^ +TD)&kULE>of&)%Y#0Gze(m`pW!hZt`=Y5pbQscw7*FH7{7JsBDvVO**}n9oBlNfV-?}!Q0%u4`W&P`S +vcbyi|ct-$w@|UXrBt7bN!ZKWTpTnVJmV$!(zkug==9p_(4WLsQ(wdn6KN&b8_;|>2}_};IHbK5N5+R +(tQ5S2_QckH2Cdf7XISX{=c5T6wP14GTHaXF(9w#7d$Nd5D@S56mts;8~%9o2TR0n1ZZeUQQrXJSI>S$}0@2SbQ^z)z@ +AX6C;a@riFYCn%^jmo_!9U3|MlKw{Lgfi@fVDSa~XdgPo0*SmYAG8b +i^$g8So*zcWF%xzUU^DfYQ)7GyzRUCFnjh7d?trqD|-&>WoL>VmuE&hd1E&a207K?dhGg +n%2_|^bkEt&(J~Ua5KZqGH03d%yRQ#v({W`Hkgg(o91rwTQknO-y(L7{knaFgB|50IT=otlk1c^WzOT +y3a8F_*E!@|#dQcu!T^q+L8 +Uasr(OM0XB1D3HBs#Mg7GVu=l3H}auCu2w+xt}a2$4L)r(c9>~bTwT^Kc+486csQw3(PgCTkLnuzj9#PH=~wj|dWZf%AJCubWBR0y^rF1ZULUW&hdkR$_0qlZUigoT$>4iE@ojhtF2 +^mnGjT`~DIxR83*_&liR>nyk(1;{ayt#u#k7{bM~~1XvxgODN$U=4jrBg@`jy?yiE;V^cIm!1Ep!$;t +DIMzt>8@uoJf|;s@QtAg`ET+igY`=UEChvN7&7DbKIc&lKZlI+&$?U{0e>z{~hniOZfuuq%NYbutbtb +5xF8LW{FZ!CYFfD#B#AptP`8Sv)&fFM6>u@d@D|hwz7}pGE>&br)87eC7Z#|u2M*?QtztWs)O#LGj)! +ht?$M(6?Y}kB%TZ>StOV2C0_xegXvhBOX +tvqw1O_9JLrCToc1x3%)gkM%umd3Ovh5zEmpJD%|>>O^Stw=)9SQgQLG#5&F*01Sw4G^m9r<=8|(*0+ +`)k34!1jB$XD_|i2g!}kz$f40^Ak@UT=thiuc8b;t+UMH<={UWv+Ztwo${>GL;2*TtH=JjS +T^R(I1>TeCVs;wIw&-uVfaBp!(^L*Y$P_bSHRf!s)g?>SA)|K9}@OCnWg#I;}jn<%DC<^*nK^njhzkv +CaOf$_}t!!(aRl#<;9mMV8UQr_!sN-I%ciIapKHpzRM51=+8We>D?nL^Mhsh3dki^k=&~X?YO{dalDK +oXX)T*_fwT@Y5EXPi?=h%zvrFNbDq8(y$Ss7cxma@lLd$)solbh~7;jVT!yC1nn-BWH`el_pH6L<>$x +0ogm$Zusw6{j3ER4q^|mEmvJ+!S8#f+y@n29Ck~aU#U21=uE=NH02&K1DavZS;FO%$#jjnva<)%sR6k +qV!(#j2R6x>qcvUg)GxzFvk+Cg;s@CX;lG&ZR~698|`@8w3#jKvGzQBgWYIvwYS;Z?IwGty~l30`#J+ +0plV);+7_=jeqc%;Uf222A7`(RFDzm!Vv+QWdFay~b_8g1mC-|G9Ra +_@W%AmYjDHTxrReRk}->viXn6ojz!SMOpyC8*@qYY?3Izf+^_t{(QBX$R;g^d&AMGp9M5WIRi`1Mh7T +6C6F7RsfvmwHgusV(Y|xV8~oorIO)CcOIYEiZh4|15hxeQm}N?e7jaUHJ5k&uHri5?< +O3=pP}B3Y!0QQ|H!LF9{KFqbA&q1^ISlzFiVmQNrqL-7KN@HgZKkcXD_E0ZmY7xkGBCnlR~RrGe(q7pR*IEsmAEB*HpJSwd_ +FJZ6}*yH@oHYfYk3{7=M8)c!Jc4cm4Z*nhWX>)XJX<{#THZ( +0^a&0bUcxCLp3w)H-nLmEscV?2ANdn}`ok@bUlR>ON0!gdQo8Tn@t4osFuHF6!pxX(cHC$Sv)g-v>4y +Nrgkd_vAH=wnfOm!D)Xr0~&(A^Evi-6k8wlx856JiwvB!hVv +n|9A5G#QE>Y>$lGTtNh+|ey_~i^~Nz=vp&A}{5R$GV{d#@zAt}6J%{A`nufK0mJ_SOU)?CgouL%rnfc +n9*t@f$P^9UTW{WSNf`yuV*IR=BrYO?LH@w${Na24XeidhRMNIj*zBQI9b{YRX=2rB+Ul)JHn-*P6tH +bqPT@0jI67=c9ND*Rxo-XR%fi+X6>Y`M$yx6OWVSVEC*KEFP>ti|t2eI}; +>DnXDR$!eur?;0fq&PiWTI*wU!dT0TxaQt>3XiYS0$8nyw^;8Lh=vwVHB8DgjJ~txm4al<$c`E^S|Ujk+fUz^a5H4A;{h+ +EVh(L{HFXo;-K7w1sNP$8P&8Zl)_ettBgKL23G8sS`$FK{n-FP0PvqYT$FE4;+N$`*0X<`8wfuCorlApa0S=SK(J+v_uN(TO#%O9k<+xU!~B`6-J|VYxHZEpy}r1+l?m+ +(<`35DyQMZ}2AVz!xCK+h@wNEn=hp*%e#WDKU*N<${PG3fiF{Sg+p9{~yzM +ESs2tMuv`Jsmx!~+0!=$gxK9;^cpl^ZDP@ZuMuUGMUcK2|>*YD~^MV%C5x@Msc(<4D@|P4Cc!yv9y?A#o-%VRmkdJry@ +*Q{~(*IPNMUQC5NAA}k_d4X?hIU{_dvKs#q;wSsBhqgZk@JxC3pOou(WZyqwAn(Z@UuswyZda}p?+Hq +o^wN|ZF!+uw6%|-t$hq_?XS_+K7qFONwhVAwni9Nu9$fy8<6pq6X(t6w>I5`GH*oLHvoraz@-xHx1tN +U1>a46bi1*2O}Z$41@H~KSh~+_E011n>|E7Te(oobr@fnvTeQx`dkV$-=D?g6KW>QNw~Eet@6qwC(kW{83USP^x3m!_@}xht_1L3V8Cws-5*66RxhK#DUy +Vkm^4%%I0^ONMyj`)2c~apeIAByE=X9L}afVDREr;ySg*-lH%3%!mFXA2fe%fX`X03z%RuttubnJ0qY +h&JJsN>wXm+i9F9=Xe9=B`9tZCN_M~h)DbM^_*P24LlM`e9Fk=Kg9#3l71 +S?9utN+TlCI+n8mX@85l!#JO?@(lbb-Ik{KL*5vwes8dT>Cka|?`6Ffs(M*?v-jSYM&HNyvRd*b-{i} ++iZAJ+=5go^;>mI!w=0^D@(A^PG{-2dj7CR!GzdH=Ps&J7bGw|WDGs|01rxt=V;mnOo*S%uu;9Cmd=N +Ip2P4LZ8+KW7CoM<$5YsazUXR1JSks=e@&PzM8X3!nQ62yf`F&V@ZyApB;CBf;h%OVyrR|2zKDTz^v2 +&>+V&xCNolP}u`r2!cdGyR7IIVTaC)*y|NS|#=2p&`p(^FTB;M*G`(cNsLiS2Wx8*ny#VCd}P9eW6Cn +dwhV`Pt^33sa2a*2yXm{C4C4*RLY=ch93QYbk5v +liF{3eXOZD3~?IN!df3l1Mvy2>LXXRVbZqj%D#b_PNrd>RALGdD4d8;7T8>Wf6Wpl(7zkf~XTBq|^z3 +{~SBk!S3?^TC7J(_JunogF7^KJ!ueDA +Dcg=N{mJ82*@qskTLqaffK9W$Uu{$GSF1ed*1`9~HOO{#_ba%EO}66R58Z%wQkUmnkl%xA^|5VlqBb^ +BovrOT@UtD=pZn#WA8p?7H_N|p>KnbUn(w`u*e|r)QGe@v?T@-HrisYN{Rd?ncv1R*w$OQ-J#-PiA2e +&^_wd~ukhhoN1DK?Dv)#5!Op+mtVaffI3VAD(umM!<~OwU +8W-%c3;7BU*@KSHw$|A3ZmuS#(J!YiV7f#+X&0sl)n}84?*O~M6uvtW@ZHh5b1c40tL-z>TJhaEitmn +O_zogpq4uZYJ97UIx=u~jx?Y~DLuPCe=l_H+61C+Yhu>fF@G*%`>z;Vf}HTT +srX`uc3{&^@0J?H7=)9dzC%--ABc-ry|6Ob@4sV5jar=F;-oD2s)e;`lCo*Pe6m{YYym`=k9CN5iT8m`c>w|wc6=ep~MLXe3K36z`eN#JTe1~ygnvCCSH2mJo5bb=v-7VU6Jm-AQ +*v04VS@xCXnrK|SuVY5PE!+1h(w)ZpZTT%H3IMwg?e-(HMSDNX!#&{|Yy(#rT|;X{&^^Tn`{#)+|AWR +Z)brT7Oc7qJiMFfghi=<@;vVF6ZQEP3U3aZuIixAeEtciw_=wBT%`$bQS7qjgt{p8iH}rLsDeHE~5u{ +u<>*5^s<^y=|f1ko*U6v7MTH+Frxa69+WVc;}&KdZZ8;V#K%l2x{v`v-XW32D~B=yZi*%wjXzBMU9(D +hv3?v5F2P}T*!Ydw(?tTfX-2KlKMqT~|p=b*j~pe5n6o&~5M%lldq_>oznov=si0{F{W7d@{n+aZpp0 +v5|)S(KCQCz}!?j8!I9<;7vNREyn64zipAw +3F%4ltNAK)|F20<`wxM+G`C1E~lIVNV=y!l|8f}qngLwTK&o8mBOFXH*X@O&^uJjJpoLkIPop>J +f>UT#Sjbsc!mcO81}(BI)*Um9tk-ZkUhomq94jWm-Uvtf@k#n;&LFw04JcZvN^<~!+oGR1gAa%@qPcz_Mu2QE$?Pk2;Q3k&?{vxYN8f_)u*`Yf +eVwRXl_?sp@*0=-A{Ll0jPT|Mj9r0AIc=^?!~yW(Pa`()_RMdCZ?q#HGMJ6`Ye4tUAkF4A%3tUJ9o7K +9Y+K8Tz!!{RC-k`|Q#|DdE$go=+x4AkqJ2}L2r``wdYm?keEgf3k5VN2a)W#GReJ?ZS9&t+jh!)GRI| +>iodWOReZc?XCn`~=iZ1HBaqJk}p1VXRa#MOwvl5%o>pzJ=1)(E3w@J-6E<()Pj5(#}yIW< +wv!{24~1=k^;SFGDX-H=Y6ys2>T3c4}a*5vE*vD)dG}aQL&OM)@Yr;10m@XDOXZ7_q!AN6w;{Zf(d?x +>ebHXYe898F&mj`vK9_C$CzU=K&o*8-8~D99^D;A|mr^rhoe>BkXZZ-PmfMxUF4G($+3m+S+;3|M>SS +rvFjl3f7OXFFYsI6MJ{a75v1A>L34p?A>a2@OI)194?+r?K*$6h&Z)riv~U=!mP)@Cq$Pl@2`yrboB} +7>JtuWPo+LSq3rF{QTx}TixQc>#L|`)N}K7Ed0{VKUZzXCsd&1rW|V$fTJSW!ol@{>W{j9}R$xR9>57 +j`+y5cR)h~>uQplmyu?4v*UT_$Z0@HS=x}^s_vc7qt8?TtK&<=Z2EVx~dXTUaXTAaRjsrU31M&b3R2h +&F4{&^o{N78{p{bo9o_vEwEexh(bNOkXIU3aWw~c;;I6%Df7N!Q>;9Z^*FcNSJnz;3vxKVfJASRP#&6B=6%vsd7I+2?`#%kZ_Sms#KZA9lp +r{&O010{wd6(#ZU?k>CGd^Da+;^W3&fQ8$Quo`#~W=W!iaJeFoRB=D2`hQIn;L4R)0^CiH8%((#10bF +BwmQIvsUtZAjd6nnwx5no2CFJRc&12k5{XC@f^K)A3)X{dqdJF-^Fk%S#tzufxV^i;6c}t}irpz-Y`5 +f%Gup=G;4_gt_^*!Va7NEULI)1bw!e`Q}6K!G;dC2p9;7ZY{9UFxHx2EsK +`}x{bq|Y0Zz6vqCYoubA&(YRa0r^_t_+r~;$Cuh#pc|`GOx!D`kCDkoOgh;LW(5BLcDe!{a?iM&+&twR3Z}Mo<2P9*T&LihkTC5n6dYLc;AHI? +Q`NZ7~4;%<^{1%pEv8|O%uh8_YW=;Wq0CTHs0m3f3xz|Fk|3)H}$tD@ghxU<)m;I@IAZ1a&?msX~ +wXHr+OHC!(T&J`#=|QH;*V2Q3jqg=vUYi-4ccU!u-1keA*Qn?nLOYIhBF648@q#~Jyb14Khipi>e?Y~ +Z^n)tQc)4CLfAKC$e(2ine=ze?eqmc8w}Gedz1y?l%VzE}YW_rpE~?}U7j=l7a?ae~iqP)k +aYm$5nN^?e~@Mj!h?nf5L-?EvuXTxOJkmnGiWD$U6KhsX4Rl85CQeT|ly>ot{TshM`}Z1PI+?`J6ED^ +d18j^*orAWyvxAKI1`N(XNqE+`A8!3V1vS=H;;#DNtfuHG)Tci`5nIfpohf@$P;5&wShL$(*3(dYrI? +8rDZA0PvdS`V^{96N^BwhB1Te?-gIMDB9F!5z?<*rM +{Wej8c(@VmtFDdhhrHJWZRmbcQ5Ni;quPdi-d7gfKS!luSs5sw@102J!nFwB-H7wuMWV}xpW7uOU|NL +o8_+*kHrlUX#{GNo{L4|jquNKPx~+z?0eC^L2LC{Fuh$%+?&|A}u#ENovA@O&hrIC?-7NcqpjVz^Kadaki97q5^1;8VIjYaPUT0rj999g* +t7scC{><*UW4v7b&>~kxWK)XxxJSz#ssP`l{?Hsj_HVjIUh3_GFOpCHWwH^Wo+|3M2M53xFTP2?25pz +VS&`;^R^~lq4-TfOy!n>zeTZ2`)9f3YW)LyU5bVtW{8D$T>)Ao%snT4}I<>TCT|YE-mIJqdCO+=ew(k +kRj~%pmL!`CKK|OtBR6aR=vgpy57JPla5R1(#c^qrIiUt9BRqf@2Qulfb96^PPN4;OtgxQweJ>Irz +wC8fP=ha%gJ+qIp>hq{?nP}`{8;!8-jg8^P(1$jE-!+Q<6><7o^&Vr>U69Wro0tZh6(%k+=9+=~Owm| +?`-VazT&0U?Ud_3};}VT%J9V%#)5)NOvfOy +C>w4ZGU=UW6EA-DSV!T*MJ_yidkm3FD}V3nvszn~b=LN9$e{_hF-bwJqUj5w8DO%6<=@qbT=^`rw_F>AN`dc&I^|#Ld@U&Y)` +n07*A9mjAOrKrbIj?t*PjjAOOje!Q^K1Gneq3E}&Ik3A47Um=cHvrJ`6Puzt2r!(| +h(@}>VsDlgm)4pX9|1WR4rv_!S{96I*1NaT1F04m2@L7(!5U(`N{jgVa%R0HuI`x{ktOv~-%y$E3Jy$ +^{=f54TTfn}}2aH`U838$V=QZoJ9CfPFCO=%QO?ntIIn;YOT6dV^CML`kGEZ9@8f6XwhTy#>&87g~tT +|8Jx)QV_UR9tS@vp)?>MLnSdr*}?mj=*fKIpOzws@76vA$mG*rUd=zCU*E_}ut-)+L)QH1M}Z*AVBv& +QX2nL(tD|ZThiJUD;4qld-czo8C6KsG_VYQyjmroH{@>-k}BdI8%-A(exJTigkyaqHefN>tenR-MPMU +in1v)TOC2z(zD;GDQ@dcF~X~sd50cK5p}(8bzjK)EF(PN5XHTd4CznjL*7sOj7Z@!Z(F}DEks-7yAa) +7?-*W6+jlqo2`A!}qDf*Jb;BX*h7%PL%2xfhNx{jru(kA$@UD~X>VXRBBeT7zF_dW``o%1l<0|K2ck* +Rf*`XAa!}q6<#%AN#Xm;q8LL>5Wo)IZP8h=#TKO54aUe667FYDZ%A~IR;ZJ@)yt2v6&*XJ1B6ZoDDns +(^v>$jzfx-+(P-@k$$gEqIX*P-YzmvnHc`@^uuq-}~eb7Q^qms)B<@NNGMdHw~zCu`=nbs}GLC1{Ddc +e>PlA?^n=jc{kC(wX}pZ-eQ0&QQ4@1Q5!FDLPvM}09f9rR`UZ$;eaO6CXcLyXm87u|z)F%9}q(nzChO;dJeA87B)htJ9HnoHUlr%i +s3^ukuUz=J`?v9pYbcBrUL}cP7_~c=Z^JC*?nZoLi6``d+pPd!O=2zz<)(23)98$-fO`-Uyf&p9EXVaVI+$?vH`E2ya0SOqB;q;ASG +Tt;muI+6621s^S7>7xVNgja{S>!YfZkILr{!ZcSlvjZ4wTA@676k$>Bu&l8v8PW#;6%+rlTIlUZI4$| +J71`%;2a5%VDqS=n{vrQZ6QsgJPCUZh1iE03<59A1o=JcfVr{%f}9AB~Q4KMnh}81a4xzFn^_WA8BHP +vV)ym@n40$n%fd)EGC~Yx}_c#<$r%ehNB1V#%9>eDq@}$4q;x%#-8$qv=m4jC$Utf>+SQ&NlgT}6PI%5#A|7tB +Ym^O0Lu8dq`XP{~Q@FZ8uiLQc4kNDy17QWI`cAMrr)?mUacZiMf^XpdGl^@OYOzXR7l!b(INxv;s&J6 +(4j5BjazxVf)Jq&zT>qgh>QpZhh`xNNhXPX?#r7vc}ce?ai_$(#MEi~u>tzzF1Y%Dp2Jh5^RueY-wn) +q;h;q{S9yR&^r;5MUz@FEIvu!TmtNA85A;RBC_;%G +tK=~@b_k+6g+y?qWFZgVy(elG^UbHVQ%^83Cm!yg-|*tNZI#v=vOjmSLEjPD{S<6*q3#=CNxYp5c{) +Sdk)K_l0Y{S$UM2Ui4jv8|?muIdXB4z9>05As4RI}`Bg?Ze+4fS(wJ&y)_|VGwDruJE>{z-wwfl8$cO +VsK0=JZpPX>qp3!48E6?9`zq+L3jFno^kYuo1f3i7q5XAe+R$qcJ-m +nbBMv2foV$Z6Rl=ZTx^V! +nMv>CYYJ^_~K?{wCS{A`Sc&&XyB*6{vpfO^`p@^?cID*mh#G?rdw;bB0>rn{7EPf*;dbYNmk}-#N^&j +l59Io_%btXn$s#XV}fY{4dytJ8S-?^q@X#>vs!hm40^-ewDLIotd+AR>tm}q?_&lk^IWx)pC*q$?nXuq}QThN%2J>JOd#}*{$d&QRfkG|Fc~Yz8oR{p-Ulpi +vi}C#lR=WKtHV@Z#&}}rX1?=C$pYv);A3wmpNKN&DCgRL-4)(#bUZn9s=*nqmS5xsDJbYvLAbk7zfR| +@W4ffu*X}Ah}CjWOvqq}?VTRaT^>p;7vV6+w}TlstF{{iHc{R4*`Vc7d1?KEwu>vP5~*=L4!>qEOOLc +4V~ts71Q&+`k?9{Cn%(om5SRQ-;gr1Op0KQ8Cf+lQA*Sch&5HzO8XgZAh*?Z6UKFH8meUg&^n)Om%|9 +`T{QqYXTzL3TXZQl~a*XbbQmirL@JzNBWiXk?!k=eMv;a_)@ZWbC$IGb`mRfNgUW?gT581>8nAHVwRO~XrU;y?j-*z#- +e5dO3r-#DarR(;43-txCIY9W)pcBJV9P2IGq$U7f6aooV)FUnY+UGhBFmrS-O^S^-1UqGAeo-7b2P95 +3{9tBRxv7sfCq>q%N;-ZSUAItAvO)MGxwmSapKsI7;v=OdL4d{8tT%eCLDg(-GaY!kfoB@%mw +|6pO&f+A3NmQ>YrMcY_RRjS1>n`s0SEG#`84SCUEC-0XDM&B4k>FpVzPEPE^9kVz_T2bn};$x@7p{)7 +3Dr#IQ5Zg*w*bfv7`zz$Nv3%$lSK9KS}2H$7C)R$FLmsc~S0;qAZ^&cLOuya`#^|6Xfol=lL$=JjS1y +d0w=@nMOSHc>UowuYZ(tDU{6aNG7xMA+rsre*^ejkNPtv`>qN5pau5rYTR~bET%YL`-3rl-zX1+IO{) +koAlM3h8o}TWQfKF^7W~}3{7h};XgGwEa1QW!Xw&;ITm{m(xz)#y?rme@fpWs_8-9< +B)gyaVyI`Cj2D!>sfR84UV(zqb>*gAp*&;f$#vf0f%_VUs|#j4G9 +PsCyFhD~I0yN!YeKAc0J`zTLJ{1wMhmthF6thMj*fSa^{dqS3*zG>KA$sAy3?o|+>a=_jkP;B!S+=Y$ +{2S)hbRr$KBcYe_pM{_tk+vr8DDk#Lrc{c_MM_`23Y#1xlHN*IJ5W46Tbe5dU4IT55tCXMdG~UzK*o!Ii3sOSMQ5;HM%X%DG8*qEi7(I3h{JtY(Ijh{8G|uimA-ySMlF20V&d9dDCd03`1 +L;umA~@*B+=f_^#F+Jn1?Y~eV!3vAJ9_pw>eME{du)e+3@l4Sn|00Cl=h+it%yxXe_cYy_WDfR&)|&y +a{?XnzTKl=8a2yH_CT8zSqalTb1j&PSg%WJ8C%Qvl#cFXI;5wZ)88aY!^3HL|jb`Tl2MSH^&=JLk0%l +FPa!{N9T&B{uOGT$H-hYA7x;!(Ik-8Iz}Ah1L290)JSrFD?V;@5&VA>{J&(g`G#%w(BI5c>ou}}QxT! +xC);a0APz3ghzwEpjoci8j?d!Q>f!~@?x`J#9!Li3%&?jl#CXPBvv4 +9df0?$9Fw+3@kGOUM<~qRK0GLiEc&NEoxUTNy*vzw?sCx^_nP|RDOa@s03uwEwkcDcCEcD6wNlF&1ZM +Oqha?mh)xE8Md~D@0sw&t6e-aCU-z7y5szoT4#5H6H)EzNW?|T2kWgJPyxBEk*UEa7+v_O +&$BtWcqitUp-|-@G(%B?Kq4$lCdD-X+QKsLzbEo?$vTu__M@V9Z{QX{!*MKtaFSXF`dv0-FSL>oG;` +F`)}9Ph+y@|sz6cGtgPx0XQ0!Z3uEQSV;uKp|GGnzbihyH_yXU5>Fwxl#tpe5w~fzhVe{B$!oDq82b1 +<*mtG6{7LS&-WzLwgGA#W_MN6Rnv^i1ML5^&}R|j8r*~EIcuPMk*%rhY2WJovx3CHQ@zsXRgS0eS%} +P713xn?8kvB)Mo%T`RJH=T0a=m|3g@ruSa)Bk7ONx)6|<6Xg6)P(6G%R?Od6qoaa-4POzkc~S^d +zjoL@2%@$4`3<~O3dv}eBIHZDg`YFh`UcFc%2i?V^WqHK_B2N)06iZ0ma;K0Z92{1$rEQ>Js2_V3S>xaIOpc1UO&yX>E9E$ +Kl0tEz2z6`Z1g6&Oto233itAglT7E=?(b*2iJK^`)VsAcgz;;1E-BLmdP==Gw{u;x|W4qO=u%sHjYF3 +K&#+SUW@J?+pnYiz|E>pB#SY13_klP7UNx~p3~+z=PCWYl=ty`__x>InGe617U#n~CLfF>dzlMecr9)#id#AjTa4n3NKQ?i+<16-;dg{g!S~|>`srS4bhjNAF~y-4``#hx@Ni@kFA +U>9&SF#xTIO1a&9}@vtAiN96E$|a?EwIIo|L!_%M|3|3fS5oxIE?ti-Hs^|lXT|1bzK +3=HVt5Rmw@!rTg$Lggp7%_EXL}Mn|KT0*qz}NcwpHn(@rG%)+{b>kRmEyfffu&R^(AfPnc19c>R!kBF +m`i(U`#Jt;TXDtLwHr!s`ai7gacnQO+5I9gf-GpLpTy1<91D)u4>?Pfuaf^u<35hvI2~f8vs8pDp|{x&?{glWQT=&+W@xJD!zx(7<}`s_*S +0uI-G6ku6M?_@4euAy{IL=T^4+Oz;^}S6IVa(y_#qu{w|lo`w#5z(Oh!QJ#ja`1zjfY??&eglg=4PKS +|=95xNaAv<3IeJr>+=GsisUJAb~X;q#Lp;T#Ar@NxtHTX5|#=^e +%{gZ>PBBQGzB)YQk{ciZjs|!Vt@xQYQ@|_|gt{aRcXyll*Z{(#?-uFbKbzU{Twf^eNz#e~YPbuW5v=@1Z+XCQ~4xIjVy +OgWiqeuOvDT1AaJmz?IYp4qX;T7wI#I{F9qfnW*lbVPI<&LS +T-GVw_XK>MS5dd^X4zxMVdDKvyWECc6S)g*i5{-S6tcc`F&tH2*b5xJYxR`S5*3! +{%q!19o!(bmm*py5`xU(T{6Gnwa9P{#L2i<&^vJX+rI}Fw0!a(i@2uuSVHx9!2|oG&6Wps%Zb9DkH1; +!IUEZgQ-Q$x>nX)qm>n#zRe3lw10qOq+P0SfAtBquIm$skBS(3XMsjG_c52l*y+>UZ7T{yaDA4DY-nB +e%!VZ*{1f=A{zXRkj4ge|Iy}3yIg1(=i7>}7W^g^r2Ss?g37>6s^(nMx=;?{z`T^I){%qI_Kk^nm6`0 +Y0>#OGeIyThRX5!vw);sVa{49t3tp9@1-a}ooxX1+n$l07L%V_AU_)byTg>94pV+yQhuHol^^PB%E~&(18lF4GV`mHcbAzvO_^ytF@1Pogf+XPyI +UJ+J4G8dq~(%XLGu7jc|g-OpL%8od{bQbzA*F0zf@dltE_RdeU$*yZ0DP5(E`OY}3Sb0{C>cCm1Xa+) +IP8ljC}@vGHa{aR*LOxLj=DW;$1K-MG=U>jAt72NNp6)Cc!nH4f^l +3{6saLNS;a{+yAN+9ca@>+>{Atscx-^yMKP=^a(k!oz_+Dp(y|B~eU0UO-DWZ;jwdM2R7qBmXp +(bOn@|9ZSUcfBhr!{h(xhtJ}QT3F0@XS6)FMa5A5#c(#>jASG*AH>dC*#rUM40pCh{qCM)0Mxl>ZfX+ +jhAz7j;cL(mTPLh@v2{`xpDH_ag}ZzzIh?HZop$%oafm%D+wv|H?GQztsu+3t0GfyM=#$j41wnG=YE4R8hD0UHI2O%0INH82?;x{(acw-*p!LebD6J(o +y~yO>zDK&V>BKH!J@#l8v+Yp +$ps&ZRM)pipD@D=$QqZ^VgwgTsp1^e#%j#-#ZqVWt5cnI5*zeJk{0NE0Q4z{QyY+#8BY53bhao)8BeknhPYHH<}^X)QH_H`Bi?DqT-owu +Iv>X+D3A5$OLj(cO0B>iObdg&ctS<4qm +$`?uUOcUzplbj^w+br+0%>0S_SG_SH*RzNG@B?FQ$^R~G=@XW=#C0gKwv=jVOYQH{meT)>ZK=&>?zv# +LB`@02dbTB-Y)fIcYD-Oivn}}(+R}PUTk>1ml1(&m&hG}$X7H_!ngH4n$5Hpm{yBy70#lwca78;@$#g +Ew<^Bj{wu^1ZrrMCV$+xw`Y(pK1Z759y`F*+BhTgQfWgBWX+fa#?XK6#Zqw@R^{Qu3ka(p}9mhybu|E +t^nPVFdHwj<`-_*T3f-TaR2NR`VxcfB>X9W@M$-$RTtyVaECtqHQs=lA-%oFx5Z^LptWU|GvgY)f0sw +vd>|+LjW_w^`n0iR9zVqcMYPY|OBwb=B}iO>}p|SMA1i&4-OJ{aE&I<-rHs{5}!s(h-MIhBdkVrN$2* +x99<_mUc5F#EvR0FX%_QYFxdudrHl{R=B4882#afnz-E@GbiYOiYH{BcwUM8rSXiL6MUJ08S6gC_Aa3GMG5@_&p)X)$GOg)*_!l^HX{w=(W)(uOzi<#R$qiV7I`u11 +5CI0UhsF1LoQ_uAsyGHfVE(=Gv>;3X$ehg+>?06)&WT@Lj0W-+oZ)w#X~_Xs>Li&_!&ge!S-x_G<92{ +(VN|70A{ot!67)$vFgOp6!;j-AKC**A?)wn-Ryw(sADUy7zJ4;2Dzs{O+G;`uksj-^I0+y7Koyv!%^t ++GyVOlUi!lBi3>?&B}`99kjVa>#6Ha+3;%aV}4U6xaW>_j+FG@1RsgH>c5nHd_gq*S>z+3pTMePe>luN&y0xFTXJt4?x{VN4{KXjZ6zOCE%c +7@K?jZRBpoWX;5TQ9_I%yceY#f0x!P8KUk!dIgYR#BsWhO8GNm))GQxUUjBzQfRH-{I!NA{fw(@Dli9F8FYM)SL3`LVX)h-y+bq1npGD +#pb(`)>Wm8@yxuW6Z7A0=2tXB{_#B8nhQAdWSl+DHg5GKz{}Gt@RHcl?1c2Ov|KBl*sr*ywd0u-*}p# +y&NE*H-rJGiOaB#lzaoaeQ-t=mUFX`~++);#T$3ne3;IXy7lAfa!To2EhWe}XQgruMAlnj;rWskxOMC +oMAW9GllOz>xt$WX)o%FusXhRSG5AxBLU$WTQR8 +ESe58JcX7q5YTMNrsH3aWdo@m7%6&GPHSeT!zvtG8CC~Gz%{~P$b_>KMFNE~08$Sy-~4o~+$ +2SV3Vz9?6qLtTSytX!@0wS*tmVgG0=5Id1p#Lr*T(}epbX+s|EDZ_nP%x1*uu*_12UtfsVA!grRedG0 +42k|#N`08MyAJ1{nhm+vm2HXSgn~Pjxf7T|{p%pf;MVISr7M5s%8M{E!$eYTSfj#2>UI(^w528c4!2r +H3#+7*Pdk}mFZ{=FMm!rE`ztObt=Ve-4nNIejAq{*EU*J8)A@3P~*s(>8Af)Q&Gl!GTFX4{`C>ATSfcl9O}p3$MY6jPDE`YOy7%ZkGXI8O*2IMUXA; +w8sRnIQ>@>E-`OW}1J{+;#P^}$`e3(NKfh0e+26AU-$3<^tsM&djK3;r +d^@RxoS*H&=OIAF&7s_#q}?QcRBUxK`G9!~#UqbW8<#r+&(xF0yYr0u_hf9dERFJtEzI;+f+(U9K0sQB_mYnb4(sI(+_s{j!`QYzvv@4G`btre??me7CwCGfH_p`c^1(%lFRt?_EX +P5cxGM@o6FcK}{`2mc#WPPA3WuF_$>C&BP4RTJ!d!OI*=c>n}mzz%tYdsu)$$BJT$2V-Q_qs587M48} +u{lDQZ7HFpsiOM;^cHp3^C@b7M~>xfN)g?4`0=a=lv($08KV6a+l){S+U?7>>0F!7bughvQ_w!32Uo+ +!a6RK8$musSxHqku`?Ak2>h|I}hx>E@?mwAu@)F>vbGWiYw_V^_Giok1;Z;D6xt9&cn!ap-%QMa%#xw +M8m}9^#h|QZ}2bqWCZx3atbpg~rEg5lJIQ4vNjZE^jet&5?e)3)D*l3|+O#&Tnwa{_JyU=kJ>BxD|fW +^7cRytmnK*!SYbZm;zaiN8d*I4NI?{B;pI$GDS>GF)U?ljJOGQyuYOFnb&bF`n&8N0X^Xh5j7*jy9D^ +*~$~R8){A_se)#h$SBsYCbw+#BET1jjsAh_UApTGs1cw6y1X@*-27t#x2?y2bwoZ%*Q#Z +4Q21q*jP-&@OV}O0=8f6-8?OT&UP4x(D&>)q0vZb^|9f$T20amLuo!E`e`TVV?f +KBs?|y5_{rB>XnY=DBe!^D{_Ko)b@dre$uv#U3YHe|Y2!_@2Z+u6C%ojf?G~JIBsF)3|SY&X|4Ji96@ +U<^umgo##&VG@Y@z682jT}=EIfMjoN7PRQDT}}t2TDuy7B9Aj`c@(4=1cAy#TnN(S}6HmEpLuJ +ydCpL_r24y~2vD2XPHANEp@{gV;t(Zqp=b)#uH*OXo2yoWS3@8K@d$h8<%ts;|g+r!rwTYXWr=A838V +)X>?vdDWazoq66Gu0kTmxL&J4medg6iz=)Q|p*-Mn3MpbWnE=>6*gjKholB;XZjzt%c)U9cQHZqzmnU +b5HYIJN9r7T924=F2Fe`*U53rp&|sdkEg}u`O!4mE3TIoIi%4mh~Z!6+()yXq#5h_#7ueqN%1Lp7QCYK`EzQ0GRxgzsec`==Q( +FlU-e8EaNvG|)P41p;`ph_Y8|x)cz>cl`MM#>gK8fl$GT5pY)w4Zl~aGye)3$m*m`xI*EsN)if_)Oja +{o`-A|D48G}Tl9f5)9O9A@)KbWlc-T5Q?j?F!^83Tpp8C&OHWo)f-Xe&LCk!r|?ANRMkZlBSBd%pAIz +D0AcfInCQIV`TUi{q77)EUo~eQkGeF1#PQf^FjliwytQS+u4J)h>DlcHs()Ah?e%{ +J%IcGJJxYwBG!?mj&f?u+hTJQ5v~w)5@ixb@r6&vL(Kwq=*tR+H8|^N};iKbS4TXZ}s=x(t|HPu=Dg- +NZANKTYOOTbB?2^s`y)D;33;+*}j5bf{9DC*xbSZ0V5ACF)i~2b_A)IJr&jebdb|O3`+^pZQ&McdE2| +GbG+$1kStM$|s$FR-MV!Ub*xb_u{)_+0tV!ZR(1uiluE0=GtfI!INBj*il(D^cei+GxrYr_*UU@cHSt_H+f2D8dSMITeGhfxH^kbOt!eYTmQFK~a1B) +nS=I;?cZb^3jrI~-frt<72#Ti4CD9e+Q2k#)T{_kDN5jtlU9gSj5^Wys%Y$l)o-BliMTHaM~U|7grP% +9qTThjPn32zH~6Tky-)#evwlg3@*Y_gTPut~;(LzV~`eo)3>}Go&5Y+tMzaM%{T9nA(3YFLbqewjt9T +eNCNh#yu*o%T0!F+*hW)`bCbpkJ%*AO}Sa2*@COIv>}cG_Q*Mn70-CIob@f7V~F>y(J15X69eg@JJ(@ +E4&Zt)Pn=_{?{O$!lXEw{72^0M#jkVbzJOVu!28cahCY)bA~_Bt+)*eRTOse&@LA_q=yI&D959Nc4Ne +={$FdOjRJ+Br&t$1RaeE=RTpxSXrS@BHLEN$3yyx1;YV)3JNnGar1zVo4z=66qn2KSjtPWl$T;DFC|_c*Zg*7w$yZIs(n^^aeY2h^*MI}X7>~oD^}rM9 +e&(TAuzfhhuUwAXY2BeoV|Mai=WA2zo5t=jT6(+mNU&~LDz4Z`#mS?`v?lr^CkSgjNd=tw*$YO`0c{4 +TNgbC@H69q9b%yow!{Z`7NgI-@x4EG_-7lVdw=*AJiBL=rp^;G_Xyb`W{b$!ICu0MxN$Hj!?8U?Vm2~ +W*}XCQlvwvAvHBB)=?2U+XG={r;5BHj70#=V?s01FXH_||b%Dvpv4&+og)IcXi06--@Zx&GV%I+d9n3 +S#xF^z7&Na*HDV2Q=+{aiKjhCi&%=oBX+NK<*P4&~d0E6e!1>Sh66gsnv`^|j?_wBko=gs%JN9_+jF1 +_AU7E2HP7%V}W-ETuzZBuI`4!%z`YOqgC+x&*7l)8y}G?#cGua{@%wW_q9c?!os3fsLi-oj(UZe(4La9f6ddGQMMbC(d>i3pQQ^UAS-f +@&~k9AMgTrQ{a1?A@3I6fvyJT0QpKCN1=HC~~MV%E1F`Iv@zJ1q2LnG?~_S_ab{<=$# +4MjiKkKfc|LZ!du^Uh_TaG11u8*!`E^-pRdt*XXiea%ZKv=GEysyr&%Rxi?wS=k!MgCg+DZ9#Dkm{0z +~?bETh4SGt%sAd;^3MzY3z@qL(L@%gCl>D!VfiaS%(y6{2J|4YueUAgKt6`LbI&bez2;&8NuR$UA7j6 +1@U% +v$^tM^G=u@7DsCZIkla2=lazA9AGqny${}m2>8K-V599W|xqApm81X8P0EWi7@B5#?OVz3H@rO>hn6! +{uKD2U6Ot|A%6d6y6g|kp>OKq-m%m>ux|m@?@PvT5%}91jUHfG4S>x&)Lm|~+^-^ktejoxaxcmn)vs_ +Qp`U-;IT|~%3mif2xx3dP4ltgta)|C*5lF>fs2?~o7vRI&1tazp=`ul6ik!@iU+8^eLOqX&pviuBELM`i7f^w{2JhZ5=+*W +b@W*9N|6$aQfni~BDBY_@36^u+f?K-AI#cF9nEp=td|Ap5# +mgsuubZIkJCc?CB+3rO%bsnPJu^w!6ZlUd>X$Q+3Ca}b_p(2y$gzEo?DvVyyTp}yP;*~D_{YItq?vsK +;QO0A7alOSLly|9!I}@g=v1UHzo_M=aqCok~;uhwpoUb^cwN;`eXT)IO`c|CQy;?L;JDLPF$t#`ET;r< +L``_aVuzv~;SPXy&g(_C`+8BEtY41smLl&ela3W89k(Q*cK4nC*g(3GU;TpeMje2=3E_Wy3(vYV5EGB9{6 +7G}l4)+x9% +rVIA%SzN33IS^}zbJPRb+V(vSx>3gUSL}x@g1@mD@>*{CG~CDG0(_Z1o6FY0}88 +2`Tz*9Gt4Wx(?uEkUBfah6s1Q@Rey_tfKS#fR1$_RaoL3U&K1Xg@w`v(r9NWX#A)xyIM$e@*? +W8=HQrd)q6gjt-`^>khv)a#!)|BAAI{hP69^iAlX9v%f-p(`RD>8y#jLLDL9hx>tz3a~i{ypEN#Pi7W +I8Qms0&YXDEp%z3EU_=&Zd2!+0M;~)sm0E0i=9iO{LCMW?)!V{@AaZJHige$^87UVI*WNO#acP$KcPwuj{*61e@3&JXOwlE@t2I=sBr?shj6GCd?c5eL7>zE(+C+m*Mm?c*AQNEaGZ|r-2JfF2KNO=p#<7KYBGS5z}X^pMLGM^tX* +JJVfeP(}EtR4J>zELT@A+p#d`;jOlmGkivs6NAUT#PTUdBir@@Ej7q}v?p; +t>!uCEsjik2M+;Kr*z$aNzR2_}x!yP5Xw2t%Xa;a-n!J(ccb1Ea##VXW!SqGkZ<}qh3oxFYm-SsWx#MZJV;set(Wl1dxvFg9rXaFZ#LMM{)dlrEIr%Ocw3V&Sl}{NLwW5)O$8oYujfur-+5* +#U@?tDb9LuPjSk_X?vXS_nlGWlX9+A(;T&jfaY1`?6k?bJ)GwQoBdqXIaioAIB}l7($^K?czw+MH0>% +T?zNP)$}G!i%CcKa;rY7(W5g9WYW4~9EOP6(kA$C@5=>_I66bA{yUcjPoQuJE7xk|AdBYR$UpyAh0ux +S?18?>mu^FREay|EKilOnB5lwSw=bYxz_ZJU+-lx`1lO0ejG=uzlU +2(*mOZj;7v%7q%V;^_ZQZrUrDcE1ZErd8QTR;<_3WX!;Hz$)vCbIvn;tdhPn-1bPSMUiw6|n2)<>+Vs +W|qZENOm#G&!lF`^%HE+lb?vXairGl-tI*;dR@jP^UI&)ITC#1MrW)lWv|x^6KZsFwatEpE2_e!1iuO +z1+}&%c1{-w7IDBf@k-vK;4dMBEoe1&UDpCbB1yFHAnZP;d^g^2*O6n@AJ*HOh;HQz+l?>NLOX1Npq+ +)0i>zYoDx>og5Eu`G-)moG2`nA&sj)5E*76>$FX7VkG$U81D^Yj{u(yv7L?my^0NW_{4#L(=z^aqex` +`yiV%pl_vrV(PX5_$l;f=)Y8%I&PNKadE!XoAj3ZCphK) +xKjV_Q}%4X6L>lEMVHg5aI?;*7%ewd?>cp4Y`Jm|()Y*xCzd^Qg=POZ<`3+5wz`8yc^=w1dnC3WizUX +Ab^N7@tDd8;`a)E#3r=<(;n&_C`^~DqSyr~D#`gvW)ZXVyJWBU`&Ag^xR_|XNiNi^DjvHxk@HF)6EKx +hrdEzI5@472D@J#do`}L}zcVlOsbA4YuzC90|0+mzbS%H+3?o{}5c=lhhkIrctqyH@RA^iF?H$?sgd7 +97IBl7vR8zPVK`8D$yzIX?p-9kN2G9r)gc~X4NRI>WfhZ7Yuf|{@gAD^T4E1Bs0#{u}gl8+Z}j#NQcr +KYJl!YOK8V-(JjByg) +KYkzSvP*h=ob}5C$@h_tm49W9I>(V^Wq4%Vz28|>5v~%>B|Kxg9(itqEcJ*fOY=3cqzCVvVt-9JVxKN +^Pgd#wiTzn`nd4e-%X3f?$8UaU+D6-=~)YW@)o +>bufXe;IT*p>ME!0*J$>e!rU_9tpBHQWQ@ODMAqWpf?!dX#P5lZ0^=$7!5MyTKuj9{}#e?~mN`g!}z) +pKhet3R;qmQ$WWJpp)DK1u!?8^>ONI4F~hH{EwP*3EZw1W~|tkJM+&~FRnx3UOpZzcfF45OS*gg5uvV +bZN+^J+&55DV^%K~=Fa4PJ(P>3+EgEGNifI6_cz=hhkLJbo+9^~kaf+Gds1F+*7b!yM0fu}o3@nmTbg +tcNjAr&0lr3qQ2kRJKcSp1lyiIXd^{ho%G|4dz$S{{Z)rcD6=Er5Elcjx3HZA;=aTmZf4>})evfIhxI +Xq{Xj^aE@>WbVPbV=Sd^0(|k#xLkg7(KgCHfF=qWx_#+ux8T+F#J+_&|6YX!&VP`Z<>&E0thpEp0SlaZvZ^t-XsNpWx!r^qOCQfojn7Y^Z%<@*%j@O^K@E;@@JTjd0x72=0@Vt +nuFNmuxLCo3D+~CaSi+HAcyzTwx8;#Y1UoqPo?AAw&{(JW#Af`uF`CqzVcIy>kiLsJk9TCW}10tuH<} +&<~{Qo=kopGdFuV1c`H95-@m_cZ5rRd-+cf6l^>Pwiy9wu^L>%|zG&rb^8NhA(=NWBZ@!;TxySnjjdS +Ju1?Kw&E0@Xl3mexu`F^4Ke&NdN<@?2ruyuI9*nGcu1N82O~kHDX-a`E1|ejD2@-urdu3XYAt-d1TIV +=O+R(h!Cd?>T40dF3COR?P{euHgJj{h=D3w^4ms@kpizzlNCJ)Crt(;ZIR>1RK7ft)va1?r1RehFrJ5 +O{|o9W*czF)G)@br*Y3mu +^F3@<^nF#;;@70_wqzl&KJM%F;_t1GUYrE8ww~y+{7ojKfX8x~y{;zz-*nZ?U}tD&*$YHPn6SaY3CjiN=|1&PJe0Ixvx)P=eCbTzDh# +v@$o=`(RI%&G&TaW3bn-2z_SsQj0`n%Zm6c~)P^zH~R9kD|RB!R>M{{_TL{&lJJ@2LCh3`qAES%QK)3 +^s=w`kX_CjckYmTuKKby5&m^lu2Jy~SkpaarfZRBafg%boB10{dSSxF-MDkxPgv8LaINRNC))qFJY)9 +8@I9R^!sc25A7U%Hj)?QAxt`|_oXc#^2e}$>pSBM#?G^EJG7HVK3#X3UvWdyGhOzi8Y(A@VFx#v?yHt=1)Rp5!+za0!!hS^RPhks5nAZOfHo53w^m`(PjZ32Tft0meD*y~Z;=0 +Jmo(TGs%&^-i$2iTzsM)@f#tE@MRU_0 +`B1JAIc3hp;@P|O%e=tBsm)o$w!r&!9(lf(`>VR%#{TsVJ#XkD*EZm{1~#Y*dCMC_V-M^|XNm}xmk7C +EP=hYYE^^$M^CGo8dA5r5;mvZYHQA>l&zI(WzFaN0jd?iti23~HIm@GGEZ2%4$5=S8i1Up}XU@~%_?4 +6M49vQ*UQSm_4P|YW=3K|Ig)_@~%2pMrzU@vKZ-_D_lWC9m21Ob7kQi8|aI4qrF3WXjNS7|-b~*mCv( +Glew~ymxNXK%RmUD24Kc8c8Io^8^G+K5kT9?K)A1g<$|GRc+mFAJ-6r^vJEuN=d&sp(K=VJe<{7xU`c +e;h&urcq(?-a%F7_Z6qZE57U(L{dt!Jj~!Zsm6q`F7(Ne#grpzXK+}tK$4_DtiZhS0?bg-l6#IbtrzP +OMa)1;Wy9bhdkATN(KgR>nWR$=Y~JVWFq|$^4@z+lx49l6Uan?DHH6 +EWSQv+GLasaiKb0%B@=Vsw8}*KJIRF1%Rf3;TBM1R2E6OY1p +Rh?{PJV;^RBEa<$e*~qXV3GReU$+fFey7@}(gU;FR11++ypb*ssg|nf;vCs-?>{QkyETZetu!1=_h>= +DH8?`6J-xdd@j@!9Pbj;@<#$!|?}M2k^HeL+$Z9?%V&v-nYlaRbBh9=g+A~2#fmcL3b<3YU)-bSKDKb3WYXo<5{$Sv=jk6+ZjPO5Mu;l8 +`EJa@j^4ms+lrl2kJt0Ina-|=)7c$t2~|M5;L*RTt|6?y~xej&IQ;%?CS4|-mr_tiW*aa-ne7C_(8Z> +&p_QhcYC6ff2(*64PcVS+>$VUdwkv@^G2EIY`AKJAzCpXq)O`_kh^$}& +pg_pTXU^*LR`W-4T0qQJCH$TurI{gsspEk*C4IMl5XOnp}e@gbBx-I80p!xZ5|gU=4;89YC&dyD-5%~ONlqx^J9;qktw)4XW +>o;nKM1-2m$6MF_aHOYR39mIb&vW!Lk^9OryzXkse*ZJ$Wm>zVER;Q_tIkTp3+qi!DXlW`7v{QPF57r +frS59l|mN6}F?7^O>I{oL#G3Z0O-qz`Z%!Bz~KyAj@TuJhnh1z}9w8ruuL)W4<`5$nN?xQv>%(85wwg +sFtpO(k6V?2J`A;`Vc7q||wLMM&cgY=Di2H;TOPN+(1OolwBN&@#GlfJVx(P!9$Lf3InS%_6=(w`f5Z +QF6)co9p!H;n}xW--S_ef9+((0oMvd4Ar+pIy8FaUbye0ZNZFXj41vU{Bt_&qK27?;EvGX9BZn3aw@8 +=isQYC!JJY2syVHpf;^%!Z!l#)Bd5gz;^Ubl3jmJAH+*Unl={1WQZ159A^$TqCe(HRn6*A+#mK)Sq(M +0qpP?b)U;zuG_5k~{cnUFDeUe13jBGyS`i;|17guVByG!~vfrV4wokc^<7qDBn48d>O?>Xd_ZoK$Tpy +6xZoIS6JO3$;Gr{ASuS%yqjeesHq<7O?MIMY%*LkfIXL(Pa4eoK#up2_@cZkM&mdrZ&nM>kz0p6Z0(H +=>+LCh4q`{__V^R=_$EXYIOq+|NR=^AeL%V}Gj4%(KZ|7o#}eI%3hvt?=9xDDWmrt)Vb;ZM~rm-u)Lx ++`g)BiXn^Hu-j)7j%!&=ioFEQ+Fh7r?dVmLGp*k{YZPZY^ON-+?*|1TS9Fy8X(~HghRCm9`@6CC8 +(dX11ah`N4i`ulTgJ@kpxbNnxaSJnP3!sTY?>pcF~Kt&-;lU`fcm7YD? +NwwJnKlWfL$wpz9RU1jZOFs@p7nLC`TTb%YtVL^W6OIg#>_p2O +`RKej2gGa<>f4-_72T0?f^|z5Wg{K$IGSlz~}o4ndmL#j{#lgAbGWOlRVMavvlh8W{YHb&8fEoF%P*1y08|P>2-1JkBGXAIwEabF0>y4ql5H4es&^DR~fzoPBE +9RBK<~jF3BWWfyxBV*QgTf1kTr4CEj~EwFP(%g>q8()4hjDo&sjJj) +%i>Of!|D1F#V=;v!Z0>{>Oi% +zNQP+7ry@rnqEDA4lZbWwFmWfQN6#UdLifJh1EOm`_6TB_@Klab?-3gHvZzBQGe9<&>{OC?jZ!duMVH +TgQ6`e>9-s7w%i=0E#l5V%*U|y6py#ZY4D}!{xM&0eXaO%c>9{ZJifjf<%#R-mh=Dj*H?3ftO@>Pwi +DwEOV{Zz{iX=1shV;r+^nW+?;W_#|o6dYahi>9$X)K27Idwz8{Qj!ZQrdf=k9JIDf$UU)HDk(40Ekx}MoE{e6^gBU$#`PO`wh36?m%s}La-L2Wk8!G`^uLkvJotCv*Dyh!;N$Z<-CslRi$mDvUl01gKaq5(4)~o7{?K>d6j +SrFq*KEmZ#(WXsqA(d8!v3jX?_U(_pw_Sg|-)Z59|oM)c+3Z3+cRpCss1g6U0Z_FJ*y_x +m5lY^m{73Be}FaodtGnV4j_d^7x9z8ETqO~9 +%2F{;8ARUa})#5BE8s3jC$8kS!1Bc0Embp#tczW0cgr~otT``YytYed)zf*Nyv`-TlgyZ$hvvQ1g9

qXQ=NR$M5s#$kVTs +>A7wywyLH=E;%bLn67gh;-bLjmVaLQ;e1rJ=9MLG~YJC0{mW}=CCrf}Qz#`38Q*gL|H>stD3pwD&Oe_ +yR1QKmSLC{tm7lI!@2RM!&&9}ZRtyqPYuh((JtS;sSaY}zEL4tL~^LJ?!#Q7YA~u&~NM%Pen|e9;2jf +v%FLFW`1zvi+VNaqtzhFIYhTFU6e#eSb5KdFX_e*KQ`+kg> +W>$=!;(bd0zAa&?VEAManm50;*nm{@M|>EInr2hFuX;=8a5iL~#4OeGCo4oec`a|Foq +1pr#_c5L1?vD#L)Ms9nQP{8J0`S&mnRi@cIxH*azvc@x#TGeN~OlWWL-{{ii3Eu{3(Rt3p +V>&$RHUCj*t}aQO;tdnG}9LBqkMj%k-Mgv*9)JUO|rSUB&40DQ7!M}N>=#NxZR4ej)It#1NyxseA6!> +UOhOQ`TQHy!U5Wwss22iH)Pl&6u +P%rv`Xi(e{wGR*_6lcs82+Gr3=4{8@oZ4WFT^r5w|>^WTzak6ViS4fvN{8-U*qaM3tFZ?cU0@tCHmz7 +nGO&uIQNEM)=6B-1~q{>XlPbY|SYK7ezeEc#aI^HUvXAogD@um4PtPMJifM(U60obXLDoeTOVkq(f@` +%^6Zl2q!?4=69{^q&c@bL_zv1Rsab7tJ%jgYml`Kjt1iqwfHGYdg5_d`u3fThpbUp_l0$$&kR_8oE@( +=Cx)s-(mQSUBTd!|FpR{%>#U-Lx)NJ+9G_)NR|x%Ptj;!S%=~qqW{^~iRaZgE3234k5LcW_}-g%pCkRGbUBjB9M~mywCne;=qH{H&7l4}M8DkJ?@h@uGgX +{RPLvDuy+QJTz?imTr5v7r*GX^VM}?M$A-0euhB%FKT;mi*4VH!q_=rrb(tuHH-4Mry@%7 +6+W%Ig-Y?Mc266x4HO|OY+V9b)M!iqBL!Kj@(&*Fu0g)c>`}IDR>wWrfdY8=ac2m4x(fg#A(^q;{$hW +8Uc(-P~Pd}tQ&+20pI!;BOO~e!bBIA_u1;*);h;dpRWt=Y7`*c^xIAuhPlPzML-aaq#e0`E}iZ(`J{* +Ji28l2_vp5c1&Tg)T#e(Ct19Lw_1ba##Y`h$>hPg3hwU4@B3KTecxu>_Z|5pc;9#bv?%v|Ed0Lj=@S>e?=$wEfq1E- +n8r7gvA}HI{t)S3I~K%N5Olq8`k#Fko<36UF>rqPxrLc^zGD`4xNe#Q&zd>*VSO13Vo=}xcdZ5ch4c4 +q<=KhQ;Vm2=2K-BrF7+5V^`OVa8Eh+bBG`RoKGVo$+w7mJ0n$fzuM+m3z+SA+~d`(M$6$=^cRo>m14j4`?w4xN|HW~CxWltqJ?VVMF +a|%jsAn)Huno}TBXHc5MO-i7IMqCkjsHRQx4^3hX2pyXLD~Md?+d@(xqQrGyofid{Y~s&IW%VI4}24L +=rN6e%dSlo`sO?uuL^;k=_5V7?pvf|#qfA%st>k4CK@|a4BHJmQ^%N6w@>DHSI2&CSI=~?P`qWE_v3w +9%gN(GI;r&SKdk#(q(tI>|1peStEmn5a?C?k2;E)8V`Dy?qkKp*H*C5-qCJ>&(7q3-E{qdw;ZgVN7J+ +}y?Xk~kc}9OgLyU0=_SsMy9KTf8eMXzKA1_irUPeE3Kb5b)FZ`L`F!YEpxkvKyJ)8D%#Cm{?qVMBRn~ +s(G%8P?y3VchYnoCD +$XeJ&d%*^_Pc2=xi4o)8m%Ee)%#EgZBlgFJVWDzv&@pf>VC(VUQ>L{-AIO%v3bPeahWQQkvC=r!DWhy@pbux0-=ej`-$~M@x%A#O=cQKohRy9}Nj +3Dn{6pd6RU)NXfm2vAjV*&sp!{W)f<9!OyS5)Tfjh^v{5zDNGR%!4^#mNI%xim4YEdd?m0R(!iCU;8s|yDOFzF5fZ +r*fz>Dq9k~&z{pMZO*$iJNj=vWTSAK#$Adll^$PcoU%CB?1)Mhu&p|wT*alD)}0$CII3dBF0CzV*vLl7h7 +JD&ylMf`h$UvS^LC~>a_m3S_5-1JwiC0~ZU5$#>n_aW-LQ?fNT=&|`q^mx>+h60JAMDMa&(X59 +77nm^kkDehL#F^6Qr%y^bpMf~D^;7FJR4{47JiNlNgxj5CA7|WJ@i;d^fFJ6w5}J%yY@BlgDVm`q)CeBpNp918-?9ut#w`JhJSrZ+`Qe;doO)nR9^q +uElcyKVY1-(ENDkFItP2Xp%vE=6;gPN{BWNDXkWmgJEOe?QAZgIljDlVL=A*DB~U4Z}5KbOwbp+=`w| +5@Z=fvhdhBXP=!xzc?;wAO}VQn55EVJF`rT*=2J>9-eXP;=yBox{)*PJ20WS}_HTAG{I=hS0j2=*+am +JY^!aG>(i-=?NqHe}ZUL@%$UNI5=84ZOkLLRoQyDPhEz&IyyuH(HU(N3>qqnWbDtrApb& +J8ToBwp-vE=brBCw_=+W+eJ4Y1cI{&kASu!!Y08{l8K13XN!LeW~*A$+A$o$vAWAMdP4*ZJ7WARmLT1 +;z|=8pd=Xt>=TpyV7aQdt`HOw=CAu32`TuOT4b|BC+RkTfU+sHvdaIZhqi3?(=M}-2~g#G(nGsLym$E +7pZ|SQQwTZgkOiv`wh}9IWMI5myGkm=}r+BIhgK`=Y`%hnSHP!qvcQ^vy+%-nEKVgOd|tCmz|93lZA~ +^P-jIP=yo9s7n0ucjN>9!fcdvFhV6G#8IWh@)jKM_N`3oZ#7~B#OwSYMDb1JF*Ny^TWmv~S4q`ti^rA +lh_lfV)dY(&Z{gelKnoN029|wJ_4ojg+=6OUN|P@8DMt{4nU)rmS~c5qsPzSvM^wSqt_L+DpP`t +tYu`llk|ej53m8AcHlKoHjx_8R^-{xLa{B6F=i$2<#cE*Uv_u{|NTXEQa%dRZKiDIj22u+|{019_1b_ +#I6Fe@X?SMb|XZ`lS&-0;&;FNX;8oV`T?O|5ns1eYFg)9`oz#@Z;ZH4Yqv?ua8HeWmUN9u%&{Akj73k +<`gZH`FzhVd)bABKZD0raI?1hOk`;j&hUbmCjOiX*)jzCcJ4wGyu96%J++z*>64B)YYTIF&r#NT$51P +}!?e|Z+wm*T=_(@*S*n^*?CAHc2epjly8?t8%wX5EK58AlbMs1C!?+mF9I+cGe?0^!Sr$`QmesvhwYd +VjEEzp3H=>7Pd)^a7K-Mdw)!@cU>pGbAU`x(!xM9CX3@*btN1buWn@eN>_floMyPaLAO{JfO%ElndHF +`IY<$EYVBLC-mVxK!{5oO5Lo&zGfCtDE>k6Y+vXoGO&_)yhOVJoP!Y0S%eNe_c<7XI|*t5;v-)Vw>qYlt@ +;8L~T|FTZksT0pnqTMs-_Qbolgp8B(onWk4;~YA|HX>*{GC!dL*!tuDW2Fk*Wx_TlnjOtBuub@L7WO< +cJ{qSb&9!uzM@GCb*pJ+PSZldsmg9=_A?FrX9LmO*db4BBa>O)e_0Sq#q5l1S2M +K>IMh_f?o#+fQoH^FY#-pqB?mD{C&Ysx{(gFDIJW(95hrfKSe*MTd@RcOSg7@rjm4*WdfWkZPtwn5W3 +fFr7KIoK@Kx~C3Gr2R|MYKPU`&?Lc-*6p$)y( +cW28UYvJ~QkhqN9OSY4`-O~Hhjpj$Si^liv~INqxg!<(6X{bW3hS&Oec)ugxT`t71pPL7Pu{=^wK7(i +ZwD49@kS~e@=P$6k_j;K+TxB5Ii)vyY{?cI@rvw=;m4Z +dHIFUnZ;(<)j&9i4I-SZ)pwCmZ7u7thj!t%#Vv?peKSE_pr%xO3o=J{CET=&pFWu%X`A};CJ)YBJ=ww +p+P(Qx^GR4-6m>j?mKCRfj12pb`rFJ1EQ3*qRazuS{FO7?*R7vmk)4DiJeaxcz5tC)lbRHKe4|2=>wY +j5PXHk2o+;l0uxoJ$ROjCmKdggzIHl=vm<+LCsG^IVcVN+|m@bByF`kp#^DWyA2dbmdK5W5h(f7WM)? +egS)ve9&^D_=M6qoc=<6By0tbDB4x>l&~z3GaUzkL%-Ca=jYKY@{1j8oFdOebg`8nlt#hM1~hJfc|t$ +_$iP~*eP^`=_LDP@UwLn(QhD*Q6f0s-lZ?L`v2{ov>3ilFY*<9 +xo4?R++)0>mKhwlK)jL@Sa2HGx>$TB*GqX=0Yoj%8LhKOYvCykw-{m!NzcI+Iefy4q#;IPk7xBLM{r@ +o$cm5Tu%>-L>)hyOwPDpFUyK3SCFQQ(O4~WkMAUl||sO~rs&->F!^xSuPq07Gz7PmTpbxh-N(aR(YzH +HrZ*ni<%!#h_P=KC$8GD?8sa-(`=>RSItCygm$3lK(pJiafp~XoJn5wVcyYgH +N)$0Ld2FS>y@P%0;L8#}3p+Z-ZMp-oLeH-=#$X`D-OBfZCSkX +BXoKuA?$AexemF6on}L9hqjOfv|Uo+pWX@HZ-(`Mk~4 +gx|9R;D;gJ4ErVH(VN|gR9)c=KwXDa-H=E81=)eWTlsFk0m`t-Ba7+}k=T>M|bF$B8`A>*OXVqMz2Cx +!2rb0O{F{$0g|E^ZT^>Xm4&i@j9PZ;PbK6T=OJFwmPiQP~!3!l5H%@1{=Y#f@r>qlY +8pxN>Rk81vKz9$3WeN;gM%HB+DLmbZBf+}^+#B$`Q(yzfY=*4z@#o4aY0f1I+Y0~QoG7x&B~-@^M}(} +Bs{4R|ANHKpDus+;nncD(bIwyH${52@WQ&#Y);*Asb@Pq&m{R}2km#Wh)$>XiddF3Pi*v`$8dU$>f1jep2G*;wLiSP8 +}E$qJVE-+S?EphsQLg`9RMb);6^xjzl*-dvQeg)K~5g+L|H;!DN{AMw(2C +#|Qc})J8N`?<4%tfI*3JT-U)bi3K+5u?@=Tf3$gwgcK?pIr|@% +DZU<3(jmPoclsfQfoJrvsldkc^8Na)~%(0dE@1`$%f_9$c_c+c0VRzB@O`2QKgNr1K54cajx57OO$&S +8K_=rmu59SE1*ZG)pVebabVfJo3T{4@$Bcu$-dnq($Cp%j*Vr@plivaK0atFu8^kRNsK3w0;<8ggzCH +lK)F10OYqixAjAcx+!y~IW>Qc7=I8tK^8s|twL%Uo%!0OPpvn=u|2%@wO;?zK=_S9LYw-7W(bK72hYhOx-S;cUIzm{@c~U +kzK5C=yv9TkIxZG=ZsYg!RL_<_Ylpc*?K-pZ8hb~o~IW0&ue*iQvEoi{$N*vN1=YeM=ML0o43TUt#{! +)JztSr9Qbfoj7L+LFNXfZ23XD%>2fk6)0x84sUn?&()}-@8!*{Erur=OERoWDMCJaI^6Za&1Kbh6=bgf9?3-uvRAM|%*!EW(%*eke>a1_+s*0N29nEvf)A7}O7ZDB5J +XE;^4R`sU$1qxT!(?-;`0-k@@Mj62w`r3n0n)azJaC`IRm$4Y%pTGPN!?56!TH2z7uZUc|_Cz1BobtF +ICaz=yAm$3DxvPva6@J5)u-QKYC^NrpmKBG?9P~l$0y;Q`C-EzGexR~QCG?pKrHse2RcW{1=7}L+f_x +QZ%yX$YkMndMi%UP}{2`U`Eal&FJquKy*LnB(An!&!hd$=GY2!A+p=S_zABD&J>?A(xPIlqk5 +Bu@v6xss~TDvSfM%|}5#TR>cTcqh8*CniD&k3ys_%SMt@yf+wt>fMZFV&aeZor;BWi(@^f`=Q+A(@(Pc~KG4Vc4Ys%sn$=0~WzMI#o{q5_l+sxJX?J1IMwW>wONlw* +ql8G<2$);M>tnuLD;X&m!45btiV)AyCEp7tMK1M%>NG~rLvMs4|y*vEoAR^j +*f+-7-uEX%!@?+>Zt`@~hh`8zmf@GH7W#?r&Xv?ck_T!_IM%4OtcLnxrB +D0Pnu1#RhDb9Pv@dn?xahUe?}-Oz6Ay--m&4Ol7Zi;tb--Y1Uz$^}l4yYaA&J_JG*wi;p%0P{?As^oO +*fmQr9M+UzvE2?{^k9=59#B5cyzDW%Pfb>sc%qaan(tT^FPs7A_!2{oRoF#&S7gnCy#DNpD1k3%W-E@Kz%wr1NKRV{t=0*JRax8X~c|xPuB +@Waelc^@UEJftisgoY&PGi7SjBy!5l(tddL{uU;O==HBKqj0-9sa)`a-v8n((`^nQ!l;KUxdL7YjHAJ +EU|+rRe{zW2i>%Kh+9i2s_(9CJi$*r7_2dFJ%ki5D$$w3FUQJO|^+ZE*WrdA{wCq2AfXe^+A-91y=T7 +A9S;sG{G7i~;}nEOv1+Ujr+oaX&Jo<#pqZh1xXqeVnt3xg6Q9VQNT?m@ZZCZQi=+|SxS +I4;)H_?(zhNWyuhYuLX_ZIsaHsOip_(sP8LL4@>4$1{(z4@S2`{KNRU> +SKjmgjAESkn-M|@*BWO0no-G34?(_YwpC*N|W%El^xM?AIi2{o`MPObOhPVYBrfc6+3 +!wv0vO2>k)e1ZkG#<1OdAO58pc%H{VVx2b(YAu<`tP^Dzd5aa1_h%t_ajvju8u48HY!!DiUne>s&OPT +9^c&@7PZMS3hNSyJwEqr?*%b4ry*C1 +~Em!_)^U@f-)Kpj1SeMPqQrj9My0=*BvPfm6B{zw^pp4-zXth4cfdq;0S!tLJj-1M8|z0QqOQk!Wn3; +WqMcL3L$rH&kq$GO(I$BIafT +pusuN20v+kn-}WyiQu{ZmQcTFKsRB0KLCP`+JYvRgW|G@VT7UYa@C!QayT*7^FV>}Lp)fEjo)(k2eTSM0+u=qMZ5n1A;Pks@HNv*rDNf{1Kri*z_~ +HUwt%DCO5IIJbjcj=q;FWn!R{=1R2>BdP7jamM)Qw;KRqJ&+Ug +kAiSz#aLq!FoA4U{y=pX*^4~$_?4UIJ-k?6x{H&(AxN +%J5ZR`^L_P#U8+5SIX(OSOsf!1>7yb+h!uv1L-0>{8SUkx~u)Igb8^^LI6MUV%!9pQ2Sw|&IEr|NcCp +?Vs0h!XQspP9Kie})}twuD$d7GE@+k}W14xA`qw@f;6g1iGgPKTeeWL-?vE)3fB@vrTxGM$giM&mP7z +J3X@ppEcsyOnNpm`0PPEn?=uN1)trAXP3~kOM=hp@GPI6^1ABp%s-2|2qaU;fFnoK}!1-alob|Du{YII0#ChHvFDKs9J +6^sCYgUxG*y4EwWtJBQj#3#_w-g6P@cs4Tz!1LwvpDe4@I?RYJ9OJJ$atkOY(L3#off9nTYyJI-;n#U +FESJ9lJp@yvENL50$3z?pDCHjgr4}j@O!t~n2xh^g}(UZ7jYiO_MgGow;``9cCYSx`T#^KA^tSJL#KTt>OEY5C}6X_huYmSxLoNoQr7)c|6fMbj@ +h9@RQEP_6SW6Y(z0A=opx?!g%m>m>crhjW>#2e?gTr-`XJXUdy`wMKdGLClN$!r#T~@1DmyDo4@(OZ4 +qpFEGJSt{d1<-y@z7Q1+i0qIa8s^C9m)jo&{IzfaKbD$4U2z8_Nq3rOxnThobl_w9`FtR_D64$gdJ&` +yAGB_j%!q|MXBeZ~L5fEc?8648#*3 +46cb~7g!U^F0dw+U0_WtyTF=Q_CH(`%f7&xSazW`@mrF=BITaDJ`u8@ewO-{ah3{wVhhOw6{NSoj{V^ +waSkN`-(s=sv5GkLUcCGHP;_jB(ZPwh4mei?-Y@vIjX}Rk88K{0lQ_?1+?KST#(uS?alDAFwD*zR<-? +taTgTIYUWT&~ypPia_JJV}hvAe)*hlK|$~gX~zzlz<6)}chqBi{QgK)oo#7*whF)NaiMSqQbVfVVUZN +i5r)jKm;=rHg<{&w=sXK-h;ljLda8I5vE^MC(N$iI=YdWb&1*_0L3=Rs$d7znE;<0eQ`qid&x2glO*F+fY-@pQi8G;9v)FzY@ea(l +d#Rjv#>)}7sgN;%mr7;qcg@1yYa3~zazfABqVbc->{l@-;FoXMsGlagJj!Ch +B$?#jI>2tV3@RQBa@P2WglgYwkUyskP5PpVtFZ%f!c?w}N;?4il^E!hLZDtK%^jt`_mi9F>gww>WMU|1rnmAHdhtj% +*LhVjfHA{}s%m$1i`24Q7iNz4%StK@9FT@XHTLZzIegdQ;CaB6`?MD +LIxQl4!=`61^(lkW!RHA$)J_`HQ!>9#dwROWu~BlfNd~mi9C%GOy><(Y{lPePtcuq60n%B~Pe0_|Sxx +1pId9uZ#>n48det(vhQD%ZzEN?}c>c8=~LtBx=tz=Hu@reowR6JZ}lVC$l7(o6G2b_5 +3A)68i0($^yXE#rf~@SQc1HeMGEww97AZ93$TLENVO2X54T78nM!;e4Nj}epJZX;6K?RaqU+SZwIzym +yWp{`5t41cj%{UOdIc~X)K=lDf+kLoL1S%`^S8Ts7|9jV;|v6wz2#-9QReni!lki1o#aYF;#G8#pKaN +e2#Ws=fn9nd_v5^7U->Lu@-Z(L@Yj4vL|DmI77fHXzLeG&$In%i9 +Pm6ptu@48f*tqZDq6F|TQDbn5mMjPJ%-*hXrP5gRO>+GE6!I!pWInkBQE +&n{$vp;_i_qv;$UI^e&81zhwT_;NWMvsf9YC%4g@&3prgB~Nv)u=~{Fh0Qh2+ft#IlFn*@j;>^k3}4E +8vO~luLp$I{W1@EWe-+m;_xEk(56WGIuo+n{S!;iQ7(kR?va-s#^{&xGoIg-IUETAVhh|OP<_vTd(ms +}pd&j-0tgeiBq@Q@~UWwHuNGZK<#EBSNNZTXDdYl2Z(7bQB;BrcTKuRoY>&_o(w!z*__P8WdFVYRu?- +3=@d0BvY+||SUzP2Ql6+A(5Fz)`~(>;&YGVJD$AYW=%L8+8z<@eQ6TCICuPC+f~afmLc8}=V&$=W=8$ +yD5FdX@)R;a8|E)T!-KIuI-DU=pjty>3C0+b%b#{f7_3ZyUC>GzVfiCiOE_sl=aYZNjgyT2>3upR|2L +1wDwp)15t1I}MnrtWNuLOox-oDy7e@NgG9Zvn3B~1ySCcdU*rMB#XV2-waxrqf&S^Y%AwKzBR@Wqp7_I(=tllU)v|Jtob +|o7xH#45frLx@krm_(u31z0zJUL100(60%x|8Op|5w*{3}34HRN8A`L)0d*W5BVp=yPZv=2!Lcf;WN7 +(w);hLUXBx=Fw|w)h)}Vgpm>A(Qe6R^;7wfKN9sazD4uU5}b!gnBQ|HOEbzsey^V2O6j2UARYM9&@AF +h^nNM*-$?BqqH;%^)@`nnA|@-wJU$9<9k4PV=;&XvSlovfMVvLos{vs06EE^Ceg48{P0{R0@+i+0*^P +ZSJulARz+2(lY4BH#>W}2H&;c+%Rxh5_41Nn4e-ZJtow2O))JlP~`2>yYvGwcwhF8vS#(TtwMJ!RwsU +kfVoK<3lSurdLekf+*2M&_S5ZfqKN-GhBrq-wP6AbEG&&Rst(xhR3hiy-2?}f}W6lXAnI@Y56i_GRfMj5Dm +w9qPMC1gV{4Yz;82Rz&?7K>mknFGRwt&{0?YIX{6%ZX2gcuDci~nx)10vKsdcq5R1`fCB46P1JzY6r< +V;8&Cx!@NbHBK9=Y~)T7&L4>GWRq+~=Ps|4-t=-!>rP7_JzY7#H4J$-&i8E?Gu`SD>dG%t_urunEyT%J3wV^qJB#&Y4?ovhbq9|-D*&*=628vZjv +?t1zvqJ>?T|6C6~Fq%O$IZg83@T`n&l^=E$y3Z>~+!u*-T+$~hZyt+ZgqW%AEIS|ZuZ?)C>j%)+H0O) +J|2MH*lr=LK3kYI +p&&$+7Zw31;_JkJ}>M5LZ7`$&tfB<74Y+H768_~|7GS;Q@Otj@Gknmb9j4o-g>y-z`xMrpaJ(XvOfz+ +kAInCx(9}VV`El*@G~f-vaqK8@v6_IusmAhzDD>j*;pNXwHglw=k=Z=S8-2PC`* +frZ>!f{x$BLcqNJcDDoWDK$lGaj5b>FMoX1~krm807?A$I!EI(58k=+USPxJaS<(kX!r;uN}OSK)B-X +#Tx6meC-m)?f`l--MpF`F)yC$=p`kXO>cHiuKq9)pDw(C`qlm68Z!`gQk6~SY76*Pr3)^e%VdpH_lkI +rDFaYcI2%(#@s?F#rX-=PZezAO%_LN0+$hfqT^(ty$zOW_hga|06$oN;=e6=Cr@puc+MTVZYpr8(w!F%@_A +QR^;+=*$CWL1=p3-?1}$*@iTgZ90?l`l86DE}TG(Hrf6$$RyfEEabdcKvb;=>nt~|(fm}k)E-Tx4NWW +a9iSm&ttJAA>u%#!zMZT!9#X9`dLBRE%Ke>HSayu(KX#zcUABaYM-NyrT+iB3CS%5A=b +cPHtSHB-=*s(j#?n5B#bz%tp&Ts)syisyN@lH4Kw$1Xshwz5q9e++*g4W}~NoV(>kfk%jW7re&_%A3_ +8JQe(O{LGPfDtM^L+*m$$klXjytRVTaET+JahaM~Xhq(U)HWl_poD<`I+>t2rvEBW5vHsJ*l;S)`>y_gu6CYycuRj2PIU{D_?N$+&jM07+T;nOu*&;^UGwN7y?FH{Eqv2HSG46$c&&6@R1B%S+I7 +Iu~pc3PREOD`>wG7ku$s!u3Icf)Vl%-}B=l}Cvb67`>nFY|l`~NQHAogrG?OAK}{+)xbRkzmC2;Arx; +oo<6MB01sU*GpXKnQpvN!20vn4LmTql{FLT*%a +d*SI^#yMMiUCsyAYjbcXqX842#%gGh>PsLVkR6M?B%v1Zd5%jg-^ia|&yrEbb;=AU>Nw?KK7Mw_aiT= +IMtRr+Hq!oX%oWTN%ok&>gzoQisr+h^wXn};>+yA`QU5!s-=`d^kkurk{o<^kN|`95VSdV#FIv6Eo{# +*IvPBMjk0p7$oc_jxB`XYFGk6btqylQoCdyOB=~O#f%HJn!EBcTXE|g69DElH!*I7vp!hhRa923HM7u7$!5-}}RV +D1+3dAUL2^HQ9(q&NrZzcD|5JH~xyeJJZ*?%!^59>spUR^9R=YIBFI<2O+ovUU8Xp(R~~Wz?Q_dRP77 +#I{~W?>3$!x)xU~b>fVZc!8DXrAx9bb)RH~4#ivp*=LoMkq_FSoXB}Gm*`PFDEtRqM2{YlYs_4Rq5Yr +ai!HJGeALIwm=B?Iy!!!`jJa*hQ_N9geu5uhZbr_X)qfM?b-^~#d_kK)<9ld)X-`j|EDy#tGu7~6@0k +=6#Sc7j+OrQ4&pAx|0mHSt=iUr +;GG2oOAQNI!^q@xj4t#wvcWlvAS7GYb&tOxxPnjzTTpr+tWTmyrGlt$I^`24#);^>{uy{xrO9%6Wdn4 +JC5x)R5hK)S(E7hDE|L@>OJ6fPWT6B2*0YLtEb(AJr4BDhR@TOqi%?3yc +B6J5?BI7+17iYC;7+r(taYVomr6eP+Y|$v26d{nzq{|NjMuS1P(RY2 +w4r^PyIELwv*c@8!>-z_Opw}MkD&YLvsD|ZT3sB|HiScz`-(}KgsW`SYt@*ON?lz40>%)qo)Hrb +c5<%ImKTsrot&!M+Tgwk_^O}$Q$VDWE)HUSgxbGuZIo#) +h`dkLxg7~zkH*rF}4J6yS(^%!BlC`W&N~|4L5}YI4e_!2#x=ZN$a;hJ{r_%R9X=*LxZQwR6r}Vh<^>S +Go`aP?}-C3fI<@$+s!0W$!P0b#^N&L>E-)IwX1zt<)`noA~X&FB^rM6ZkHQP<}JWaBd;XJ70k^}ahth +eo#lgzq%*4uWCOaCSwd|)Fp(b;G>oCPqm970e +Tmvu8YAf1Lv0&YSO8@vQkfsbGvC|Xe@_i~=NxE#irR3HgbhSf}>?hSJrnowDsH-Zh! +Mu>C>5tC_jENJ<=ellbCN$=aJkYh()TmzXn%C3>k$G}q^glloOMkIEo9&PwyaFU49D_&mCM&nNuuJ+Z +b#N-V3L)7)xWbJ-qEim#mw`@`ZdjbLxYo#;nI11h(#o$`9AT;vC4rkTo^yT-ML+YwN{?Bco27HMj;h0 +3{!>cSle+IWO`Z4c#3X-aAS1=0Ie`rLV3%f~uvro6+7)d@cc8TLyjkU8Mt(d6O@V*S*AncHBJi)>x-XpTd=UTIB{>$n8z;`Qa7Kf3AdYR5sM{ +zevARK7VB5%93q0bkW`_5b1H?Pmvpk#!60hfYHnOz9Gpfe}k_YE|P8z?v=a1)mp7N=UJnm=tX9~6DjQ +SYv$AN3jq`Q7*8C%^yq{n7mo}+#?q_DySd7uxpH@%@gHl#e#N_tK+`gkL3?j^T-c78{rgM8jgp0eD87^Sm+~(Q?o0B7?vwxt>ahiz_mZX-JZIsMq7UG4=;mfUT{CbCEwHCc0)g?5sBvT +yCG2&;~KY&-CPwx)CDb>+>to#j?`Fb2%)<%38F?ijyuFX95gSB=&{LZP~uihr?%wR83q(Ar5bJJ~tC* +rKjB*j?vNwF5ooLBAHS%0!GCB8dCX=-k}Y!CJtl#jVNQl|P~Lm9Y9^&#I;TAS!w(QVm#1XfOBE%2W3{ +uI#}dpo~(qTfHE@6$76->5_Oy${*?O`_YI|DSHr==L0?HR$#%Y&riz>z3x7f7P7u`FgwA=U-{|y>1rs +^(ejnn9AKpbG2QcuY;!W`MQy4hjnEl`hlL2G&B?KiYV>yrET_Gbee6XJ{au*R^>jTT@hpz=+B5L5kj} +6I(^U{gPx#?OQ$FLUsCT*5zlh=z<&Z|8FV_L(+PCw`5wumBonM&7hAD@-8$h9_Uu&8FMdsWZ!$~fI3Q +U)b~o{sVS0X=_Po;Da`#}K$!pj3`$rVt&Un^2u*&3F{%`TeNLQ{Lq;$W3QftY_oeK5Yo%FaJ^9l2-PgcfzNga(W3f2t;J4zqVxyYx-6zOw%Av4Gt2l<*65=4b?w{iv^U?@pj7y#v +)oeR)jhP`F~s1%lhb{E{idwk-)VhARoN5IvZ}>IGF0C)&v2-mS(0nJo +m(1p7)og3Ni|9Huvcv~kxqYszwIPRN=DNiY_Av{Z`v>5kCs1Eess1tS2SlP5VR@Y8#I<1(UNSD +%}_Rpd@BFm&B(cHisfnJ39k@qCdV42OJv6=ck?Y$s|;;()mr1QdnmfJvO4-ot +pk@FU0!%G`H}3gz87XR?gql%Ky`E(D@Gi|Ci>s*dgD4n7q-Bc?16R^LUo~&0D{{CysQGgCsk3(>xzKp +62O+zIWT@d;C=XeCiKm#iPm;;AxcK8Ow6_5*_(n3i5!zQ69%_^Y-}J6f1PCAa6ly7h@TOIfeNeNEpoWzF}HOuEcMYuggXa-kz)?Y}FB&T +GpTn%6l}a9;0J!sj*i2S4@mz^ssRiBEh*YV33Kaua#Eo5ssc3znNj%}2>5iggX@p6fuFp1U%l +~1~J`WYp)tfZlRTL$G%r+(ir_{Ce`7g{U$Ma#d$FRprOoL{^ZjbGgUM09>(@YP@F`~nyww?y&_>PvLG +2K!%~9MXRl-v2a83x3*+d)%9F*Cgu1nxZz?NbcrsIz{{f=@#nz;*g}zH7d*C7da7gZH)LwOvqf@_M+B +u>aNn9iV$9LAe2{(_a%~71pD#^=M`xoydq8T3d$>Z1^uVrL0*wYyyC~4SG+>JB2DKNe+=UlX|;oKVm% +&!974R}6qUaqf>%5o#w*hPC0^0<(38X~<~H|SmO#AX3gQ)0C-90>IHK1<&Mz`eL4MIh`~qY6(z*~{VT>P@=ktb--=j2sTMq=sZ!X4<<_zWuWG9j#$9ctR*;JPPk +(Or~=M%SD%i=9%&4;uJd}5O#_{8=>t@6i%S~#Eh0`s|43eM+QQuO(J>b#bYww|DGF`q?j9F5lFA(|U_ +)F#y(*r0UXKai-@ZybNVIuMM4J +*&o+45w8%EnGu}o@`vA2OeP|@UfHIuoT`b8(Z9}{K4mB_gTg+JI>tv&gpc~>0Ve?~cc8hGW`e* +alANz}nog+AJ$eHhM&6Q?wyWBkb-cEDnW1`t}R+jNqQ#hY}!@_Qj&S$3t`zTM&XAC}jp>Ze<8Hc}|(O +S@!M5(cSL}AV!$|+?BX$^mr-e&)Z`s-Tz+%}E$g#@a5(^{pXgyx(%@kVQHthubFnGNx?OH!kk(qeoYIT(9CO&Q92&>$Zg*>nl)`B;cv`FUD{3Lmjln;T$G6%28&rX9y^?vF +V+78ow&60*&L=KxZx+qApr})8VXw7bg>#uVUVr`d=(r*xwl;h-jd)GCZv_VaQ||=Ns;_;)uu}^^GY39 +ZV{*kAn&Xv5e5Sn}L|fvc2KMw8YWt6&=@aimT5$znJ~;sw;e_x0FKzT@0qv#}3+p0V|PrN^fF9 +(o^GGXhWR7w>bMod9C?z+YL!?Xic&?LjOa+<%C7Y2h(_?qMF%%>rm2kJm$GAr_G%5IVMJ9F(XPenEY(Hp!mexQyV_Y$n#$l$wL3#e>qVXJbI7L#o`!wXSaE;K+O%y(ov +W!W!FuiE^}?6t2-O7~yXA_F*Ht5>^a|gtu0q_)l}N0x`k15OMye~k4;d56GTOad5$(QFnY`T-%d$l+> +xPn$A=dtX6I8}}Kw5Z&J(TH|iXpndiiNKZ^`^J!XpyXCary;KKq8(j^Nc~ZyoJPBJ_YL_A# +eMAw-5S+h%JIPspZd`H(|P?}=e1m5HS;#}Ja!% +;g#W`~?fw??V{%iya``9X`_v)KNTudxnFzyB=l5pxe|&;L$V18Zo0&(;k5GQqQm-|yZ|pJ +L%tUXK3aKAdFM&Xx2WciXt5C;5s0w!a->|L+U#C0PH6J3U1E&@l0l8yV|G{88N9x~oSDTr@82#E*gBw +2{V#`|umjnRs4JbuPu74ZUAVbvIz`oYi)toE_ZGQfhY4T4I*Q^20n1Co4SFACx;E^@%voe+$`n{?H+? +pP;9}{@lD)-BQ%Vjx8o$16iYp=8U6B_;}_pwXhoa=9F$8&cDZ&^kUS4dx>Or=3Jx}xT-H +J$RS>A*3-}BGAZ*QZ4TwBp|shQ2l&#s|2I<}q~~`n8<=NDM-bn*>S=*LBKCXW0qyMwjlsy{gc2=Y><` +kt!Y42-XHxnKP3z=)u!eYxGPmjYDaqeQfOTzFeXxa~eP=($6>-}!KiXvL2=4n_68!EGI6iGDO&^zR?K +Mm4V>Pn5SEY0pw1XMPZ=QUAS>7RVn$IlZcJt2b_&jHI=+{|cBgkVipHkwSh(jKXx0vevwSssz!FY@J1 +M`~ZaC)NZD_N!boDyPCKn4+bT#&nplQ!B#3`X3mq&tg;wU$wm1=i@ex*H$|H#BSs#pK%f_~YfDhs#yk +A^fyXP(M}!hf)@PI^WmrGT+v5xnO^|RmbImjmq0r;ISe$q|IxzOW<&&JMGlAE=#z45{@kf+?MH1+z)M +eU)ZkQY-YKI^1tWj)AwFEt@d@2!>^?^9WLXfIV1CL(DUCL&+>rZ+`cZH2A|h|v)=#XOTux)*0Tm)DTRvVEb;T_HEZ?HEwrC=^%p|G1X2fEYG0L$3wauAL7tO!6f_YyIKo;!x59p9r3=A-e3Q&u= +`t1^Ad91AKEW0(}2F9DexLX>x2G{`W8@mA4d99%m`wGVEzZVts3(pp3o@G`O|#Pi+J@X5c`+r{?jBgl +g{A#h~~*ZNj@c7c}Z4v`W5CA@v}0VJO=9#UDctY(_;sps=_2tivC;dIYur0y5L2TI|-nw{Cd%*6t +z97%Z-@|#%V`lCz#9%}67E8P?V20oR4q-oN#9W$SUlavDXDgKt+2FaqYc0S**~0(Zy#F}BeI{%T>)A6 +U3Xe1Nsi{fv+(-3wO}UQyZ_!%v8afHbX_wh)PUOSh4WAs$<2( +DpF_j{1UqbOd2WGQ+n&4YW{>VL4A@J?NbDx$)jNtJ&s#;rlcsz!Q`pyaA58DTuZOrLc`UKVs=BMHR(M +8W-7raGgy<<##T#oYkUe{V0;?!ei(ktNKH*3chy +Dn=v&mPnLE@=H{(EC*{W%lAZ>i8BgmM9<6%DcAMKh@I$&nU4^w?j`AHoYl*!uA(*oYn^{4EW00yw%h; +_>aTh`RUgM77*Ht`)=F?^=sO5BF>d)&xStT{+!27O?75H$IqKSHLVEZLu8)U@=os$)+gp+xJ~ni`vo4 +y(fy(=qK8wH#FvoUnViF-a{=J%aF`65GNS(9@uaOMtULEGVNu{_Xqjkspo{O8!vcO=fCM`u-4 +~+ALur7hVDIZ?$dM8@B~R#5cwqfj^k|(%NJ=^4FA0(o>ujdzOt43)saj;OnZPTu{`*%yJQh#3+K#3=> +l&UK0$aEia8v5E)ZD{%0$_3Yn*@P`AO!(e^EXQWGAr&@a1|B?@68-mPDU}*lFSAPhsEunfd%DeLXohJ +_a2KJ`o4s5H>pl$`tQbnb|&09DQyMY$|CDBQCY9X?-OeyG!;+AFwMB(|(20Sbi0yJs40wL;tR$^xviD +OOXD&)(2mc$Z9s2$$ef~h7$L7|}bSu=xwN;O +8nQ_m|tE9Vr=DF&@nf1<9Gas-#G_&8rzENPUpP717<^N{yT>zpg-v0493&;YRh&S@aYF-dU@fvwq7w` +g#h=7V|$pQv8=GHuvGrf%sg{;_XyVed*Ao}eg +FU8dvN{iXP%j7o_S`@oO5Po=LGD5?{CK?26P5~JUlU=>3e%XH%K4nv#eMCwEF_)rr#fs1RuKZt6Ei8a +|Z6K=yD!(ut9j+$xeWY%~JNRbxs@$7>bXglRKTA^k +JP7!-l-%pkLj^Sr;IqKs=(l`9&!KC!ql2XO(~LLT&!p=fLm^H(N#gHw3md-9?rrJim!Ex|@#SOIbsA& +u73%@IX3q?m1-J-4&vmo*vH^CVmJo0^l2>jAKl%%_^I9f(J$`k7d85&?IJJ#l9~%0SF(Q9LtVnw&U^Tluy;hjy?0GJ65w|S>E+j+^z +`#2J^b2`?tawwbggEfJ4qZQsaL7tadaWH_00r)rYV6oTeuN?vW?p5LzV+yy^)U1`xF$^KsmNi-b}f!p +e9OiNb93<$bCpr%^3(2@_~RslE*fmx~FR*C7;jL6T5#!%h;SWf%UhZU}t-<^A51H9oQK_x?8A^ecVW* +TJl-tO?t$8`4-enWBOKZq_$C;!H3MYNK(M;248NYwygqgWN}w<+a!l=)TV)$e^PUEGtD2aUEAn7ZT8L +yxF4kNL#J!j>Dq5~#--50=H^k#>ynj_qNJM>uLY>do4Cha8QHH|=S6>Cg}==a&xfh-q4Ofi?EbKn-Tx +-tbic-a!-4y7I`_kH-%>B%~Cdo;`j{^eZR>q_oq(#bh5Z%ZtR{Np1+Igz($%5e=oa@KdaLBi_ +$#+`1>^Ieb>|O^j-3!miCyFWIimQcu~g%~B5w)fG)bM-$R+xF{cO`vlH +W(EXH}s8|SV_nk2kN!U8E8+{`k)w4G{vr#feF_aH5 +FR_4zN@;Jg$MX~vT!woCyurg&1eGs#5yMH<+m3&{T(t<71TVz!n*s>aWL`R{hP~sT5o-Sbi)90gW9}$ +E8lM~UriG0e8`PJT~e;)R8zA5V-1{(yk1wo*sPP`z}F^p5(^+^c|^ipZAeBVZNq +g4{Sfwv7omD8PV`C*>~YCvaTNP0r@+G=$3%&|yOV +uQ(3e~ZAUDG3eQOF?ch@KE-9w}39u)m)Sb**Z^&91VD5v}UfR0i0yQl63-Op<_l(}Jm?nZ0x116g*Sp +BNW^xbr=v}pHjSU=&kzdC#F#%FkF2XqV~fd0+|d{5s2@Q0iGHaZ?d$0F%ICzl}nYA@nHp&i-xG1MO&1 +6>b1(u4jsoD7fhpy6s3ezm6v55RE3!V~21UKsAn!uRwL;XN_jpM`gl!+WrBxUawVBb`sU5qY$fzE`B< +z#zC5P5mD37Y4)mR|w~6sTYs;6N?vhw35ba?;Niui&yF8tZypU=i?l&R}1>4aebc7@d8@V7tQs#4Ge< +5Xavxp5$PGP+;%-<<20K+s+VT6TI8@%CukM6U(0Qz6LK7Rr9zjTj<1SzRSQ1Devshd@v}uJO6Di$XMLoXi +skfKGj{z06v?pYs>ELXY9@6G^%tT#C9MbFu9(`H|jAxKL +cGWgIUUVc&-0~mscsfu&*Oux8^Z>Y8~5^cA=T>rZTQ|j5qxh!KE}%5Psnt7(ce>OMpM6fUCVt6p4TzV +AHx3sVKzCe5ZVC`v+^)r7Z$qL23^a>_P6jNY#$0Z-`GCCEWXFW-QL^>HIxT>EPRVTi_&} +4DE7NoIwlM8e#>BbH^BW?>`dJUWh(LkT}wZ6pzg+-D(E}u9uA5z9_Ys_*1`v#(2 +KwQLFiW%nk5;-WPnXiRw;-?}0e)y8P&Ny8J-Ndo|r38=eJ5dTYqKD +Ck=z=m!2k*Lbixp!?ndKhLhUd>s-gA?v2TMAp5`_eQU2?Y%k)&CNvxDzc95PnLx9EA9AifY<3&>VHw$ +H~d|5Y+jMpnYyoT-=&8#psf-4x7Nz{<*11+|MjTVe9WHBM?kr@74mX{&2*hOoePW{rpu?}4gtaHMdEj +$&g0h^J=i;1_YHz`IIuFaX(9L!?$`enBuT4vy~&Y^lICZ{e(W?IJp0x3_N4c%755Z&0DrY5em<9%KDA +Kgf45nx7_V;IGrlb;c&e~p<;D&hH8I1zH8D|IbqqWUd{4(TqB>NZr1vV3TK^a?_&!jQIz*{L?+%1IN@ +^FmI+y--wsF~0MUw7Dq*u@QcA%@2>$+o@x8{z4sEgkJL_&J{TvgC6YPAv4WrdM-MIQUd(R@S3l$q2J7 +oH>bK)RSf`klTn1JZaebBkyDe4`D6z=nkoRu~qvnuL)fvq3hptrX)4*zaCGCDizldex#MSp7#xIiLT>f8!9I{FZS-{HajqP0Jx)nS-M)8jV=H}!!P(oSM_aF*eB(B80=ONAZ) +XS8#b>vX(|7WGbQ?Lnp1*TDJK-EC#P=ucyj?u-Mfmv+_d+fM7B?w=^}{S!0TyRG^DiEZWm6WhA(p +9tklxs5-?dAyCy)sX2b^(Hz1ZGmLncR{2uX7MBl-vA8|NhIO4sC8Hjm^ +MTlDv-$p!$_%&iZ;xCAw4#W6}rHGpl*C6I0rXt26h9dStbVocG%<(khRYdP09Qz`UK}a+i?;{>Vyo~5Q6#a-e5>ba3hj>4t1@SS&O^9WPA0yTvo<{s0(Juu3fH)X&4B|w@*@zj4d5EhJHz0 +09d>63_@oU6$h(95U<1zH}2E-k~uJUN)V-Wizc0rtvn59V9*q`VmC$1jp%Eb{nf`>OER?OtsWS1Bg-X +*n|u4D&~*RY(+o8ns5uRMIGs#v@-MBi}NbYk2v9;VO6E;VM@vcv}VcRiy8v;Qk8 +UL%}r)-dDi`6@2gxSAT^l_((U}RE0G5vZ$RE3x$iF5^dZRG3xDl$_4h>N9>RZ$_({85?R#XGYyVTU%h +lf{$nQX2rm&}amuvYOk@pk+dV}-6!rnJr_zUk_p5af5ZqF>p+Df=ho`K{~^l>L*k{l{YdoslnCkgT^FQic0~ +r=%KEvH;C`Yl=S05pK1m0?(4UEyHMa1T0vPrnlOh`C>zgEyp54KyQ{H3lI@b!)0! +^Sw@cpv>2>5i!sF}!tEw~mNDIANM&3|X+bn5L$0t}lWNE^*bHPmeAjBBzZpkJZ}>hQ0(!$|-hDh?j@e ++*gT3^7u$H%qcGQzs4}Nw$2mAty})lccO15NND6z0H`SNw@1QsZ5qc- +C|02#9K`38@vMHc3MFLL^!K1?k-56jFFUTNYmT1Y?_oDlMrZ9vU03;3$rbWwgvrd(xZOo9h3Ddc*aAn!sD+VHS%%9}{9wq!F^Qq-5kPRcj)0vdygB%}8DdMb|__xt#J%(wlNj`Pn&ks|M=FU^PQ)l%0kL +y>}7UH)m9aJ6{Kthx0Yqt(EkGtDM4}pPf9M(7hE@w}Q^;oewt!sugja?NgS`nG2gKdODTSId9JvbP(d +W*A{k&^v-rE%iwH}b9!fcob6JULs_4#9c`RY-3o81E}hYnILhwn^dYTqqDbGGjmq*XIG;tUnk2nYQ&&9m6Fg%;^XJRwq&z2U +nwE%5hj<^EDA4WZoV0vh$?2LI4`AcZWR?O!$41Wjh`V!^GQ9jq5KO^~jI@%~bO7`*ktV7hi%P|SD4AJ +*J3`Z9d^j9nLUrvAL^qzEG#tLC4I<0PM;4UDPYI{S$SxBD+^77uv@+Ucj6}CB|nx&Sl}Bx+s4DwpfSe;dDFuU<3&eI*PCUloWkkjuptH>5fgHvBcdkKH +1ygVW;Vy>WEoTP!5X|NN-$WmjV3)+KHXr;$YBGBDewokOJo*FAd|sEp;$h_hmp}FnoI&7L!#iSJ%daH +_P>YbmcKyx?^fBZf00moxBGjfg+JFA%botDfB5H|eudMY>L31zw3>gn`~U4n!SWRkKl12fj~A|7wfc! +C*Q_mC_tewtpV{zi@pBuW-}J(Zn@e8W^77VKUVW|f^=;dC?A-N6*_*rH+OzlVcgpv@``-H>eE3nt{*M +nF{N&TmDi3}Buc|M;JY0RG=IF7nzCK=i;^a4{zCC@W?(Dhq^%uUo*l_9lA1?p+)6b1pe);w4Z@>T1bn +VZ-uHU%XOeB??yGI*OwU@U~+je)f_wC@ju8r7~_96cXZk_YC&@i|4Zyu@rF!Vj1Ed#B#*<5f +36(Bi14|AYMfzRX9(N=!@71(I2q~q6V=qVj$vR#1O=hh@prM*h#Q6&SsfbyKHpBwNBE(|EQp7!o< +%kuC)rbvMuJiRx$jKKto`L9#=#QvD3`7h;)FH+qCL!h_79o}(mLpamRw7m-)*{v+HXt@4HX)KP(OyJf +M1RCUL>*%6m#+Ggked+;5Q`8?5z7&)5$h2zBQ}Zr4`V$e#v;bsO=NnGi6p@D#~ec{NyxC1$rdAt*W0K +pRi96&oFP3Ro|O`aYvSK9Ji~4g6w=EA&||kCn+oUOWJ5BUuD8H*hy^g8OojZX+OtTQJ)OiG%w$H2jl| +?ECKC<(kqXk-^_F~^&ceRHF`dqw5&A4+G1BKo(7_&_Ko66HF1r;c^gyT0kezI>pq-#Uhcd{+Ihf`r^R +VgQpXoe&`t+fxsYCNcF-a;MgEiCP(9kdW`6!Bv9Fv_rhK?{}zU=uF(zEAe`ol3hp+?Su|5F*yfDrH%8 +xx@M=~J~xM@QYbUY_2;xgM(=!u6S4!icQjq6iiFIl_3pG^T63slZGuzJVk&JM?T!HH?i=ah}iO@p4XO +vkp{lC+SSDfsMt^VB;FluR=K%Q$Mqj5TW1BwC2nCSe!!8|BTb|Cw}n!jq-Q_&)?u=H?_l&p4($*;}%4 +=i;uhTaY<|!%+4G+jN7Y>CG2+%4#3FLLr<0-J(^U9B-^rd-{2L5c`sw(mkwfzF584y_je%UU;eR +WUn-%0q$3teZ@o;)91pfp>sbi5ZVIy@BU_U=H*{ItzHjeI)C$MpJJ4ls>=yw~x<^6-0mux~V=3U5X&c +$4j8o8M7^hYk{A2rCuTwWk@F}D+fT+HW$A{Xm;b;!lsRU~pT)*g$z9r8rvVx3+RaX$UBJqF+V?{A9+XQ)fm4M@ +;c<5kvAgmBK&t2`v>7a_@H<{z2Yb_y>6(;UDC83I8DP +E6R_&pC~`_{-XTI2Z-{Y!~Q{(A9;`{Kk`AM{KyB3@*@vMo``%X@(kp|k>?>FiM$Z`DCEV+M7*77Wo+D4amnLZ$hp`u0D_b4RU|vI^==K!;ps}k3b%Ye4?mtKpkqQQyd;MSUZW5%rCHhNy4kv7)}~Igb~F3OKw!W +)nxj>sF4cM>;17qCA-?u)z|at-pH$U~72MjnZLEb=7eT +2UV45y%UWXCf~~F5wMTDROt@<;XpeS0eX9UW?otc?0sc$eToYkgLB#dy#99XCeSmd6_ +laPBMHzW5(UVywU@*?Ejke3L1ke7-4@dmF#^dm16`jM9i{dhxJCiEk(5c-i<3w_Azgg)d=LZ60nbpz@{?vLCXc_8w!$U~7!c!L +=!(j!k4>5*rM^vLr>di>=^p-7LsSfoc@D&pe}X1R!uyi&wRUMu3`0APcNkGx65N3Onv@ke6$k$WKzMD +C3|RK&*{)JP#mo+#wwu>3-fJWt4VSbiZ#UMx7?kd_J_iRBkO8p|&@-aytOcVCL-N8Sy26LLL16DPA#0 +K(SF&_g_zM&gre3O>`OqC6GvG!6J +#^q_FDA+387XW%MuhwvlFH;0<>#JMw%Wt7)_|`DnIeyGq_I^VljY~AG?xElS)RetN0 +Dfm+kr=tS;&nn|0vlWBU>dBMK^w8hl%AEBd0e(i6|G(U1lbamE~rZK3vY!@Mvlo7p{GE|-mslie$qBaiv +T!I!Y~4o=T2XP(LIoFbQtuU?xh*INd&J4&`Yo0W6ATuv+Vo1au +Ba{&wbvS-1GX#`1NvpJY~Uhh1j$x8Uil+zxJ2$ZdFjIK~f6igIQtxW$EA75cJS`sp%HVdb0xElSvv5-!&Z? +;jlLdH>*$o0vZ5{=vr1KSw*^rHfV6D?hIt{h0H45W#$sh4Bn7=Ra>};j+J-+l_NN;kQXRV#WP3Np64q +dL60gcf(}6xu3%1cE|nXs7LOn2)Q1d%XzE)j&cgSVzETru4wtZ;daH#c5=I-o$N5V(gOpHrzWnYK-SUQEopx|LJmliu@h@p~`lh{3cIELxgGH?ewgl5E`DB4a>*xFmZx +ESF&=4^%Xw=)`diAIAh#cbq95h?Oq9#-tk<<(xn5WMXUP3J*E`jTTiJDBlB}1vWYIEs`ngW!<@M}(o< +=y?#d{vt^zm{#;_1T`^%N`X=kce?`gr^Vr}l4U?LW>XezcQ4+;4MS;!l$6gU6rdBsa1ABVFQ0$k%xuK +TJ{Iv*hyVu^wF0$13DA74;bIR6Z;7&ukYS>C_Iatd&G5^t;Y0(eo++{m<_g#W=C>ORQpCU)RL>BIIJ; +NgS~#uSK4O{3LQS@;8weATL2)gnTXX66A-Gmm&WOc?I$sUZ()%Vu7-l#}hs-LbSBom`7Cq$@vzMAM$k~K624cLy^CQJQDeKk)L87ClTeVk&Agrd4Cm@i+ +LF_Pbu%Wg7TM<7b5=xc`@=G$V-tQLSByiDdd&N-xdBu{)zA>@;#zF$iEi;`it{w;Vz` +gg=mfDg1%_tndf&Z$$Z#pBCjuenONV`KKa3Y+qs?H4o)tUQMT%2Q5UoSl=M#NyWTsG0Mey2r&;X=E+M +@F0LD5o^y!sC(6Z&0x@qc=G7}vz8-lk@>h^IAm4?&3AwnAt8Z}rHgbRD?<22M%(DifyinM$n70i@xtM +np^ZH`mKN98g^P^&3I1%OI_xjuQSf!z5e78}MCqkJLqM#VgQ=?yVXhW +RVjDU_pJ%-f1}31ZzsCCZ;cUW;5j&xmykVqHT6%EfhB%!7-0^d^*x6)s|)Tl^+YeUtM%>+Q7%@{h;;;F-9aMC(~*mH2V$K<2FlY!`H-&>`W5RA3Q?Yo +ycqez$i+PRc;uxhe+;>phaZc)9OaK77wZbdI?_s%zaaD@7aR68Ah#oLLN1;k#5xqQPDS0!`3B)HQs=dB}@Jd5}LL^dsMlycBt<;EH +uNtbC^SLBr_7x%?todgb}lUkHNio5~&Ysj0BFGj8={Qh`I!0P;lSWymv-mm|+Z{x9T($UhV1SFAHCM)`bEJ{-qCkGvG+AB*xK|3LT)`K!nqkw1rAtVn +A8%NZxsGPF81RQ>u5#@|Db${(63mB6N>Ux$i=!DvCbzF#W4OtR|G>_G3h +?;yeerKXS3|FA(`TgD?<&XeW)AwB*Ac8L +o&$kzwXjq>v*=L_ZXa-J#ozno{u^&xn^3(r>Amm^<4IA5fYTW{g6`fPIh;ymA}yh~X5>HjHC<1NnNSx +)0SeEdFH*3ai(l4XDJ@nWN#A0LlOW@9(bdiXqzLB4O~^E4^4pZU0My6h)DZ<8uNm-2Bky?h_Wxno^#D +(*I5aN${UyA<3mb3P87jXg1+2TGUkV+{DaVY>@YmhCm*@5J>Ap6tTY72GJ>$N56Jo(=fBX;=MbxqO`4 +3w&ue+Sv74pSS`fSX82e-SFhtES9<^1@(VVZ0&pYKVN{ga0MjKPIF+K=EFEeUp^0Ll*?vAhmMQmJS-2yFP3DUk7wv=3`#8==K0lZ(_ +eXpl%aK1HEzWl07KNOjZ>~IBZhzUhn}D!~&kLL6_QU6e9PNj5lU$!B>^~gwtuFn68QZH#=2`6g$db8@ +>9@FWvuux;R}npi;NpxIT%3`7p4uYY!{@0ja{I9=?BVk`j`N3eM|n86%H`+t+E%$f_`I^!DLtP*5E=v +*8pQmFvwWdKZgR3n%qKYbBG&%1<9c0n4tKsDTJgGVZZSR&ca6VT;h)6{f8?_E?cn(?cLp|vzir +qbICuuTzGTSU^?G8%`wEN9Z7%i6=l$(+e7;V=EY}Zj9rj!9JDkIv%gg8W7t8kX`FDpse7=D8CsqZwxp +0$9{0!M1&a>tA#kp1PAC{m$a%FCJ$zML|eG>Rswr@)C{hwvxIJEBjA8nJXHx1s*#+mfL?c4s**7*mn3 +{2to`KfzvjPy8I^LW}**E)~Q!m)GT6GevggTs@LOOyI+?Am|84EoHfQ$6Fkf934HJzo3sll1IL>#6LW +KUnAuF4_NO>VPdNpZjn9x!(gvzA*oMCNn_${R<2Djds21=7BF3wtYWsc)&eF+*Fh9?blSZX!g{P51jO +bjMfe*RY&aJwzOOCHM%cX{p$1O!AA!8{IK-E`hGj3=sbm~d-OY6`bT@s)6Xy&gC6kjaW2+<(8zCx{xl#q<+(+NUhQ&e> +YBhI>aIDasBWe^ske2*`|EbP$69(_`|8O0f$x1WFKxq+v0J`b_NQS-{OR21w`j`ZuYL6C_I~T9O+W8W +mIojB>uPnMxY)q<@BI2p$2lE4g`Zk>-#uSHcjw%u9-&W>uRFc<*uLCXmgsN3{@_EyV$BZ+`#=9eLwaYESLYW7{W5$}$C;5Ie!1nsq_~IZ)3EP*dF%gBRoJ>eLGEiTvw! +-{>z($UICsX<-Vi-4FtK(Th|hDcK5z<_QDlUcbV`-=9oPzPe1;md +h(>{8Es$v=El0G`=04|IU{7i#68db6t?{B1D~rBuguIiv8CVQWlt`Offkhd*LM%!`%C+sbJlm*TR_tG +4%8g3`Q-Sr>*nEuWer_C>%93R%@otV$77ZrD`KVCFOH{;xd?bmX0r}zKv4R5wh%&=M8y=oHMzWT5 +J`q_^^++*SXtB>0kH%uIScuGmwiyrDj+BWZ&G*lkGIIH5%v%4osKbJkI>1*w0IkNm(dHpVr&YrsDu}f +y$xAn^rVdrLKXSeVD%ZS+*W_R4*@7d!&1U~Y^hNHP-qk8QM4w#||-MQh&mw&GM=8MxYk5y#Mdg(sn?v +>;G`YxKZ%$Ja`9s{O!HO<+Te0kf-K0kl^*Os^Ie?Hswmk-iL6cp~cTRXV?qjjfu+^J5zdMsvP^Qb!(& +Q9;N?;G9cV}tTCo*$lh;*&Rid*7H!hsW!$E-3ixjU%&uEY(bXzG=?0+r4k@k{)<<@Kob7AN3m828_AhA@ah`H7Rp_FaGP<2IKMmT1)+&$F>#C>vPY +DO?J;E)7D*@5}bR@wDF?Or^~^nr`q~9F8HNG)`5QEtFIk;VV#fljit>Vj|NAS8SR6D2R}0BRo|Zjs)= +sNXBU#o8x|JU`d%phqVkhjD}86ZJ-7PUhkqpwTT$+I=cH)2dk#&%a|ih(;9Ny?{!0ai#vTcN^HNiv?E +5#a41J*X&ipSei$BfVyzfGOjNAHpiT5=xT{<>DD`#2#^A}Hyz4lU0a_-ELt3Pd+JLq)c>2Ze>nHiT@#(o;Q{MURhXvj@&KvJ(7%{5EqxA88!+wuwAJF@ohV9Zi +*^j@SJsI=TTI)An^_za0k=|}|=hwg9yZ84yHiTN&eH`^e)w6>ZJToD*{qJwB({#E!@5q_(Bl}PH(RQA +5=8aVgF8r3e`tyq~&x;%CHh#v%a5gXD`|Z^@uSxfv4d1hC$jG-|&UyKZ38p21d;ZAXKdrj5CcUnybXW +S=Lp$G^U76+c!VAxk{gLy=uljK6)zK&7rZ;@E=#$<(u6Zq=G<9L^w&P2q&#E`Q^1PiCj;rTmdb+2M`C +f7V(30xkcK_(d|Jt6{Y2X_(uix|R5B)la42t%-!|kQ9<8B7Nd%Z9>G2+GYt@Y!rAOA9WX>qb`ZTsGLe +zWWCmxt``6ua%o?e}~iK61meub(+1-8}khO@S)Egw8=o&u@yovh&nugLjS(y?gqn*6Q@^@7t68m-l_yTbFi>Jly% +E@9gKRei=CQ5jN&j-!(V&uiuU?8o#*Y($G%J(xR`97;>fj*EQ|hcQme#wwAW5tFG9n>F4-d20^@zdXrDA#8+uK!?TRmX*2?SC?uH5lKH4WpNQ`r +^PYSG^}h{d)M-S8`vz>%*-p=547OYVjTQ(8L!$EbsVnY0U8GLpw*j`2M>$cPt*>J9^0QFFI=Xth;F*e +PaH5k3QQe{6@E`$xYveepmCjr?Kl1Rkxd0_G))+-*+JACv}ex@pVDlKGrQik=rzQ{PDAkiickO$}452 +<=Z<;-aGM=Jmqos#Bk=nfcwYg4qYwlqL= +x8Q#l%b*Bp--RyY1*`s}aO8Sk_U!^UMJ-aWNP6q4C(z|&}H5F$)s>fRWzL_v&^ULR6*sVWzDkbQB_x| +gj|H`c2(C_@m`|LiQdJpaykhHL4`IfOYE3M0}B%L|_`KN=<7~9fIY=K7pZZB@q(l!u#APRyyAw|CT~n;o}f@u+!1zzavSgB#lVFYB7K-gy7n!D~_@?|JE&4t4EECXVa6XZ`Py13sA3f9a5utL-I41!FtD{Y` +LDGuoq?C2q>JNirN&cTwpON8XrWv=Aa)hv1W7 +fRm#C6f1@`y}sfMKS@5_y;MFu`l)<+(tdN6e%Xa`FC67r&7v7!}Y$%57=x-k6^NnNaoXW7f +=#C#0XVNV{0OJv(VkQ#TqqJfzo0ckGv6*3_?KOrW-fu8G9`+W)n#Q*oWA7k +M=yM4v*gCh({Gv4$)!-5eTYZ+fZX(t4A=UdVeu2+U|15@ua1RlEez`{A2KZX)$1(NcOZdb$#*X@)GcV>;UUA$G5z=FGpxH*!BBJD^ +E^u*7{jol?rDZesuK+B*7mGNKQPoaZDmMmFEZ2w2VG$DYncpnx}6M5R6jAS3m@{Gn2wZ>Z+^{RS`aW= +TbZsZ-fzv&zW8b3=6RpquYGQ4Rl;CZqBbPnZ_JVd$=auvT8%sB>$R62-Tmgme$%yEmMq!#{;GM}Q?Jb +3aM#EjZLV}Q@`k5L`}@`Brkoj`scq`<%hmdUS=zbX&qP)}=Bo_}TfArX)o5+;h_|l~ElJTX_R1`L^*c +T4$<)TpdU@5_Ihoq)``%bod5>P3`laM~^eclly!Vma?_bQ;rgn)bUSrPIjvo5irAfwF+LQAdI{to6qy +4?_fIW5ZjMIKLIq-t}jvVcW;Rknhdj5WG|3xuw4fkbgkIvnFcFz86ZStnC7kYV&)qWfO?w?(H&(}_wc +dcL5f;4SxMWNYeRptbnUtFUhTTQ0U!F#NYOt1LzkmxH)U(X559 +h9(Cid#v^w&)o#zs?OAb}ezwksX`XNO7(E!zZ+OlkIaoMJ_dGF}8ea`IL-X$kWo7^MpxnJKhXlKR$K3 +AKWsP)@%_WQw+aoTbDqkg{UPm?w)Cw&<0Kj;cVx)ze|b4cfq?N)wNc3dA +G0TvuvE^uT%m$OjkY`A-vsYhWJDz1?@4*0hn$eW1(VH}SGek^chOf=MKi%^i#R>{xjAztw6wf1kioMBz%esX57-6i`ifmDHp$qvdd;DJ{p6%|(ms21`DDKMKZC%B= +>Q%}GqM^_i4fZK>cLqX}GNaK}!+vaKtlMEVqd_3(Bbn-_u=vHEf3v4I4!_5Wc6ZMzLeBhK +=d-{dP5E0OG +MjL+}g+`xdgAxrGYPVX3CL2vd4W`8dL}EqzbhKZZ8$>i(a!mB?Dk8okAF)d*eV0y-9a01@vgg~$o +rYFaXS92=c-ZnX>89Fm1-<+*QqBsgWm_2(LG8MG}~ZF-AS@ITAesUBH*F-{Bq6XoOQy|b=c{GDoGO~E +;i#%`si%}SUY9NKdI47h6meLD#&1#Lx&9Bz%@djOO%D=R0LDyFGhGV9iKt^1^v_Gd}A(+an00u76yM> +D2r4B2K|{=mP_FBzH|HYPpYgI7=A)`N|iIVIbWox`_`B7N}e>m#3snij(N5zzf7*4ffW8oCawz+XiQR +4Nx49T%i)UQU7RltM<=ifx6UMvyhCT;B^CDv|%5L&xXMl}FPSsl{;l`0ujkzvw89X}Mhg^oWa}7+-^bp(&f*OwdByZ?O5kqjr8?93$pOKJ3lOL`sk7K;|y5_z11* +3cl5|$y(N2yIaSOHA0v*ns&vill!%0Ay7*2F&y7QDhCDi&t?orgq*da)Z#Em!j$J3Qy*hYU9^9QuqzR +hJ5MwIb0rX|dMWF83y5b=rAt`BeVEbj{5pfB96C>E2hguOv1ASe?*iuG+m#`?7R-*``fq{xJdNmJ$Fn +>oFyTC`f#$$QJx`f5DJQ81)*jhvkW6QEKT;nCuh-TL?rZ3MWEP?4OaM72*;uS$yBRG19h5C-4ul{a=_ +g%7NNoq26UvYO8*JrV%^yS4RB`#t2GJU1aVF^55S$7rBmxb|o6*L}n1Vi$8zLf)1Y#kZaAzQ-e9;jmd +1ctF?P5uz(RM%|j4t-Ddr)}ggzT8d+dBTJ55U!rSyO)G^2cC>qf3u1-_y9L!gaQ?brFtz^OG@7mwuCc +wg^EZo0M~vN=DJn5k}-mi7^ecS9c!m(x6mO +VP(EZg=?JmE~W5egJ&$!@l>a?+xEO)*+#PIt7^4|U#y*by-jaUju!g8govw>`A#kh=1*O80QjdKW_ +12Zi{bJydw84Xw+Sye>Thv$E8H8lPrwY?N0pE +484h}x`ZP!A&anr%C(;e{&;d_Y_A1bGFv=1r?gohg)d@f@=h@ +Uo5J6g!644wxM&T*tmCb9l>P4-#t$;W9M7UxO|$l_a(4X5W(wd;9Q19{T*;L7u>H*3!h+e4oq;>an2(kUoDI4S`X2$LH)s}5bW2K(slK&K5C* +1SwWtPesYT;J)?p_GU2qVFYk$lDQLxf~)+hig2KFdqfVI_K|)>l=KkQD;mm@e&Tf_41G-o*ylrBJT$JW1%CCb7vHd^RTNALQcW;4nB>jXPBal>T +kgw`1r2p^08FMYF8b{K>o;SLPla7f0mD{Ej#K6sjYM5a|G&nz0>(M7WinVdL9C8ItcsU&I+6Iz5|=Sb +NIcZLLPgO?xW+7_fW`7Kz7PW9-xp{gKmE(xfN`i#M&gcZ7BA$cOwQNjzS#H`X1g_uYvP{U0)tOgf)2n +{CJWCbyfK>)%B1Zw@-Zr3qRsUb9oZd6|g)V=TRzz@oUl%S=UMEW9VwH0aF;ag;Gw*|&_8NY*Gx?!#N_4{Q@8QU;%D*;lRmVWiZ$ET)yZj&9+8ZozHx7 +!7TsZ41}M!U(VvK6P>*K<}UUHR%PY%Oa<1$GcG9I~4W35W*(2Fh_fb^WWFksU4=f$7<-la;@3+7twX_ +CHyy9bVbK6@c9Ei5^qB1J)~F-{e4Vp=|jQhj(FYC%dh|gYgP4G5Mtl%)17ay+IpQ(I?-Bn*^c +{@)5r-p&Bi@UcftZI_gt!IqZN!6!UnABd{(|`FFpQ5_ins}J4PqW*Dqp&l?bT1iQ+kk&i*_kJtrqK4O+4UA1b8!4^*kVeRH +9Q(Dd(a>+g3V2j8xS#z=s5jIO!B%cu=Lp&fn$}tr(H7A+B5}Jg$&!n>^Ey`*^8=dHh)!Q=WkYK8VD|C +uY$O&l*&65q4MjK6rIi!Z$mC7U2-%o~Ft;Tedct=={BMV}qai`~`+OycZ(&$UZ;K}B98k%6pHuJ1WgW +Gg_mdzNRZ!;w1%rT}KA~N(A^13vcnSt|V5Km9jMeD6LHt9vkdv4J=dax?lqPOIS!4=tKj^1d4RPjbrd +X|A3F)5F%BoSFTRs$M5jh58OelN-+>=ui`WSeNTu$PGELvFiN_~Ns$)Km+bML9+y=scA{E+FKYBssq{ +wgF=x2Q51#`f@k4k<6evsVC^W!pV5bX!3}hRD=B9*=dvFVkSk4nZ)g?Sc4(c;e%6dSjH%m*=~zsC0LB +P&M}%&b8;u;%^`cqMEVx?oO~Wc-cZHnSe-n%lGdtBXT?v76ZwrNv{InLlUZexwT#CZvU3)*DvUQ9Qs$ +5uQoPLq|Dqs9d}Q>Tu-GV;d?Igeu?7okLZ%c$M2_8LgErcYmKD8>MU6@&y_`Z5*qhiPkX&LdEZ=G~WY +a0qFe~#Id?U$jjRJqJh5HU72jIdz{{A +HOK`dWTAT;IAAiHjjdIjsbR#g%^c9cs*T)vtN+Op9%2s5(fV?g-lENk+(kV^^~B~FX+h}=1aI>ESZ@R +gz=CvU4F*A~iEdCmX70#H_MJJ4+~0cX!%V61W}}I<8uFq?f?N+J^t)USFHt7f!)D5u>JOZI1ZMe*uJ2 +=nknL_xZ$boqocCvx(X$dla;3@8Fj${Kma*@XjTS2_KhwE}g~b^1SkN5us9Tg3EHS3C^B7JkvWNO6EF +zYWXQ}oXlcv+}2bjlVY5z)YdWeoLAxG~0NGR(O9CMr8EZUFkVEsr-qE57KoCLG=79*YPnnU)e9ItMq- +Y4WGXt8!{1~og}o|a~?Sm`1zM?KE4+n`sWwtk6y3NPVwR(tVKU(i3X?{NlRF}^(a)EQ~K6?Wil&d~_| +@iBbMnc(LJ5%R@-nwqp@&Fr9egcMs#BWeBv8TumEs9ML&3Q2do3!3P=~z>;S9)Ye$jN=RS8I>3SfDz?$v6M!Lrn*d`0cK{Xu?g7+vBjkNR|6X(tqVrN-FTSp)5qWF?-TUsmL^K +@B0Bh;GALwuz0h4;uz0A^74S+LM2Di|@gtU_kZjt?H`Z`hyc!8W%74@fFFE#b2Yl@Sl*a38_&@@%#K) +81Uzk~#V{eX>w2?sUmaj)sa{H)NcVozOVty +(UH+4(|LTZ&65VsbpsE9GfcQz1AwMZus+eW`a)*Xy+rFs1z>NfLDdvTf8$;+mBbTL2=S5<=w3T|sUm^y!Ivy0()A!z-z;k9St)Tg+%p4Dgo +ortz}h*qJtRvFiBPZ7c}a6G-D|3jM9!moj@FSvK>q+0@x70bk$@%l^L7@wfTKAD%ZV79O81J>OX@Vb2 +WG0O95Evu>P3|-l^O{d2w0v)+ofL8Wy3X0s$&~E?E|bZgCA5WDz%M}RLCzjm#)1yFEt^SazY`7*laXo{-fL7GpRs-ghuQ*}|LewgN;ELA*A_wYO~6+A-7Z}dER4EzlGb&u1%a#K}JkJI! +9RYf7k!j({;;NR+19Q~glWGOBG6Lc@%Iw|%^S|8^n-5Of&(7pgmseCQnJM_GiQN-I}31A(Bmp{eME0y +olgfs!qdz$V^Sw|`X!{B^WKSM~M2F?e%@f~0uT$jAyJfj=w-Us#lfe=w29lDe^@^o|EcTb( +`s4p!HHk32o=elI|s1&){FcaiFJe3n9^ffm```U4U4(mA0c~Deo1!mtL}@ewFGqsPbN=`PECcfF+R5| +20DL0ClBszEb`=A@czXU#EMhos&wp@pjU%jqdSS$2N|w0C~v{y5=HDs@_5M>m~C}UfycJda7p^A@04Q +y#js!{S2LejFOCQd2h1wP-=XW>P=Eb?xu6hbtG>$KmUq$vv;mab-Vd_PdCn`{z-a^_g@un@$8PpqMC15PXuiH=CPl~GSV?wUL`CD=j@>g +AQtN4_@8qerfQVD*7c(sS1y}4gT2*O$mybnNz~pWv>lz7d~0~V<{DaW^^)&Vej +b$q_Je+@`YYNmK)rrV`!l^%{55UAMz^BlG+weqH=bSuXhy87rF#QH`#VAXUN1GB;PD$z(thH+RQe6o2 +l<{NQ+twBbi>-cv>lzH@%2(*9o7j6l_VtsE`{(iz*B%B7vcH_SOEAwVB-^2A5;)VVI&-^t0541l +#FV$Y=?I`d^emzL~k?!RN*T0{5z9EQ7fOhG;s_tj#$Eh7xc)OvK=M-ZB7r7bTD}JN>#|2gK?{K|`>vD +Ay?T6Cb3jc)qmD1fx|AO*DxEb!wqX9E+K)Y5!zt&9aqmI7M92<8sA+aE5 +T2V9ui3fUgRkeGhn5cL>>W5^pQw0<#$M=60otoMD_qS`AQ_TFVu&h1pS^~71>dOdQFz90sBIDU1y1O0 +*vh{k;@R@-(O<&UkKQn_D6un?xO2)CAbbiz4VkwKMDHhUJ_hypq~$r$b6c<57+~!yGw$0nIx402E+BB +wy(tcg^Yd@oY&{2@_sZOT<7{rqyXX<4uo*f=RZhd*Wr@E64?adzQGdfe+mI#g7z0UM1p>xj${Dthjtw +}RD$*e*WaO3FI;y3DRIprP=e6$&3Hk@P&O9QKOQ5&$5s6)AiyxK9NUG;Cu;2YVmH%pq-5-TKA&~? +Kr)xd#0Z!K`m%x1zU4vW&NY@Q(;J${gn`{gB7gdOK{c0H?T^F1EM^jqLuLKR>JFA3 +2$sA{MJbZ9`4&pxTclxkQTz}dvtXw{(FH2Cwb_ja85hflk}L1lsb*TsMo?d=;7ez^(ywvBM$#}f%`gm +#pkrocJRQ%DtXT;dK3XyJB|Jq*Qm%cr~K(Y+Zw|6f0c-nq85%JLxzwkQ>KtPbLJ4E(MareJFn1!0{B- +zii?ZMYp=aV_U+q8Dk>_-@#DwI&6_s~4q+6q$Uqt?YfIKv6|^PoKg-QM%;@3fpRX6Ry`G!9bSaJSb92 +@8!_8HHfcUdUy3ahwAuaIST*?~`S5;Lp&ZZ#L@ZZnP*VC9hcWI;gG9+&P6nXApbrVgWmUf-_k(aUSCOInVlo#jmP5{3#FkgXup*^XDA$Z*E?FxQdzvVbs3shp(Lh_B)j`` +&V3FRdv1UcdCQ(n{o4_Aj0)5&=1_>{X?AwZmK#AMM$ImQP=KV-tlKX2Gm6PjYo%fh^{&eF`l6AQeS_4 +Z@K6RMi7A1KM7A5Z +wShfhE=ZRft&*8i@Zj~qFYOrJiT#K*^zB}%BC>7UHnL~W9@fUc{`zZj;lc&Eotx>;THx8hT= +tG9t%(QB4>Z4>_7QpLqn|%Y%giAUK^3Ka)ZF~gM?WlpmXP_-ProgA8@@dB;)Qw5&3~mWJ9J^ztXUtWM +UUJLxFB=tq8ZK2dlxi6xN^Wp^JXm|4>iC1(cW29-@Y|e|3l5qKmPGY8DXvX0YV-O2x#{83}_~9_#wCX +h&Z13Y0v#ceWYW4y8Y~FzkdD5ph1J+UMPf&A3vUig@uu*s3_*UnKNgS*|TSpxpU`|`|i7sJeWF}q^GB +og$oyw?Cfk}u~=CDv258g@{)Z5*}h~vdF#Qk0>(;F!&p!JsdG5LA$fix3NJ&WvdF7Q?SpAljm65%B_p-k1{rBG|M-P;d6<3EY$SjD@ds-w^iU0j +D|jp+ZJ^Pp;iByg?ZyXA_B-GN)-?N(@y)}?yylrCzj+ZUZeB#|GQ +KAq5a|d76xs79$aVspZ2Z=E~;wlA2JiI6tA}{ndOKNP*N~o_+)q~kRP+)wAQ!&duHQdLPW3M?|c02uI-tbbJpJLz1H6AaL!zgNy!A%^wsR%kU2~{1XiS0>f`%_>WZZN=GGD>B=_SlXE72Hrrv!Ue^4 +2&Y-FDLkbPbP-xOq3e9;*p*5Qn+E}H~z9TAl4Z{y(_z4XED8pwnd_KdQ82%N8-@)*2Gd$0^<}kw_XZZ +R?_`7+8dwGOZ9$_VqVCE6_@CaY>2=$#w`Ed{_XD5+zehw)=ts&*-jig-IM~(1zFg)HF70mFH8GahW&u +92NhF{C@7KY!<@Vgm)FT)>Z_>(GlPZtMnWB5B5z9+-?W%#=pek{YsGyEKeU(N6qhTqBXpQ_-SwghKW{ +}dJ$8WI}fd`!@U{(gOW`}p)7-*`48G&(9OJUluqI5;FcVSt~nZ=c@d$M=#Wgh%md{y&O8goh{i_rnF_ +$7@{YqhrD%qJw$(h_I00(2#_?aY3IxK0RIMqhhon(IH{sVGIwv2Hx%OKQ`eKlF>2IvW>gLyKBP0fzA< +n`}EZG8V`6LKRP-pI6C3ZF1LI0dA`8UbwS?*h7S$_a9DK09bLNI?mRDW?CqmrB%>O~Pq^)mUAo*mMqJ +=8F6gNNd{{WnhT!}kyWDxN3$+RTF$2RV1c$`j7abiDozM*f-0t1A>z{79<(BRfFayrVh{of0YjQyX*n +sn45iwEG(J>J*J(^s==Y9K&@k3+6qa$L%W5(Up?Kam1IN#52zy!rPewdg-axGyrE^zTrj6Y~p46`^UB +05G8A!d;LXZ#bw2Wf#qG>_43+_)}Xy6^>!=M#qAl%NfW;0f;I^LLFKCs63#cs{IC+fG3p10$ltW0=e1 +dI%!!ln=HK9vKpHPn%9{1A`M{5@MnvTv*EY<|t8NLqfv>ZuIDIpX&s86%`)Rcs^l7fLHsQJUlu_GKN4 +gCOViE>C*X-;X?xlw{PS5hbTT77RtIjWJp-prSl01p&=7Tb!^vm7=H{)!01uom*!6h!zB|(-FibiEzX +Apv%1RHTuJ`0f@yE=+;L(;SWNIJ)-^>@kMC@eUY$q8gfJhYRHre1xH!$f4<8&hDyr#er~dHx;jD;J5k +p71omP#{tceO4>2_L)ZrWnpP7_rwY3P(2T+4|><@L$umNe6w&E;~HV7Gj(c%_U_Tdmh?Kaa&YU5ekIz5quv{@NMJCsROrOcrN${ISXY^38Hzw1@-91u~c%ka +S;WGJFowO7mV(F{M8;pZ^?N`_z0@S7O^9frRY=l+wY{3lQOznZ7W_wsb>)=k{fa=UnuP&e;B0RaJcY; +!kFw{G6udiL+()v@DUtY^3T`1R@I+b5v2SEqir^7n2%d-?kEwVl0s1o#K|E8Tti`vu(DA)qr~(DBw=@ +9N&Ok6*ye9sKTc{h-nK^$+m$yv2`U`u(Bft=+u4_7Aw()3ZbSwry|e*Qryt8*l2?|IV8|JK%=^uO7Fx +^JwQ2fOcp5wiy3U-ZymNZ#Vbq(7wGt+gHy%ceLrwXBp&9{?7CJcmJbrFaLl5fBan>&)?tQzqh}CPk%v +QcW$`Xs%KB<9Xv}qDavSU;kyW6 +$gdI@~-I=|a`^ymSmqT^9^ecQKhkLM(_XApnth*vV<(Ij|Wk>vRGYHeKO-g2c2T@8Fic!c_EHf-4N0L +Pter%#{$`up#{|Au4F(Nm{R9p~ebvuDqq=5^_@!-o%VeEaRUpYibU@E<*TbbyN{Z`U|@T_yN%HT;9D5 +t#qbw{Ks(t`WTI*fL0C^PW0&YVa^_{P~VUhYmf<>uB1!b0>ZC%{RpHlnx#|hz%+_a^wi{`kQc`X&{cX +pV!sZeap0dxqtuumv`;jwInn&6wir)obVbdJm$Ew3m3?>gRA57t*&!;{TUuj-!&~QZE!B-F;luj^KgLVo|L(i*(rd51MvNa-R8$DOj~_oyUw{2IRaaNjzJ2?|b%5a<0lyz(m<< +~@Zd|-|>(<4bvPCRkzI$jt5!X9&pr2mci!RQ;eHtRYVkjF<_vKzv! +++CUPGCO`6o`Cpvub1Mn3P|yO%!s%SYgj&$YF+^x0>hiSM9EcFuXkk#+9u4?q0Szge)~<{W$0}D{R01f5$D;4@3|WM&!0a}9EODc2L%Q7g&v~={|`R+fVOShMl5sUoLSf~_z! +u!^Ugb>1NW+`Dq$-%H8tWhXn+rZzQIl)BjC2>d!pn|iGn{Q8uAWNz*|KAyNCu>5>0-WsN^`&x%1}_u& +s2zBIYXmckI})rg!h&Lpg`fXMYKK2pWJdcn-dT9>@Z?<1=Lc#TQ?Qj?dsZ_zira2cQLbga44R;X9)6g +GAc>M5Fc+4S%0#a23ghNtMLEnr=Ot9s|ODr?8CaS0yMB3en$&%fgSzM|$B=(;VGY#>K$DfZnX^{2|8l*kLCk=X=`TizRKhVJZ*SyB|UnPe5usQtM-wXX`Tgyj21e=p|NL +oMx;=$!~3;4rNzPdDoN}n7>B}{{vY0%Gg;-7VzDDfoIP)GE@ai=}QCq;jD$(})jv}e#D?HNAFZ<`qAC +wKf|XNWJHXEk=vAiFyq&Dn^g1#Rn+5wvO1NGg3|6cuMP4fDs)x%v}y=ocpq2~5M(Z1|1<`9v!>c(XseI8WvNH|t_WV!wNo&$VX!YZvl$RPt%V&nslIh{}%)E!_i$m3d26c`x(3N9c4u +AIdLjM_`eBceda0E`k8}0$!4<=@*>&QGHJ<9e*N`Vs(v|%b}b)H+m|v8Yzwb2 +4P`EShELMZ8%ygm$5LTNFg=&9rDtb_&@)WKQ%u7$reQJDfaacK{N+IN{s;K8E(rZ+y9G@p}U;mAWzwar(Z?{9{9DmnLnlvdoJw5$h;0k+$4dmqH2pZJ-btReL2%BQq`j<31l{#32`|qD~smNolC1%uNHRw`RAVtzk^(;Ia+`>Vgq~?av|iSSP!7Vp7&bj(ZyeQyILzzy0lR^!)SB({s +-~C-A}g9{7R=!~(<#Ne9+2paK3AdWcwvIrcmgPWy|1|9N`XH2+eLG2fYEz@FigUd)aG`d3_kjUGLERZ +L9GQs@us`WjyM4}JC3SM6-W#OEkGJDb=h2;c9$_g;}By!F;wLLY!TaD|MdUP*a?KIk6SImqiE3)ll}T +G%toL2b{)Zub2C)(yx5*R@7@MvNHo+}gEk#Xbn;cG)uJ=H^mdTpac4)rqneh3tWH)Y(w2agY53K +phKtR*zm0%tbdfY|5eNJ*_mS?KHC_H$7L+=rzVJp~=z&aAYAxDDjKua@?$^ZEa@aSsye*nz3tINp9IP& +C^PyPlxA9&ya(P7h)hW`Eg(}D#Hgd7kvqwAtT5G@to1H9d`WedId;)_ +C`r46HlZn-y)yb0f-GqQfbKC`Gzn>POr?v41XtFv8eiuA|y+YrCKkR_@(R3Yg7x=69KiN+-?*D)W#7^Wd@PE()#3RH`@EB`O@E&rI`@4_> +zQgCk*TRqSnnKhynC9z^yTBj1+mfDNPT$qO2*U&phU=lVL9ub-q!qz1)w^5bgbeD0q*U +|N9o^zmt8qk>_ks*VE;_CUXDWmGl3`{S5ou1MD|n$H1tWqTYx)7wRk66UScc$7hMEe{5B)w+H<6vSrJ +Xo_p@OIN*TX3F`;MNBDKbBKT_LvdB|#4xiDc)?KO>qQ--IC-$^a-@%?dYHU}UA8PHbjnd@-B;c}pw>s!hfrr6&Bu?M>SPbZ6kfk3ah@Bez7GTPM-B{J5P!Cuxe#<}TZu&ZV|*rktdbviL +WualD2u3a0a#shOh&v8UUy$yS+s4rkoc*_eJSF9PH_=PBwaT&AES!;t$px&vTA9=;Xg$vV{ELrlHy7m +ejux|ohpkaRkd*f0cu`iDL3ThLg#^suS@$_+GuJI~;9P@rt`6DM=wQ5z;OE0|?2V2B?ANe`x1}@+Mj{A+NqHc(K7 +4}tauD$IIuKEIO0`(Ep3Uiag8+m}H_R*-_s`VeX^~4iTq_h8jOx6dmF2LFjJb~{4FV5C|Lht?~R@4cw +KV9zHUpJ|20(GWmTy?S~E*#K=KJvT|b3go3Q~Q_eGuR<=es!HiUAqIHu2eHRu)9puSWv55!8qi&YK^M +)JO79IpLyn)q?ccQIS#cUE$y5{u#(U0iV(SvLgZu&SYq_I}k()@@i*yq5WE_jUf729ItUb=fNOv(nbcx +z28)gSwaPJeaql0MG8q>t-z9>ny`#(y6F204FRT-=wz!NFqR6}9Qq)Kq%<>8Hi|4me3)Ablm|1Kyme` +;#xS#D_tOF72QI|n&iSsO)I(4d``*M5D?y`|_T;5yB!{ff +^mjA$?`H#6d|2TnKBKD1=qN2q9D{z=IXO7@I{DG{INF9)S$Wk9TPF$QdYt~HGAw5!6 +S&EJKUp8bbFK}PtrcImligT^dnkM`o{Lk{`%OAsd*po-hhtEN6;gLrk5jAGm1+GN{59A&%@@3Ri +khe1pFI~mljq|(jVX5~d5RWo5Glg%!y{d9w5%L1BK{tHzfddCDS2?$sAM>!U5&pk9JY){MapOi>zka> +gD~4~xo|CL8UgO+ie#|4|FLVj?${ZZFC+m{H0Xl{n2lk(~Zrv*H6TH^B8|iP&9w___d>`aoUS1CUJH@ +UCm|j2$gs4u?a?Q^qjJnQi)@8XonuUAuN+p +Y;NdQOo*w7IuiWG4!>R*C10qbKVCP%=z`YqhhG75+2t=r;)?Sd`8+7d|AS`&NUPA)BT**40*dreykt{ +V=ma5Tob8t!K72pHSpFSe;0<&ao+;p1Umw*^6xvUx0`6qY-esb&9!#I`Vs3_tQD|U3FNiXTE+{tR;$C5rcV908{Hqdv$BrE$SCjYSz;7ex +f;`|))wtj@V!2xXalMqkyeA1`Ax>g`#3QT|FgE-$$NnX1c=&1Hjd8#W)QUh8Vm9`Z0E=}tV)vdsdz!$ +a<+QVhcyU+SxVq9pm)Ep&^-lQRLusdIG+yFqPj~{G2i{yDzTx?6Hz;@?0iGOyr?0h9@b&_H!?V|JR00 +E?-U&}$YwNmFBc8i}LuJP+Z(B;R^*90m-+(&R9f;Wou@6j9@J(MuMCQZpul +KA?Cj7<`r)hfoG!Xx1fM$;%0_{==MW}1@1-!u7_`;{#53GFY+9XyttJDhtKUzsWX9(*qUJDVX}GiHR6 +&7Y?6uXFj_qvATWdzAL7@#DnRS*mddDFa0h6vrXrw?LMahv36paeX?EI7>z00%b6dJCHwTi|>yqz4-b +G{CTFh5}e6ko`8y(jNx2GY34T#C(~g{KR#X!zk&pA6J6t^x^R>9rC%0Dt#~?XEW^!Krt|pI7=zZ!3=5 +z3zk_$@W^=p@7y1~-<7GCZVc3L6y76Z|3q8u>^GQwQ-u}k&8%GCcr_IvLPtMFrot-|$chJBv +IeB3PRpE~HG9U~0n=uujZDf)8#sTEuO=-iJ#|KM*4#MtY&?`kGkR|3ye#pON7raRR~T)ukAP#ytmJ9) +GE?U+bbaSvGLz@b<5`lY$7ZI^Po0%KGdZjAr22G3HiP1|Y!i~_C(qK%!oOpDld_`H=g)pTIn!4&FEwN +u-Yz!AcSh2ztYlwJz@-b`lwry>6_|9Ua#N+L+Ei<*Hz{T>v&I}~)|z9@iRKJ*uD +QUhGnbny&DG{wbG=!ycv&=-K#SHAYe}?ZSaK}|7M-QsQfaBS)LQB-N|9HQrYNvTTNGQASd>weTU1b_D +=IIlEUGT5Evhf#fN9lO1Fc$XtToY^Va>G`SasHNYo)c?T5GMhD#c#Kn&QA>ZE~uajv8iBusu-gh#;MNIz*u=QUfztEALABT6kn9 +WxMeeTc|}UGC(r54v-1p6N+pin5 +uGI;Nz-+S-wI#a5=Uf@!Q`Dr=a|I;OONY4v1ky_sG=L2)G09M4pzFx}Zqc^=bV$kba)%1bIrDod(Ls! +M80YD?-$>Ps3*6q~2b%jRv<*!*mPwji6<7HNyM#oH2XDYgt-wk_9|XDhH3+A7Mb%4*8$${Nb>5Zx-)B +Tt>T&QBMli`2#IQgqq6JYAvAs;kgd>1uR!x(1!6-dpdd57I~K&=&STK`Z|4s-qYZ1 +@G}G%A`S6|6hpQl&roQv8Y&D`h8jbi0b1(KS{h`GWF1X0W*hTZN3F&RW0kSSSZ8c7dYZgVex@K(q$%E +%V#+qu-Q-!I@RAZ_$HJCij-ex~@kU7#EZ%#31oAbK{O<{TFSqnL3udr5GYgn=kR! +^3xAIme6WtqZq%wri^S$MeC(F#QB#7k|&$7y9ITf;uDp)=>ESrWBPnL=wOC*w|k;0P5V<}i|6 +}Bo{jjhhsVDq$l+x_f8_DFlYJ;k1F&$AcWt@a9gmA%GZXK%23I=mfzjvz;*Bi@nX$ads83LREQg`>(* +sw* +uott_oBtu3uDRm!}|G-ZKh+OpWP#IlUC+_Hi)U0HcqWm$DuZCQO89@6ZE1X$;#)93UE0VORv!f>b3e>-6RNN`1AyR$s4I3|T#2OL}8HQX#fk9^|H +&hy`4Yh`PgJSezzZu9rGnRd3hB24D=Kn^YiHA^QpCpB^z`HE)FzHA>Y{Z2tvNO9KQH0000800Wn#T>kK)E>6V&0052w02=@R0B~t=FJE?LZe(wAFJx(RbZlv +2FLyRHE@gOSOe +T{R{&d}Bsxa|?Ii~;pUmN`O8&%cM^hx~o>nhCt?bpp&^whGnrG?KvS@`JFY59*n^USky+G9_o6$YM3d ++M1q&&=6rPe1$k6E`O(C%B9{K6>lRf1d05xF_=WWcm1>^YA?N_|Trc^i1jbIX!Rc>4s-_@pV0CDeu2~ +eo65ojQrz_=PmTS|Ec^%Sl^X>p5--}9)CI36rcS4W4+_J-jo=VU^2Bp;A0+_bT|As_*9rp#(Rv(WWyg +*?~@{7^4{5HhPRyJNTJB%>hNW+rmRtB(=2>hYc`#m4bLL8$(q=AlFg>ap#w!{O{Nk5hc)RfXENC>Kb( +BC{KQHbo|Ru19m26&FVB-^GA+Eh@bO3GM@^=evU#1RJK*oj%k$;H|C@O>Q-+8?(BVPw9BjTaU-ivPc} +5x|jMbC`&+%8~%elF5Sz$iB)11KEnC8Iqwrk~kV#%|R@g5v2%oUAc%~koP{_srv|NCEQqfojLo__YFF +F4zg8=RJs8=R3g`$4Jrgk(3FBxd{5XtPPm+$04{Tp4!Exuptc*%z9YB8B{}3{PmPo~cVgk1I``ax)YO +CEwN!*u*KdV)+)R;@*3qiqh)9O;YJW`5r0coYIX+TXp9k%oDUtFft@k?{ST*0MIE2u5zX6O_jLNy7P9(zpZxLe;kXI#JL7VrDg!$5ZSiUYDn7yS%f!g)RjHDE-}ax^0;C$n^n^UoSfV& +wcN#D{P}HSXu~DQR;r7Fbjh1p&Aw3g--KhpVyj%{4OTN&{DqHg_pmzEJPHps!J&?Vp0r{ +sgD_$9>ri{X?o02MEEmH+hnZXtXwAyDs{b{Zw+oE|g1A@;<=cAOebi{z!)kr(3z#?c^^ur=2Udz>f$_ +oU2IB<4I9ZGEW{vtrH}nEpm)LHx0`Z)BH*X%xrT0J&RNp|8iH5&b!r0e&F= +B4Yo?ym}m3FWpTNG=ewEpkF``eBG%c1E-0vLm!)i(oVRL-SlYKDNon9?tNwW$^mEz&(d~x3V ++HKo749$H20W||Q4?7)t@MeUjh3aGd5O5|;pGrGIo*-7@Zi6mMY+q(0<{2jimjLuTOAZ1qsuoI0U^+j +?ouI7-z&qB(_sk;PoO!C2j%$NK20_-M9vBLx4hHV0u;${```OjikD=-V!!mI%xE8{^{1&QK-y21f6R6 +W{)F{=XzS1Ax=DB8d9F~SxOQSc#UddSS2p_9*Vw}#-sqMy>;!W7i +hij?NfQ}@#Uw8iW0M4mATIq}l*xG9?fuVeKY^#S=vnE6^4@>%(E&F?iorYCx102m^=0T$_z_KcITpgZ +D#U<9MzA+ptUzx-j)QQ&<>eZ~0vK63fr+RJ#MqGx*wn+?-dLCf1MGh&r6p-1*!!3H6?VSfW9FSx5 +ZQsosI%kd&bYD56EZkw+|4AEyXaQgmG&Ah|CJCDWnrlDktVxf5TMixhuYD7l5=TZEFa6yHhl^+L%Iim +w$)`oT+OJJhE;N5ULbo`*L-Q+1~UL+2>esyk!$W8d1;zYXAhJTo2u^Vb864jvtk%hm34cgr@P`>TK>v +)QQg8{pV-+4ny8B~1B}QqEIK1En03+&!{Qav!3UbCmMmEr?2?wv)Mn2a2A62ju%6NJV>Y=}CEnPwCd> +!GJ+@=X;Ph+E@UqEIo=DE>VVUx--Z#@HXeP;7)3nM@UK!WB^R4I~VZ`yy?sqzNvB~w!|eNDVim*Rjxc +-K#ogl`5H#ok7$t;dbbl=fQ{0YKoor7aD#%Ew#MUL|C(=`Pk@hwEgy28JrdYu2tBqOi*k^zVz=Q4#?=!#zAXaxC+-K0G7 +Ioz%q(9C_c^k3Rsh#R$Ja#dUZEMHat*W2LuI8}^AXcb)`fb=Jfsdr%>Ix}1AE-BB#ME%M88HLyObI!l +9EmWA)Qd_0Ir!Kf;#|@=xAN^?!mBfM=d^t$BdZh&wITs0WDKYvv)L2$BPRB{(kfBb(49N>;=EBd=$!p +L!t18YM)et7YUW&!jXX^9EO_Y7-$331W%WDO!sjJ6_g$&9SuT|F?*Pj94oszPmE1Ljj{*ky+eI9yJjA +N*Nx^C#N%4nVJ+R?mb1a)Ev5QEW6}L%FfnVIL3ha+0m^rDY%cA~q9Cp9fE-CePC{VZ;sVJk0Qk$~Ou= +Z5_+@?yK8AmV~dZjl^u|Qx&0x$zjfDiW)zj&Za*Q@yKJV-IlqH{F)^Uw1ov0Wf2dMOJ>=h;iR{pl>6` +)We(f7(M)4`rE&_RZ3rf8Rs(}PlB4q;Gknv6QSq@38BfQf@T{{orsaTO +j74KA8QiS{HK8tnvSv~TG^UmQEu1FEe`(cy)u`v%cMw~BHY~f}4pTm7!uTH@1N?nYRJqfcrdEZot9V+ +l-kClfC<%t;IJ&58HU(!r$w3@cN5`T5YhSzUxj{}@MjbgMIhN7u$8tX|v& +ND(NlsUSN`2E^B+#R=s*C8gRblt5 +)d5^%@Zw1+1tU!(!vGt){*v^zu5XqWksB6+7c-0c&B^h2MP4Nw1OI4Taxp7T5<+z7#Q{c7_&1tv{{nIc2va5}cKO(a +&mOB$eTA#9TX3LZezy9@L##&}+7X#GS9sAj98@6}$`;6a?i}vm}sRW))<^a>xMUu!wuqf&nxg@dzsg* +|!H&fUVIqf^BEGyd*(sTyUDb+XqAzydD-jjusqBTt_9g7$pYxEn&Mx2}Bw>h}QraOkPAbg-}*rK-$C-8PDzg7ypxsXUgs0e^9H)Qqb&ctRU6@S +GDpgu~Y?ql5`^@e7}6rB0c$8@P#zY$Js)L0Hlo{g#?YOwScD5cGxS+2arue`6!;HROx|PMtZzn{ +|L8K0XDr0|+(C4|AB|4<%1HgE$Fx*KU|tKMEH9AaKs=qse^Fi-1x{Hc+1jg1ha?e+31?s1nk*NbcnO2 +AEBO{!&eiqoAWk*8?$UYo(e-NBA|D!58IQ<> +xIW*;6cxe5uH2`JGpP@z*Dsz&5gLQ{^V**OPjUsGv-T4y4 +OYRhcq&l-Xn!O3ctyy=?#nAkkAcCJtUp4+^Dw2-1>Ge&onvwvjxByCVZtF(rTIsRw3Y>d~zn(2*keSv +&S(9PpSJ&XSZSt$h*yAMr%!syW^hNs(EXk|eX-SsCLoFvImGc!IwHl-T0#R$dAjJuMc1$Q+mL3g^t+$y+ +@=4(d-`$7^WT#qt2^poGx^rJ6f+Z}$QryuiVI6WJ8X#B?Qd5KrdJyr!J1m$ +TF+{PA;cSeF?yV&=Yv+i8Dg=o?cbu?k07Tvj_kvQ +b7V*!;|uGqsMo8*{K`;()-ep{589i9ylvQupx%XfdGx)0s})#U{3sAIUi4%k+8VhUtz4!o#7MN2r%A+ +fd92qHn)X=N4kHUr?>d3vbXBoAgq4anWv{tf(Az^>v+1Y$B~duI@k(d=nQdB2JRi_c7tZ$c +d3P5gf7r0yGI_*|q>XA=LQ=b%p?Hb@R|Hj4;K=hbqZT_zBmWlxL75~*Xmp(W>o*>I)232N>}TORa_NW+ +9(O$E&%s`jU(k^AWgk16L#oG?C4$~9<)!?hr39cd<8OrV1e7>zIu+p@Qfnc_6JCi`yrumjwjrjti7+E +8I40uqP-q{1z|!Ppq_%guQo>`Bbb+t4kEg?kZm(a!L`QzwN>10Hmx7TWw^KsJP_4v?pncLE9Ey-Awmh +--h?dbyVK}=05!PX0}^UXgG +!{%aC&>rp;t-6$h$Z*_!aHG-GVJ)?vf@X`Hdeg<9 +{n3HrSFnDj!QKc010f7YQlGg{QVuO44Y7>TAU&nO^0S=L=>pO&47F(Z5&X#2CW{b)Hu|sSC+UZTH?XY +TrUuErc!sd6i$Nf{3#CK8&=#XRQ(i6rElrer;hLy9SR>Ajr*`B1FCaCb=YjOP*s>BK-=LuOvDEDF=sb +XTezQ+vii%gHZ`yX0_S`kEu=iJ0sd>Qp@_|qLQ4Rag7e`okR=6I=lFw9fDmiD6T6nVSqgel*_n&D>Ws +l14pzO_^>T;%L3j;6i$ce%5;D_ug|Q$qXKDw0%xhxOAlP?vL=X~ySFb{X<{|nFKWS>ubfBmCtpHnhsb +|ul%JIC)V`<1rhDVqY4_OF#B@^_fEh8xYx9iC3wUp1*O_M=mUtXj^)rpKzvWWaqN3Toj_tNWnR-r3kOXasgbNxuxxa8`Rd3Q6dnqMbO?#(yK%mok!-wBz)>3u>@AAAFQ*|p +!+(``P~i6ZzR39!_Vq6n^AQ*NaE^R$oS_z89P_J>0@8|gbxpQOixK7g@q=^de}^t7Aul+6m_KwCE!X+ +@*vsBB~~F(k{|KsudsVd+vQn887g3X?(aRq)bn1p!|!esetw+JzCp0vg)_QHb=(it-MGRovN}KD??qC +&Dw*RjZK(%-7Wyr1QhG!9PgD%jy{yLPRtpz-@gxg|;Xb}RQDhsv?2OoPS_6c;*~8BJI@&zxXS4)-bsz +T%)6YQl2+_~ts(uB%@*2(g*goLJo}JZuu!n~vivcUAtKsE3*IKts=h1o8E#&lW5X)#nfcX3LI*{CHMs +N==!li^fC&Pz{gu;X;M<@Kx0NCoVR9r>cjgugYGBYJjO8*MxpVh+jhsW_ahj!e@>chj3ySzeQ<_|7R< +5IVeohCeV!Oy-%U|ER3@-RXLu1?^33F%0JpKZ)+R&T(ze?KA$L75iVxwqiv`WmS7T7peK+mQ=0IUdh$ +Q}6BOdm3^)NZR0fErx?!4pLeP`IlLK_Bb7nfbd+4JWQ4!HR!oO-`GY;*`ljCIx!Lm{@V&5%}z9;0?oL +D@&g6#h5!o7-U>tk5LyPDs%?+M42g|GxmD7}lH%15J2Zz36FjU&ccy=iJUR^6CX_>hP+lXHZyj9|VKR +{>a-sddheyXd4M;vfxMpGE2;*>53MNS$;Jcn3;*KW{q4q)215-Q9 +eTpFWzgX=T2Rn21=NVTDV%Fy)~cYSHbP>hcIyy-REpgN=D7kXqgWVPJ|vi7t@is6gwN +>Cou8tfaBGC7Y{#j-&JU9e+jb7xwp@Aehv(_gJv?_JQ=3P06!Z|rB|4DqJrGw{^a44K!JBz7mo@nTos +;BujVh70O +RPpqzp|Y9TIB*%4&H_ac4~OmFciap6@9@3pWvzGo8mv7Q5)<|iuyoGbVwTFs|G#%5HdV3fiSK-Z$}GjoB2x0P0}Y-Y1lIyNGV1`^Vj*;!q96l!za{*dh~$N}tB`eH}>MvFWdSs3U|ls&F +S_PE_+w-?DylsUD8qO62KjJ{a{zSwOkJPky0INKalQ>R9aOMdb ++eQ-^*Y#C~?0+C3?Dv+RZLrs(pW%9QEU-5dIJclb5Bi=u2#Id!-jhMHv2smHhX_Sk=|9!F$UveW5-H;sX=-zeqp0=aF^80`8+<(pBsDWt{C&~E2}b-Oo3ZNGvn38Lr`T&;bA~GG96Wa6i{b< +1g4^+Wq9-G3%VyWsWJguzYBm47))UXOF9O5hdOlUJjlj@%#hjfj0ZUhiGwt)BaQeQ*R@6r)i@kL0!HA +>NA(jZJETN$6+pxe-NQieJ{fu>2_SnXKb4IGe6!9>syy5iYcqA&b7Wc +G?w~~STQnHy6xk-)E2=VRH>}H|#eZna)8I$>t{a7(YTn938WOC}(Q3nz|p+#m70O&Z)qE9m>X_ynWoF +@a1V}9M~UdO8jR8Qed2x}6K2s7PP2T4*e6AO1UasYCO#Z(td%gge!{{FYW$U +(;&ySXxoUO49~`teA&&!N6aF^5Ibc$R77Gp%lrIULQt`UX=&$p?ezCw|>Nr7E#SCFO%}WfL8rb$``aY +DYh~229i@!lT=*8C#GiEu(}*O6v?Q|iBC`#Cc(C-&Z8Q%eKp_NNcEf#oIs6%*b%8Ca<2o#ZU$!i;ck> +r1y7HMeTSJV(Fj}Z8iI!;W{47`UGj9%BTm +UaE>U&W#ZkOi)@$>1qEh`5~%-d9!g1<;Lg5D-rl+fHJ;3U4z;-bcNn233;Wht7&NZe#3T7eZ8vgfxHO +byN}=n;Nb8=BTbRztvz!D=i6j_i5j$PDAhYuH|p_yBvu$HG3=hB7cnoBB39O$8)8JNW~UD +&J}(_$qvrF2ql|Q&){xaK1;pZf&A{>X4taNg0RF=kZ)S)2QCX1ejEmt;vpRIQTHRm(Ag7Msyd*Ql6Ad +M`U*~Zj02_mFp92fyFe!bqfs4#2DWKNeYMx94^?Bp%`92agS8GrkqcJy6M^au+^W7Opun1@jW4Z!?nc +OX3ua4IUl$@`n3kx%EJW9Scss5AmCD+_=YzxpMi|3!oEudCtEZO-yavr=VhRZkK$zcE0uFUhv_+)FKT +%pwWu6Q|9;MS9h*y_GCs;R#zJR74n23z)!ztd9gU=<1%8^T+;KM1}FtNSXEDwTTyWCF{s*WTS#??=AA +$x&^y3W9!X7wc9?wv+plOw#jIpqBz!r3bW^)eA6Yrzh8UB*c~+%Gy+ZRa>AF`@LJoSHFPLdRy{*1H?ee^1_Lod42MW2X8QhTZkcheAw&GWoeF0f9>g>Mi$?0xA{{0kx +fYC>ZjrjERW9mnoWmP&Utv9EMlM;ap`okk}lA;g`1asT`;}l6#ege*s=hTP_7hqBh1N1xK-3z&!jkd> +@MAU(nHpifDKyn!1d-54YSxb5#u2_Ni6h;`wtdDy9di|C1C|p1+rb8&VqvlD&`Z!J>Yy1|LjK`GYs`9 +{#Ey9cnvC6VOMvDL6x1;tz}chThkk+3aVHIJNyywuwh9k_!8+zdA0dcbuP|As8S@-Iv}V3gsq1V^*_I +sg5Z?iC)sT1j2ZDQdVXtW|v<`BK@b8}i5?wJtFVln+A#iS^pu?P7`|-=U`PlWW$g{_=j +lH4dGE9yF-4%>*+xs73>XJOecba)Ns6QQXG)<4j6^N|Z^te2?_uv7vCE%`r&5v$r3+Pa`L-jfH;X$g# +?!DJHE=U9K7&_ar^SabJWeZC@Xb`?9m{{4Urxd(bEk5&w@RX4^U3Y^uaHS9HJ>IVBZ%nioiLcLh@0a~ +7KAA?jZtdnLDWZc*RDvhG@WB-HZ?8TU2l&Sn4PmT0{LSAaB;`6F6r&EFr>~k`V~7xlg!LzZwQ??tC$lP9jveTa+&7OzK=lbxCmPuZGzP@5>_+kOcF$x> +gOh30BCb6tsUbm|+<$N +}20L%Ob>?;puJ%*eVMv!Y|1`cyRQsjndGI$)R9s%2vc#1krqW5SQVM)6AefY9b^u&Qd_1N8n`5B6iOk +(UnFV`2HIM_soAX5DuV4`-9Yl&GXpW|985=ZM1yj%QeR*QJQ>>w@;5^F%= +SnOFW_7ePP!&s;CDb0i_V26}PA#$6#0)E%x=6l;kXVt}8}{$~& +QTfI-ZySH@Czvj^i+#KW{(S0KHdmas|4(QAzi|Cnrq6*M4?fV&QiSgwm5pi}HUe`GPYVa)Z-={jGD~ +E-1xF&Mh$i^Xik>v`)XfO?U~_l5E-~d{^Ek0m^C;N`8rNZnHcTX)bI$AKUA*)ay;CKM6wG3v%&lQ~t8 +2TLZv%P1#5%o+DwzmGGvX>(324tN7$?*PZV`G@D`NN=2$`r}|7RzQWS7*;apkE=}n;j2P#$eBnnTx!t +g(bo~RS>{+xttpiTLfg>qLw3W@ZcnGz*Oiar>35;}Zdi}d;vOBXmd&u%hQfQ`~i7>Y6!Z>Dz$MPh7qo +mY0+(VY7Xy3ApFd58W?*Q5r%a+t9X%-Lg;V^F!JLJB7*<4Alm1>SyCCgzp?HtTdVK$$&WfMXElWiV%x +;znI+>0;C;}o|E7NmS>gPW +<d$a=)YHqHKdJQP)S#9)0QYvSg`LP;%BZV*4tAto(vP`YNn_?-L`F@2{{vJ0CEC(6_HM)^)9oFd +<#gcIbUN|!b8iWg-Wl<2&yN!jTL{}qc@or()1^yReI=Ln@iA{sg2HI%DGTLsZEf#u3~J<735%FY;}>i +altDO41A3@Q;5buC{B&yi;;;ePUDXmUKZJw)k>6-tKzjC9nSs$uWl2Cekdvc0g{>0Z_#RJHfh(lL}uq +3`=?sYcEu$SG)oQ1xBXGMmWuX;z5nV_GegTA^AmY9%%xOJwbxX~cW)qJ_7GV1Ku|`ytXgmcB-ENo{Q3 +%ms>jicq?Or$j4o%2a{P#QCJ3d`0$hxS9#jjRD%d=+8k}>_(R9y;&TPrN5RASstJ)aYhywWf4jfcw_w +_o8z*sc(OBv(i3C|=Evi`Z6LP5PDS?(biG!;_%R>HesmkN*?@e)R$UYfqy)VqJi&n79}GZ4o8jSrzj2 +0!U`ekPSjM&B+mJOfG7pAknAP7}NfU(X2KSU-xXdOYbOQUI-vMa%8MJ{?Cbya70*P7M+H+Erz}$|U6c +b3Q0e@(Ex6^(@wbN6Jl*H2pAY6VZ2Um0lly4 +hC6?x)=2iY1}#!JvME}2cmIFQYZ4LbJ60#&?y!Eg;;`-5=*WhNPJqCTDYIuDu=L7aa}ZNE~wxiJhcdu3IM!7om4a~wuTtrqEMWxi@d>R!h?tuq(z|UwCXNG5tFo^$B5-@A~$OCjvvdte#o^*`NpV=-?D97$ +jkkj>QpQTCZoKScsB%V|{`>%+tNJc7CT;qXZR*>-91;Xpy)wR-FBJ%A5PXCSrdbN +Y=FEL%{lb#+)A4KUwEoa62LP%Yx+Df;qK0b!$v(RHL<`z}XIAH;D- +wwRexxDloxdVVifKj-Py~%}h(8I=aiyRwsKZxZlV*E;sAf0vtnJOr>%SaM4ZS8A3xvkx;3T(a9`vzG% +8Pb$V62p1$AO_v3MCc6U|&FI+E7x16clvleeV!S918?Rsdp$BU8@=m2gu8mublU-Me}w`H9*ZKSV-;Q +we%RDyNE|ht@su;B5aRz2?)_}<$2)3okVgw{zSA_)%M|rNBF6ANcxVz9w@}V#k3g&#)&}Y1F^cZ9`jS +4oq;3QR!&IyjWDjev9P5PptwQO$E5w~YTfT#L*CfHJvpZgkHJHxA?gPpe}?W&RXqt2CV5LUN0Vy3e1^TP!dk72LLsEY=cP|bs>2R+^2 +6J`d4>%pLZyu%#2FjYaCQr8NyEK!!Z;r|E_N8<4Q1UK1htdB)yy?OVkyJV_|1k!G$q(_z!~8Mtf&sHE +*@rRun8*HrhqG7s2}Ie5{e)^4X123k%JCSkM}!yoG5pEJpFHKbMV_r3x5_sw$7AKe`WAVT`t?PeNa7i +me*;J}2e!kmF0yso0*~-3#NUkB!K3Qop{;`OIv)NI!%NgXF;T-qJF0jKNz=5JBt5pppKp7=(qzj1u~i +<3{2H0(wE`oy5uJ0?%Yw^nm@NjqwI2nR_$HTz`!kETHnGca5yyeT`u-jfuIf{|&4D;zb}o^Y^<*GH4C +PwXCA&e2Db-~=2onxi%(cozyWC&7m?$SH7p-y}`oN6SZt}AY$TX8@hot-s-%XG+Fwn!+A<3zK8GmsWG +@A#NmYA5$lDC5l#de{s0LT#VZfS7uT0LIM-$J|TWg5Ejc!S-fZ^V;umi#tk(srw#A+kx7Mr8G#0 +HN(CBUd*!p&evu_7b>g1sd7C3}2fBbap+HKQjr0*5i34)h$K3uqZYKb+&61}cL6W1($-47dh*y#`Ac7 +9Y!oo#v$9<(sL&&y$9YT3A&Xe+}!&EP#8J?-W7;VAut*%&x$F#cQ4tzj?$w#OFimsJN@KpCD+UyF(wC +P6VSZJ`4G;|{*s#Lpu70m05AVNanb#_*v&0piVCUgG!#UH>8f2;DjFx3DzH4}60M%er&<+fhU&g +(P!T1MC2`CM6OnXR_qG~3>!K>IzhP6%#nAmO)>LjAx5&PpHSu*5)b{2hw^ynEgo9LLu+_wDG#mUp_M%J424*cf#_` +Nd>+9SI<||Spysy$;=K_6c`|{r`sM{%CC1I;(dGt>Y*h14%v{>W-qP6_cS#6r1omOXVo6o&@+1x41sJ^;|L;U +4R^ULiukRIbntJKjlyt<=BZ!lN%*$Z@&HTx|!qEMbQ$ +SaiR#oiP0n^Hiyl}EDslKk%G!UQJTEgSu?Zi1-S06iY(b#E>F23ue?efofN>1Q<{f;9gXZHpV#pOBfe +e0^?ujgNchl_63>^JJFes!>OEG%2lSgH#Z2;}6*a?{N9031pXkWNPnFItLe?#`fMqzLaK>bCS{V(Q9dy>pN&?Jk +&51YT%dgWF4a!bM_wm(Ad;PEkG7A!-wdPgtO8)dHHmV`2B6viH>*h8U@lig#6x5VP$;jo26ZyQabFNF +VwgAQQB4YIl6tJj@(z0T$J3 +CfgLQL`rxMe1m4C)s8zswY0Kw_u&xdl-o2fve8vuCi4N{dk1L!W+!Q=Wq3(DYiO%C_)Zk{?!gKG$R&J +P^~98Kgl1QZ!I|cK48wD;T}%!USl0qWZ20F}+D-)qqZ|OVRZ5<1}?VvU^H>%$m58>cDPxcM_Qx<5DlhlMZ&b)x);(la5l<@EBf@+` +!@=v&qIe#{}8f14-o38S*YglPJ=iBjhjju-eQ%?}8S&lD?cdYRw9MSqgFh+J1#ixmDJoY1H#W-17TwO6gHqmQ*c=v_AHPE2lg|K;VD$K(l +#86I}(m8a69jXaUP1BM@4E2Lr0C=ycL*IxKy}PhpVxgsm-SfBAeCrl*yXO?xwy+7Fhb??$er+#1tDZk +chVv0`$w$5fUlO9HzE}ivgqBi0}CW=Q?qQ+^OjYA>&j8^WklJVqh>Zj_STX?59l)ZN@ +fiF$b~Gf4ojbq}h%!LNAfV(eeD*z(zJtJw&qz~m+8kv~qUX)T+vT9FgZAXj>L-v#8S`x$$(KEWG4 +-~6ZCupRon>oHChih5yRS=(=2b3s2L{yJK8WUg0CH-3l#7=FgV0zet=_iQNMkuxZGF_Q2KuY~kt!h>A +?IO!hHUuBa4#KO%`RiNkUQ}i)u)pf(uwpEZ9B}st%e835b5jQkLG<6(|l~R_$fA+oyBj!5-r<&mJ^av +ouPEu3d6;^+Ksf;LUcAv?;S{O%R#*P`>TBa9V5zyaxp~y%!u4fk@t>3gMY*7L%0{*e!+b9$AUE!WP +->KFcObWA|E%!+!xPfJYiudAJfzmIb|0wz67nScTP!Zderq@R3wuwWA84qCbR!cPDv*1$NC6e8et=UT +^@WtBi%30nLRE)`@0!(~6<6!GDx0uCa)gJ)+%=vALFQ?xy7@(BwR8Xke#LskY}@zVxM^2&{*BD?Wuo!=B2cl~Y!E +h;k}fP6VcN*m^#+^?YdS`Owzm(ERE9V7j5Rjv1j<|8|ULZjRfHezu@u<& +m1HdlkG%Y9MHr3ZR`AS_Z3`h+;9m^ty>q%K(g%)wGvIT*feXwNuL9B9wb(I10pIi +L~f`5W+TU->@$*z4!ux#_EBPWsPU(h^b{IX2%_r;cGlXDb{h9uO2Mr?_5(d6lo^rNOMDudhHNwX8%6y +wH=3)oU<=7q^fEhQtB;~Xn{W4j_bOX4h&gfEX>1qyD;OIGP>iczks~zuJ0oHK+Tp3lXnX56ZubeN@Q< +6Wi!q%uudrWs__8#^|lWa_{{=_IMAk>C06V(a~8=$*t9t9@?gs4!HmAakeDY{#L`Z3K8|=hdsdsAC@} +}xML~`jNmx@feNq7ki_xjBO)tW0X1Klt1Tk`#Z1b4o`}E8TVSAshMZzgpgflJ+_w8NXUZ +ZzOM(;370`FdOqPf^hq3829@QJp~$L!hD+vEWf6UfpG$6`} +AV?O1@PUH~SOnaY{_bH`54SCNEbm8P>mWN^X8R;vdKG(QXB9@=*XZ=BXmT!@Qu)(&_9j&>LILZfsf8v +F$${l#O5A64SczZ_^?7cfkCtKS`cWUUIZahJ{ya+Gz%iSiro6g{6`l<1h{uTzcbgsp^_d8^0LX4{}ov +(g@x-qU2%)({{b?WNU_`biN5P2sHu(w`xEq9$_h>G2Th)Pt!{@gu&kr&MZV<}n0zdb80djM6# +X-?(m`~Vmxork_B9w2`mI~#$jwTl1Whd@v1! +53Efl*uk#UWAVx`BAamYck6Z;lm#2=VM7O-T6=nX(hZ;{wY9DtDq>I-brk;@~z=&axzb{+*IRZRu_8w +i)*|HdX6%$U3Xq8;auQTsDSk*>GeK+vrpM%cVApp;$_Et42ay68>oMi-8x?SG}+xFClvYJ_M&hp;&Na +N^*WE+Ufj`Afqq288#-qNFjr$KkVsbEi3QbpwAEJ~z={F_33c7v2B1#fcWjka-EWsa7hbXo#7dxm+GzV9&%W$%@g%aQt?If#S>nU&?Gf^&S@zT>{=hqsI^-zA(M9OQCDDB;Q2oDj;)nat +P6tR~J^^1~2S(&ZPhxJt69VYPKaNl@cIeLO)QjI6y?E^i_Tnt`;+*I{hXmk1PsI=Uc%-4RR;R>{BLnM +4Q$3Jq_oAjd|LV?+h<2vxrM{i9Mmuv}be|8b@9T$XD7opVn(lVI!oEfi%`~g-uYn|l7FbZ!cc)GO?s4 +@KQvO-MMg32k4C5N8E2)i)wjJv0&FCVc%dvVrxn*4(v}z(`K8m;UK`w5@@{3{&CGX^sr`4aWBfFQ++w +e5sb=IWUYOnHxkWUXsoEk4PS-I-|dNBnTZNJMhIVNydhnRxq|R;XpeYe)(mV6imEaecpSXS=xvORCux4t=QQox$4@6rqyZa +ADRQ5a3a$?riKjH3+IrNU3D+9zSg-4&Ax|)GuvSa?lr3wFb8Wh4~oi8ov*^*(E~q(e2+i>2u$wJPnk^ +jD3e=F@}hg#pw{-Ouo90zt2b1Ue!})7rn970TB1x5PqGK7x1rIDyIvlx*Fp0xZ8-X;4TdZ+u!=)@q9} +NDI9dD$%{m@BW$`(7q6+*Pv(D72aS$Z%fqCE3>qE<#p)1W#^7wQ3o!IrPqP0U +-tZ#sb%xV>i-A-tslTK8CQ94q1Dg&4ITN%=!I?pKG)Yo(C!hWhZkg2xqN2`G +}?Z(pT=f>5=nYiQDf&I8fdf=hPEGQ-|3S_C;sSSMPP);8%azoo&Sxy8pC`S$+n2gd!Ixl +Dw9Y{3i5f@lcWN4BGD3}E +Vi;GH#rTh!hE#`UkxklZaG&ur$Qg%AoP0^9Ph`E=q!N{9R49S|~cOC=%HtE3|}NM8)wd#V{4VbffCLv +WhC^yCXeJ!~@+KZchcbZQSOjcL$>@Ll-jgC1QTt@QNBBk88}I*`IIeFtOv+Tc4If$vP(sKvn^dVC9vQ +?#eaLo%D$4!VCJ{IH4c@fS)?k;pc~vBu-dC^Kt=KQkMO$_&WLHmi%NX?M3!x*2i`>(HTrd)_VSg^9jL +xqa4~)%cW7d*N(hU9+#!Z2a>HAMS$aoWhY($A0DOI62mzULyq^lBFS+HTaa)yL>g_*g!T9#6iF!_b(_ +YSi2SlQKiO?_m-W*Yibh8`WrWJwbu%xa!i;B{`-o%@bgj2GBAJeKG+5KIiOq)JX_$e70Sayg}*lV>kP +DLZy5HKLT!KegA(w=i@-|@{!k%!s`%4}Kb?W5wxT4LDLm&28WO#+J_eK#*JOE^PAo`4pDeo#m2? +D^oIYKGQlJCaIiAqCSP)rG<=d99ThF1<+acbJbc%mRN5kTFHr&;-xsN|dOlGuX|pyZu#CR1>_J#v31E +$eSkgEu|prN9C#@S{r32u;So7z*@&U=M+mO1hg!3QgL8c9HolQq4u18bb}Vpz9X;YxylB4ry`zQ0g#{ +NX0eN?5>w4zZ9?uRnMj*7r#i(qJiPinq786uR5mFWfXM7li;ZdVm}3ard?P^M_oZd8-#p^(&|vE9r4p +slqcmOY5#b#hWEmTQ^8 +N@z%cb~AD!0Uz5ZR-lPSyC(zSy#$S6*7!5x#XA~=l3$>b28Q!8%9v&SB4tEni!NFY_(Bhuy`hC2o-$8 +Hytm|}{8%IdRFDl7$oG{Vlyl1xqU9_HBz+?k>BJ)0ViE9sH}@%X2bM{NGDCaI@B&>>6wBNZSr&gN_e& +273rQ2{jyK);>Zmf`7I{@gEtB`I5lccIiu?k3^qKedu|fw=?#+VTz5-ig)Vpo@f(Nq7xYQFn|`@= +6T)g2>5Y(VYn>4rkb{nyu*Z4Esf2{w5H_@#7HX80NDn~gClfry`F<1%_H$X@-W{3wj; +Mn%{A4oZ@T6|K%okVkpSMn`I11!MBNpH_vJlJL@!QGJ`t;qw)v#p7Ji@ICB^H~m=A>V;;ZbXN>ryepKTL7Aj)ZMPHw83dO7Unb +*xSQC^B))$9B?+OP%27RNj&N4OYQ&Y8QHpxeYb%|4j4JBp_k+<{pO$haPcb~FV4+o%Dz1qDI>dfCLSz +5IDmrsWqnkoahRxZS>>c7SknG=llOw3j;SOQnY-hnlxw`c=lemV{qGnC(~rXo-4J?dvq&l1xQ?NU8#Y +c8up7BI7!ZqfJi?=N-#6!8IGzUb7QDTQ=P?>~0}&V}x7fy&&qY<{a0vOQg_>-QL)%@N+L_ganyS7k`y +zmZ>36>d&Bxj@Vw{2u{wApztQy#PsHB2YR3CT~V1rRd%yJB*th5%R+PCO$6+L)AS9n8N@tV+yhzfp|! +^hW}|I6XWn#SHorthfQ)6hnfuFJXS~`*-v-g^i%F)^D8_MT>T|yZUBZ#imn7wH;t|!dv1%IgP(y|<86 +twg`m2|yT4B`J5si6PR1RYAEDS0Eg!HI1P5xj!%|808<7?O0<@@w_XBJt@YZ9Yb!us_mK2FQ^J4F}Ed +Z_;3NImZqg{VZxK83z%BPTnHY^~5L9Y9}Z1(|wcK6?4c`x>Wi25a~)qboyuUm?A*arA|+4cw}Qp@NS{ +i4DmUY^wXbim3EYySiA5rU-fP2G6Hs0~vWY$qC%)mwD?zqwGNY|87sqw!(mo;0qiA%F6|S3-(N-i}N8 +U5bvhF=0C%bq7<_ueU{MBYJ;j9z@#sJ9u+X`TbW&8($+3_|DHdeB?qs<x6}nx2ka +L}cUPdJKTOI!yyDTl*(yGcN@~&DHPZSRfnULs`S21qka918h)cHxKEPSDU0ZcMa;?AKzMgM7YOa$j7Qq`rpbNp{#kzDQRwGRhbczao0o`BwgZeh1)I^^SGiGe6)^r +)`ajDGj=IzlZIl3&2Qqt2~RmIOenK&J9mBgI%mO@nY<|pg-05B; +8FkZYL;D0zUe9te-LRb*l9!NMySA1xL)jOlDsIz&)92jn1N6Rx@onmyy*_-jbkNQAE)I=8j@VPwRJ~b +r=WMI7Z?q?2Dz$WS@Xldmv^yQ(Gp_+hANz}C%J#w3RY4Z#IYuSSNSQh{iJ0O&Y`9&W>`F4G)`X)+ccj +>aV^x%u%{qOgRU9Mjh+jCNK$mtMj_ps4Erm{1B7M7EI%1Y|4xxY3|84Z--g=|1bxhAfH)pw|=co8n(V +`w|zRNUhOgDUT$9gOL!j$S?OFK$EkUJIhUtF9+Z>-CxFwU^=F(fPoYc8QG5TKOkMU;6Kev00OaUmUw1 +E!8sWbh&$Y(WYdmj=qi5+Xqf?cSBR;MXUL6pFT7pTW@ +DqiSZRp9|IZY_Jk6ye&Nfo_J7fSv`FSCV`8j=C?gp%j+s?yGf|F#3<6nr0V;euHsJ?&0~T-Mk!; +x|`PfLhtX}YRM%(t591%)p)6x7vSbs_Iq*kuS+Rm2h!Y@#5?8zD|lsNF>>2>{pfmy3wH;Y<93kylF6Y +;vmI*(glwJ&_U=ki8j6=;+qDMShYY8TQ-A}!0emU&!{17xoCl+AHH;mfgM!aQIz1N~uK54>FlE)ya-IjxySR0HZI1gh!kEN62RW2#~J6hEzgjcel +JQZ@+yii~H6bG1+1X|{2gpy4VQTeP9`wqdxQu$G(bD2=`K9&p^Nyz9`uH=Ez^H6z6{7{o%O8LlfRu@- +c<1lzU+fUMW7I?B9vK`ILO7%dSlwK>*>W1G31_u355Cl#Ly&{MVHsH{_p{LTkB}boIRiISghqr +CH=82*E&fxSuqAeEb)(}j;k8*nwj{(2O?u@Ru+UPfCR46HmB^T}-Z|I>kTn}IbYPg7j&vg- +<2FNrWmCKg&RU+Z>m_0v(h+rLA&&E{A3<8{syounhxP-%x51_k`lMycbppH+vZW+l-~}es&!}R2{OM}OTJMow+vVu<1*rEKOS@K_VABHi|kVIcX ++TQ5BCC`4Tegurwd8^RKeV}{{tf@9?B|K#8Ql0J?P=ud=Sg&)@xxzG3OD +Fz%xEyXHYcYeopEj(v5dZmo~3lfSr +|p%sZRb+u8N)sDMIznb|C^Pvct;m=6PXW|N~!gKGaZaCHDZ*i#_jK&~+xFA$y-!*6V##lspp`fOG@ee +x`&bCEo)atUEBIfZUJP&!u#rTt?#0!j?W#n1RvxZlh> +EtH@E5fVx|o>@t227})Y2+l)CohXOEoP~Gb&4r@UJw5=O5Ftw%Fzr0tzeq*U!GrZcj6@3NP}1i(kD*m +k6A_gbMAhs9wkCzQQdhCQn?#Nr`_u>g9IRdN0~5`lwW9@N!YDrCT}Gj#BC6K|^+aO6O +?#N0sS(!A4h3;4gy+yxlc?ksgFf?b>}RH~Tei<(q*=y~Ug8-u6D$a|@JpOmeBOt?@Tu>>Px(~ir+jMUI=VK$I=x1l?qNGXlBhB}=-T&jbgQ5 +Glj)@Mxj}vN(?~CKvOuH|O6HJ-9zd!w`tUTAimH1knScHwr;lM9U9l4N;GVUhmirqu`q?f|cJkJ0fQX +fRKGLHtsnzco^U?d|qUe11)0+X_tOKqdcEZ)ej()+&820AKu#GE1HjN8==yN5wCyyBH%Xx-{(K +vK73ZvKULx=`x3bebsNLEdAT&8k8lI$1fATr8>4z%Tf1dJ@iW^bUF?IQVs0ye9_U)mL8!#JgGB_aDBe +1u|^viI4clblD{o(^63ct3ni^bWXvW#gUZm$7u@9n-=+Y>yglOGdcN6`3>sZ2ly8tg0{y#;`V%>Lapf +ekDsqa2av7mTZqFH_mt35vwX9Z|2@qG8apk(!ofH!MHjcSy+|^4{gVtX??cNyDZfq%jhIHC!uUw~!4vLdaduGXQ^!XAiap8r~V +?=v$XRNwo%_xt_+Ki_-c%v$@k_TFo+{XBcG9fmpi+=Dz4Bj`7M1Oor*MDvis;U` +{r1M==Z^UC#oyhu+$etolR|9kH`-@g|wiVwVlZRG*^DC=Exz#=Qpm@>s4YN+4PNIy*M4#j<%XJvD8OQ +{dIdmE{SP}W(R1g(-@^QKqekh9Cz5n`$}Dz){ROY{@J5q06xeXsQPdf{*MCX3pa5mc`BQL3st0ed~3# +$HJiQMo77RBQ6;GF1GG(XRQrV#?iwGzxE^<_U+Yxe_5Nlck48E2cDnqikJ))^}6ud(k?WS>q>h=j|0! +{_J6gdpMnW6;tXx>^7j?f{H2kc-Y~0IOmLtDffBUp>8qfH5F4{^>W+cdb@LA#gtdT4%%!?gi5!kmbwX +l#$P(Y(n?2aX-=Gh$SA?+12%?Q%9r-zm)S9w-p(Sr@7#mmi;H*kYEb^y^$e`AeP_}#eTJF14>Jy_vg_dc5 +JtcP@x3;$v+6Vu}{Tn8ron;oz8-*@yr3Guym(Xfxn-vN^zVJ8Idf`swgmYMKVNh=8G_Q?-qJshwL>P- +nda9ekzs|eH-yk)sUQ0liL*hgoEz|)$J%FpGs?#0~GneNz<(JiVKllxBJcfP(n&wEvi4)m`PGFO&>K_ +Dot+xA?CkHruQ8><1dmNYIt~#Z$c3KQ3Pb>NH6Q)k|Chaay&aii4lCP_J*D<8J)85ZepQ0#F8sVUt(S +ne5)txAU9Y@=pVbTGN->=C(1CoeIhLMI7#lt?Yy3?VYrnb+S7GO^ShD=ty-6E!?(EWapi$;6DIuu-*H +w?(L=?p^sG2no9ln2t@_8Y0n02&YB-rK_^JWO%g?rW@!i2-lNI)aXix{MdU9=c^lHcADg`C-*2PU6FEy9-Ui_m)ly35ZR}9HJimJjr}a5l^LMeE+oWNJ$tl7j_mq^dv)EE5dlg(O>8&Ojm!sBH;kNG>&%oQp +5~Y3X2nF`+Pe7IO^(|wUh!4j=|^^lrSzUbdAfr7qP1uaHD!c9jcJ{k@npmq+`;WoI%vIKV7cmeca+n% +bNF=zADt70d+r~7~Yxm_^ELZ#bGzt3`6M)&}RE~J%Beya^=ELr1P&&Qba>Ku12&P6HZDIpQgESYdSk8 +k|bL!PRIJ60r`Rf%T89-U^BASurq;2XG%V0f(G4GJ7fdIX1wqLVC4_U+XCJ96o=yaKGXZ2-hIPP#aWy +PCP>;>%eBIJnDR91MZAGqSHE0QyS7zRvv!H0c5R2g>V3Pic5Rn-N2t?ZS8M6g)k(PRR$MfTeObQRAD2 +jhR&|FX^gjQrk4l(@^DEN)qkq5Mhl-qBX4%oHuCW*@J_*u0wND@E)yZe)$?E$7ues +c`YN??*l=d2!+Je|ze5~5I#~G#-jyi+2!iP?Ot#I7wC44M2?IO5=D}CR{-CBBonSHi4xzRplI<8pSubEEpwC>R9xTnfK +b~=7Pw#QB~_N!o`{cULFyFQQ=d{DAnqiHX9xPtqE`4w$7{Eb-OcXNFIjmQLm?0_RPaZ@aQw=#mruu95zD+kPdhDGv3O-Hvz4Wpau_%@9; +Bdl>LwpK;grxR|>DRCpDdMJ7-p^AqYkrH2ijomp#mApVE|}Y-h(rv1((#Nq?|Ebu?%r^2)+XPI7>rb?b_p_v6art2IW +<*J${uV)R2?j0{$mVWBb+j0d?$V#P8eKe#DnqP@04hs4oI*^e#NAQ2o6lM9{a6+~e>GI`8xf>VQJu1L +B@C9Y;y_t6?evU<8=FXm!v47!D>MLZ>M{#4$uyqhI12v8Ib8VbYzCQJ+ +gQ7{MOFP*v=Ex9q>bD?9VJXv6#|yiX=`G|uOzsjNB1ZT%FVLX7w`2x$4gT_^}Rhulmzvnp&2r^W$lzR8>DPOB(vq@hoGG8SQvuJ1_%Nt$oXz#$e3Z2V +o8MX}&G`xP9UeYQB^8E*vy?x9OA5u0P@Q!E%zfWCiK!EK7JbC_laa3OUy);n$Eep!>~FMj^OK01shF> +vxNxjcxu)U09MPY3&h*nl|!R^+Mda6k*gVkM(M&ZY>QAG +u{T|7{aA{)Waj+1R*LAjp0+a8&q$IfC)z0NrPn4v0&xE=CSX>1Zlv-u6y&l$L*=uf4j9bYyEJDP<(wT +d)cOPp&F$kZ(h0UpeGy)Vd**JOFu3llrDF;lhu{TBFfXH5Peh7)x4FB<#rI&>NH=;^syuF}uzymyCZ> +$QF#p2t_4GD66t|7&@(w*hfck0GI^kVUUvVXy?8@$9H +1W96=mOfceSBZMp|7#LHF~l8JZFrO|QYdZNoxA<**WvMlpgNyGNCj06)VbTsuF4a@qEhtYS}8hr``AO +6l@GP?!R_+9+kGAL8R89NU~o53N4jOc19#J7wv`}VbiX{rK_kHI{(zQw?2*&wv7a6)W9cj;XcE!_l?G +frt<|=fa2vg#3+zDKF1oK?+hM{z^~WKyVeP2F(UV?-q2g!U6>fW#el1f)`UI*Xb%7c~#cmv@Kr&#c*p +5DSYAAn#S$rnd-T)JB%r^<9z)-Y`1fww&?IO`mjdroPV;}9?&|XA)mN2OWZ97bK*Z#A{3K3&4R&>z~> +Xn#Cwv&I?Wt!X``G>c`=-tw@fDFdWrrjS{cg>iQt?_d1W832B=XlD`f0j`2 +HQA2v|kt@OH^cH5fnRkGW86~l#34A0=c1*mZib)g2SvFeyTbDKZ#f2VYrKI@Ec5O$KK!XSj2@gmtqrO +EqU!-ZqUgrmlhAK0Nzq;^5L`Bk0vIfmWegaSSV@Ch6r4)`F323B=CcEMy>A??NA%k=kG`g@7~{z89$r +oR{IZ`WSU!gPWu1MBOvELZr=fNsY3hHXehqv!5}n0rT-?0y|}SIh1f^wfR3%Y7(yC$js;dK9QuaERE +(21FykdjazT&XKv!HVkP7TnUPh&f5Pn05F(-E!;?+ +DkHIt)A{aSsEei2Jz*CEb#MeuR*Kr;!PFaF@V=RDjHO=Kl}NbYl5kM`yPfu3sjhkH&3k|EzO1e-? +ymfx9gZ+G36(CB>L_3eRPR*YL~`x)5JF^3vFOu&>4 +q6Y=h(KoL)$|+(R2LmRidnB>_PInTaYcvUajFlH9$6#~Z2`%10oKovEzzDrFCTarqS?$hPQ{2%M)efJ +l^0c+ysH_d$u*J0dVwZQC?(_w>X#74nCVKCIL#rit68tdzRn1 +?EbrCAA*Svap3x@yy5I=Jo{o$!HC*sYb`)g&d+bCq~eNCzIifl*=H9;qdHZ~YR*8ZV($Cs@ja3osUU_ +!|U;PRR1P@Cdfp>|{bT-ZqS14J*G?vc39yq=+mn9@G~3=jKivdFc+5Kq%wdPoRx!fUbhVfXUP!jn@3<6O5~);-xtGrk1cg6l$!$t|m{l`|b^a50MJef)l&cU%O+@h +KjAX!e%#zgkujVecpBe{U$&6I^}LUhJ6~*JpJp;yx|Ekbat=x8lxNx=?qBo_dD13D*|c30-KIoFVKWv +_79^2UsaZY|!H6*oOM+J1VANoT&fDf$PKb+!lWU3*2U9RvHrC7nfM63LI$5KsW^u&U#Czy!f^B3f%@) +REKdC+sRa;fV%)65NmBW +mn0&%E3S{w(0(hp~Y7}k`H43GXM&Tb+*Pv$|(_kHo?@`A-s*vj#5ghpml3r*xwAUpf@mTCHy2Rt$N|$)3Jj +8=8$%Drlv#^h@#+$tx#aH*?`ri9;oe>Vv)oLy=4bz!kTobNCLajtCaEGOc`7`jOKsP~nyp(CLFcU2It +m6Mlxo5e`U8BWQ6kTF#DK6!2rsWCcxQUm$2FpF32`0Oj3~IXx3z&TY&|jt{yo8rfCk*F`&7bWVr$ +_%zI+-1_>BO7U|WJFF~z$dE|!AVWZQ7!oVK&X9QVMT!K8&oB#(xP>7G@j-^9igz<)iCE2$EO8A(^2Jh +yB#E~*Vpq)c35b7_SaO$^6d&qNKwG1p=u!;vpytj(n~UL4GDWSbbuaC(2A55ut@iCwo*9P5&Jmf^ +@Hv5nz)?S^=q;ka*0Y+*RIWa66)$9+WNc7~(=O>ry3@zy|b6T@-!RlJMgcotbKXE;@YW@k96OcV1Njt +bVqjN9DG(Nb@7YcRL$S^SjYNr)d|II4se_c7dn_)dnSYH0B}hA%; +U3&XPz-^lQM#A_IiYI4Oj3@=06%J6c;a~WQP_!5RUAZ}v#Cd4%i--37|!?z(G%kb@p4`w(XA{0YQ=#Z +8wY{OAvp1ZCG7?MM#3os4y6~Cb^)%8lSNnkdu%qA3Uu4Xn(%w`GLWHOsqm`xVgq%)hxi{;p8+k(>X(Y +8c_$J2Gx<7yUE4K^p3&2nZF3pPiXO**rQ2b(5llfrD0z~)V6Gm+V7z~&`pGmP07z-Ak>31K$*VDlQY` +K5?8H(>J|vuS5GWnl9-v-!Bl)c}Fz{mgPtk*g&F%Nl0+e37e30?Rv?<)$Jx-?{!E;C={>(Uo*$uB%aq +Z)|jr%;(+VIWj+BhFL-#NvVN30?d#34B;FO`1{p_i5oV`^Mm~`{D1ei?!SsVY7*YXC6(wp#jLvUfT?> +Niwx3kAi3CZVK+|09bYxLr`vPu!vpdvzLZpX6+d^WR=o$E_*@|zL}icT9pmfr^xWhP)BX;LE_)^HF;? +%jH#=2^Xc(}zN_!I;aS^2fX5M395`9`+4AA(oa`~Mqn1g^BU?DQ+)y*W7 +&!t*g3xCOFfQZxQk!K+=Kaw+j#?!j&4N44dBVkJ{j_3NCqD_8w4$gyDm`aFj1`!fQCAz0~(2Fq+>iTz +~KbveO$+p*OMNW!$-?Ye&6DXlCu(xu2%>SGpJe&ssk`!VX^mFKA30+Dss@8yq5DS7cGxogSi-xa4W!?BD@v=sc=xS +w-mGKp5j(1;!*-#^AETeKc6~36b-V&KbS*D13KWwfj4^Q2{qF}u5j+o)aK8Dsml+>!1o9<)-U +cqeIV@DD@1?^TbX +=IBel+RCqop%O9Ni;-$xAuZ9?*;Pq+qg9s1t5b92vZnm97u{o|a0FN~yMoBpegoqgrs +T4@V8(V)#Hd?R=N&iT8bV3u+hhX#?;6s3qcM?5px0q-$yQX)zfFp@vO!d~rxO<;HMKiBSkvsW$GFBJP +>Qh^xur>eRN=y%)=z0KpJ9JLiK{|TRoy`6 +;wJoRgB#f(b7s65P6%$nZ9+?E29Sw*VV@K+l`|2i_rfpQxL>_Na8M)q64hP4c))E9e}mRB}=;fK=UTr-1kFb{)j#2qd#5G6)Tvx2KT`?bkUrK8)w`BjqYyb +bjcS3`cJX2{H!+8Uk81Y-H6wpr(&N+*IDF{bv5RI*;0fY-0LpY`IlPA19DN0_cXD)=DDm+_*6lV;%zl +{nl^M`dsbOtb12hTsVz0|>DlG7N{N +!BAhVruuN2ba9P%5CCSDAvurGlHQF6yL5O99W4+n9)qF&e)KOz%!y~kG681K-l&?A5i-Pe7;^9??c^r +aUBS3ZLD=^?YQt>s-~I#e1Is{F-704aN5a%&U)h?3=LB#Yp%)ggLzP!MPzwcSsBH3L-vM`f<<< +I8W5vbGn8Uq&=dfb)@8{4mf#uMAx$hiaqqs7Mc%x{0n1biaN>{u>_f3EguP4AQ2MKWXC2za +1JXe%=Q0+L}CTG}dNoTnoL*1M6`*#31aZYE2%B+mmn%4|ul7DQ1;BVghoZ3$ujUgHY$C&Q-m04jJkdj+(5rUPvxF#vWJf1dKLEd3Dcqt(A +xLQ(GW7N>jW>o&->$qO@t#j!ExT+5IMYQj{h`ZA7rR1Ckuv84t2CHcj^mMIVig<4vE18!sv4dy{C!Jf +NU+Ag@#+T8{)L1D$jMtk9KD%kpps@#O%h!^tR8^C}izw7$%!4uJEwxlRLHl&Dj{|wYRhN3~25}w#>kO +o~Ii@C>ZZ^Yi({r;~U%D7f9=aGbjJ_CI+lwxSlMh{?i{bP`ed}UKv|pi%!ANy64Cvyz7+$Jzv9!6yLl +?v2cCL%zMP@73x;+jp=}Q*_-Pc6xe68Mx`NZwWT=z`_s1ts55OF)#g#GPf`KX|8P(sNBctH+q +boztUubWS8 +{>pWCW^usSH(tgx9(H}KVgfW*FXNo^EbrVPbfVzoZ^-aX%u(aar5q1Y!|3Y~biHkHYeG^s#Jr!ARE~g +47E<$^hs}n?*t_dC2HIV^tnm8^Ks^{5iS=YoCrfcG4wQHzpEtF60ZK5al8a#AOob<A_z-IGT@hgl1jc2(9ovo{-eg +L!Np_LT&nXebs4I)oH2=Z|P3$8-(iU+C$k3olVUfeoV=D+q5OC`orjQ-z?Q@cPUATf?S~-qtW2qGF$a +pRe%~?wYxckMIwhkaQn|W+{|H>AKN|`gGqrDRCeX6?kUABc2& +h*Tq{PBf@{UV@7q)>#%KlCiZO&D3+;BQ5#u8T(}*#MYQzXpaE%yvn6*952Q^#x8}Y~neqofAT8vh`gG +YnU1eNxG2ztge9D1QTi}p@$c04z&{j4|LWIt^+6N^_)LBH`KY9F|;pX!tFh4ANsjKVPJzJ%soOpnEGj +0t>%Dlsns3OehQBS5VSKb28(?O&2BD7i!0$LLi%=5-nB)9Kw_1~W|F$_B|wE~0>5230wr($>xC0uwI8 +k{UgDUfS561Zf1jGWsd59BO9e`>1%LQA;&w)DHEc&N|dR(ViizonXp`m#;fk*;T;w-cfZE^h8uw3AxTLKSkrhgcmf+9fr8~3`Z|I)ol7bfGuKpZPEqNR3AY6EIVn@0=&=mpHdtqYrXAla0bmWTjXd=+ +Y|j@FlF2`_-sUVzSe#cCyUDb}LmU@jh24;h{r9boiru1eXSwnfN%z(*i;&;qc4!N6hJR4uYZr5K8U*% +sF$Y{)jnU)aWJgCr>L(+3OIJ9 +nj>%XTDh;y>Gh|f>LSip`4WsV_#P;X9#s` +@6ne;CSdB9@l2)E`A|928UMeuX_04RJ2zInFS!^|DhhYNv==BXsm)Aw2%9i^~O~abJTMS!D#(qHz30w +fHqt8L`EsG9uMOWyH`fDzQp?B>ehx4;n8%cYzOSkr`?B<<-)<9E0$KPPL;SOiUW-qJViDyU0g6jI$ka +$^c#)9211}ZP0nd(zsy^Y~=~4r{QSqTbLpU;Nx@7Sgp{hgAs$jjsjgFTj=;*LhtG*U@z~b%$=z{#A)#*ZQKDHWq3V@iinEV^-*NT<@EfnH?xgn%%DQd8wtD)!#mAvOD*;Uo9v+UF|MzMR2GPDH~~oMa3d9_miA4vd0`c +PFhl2Q#0spLXhT-ID6yuTP7Kp*LJX-*rg46BnAryMw9zQfTGr?OyHZaY{yvdfg1%5fmfMQEbGqmCqT=U?$Ml*)^e{VhC)zCRg4uW458XmV-{IrDI2dbxI<63Tou(8;Tv=!`J +r%t6&>m#N0}GU%E7^J<~4`FmlYAiUUP$00Ewn5}llW6$#ATuI_PTngz97Y$zv5ke*|W!e%BC=63V#;& +EODE9Vpf24dLi9X>p(_u<)d^u(xfJ3}~x}*_~QTUO^Cr?*9oPBc2!cj#&J>7w;%Vq2aF}(H+wZ%lG;u +6}@HvN>GaK}h`5whwv$cVQt$L$oQLZkw07(R#h8_{ +_U9{7iqmy3I@8?8zDTe%!0;b$hUS~)+GsKagO3!E9?1@s2B1por|6v)2inV_iRyNbt@!N?YylAD?zNK +!p$50L%u?;}xp5Q@|6SM5y6>=Mm(L!&@;=u010J5 +qZ`IR4sMcrmROk-Dr*bGLN(Ct}G!iQSnAm4=fHq0KKgW_80iL-jcWtCw!-8c`-)b0Ka%_)362X*#)uI +b?AP3MH4O~QHMGp27h+wST=J8y!SGF~=n5{8@cKph_ae|?lzcCPa +BcXlxB&gDR<*I&kbG@FFgZ%_^!vBMZUdg*cisf!StV5XDg7KjNsTUb55XJxhfw-GS6Oce5SNi~1LWH%xWo%j#DSfSQ;J6MW;-HBg +`SFaWi?Vz8Ft>V&BnFq8xb6q1F?>Xeu12xoBd&>Wt<_H!*$!pMA9e~KAu$7xNB{5%B^% +(Mh)|B9Uw&9g=2lZb#njw}7j3w@}VYlRc;gmk%91IF;@OYeQN)b_2ZJ-5k0Yv;KBKE%?2k4SL&org*C +t@E0wd5xtrI4EGK80G{PcYkTqK*#Hkn^#8I2|<+98p!?N0}ZHnvb7DXuh?7mgotsJDfI1$%W;vl+c4N +rrO+}h`DyWGeeJ`4RH1fvudvkr|Rc;B{!??vR}rNca82?Ov#O^N*u2;xe*SDZTCs+8eRjAV{#6gYGYb +}eJx5L3k^n3yb}zNBw=s+e^qR!OaD9zbA|nFTzk!#GA4)X|dRLX{*+F4{;0wQHr4LnP*!zvWY9D_N6^XZ>^fAk_SA%Cmhx8q +BmqfG7q%d*nKK}=r7?rI=)GePYW1{*g5kIKoH;J1@NDMlAV}4Z7{q4bbq!wPI&*_ip+Hcwc|i +sEPx@`o$n|Eqb9@itrzRoW#b)F;RTG#C6HW%O!Yry-)QV>^8C2u>prjKd0Xtp;O#zOg?20KGdts&0yX +9IUD~38#b|&tc!M@6j$R%k|bY8kT|bIKL2f~JS?Fu>_g(8X;P#5W7`Pzu_fV{6mc_{oaw8V(z^&h1W$ +E8uuL+&YhZEyM*gKk48z;q4AGL|!YKnz>?O%DO8lx=j!68am~S>&2|jViD@klR3B-+*_&68w3sfgiI| +3>vCS3F#QokPC3cAE?#I*X{OKy4Q>DFd +BD!%DX(YrK6M+S);kZmj2tX5m>>j;!>LAqkh#o +8f>?1p>Kw(shVt*gsML~gLI~?m=XIZ`cIfDbnk3hEnmjx}i#u%Ch%bv?yZAjD?m5_S4@Y`l!^5CN>gX +uvfZe+?K;kO!Rz`@V$h~!M<3jocE7u^TYv`S~!)CLQpB68@RaN8G2h|RJ(k_Wm9q23PVh_ +`mJah(c8rLA|*~dF{TqqHKvJTH$(_!s)5*l_d5N+f=Vlk~gC;b$NCi(G-R0R2|Pr`(w4< +&PSw(RsC=Vb-SuMn%ZBH_sRD|-d|Y3_cTHVW-VZuS5^(Gv!2{Fbs +!^Pqed(p$>*Y;Z)0x)q+cl(AV2e%|QZgZGq;Ug5f@tSv$6+{5oF+Y_p)qN0FP*e~flWefYdrz~!c;0m#g?IFRQP~?yue +hj8^PSuXou%AP3C+W+{06_}#pi?udQBPKSYr_1Zo}yDva+{viAc3$pR3{a_*UEFZaj8*rrjilzW|**q +icZaVu$$mS*|X7yrF)Pf-3lG5!04ZCixnKW@qFTdb!rkW6JTayfY6XGcZA=>L8g;2gvs6SnT@_;A~l= +V|y#U2%)DOf4+s*CWEY}FQokz*1+Hw=8Ko@ep1ADL4;lUCyiPI9hNj|9sS)7znXO3S)wii@x*MrfD@R +obniizOXXWwVWAqcq2q~Ld-#cGp|ixzJaoKgX!<2Ye6nXCw^N;m6Mfw7LFj&KZ}IKIPdVbeTYHHRk`g +b5^_CIb`zjn2l;WTM-m7cKck{5_oe0rh$%M68#IA&*!|%CQ=7e^ajRk$?gbow7^cGY+G|e-VXJQi$R3 +!Nl(x}?FTY$gbBfY-Y^w9X?dv(I5PmJiz$&h1KI3!mvRTA;M2&II|Pau3wkML!K@KeJYpdKnx_G`6Tu!+NuIQ)jgpE(SSVQ?^qV>z70;am=vadHVQ?UaY7XN$oXz0^4sYSm&fx|Q8#vs|;Zq#G#Nj>;KjQFn4!`B_XAXloA4hYj;cyX$g&f|=;R75#$6 +*tP$2qj|@{*re&ey>l`i<)Devr$-P7b$m_yC8Wa`;V5_i%kZ)2>0KN`zD`X3&tw;F9|p?D@QTn%NJI> +)pM#Cm`h8WeBmGHN#szKtakS=9W@o)0Y+4Q*9+VmQomX7m-quLrRE^Sm19w$t8sZ)xB$U3L0MqIYh=UXpJ1Kw|Ekq5k4gN4*HT54t0x3)bD)Y!f`1AB +5yArTB0_8b}G>f +R;e8^ELVA=3nN~tUZ{;dX^T%chC*J839OvT^>bH9>OaMMEf0_u_t;R?v@++PXU2Ld-_`sgngesie1g~ +zFe*c_BTx~n1H5*jPIS>dnH6@pP54=zTUOGdQ_Y)h#beXanyEbW*tOr4F!2bZj&&wr(MHG)-m*TR`*Kv%Dv{ +%DWgs*r{w3Q*JGXys9AvD}>GA<;$oS0%W0f3iGR(VYHvz3VN$>;8%OP-= +7k$@s2y#b>1@hIChge;b5yP#V3}B)M+7Da!N`|B3WxQmPhGMpHh4OBOR>$;qX7W%?(QDZg3XB@mm1r< +m3667G(z;z}x&mMdh*lYV!3!c-x}9Gb#h583IfpXf<%^6$_q;;mo-t%){DJ=fJntmrcynf^Z`Kiy->r +TowCkqeo=yPhJiOQ@X0()Ko=_D$FlSX?}3Qqp&QjrSOyAw!=g~4^wT<;yRxlS(3ToQBS*eYUn&s56Fu7Oo$cw}BOKd!*Ns>lusQRm+D{`l;QhO?C0h0Dn`#2JK4e$eBI4{BJBBG +qFFl%VstIBh-EZwV%LkU=B)0^8`i|W*0pjZKc?_6I&qpxdBqOvKRY#d<-SqE(B=h;}cJxT3Qnwv=75) +E^Yr-yXeg2?Idyex6;vWAvc?8IpjcHX3uQ!yNr(E+~vdQ;HbuJ%km?qUrw)_PB~q2dgOGl_*T2pA;&M +rE60O$vS|-$qwT3X9kXfb-F7&#LSLml{4J&}LNOg-dAg*5Z%;cjZ3Ept7SeQjnzL!XSiEw4GJTnzOh* +n6a%GrWR5Z2JB~ZEWj8&WAQ6sV%9>#z3gxuT-%#aG=qU9o^v*cKcmRVc^aYM<!3gV +wR!Q3{Ej>nNo3<~oXL!E3Fy0xSb_wk^k1&X#31N4Cwyu({dA)ClonTu2{jBTb}-v>^Oyq=j@aJcc0)v ++WLBZZ@Se+g89a;7h*4R_ZbVzbv`M77vRw2Q!&VimBy72Zz~qq=Vrx4EjSq=uSKzg_pOFub;m%ATTI6 +q@OA@tp9-Uh=GG5qppe`JY?uF_3#lRV@8c06MOYFabw4gpAbKBQbOXj*G*2EGBtVH^cgcX+F2<&{p>j +gtJGPAOm<>XrOmgg7Tx}vbCxWsy!t<>&VxvFgS?RTtMyKX)Czy7 +GN_=|P@UFmk^p8kt0PVb%ZB?EhczTv?|1|J@RxaR2?$r<(*Q+< +#tw@Xsv)|F3_)mw)^Vhd)n~r`sRSGS7E+^B>KxJKsHR=mj~hr@UfAWmWZ^f2ygi6Yi?N`<{k-@B8z{` +yY64(?frGc=IEV{&mY^k3X^X$)}#)_ROd?A^D&sk!CA +yYC%*|IpzhM~{7Q{KJnvZvEuM$xlD~{8ZZ)U;g9tnXkSU+rM$1J@@T*9p}IQ;m4mkFLYh}`Ik$-UY7o +!JA}R){6Ewo{7>iqe>(nudxzY&`~M35?*VJv*3XVv9$~yCHNrzM5$Eb5`mKV%RKQb +FTbgpRZK7^i!r +&|e3VM7Ge>O{Yt~$?FQUoCwnUTYBuB-(P7$D6{01}eS>8HZ{>&jH){3?xxz;9Og%q>}_&H>UWgX%n*X +qSC~TRhdbIV`r-1;xu{KRw+`Eq1$yGbzemfyPpME^w!y7+6z4voCvayF(fD=7B$Me-@kVH~gjdvih3C +R~7Blj;)8}(AjG#VPC%Fm9jBp6of1Vh$|ZmXHQN^vE5cusLszW&MmaquE?jmoR?edP|O8(bxujHMO~7 +ow#wfg@flCoTHWgi6KMQ4fXiqqCh%27`O%kIp@CqOnS=n{q9RCz8l(hM0DK)Y9^`5aVx{?(W!Yd^SWs +-4svcEX+9#b=`2}`MsWm&tqR!5>Q){Z$3_e3Ye9d$!HP`j18HQI0gf+ +)pq3lk>;wy(g_J_?>H^qTuOA?I^{hrKimvm(+Xtj2Ssboy~KBQq&`cEBy~219>bgELnwwF?4Uqx-wkf +Jn2LJY|9;3;HBzV%Svd`3i8yJBCCD%)xRI#G7vQ`OxcjooNOo-S(qtPiY!GXd?{rFuYDt2^-$f59U%) +A>K5*=NdL-f^c~vgKHt#l`)O?n4yaS6W?=tXnz0B9X>|tl!PwE3W|S5bSqm+hg}j~4$So+fXRNv|alA +Em8TkVb(heJ-Bm;7T$$-QlGGKw~NJwLlwQvqwEAKyokZa-XIL-V|1^fmNvqI%VREd5>H7Up%HaL(B&Q ++1YiT%i6TV%(;w(ukU8$&5AjOQQFp`9N^NZ=VBHY$)r*+WPa#2u9uM4}SGY>Q}&8W(cyuze~LZSO}0< +%U4If{7|2(B{|XbHoce@q>2gYcYJF4+(@Y;9^w-DM%3HSP>pb!V^^_d{Ssfzqa5bfsIP5f0kcr7{;{^ +;;;kE4S=|mBx*s#5jkzS6A4)h?|7cJsPO@0NbWu|BylepqIjG1YYesq@wnT3F&-re&xN?s0w6xX7lc~ +FC@=geFJ!t)Clj(9-d%E@Rlut>e>cx)x*$DvNKdXmq|1*)O^Rrf!#^;EkR9+EczEg`_!0$ti2}X=zuE +>I32T(g>(!}*d}k%1%<${`ZUArg2Rxqy{jShyeL6Y +>Z70-n0^_3BJQ_RVzX>$mue={lf+u@8(@9_9Xv0k8Bh_r|-!vk3WQmPZ_6ek2Ui7B&ebG%!o{H%JHL1 +9-Q5&HM#~_>z#sK_o;GPW)h;Df^qO2j0N@!5Ib>!CoX-5k?g1V4}_qBkDAmzXMOyw!s}&wM8Bo*cfhA +3=U>8odz-u{2si(E!SaKmXKE!V5m4?CQ0@_v!Wx- +e!3#1H4tB`%uq*w!&t8rfp#aCx7Q0IIy~E-4YxrUcz@vjjewtmcO@aC_fcLg2@nj5cDa5W +C-*bLx9giCPlRkIug;y(ia4N1DRhcV@fJxikLtWlNd!}zQ3v?vTfjz@W%euuqpx(tTYJ8I^dO_b5 +f4cW-5(jt1HIjk1l}PssKA-DTTXf8qo`6Pn!pi6T-7eIvY3Um`(JI0p)4bztiX=8Burj%L0 +)d^RbE=Wemjjt9}x1`2Ojb_TuJ(;si1E6BmHf36q4oQA=U#vPKt){Ks3l6^yjIpjzj%~^hKq)+LlI|W ++*4<+dKNVg&twl0#m!mpRG?>?Vz&i>qUGM6+{uBAOTp9BcMM5nh`JcvxZ~^rz-kmdIKT704K2+6g}D& +TK6|V*Z^-50Bw_3Jod$YBpBikUck5&HOYsl6}2SF8cAg{9_ksh3sAW1lvp-bltUYqgJM`P8D9-;-XS|LntO@IU+T8T`Mx4}X}#bGv)JVvfb0!lu|Jm| +-s_aXt$zxUiU-ZO>m!)`7`$^?7c|GPWX3@)fgf7K^E1nGJU{Y$GYSHfWKTvSIFrAq{jf%p*LEr+pV^7 +uaW)*cKKPFE6w(YWgxVkZ4Ow3zipi3TY+os7S72HYLE +H)I!~->1Fj0(2m9d4~&-3e|q$Ok +p3zf?<4HE0c*XZfuFCiu`zSghJ&9%|=ZbTk=gqY!ND#^~}JOzqBV=gf#X{)Ukl8nAnN{UNM3N0yiTOk +W&BR5lfhs|aww(AOPkeCwN>czNIE2Xfc)WV5huU~M3-XyPl7xVP9j|BR%#bmNqs>QOx&EfIhyqt{1R) +^h4(>K*CwWQRe6f!Y=F5^=~XDPMYN>=kP59tf_3*`6&f{a^WDJoe>i)NwKlCzlT6$|Y)_%{NrsniFE; +xa0RWTC;dSet63!H2rbmE{K9-@_d=SokFc#dhGr$6f|YwiRU(=A#tX;t~@1p6Jm%#a3W1$jL5T2<)M9 +nCxw`WUsVbVQ*!nXang)u0u>;`lJ`LRoz^DS&qeu{vZz+DR~)r->0*ex3N@bS>{;2++s_GB8LJZqkR_ +G3l|lDXk{0s7q0?VL7hZ9Q%T7Rhjq52m?i`gjSF3o=#r9cwL5GUD0;i4%uc?A9C_yakdM5^>8=S)v|c +lrkS(2F#$w29c45KoJ+rMX&Ru9NC{8JHKnm~b(I#lgC`<)QEY#Fv!1+Rp{R-A;J*5};c9UXuVJVPWlw +Ihskeku8P&VC&CR$kK$U%=<@}5V^)AI3Kh7mZl1pTuDC5gU^A!aH@9L}MV8YxQ}13BXW^i^{DQV;y*QAlE88?^8PvXVW0h9oYQe}etffn}*eElKb69dA>c7zTs~~3 +uPk-~3@&Rlvr?S7g)NU!lk6zkR+V%iO?&0kPS}Z1?GOmLh5psg!3oNW~wlLXYZ4~hGB@Z)X0{kz9l5~ +{jBcWN2ygVo*+ye^YX3e%)Tzs@3?>zXiDBD(mOT&vvHgn0Hm&dp~-^=|46;nb;0+SCO>tgah{A9E9Vm +-~>c6Ef3-+gc`K=Hf2y8HL~U0?rs{`36j`K?E;Lz5mqHSVD}Lf&7hK9+Y}lDFy8IysQI>zg-+xCaH#C +ZNhdJXeppZgJlS>KVX&A4(1bI1J=&K^|@cd02!hPB)a>;W>%^{6+iW-2Pf_)^c+SH>dJ23%LD44i|I! +H}bd(xqT7Aori?(F~>6!Hl9{L?!TO;xq`zD+`W>!S8+P`!izgf9_8l8czU+-_@3tWJ9zpIarck8d!#? +(h0HTgzLVcD_k8}<{{O4t|K0TetKt8zKB#7`o5i#I9QnTr{#&2WJ|E_;?(_M#C+)xG>3ef1bMJfe;{R +;A|CP`Gbs6aK{Qq1eIwte^fR_*L-nPO3B5T9y4a2$nQ>Pew>`4YI{@O;53~JVuQ@9QM?|$OM6Y4(bS6 +pUL!{Muc(7%?$*TDbb$4@_g6*=>``1s9z(_i-(#pc6+Xa0#>PN+%diCa%hy3+p#t)I7DBxK?`7VL%;zwR!zCQ1a%kXC!(lv!ksK;H?2Ca@fM*b`H +02Si_-}!(0wCI5cpm=1|Guf7iGxW_pixh5u#lzsHM?S-pqX_%Qn;N?zW9ynK0l9W!~o^<$80&XvlqRA +um=hmhYrz2w#7@#c>lUM`PWoZmgyl*aQ{F3&a&TNeIn;ClX?=5!A({O6#8r?aQb?F{Dq42PGwJdx{t{ +r)8d0Hd<^;N3h_K@I|Z5GJ`bfNugQ!F&8F1)aoe!y(ULuLC$P0@^FU;{mRQH-4CctN}P4Cf0>$5AZge +WDi!5GJs9+ZjV%u7Jzp}LR%TFpm0w#^efgP9|oLE1Um4x0=^C4et5GW-WJ^NI*Fw}9^j%$EZ!`De@g(KM<~d10KZOPd=LRfB +{DyQ0SfTOf}gtpKAXsBJ_m5cwaiZ;z!8&K`NjZT1Mf8OkMQawh~wmVuuRfX}5cdxRxAs3Tx+1sE`!kbQs$0~|V=rC$y3);Tb40(;!sQ(y%7L>!>e1nG +ganE*avhA|r8X8{J^z``ON%W;IZ8(7*J0KNk667b&$uod1cz}o;aBYn# +Xt&nF{R&yc_WbqxsM`&1d;SxE$U_u+IlrJ)fmvC%|tO0?)zTCykKFX)HZDfCXv1tN{*BhkOB@7=YW-8 +BK%-(|KJ0C@q5cz#bR!Di$;QDuB%#Zvl9038WMJ90%xJ!swp`7;__|i73~+b}!(#wG2XE +{U1%->OP#3^{3BaRP7VmL@>f3l52r$?NX0VS0c-hA45gt4+*dbn^gD}s|>QO$x_w2mv0JhtCSpYOTU~ +U5Kb2-36@aBX6BLJ7Kg8Tz+1$a{#^c{d_0DNIJOV4(IACyD8k7)z=T?OzO@D6~hHZVWs00&kwJQCmqc +uxb~1#m(YOHVw&3V6dI%~b%0Rx>`R0p8vKatLkC8h~5xg*gl02$Sw(=}!X~^=HU4*bfFce*E5N{~Sh*wtEPINjp#k8&XP_+rKL~$)hPOY@LjMeJ8`vW}@*MCGaD?g4vwS +T9IOYZ3X93KAfrUjl=|yP&!9Ee-yYR-N3;?|5Wymw&V*x%3Z$9A90sPAjNE6_j0V;R0J_TX_UCcflpk +o(r#{g0{GK0R(4$gPksPxDcFAsaKdpeZvgK(&UudbN04Ulvkl;oR;Y)7 +#{w*BW$l9%;0})O1bE9QOvbVRMt=tF65xXYJ_zrRSbqWPPC?n@m&pg7x$0w18$G-JjW5@xdOxyj^j8&1IO_^Kt9J2uH!iF;eVXt2;bs3!d8wW{DI>LqrYZ2?meHuaf +FLGju7|wVww@|;`aY}*!MvE#fcRRBg^{{sw=D<7i}A`dj`0TeOB}E?@#9|jkufz5X8P5!*>8gcO?`fe +qU4r#K}q$K>UW7s_02aK~I$C_hJuSD=F{Ao~EY +qV6wRZ%t~*!dDE8)a+62=v6wG{>t2{@PfZ6`KI6xaCv)b^A&VC;CItlr#NlwT0xd6x|8lZv(?oxU1rB$oetU(XoNe3?-mJVJ3=V +mY~!SEe~1@o#^XciA2Ja~|r>GWC&Ki^50@~Hc&H66;c5LjyB=2eH4T^K$u?-DbwNB;*8=j9!4=H^Sxy +%6j#p&9630(X4C&w56mnF}va{|65qZekV}DE(6yKQlx8k|Z2Hh)DxGOy8x$7f*qy6WwY0H(aVac9=o4|Dh++4t8BST;53iAC{zF)8Fa3M4iz;@V9+)mqeW@|B-~qoY6m3w%^ +K}DSeu@U@pfs{9(@I(y+$$ZQkWGK?H_*yx#CC$_ZJa-Nu&NX%w4S-5Z^x&8LryUBP%Lj!sC*=NZsue?HK{G*RPB4^H=aml$Aw;61Qdb@pxKbFKD);pxv^ +4=lq-}&yHycH#6Jrq&iJCd~i9cLy;!ix3Z{*?I|AnPAJbF(D7gV(xA8BFv53>93cha~CdbCsc~>fc|*cFe%i3m_)q!OMc^({rK}&#rT9g(ojAr`(_e +6qehJ)adB}ZK0cmIpFW*vwOV2{8Y%DQ&!0~gEm}lwyzxe|bm>yEE_XIrzI-{k_10TSQBe`G*=)4^Si5 +#DdCW1B{O$JXSx&DMi=AV*CDZJ@lO62CRC6d!7k!5EkQc+PsYHMrBz4zWr9(?dY^3X#Mk +LAKy)$7=%g7ckGqGq6hNv;#qIf}pbZ>%i{ +-{mFD`BDq8zKC12wx_Jkva&!8N$B+;Ts|RF$j +O!Bm8IxuYvG4L3lfazZ=3o1L5~T_@fZM6~ccG;r{{Q+adgS5WdqR{DjfaziC0%Z-#yb=A7H_Cgd>8Z# +wouB|H{Jq}GW<`fNUtPTxkPZ|)^h$BRVj^avjg;YUDt7{K8A&~`I~2U;C?llf{0UkBkIf$)Ea@Vg=WF +$jOgBRuqLsZf=zFj#2_fbfA39@?J{7z|13{zRGq;WHro?GXM!2>%*{KkgBp^dqTc5Y*Y>FlLH_YI_|y +43ghLj6@2%iAWQzM4Epmk#5^eqgYb7l_^lBBWeEQ^gl~rM5a+$ +0LijTfzQYxMEKs-}C=>vNKLLd&fxwX^0LjXK@jl$kTNy3BF0W5$e%nKNgkOhIP^XZSY)q +SIx@U5y^*%u#dqx#kr8+?haLpQ4>POPe_sJ&YPPVmNmQK48f8JZYwDFa`*pIa6!CVeVZ0+{~+xKvd+QK?8$>g9n>126Q*m2k2kb%|j +-#0o_ydX5-wsX1#e>HxJ-G<{CfkhzvQ4LxxFQTh{;&A?)_ey +*8jg2o{8AJU(xo2bDg%mo@(&7M7AzyR>za?iZZFH*wmsz~$M)X +eNft=HfAPs#ZJ6Tjd)+Gt-=DHtKmQU7CB1DT%XECio}9a?hMHAvC~Gp$IcT3NeZ1xidkK +-0s@R*TyFVcq{uG!7*hP$Z}$0N{ZV(Gjo=9UUENw-|GNP$wcZ#ojd-_6!bDLImF9fgYGFaL0sn&w>$C +&1WXeY)^A>Big{)-$QmJ@^x0zw4Vz-t0w0YY&PZQJoxy%`LQ1l+yEBs?psxc#H0rON+QZp{KCs59o!Y +~h%;LTj^Ng<(FTkfsU$56Yz^j19q#}Gd)IHJ0a|(AyIY+BtTR^RFpQN +XlsA~!6bx)RUxb`A{d~h6+|Qp5L8kHh%AC^q9QH?qJS%ipb +x_uto7mEF#sJ$sz}`}aFP{P2VG^G^p&Y;g4GQRnpO)6Udi#95^0TTZ&{Y(#Z+bj{S!sa{U$>6jwz=E> +^l<~i5N66a=F?c5_9odHtlOqDO3MY31@_aWE)>JYmGJEr+I<*#~wQ@uY%@9(7dch~y|=>6mM{#kneV! +i)8z5lGA`z=oSEl&CW8mHLb>#tU=T6K;$m>=}77F;VLB7(mIS}n9%wcu*i>xWdm=9<5#oZS#sw^pq>w +IZ&odTqU{^}Jg38g=UEwbxY*i3pDfcWw-;UpL~Wt0Jz`3$D5P>c8Ary;j|b-(OYtFa9?|L+jR$s9gCE +b@iTlf4t`EYQfjnkNAD%%2!pXSn&__uD!O}mA|W2|EAwpzKS;@s)qcjQc$I^2*yoSDzg561z+(WdiMJ +oS5>JJuKHEI)}JffsGsUBH|e?VAAaM1)~OL55fN@$*wt&*4-c;y9$r1%;CG`Ap3SUY-JCijuXUU#ig* +?Lv$XPQkn0+*=L-TMzWNZqW$>uEB(zLBTaIDB%J4hatmxnMe`8!q@fdjd>cF2uLP8)alb?R9U8PDDo; +2WT2L7xAe+oh^h57n{rTFC<75wY|p`6!4SKK4wA3A&X?EBU4tUP$|;I}{i_~Uo#dv+fleNUp=| +r@qIM}Sm5hb{>f|mRT!Rzxru9&lam`AKYsj#gBdJ8{5L4QH>(adW{qaen$-qAh0DOdY11ZIv0{ZNe6o +D`as&6?y?f=`Z@-m-f&$sHWsA9vdo)Ji{XKfm>_v+fjaas9*$55UZXG*z?A@uUsj-=vnO!ul1~$GH6M +p^m*EgClVZwvA+;R)F3yzJAt;@O>3;*H6heczVsWocUXreUC+_!I^tX;ddn9iFwZYZje2aYBCn`RBu*eDcYPZ@&3vr|$JD*D0RQs=hT*7&5u{ +V&T_#ioJ>_@Y@LvcES@of#2d`U)vdoi=7H{@l>7{Pxt%GOM(Bbx89nhd<;{W7zYmP*RMD5BOjlA_L)5x${2-1GkX?;H5xq3XZDhcjpF(`vq<=O^|3Q+%#Ee9Ohaf9%*XQ8# +4dzj^cKwUJ{c@PGK>hq7|zN>QGR#>_^Cp+Ee1@4ffT1on*^HyT~pv15mM4G!1<g_>qHu^6}fkl$SZqAjvhN!sJe3F1tE9Azk2oRsWofXY@#uIrrJyRVQ>ImXbxS$2VMX>u +i^byUwvgJuc0~g243UMIVl-xLXZLnQMHkyEEmy?8P3 +tF14dz;CDJg`Jn8C+Gq4a{pH%x9<>X|B2Ec9Fzx5-xs+>aY)%Na_p2y?=2#ctBYF`<%0j0Uw%QBCpBu ++C`@Hx95^T+&cg**kRxC$2@mKF&EXMpgZyK6HD@yb-L3H7@wpF&b{~thQCM3l4oy^UQg`^^Pb?Ivxyt +_>XF1_lpCQ)%Bme4;gc-;aE9cM^ULaSjIG$ANp{JR9 +*P%dXc(oE*^fh#Zzn5s?|jKkcpmQTS~$MSuah#pg*7E7q|~Q;~sH)R7b(#OOcL>!>x+L!UIyC@srLMN +`wE`Uw;+#Gv`cju+!pE5>HCPqMDm72N$#N5@=|& +mg9GE???oQ)2BN1_!@BH^e5XO|7Lisk-72vfO7|b&M_v{;;sHV)<7ekDot}ALuXs!14 +lp;N0Q>{A%}P?eo3l)nQRGZ%Av&Q5YOmiZ+Re)J6gqH$L71P40<@hC}0EG~>?BU{Mg;Vs4Ucq@5%sNyiVwH!UP +Pqv@%;qZv!(EU5b!KKfg{QBIs&}WmHf9Uhi)+W_a9BQmA(JmSIHNKzJq)C%7jZww{KX#ELG6N38JQf$ +;!`IrljL-15#0-o#MzxTo87*Xy;*hU6%vT&%&FC*j4t`%QWAnY@nXEi%ZuQw8W7Jt)GW^&JEB`H9wyX +^=>_lII8`yx|;)3nR-jmm0H}O^YHpc2P&1Hq+@Onl|Svb6vEKnQ*_4!|FlcpxOl}V4alcy5f%h*2cWn +`~dnKCcdO~qlk;;>|d; +-I>KK7&J!ABP!!9HxLnzjiXduj0@C;AbN>AK^6IOv3UQI0Zl08- +C#O%JmV%e!W!>0jvTC&Apt|sy;^6h`Gd3xEP#c+*)<&kMM$5F67@3^ZRwgPAPbv;$6o(Ot10yiT_T#o~nC!c&$7A#m`@F@=-78mX<+VYyLAJU$XrNek=d2TD7VT48Zr)Q%@D+5Qs-vxST$HO1@tAg1kMcy{sAATv +qz^d9h2M=lF4$>Br%pDo2@*wUr5pJ{%Y(#!&yTtR^2j4HckW!lFQ=!c%fNvHWzwWcMz6p8@=IfPh=oeR1-S7 +I*eYTn;!*Me2Ku~t-XJ-3Li3H>!NvM)V~iPoeV(Gaa3T0tty*=h#yWqq@Hc4CplR>ky;FMi>a}0(sNq +9SPLAAt_ubO9Ygc*ZnP=p==bn>k)211C$nSv{9PkDB35y3g3^-s>ItY9Fby-G@8YOXYaZ;m3 +4XIbJo@i`sU;z$v!#%;l&Olt4$dp|h+xp?G9uB^kPFUTI_r9MB8!1UB#p#Dy9Jei*sON24p$Bgi9pj~EHwflCQP(f{ +=;XmqjlA8uCN%}Py8-TA~5Pn-eH`|rQsOmy1fP``eC88T#u;R8Oy)^;o&zzh7g=1XqC5q&^M(1$>M$7 +j295AtW{BI|GH7V@vMls$U%=#SCUPMtc*@ZrM^AHV_l+qG*a-MV!%@52LduoE0?-b*e82A}PbHalygCG0OLx4I4HTIli7xrSihhzV7(P(v?ZR2t3ML(b$ +5gij6)fzeVNE$N)YH8ryqpJrO$!O|k!r7cUl%$76h;*XuR+L2IQ`k=nM0)kh9j*w^cO;~ih$qrCka6T +cDvVEbmi7*c#;9${~7yUcwXP1Rh|M-SH5wSr;C`5B#~}%P*B+H +!GGC_G0+mvg(#$w`>C&cp*dR!uavyMQxVx)9wLmc5)AP23y2He#nWKzz$xsXV0d_n03V!S6nRY#qits +U+Fy#9IRa|2@mLv4N~82@&sfGUt2;=-@p%VYz#qP2f0U;`^!{;R$x6S>3(frqX4V?VHU_#-zS(01w4rSifHFBo +~YI?M!bTbn0t;vAW={R6d`c@-*D_;+A0hTrWM-7$|b3b@-J-7icvW4vg7Yn<_r}HjR-p +_*{SX94^{Hy;SXY;SJaIrN{+rNW1yayj_PY#}8i|8fLg8~;|*F7%9&XftiyZ&Qysj_%Nd{6wtIej@Mv +c>V8ciu5}7aE|i$UE?(2P%(qE+gy)es}#-?L=|?2ORL7#4p%CV$qXpB&#yuz)$bWP$(=jMueb>ID{KvJI1OAczqxg-Wwc)wC=W%yG +-9Bq#>*xNM|BTMVYI6(KZoa|7^i1hD(&wVTLQR}n>?cP=3VtqEuQvocJ!Z_9_-WIo#Q_7c6Zr%F5xb5 +r!d4T@5~uJPuNmEo&h`uG@zC$2rcHl`nmj$W3++!1pgCxY<_rC7eovmuzQobc#O6H2P3}Rz?7{DR{XT +kSOAeJ(x;SSX43G!2zx&yTz-Jzy3I6NA-p?d&Y@DfMX8LP@Jr0OGvd`By?Yi67_qERtxaE=l5PildJ$ +`boOorf7G=GiPI5*Dy90vR+1_l=V&&nCerUphmn3}xZpZWKFzP=~@HY1Nae7!b$Jjf$GDtevt2_Jah+ +`7^3j~~~3KV`&-5&hi#ZX3^XB)0Zsv^TXx>bcYr-TTvfrGI>XfIPKhdl#wGx_H*}Mfq}XSv|vzQr`MG4@AuJXq8^Go(qp2xG1l +K-8s5`4pBs~CU@-DnaJKgyxPM?TIIsr{|JRL=HvKMoMbtE@jazx7E>3@i-h}CK`S%~u>o&93?Jjw2{l +U5XCnlRPVM6?iFTNOuE|TvPpMy8BKm(3ja}!P9kbV_))mQzs?b-hR0y;r|gkIsOgxF#lFx)np-mP2y( +XGcHe>_F)e?QwFATJ=dgC^J>XmO%FGOLa%O|!jR$bHM+)m_K*E1PMjG3(n~MJ(HkNj2M(K8+vf&>16p8@_>4j +S*7NvTohV5jU9wi9{U^pAK74q}`0?YDp~K|Kla1ZO?&ABf|HuOLKo;5C-E;bJ_s4Qz_cqmu0C`MmTih +!vYkzzSbq;E}(3t#6b+NdX9@q=Bynz>QPwgUy_IxY{zu9(H9tWP4$C()quziXCU)R6F?jIKy_jPo1w5 +hw&n@&tjl&7D5+T?e@WNm@9mGB4J94`7yKFWSfR*Y?Ho&~V-m^17)S^Te5*}vxtky7HHHf`E8iiwFC1 +|At18U1_o=<#l3WTZUy*kh&+oSB(vY8N*5f#w{czkRk5dIb7p25ahdTUEBojQ<)mXmFqEy~zXd_4H-v +Eoq!3-Me=;c$Zdd4&;sXtsL5CMC?(0)d{8N6S~ +%H&Cd@wzOQUtXoT1rKWh-%L2qig$RM?J`WonmyN>`5unXJ=EYJeGjm-qkHEY&PcFNbIF#11f(xmw8?C +dz3bHis~=+mc%1OEb2CXH{)o5q?2y@Wv(=78cIC$i2<}?4!2E +*#DB?urctWMT=zCtXZa3jBTXmWP6I2xVPD#eXRdQmcZA>;OL(1O9BHjMvsH~)3RmD>~n&bx_2@D<*9* +UXRv+ndEvr^$ln2_#RSJ!Ke^PwcTK8Z;zYkLWZz01r$ReP`GG-QD8*9N!H5{gsRO-fn +2AaH>BHDeW_r$M&;l&t8&~lXFaM)Q@xL&i&`SdGpS(I|~*pIH+s%f8~`|%=>!HmASdO9ka5sR_EvE8- +7|J2A@@@x4G}9pSEt@I_j(^b&Xvre@D|&wbB9MQeOLbGKP)nZ2KDk!fN$8_!ss!j?Vqy +)S1XKHaKeP2+dZiH{w8FnghEHYak&g7F7@Iq0&6Q>-T=ZJW$$=gDXWy4II+_^gu;yShkNDOg7bo{3_apBk?`*DlCov2$6>wv>800X-i?97_fLX& +m_Mi0Cbf_bcvq3-jgb%XMpssxKRugX#?-A<}YZB{{Z!CCmf?0!{ql3Z${~mbY0n_KkhCzp28?t5TsMa +Q*Bz7lmCvPBk8j*0j*`w=Dk@-rOnKNgac#vmA=&Qj?@9%YS4KTaTQ=%X{y=*U%I@4KKf1pCgOM+-{!#oHg_g+4M#p_rGrMU%h&@i +Ph}$IM{7sF8F~xb;H7Ie7Rfxx!&^MK9j^+_(}H1ACV`pHg;Kk|48@!*lFNq9cV$X2%PZQ)RVZEJR9G= +VZ(-V?qy_DTF|ztPN#x@I%Q0IO(p-lmiL34N=|5KRr704`~q7Lf9b@W@%w96=x4rP4&c|^3w1i{Cxi5wo=#sqPt$kqbJEQ##^0Sk>sog2Se@y5Wt#au_(1)?z +usA%HE(r>>Z_jm?m+#lhq;b%i&Mq5ew?{F-L>w`PD3*z&9Sk0FOt8=VCXQ=T%V#VCb=*iqG>>5y*|P0 +={WtI8hU+aeci`g31w21CScJ=A>?Ot&wnpegX#88Jw09wy_y@??)I;f=!ebXmr^Q>F%I(CMepnH^wRZ +vDg@={8HrDo^X?C%W=XV+HS!pz>!p<-VHDvBH~yxdB1h@^dHgwiuX5$WE2HAm(-V?=Bn=B4nw*r9-a2 +ehT1w0Go_!ON}0C%24GPi{E)=CIJ@_>{!n3F-DPtF{iixnX2jo2#!14UHO@HY +nZv4c2n5*2s6C-kF}zb5L61z+wJ#eJ3qpz#!cvp;wo*#KDP434IdMi$8RKeCtrXl|T5}Ibm=@QfLzYw ++@R>@0c>U|6>VhVWEQ(+xFzog0>Fp9iNn*5Y{FtqLiD@ZXQwk?okovz#0`%jI^FdMOb>a>C(1K+t}ES +cirBto4(-3I^kDnZr$9-+~&Dma=Ybj%q_?*T5x`f~Gt@K6Gu@NrneSQXS?*cu+2|?o?C +|XJ6nPGLj(Z$$Wp7n)us76O*Bj|=?v3$w@OJTb^FHeB>rM3z^^WpB<(=Z4?#=Sf_b&7<_pbGB^cHw`c +z1b=yeLkP`Fn)jvW8|&&sv_fBP%#NGP`+pOm>ItF4^6(*XC@@DatvNb3Dh%t(;pmH#pZ)uY;lAqq%)^ +Q*(#rj>^r-ou3=%iGCZujsH92zX4E70|XQR000O81DB*+4&z&dXb%7YJuCnK8UO$QaA|NaUv_0~WN&g +WWNCABa&Iq8Nkc_WQ$^icZF3v95&oWEfpVr(Y358PY0@^yC&iK*whrZyzAG1%Dw!I7CzkE{dg~~me=Cd?eco@u((~`i`Tbz;@$mCCGKwC-rZimdqrPY{M7a0{ +^4%%{X6=G1$;3V*Q(XM9-y3?e-^Zvg%iz$+sLjHTP1rj;G~1HTPI}Sh}!gxUnN>&#pqNetlC-Aj5U2- +1yS^DqupTjYNYRlbfTdxRU=jhaj$AG`*A6*0K{fEc!%=v8MyF_DaZ_r9>@Y20R@B*JN6Bh)n>ajeUKC$6ni~vyd1ybT)Z}x_1KMeXAm*js>$KeN3$Sh#z%4DLS +Oo&X0L1o_gQ#}l+eBZcO?cRY6+*)b3uy#i7jBoR`znO$a%D{8|zI_tP=Z;;^V{nysu>0rDgV-q6tziG +&EuNxQ*VCq*k}E=1$p~L|=UU`R^}zI|K80!$(2m;09Qod;m9D<)TE0T&W&Ls5M+UkzVMTUH+39XW{~D +>0fqsS$ZA+kxd?TGmKZ)DyJTjue63TkRYNJja<&0(Q$usNG|?8YzhM+8#&R&Z<^fi{<=l%NGA +YTWn3EaWu(U6&PHABMn0qWJi180pG5=e=9xeY4w{)t2kK5 +J15DKTN%l_cMgFD8K^P{z9iy!Na?4fl`5JW}q=t&s^iofZ?$5u$;&BNlV=>da`qhlg%cA65(uyWy;Ye +WLhfUhS9F3}4oee~$Q1h@n +EwSXRfMJ#fVB*vBoi(~bb}f2aDq2)DLky%ta2Erwy=ewwn4-N4xpaoc88s@5YUb=_Y3LCtKCjv=O-jn +XZDxb3fIc&M_BPu2{MSA9Y+A|aoz^u^g)uhK~#Jt9XYS(RBUJuihe|o$12*2-9@>u-{^W%fB~E}pavi +_t$Nh#N{V8bCgh1wu&}Z56GQ|zm)R7AQI%5;k;2xO*vxdC6j-L$y2mc3K0n3dh*Rw({VQ>7zF<9y=HN +RPAF75`Td7lis-3hPDP$Ku##UL?9gqk82R7Ua(L!<3%dNVMPS*e;+sc}YL{-$tWYiO-$U4fj+3T+e%0 +rDm>+$0pNGV(FmkbyZF4oed2ML?_gk!h~Oe9J&-Zs1nzdxsZRV2kgsBf@!7h&6tD_}$2oF +Qfu*#5jIJE25XV+jXs99WCxaDIu*WS&0g{gB#S=l@N}aJ1Qz6HP^` +Sgm*txKF?MX*D8%(6)-Z1g2LKlH*nl~bX?_m$1US!ppowx@p5TWPtgd|v&MMDQQS_~qZu8NcPs4&f2=T8k5D8Zv0=|fB7xOx342RX=IVTQn!-o?IvqP^;BQi%(tw1I+oMgz2Fk1y;t7;dF_J^+a- +W=pPW?P0emdH=Hn6uZ*F<=W^z%UUQ0Y%^1&S&7ODRZm&j_eFL3+sdfBKAQolcR?_^0#Y~n@c05zg8C$%A{#ZEZtt8O>Kk&{4mZ{x +935J$qh!hD5I^Pgoik&}e;XTlG2;0a<#Vju>#C^1BTjF^r0;&W2`u_!@7&~~!Bpe7tIj};8nRqfXf%j +3|Rql2jwVS4g)7i>|T|u?FlN$E+&lZP+6!wuCI>U)wmRW59?Cs)K;Hy4YR{GWOu2c)8yPEHy0+N&Vfl74283yu3lE?9|MTjSgdH +W(eFHY4#T{~4Z_qLX_!>Vb~hskJWxuvk<+bAlsO{20J-P4J4l&}wHnb#~4n9xM7|%S;twJQbTpVx&y5 +84Z~d8;zV}q2xtY<*NgwD0wf&igb~%HTW_HU$QQwQJ>g&DEMkF?o>G$n)B9MdC16ij6%Rc9l6Z}k3Pc +k*d;_8vDpZa<2WKlga0?FB2U|9U&5b3vMRSiY>*sUTcy00ThpN@^7TDp*SE3GUdT&-(h-riCVfdg-*3 +RJ8b>71DyeVk4(adYppxsuaVPN|m(jTAs@T&HZZegoK8pHxKh&`lLTDd!PjTYAM^|i55SK!lWK!$CW@ +9KXXS#D;>}=J51gj!%E?Ri*4xrKT;fjsZhB+WA%CKA=s}S84!D6F`H&q3h;1C^hx`ng(5yTmNjv52D<~K4o?l +5O5|_PAtp*Dn!NBQ^JR`;T|&wojPk)0wqav-axh=r19LLWB13nTnGHFM!_CJ(-qPD4KQ5V?6JhB8$r0C-BmPcC`)4Z&}$!*o73MbZ0vt*{y6i1V>OzKpQI)RBpzUF2p+ywYuHM2lB7w>vhQO8bGPuQr|)c&% +>;({d2Hx9=vvKVF+W2|RKSDES4j>m%>PxV&i^!dMO%>vD0HH(1pB0P0%;_ahfzcd3aO1C#$UslF9Wt6 +sSZttj!uxf5ZIdG~`{vwFdpm0gp$g>MSAcYlEOSDE$$ANzc8NwZzdQx=(@eI7lAXcrV_4i80y+^nU_! +FQo5)enQSn%k^Fmeu_au+v3WcYBQ=IKkk#*kZ@nO=?f(voV{Z-$FGwQv$rD{yZ1g+Hvbdm$t2V5B>?e98wY_ +RaXb!z;fqJEmnpB_98bgc?wo#hlSjCS=9^Dm4*h#Eo%8RjV~w8y`;GoAb)msFBbPR@%`2P;yxPp{o>( +=+jkG*{ng#w)$(C+b1!c1%4_-C*WzmVllc2$c@4Uw{SELFO-EfmiDq1BiZN-hc`DBtiF7)SiZhnEdP4*`!Umv&%GTvU@!C~*-T- +}Mc@9y5--rx9Y>u(D?x>85pm4N(mfZHj$TQ6>(kx(GE{wje8jGyV!g^6;HLAZjFx{UAE +?!FlO}M=sq~Jz}0eMaPiSQ@u(FYyE8su*Tyt^-IcS$4=BoJx05s_Bu+4r;;q!(Xni%3T|4%f+;9;*^C +k%00#NXl_V61khrppYB!YfChzl~(FkLo}nlDM)@cITaAQ&OO+z`b34ESa)u4<|YWQB;lwDVOi)J0Of- +w<`5rt9%#;YY9AA`7iI#`q~HPdX=;?L2b@Z)+9f380QOlzpxIA$EQY8qn{+ai_LDy;_n7V&1G>)LocW +7p73mTV4|E5cBm{EjSP5OX#n3M9|b={9yLf3Heqs8I0{&2+rr@H(L6xxD831J6wzK5I1~HK$>Bc^<}1 +$Z&5O$=Sfi!24N;lJ(F%dK2yT`d}rIV$u^B@(XRLvV8+dv(Ydr+MxscrlNED1kJjefvM@OYCZj8-X4M +Z-tJAsh>JZ3AKG1P7{<}-T-8#3a4)g+%0E(aV2;D(Zwu`%2$`yA2oB9@>>OQC`KQC2 +G@>{^>*EGdMvT?BT}(4~u^7jz)s@PxtndwK)Wp%k8IX1%kM};>_-R)eEACF^GM@$AKF +lc#uQPB;)vY!n-x#XLJm%ln%bP??u}3PXR6dxUq+NK7$OJAK26E)B{Do@3zuBm +IuVo6UBw)I^0COW9R0|XQR000O81DB*+`(SX~BLM&a) +dK(k9smFUaA|NaUv_0~WN&gWWNCABa&IqRUukY>bYEXCaCvo;!A`^=5Qgu43bH3n8sET!rXHG9n`}L4 +%!CS?pcFPhjgN1;EHI_Gmonc^XP{s9Wb{Ptn6S=hBBrx8j@(pa`MvbV=ZCI+dupI*hu32dZByq-H$0Y +bKSbIIHUBnie=*KZXyq}$4>xux0X!IIAsMK78oBZ0Q!}pU#C_$D2!=~eEeGnHDF#BFv=0QkJ|mIhn}^ +kMDqy=~NjnxsV4Av3^h=v?jVlr=N9hLI7Fr{iI?wA%Xp^r~z8Mg{*}_u0H~Az_C0000$0000U0001RX>c!Jc4cm4Z*nhWX>)XPZ!ce8 +ZDDC{Utcb8c}pwG&sES%$t*4@%2&wDEyyn_QOHfq%;Vz9OjC%D&r8frjgMEbwN+4xj|Yjz$17QJDF6Y +8qoK(K08mQ<1QY-O00;mBm!w=uI&Et%EdT%(!2kdp0001RX>c!Jc4cm4Z*nhWX>)XPZ!ctNb98cVE^v +A6eQS5yHn!+@{|XFq@2cd=%%d}HucmItP25(ishwpzZRaK#nUWxzHAU)>R2;RZ|NZO-00JN=$$7MM&N +^DFjY$F<8yg$@1z_XeU+%A}^8O^v@5}tPSgz~qBHz0w9v91XnO-^e;L$^Il9urPTEcfI@ +id*vypl7q%4f0^^|cg7%VY}ws4oNYqb#em$i<`hf#_j@NPUX>e+LNbVkH*ITI5A7R+R)0X(i@qCWU-6 +mCIVBxtJD{@3>GKQm)6v=4(aFW=_*|TxiN~iWPevD`(- +V05MjV~|Q+z)pbsEy@+(ROB!QtLe2!0AmQDX<9sH4y +LyJD__l7TAGB0bHcZBw1RoV{rsj$Z8lIK=HMt(IrHfKodDl7EtP2N#KoXf- +J{#&L9B;q6&&n;?JR*3t)p8;ss3>R}xt(7Nfe_0|+x}1A4FPi$JHbyO-h?M`)39&RS}0Urc +iTlJXVu+Jcf7C!}$Nj4}j=<(=36}S84}q^i178179S+Ksz9MN`6dp`*E^Lv)MRbEhbXE)i6ge!a;!Pt +f{V$YP}c(57gDrMvOjZ>5Xg(Pm7t%VeaaN$InkjKZBJ2=E>*`dRbI4Xy~*A7K3@%i>$BFKt%UtJ&pQY +>G}ED)6v)6)y#LQi26TECs_IPe0+BN^!VufcnsR-_~ht^W2A3Ufy~S#Of?|#y`i`$lf24!F4ZJSaVF$ +A1+w&49BfkdqbCvQUZve&+Rs7w(zI^iAvDzZ)qp^toB}OWPUQtqT)fA?A)wE5`4#kP;GL(FcZ{od^)3YCro{ +s+i@e?HG=n0VTHyYij$f6)4{FPK4!+UIsD3j%{-9Rc?!su?|6Y)2$4chk_`eka~7UfOFCID71uVu!S&%Qf;Dn1>E&%{qnkuZ# +=^-%S5`Wmi@Rywdr4iYR>9lQqmegfa`#F558gXvwSXcVwUx#n3dP+TH3m$|DpSjQ9Iq0zGJg1?E4M=)(*%t?2vN!PpiVcMR-z&DW(W}CL< +JfW_hePo&{xp8DN1yQLO85XK{Y#3v7!c^qf}d5aGK{}u=r0>!D-3T@3;~4#D62_|E;tlV7c9rM-`}*q +i`x%K#NrwA2WqF5S{iipN74F{{ABkN(i6It!$2pX&j`R7nNuPhKbfw|62-mmC{urH90!7NdD%;6G+F~ +~c@B)L(!ac9I;6l}6;_=W87RAI$O!C1byfTF64c^oF80H$u#clMPcqby9Bipp8S0|F5FLO-u{gz0z-` +*95h6_7;G=1X_*`tLr^{JYb+=7j@Po^QIxl*wY6Xt<8XXXD_kgn3U{FF<<#6nbtJpI0i{Pro&Y!#e^%4uOI{hR~4&ric3!A+!QT +tf0Xfs^B%&NTy{`VL&dc(`BamqcKU@l{aC#UK5~7!Jfk)7Y6d|CMpnOabFSW2pYq9Ef@qR1kkQ7teB{1#YD-v33Y!r+Q|R!vnUU@P5G8!;o8(#ot#fWedF0+O0+q{DEo +m}%l+ul3uZ^YfoK{8Z>w166!uVfh}wN2|#yuUC;~z3233o0;a*6M9qzGy03d{LbX;JD|58#ju?SQ~EJ +Ho}SyDg!%LhJ!)H9R#pq=&(DulaKmcF4mX%67+1hYtfU;C#jm*q?P!tw3Ubs!5{+}a06f~CDdt-iMa^ +Zt){m-(S+SbYY^2YR@sV-W9hGlDd`}A9!ZAPEEwKA!Q218n7ll(Goh-&n3=!PCUO=(Y*FT77`1t*gKX +3tf4`mDlcu&$93;rt3$+)kSr+`owz|CBkQT+j)ZJ*5m`hgx@M=a8x_|e7_wR@JyOpV?%{iwdC&WJxtn +-MRQYH2atnR>LnIaAMxcJ*+=cLdV&=(gk3BdsAcghsnkos3%y37j-G&;nawC-59P>o1!IzRBF9Y-+&tA1KOD +a^)~+@#lg88|P>tlq=8Ifvosgk*r}YwOtECDvgSM+BuEX11~Y=KfC*iJj`KB@D$;zoDC>oiXlp6XaH}!^(Z7?0dEuimaB4ERE>-2mQ5)rh8numqi7~9H%u!#YTm +=&0INcubRfVE&b7^!=9ah0CY=teD6Vfg9^#1jg=W9;o^a;2L1}xFeLfI8siseow-*bQBW@Sl%&zQt81 +s+`z=DY9^DVx>T@c_JyiSW%m8~tFRM5=K55?b+-CbA9^BK?uP~HIfCeTt{uT6~Y8w{>&^%3kz)e#|L4 +?$e7py$RnVDH@a4=~olDEP4*YQvsGNIVQn>39e&MsTcyd)$-pRV*U5FIi<_1U}GAU9MCs8W@T|4UJ|| +vRu+8o=(u>v-n~B@NW-35xvJSyZXARwuCp*{KD$iTM2R{#0{{w5#%9?4|QntARwqQLcFu24}*9YS?^2 +xa0_1`UB8R~6^RjnPI(`9kO4VjBNd*V9ba7hbNoJtA**Sb(#DxTlM(~N;s(5l{y7ktN@k|?qA&D@m2? +K}AkRf#=(+P{6C@!7s{Te4z}5iB28u$di%0oi6m5D6Sc^t1Ru)D +J^#WbN@38i9~E9Jc?X>J0l& +37Fm)$6f=y?8M=%n9hgX2st&-c67dxAxA{H$YEt0E-d>ek3rPAW)KlnN*22%?*UKC@PI16UMMPkpfKx +4tt2t<42_Ol@0*u?~sP$vo3*j2wM}1%%U6gRiLj<_eR8l3I*D&h!JYRqoP8xw`BHB8c7jzcxocSn@Uj +|Cb+Q^Gz+<@JgsRgO3*ASP{jc+7ftSJ6Y=O8!{R`*&Frzcz;6<#B^rQPW*Tt0uGPo}3t*HJAT`3aG| +(N~$ufvH&=4UIWl9V%SHP{665}@AHu!b8J7aWuGTzO<>wDyyA_I4*jc2RH7um*=SzQ}zB(EbUIiy +;db8YirmzNHvxGyVE|%D2#1VkInR2XOSp>i=P}*Acz}r9IXk=UT6Vctq^{On2A%bNGr)EWcP)VdL25N +Mbz}nd#I4o`An_;ne@2!Rf0sLvh;xw*?1^1)ov;Q9B(xSc|7kf6p&9G2?YkBsM92KW+H7H=dlrtKSJz +HV_8;(hf^3A@s8@YLv9f-J0rqb#Xt}OxbQ5lQZKSz``9N2-{vcC&WyvGhJPvwv*1VOj05YU|w>)V#1_6XDw-$hv{Y8@AS)l3>c;E +r_R&*##%WRF-tgyR|RL7cEtAn`=Ot<+NPPhil6<>A~u{xXpEVzH!eLgDTG;j+MWTT^)uZmjue;C@lM2|s@pKj`?%#x#_1!BP=2?5Mg|nZKfWfnR;l^wm~$Sm-0C$nPF9D8aB4Z|w0 +=)nkt(D8ASL``y|JYG{oUZ#9Ks<)w`q3G#s!XINCw)FdIq+KrCl16%SbUj!EzbF6L_Oww!5wf8+mRkW>jd?F6 +~|SQ+HdMIxvr{>YJU7J+jyCnAxzugWYLKOE;KOR9dEwsSHU#I3CG!iw+~naEEDix4 +ez(66weGDiSm?}J)gFiBRZOnXYD;G>J+^)?HajV1<=_@y%v$Q(cWmpKb3lc$lO~}Fa!yxwp`V_5tGH| +R)V$(rzpzb|1F3b+9&aLL=8ZCZ>$+4m?Gv11<-$M8gA&g-MO|bLo2ptOj*i$u+6!KZmOLyv$j9Ei=eV +&51YB-nUU|7-Z$7@UWy*O4*emX8P+g;q@06T4Wy>-kG3i9*VgO0+&}pSuvDC;jvraxnOoL)M^xz#mcQ +=6h6M2k8~Se9$kzW|WyAkeF8C94NSG@;+4#X2BXlbFe>vjMQGj7iU}f>Y4DhZD(ERSk3S0Gfd)VAOPZ +XLf3g8r#>S>Be_GaT{SuAB)ueT?B`T{e3sVF!mUGe}7v1q+s0$cF;d(&gU`^a8``iHK<0Rsk9HLl+_jmMX`(R{w*pa#K~&B5^7G|N=xhXZU)?c88A +W4k9!7zwAv80@DMfcGky%?DyWH2J$;yg16&uLhXd>lMwBlOmTxhYPSyJf2g8@=(B^bY^fo4i&-ze$!X +7X}OsEGNdG8qPWd5Jr-uddSM!eKisx)Up+3qO@7f~V8jo45K;GkvvB)eWj@5Sl$h!FR> +={3#;xc_@*9vP^Rx!MLvdqOd>DZ2W6kMbH&OteU7(%Xg=u>2+m1DK0bnh_a!Zo;0~nODw79SSusg6(? +zqFp0UF4@t&f4g24(L^t9PypOja01d_HECAHrAtHQoi^Ab-i7g;)^Wh3T4D>q*S(j58sQprmt@QVdoE&M8X +Ah_$_6}On{hIVOJX}waZE^p~ThTa!vk_ZaSl*y~2c%a>hGZHwxzDGkg=xSQ;zhhi^<0vgCa%RpZdhPG +DrKpuj;2Ap0p!cAr`Rn3F?X)C#0W+{s1ezZk5oG2TNd)th=F@C7lVgB3GT|ChV(xbErqJ!Nkr=b=V9n#(iHz0Ji7-6{}{W+tK=)2>7mEhXCD{-{hVt +_S)ZJWI~*+Es~86YJXawB+*s4+U*vJuWPbpz&ftVNSEGZ-!4Gz@I^`Jfy0OcR*>wpkK%QYGLNz%?6Q_ +AQ`(+$fxuS%p7}wKv>_#uW|&m`9I!7Sg0d@;Ss3TO1r(jV7ontAK^3g_2n>4FS_joBo1>T5tzhAg9eq +ZvHJ{qz67-Oq?dv3Rw*kWyZxWVZ5p2Sf0px*qVKw$0koZ3ZT^r=QnB+E_9LR$Xgul@q#?5iaz7bi9D? +L7D{zt!O{)(s;v=S9hXc8I{AHt^L2#Bpa4N2Gm`(VS8m_gz6RU*l*a2N6Q!h& +YC%44(DOWZO(!C<2|EPVJkFEoPo7zL^;wK*?VlpL~Sa&b)y)XwAT=$TCthzfYZra5+qziy$UDdoZl$Q +XNYLehp=tcwaRcTFq4U_(_^GShA<=?sSZ^()^o7x_31Cxi3^fO->6jGxj@-xCcdzxdm*y +h6#_k;%N(#Kf2FWlMF1zfSoY>BQy=z%A7GPEY%RQkG$Eg!}1{@4YXslK}ddhVf|^Ks+w$p&Ag~p0AX|)8+iezTChxs`9B6Jg0s%&Vw#~biksiSf(X0DXmh+}*DZ^F`)z6+kN_y|zZ0v5 +!zQzZLnS_M1C_by_*LwGw1&KKhi;%5n_7HMpsA3%L_?IHhd%EyIM3h4wWsrd-Gw7|Iz}5x1s>*SeP88UlJsh2l +n0)gc4Vmop23o(NbUJT^5Zb{^uLO12d1IT(l~Wo{hwWlPS%be3O)t&s~ +t9f#aU06?VPXLFvArMBuewyhWN0lDf1QhAG+}h7N38-e_^l27q1Yxf3X0h|nz;?YBUcD8i9gEjh%C!n +d?$2DGCl(^y}I&`1J125(QMP%Sh=dzN)T9+|C{?H5Xod4w)e*o#K2w?{7;5db>+YA!Z$<3$t%Gl5OJC +qSPB_hiah)CNokAuw4v-pzwMi*2`_+wN`q1?%+q>%sl)pG?V{Q{yq? +1#lZAbl>=Ww04(lN6|Fa$D$tmFRp{NON@|?EYU*vMq8>O^LqCR!j=g=Cs*3+QSk>QQsO$RggOvlD>U9 +0Uryz)Cdz!A9 +h<3_`pEC~T9K*5YZC?swC%&)vyQ2ODhing_}}rn67?)GSo@V+}Z^+|b+L+U^4Z(p4K%D4oTW +KCjo0)!lo&NZ|EV<0!b~PpuK54S+!d%QBJewtV?dJ6@u6W;Kz{n;OGV!vO*egnuj4ruJKV<{~p_MLB- +I$neERo3IIO-FnXyF}K%j!o%8v^anJrs@jX-G#^EKPXYqQnt3iWGoC(LAx!L< +6d?C2Tc!kcOkCA?rV%aO9;Mv&f*kj76Y0_DXLHd+MZAwWU;R}*UJ-O7Vw%OkBg37Ny$1u$T#ZN3>o>i +ZnMRZ@dpJC7()iHsp>QXq|Lx;~M70}XTqBXZy_aq4@Q>KK82jd*I@+ +rk|MKR6UCn0!$Tdge=A)_!T_&_T9}!aAZEwbvF?`XSLBaT0&ITSNA5Qp)6}Z4yx6(oXy9Ia9+B$FkDX ++D`O-^D2Qy?`uF+xTXG7(koVicg}f+zjx7pl=KXXX!JB7mAv!LnvuJ+SwD_>U#4S+V9yWv{IWgZO@-h +%fC9LZZ`xNd&OYwHjK89PzcPP#IsxV%?e9NyfyMN`XSLk2+f>aq8+K=ngH}|n_^K>c%c|G5wiKh-K-g +sRK(QI+)rv@?4IBf@&EK_=!*(&K+-zpyBvFB#?mO^~pLQUGi0Y@!GXgT>6EfHp1Par5M!lm7IjSohEUgm6=d4-jyFZv`<>vK +)|~Ug^fVO23C2-hL?(9H81w3o+4pj7oiOvD?d*m$vDsFQjZu!x^?WbNitM7v{}xWPn>NWG+PkDrveyF +KXxyC{4#94oKpJgt#c_7n5ouRKV@52JuIFivb66Www(ik+@go+c_ND6445|?QEVMj +eh=UYou?3d}-PY%4RYp*cjN95TSDf-yvI$0rvjIFLvcE#4kmC4H+op8p!X*x;^Dn?ae550>ukks-d`$Z|c$M&g1$F!LiWA`r$hpx1S_ejgR01dA;>@S*)(EEx +_u0T`>Q+^E<|?kgyJ)JDlKY+7+Ms&~Xh)%JBT+n}g4Jj3`$}E!(hK%hn%?|8TZph#Uq_zslqrif32X@ +K;R#=P?@K9i8bLZ!ZBAk8iJ`5lVAErnN=A7qN*X6*rO=&T*BnN0k~FWH4d@qBfQE!%jyvhl-X(n%4vB +Vs$OEj8-b?ejMyM9;KN`iHX2r94KXo2M0wX-I1g=mt*dY|5z22odpavJhf0|Np&q`HBFYdy$|ytOr^h +MXjNaVvN}DWkyjUeVwRf)9ycA}?W`$X#+A!kqM`=}M|!!$lCqx0eU&IdYI^ait|IzG*{96J>IT +&+y~?R;LwtKksI{^h<{~< +sV+D;jjo}dV*Ykhl0Q`<-X&tG~<+du4PntS$`GIDO*?M&3Sn2&Sze!FQOY|xetn0cx*{oh-&VJB +&PmvC@MwyoNmo9`gqs5Z&9vieYhO^GKZo&F%{!({D{I~$@LTcgdPG0-XLLS5UmkiV70k%AoEh0yP$2f +Bhs{xC4lZ=N4CJ7ZY4nS-3jq5H_8GmzWKnaDpPfcw!C)j +uxl4()3XR4l0D6!TRMv*C%4Bfq_zqQ4312~@1wOl=2cDwv|*CpsXMVt;#Y={?&@AKruR8m%2XY +SM((10UQ8FoD-9yrM7hcMY*e6Ed9ZQZ{Rkn5BaCR=aysP_LmwHK{y?rCoxm>nKG551 +nX9agl%Blsv!C*T0>Bk_MRB@E7^d5V&vC5G(Ah&QD4q&_LF>rGvZyLN`t6Q~mgM^Uq@R*z{OsuB;`r= +DZNk=cwU4v-CkI+8+8(3!Ni4ra@FNn(3^PSKV+>1!E_W1rJA8&eJdvX7sskZ@cSqlzoSrqkJ`cj7(1g +48v%$nLq-rDes`cic_z81)mo@biJP4W83FqIT^D7A+m*K?KHT@qWw-m-+W^Iby(_Ct@t`M94UC8(<7L +Q@#o}LfHX_-uM@#z@vlciHBD2W2VEKzj{ybC<1LxY#7AnRhO9N4tPr1EWN$_##tUG&t~CX1ijCmp{?) +}okBS0&Gz`#@)%vBd0v#Bdr5vX5#v|C$C>QBr@iIdb1wBC3EkXi$@94;=$Kl_`1W0Z4?voHFPb$*s>I +tp({aYNgQmENeY_0bmrO!S3)as58Egpj$5XFE+MiSgLg*aDJBkVY(>5P=wtdlo{sp~nLK%8 +b3GO!L@#=2=Zt6$3)`r6hLuc+$w_Sn(TA@-@*K=qkqK}z`Xu(#SmP!_OccjaPBviT+ZH94-7=?v#mL}jBP?eEs-2iqO;)|FKs&3NnVLg6eCv=dy}y6!4T1MQx8oE57XTlZgx&xUyWGw0}(d5 +Kqq(8!Wc$Oa;q>9LJWG(`ZEYb5eW&L>iJjKd1sY(>`w+6uE<6|8(on{A$f8MS7|$?jpxWQ%dy5vFXKe +CDN0{gaH{4Zgm{wPWi<$WzC|vUp9oiR|)OO$ss6-Wi=hcYsRm{OR#Ii|ha(Tluno8>9Z76*yPeKD(BS +IPRPwI~=igA_}|3$4rEiH4agm;>`u;>u;`?p#4F3nLH50cLf=e&gk6UI&n|nMN@dsdNsU%{|bg=HNm5 +P_xbkZ1Mbg#^$+FdtnNSj^ifBYVSA{fgFr}`x0@XlbtaeYE;B{H<9PlMLkx1`7Pwga&=H_-N2h#lZ)e%3wXx+(2t*Zn%;`g_g@T$2M?{qaaY+|!HupHo5*%o;6DNp&`_&rWzWiTAXV63;;G%@Aq;NX|4$Z7TC7x@3R%$5L5Wr#PYu^L~ +5ryZ0`rra=H?=r5-mAV(p!M?jy%-RPswY09xi4N>1yh-g4C0{e|@Z`41{$~|sq@Vc-qMNv!l`FcZu5F +;u>ixcgqL2nmQC2A2SxnQqNyW_+gTycKY_(Wcl)8#v_VEHKj36KWbwG~)7_X}5oqD0BZGh1UWf1(oRm8c_IPaaEH +^`I0ItN}8RHteiGY&Zosxx<1n?B5r7OkC6)MRs{E!@y!^*z**u8R^W#gwBgVJNUZ9;193k5z1)h1K4F +0Z>Z=1QY-O00;mBm!w<(00002000000000R0001RX>c!Jc4cm4Z*nhWX>)XPZ!d6pE_8WtWn=>YP)h> +@6aWAK2mk|@q+Ihz`Ti>d000FB000{R003}la4%nWWo~3|axZCQZecG>Nkc_WQ$;RqWVKSwZreBzzVj +&tJvD&pwh8vKd!i-UCRUbQl8Wo2BGC;2Neo0fLEe66XlLVY&U;B{&CK^Vv(yFLeaVOR6fBgkvs18)<^ +Jh)cE27YeC}@G_S^TnFSp-r|H$BPH$u@qI~$;#dg%NVXZLW5ehv%9hXK-5fY}B+Kihu6n6kYK=Pu``G +)7!*g5XbcXVaGlH?{LC9Q{0o3|?G(1V5+${uJ5hdv|nQO8^h&Jv@>RM`%wdOU4`(b0p0Z{)b&5efU`S->3w$^?G)R$4SmJ%Jr-ve+h}Lk4&goMv>igdHh`w?7Eo +E2rl>l#qa``?{#P_S`k}{$$-g(H{9O#BD@^_c)?2@! +!dxWKcQu1Xfh$*=&q!PIyJMXU?lS6%F#`I3)5+4|bKr>t&vJ0jbKN@VpA{2bf*XZr@$4KB338P4GCwZ +g9mNa7yx>;%?O=ASC>$*rmYoYFCF7#he);gutXptd<;Y7?30;9q*_AVPOQ)sd>LaAnFWL@3he)kv)YU +DUtq;%^lS;d5EbwE%?8Km$t*lz@WR}^SUicWE;dV>1i1oU+)I*uX~x}adAXAmS-!c%y@6aWAK2mk|@q+A0R@w*=Z +003kI000~S003}la4%nWWo~3|axZCQZecH9UukY>bYEXCaCvo+u};J=42JhUMbrr-#Dv%w;9y|k1rV~ +*)NRA1c9o_lczdFx=_PliQ~dp@WBKbWkK$gjMWM%utrItu@ZbCE$McJB^_#V9?>3Z|bdpB52X1jU +nam>mABp)|5V6VGZub%e%0k=MiTG#~*VbEru>Ee$9h8%=2Q?5ZPmDwZuOKSVquozF}5%i`vTN3b}`DS +|M(e<%$7y~8+Xp%WOS-VHgQoz>KD!EM!rE&Fv?Nj=VK)f))irKa`bB-K&&2(5H7-32(Ioi!6cRRKt20 +K}8{4A0hCTE|K1!e9sfu1xb+yhEEJe>udP1f4UCJfR +)t5;j-$!57A5cpJ1QY-O00;mBm!w=Y(-mMx0{{SS4FCWc0001RX>c!Jc4cm4Z*nhbWNu+EV{c?-V=i! +cOJztQODJ^2{F{QPQgTJiP0hp=3DhHTlaUX#VNy_@k;{Ep80xj4)v?y)}EWDkzd?ty0Ujm!eEVTY_Zw +TVH^fnt`jZfD$^W(_I|Hs8ZppLOu4dmYkWMxPY1w?DdKgjk)Uz +q(eODI>?;b7!(}CT~H7tMxbB>W8L59J)q#pV{GDpU|WG{CbXfV@JO54B-6eHOUI5PBZ$OQ7mUT}1HsB +;pvwOMDvypS&0oQkaIVAp^3bS}wB|i%vIX!#pe&+4mMsL? +=Gv7A?pDC|m}2)Y6XEDlT7d-|-q7@vwthJm+3iV6-;SSjf9$>dcBQbNjSQb5#s9~w(G3f9=v-m(qJuR +~M6pQm}){Wok6ksJ2<69Eqhes*9c>`LHAMSGrG*!7mwbbBew#>Bnlo_GN6R$RMMU%M_%yDb}vDA$c?w +>4hG4TCR_f-9!&Bn(=VM!x`1O9KQH0000800Wn#T)krm>Bj&706YNz02%-Q0B~t=FJE?LZe(wAFKJ|M +VJ~BEZE#_9E^v8Ok3EaSFbsxw{|eD5fm|t_jtmFk+96Ap_NL*m5!9>Dom% +J0Cp?9{%JrK4yTH}rup)N+Ta=UfO}MV}E+iW<38o^~^Jf;WW5PRVea7jnZA<|plA=3`uoRp2&^55%?L +NUVW*}C$st@!0!wE@Px#zGc%?(gX0|XQR000O81DB*+Cj93D_zM64zB2#-7ytkOaA|NaUv_0~WN&gWX +=H9;FJo_VWiD`e)f#D!+cx&Qe+8?4u@KwvT<&I&DUi&uO?NUWl1WgkV;Hnd+seq2R+Q%0p#Oc}BPofb +C?DCR+ZB*_M3L`4Nrvk*$#OCaIScYmDBm(x{#C?bkj&Yf=CrfOk~PVn(lA~U_4#d@he=GM9{CW%A00V +oP<{^QF|C&l!Z^=pykxxkUJguyB+h9F0H*h0M%NSu*0V4MRMQ}$oRc&1yfdW{ov~<|W^55Y!qCinjQf +4BGgV|x=Sj||8G}z58vuwjj9Awje=3H&0fm9;RX7hNx(acP>#{=guwpSNX +C7vt9wBPL@vj12*DTICp}=gM!i-fH-%-Mq2X4DPRQ?xpt^nb=*iT@t#MKkn4wWu4cGFamKVp_P +snP+4uSE(VSOkW(+HLKRuGx5nNcp3Rfqe2>2*ZUCP#mPfVf)&kZkh2Wg)1Y}0bH?%_i^+Y-Rmi72$ig +%i{O~;M5&14&1aq?_iB9#!4PWaf*&K=NRc<Su^A<%t4Du+D +97C#ZYYzwsA>YvaEp|baq#Xz%(9Cs!-X&h{i&e8+5a%p~`E|o?TlNdW!bdrK77b +F>Hn-eI-_N*($FRmp@QA_I#>&ew?o)1I+x3Pln-t%{>D1_+pTlf>WCA#^JOVcA|#tM$U8CpD(aT%c=vyb;SI*I!_iwCW%cJmdnvyDIG*O`vYtu4)9c4&K7A{wLKTrA +*TjbL6Dx)&}9v@vpN9`K2qXLT66&vue%(U{f^07SbhchXmt$=EKcM*TQh4_~@if#wRDt75^)R=>hHUa +3V5H#kRLBhtQ0r^3L;$DD{(=^Vh^qV!bB+`>3?2@p{X|sY_^GyPEQJ!q~R8O-4bSCLM(pjW)NN13${h +sEI{2`x$;l0d#w8dhs+YRRXnz)`%^$A<@&b3G~FqM;sFkg`{ir5mYqL!bTbvzZk+X_4AMe>kFs+nP#R +^&BnOrw#3q_Rx1r#d^sKap8=5!5^w^v~E5>pZ~$n0U>EYL4pa&+JkfQ%`~B`SEZ#JU2RMm<;XE@YIe1jpp5ePx|Cw;`<1*WzWbF>+EV5pX9EQ(nNuVvJxG0S7GaszW +8T#^`8@oQzfISnbyboV99cg{%~T2Ltxj0Bct+W|Ij~xlKljaCjYU2$FFn5qev{Kv1_(QXdK24gnV922q&uJV~dqiD(m7WsIJwfq1m@~O6U +*wDa-?S>Y_GID0F#9DS +$%~oIA%a-RlCGWnVN|tK+uBj8HIV$tCb~d(Yqe7ac6KZ{;R_|5JKhuE0A9*5bGs)scwpwMh6TdsKYmR +&ilX}}QDVOymo2}<7EXS*+{TYU{Y2(aIe3NREVvEXTVX^VwP;A7?`gE@BwW*O19OtS=P>=_p;%gPz%k +x&sgD}*JnL>jsmlz?kHjCz|s+#T;t-Yy`Ckcs?c-btYG*B{KOZP5sR>al)iW-kRwXfx+u^_>l0dx7#`Gw6H04S{ORrn&hiva7E{ydA^Y~_A!zjbh1GkE`>Y#Hj^OnYv{*8uzVY!_hnsk&rW?3 +TW%cp+PbD0*d>q)@EGeJYZ*D6*#4od*y0OsXoMjGBHqisQd*pl-;_0Ca9@VANZnY0ptDGdc%1tPgPI{iNz@M0sOLU7(;r097mg1@*{>+x +N#Kye$?m4z9l(;3XymCNInhVlnZT7v`z~De|Pq(;_E$>A|j{0lis8OJ?;l8ZXSrJg5q3SmU?H7J)lU9 +`GQ#Bx9@r!H&0ndqECQM)Ep~yjwVsKT|v=>Q(?Cz}1VOU;U@&i+zWQff^h>FL;RV}4HYt8D%T6a{htBqF->6C|D2*9d +L92=0*mY$sn+cArCtWPbNh!x=qd>aMu#@mT-zeOzVBH74Cg0<8~jSQu(&|y6bnOBLsjQ$YwF&8X~SRP12XkI}>ny)Axp(8hH=AhoFk+SRPH0xQ6> +$$7v@E7BP;hAxfkQWgSjVC28r9m@~3n>kF8ije+8#t?oYMy-+TP@?ht|K+OJa-lTKK6{eVeUOBY2VgK +F0X1N&6np;e$-zz3ov9+ZGbLHTB@BwZc3asii=WW_TDqfbU@P-%C9cpp<%Uo)ax4SdZ>OLqNAC4YQ8A +4K}F)=t1BlNl6T!{<>uwpP2JFikiXsdmG^&D*id!e|0ryjMVaC8J4A?5h_0ZpLqKRRSKpt%evP(e)~$ +Pcx2!w&c59hxTU>jy%eMG=BOZKf*RFw~1AjlqF8<1n?U^3d@a+EpP)h>@6aWAK2mk|@q+CsvpREHs00 +0L!0RS8T003}la4%nWWo~3|axZCQZecHJWNu+(VRT_GaCvo|TdyTKa-HAjS2Wr$G9b&FcT#{Jc=Z*Q9 +|Xg1gVv}mw>6#-X4)4)(0@1g$vD-uzLEc9W=$M62zPrv=~yL-%5*>W{zq!%u(z^B*tvkH7lv{`>yl{NcwR|L*%g|L#vditm4~{~OBd<6k +K8PX$f}SB1O5TjBG-^(AnP1}BBH!A0R}@KAUfycFIK+`Yg(Jn&ZdvF~;5`5Jc1f0%NQL-Dj8JbT5nU7 +vCNI1fJc{`OdRTvpsw!?)tzu8+7r+Vv6FC%ZmX;LY$3d>B4~FT;8Nhu0~h~VS)%wUE!ri0l{Bj>2dynw}&3*ipNxb>>`Y`__9w%Jz&xsIl;zR%UQBQnnd +Hu_&vH#(AvVZr_8Qaa+qgDJmkFic)l3<;|+c3fXGF;oPU``Z*w(Ym6dsIC|U&2$|gEwufyS-EQ7y)okzE1f%y@upzFzry!VS^6kp +EE8nhsyYkgoC3WT7mG4l#L-`KnJCyHGzC-yAC~FjyH44fa1!awbvPMDK;ki|dO^aQNB2IosGM^FdyZAQJ|56NEj9N@u%zCS$XRDrVdbaD?p~b1irN +ynqBX|A?UA`(hEh^u4=QN&?T2&icZgZE +h^ure53M>$~P+CkI>~8C8P3<%2z{|tf5QR&?Rf=k~MV68oFc+U9yHQSwoksp-a}#C2Q!CHFU`ux?~Mq +vW6~MLzk?fOV-dOYv__Sbjew3KWpt5Rimi47xng{Z+FqxxnwQs>s-{mi&l5h>MrWuMcuoodlw~Glwj5 +Ns;YZeb?>U~UDds-x_4FguIk=Z-Meb@Rl6347N-`M7Pl6)`D)sHHLcL57232yn>N=?>$hqBHm%>Le4F +xZTE9)}w`u)0t>32g+q8bW)^FGP?OMNG>$hwDcCFv8_1m?6yZUoif9}e+E8nhsyYlVIw=3VFe24NK%6 +BN=p?rt(9m;no-=Tbm@*T=|DBq!chw>fDcPQVf{ydfMRK8RFd8$88_2;SnJk_74`twwOp8EbyeSfF&o +%;SxVmi9+W`=h1((b67gYoD^Uhuzx4ZtY>W_OM%R-fHt! +Bexp4)yS=#=GInpYb_l0=cE37w0@6xY|*LC;>3ZA2KmK_0~Z&x7`2%6R#}Thi&cwFi(T(Lv^cf6w7B( +FN?!*E#XBu3U$1<<^7ToJS&K!B%GWnN+x4vS^;6F(UmY(L9WNA}>MT0dS#+wi=u~IXsm`KPokgcQi%x +YGo$4$))me0^v*=W3(W%a&Q=LVpI*U$q7M +v={8jR|(Nj)~H$0qgIq#m2pW0QJpQjbmQv8ifN-_WEUn}!zk4NdB?N%KXjEK})ErLPfGnMz+Hs4|tlMo>i~sIs)Wm%8^ +-_g-4vORIZnbuV@ArS83y?^3=?`7Y(Vl}MTy;6P>T+<^<>0Ez!Bv-oYm_Lr>MUZ_S;VTdh*f71tIi_UnDx#@i&ZafdbaD?p~b1irNym9d +FiUg3{_)>sxd>=n4u==Q>w-cH7Vbud{fn;)}YQJR-Hwx+V5BG=&N@0RXh5s9evGemGzN& +M5Rpf~M>>MBEBMJM;FPVQBm+^agdS9Nl)>f~M>`fBLpUe(FHs*`(FC- +#I7~SGN+}N>FD4tIh=0tps&quxjvGHTbL= +d{zxUs|KG{gU_nLXVu`dYVcW)@;%D;DBq)ekMcdr_bA_^e2?-)(0i2c5xz|mQ=2BHHcd=zI_cDOmZ|A +XQPY{CrZYuNXNsE66g8bGYC2QYbf&23>TuHq-=+(`O&5HdF8DTG@NK%_+jPOVX;xU%tgu$q3{634nq< +;6$)ruamFAo@ZJ?UYw>NzUo7R5U`t4f3T`RO}g?6pbu9ecYQo1ha_lP?Sg|1cBbiTwfeY?B9-Cf`Aj{4QNduVkJt>2*&zeB5gXmt;Le}}%mL +o0OXdo=Vt8v5c4eQ}1?;FvEh%7dmhUsF@%r}CXT?>&|N)OqizP0&RwrLr$|v!#m>OKV}Nn=N&-rEa#=&6Y~HRGg*aEEQ*I5V$lpTN;} +!jm?$@V_VmNwyyGQUFF#Ue_OOzwb-;MHg9#ptxmXg#bihP?a<=X;?knLDO-~~x2AD!P2=2}#rT2zACm>*3$Kbm%aG|&8Kp82V2Mui#D)}5wSX%_m?EcByU=tr~Ak7l7C%|bsqb +8>X5eA8GrK77$ +M^~4Qt}Y#2T{^nDbhJe}ns$CP?fhtab+o-Y+Fl)Pua34?N878T?bXrt>S%j)wEuN4ongP_jq=g5CL-L +jM>(JzQBEks9&Nd9xuM)qhW!EdYeMWT<9>9E1bVTX~!79& +?Q-`^EY_;*D!{vA?F9CAxsNjRTy9{LpMQwE-=@5L<_lq<>&<&N?|d7`ZP6}%s1;{Fr&pSb_T{U`6gQA +YjfT%IdBndi!ao(p>FM4GEFnUlO_S)07&f$JyAyr0@zH4)2I&BSt5Q?XptT&!D;C?}LN%HX3LI9%0?E +LU|4hpU>C<*IJta8d=cfPVo00R92|1NaB<58xlbKY)J#{{a30`~&z0@DJc0!9Rk31pf&B +5&R?gNAQo}AHhF@e+2&s{t^5m_($-M;Ge)hfqw%31pW#96Zj|aPvD=xKY@P&{{;RC{1f;m@K4~M!9Rn +42LBBH8T>Q&XYkM9pTR$ae+K^y{u%r;_-F9X;9tPMfPVr10{#X33-}lCFW_ImAMr#*JW(tDzVh#(Uxj +`Z`c>#xpsZQF-DBdKrVZV)L)oKTP}caZA--&g_p#b@%NnnAO`p2uiZZU(nax|q^%x&?O?J6u-fyD3P}X>_V +?5Dy_VAVy%CI+sZ-)ID_Gj3iVSk4Gh|fF5FIf1vW!P6>Ux9rE_7&JyU|*qq8h`cyJ#|ce%g}d#AI2XY +kNF&@F%&@ID%2K;A${{;UD{uBHs_)qYk;E(YTR-7D`oNgKXF<$BzFLjKUux54 +3%75sjzr*6vEqj!e@4$S-!2H9&{KL?x@mp>vca)V67O>pF`#13Z4gG+|ErY*)Lc@&$Jup8pF#aBRzem +O2SNwg)-*^0dhn_l*cgxTZ{mbakqeG7lJvQoV-~4;%cfenBE!@TqKm2#We;53B +!G9P0cfo%b{CB~B7yNg@e;53BZSaRbFZlC_jB?6Jm7!8|A7Ai{{#M-3*%op-+IgI>-pGQ-Z+oH*X|L;T!Cq}YZaJe|P_8I9l)-<2{{sI7{tNsU_;2vv;J?9tgZ +~Eq4gMSaH~4Sx-{8N&e}n%9{|){d{5SY(`{5_fPoCHI#V;K{dbGzL?XgFD?9m>3w8tLpu}6FC(H?uW# +~$smM|Wjrt9dDueHu!jQsUT%4#3_bM2h#ebcdaF2Jd0zdi>3sezL+=6p1N;a0W3NUV;0J&0sIQL +t>Zq@d`s%2!uH&=bb-wVHJ<700=L>t+RQAq2Fj!ydSWoF#Kj~OM=~zGMSRd(FAL&@n=vdF_+#J*KzIM +E?UE|Ap`-E~uS@S)Iek9>+U0=9mhq6aGpd3+7C})%l$`$2?az}ZfJW*aKldopDZV&z*{5|-4@b}>F!Q +X?w2Y(O#9{fG{d+_(*@4?@LzXyM9zt7R}$Srr2b$;mmqf82T%=or6svi=11C2l@FbGTni>7a0aR6-A?WP_(5}@O5I_{>Wo0jfHfR=95+^Dd0RL3hkuL!&%5=aC +x?@!k1O@>b)@fKrMSbi8{MxlYb^_`ZoEa~Q4dc&JoWHsahIna8rHmlL? +9DDufC9)b%9P`5SRqe0dM3_TmXNvC&+DfjhkKLKD-BmnvG?y7vd)OI!KJafFs}uptU?mj(;6w$6p{5C +k6?-!sQn|2^)?E;MeG!1;C0^g{>#xbyQ3~cG}D~fNR5U2zi +0a}`AN2VQY`a&TWBza#T5I{8qx^|#z2fB8kYX|H_aADHY$v;`VV$t+Xa>$5ukv(B#PZ-$~MpkxYWk>d +ek0B7307rZ2MTi){KLTe`@qjI7GYPAeia+2Lmw-@rFlL;{JxB(M +m;(nL$s;ysX~>oR+w%*HX}GZikgwajcSGu<-NEi>IR)9EsOEVB*D81K8>d5^(A!ImhOSy7o4m03}l6_ +x2@#VrEhQm{496(0yh0*L@0%dn>~>?sU;3d5et-n6net?W%JgPKa0s&uJJm#TEBN|&niph^$oc1YLQu +r;=0jjdEeO8o^AflQzfpka%KVHwPE#maHT%5lZ&0+B!>kO>q5l|Ul^E}eDTS+|{a+gZ1rb<1_J3k(92 +z#@RU#pf_DkSKDZ$cf|<$t99YB$p^*qJ)X$DzB*DTtWJk^egFCyvV)L=^FKD)T2?4Mm-w!Xw;*zZW{# +Rwy|#Gpe>G(7l#Rp9q{5XVR1Tav0Yzm*cKbM#TRJtec9MrbphCMIEp^(vkx^r?B@=foWmyPu +o@0EJ(TdEe+d!o=>;4CPaqJ81QLNvpb)488i8+29|R_WMPL&+03!8>v^3JvNJ}FvjkGk<(nw1qEseA^ +(bB}4ORTxXnoF!Xge=)fxw|qa +KcWIO^f4ho>H%dU)#LsfVW?o_cud;i-qG9-ex5>cKB*9DYjU@LL&&AImuWTE^k$GEN}dK(_p%21Ay~k +YzGtnG9Lx31l0{HhjaDwI5jfk$Obx5vfO{9+7%P>VY}w<*=%8fl2_I=DA>Zfk+?`;A0CPTlm=W&0{-( +L0}SC1U3PDv4D$@i;IsJ@C3-Vl5Hj1O1713E7?}E?YyFYa|QLlh;Mng)CB?o)NMyEwm7x7IJLJpwYNC +6w>Y)8IJLJpwYNC6w>Y)8IJI|yL0}SC1U3OUOn217Q4dEw9QAP2!%+`MJskCL)WcB^M?D<%aMZ(54@W +&5_3+fgQx8u)JoWI@!&47WJv{aB)WcH`Pdz;K@YKUo4^KTj^$64>P>(=80`&;gBT$b(Jp#D|atY)T$R +&_VB$r4oY*0EIl>SYF63K;q6eqeDe);JQux=ykHd2pBJtFmp)FV=lL_HGqNYo=yk3>BZ^+?nsQIAAD6 +7@*bBT^~ltNF$}+xx%i>X#V=(pekybETbYX=!(6@6(#Cr<-lI{| +Mok+v?Ub-n!cGZ04eK<$Q^HOOJ0t$00@TBits`4UwvKEa*?O||Wa~-Jlbk0PPcEKZJnPo8ZZYe$nF+ +a>3AvdGxtR&MnF)D;L;zeo-k0t1g|-VU0^j@zxJ2F~@*a`*h`dMQ6^U2icWd8(Bj5=H0+B!>0L4CjZS +)o(lY&Yx|yFefi2_yoUKp{{GGyfxw|qaKcWIO^f3hoc^jdN}Igs +E4B-j(Rxi;i-qG9-ex5>fxz}ryibqcH%dU)#LsfVW?o_cud5vWI?9)WrU>Jg|%pdNvG1nLo} +N1z^odIahbs7Ih4fqDe$5vfO{9+7%P>VYB8#%~Y50XAD0@@#y{(=80`&;gBT$b(Jp%Oz)FV)jKs^HW2-G7`k3c;F^@!9XQjb +VIBK3&WBT|n@JtFmp)FV=lNIkxB{zyF{^@!9XQjbJE67@*bBTBZ^+ +?nsQIAYLGWE#RBU6t|Ju>yk)FV@mOg%F7$kZcKk4!x>^~lsCQ;$MD3iT+|qfn1RJqqEa~Q4dEw7=Jj%ACB>dWBlP5e>lb;j`4?M{NWgXIL052@rPsl;TV57#vhLHhhzNV7=Jj +%ACB>dWBlP5e>lb;j`4?M{NWgXIL052@rPsl;TV57#vhLHhhzNV7=Jj%ACB>dWBlP5e>lb;j`4?M{NW +gXIL052@rPsl;TV57#vhLHhhzNV7=Jj%ACB>dWBlP5e>lb;j`4?M{NWgXIL052@rPsl;TV57#vhLHhh +zNV7=Jj%ACB>dWBlP5e>lb;j`4?M{NWgXIL052@rPsl;TV57#vhLHhhzNV7=Jj%ACB>dWBlP5e>lb;j +`4?M{NWgXIL052@rPsl;TV57#vhLHhx;b}sMMoUk4il%^{CXNQjbbKD)p$;qf(DbJu3C6)T2_5Nk3l^K^%&G+P>(@92K5-!V^EJlJqGm{)MHSOK|KcbnABrZk4Zfy^_bLSQjbYJCiR +%qV^WVvJtp;-)MHYQNj)a@Skz-tk3~He^;pznQIADE7WG)vV^NPqJr?y?)MHVPMLibv*wkZFk4-%`_1 +M&7Q;$tOHuc!lV^fb!JvQ~&)MHbRO+7x>`2Oivzxn;&{P_33|LJ!>|N1w-{o#*){PB<9{l$0x_;KO)| +M|c4|M>6L_kaG~pL~>`KlbbO@z3u+{R#~a_zL}NG`j~a<7;%C2R-F$^wbaV{>9g*dpU!>!olFEa56Y6 +Tnw%XH-o#v!{Dj#GI%TeuyIc9c4oIzyPetX)NW^XJGI-H-A?UxX17zjo!RZwZfABowcDB9UhVc~w^zH +p+3nSCZ+3gN+ne29?e=E3SG&F0?bU8`G^dVsN8S${)b3z*2emtxfk6!nW?*OvcY}w*)8M7>Huwk}{R7 +9Ka5Ok6oDD7t+uIP;z-UrMl`5K4QKgC|RZ^*vNtINpWL2EBijygrRKa8lCavORRh+bnli8ir?qqf+wL +6*JS?#vg# +XMG9*gFCgwu&RO8JhrOGR2wANt5)kDN+pnkG{(-Udr!`em# +W<&nY22PGdY!V6JvlI$iLECdS{f(8r0f`y>LLa?YHXjBl&Fj&WE%^umL(n5d82kkP#vU@MR_i6@rh3% +1RD!dFaGJvQ$Ro}c&8?zFz0soHs8MgUs5ffV8!hUM8udntdZR|Y(W2g{QE#-UH)_-yE$WRL^+t<&qdIalM +~>>q(HuFdBS(vRqei{a{5z_D$6|IDwcFf27PY&W-TF4fVs=-xyPDlq?Y3YzR<)$sBdb2L+9NgUjny96 +^pVXT+4Pak9@$hXi;<(o$g!DJO%1frIX0E5ncW&u$7XgnwY!1~-??mf&qV_w{`kko#PPBd}YQGb$--+7qMC*5=_B+w~ov8gzw0nJ0~=k +ly!V$M&CoQre<*&?N^O>efQH?O7eV_@E*VBSyPkhS&6=Yfm9+~sr4CkmZn!?&WHu1!?FiZ)8c+LNN~i +A_|#s=7~&2J7^4H9x6YEUCp{4drTW2Foz0T3l7NZ>ZKcG@bu$_Qvu)4R3Hz*bLOLrH!Y0nuZq5+`efH(dIB%6l~U^H|@}E^7hrVcWv7&(LSvmvqT3 +??QDbPk=;6&u02V&o}|Bq!jG`siB#R1_3njb_m8kW=+(g+92B-k>H<^`)!?r1Gmp +IN`ID{_CEb>Nx-R?lWRFbxNb}gP1F~+Tqplv?&11Wcce;6O*MUtpkL~KQ-8{Cd$9D7Bu3>q%u)M3scJ +tV-4Rtq+B^<(&7rP2%r(brDf}on)HR2>=1|uh=9)uYb +C_$6ppP`y9O{F^d~oPOTJWDZK$&iTQwZoJPupg8`?Y$bGD()cm=BIR6n<)L +XsbDF0cz+ddf0GzG`&ePO`6t@wP8cY#lr@`qpO0pq%^wT+uUlXBadOQ1|q{obwiupVZ*nfj%>rr*HA| +u)*=sWk%u|*P)D{N`Zd)x=j$r?!LB+QF#}-n0g9s-H}2@TPXr)A&sFlWBf3)la6ygH +u=brj4TKlHSz@|F5a-;57G{a333_P92S!XTEVW}ueN5-od;myTd;A@#L%f@fJ3FP+I*(^%@7?y@!A +r8U27O?T-;$+9Y5TE**F?PwKm>*}_KL_0)-#lUSr{MJgd$(GmFG2k}6ch!5_P+-@ja5h*UX~_v&XDYY +NRBoNA+%{9WHFVy#n!mMnY(?p{^}XEoUT&?lZ4JuS(Aj2#URx)<_Ih5Dt+iumbvI;i3J-(DtB$389G! +5ms(c+C&mRjGj>fUa5~)t83O9pslgI9(aqO|wsH4k+$Cd|ATngJwG>$!%zI3z`IMxXq9U30%1WuNQ+-KT-ChjxsK1kB>PmAt?cC5GT4M&Egv+EO +bA)hzL1tjO$fYyZu{4=EznK1F`99-5{?Uv7jYyW!7cD+XC&fZv;H}GTE>*A|TzP`6tA;0dKI&~#z&Xc +|4t{^S4m_HQQU!I9LSBmOfiZ>khG2O}l{>;d@vVcFa`#mBN@CgU*QT^~s${(_vtpB`6;Fb|q3-b6r)B +AMv;%oubRn)KL8o1`vpT8vjA=}sH1l~W4rT7!#xrSUzo0hvrt*>TwHe~48f~RXb1K@1M^Zma6zJ=EUQ*(l;3^||9&^mhaPIZV%? +v7NK<=KWJeirf1#(f-e8{?|=ig?H21 rAo1f{8NKKqiZlas$FTNx=!mrk|wBQ!<#a9@H<<2r{law)cUvmfv84rYIV{r0|Wye~VL{Q>p|v +p>TAX!b|gAI<&<`=i+(VShCHBkYf6KiZ!i&3#Em}swC$k?L +D0VXY(LV2F_G1ghws>qKUfs#;N1V2^*^gZmJDdI3MzOQmk9`z7oBh~Gv9sBaofO;J&yB4VJDdIJ-?zn +q8=EP1G5fKbVi&U?{nsvLKlW4XV)mmw-`1Y*0{e^EUtoVR`_Zp$>-RU}Sev-GN7!G@e(bi`)$GT1i(S +qB3j3?sk9cEOv%kXrYW8FNva8vTcz!ptzrp@y_BYty%znf<`n{L?hvAfwnVE-`t2kakaKjQyA%zlg$_b~eh>>p|bU-##wur{R{Tn_-kYQ +wU^nCal~F`|API??8kU*FSDN;VYb=NoiN+%=T?|)_H!@HHv735W}E%o4YSRDZim@sKlj6Iv;V+;8;|b +;`;Xa=@x?x7KgN~&nEeO#AG04@YxXhwvA1U1{L;qen*F4#-RM#8Z>t#hh#fsP9z2KxEeFqGX7v4|i4T +r==F5g5!~@61l?VN-W$oP~HXhkL1Li87O;$QgR^DbLgd(_=Gv)X+s?o;hP8n<{`3cbe+yck}AH^V#dVL0tshHv2K!5j2%W`BeI +&FpWmznT3F_BXS?!Tx6UH`w3I{s#M-+23G)Gy6O2?`D68{oU;Eu)mxA9rky#zr+4+_IKFd&HfJiyV>7 +ie>eNFA8QV?f584>_7B)U%>DuUhuJ@1|1kRp>>pzV(##|nHIuDomygkKrgKjTD?3;}Pur|*$?HC+26+Xr!vx +PI961J~P*M`RD&vRyxMz3sk4qJXzdfqTUDpIaxfOWEeNJm$5+>zU`gN8PsfdJ>1iH{Y9iGKcPQDgMka +g_r7i%gyisd>M{Cp55+qaQ(68YQ|}>1W-ZkmcsD +r`GverOW@2p57{lR{2o2_>WQPG*0C{mJZ4us@mo3HB +$mKf(TF_9xh%%>D%Xli8nPe>VFw?9XO@hW**>&#*t6{TcRWvp>WBZ1!i^pUwUPJD+jHJ%U#;UKQ6@<5 +j_{8ZTrL=W4tvcva(7!K)gt3SQNCRq(3D3#rPvn*9y-H?to(%(D-Zo7vxB| +C8#`^Tz!x)jDgx*2}Zb(u=Nx+;T8H0#Al#;Gg%Yz?~SrJvqQITx +^>v!&HfJiyV>7ie>Zyu>=}0df%^};|G@o+-5>j8$}oKf^ckklfIh?QnXqS?J`?&((`Q1TXMAyw@SkaZ +KH=xn?7!@Y+V1$liZ`~VB4eb5j*Cd`dVoBu9trZce>^a-Lf+rsmV{i&^;#L=fOShOE=-`f!h(L-P{Pw(M-oOB~B9ILs?}WcaB3$rI~2;h7ozQI+ofgI_rDF_-Z^Zk{;LiO3Vl9-erj ++6kspKMN@Cn~%voM!mnUt10EqCSL9l-wgbi)A=~DapLovya72^7kC~XBLCv!n_2H8vc)ZH=@qcd^a^H +fU>U}pVCSN=Yt2A{3H_lULCm#rzjN`Q;nBH;^B{ROg}z%t~^mI?0>Rr~ol=gMy}*H^U@jVJnZBJeLlu@ +n3YdvPkh%zJ_7#i`^`jYq|D=c^izijRrDs(E|WuQt4aXeaQD&#y{1#}nR8Ah+(-?BNYb9T(Wo31nluE +bE;++}}X56NM)pt-9l1IQt7^VqTyTKa>QQ +ScrdBy^<*`@kC5H6Jzh*xdhPkN)Y#8E!{g^)Ktv1G?vYj{yA@KJY!BJn>1nRLoFP-IV$Ucv*SsWD60Bw}@?9^m?Zm- +}X17AdxK&Cgp6o_OA)NIPgB=8Mdp^C5o8F^VTMcn3kPDBBZk*)nyDCE)eYmoWWAnT_*EvR^lRz@>cGts +D}9J0>w@=o_OBD7WoXTsK$zVzKifa@)u9~)AZpZQg6UcATRa;!A`(SEOd4qzuV!uHGQ3Zt)-HGvsdo| +%TB;|Eot0!>^^nFYH(oe>@4lt4R$ORa^7R(iHG^bAnv^-?>WI2$5OKIkHX!CR +TPFNEjr$x(9eWM@6``CCJWF~f0BMICB&EWW}w7n~&=zmNP2^WDRp>#yhGKHxR*@pCIZ-g9p`+5X_y5$ +sdfHldwa7DU+)pOvdtv95B|lp6 +O(_j>;&@Wv+WzXM{TdZ`~=Ow`;l#2dyn|#8{0aPxyLt;kHye?#HObUtmgz8fNX=&ytqx@wn5w@p0Q0U +ZhZRuah!Z2cj|vEN#7&3GF`wo&jacSi!`1)jdPE;Pv9o^g+ +nCz73*JhAM=|7Y{|ecAMcdm{aN_o;&49@#ICnk1C1fwZ4zoSZ;nb4|dR6M&~`EW%%;LG+1+b1LHXXZ(sdm7vcMuapGgW?tR2h<@9E^g7 +03yJtwe1?DGe3*1;DO*7487k5}0(CGdSLJW-z$uHnRoYrQw0bNBhjGRpgycp}>gKKyw(-}}w=#OE*eI +9=KNYKJ(t3O{3+_mO+PKhhrGN0sEOP1ZbNy9zlz|7DvmPkh-wi;iVKU(R?R3r|!#!L6Vld!pV)SoOIV +wBSA8*2wINIhkK}W#Tg~yZMg>U^nh#{<6c!Jc4cm4Z*nhbWNu+EX>N3KVQyz-b1raseN<78+As`$@2{{pX==4n!R-wJdzrSENs~_Zh +EOk11Ci3COVV*C?Z?kf0<`FMeSjvmKY#vgcQTn|Kja_OAV5jy!5lzpk4LnwgjO^NeaDyi$#i(=m3k}4 +)wMz?(0#i@%T{Id5p1trMu)x84)?t$*a6nwv|aC!f-QCy9cnMUG@8Tx3E^ODo8`Il!uoj$sGE6FLOef +)^J4*3RTULHpO~+9XG+eYzk756YH}71ULnC}QU|lK@+h@Xp}?;b;A`0;{K}O%<`02)QB>K4w8&)J8S7 +yusRW-LtZBi&b&|?UmY)Pt!gJp#%(AS(pqCZ;h^}V$nzQ8mQ!j$^hV0t{rt28Q$C3-#E;68pvOZk|d8 +Y|L6_MUZHR?UGCFY93Nw0bq1gd9O#p) +t%qK+%|BA)Ra{gz@7rV2&MO?!G=q4q@cQuLt+WbC46~=zl=o`wejrhSteIq)QPZ;w8tih3#)XBDi^^X +RUy-68_r6Q>1-uU+zO`iaK~IFw?8=N3Uxk!EsCgVP=p!)pJ7gA-h17glH +-c&U558uq=lGzN9x2V8B32v{kQGiNx9f_IOQTvFLk8n4$Z8^@gnG!<+D~c=HNIn@`VA1zh$M) +ngU6EE`oG$cs0b$UIOn3_mK>v#&)Nl%lI0hHM1_yxl1~J$n-m5X3h4q@DN`C!B+cCdjPeXP0`^pUvQs +;D2C%$RB?sqlh-Wj8=OZyEy+E!}h8F*oY7dX&Y(J_tzqw(@(OQT71_Yz-UDjsXb30l@9@mN4cD`6Jf( +HS1=_(7`TU#;-qQwz!j5}hC5j5JrhYG6mq+7=rrJkmak6N-i@i5QT?4;{M3N`HdX6E36XUFW8xQD-V^ +nB69sd5~uEc;cUhydgLNG*M~X+0k3ll9-)c6gGyxm6bRyB3z1$6Zc?dtXE +S0snWnuOj!4Ij8e?p&Vxa08mQ<1QY-O00;mBm!w?CQaIxm0000L0000W0001RX>c!Jc4cm4Z*nhbWNu ++EaA9L>VP|DuWMOn+E^v8^k1tCtD$dN$i;q{ZRZue4Gc;7<0sv4;0|XQR000O81DB*+000000ssI200 +00082|tPaA|NaUv_0~WN&gWX=H9;FK~G-ba`-PWCH+DO9KQH0000800Wn#TpqNaOnn=mkNRb*zN)}0plOzsF3MfrXLMFvYB&9EmOh!h8>;n7~`Y>5MYsXo +O$uFiL$nahFX54%BK6~%8_CEXk>8ii~*}adhy64{e?_TBp_l}=G_Rs@&Ja+G$cieyfFIWBa?g#IF8fAc`@oM@J$myMN_w_`wf;@Z%r<;_gQtbx-{G$E*Hk)eocYUv>Vfa}Bub?t51K_|dz6 +`s2>(KVS8i|7rO*{$crV|HJYR{lmQvy5D^Cu}A*#-+$R(xPJ8?|M5pZSmpkCX!?{$ct5T>EE +r=U+O1vFeBa*AM^vFYL8QT#LoEL|jY7wM<;=ifg&J))UwI;#wiDmEu|@uGQjNBd)b-tmFWy5scIjMrs +TrHHeWK#Yhcfq{cB)0~x82jMPv@YAho)n2{RINDXJC#xqvq8B2{+;~A^*jMaF?YCK~#p0OIwSdC|_#x +qvq8LRP()p*8gJYzMUu^P`rjc209Gm%qVjc209Gg0H2sPRnHcqVE*6E&WR8qY+HXQIY4QRA7Y@l4csr +fNLXYvcJ}e(3&lM~K8Xke`G|as#}pGM5-Ie{UK7{KpqH@<_7X$h_pA5he9{gxq&E)Ts9XsuSAxowpmOCJay6d08qZutfNDH*HJ-T|&s>dXuEsN0S9-2%+y}u@x8lYCQXDJo{=q` +)WM2LEnaV3fR)OwmTHJgAAQ6j;-ilwL{j|n<00nbk5h9 +Yq(;6}BVU@4e<#Fz;1Pw0AO0{bE7kCqJ|>J79$%M+Xl+p%8y_1c>RDx)E3f*Wz7aw`HvII>5c1;r^sN +x`^7-`b5b^^0bbAPS`Fy$~gnWSb>CO=H5#py_9#e5q{Kt=rDz5~ez8k)d*MU!e6GC1IK7B8Q{PN(_T_ +NOk;nUqAo%274SQ8mg@HOgEzYWy1& +oi@rtH7Yu7lyz*Bb7~|_shm@zOkk_VvsL5Ss_|^qc(!UhTQ#1o8qZdZXRF4uRpZ&J@od$2wrV_EHJ+{ +HeKqmxP044WAC5Yb0Pc7*^4Sbwk_hg26Y|+CVUiH;c=Peu2ErsU-0=qFvnL3X1aZe3kI$YWOcKQ%Z#X +`ChA>GOcf8T~Y%^g}9ueg69AQ!(5#;e}!lXPR$m0dVq&yB6~d%EBFN)a!lXPR$YUE}QX +UcH@j78r9x>z*23CnKZ+rbFxH8tiT|lEF +8Sk!aZwCGhXGV1GYe4+L5IOpBr^PWYTWi%cj)8RS8pMJ5)a4Duk)A`=Wz7xEy_A`=Z!7xEy_(v|Y)LL +THwIqJ#6l%Dq@ +^JJKMUMOGC@}wt)((^+3f|e&eDU_ZU%KY<$d0+Ac`I4UWB|R^c`4C>bqUrfb@g}@PULfBIwdOnNS|Co7^V}AbRnlxfz +XT$Kp|~h;m7|A@-Bt+E`^^+Cux!+sq#fg&PFn+5|w@moqUooKmI2vmPC5xi;$X)N*Nj>wem$s%SJM{5 +|w`ZPtx>8j^&GxnT<-R=}4G-5%Q~1DMuQ4h`ZRGAg6FYEx^FyKggJ$R9|i)Oin70@n1e0Vzm@1i1;sQ +;A&|XLBfAYUZs}e1Ofjgd5&6&v-TtQ<;#T0=>+=y%PoY-=>+Qi%dLdzVoUfX3Z82jtTo<{eMyE)((6& +$Ry1kHD2|;Bts_Y_NeiO>`MxsCG8$HehPg_PDax2QRDUcOA4MP4Iedr(tSzhP15mE19^}`lC* +r(dTqZeEZK@$j3YTDNwY_-AIC3f8QH=iPHwNisfaF`E3wx_a1a_l +b~{k0mJ|gOooJI=xtu@-ayH6JgXFOHw`tDSsj)$YM###~|fTgrs~dN%vj$yl=eG1&eSAtw_{wm$~je{V~}76X9fvCEFi^?LQGNI%3K8$6)(UgfVX{ ++5Q-8|A}x(5lgl|2HSrkT)f1R?T^9sp9tMbtjqSn_J8pjVY+-D@(A5ZtjqYp_MZsdO03KI!S`oZ>}2;EAo%lpChp9tMbtjqjC%AW|`O03KMLCT*9-AXJ;`52`9iI9_tB_|()lRpu1GO^qS5GVf27xs +}rK$xEh>5o_v<}nEKFT!{!P8$4FSRWJ1Lj4$o`Fu#2$C5CQL70CLuBKuX<)0*j4BGr;NGHT7%%3OIpG +plxS^hl#lGH%3=JRCwC2JmoHJ=Yz^H{RxFk4vwC;r4eYEiBfLQ582I# +xF6JZu4QJ5|>y&Q@l{#v@$=&`YkNLkLB_$u1!&0m|BUkP*_C?v>25-tG)`?xG@$CtG)^s`7x?>R((aG +4eE7PeML%B%k4#2IS>&PH(sLQ9*-EyhmfO;8!ymsheM1d#7XkKatV>7{`I~JXKw;qKsA$zv;_%l!B=6 +lkiZsvwNd;%6k&#{n8+krvOIsnveP7!JGa2K|2DMiiR9W7aP7Yh?Rp})_5@t}N%{iGwI|@(e;ab`$u! +qK6<~J%_yJ~;t7_~d$1Gy0$Q=Sn?k(PbB*=3br)fy#E`S6~Ialo_y$qmGC~)Sd!urSroH=ETlb*LZr@ +}BJ0dsyTte#B3oSzDVjYJmzCp~XzPKORKk(&S#@ad;R2b6$MKOJ&RNncJ1FzKggQuMw0p9*Q<1bq4_k +|SvEQz1o|^fAT5b$J5v`&392CLq60k+eX5p9!(cAKj)l{qV^0b%xznL{PUO~wWVu+q)+16$GY@9=bhubeP$$i^2K+2*Dk`OUe8JN4oJX +xRe=oRNmJ6z-S*v8Zbb?6ibhzM7YPsJS5!mT)!JX97bs+LO9WJ<&TJApvk9#^?a3_+-O%RQp4td-}^0 +)~CvD0DvmPj5qK@fI2T;C-+2m_CMI$UrklE+QJ-F2vN2Oqa&xARrwBu!QCL|71aKUGM=4mQm&HwlTYufQ<@l3eVNI^B92@_js$BX(*xI#)nIG+jATWQA +&{7h)}Q_#+5!X#JP@nSy{8qO5t^O=ykNju(^oe9ln3JUs6nD9zFUNO#uMl=Oqd?sWY(~eh+GodL>!5V +)ZW|-5+E5_Gh5SfBI{yKDrY2@Yibr?jZV35BKgUB@U^7}fRswsHnufrfRjlBH64ui-PZ1UIPWKJV5zp +uj}G6kpnb!fcO$jk5RaDt{_mcI@sXc~F>eN7V-{PNdf5Sd0^eqV<{WD1t~Oz7^@7!x}*vMIRcGa(n4# ++ZMhIZMGfp9w?BG{*c3L!A`7^O-PYNn^~vFqBNeKA#Cg$u!3N3q#2i9Q2tmluTpHzc92)!9<@47j9{c +`4@(3Dfs9!;Sw#4G5mGzt{>N(GZp-d|4Ia6>4DBvSB7XUM+Ez7lEA%i}Crww{y+D4er2=X>%yK; +fLF+1``i0Sf0V&GVl84irP4rO>M{zXRmWS&EJNQm;VUoTaEpRx73;Y|c_V)R%e%s^%<3Lb6UV1xa(3V +xYd12k4oz6#ew4$mQbcBp*%|ly^!)iD();9blI39MHcQX8T3-h0~xrpWY9|~59Hp +?l0lc9DN>}}&XPfwdAAg8DbA8XmyIb>6k47ogDwj#Q}m-aO9owbqe#(?;vAVy^rJXOp=za4RVjK=oTD +JMQq_+s`cRys@U&7aL5h0Oa}=0XiX}+VCgL20q?M|EOwl6Z90jA5;yhDSqn@KMR92&=;5E;Y3##Qz0H +b-1Tu?1%0=Ud`%6fEXB@)VNAOu=HFBTpe&%oHre#Z19so+D2oS)(kx4`O +qgL4;@n`>sd3fj^{(il*xM541DAH&@pAQo;3s0cs_JYnXG5cz%iZ=9aARjS +u?PU=R?Po$$HidyyE%LF=euzH3Oq~K6Ff(tY^)@C7ur*Qzq+KGq8x~L&ucKde#j5;rY-pWwM?%OH^4+ +miS=#0!az=tQW%WZCT<&<_jb%^q;s8_HWA)A2?qiiJ=R{g|MhGOMLizf#jBW30(+F_%igVxIofF_3ee +Q*;G0a=aQil#y8<|HbaB$Zz!TbKa6j}M +QxU;zO9+;d6A){?!pd!bGZ>clVx$4mIF0bU +@ZROvUi6R2jADwlsY=7 +a(_Ruc((Xju@_7@di0Dnp0CGf2ZuYkX)@EZ7A3U7e#Qg{pe1A$A)^kwt%zHAKAmu13znMdmD9^f(`)G +u@&Zbd-$OZj(8MY{G&*!S^deSLE#xUeMI!&M +JjtiPn&-;9`>(tkj&za8Z3YTM-O^w}j#C97_Rw;~6d3Tq3OF1v)F)Kwb^-0z~6w> +Py((4rRFp5HYokAWmQAn>-NUu{!uTw~`Q%J8h4eZ_CI7DUIz=VNSFT@*T8 +@LX|An;wg|z=gE9EAW0A)w5%}VJjO6e;~=_|^PvRkF}6{YkQrSui0^cAJ_6{YkQrSui0^aZ8#1*Np#r +L^B=s-l}x+T>E&w{9R4@zl$OUXP`9rX^Cw31avjaenFWF^m7t)!K#rmf_3JajuwRFQ +VFl6JC^cCwPY$17qg2=&Y@b)p;{g +gRLh)FBiBxi;i3*dbLCK&-)-ax(@mmAuaVuK8kucqq;@v)*P~gh3=fqR;z>F5>W?wn>qIyc6BW9NQ$6i%W$&u@Vusycs%JHytq?PA5w_Oz|v~mMon;Y5eyK*d? +rmZ|zxkXZZ`Kd5@-6Ac1<@o+9$HVfC7K!m|xcd|07GyS$A5eJT;`&d>(ZNXs`YB0qwCLD#<@m3J{Q7d +7!Gg&F^y>M5zi*fDhF_%8L7)Zx+y>RF+~r9Mqh>ae6S+Dh +Il_hGcPa*a_(+PbKN{bUOVsn2}}-Gdem@=1J<%)&uBIH`j^LJJ4^Og`)}TR2EZD0R?FXyG8A&WGJ*3k +T^ir4A&&aFEaG!@jeHgVZIzgPuYQ2l>Q4>_A&MNImg8=qt2vkk9UeW-T0~gE2Zq4U|vu!>+W2gVY+ng +Vz2F2l+g|(#V&Z#CJ*~UpjxOQyTeFyZBCNAwjeMz@cBeG*eUVWkUpjuIQyTfc%&3ts +orBRSjeM!Ce5W+>r2|JgrI9Z+nD3NEzI4b*r!?{ndu}+?$d?+?cPb;_@cd{a~p+>&Gns+(^z8&YObY!y4T{bF1J@7lS63|^XGNTst9ZA_l9ewOV2m4tDGprrDL;Lj;y29 +R-(M^uwiY0Fm#ge#)V#!uUv22X#E~^!QyDZOUh%@~rnSK+=Sw^uWEu*-n|8`IRZJC3PV%h01ieAx+RZFgDDh9p-ZP +?YGixURQuC_z4t81{C&So>+x(1u+jHK)Ry8a!dQ`!<^EjH5`I;N}FU^AcM*-Dj9 +b@bPjM5DW`Px_OI!lK}ET&j*aq65kOI{O-wG=mhQ4XB`%i}B+ump$#eZ +CT8Z=J7>XP~uFpiuWf5SMOSa!#mJ=kGN140J^6s9NWpBBBkKVf{>$2Tt{kLO%cP_Q6catOeWLi1u=@Y +Md+6?sdSN0=m();?o`>`TTqrR;Dc9-?tTEF|L)WNII(v#_+>^2-r67^-hxVx+<$f&O+*)Q~nXi +4^EAyw4Z(OF-wnER4Rj0(AF!(G;Q%Tm0k(6*=0POgx>i=v_@zp~KbO`%<4p{;jONNZB)@h&9o8vDHDk9vOKh_N@Or!C91Y5x}M7CyY=bD6`Dm+t3n5&$07Ob3g>@PQ$7cxOCE776}p>Kdp!rD +Zx`_q6*gN@BR2>7(B}JBh^(m4!hEn_{9zevS286NRp?ALm>~k9LVNMS3=t3&dQ=T&h=8a-SPo{0fT+- +|YA{0tM1?lvgBc*%n$)lq4oG+h6sqNF!Ch=qAHAhiGZjIBVQsQs=~;ZHMlVHB?6)wys9wr4L1}!)X +10Ef~qj`rNcj~!pN7-&Z`O|-*98GLydgt6uqi2@(ni^JJiUR$cm~k@(ni_JJiURPS&eRBVSqsRi%+HE +rP1j$d@f^e##Iy%O$((FQ|`L0R_N0qEHjC27{RHI+P9gO)8{gftMjkX0pVN8ZUHO}F>i!ra4ck4*^Hk^;*eig@ +gl98=ZnDJA_yt0P}Iyua%`n`;KMW^FrYcxirK-F&Sdj=!x(UV_qZZoH_@3jd+ ++bulM0`RZ)$m2#+!5)#B%jdEtd;QaQ}aj@24X5$5?6UUWs6r|_mmTZ94U&uTPA;2D9&2(0>OjBqz&IL +?fsj~bm3_(1jA9Bans=b|`)Ra-~(HQFMucA_l;YarSpd`@v|jdBOpHS|T8=Yx#V7-7H}ry8vh2ApxK( +Hw#G6qOXLi`dxAx`=IT1I`!K*u=(1v)9t#*>DeIIKz-n-o~0?o)#1}mJIW(-&irsQ{Y}>!7xv8dyVzNJca +GGSuT7?$2HejE}Z0vjMc(C1?{z2EPO;Y5H%JHC&d`SSW{45W2rFDGQ&z?o~Hm73iCV#uuhm~8(>bQq- +edyDq)@i?i!1Plk6g~MmR|oCN-7_U(jl*HiuJEokxuY!bxI3YO_AzM1PI-!AW*cSRT+}rVjK1rL)Rw6 +c?Q25CiLnlN@4T`EZh_Jys8N+D)V@vZDrF69KeHN*IhPpBHz=TZbHgY02-N>ek?y`{+d4fjvU38a?oX +9sfvh||7Y~)0dd828JCNXj%Z{5fP#oc8iC-TLOJX1Vs5+f&a!;Rd6?k*cS5nI+IT26_P6VYT%qUDqrI +Z+_hXnLVZjGQPKZW1l0#K?(gGrj92YQQTD4zuS=wVXgI3=Xq@O0}H8C=3p>e@eBS44H74{gdni;4VW> +huJ^Loe1tSubc_I&bmEO*(+i9Me@Aj@4ga$?V?>r5KdJ +q(Vp=hMZ44N4vcN7(cAw46}wFgU`VPi|_C8dO0HjEqB?-iM@kt%@8%F*x(3z2YKLD)L;kF;3#{CO3Mjbj|NBCJ5*Xu*mE>E%HE;Ua;hMwqwF1IA +HL}N=JtPoh`mFl +9{=So8x3H;BOB(p%SHou#U=Z2xywcac*P~p0gIa2XaKLcz+n7eG`#GX&K40V@{oY?cpqr==~BPaHJda +q^E8ac7&lLv@Jt;z1p(cbyCgBp%G@{6rW^2||Uv+W=lo+I~Y8k7v?Xz%>>4kiDNl9y~v%4d$M5!w#w3 +FpXJwt53ktG8~oCZ{q-S<5yuqeDKUHK~<3%3HRP869#Rt;w*=QKe5Cnb9E+(nfOEL#y}nv?d!dN2Skg +Y`&1JZEKPeb5#1=#^wvj=(Z*|F-N7(ZEU`fY;S8)6mwLC*~UixWP)40S*bN-{~T2mw22u8GG?ve{O73 +PpiRs$kWFh1^*=`?2W?`8flOO#G5~WQF=~c^EL^L1VYR8A28Lok#zq3gdV^zZBn;DjjEw~9^#;e-NEp +KX7#j&x>phI4b=@7`pXpgqSZ-f +Z>Guh#Ip$Jmy1%~-N6F*NTnwk2INq-;wJ+k1>{N!N@l+Y&?i9%Eb5HN(KRL~jbb-ok15p;NTUq1BseO +@pUX6qo7lPLXNvbc!}aT<`59ou)MIf-Xb`$r`|x_gtm>;-n3R)lRXiLf^Jf;vqdV%l8msiAe} +)|{fC%(Rhm0gS>Can7w(IQDnU%_tnf=iEAlqwIEWR^f<4=hiD6g?V!u6yCeV_xEq{{lzW5zr4lwSGV~ +7`WD~c+~WJ&mA~K6#dB{c+{ph;g&X<5rEnwvw-s*Wzg^)*{yP+If4?EZkE!oBd-sm1?>C(IG4=gs|K2h6{e~VtroP|o;X9_j-!SFJ)c2dh++*_ld$ +;)h{w==0xW)IExA^|*7T;gr;`^Ihe1E(0_v^jft)bA5?NyJ#-R@Jcm+GnA3YNS6Tiw&5HCy$Lf295zM +0lK+9%i%Nab9{DTK$-Kw!~*JSgkw+UT~|v;vg0zyLz-;=}}PatA5Mt0W|ws_0>j&8^InFzm0}pr#@CN +1pB^%wP0mSS$7$N{Y3dLL%>tVPKSEIiipq9@MzmPy&AX;XEM3pg~o7537TJzt<{*Xc$o;o{~FE<#mcI +U5WU{p+18LaGc>jAyU@xm+3qp~_KEmgn2De8TF}tu$9OSbV_Z4xuJwwrHskrc7|*(~IFDy-#`AeGp1P +?{+h9D|qBMFXVhHR{c;VNWf#Zdr;jxd=e&e=TX&qtM>`!=Q*O>9!D8{d8EY9QC`0@LH2$PM^-DP8)=E +M|f{n(y76|aUiz!2pE~ML|UuyjH>=Ea +R-|{Rxx(%Rl_Dv?((<gk)7kXnYu9my)Y%V=G>CNwAxRaAhxoZ~A)!qA~=jUIPmW$4^xmB?_H72D-5 +w>KXu$(y>%Xt23vzx$VONT+X*_oy6=yNnj9Yd&=U@(ua)4e}m6Uf^B-`4xBBs9(r8I#lIX;tqB +||Lxy0=;z?y@>_sb{S)z|qFv%nmeXjf0hdiL-Q^YJzfAe@ROu?4~$ ++;%rCq$#=K&68S^8UGv>wBW6Vpd&zQHD|A8@YEf+S1St5seHT@gLyscc#m{-+5XUt1E?0*na5{3n4X1axUtK{rdMoHgZw1}xt*9Hl6?CJwf^PIy&<%M2dfWla7 +PgLX7_BgR!nQmP^R9zuUwjjRc)cYT5 +TS_`&l79_U6>7*iVpRLfJKE>1uH0eOMOqQIM_$7t3UDKISGsls1*;LZO2!(`?DG_~M%XnOYut}zqH#Z-smA;E_bD)ru$MB^cxj*aVeE +A9d>amZbH7~KFQ))HLUBx{aUas=8gK2F5!_wDwW7Jxy#hpYCxv=_y7w0hdSwzA`a6lg+65@k+@J!+lw +_NO0v&;Q-T4>sS4)5b^}=O;++D%hpfZQe4(f8)H{>fwGha!X`HIraSCVGFf;97$q?xZM&3t8P<||1vU +qPDrO47_%lxDtyH1idtnXe$td4u~;eS^G5dieyUzKd(ZL&Y3g0Hu&Nk^M*FG*fuI9?rz@d9_eIuZj0`gnCDMhwP&btHzYXT&VV3_SAcNDLaN< +kgWFHL%I6V=-zynMq5*@2$RrA3{;w>YoS{g1A$lki%Uboet4&!>M#}ibA{9ck^4J%x?8P0)=>gDo{xG +X99(A?-eLy``-l$(cULeNcMh#Vh%qbP|V>61&TTRkU%kq9~LMy=br=$&3Qzi(40pF3e9DJt$LPEAp7M{#P3YC9r3QqL@{I6Os>9T6xgO6-UiOi^G*@q3EmI*P+n6xI=6oK`ny<5HZWNxX21ZSBMhrzox?UN}Wz9i9-&U#&Y`LSNtHzx+u`sT!7THl=SPEldUdX3%btksYU`N1gS$@$zH6#x`}^>veO}Uf~Y&@?*Vjy!=?NQSQfjjbcC6Yn1wNtS&dK$3-VtP3!e?A$!Bd1r`85`Vl3`3oHQsMu1& +_0+l(O0*bbh_Qhpi?a_3Xp2~Y0=2zib-6>4pV>=AL=_UX3wt +RIQK3Ka!rpLWt3z?N@?NUhs*tZ;*c;Z;Iutcdd&7;b4#nBodr1Hl^0o_m!|Fqa;_U3bVJWIZOQ3!u|8 +(Si8;%}yzYC?>8&+F76l~Jouv36TaVq!Tuw9iyK_~4E8wSJ`63z?zD3er~(#CyZrKUrnIs3xOV~0X>_ +Jx~%9SY6aN7P=0y!FC9D#ELfxn9^8b_Q@LG-qGf8Ni{?oP9)qRmg8I>>~oKLWX-`U)XNlq0pRtVN)H4 +LcaULT3d%gzWc%oXoo_+`zV82MUd~lumM|K#YVoAD6L{6U&<6#v5_yON~_q&mvW_5Y~&kO@jBGVH|%Z +TP$Sues3eCgkg40$9|Kl#o +?Q$$#fAOsVr0wC*qlB4^YCbDH`Y|boQ*w1c6w(N{6)QB$ZXa6Bv +cDl(ARS68#%E9=xaIkjhxu>%ch~RIpuU=KU;p;G&DBHn=b4RJ8#65Y#JJyb4?faQ}t +Oj-86JMg1!w$8oD1e8bF1Wm25{En=?`u_J>W`;!0Q6n!`~S_Oqju?MP#DD(b@ia4TqB$#$f%ISzGUf4 +HSEu4FsX*qnp9u%DfiY)2ZK15g+Cvx|}KNMm#I>B4?q;K_ERu{rW|VLz|zWINK>oOQaepOy9_xUV9zJpk-E!}(*gE;vK^_r3^^TO&nKIP##L?P#GX$!4Rx1|oY?cprlIb +#krR79*)-H$HgaOmC!2=4%SKM@`DD{jciG5^J)dkE>Mk2OvFFoVSydZ3vFDRbL*uG3a$?UXn})i}Mo# +ScWYbW08S9Ayyq;+EdICF@7Ym$7Wgf%5;|{(^$#Ym2n+Qrm@xq?6uxhTFYaG;_GK6^W +A#Udi`ulz8lM_g%3%twQSGjF3bHawLCWVQx5g+>MEV}<515(T%{8-9NGm+d}s^y|LT# +j)kJK%*rkm|>z4*&sSB4w-d%@8UH&B +?}f}50RWLIQrrHtdrpAhaa$RfTJJor5N3GBOdMzJBY@n8}X3yf~Fhs +a34irrW^5aA1#|rH{#*PJdeQ94?kwBf_m-Y$NZPEcW(GGW$#+-o*N#f>}-qObHl@I39)}}NJl6+6!JY +vx!V?7=!QqdTS2~av|=-DmWR~!IyP;VhsRiR&}Ml^{bOU(W_fswbrRd@hM&;d*tA(*+Q_pTZ9kSavSq ++_yQL@id$Hec>3L#l+B5>nZmQS{PQjz-WZdTF`7eufO45Fb|fx+z?K2~5 +toED!)C;#z2YxJzFb|=Vk6?{arPS6hB(?td9oIp5Jy7Wu?2Cok$5xHEqk<)tqQguj-FtB#^%G(6C5#O +gW%{1Ka$ho{%ttsFg9JeM^DmnzQwk~(I%=?FfFu4n~3mgk%k@pnj;x(Y#IGJ>`LuWuQ{XVDU;nI9Xoo +SBMPKrN6+&t!v>ep^E`jC#bxv&&jloHM=w(T()0!&y~28h-0kQUqE=0B@X;3b&Pd^owy@S=ugmCF@hs +%~I?qs~a!0STRRQ@hdY$bClDVVp?0>Q0Wweu{5hQg-JK4ix%gg9DJoi!ZHrmB9Lgsh0i!C8)-bS2EHm +$=)2gEx=zH}HtY+8tqsE>Z!V$aLyI7h13^D;Wlx`DLxcnz-?keD8?;k6`E)8jR)vB*u2*YIc{IX!-yw +GR7T#%p=*BS$^n!0QF*W)KR +Qbm`e@e{09NMny*A+E%<7azaEo(|dU@teHXKx^^wn>-pwYLDM!8KLRXcn8l=tTK(n$NN|c=z%omB(-TGKK_uSP4qz;f5<)s>F@DJtk2jfHKyYoW79 +l*e3b15Shn$T)@LNc$JBK>Hf_Vl$C+0_PJFVKtr_++O=fxSBQ-wRz%s&qrpX4@N#wC78^rH=`A%M7-9 +S2f@*?XM_A^ah=4b?2?a3Cl?by#W*}^^r$?eIj9B*Jh(`1|Yq6R2cznRwHlWpvsk?NjoV=f5$nI^CE3 +`NF!@;W8tP4DoD@cT%7Pu^gEg#ApDw|F#=|DL?f8jBrGlegIdBMm;;$s8kgHBEMMbd7BIWG6?t*x59B +PrNhayNhE{>~5Ou67LN8?&h^5b~sIT^V%6H^2u)RQ>Ir0x8eB6*fc1g>}C&(9Qf7BTyMfF9x_aQXa^l?nEG(#>`*X$&xH9QhnDgOQ`M5&UDm@O)4EAV7WO5km +E)?#wW0k?OgBddhtodk$QnL(*=yqzHJ2e-jG(z(b +S@wYyV78BFTZLmIM@e|X^ZLmIE{UoNB+hBbdO*j}Oxj8Y@tFb;L7k#E +S=ITZ3;$Lg0F`G!1wVw%Yf)`iirLm}UFG$Bm0xxu7HYbreq;Os6Z5#^ut_ +zu3heE#V!mNcuA>VbOhjb|9yN*n21nzk-%OeTyc`zHszlrIFH<%6AuZih}H<%4qY>8=vH=s;-V%p#hW +0vtcZmmL~kj{g3Jn3^|@_Ewd#^m$F&5e9RG9@vs@CLIScA3*IXW1>Avo2>@pUp{^8`#*Gb1paVJ +DXE3XIY=k8JDvm1>jI)@>$!>`Igkj&!Ld-dJf9W*_P{hcAJwe*R$g_=UT33$7@ctT+g=7oN2k9XNoz| +ay>h3*y#(E5Q-a6Z03w+SS#2SoDKLmZ@mNFF`UdIln +y%LW}<;x7xd0?JDg5Xr;sY)3#O54WB8Nz`N%6h4Dejr+a>vz#;srhqnnF!XG~KxNdrw+=k;Y-7iC +}mbQv%g`(2cqsP^kL9Led3bjUIsr&n4TA;La^<;xEODHZ~J>2>_<0vm(z4X!!fkU&F-gr;ov3WnCSs? +mWkG3BdI5cbc>@xy~W{sXWEO2Pnc>kLMhh~j-2+aZIw|e-b7=Ms{tFIn?Ti}rY@Ht@?K>V#9?%64D$b +a;z`umXo)w#z74*8D{2)COU`9C9OE+{}ZK4Rvk#gDTVVn)4uT|~^Nm+$YWyxO5&zAhSO)XUe!!i;+Px=5H&FJBi2Gw +S8*qF_e7d|eF8sF$ycfEo4jb@4Bw72fL5_XmjJi$Q6*@c8%J#9#1I{{0qOLC11$Z4!gd67)t4I!n+Sa +nDdAJdHqS33?+2o#oHz=PIgZgrjC!?r=-X7LpIuv2Yvp&~1yUb%74`n!|hf9Euv9$B8zJ4XL(HND!pjGi(yf9_R +zCb*Rpqyut1l)tN48Wfc43))P$_qdIeG4<#ew!jPs!e8#BG6vSs-7|Xz}8`YV^k11;!qdIfAnWcd0%; +D2v#gao&E%QE+^D(M3-3oY-3TKIowW3t{Bys2?xF?&P+J)MQvunf +iFrk6ApY)nVE9ni^9y517Fl-rX2X9EHmZ67gd=l2firEOgZpHO=c=a$O|4Ed2{#n?9-GN@zcRwO +fFYCL*ri~8tvcCVZuwQ%iVR8TIiWq*ST%Eh%D1ECkv;## +)d=vKeDmJ+%#S|Tm3rPOJRj`fRc*>RN}I8p +5!eIEm3NX>o?_K04Sh&hYXFU6U4Pcxj9-_M&hxMj!jd8TP*DWWPAW{uRCK7iW02fNu7SGgSQ*qo4ia3 +@@C~(SC7;7tZKuzc|B-U$lc-oT0LqxPg3UIBr8%sKpsx!!(fZ3?-rC2J)TZxV$y;<+WaGZyBc71GnK=Q}??@bC^bGjpndLYK`WwMQV-aaBSTg&0%} +h8qJ{;e2nVit4FsFe??O%=~&~xIP=`%%$%6ZNhg}RZI{#k#kHhPNhhAV?ZD#97U5HpPBL}doRK5$G2U +UjGZEMR+FBZ%q?1kEc0ic8q+^`L&c(IAakue3#$~+g?6Y$m%P&TY)uhw2ce;Dly3ruQD(M(M^4{{xlg +&>$#ne4>V*Vz`bzl3TYu`vSBI#82o*DOnGg654)NOm*pOSBGe9i9V+r)6SQ}-MYRx62&YQ4Y6%v%yg_ +J(UB=9h_#M!7fHag%qBlBqxCzHW`YEuH#nG*6Q#o4&!R-12y`T%vAp=ggbe=Z;e5C=YM`;3hJPjCS4h +r~7oz^6#>kBBNj*TpO0PbIU3uKD?Z|bIQ1RkNo +VRF9?Zle&G_ZX#mW%(Xj3MGkAs%gO_h&o$MhRZ^06r|#J$R@q6KPu+8 +1+2p<>U*0Iv>o>fQxUFw*6H!oFOy6+BZisI*>hz|HOwwxlhMSnyw6?e1)cdDKowna3s!ZGP9{xL-(Ws +r*18ly>Xw-Yxjk)|&@zia!1WPibQM;}gLlI47>C`=Q%LYpPmeHu)$}eZ#sT;0M$;Gw%<<}Xdx>*E;YK +hKBm=e@WL=yH&6ie7^P9kA&wFaJEo8E@=eBBRwP0Zwbc@6AJ*ehSIVAN&wB(K)#tcTC5RHVnx>r|}A&x=0R+$o#kLCEGY9p58 +hq{fQJsciz>QFEJy9DS(e@A%Kr31a(e{x57xTZtB)E^?gJ3-OL!{O1X4)pTAD?C5cfjxkf{z*`>an}Q +s|4C4?aj*CqFXiFk14|pJlq5mX#?s4s6jPI%JrD1QY-fU^jir}2Ezv<3?gk`j-*|60xB2Sa7LjjHP{$ +$Ui877{1?Yu+YEGbD+7AfOOZz?ndSTxe9+T@pFYE^d=!N}L0pj53JHlgT9qNUBpM<@%9}bVwb)c8_g9 +5BDN&>BcQko}0{l)_V^zyxrK~!)2EIi89fnKWjDHI1uE7Xhirwa9QeN3SlK9+|VB^D0|5Yt$IUb6QI& +e^4vhh#+^>@h3Ar|nYhac)!4P8QsbxLq2>m8=f!kK(8bBg$LR@a3vFu`i%R+(PpI->Y8TUWL!;0dJ`@=Kg9 +q7d=f-00|Ja8|&SCnQv@Q^_Lynpy-461X1++~>bhs6+J%JVV-6&a5T&`a}Cwj`*>_-8Q!UYfsfIxF7E +3-k_&H>SRdYiX0l)K@9k)K@9k)K@9k)K@9k)K@9k)K@9k)K@9k)K@9k)>kRq)>kRqOFPm7=LH_=k@GT +-^w4>+M|$kM*dsZ3sMLt$=%H34lEa5;jYy6k>NR3HeyG@p<@ljyBbMWbs*PBVAL=$@Iew_zh~@a9!Xn +n=2Xao2pO=5E#}8DB9zX1B(&LA%O?v#i{C~f-f|BMJjtp6sdHEMJf;LD!R*wHoCiu)W +r9%gt<+Jsvdjpa*T(sykH6DKl~k +>-in3<&+sYg~f9Y)pE*=oWkk?hiW-xMozxeZaN~r4Tl=L-_;t>H5w3>TRBu~K-XwMNE13#Ye3g%Kxo+ +n>}1G+{7!W5H3wFY#J287vAhiVM~{rUYCHjeU~dUqK^zJ-mWJg44W#*l +Ae<0#Lmcb75bTi7_tbL!n?4EYu|j`Ey(cNs&zg^i;;r`}!0kZ)n*D9@>Pmoe$KuyK^<)EC{pkrNw7c} +~5%Y~;koQJz!pE*m+qag^uOyURvSY#ik|_3pBf6B|d_&emNva$@5s53O{Uy`0X3)maYoanPAC58*&{f +Njxj)!MDdb!8%_5D^dQMo*A*ImYZ*&0?}I8@G;JTXHaX4W05hdePu9`1K=s2=jf40%}5=1@K4i5c=R$>>l$-cQ^02JQp?b&@Gvr}ikwf*6n>c$LxsqJR*|~|cw~;H!b)21>IC~qpl3d5xxrwv4kt@k{oSm +CEdmFiuT*ukDiLd@!t#GK8lZmspkt@k{oSmCEdmFiuT* +ukDiL>|bp)TA2!0zy@VSoQa}&XD3pdL+RBM2Vv$s*4o +$EL|H*xkhc49it&P|-Xjh&c|vvU(?Z(}E>q-#L$#btoV|^mn2xh^6K8K@C#K`<+;kGz#!jrO +<&<|;dMMX&LfOXm+ro~I4lVRUB_0Y(-yB-$htNCaLv~`h`C|4Vva3dso8`!B>_hZ&Bsa^E*Vu>XizkiJ_sXWrcU538C#+J0N^|dfV&X%;$LtdC6XG>b>Auo)+vPKkIUk +f8AwxorYQ(@%9mbB1vLao7kxI5B;eg@2k4HF#bg*7im5Yr&6TXvwA*nC(Y?LaLslogx|_i#DTXCzMY> +_%C^N!BS;6@0&kXHjWn$Loqx%dRxC<8?);Wmg*6u}Lnq>`F7ocwJHIIaZoE#_Nhw&#}_XG4=_i78%M0 +zJHy4LZ#;zx-xwKI{So5&#}tLDeU{&CQ)i5Z+2s~mUpeHINW6|=;egJxLeOe@i@LikgSTF--=vX$yPrt~?(6klKbK?D*YDle)3RUbzpdZ9U +(2uTx2lVDQE1+@NM!oA(9$VV`QAmQ@6P0V7nuyli)Dwwck3BhwDP@6d8(bee3QGSi6}dA1j|VO?MVOa +SdK{<-{fx9k=9+-Z=z>fY1j>Brc3PT`F=MAJ0(btd0M5H*v|9)o^VfQQFis)U>nOxa#v+nT9&da%L__ +#Zq24}x0gfF$8{5hx1~9^W>eTW!lCHnx{1~ar8&1|6FKD4oLjSrmJ6jhw`LQC>!mrjW)q9boLjRgY<1 +#L^l{xpi-*#jTeFEm_R^eNvx((w&aK%*Yk|^m5u1pVDb2Yxo5B-u9Ex*mHWAHInsaM5h1=&HYUCTXD{ +-iiZ`iKHp+>%xqbSX}HJie=i4HaLr6oma&aK%*uDCSk)@<^VZ943{4ad*A-!+;O?r3(X(HvU3l;%X7O +~h)I=0u!Lw1O$ki8z~x+$zn9IGbo8Q<@WTHiesq9BMR&)-xsen8D_-MXW=iIh$!&Q-YQmY^K#liCrjz +&9u5Hk-;5o4tJnC6q>V{h_4dN&R}!c0?VP$oXxaCERQ3nSmK<(ET^d}+Z`7Dm3|fu0UE@})IQSs3{ee^eGmzC_HFg^@22K4oF#OPpU>8u_wkFO +7WJvzJD`?Ac2rU-s;!kuQ7p(#V%Rduim$p1m~kWzSw3`Lbs(jeOa&mqxzq*-Il|_UxsRFMIaV$d^5PY +2?eEy)^P=&tB=+u#xMCQl5V0F3WX9C08`{brv_gyS~m!^4+rhwZ6{8@ZGJ7Puo6vo{jf~R@tFwWc_Lw +WjNGp@%U(Hl^yD}czi(oWv|6cbiBGlO*`T+GIFTb;vwm{LvbWL9Y*d@G#uU`eiw(nQ%i7%dOaP|xg8F +z@R!B+q80guFy?Zo*V7S|0Xo#{>F9XqliNO8i;Z6nqYQ_7365V2BO`}Gf^Ua0mqT&r``XaIITR9nH;h +3X>Ls{zFtphY^%5M-gxmTy?n185nlxPJ`={&4uyPohf +$S7A>WN+G+Ib7v|()@J-sG}cr?(*YxrRpWjGYA=0DNxA=BG%I<5O%%>9?bsLG*UbH+PD59Uy4&QoC|= +uotp-w;L_4)vNdek1hQ4n-?+VXx5oYiVm3-8dA76nw~fg?3+~r@}RaL(yuUT8=pst;mmuF||X{YJPo4 +eK-`Y$e&`}KnJg-U$ai4eb>^iFp6}j*PIbGXmBVFDR?!E6dVfqt_jyJ4)yXKzs%o@db#l{Y`xKlYy5H +Ou^sB=JK4%!1O2xqd&IM_3?H+dM9;0!Tj3hQp=dR~gDo)nY>hq&<3xv|)jX|x9O~sed734NlDf%Z{$2 +Fb8t)2Yd57XCfwy_4poi9QPW-Ny?`R)?5t?R=9}m~W4u$1^B8+?;3d{dC&rp=xjSsMWMo+BCt2|Rsbv +JyQ?FO1)4flz+LOYUod8VN8)zZh|+Qp%0L^8)d6rHX{2U#akiZ?pMUxe;f6WXuiP{{YGa0Tg5*ypw4S +sXI5f#)DvSPkiHafd>_?}}$3-;Y=~P)s-8%-$KzswS_n|3yvR`2CPgaj2K?(o-yj%*dDZ3gq*6mw0C{ +->Zj0UaIYbeI94xmUJga%_9lBt^o$y9Wp9Pbyzz5vpV2RB{2oUI;Qp81XP* +M@e|(%J2=0GrKd&ah{VzSmItlK7{1mT`!2K^#M#7<(zb}YqA>Sk6dfK6guVz^{!2J(5@JNFDUwVtB0P +cTufaejo|M3%SMRPNMd6t3upKM^ukem35Z4S8q;d5*^!2R>_Lk@*~J{qzb4uyPQ;uRmb|D{h@`r!UY+ +gT^U{ZC%>YmMm@!EHEi*8MJ4<-ZYcg~;s)+beMYlcO9zgZm#o$!jZc|4XlOv}ukH+ru6f-2eC(+Z=HJ +LpssUq3AERp5te8eAq_zR_6GyUvWfXjt`p)*+GXQGN0vH2JV0KD}h3D-r?vA-2dof{$6nZNW~&13f3ik=ub1!S8S&1r{2N)X%pqS-ioXo`{)%}9aQ`FfyV>@^{g2;f%K+|Qc@1;O*HM +-cxc}iNY>~kIFFnJa9o+xY`#jFz{zrS+s(||+3HAfr|J9?sqBnC(sSHPB0HJSR{@=E5?dr_|CcvpuLfU3!CkD4I&CRVs>4CtG;#qpj3%BU@nfl^QnU{$8|`8ok8vB)UnBjL9VAj@_MwB9 +7KWS^<*0>Cz98r{j~HeO!E3TErg3m75=wHY^oB-aul%^7Sh$@T@*YOvJ;BC?1eR1BOXFjJi{+9Tb{Vf +aEWgdnNc9wJ9(RBXp+6#$ru+%_D()xbwsjvLTAW16v@CXL{=3@_Fg?sVQGP6?{J0|*#(ll!&x>1NcIj +nAzvWbJA8_k{soe~!)K_Vra-cH_#(OS0?FPXCyEOsdxx*^I3w9Re3K0flD$I?@d_k+hx^1A!LaQU|J_+XFrm?OB{F>NcJvK^C*WRFnNm|7m~e8AF@s&*}HUzEj +E(9OLO9_U@2#LoRRDuZKQ=%fn@LKS@D-)Dc=&`izO+Y2jNgy${joxknA0C30Ps0y*nr@Eljd^2U}<)d +q+EXrXbln+R5`5$==aUuUFFn{%trT*8MIPL%-oUh&1x(J)#W?lSckPJPRMoRCIwf^5_uD2x;WeVez}r +oMSx8kVYP_;kke`@^}N$28Br@KS9g80*T`Ba}@p;NEDB^v*sXCJl@HggGBLoH-9e@#pB)lR!9_&4{(T +wMDh3_YdaFf57+biT#YUNCFRMSyzz+967s +Bla4uxN4%C<1a1_>{gn;vof#@`(9!-IYXZ;X98lEE6>Xs^PiS +2F|4ql+CRbs!JgNc7Hkuz{GQBoz61{aR2Kc1VX$xxM%YAxh0`?+!Pm2b$om66P&l-O=|asM|&+Ld7LF +H#IwV!PQz(!3J%{YBEd5?jJ9(juzFj>@3`O6&%^NO50@&0zn5F>mWG +{^lY%q!Q@?2UB@aiTuFD-+VKtp0B5F5PzY843zv@1C#G5ktc94xrh>pf{V{77$W|af+6HzD;Q#aUcnI +b3krs)UsSN3)yNZEd|5r^1?{GgfFbKG3Wls-RWM||Rl%z9mb(o3zNVg1jg{IG`GJdXh^LSsxcH`mRf9 +Zt8S;EvJq3AgS8%5PDCD?PJ%vg8j)Ec2cNGkI{zk!&=X(lR9CL}>fSVi?=9EYdIBgJcV@6BBX5 +I=zhy1{0T0WIX09>XBssxvQ*$2qeA^&YSSJVBhAL?&uMQ3_;T_%E}1Z91hhY7s$Wfl;~-)|{%S7IyAw +?xF6UR&Q%Bxo99eM=#e>00$It;S4isc(r$HT|EyrL2u<@boP$rcDQ@Zz)PMjg-Eng^B5u^eu&@rWMk+ +lo&I;j=m+n(KICbmKM9FYtXmEy_(iO-?CnV*!h;#1kBC1tn{E)zGLkJfASssUyvN%(t6S~jQNfhBc>z +FcO3sLa|s-b$<~2wiRHt$91SAE|BjUk5&U~9qvczPBEd^LFY{oa4$wW#ql{8N2lF_in$N-Fk9Q5sUyZ6e_i +FszD4qL`EJM{X?|q3jmQ`4dIhZu7>X^^EOoFViB2zC`b<9^^rsZ~pHQA+i)vI+4EM6@)FcHKR>fA29t +KPhCVDaXKfyJBqX>;j4_2!j<#hcd#7H^oXzd6?Fmp)Rz4S9d8{y60Qv3eTvKBQpC`>^^j$osH*8uC7(o`$@SsHe +TWFF&rHZVW8GyEQNmDwgY)9~Zxk<+_7;hGMzyV4k5^u3uhz=_b2@Z^H?n?uS$Su==XZz~ZaA1{PoCHR +(4(1O-3E|~+; +>|%6IGEoYM1h0(%~3^oc~-r7*TCY}S}czJ_(bHgZX5WkI@LI;cAP7N%68}fcq{dU*DJZh-^b1;t@%Kt7usouPAVDaXKfyJA{Q|!G +=T{|k20AAXsV95Ik1$%j~y8QHIT7g$65?pop8G)lraMk5a3XgzqR(K5jS%oLSpA+xjHSzx?TFh6d7j! +VCJ*%!+6bZSZV$i{~;;K+GD3>N(yQE^Vc1`@R-n=xhcymZytvygS=wR{Yje*6Rw+7}n&rSR<-W>IX4( +2xp>m}D7s4#Rezd1?_<_@qyfCnM^U}cL&0*D5(3P8bP(2N+u +7Vp>8_M7Y<%Tl2LA{}jKfpN3_yZM(GX4N1DdP{+9Lf*@oTUsAP<1Fngr4!@>btEM7rzawzFz1WDi0mZ +y4EvZT>Ww5#f7f*tQQyGZM`^uH_8vC%Rv31^M(9jpk*D*ABGA<=_*lz=wSY^zVYJX!}`XHs}D2w95KN +3+T%7H+3J4ScnT3+^o^$w(M8{oj%vtC0~2jn^^Ka(7o`PQubh(51)e7q=_|*#IDa5 +N4##4w_E3BswuVy`kcs1iG)YH%;#WSJcQSwZvc$7R7vH_B3Ld~P(nNaj7iKN0ZMdE486p0TrOpzFKWF +sVzR2rs8{Be{%I#~R1$XoGDrDclv!%D*xso(AzSo}8Rt#~FBKuVqo6_AohDh*Sl-W>8)L{e#(BK0)nt +%#)3GDYHP%M|g4RfZ`NqgGj_h<_Uei|pUU?D;|UbYWoeG~}&pOS3Xx+t~Rn;FbBi#zy}9YREuKWok|2ub#&IUL +(mMw4-r1C^iT=Y$zN#^>cpCO&4?kU-%78umbZsgFcB`jj1B<6&Ki*eQrv?^JLz6yKPj?M0p0@Fzc)Dj`@wBlY +>=0^G8E}vtLTxGo4zfe2O=W;EPPM5FILNE_x?|&i0Yly&3fNQze57E=Tg=|tR0fFITbs%NF?(xM86ak +FZ7KuA?5#~@fSA2?Wc`JB+WHIewDlL_Y3nb<(~!5CW2Q1d%`sCMpyrsV3{Z2-R0gOyW-0^J9Gj{P5Ko +)+o_g9;2B@dadQUwKd8;{QDg)FUGnD~qj+x2;HOFE*zj+#%$^bRTOl5$YW2Q1d&9S&%`MaByzq?)WyH +Ob+zZ;bSDr~Az8KB~#8kGU68ly)3UJ(~H^7o3ksFA-{#6_LtD~?*yTXEEq{>r0Pto&h+w_pcqqKt2sWY3S5gb&VS?*1+P<3YMHNivGnF-Jp)l_GeViT*)8cEmX8+c%mc3r-Khc=rc+SFf|;?jhj +Fxk~TDjQ#Cw(?32)D)wp-og4*WrVY-`YZ7ly3y1P{0>N?Ub{ia!sJOmbYCHU!UjC@FW4!f^r1Ty)rg_ +)T0f_x*_{eq)K6d}Ka$SSWG+9FI+@!LL=AO5WrfsVNT+V#&onv6!*c4GEaYMR6TPV$_%n066p??Sn7T +o{WI1(%_z9D6v?DpaVz~{cGP|F)*-9xRo3B)#-X}7K5@O&0%R1gQJU&6^rvnRf5D`QMxkuZ~Yfc^|zF!&Fbl&FzY=16)?;n$_ZCYt?ktfFw7t68w~%ig*C+xsv8U^tbd| +4H>jT|r+7kj!&D|f-C%M*`i7}&fVyF-o>!Qz(i&hjyUS@mEPldff#eN6^ODMZmez!;c~KTq(iAUQPQ8 +P;p}N&ysBiU>h6B(;ZCF0350%Xe$s49Jf$9d6E0FI{CAS!d%J4sO94gEB$-gkQMpW-GZSBPkvS&hF$$ +rIktsS4)2KM3Qb-d@VHZ=TNeFFyb9cKeX9NdJcVAw&>e_#npB8Uw%5lGY`r1u= +ORdzQStiT>jxK{!{R_stCM@!)w@oBB*f-!&f5e!V`F~{03;RzP^HTm>#&WzQ_4sK(oi47Ses#?q7`)gbJ +XvskH%pwYY}%l{R3n7S~WZufgV%#WiG28|*z1hWGUmm$>MOEY4R(64f@Lchm25?$l4+xotzbC71G2%%R +xli3|JdMw_)~Kl8!mYMfDz>R12T~34|qVHKbg^E@is<}dH#U>`%}WOyW)Rg%!}!NWz1_ZwGwKuqv9_a +^HTiZ81qv6PmFmf{taWYM^1yy6aVeMG3e#@KQZRz_dhe{<@cW%tK@s+W&;Zw8PJ87*C^QRUST_u%fll +Y5QwWTvw6v71Dgh%;i}7Qb+B>aTIB`9Jv_`t31s56stkq;Jk0hTJmR&A4TdW`%;w+hT3DlCvp0!?+{T +cAYXl4m@DiO))qwuHME%AZFngD%VPOMS?-F%;X~5`RqGoMP&lGtxh#UfKG-!IJ$eKW~V3(*xO4BzP7z +WLL6$VY(m_Wn!&}y-^LWyQ +g6McGHC_|@tf2utwHVRCF(WQRHm4hKvR9mZrhYcQg^q;)Gt!6p~e&#(o&{r49~-$p;s9+HIoeDH+^U~ +9g^RU1EU*L9mg@FEq-Ira!qVfT0`{_&MadOKeJ$#(D3WSXY(z0rp4iV#gk@z4neh_KdGsEF|8Bx=>V$6m_FClqiy-MwgLVlt!1)0AmAQ(gsD2Unsw|s;jzsp86+jB +wL8@be=B`un!GL56mySDl5(FNCfX!2CT{2+jl&W?IY@1RQ?SMT~suCWs +VM?uM2JDtn)#-q(Qs2{9wBH|SEZXl6H5TpneT_x?{gK9^{Zwn+0UM+KSYy$Cf122f@HM`O`5zP+Iq8w04aZ}kZk1IRL6a(O}bDiUY#g6>sp&EN&ys}@}Y +D6{1$)h=`ZX|_D2R;>fJ+bvHj0%HJswmhlU69ee8=i7(k#cPpZ|#019n+QV|LRcIYink?#c!dWw8 +6Xi$9~=zyJj%TsC*I)J5Ho>DE82e5R@lWOrbfTUZVRGiI#{eH`nikBI{)h$md?q$GEzvW5AuMD8uaCy5%VyW!S2>Jf#?l0c_s#l+FuiFS0zPM5Lh-@vGMSLnY!@QNshcz~w2ORnS^wc}iy$P=(7=i +p?Fc>u-5V(X|7%{4Gx@R&=OD{3S=wXmu=|*E*3zJ@0`_!#eTn?vx?*%z@6{t<3I=O^xHYD&At%!)yZ`s?5 +jB50UP{w^r4Q!LfBUaJy`pl(~7Abu&;0Dv`*U#VPBoL7s9?eZ7+mm6W`7mU0*^t**T-LIkxZZoYB=M +_U`SR(Yc;)+#ArTW9N)6S<$FtM<10tpijrn89hNj$=Nxhvm3f}?3~dP1e$d0oYC2h?Mj!G#5+F<-zyDTKIUu%y=3yfcDOQ8 +YAWB;n>67;|Lwf0v?Yrod6j@}pFk|kVE_hSrbdGYNfJ)uIa`}V9(PiT1Y?OC0k(C^~gvpPMY-Nm~@gurhv>&g(#F1~$Hr}Ca1T9nOZGq!nfyv{a=jMv$A&2T+u136x=`2CNlP;&nx8kF774)-3fv)#nu` +aE&JOZ;A!xW7u=Kk(;{5s;fz^8Njh!+B%&h8^V7x;A67;z`?=~O=AUf|Qoe8fwEPp9({uLM4w&_}!$_;gAi@kZ +d&Nqxi@0-w&`Bi;&pI)jgRC-CVUKH|N=UAvFC@ +T{$A#Wmu>v$m$|_YoJKwKZMuj<~S@)^x=i@Lbq`Yr5tgabf?h>AH5rh5fgtE87tl_TQQoL?bTjzcpRm +j<~S@)^vS4;==x0(-rQB3;SF0@=aNe*pfy4EM7~hLi0&~R0_+Fe+Tq7>V_u`c87;!P +a7pD~Hh>P*PI6Y2r#KrhtoE{xJ;$nO+PD#`e7vpd|jL_%|~3s*Tv~dXT(K(U7R +j7r-EMSNYHuEzu3O8b+UyOs7QGj}WPPiF2`+Mmqat+YRxxm#&}GI +O`m{$%EErTxjw-AenDnY)$tCo^{|?N4UzR@$G;+^w`fnYmkOe=>8o(*Dy;wIeR=Pv+N7+Mmp?owPrhU +pr}kGQW1x{$zgbcm+D|5_vCCp}Rzd?sCS5gzH7(e$SuBd0s)gQjFi_>C1Q{F2?V&&abW%<9Au-S67Ph +yR7r8D@FWV*7?(KbLiWb)|@(%R0ZhQpC??onKuk;z!XDBQE0Svd*tAu>x|Xh?~nguews +i&1IceT`A(`vd*in6mfG|=T%opyX(B_Drt9}S6wCTuJfv^q}_F1b(OTc&a1AHcGr2;RnqP{uewUwUFT +I-NxSR3>MCh>omX8Y?H=>$(G|xroOe8abHbx4=}|gUyGnYL&eX1w9;Gw2tE5NiOzmpvQ94t*T6&bu)U +K8ur8BjwIk)6$=}9_6yIOjZUIDq9a{{jB9F%L=+mPdR_Uc!-zDV4^NZrpXUH7OGWA}4T$+d|YV&F4`P +s~6iJ@7tUpC|5jd^}5^xZm>`u1s)5B{I{$Olj#6jb8LGQ(AgNV^;b{ofAvsq`P`1E0K}zOiAkzP5f%) +p}RWEm&iiDeUCj*OhR{ciZ79Z?&=Am#HNrt(>L%(G$xBXdeSeEDt10$qZl*A9bFNW$P;(;d|M(*+|{# +2i5zi<{3K+EJ9?#3Vpqr=Jx`a&5_ff#Q6fkDlb#Dp>3ORV~OZLst#J_!AFY8Ne47sBx&k`F$!iQ_pq(twiyX3R6LnQpQrc_Go5&1_wO_bOpaz +{@>CH9Ei(Nj=~JtET$!y_22d`GVXN^B7c53PBe5}QQsXcn!+CXqXuLo2aKzkQE5Cw7V4WoWeWUGjrLynOqiURRb2u3VJhTkdMMs07<`SJ%=dxR$#l{=u}|C0PkP%RiGb2Fvo# +nu9FCvHY`UAWOlpy!NGL=t{w`y!Iu@hznlNRf+kyn(>*Yn(-B9HDmo$#_J8gzes$3LX)eC#OEh8&Z^+ +`N|n$!tE2VA(F*$*P7NNvG4V@lu0B>x;{FBOmJzNe)Vpfn6>jyYVq^CwEH&^-vCcU6P-lGP>w;IJb;4 +5hod4cBQOVT{UisAv?m0Ex<}zN->HW=&SGvuNwPYEu^Gdgw@#kr>#OG&;&(HYpZ60YL-n>lT+z0kL0iccZEFp$m0Z!bu4P-v6>aNsw3S@Z +wk|kZ$rWvD4X>44(Y7vyTFDh{YYnfJT+z0!5X8Bl0oNK{E18{bt>Lwj+1b__UMrcMZC#MJlG)kTRaq; +Uoo&75ZY8s`t=EgKWOlZv+rdU$+F!4&TgmWjPkSwmxU~QD6^9X*_ScJHaYkss^>SDoc;1Flz~;yllQYYto-=oxTbfr=A71Fku6ainL!_1apT=^1ccw~IqP1FkD~aj +Iv)HA^Cn^$fV?1;n|Y0oO!{IM_4bdX*$j_6)dQ2#KRT1FqL#;%v`=YgR)X?ip~s&KIY923)W7#qpj2* +K2)ozGuKA7k;!-K87=H$8VONrHKM@c4)vg%ic=$ep|EbtyJ%~^(wQK>ixD>FAvWTB{N#00%;Q!_~Aic +`u;AV&UFcOu1i$ZU4l#PoEV?mdVIu*9s$?m(>XCdxApjl13v<;H3MU8z@)Adg1YB2Mofr21L|0yiCyWq(_q<~55-j@Ri38+*dX7Lg>k})I!v +=EX{=^EkPwYB6Y+J_e=ewHvMdI@l+ECx}742agF>?RFSExfGKMjfebl6pZ++QZ{uM+nse(&K6GUWaQB +Qo$6UY6L;pC$IgkJ~8t{U!CcaGkE0!;*@wz`}LvpJC#l^GR^r#Pj!b1r`P(asNQaKTGV-&$5F0Pq^;+ +{d4L+S;iTHEGxOaG9F)9*3hwI$Fc}44saGm> +eUUC1-`L4=vJ#jzJZ&}XcH_Lm>xthxPklc3jEia6R$)UBdqpGhNa1-#bs_x4Gl?ohSTx?)gkNPx#xMzAYWDCn}kF$NkeK +KHnw$$1V6w>N=hu61$i(pU77}kxx9Ygfq`q7U4RNcc1vZp6~L?JZC1t^~C*&@%KH?S7l;+%8dJenQ{L +qbM9{?Us+`3oL5Q-l{-6BkIDUli`=@VR>T3%1g=)Z0nY`lR>T1>1g=)Z0iO$8t%w8e1g=)Z0rvt|T0~ +X}E^_Od(jo$030!Fr0j~wFw1|K=0#{l@z!w5nT13EGfh#Q{;GMvg77_4X;7W@K_#p78MI5ahkKqK$@X +ZV9SxV&yxb!Tgas*s@mQpzaE%>e@CuZV0F%#GPO~G)TS1NVGS5`IcI5J*O+~4y`qDjnTO@c# +7?6Sz3hWlHSSd%vcAOFNIh;W^c=OW?%i=J1Ci^Q6Lk>I2fyAHy2{`@W9pO&?JKYF;%{kffUe{K`w-zF +-#HnDPRIR~8`s@~-Ognzbt7f04E`0wo!?)a{u?C@-4c7Nh|68W=BaDqMO=(9eNe};sA4 +hg30@W=vkf5LwbJA#w@-I4o`RF3`_PW21ln8?fn-vgZuiA*~T+_D3&H1eXRmdXGA|ekh?jpO!9$yaz60Nsz|6i#hjk?7_M{myqNR-d&Qhb`n=%Xj^>H+oO@o$_=Ni6GtRO4#2VN)yt48 +Q|GmC()V@BkKQmnC&(nAsS-x2$KA-z@xSsfY&RO`TrkTDVR#vp?JyO71Ty=i(Q<((sAhBfcy7^NWKr4=#VE_H%i0RA#`{el9N#%M7^M&*jB&nE_Y(xx6?qGv +I1Jm+x^-LcrC2u7G=itNmPFoUIvfwV%t2^ECsm_H%i0#%93Pey)Hw0$2OF0=^Kq+Rqj6R^Vzsmlvma2 +3)<{9PnP?YS&f32Z5_yS6-Y18gR9%$cxiJ1Fm)z`QAzUt6fC_m-bh?io7^DG~jAikr#)D23+kb^5Ou| +fPX@8X@9k=$cuwS1O5wwOZ%%`MP3{y8gR9%$crOI1Fm)zd2y_0z}2oIFOC)sxY||Z#o?j>SG$V5I9@d +1YFCj@?2hq$P3J$KsO0>>yTSRx^E}A?70-7ASF`=V-yiUa-6DSAD|0_2=8r_ZRVM0>svPL^SBd$%YPm +*KwY;9Ix}z)Mqm}D19DbKIiIEA{X(bn~Q;sQIr)+(=PG_>_u%cD>FA^ia$Z}dKE;6ouhwF*^`Ai?Kr| +ze}H(aNdU1XlVsTHnM&sk)=@?IqRI4%+#%A)l&5*G>1B3!2&$D-wx{i5ajRu(O<>=!LxnJf->vXlF1F +ZuC0^}{wX4sDCh!_yO;Mlenb(<7ZmFwP0nGo3~-P6*ROoklRu2GdiWMlenV(_@`RFwO(hbDc&oP6E?| +oklRu0MnD5Mlh!T>CsLBL|^0S*-j%EC;sW-P9qp+{psmWBN(Ur>G4h@80Y)x`A#DkC;RCEPa_!Zsb1I +)V6^A-h^G;Z_MD#aG=kBd(?gy{Fxqo^%F_r&d;SdpqdlkRJdI$q=id=9+H-o+(+Ea;PLFyD;1KOOJs@ +%flP5%uVDgB_5lo&DIfBVUB1bTJO5_M8kBJ(Q1d}I4jv&oNZGt}y7Unr8Q3bV!M+=hsxf +0$EoHb|%J~y=k?{V8D=E`oySH)d|mFP0w(>h$Id~}zI>hrZTFNXis3N73t8bq9ViQgmkwtsg|_+PDN! +hIRJPpxXgeL1;Lt!~171-VbHa=J|HeaC%jwG-~6HA0s?dK*;DY2i9$54ud~qpzL)jE|YnNMAeqdE%aK +`Z;`Dg|%$mfyq7o8aKdF(#AO>!FRULJriM6VZI?=&eRY#p@U#+U6PV}x;)lnzfORMUr6TPKXb<~N*(yBV@L|1859d +)9mw5pCe(N9`cN1bRUt*WC=bdpxpQ776+tLmr|J)~82)QJYtsygaK_h{nrXdO*F9(|*U$D?U9@pyEMC +LWJ=(Zu7?E1Gyb8buS2N0(^g@n{iEJRbd_iN~WkH1T+Jh9(}5w$Q}macDI0c$^wdJRZkJ6OYHa(Zu6% +a5V9FoE%L&9!EzLkH^{3#N%;zH1T+x9!)$R$43*7$NAC3<8gpA@pzmdO*|e)NE4688Pde#afmeWc$^| +lJRZkL6OYF^(!}F&kTmgl93)LV9w$i?kH=Bc#N(lx5RZpwLOdRd3GsNyCB);Ql@O1IP(nN&Dhcs;NF> +DLp^p%chd4q!9?A&uc*r8e><~GKvqRyC&VIB2KZaB0#;=V|Lc$2D2?--CT1gmTwMxPW%Ty9ZSeueC!h)295 +muojjIi`1VT5_Uz&swj+Z83gwv%-7~ybf5=J;%nuHOKmL_3@lch-*;b3VJMmSfROdM!< +PGSk&&Pgnx)j5eJ^f@Q7geK=CmeApxOdM!$PCOpH&56gOu{rU0bTua)kCx`d<8hWW@pv>fCmxTE=EUR +C&YXBWdYKcCM{_FT@#suNJRWVSh{vNR74dj9q#_=VZdAnM(Ta+AJo-=(k4FJ}MLZtur-;X+_Z0 +DXG@c?JkFHb1fk0Q>F)=|XSxqct6M?(=;=G))H^=Jm-sCcW2IBLV`vpHUsB5sKHq +=*~hB`M;DcteV~VUrkSycR_~5bs1055#Lr!~^lp67fL1utYo%Zz~ZG#H&ig1M!{`@xVn|pzXw2MF|5T5l(gJ|e->rnTNq9C}28r%h|UojC4@1W#x2_npPxcNTx&S^R +xx@%Np@-**;&-&y>9XYu!)#ou=pe~-NwB#b(Xzwa#mzO(rI&f@QTi@)zJ{=T>P``+U3dyBvCE&jf@`1 +{`C?|X~C?=AkmxA=SP#ULKvTl{@*@%O#O-}e@OKUnzu7Jolj{QY3@_ +k+dX57C~);|GhsA1wZUu=xAI;P2hc;P2hc;P2hc;P2hc;P2hc;P2hc;O`wj7a&|WsCzdvsCzdvsCzdv +sC)NFDrL`N5c6(k5c6(k5c4iGhin0FZ`a$RO{@-8ztd6yZSyvqzu-em?S@1TJ +aFU|~3-er6x<1&MecbP%QyWF7TU2f3vE;s0Smm74v%MCi-LH^V!+vNr)?{dw_A1%s{<7l|f| +sxt_5=L`bfIfFoV&LGg8Hwbj+4FcVHgFtuQAkdvR2z2KS0^NCoKzH6C(4993bmt8M-FbsRcMvQ|LiPr +M?jTqakM{EQ! +aL23IeRU?v`48ic(#e3^KBWf1n_*k$7Jl|k5x1DA=%R|a7(j#?%jUm1kGIAoc4d}R>!;&^4^@m2bbs? +I^MBpzR-->B-u0m#wgj~3;}ahhBw&Q&I{R2iaxI8m9zQf-I=;w)tnOSM7Wi_?@zEY${o?`ng;ceTOay +V~IIU2X99t~U642Pu@qQf=_}t~U64R~!7js}26%H3on08iT)gjlti$#^CQ=WAOK`G5CAe82r6!4F29V +27m7wgTHr;!QVTmuEgUTgTHr;!QZ>a;O|{y@b_+E@b_+E@b_+E@b_+E@b_+E@b_+E@b_+E@b_+E@b_+ +E@b_+E@b_+E@b?b-EAjY+!QZ=u!QZ=u!QZ=u!QZ>q;O|{)@b|7Y_nsw#vq=2TBJ +n$m#D`u=Jiasb-@DGD`8$i|?<|_Xw`l&}qWOD^=I(G7{zt3z<2cbSe61xV43?BISW?1ZNeP1`B@D*)em7Wz|6mdRgGKm5i6yZ# +ScLyz5&nZk_zwo*?`H<#?`H<#?`H<#?`H<#?`H<#?`H<#?`H<#?`H<#?`H<#?`H<#?`Os)e2+I*_3Yt +i2J7!<2J7!<2J7!<#wL898Pvbe4C>!!2KDbVgZlTGLH+y8*o5yhga7xLu?gR2#wL898JqBZX2=H~sx9 +&O%#aU!X2=IVGvouG8S;V84f(+5#wL898ybSo4GqEPhKAsCLqqVnp&|I(&=7oXXb3(xGz6a;8iI$wN< +2O{Gz6a;8iLOa4Z-JzhTscBL-2*6A^5`35PV^12)-~h1YZ~$f-ejW!54;x;0r@T@P(lv_`=W-JXBWV@ +r9uw_`=W-d|_w^zA!WdKQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z4KQ}Z454o0j +{M^tG{M^tG{M^tG{M^tGyfZWe?+gvWJ3~Y8&d?CNGc*M6w1#lBT0f4{{=(N9>V$WOI^mt6PIzai6W$r +>goheTV#yimgm=b^1>PANf_H|7;Ju+CcyDM3-WwW%_lAbxy`dp^Z)gbK8ybT5hKAt1p&@v0Xb9dL8iI +!!Ok&9!8iMzRhTy%SA$V_S2);Bl1Ya5&f-emX!Iy@H;7db8@TH+4_|ni2d}(M1zBDuhUm6;MFAWXBLk +%V#Um6;MFAWXBmxhMmOG88Om7yW{%FqyeWoQV#GBgBV85)AG3=P3ohKArPLqqVDp&|In&=7oOXb2u^F +!A`x&=7oOXb8SCGz4E68iKD44Z+ujhTv;ML-4hsA^6(R5PWTD2);Hn1Ya8(g0Bq?!Pka{;A=xe@X&0D +$Jd62;A=xe@U@{K_}b7Ad}C+`zA-ce-xwN#Zww8=L$m!S-IvfqwEe%Tw|PMMTL2!K>^=6G(O~yp>sZQG}`W->f0XB7>)N-*Y<$MaQs@Gdl}GZ->=oFmjSKKv5NNnI-YoWw0b{|6BonxM$ +h?LounDi=s91jb2I}QJ?Cq6ie^Bg=X|Zs&_y{L9=O`Y&^L2*AwUp#U>?hXl;r9UAbr=hSJr0XDNcWMJkx(1DqAKnP|(7)mfRLvNa}H$${ +HL$o(Tv^PVvH$${HL$o(Tv^PVvH$xPnFtb8$hG=hwXm5sSZ-(e#hUj40cQ8W~5-uAnXt*qZ2Qz>NGk^ +y(fCn>x2Qz>NGk_uG()kKvE(->zxhxnU=dxgco=bwEgrG};p@gDKf}w<@OM;=CSq3g4>XKk6q3V)gC? +V^TU?`#Ml3*wy?2=$8q3n`iC?V~VU?`#Ol3*wy?vh|Aq3#lQFQMQPcP}B~5_d15;SzT*A>tBuFQMWRc +P}C15_d15X11*<12gF?ZgB!~XnQ6kz3ehsNLbS}R5G^w^L~|0NM^**pah#?ZzSj)? ++zkHQ4F22<{@e`y+zkHQ4F22<{@e`y+zkHQ^qkxb{@kk0N@&L{HRNV$D9qGQn5m&KQ$t~Aq?m_bHnVFn$Ug&BlomXe?(vtWRf%z~jX4Gb}v1q0M%77UP+Suj9PX2AeKnFRwBWflyOlvy +x9Q)a;cQJDn;RAuJwP>z|qLpo;e4(*t^JH%t=?of}JyF)%^?hgH!&VqF?hXMM?tXMpa2yAfhVRAvOack +wG7BWA%XB8J%mCX6AO4rBRg7n5ltH=cvu#ug&1E&ET)i;IGZ#ug&1E&ET)i;IGZ#ug&1E&ES +XN%!0o*gTFR|zcz!vHtpM(!QYtG8FXis8X7Y-G-hgO%+%13)F4nZfEzP_8xg?lqhVkY3__kJ!64*m5) +49~Ccz-&X%Y-Vo+iN{GqlLnWs3Rcq#8ArlkV5i&7xj@HsB%GTOpP`0KCArpW78bNul +?GhrdI@>mY(K_mE+pdJftIoC!V6=@o+ctpFH0o^I07lEGvuy(y?V`@M4PZ2jI@>mY(JJa}+WjYOE1jSR>S0Bh;x8I$G`@%So#xv|~2*gE96{j>*_VI3{Bc-I$C$WMeY+P>sphLo_C156zg2Jt +Sk|oluO)2thDrBh*+Uw6I2~wMMA3MyR(&Xh@Gxl{gc(sra1HJgVo({fV&Ohh +n$}dJv>rw)ct+pRPS(|wwVmqD}H}Q&j1eB>G<@sN4grh|B<4`?x(#n!*!pyKk<8^72Q{7bq6#C?0r?* +2Q)_PeO1~AG=}VbRoVwM#_WAn+6OcS?R`~a1vEzOeO1~AG=}YcRoVwM#_fGop9M4q?tN9C1vEzPeO0^ +%G=}bdRlEl@#_oMpo(D7r?|oIC2Q)_S16A7vG=}d3RTuU%NJS4+EgR5i-v_FA4`{US168~SG}`xpD&7 +Mc?fXF0vH^|ueV~f>fJXa1P{n&dqkSJdP0(oH2j>YI?fc+af=2uP_7$}*2yis;zr9S*Xy6Bz2^tOj;3 +a}a1OMACf<^=XMjhwg&mbiI+XaFmfJt~mNMhj)A&G@Igd`T;5RzDULr7xb4IznzH-sb>-Vl;lctc2H; +SC{)g|{;U*qH$gA&G@3gd`S(5RzCBLP%mk2qB3DA%r9rgbiTKpa@_RM-Y-8 +yg<-s-v>V>XteKden!w}-`~E>9xEF7H!)O>R^rETw>1vr2TbCQ)kltx~Qo$X@6bT)S0xuE^O*d+FzG8btdhvWQl-F`|IMT&ZPZy`BP`o +{(5~=XVU&ko(QHaOxjP*=Gx-PQnT-g7*UJ2E?u>W;khSiVO=Q`iibDl42$Mae +3`20{iJ|EVe=liy#yh-0Kc)sjr{QfR6pZCa@4|O)`ku4wUT+}01KGd0_N2YwJuSZ^esAs(%S@ofwvwGyzhk8cpk +x?J&eBUFVKGfN~M>c(^b9Ikg`VD)k=sEw+{x*8fzrR7y=sDkz*vxq@>T@$22cHHdi0iW^y0Kn +u%CTyM*5@o0N7udF`k<-o|`eAn=zi7F`k<-o|`dVm@!_MFQkmweu8H0rxgM}G`MZ%_q8GZb +Cu5jIqyMoX4{oM5Md1A!ormxNuziV##YGSqB&rL5))G+t*l~u`kuf8(ZS +(O=gl^J&xS!W%sw~ylx)bPD#Tvz5gt}@qgl^Oe$8T*wP`&A+{WA{0mH!CytD>L>hGxjSp_G>ftYcuw1 +Gxlq91y`FHpf)o=ZDxSl%mB5y&Z^BkP@8$6HuFH8n0XsBDjPE@8pw>bGV+kzf0WTCGH<+N5LTj2Rr*cf<}+c7#ck`XK +3`;f}zo4=M0S=>lhk6)-yDEY{}5*u@yt3$JPv8(6PF*c}Px^ZX!;}7 +j!O@eJk6-%H@^Q7NC)^UfNi`7;VDu%`u6D>kul}KGF&t1FwxU|V29$2U7%~v6su^+s)9t?lm~Q_az;y +fX0H)i22Qc0KJAmo--vLaw{|;cf{dWM@FKZ}!J7hiG-9O||>z7Y_ +v3x>px(s(jUtXTv4*!uma@?VoKmn$-;Eyr +Ktyc&fqiJ(f?f43CiN97Gssdc$yVZWM0LPeGzjT$r(GmAfE4DDe(G%B~)n4-eM^{`usdl*sI0n}0D>f +`KvQ}r=Uk~_hwQwAAlu)a4>Rr+RM|ST(sMR(0Xt4KliU0_3wDVLV#iK=M?W1;Arpl=VZ)L{j9H$F-QHgzQR5{+I#O388y^Et0xud +7T{>_)n&!61Q_-{LqhPV(0p_ea2&_34ms+eP>8Ruyvs`Q9Q9DRDfltJDVH~W{tUmV5I3#fPkho`+_ZP +{Gk%kk5B}suev_A<^y-WJrcyrB)35QHD*1IUBtD70`#0oxRcG}TnF}F)uP!KVIKZ4I%RR4ka?g3ABEh +R2HZj-tANCk0_xDr>8$9RvhQnsY`u;NUJcsS5$o-GBJ92+V+2|p$Gk!?ybRQBs*N4NGm-YRLo$KK`|N +JUT+|PG>3{|3*t@v(&p-T8eRV6;3zgaOb4{^rckl!^Pft +~)eU;(o3fhU=UdEOAgb@Z~r51i8TmU8 +x0|sMxX}WS4VOad>=~{e*J>cnzc7$Q@r-?OG^7>w07~cs9a#aqsHe#M41S>^(8%M@ASXyD(*TMi?f$KwK3h#K +G0~rX1yn!)6zz8$?DJHoGw0nKHt#*>l9C&|_9C<3o{IJx8WlXfms^#RnF)s<=U +gb{{8Un2H~9<#baLKuR~N;OCrVHot~={~3YyH)IWNta|c!F^mKWfOM(uYNjh+%m#2=ug>q!=P8mJc?c +=tJldiie@FNt0dv$MS;~-5@TprvU-zb54)VLK{<6={A|_@aDtnHVG5F`mp+Rs*sK_eCbnSZoK@ +kygKF5M;N~JDJco@lEUg2Bz55}g%#r;@S4Kvv#E%gf5*cfKH3}X$uT3md6pOj?edpzuwlcD@Hr_*@yf +#La}vRLXJPd@sjKkP!s-iB%;K$ugLj^NUgOvcvHF6fHoUlS@a8jQD#gnQn{$M?!P^O|FUh##1%%}_Qh +?wMgoA5Ok#ZLAAROHI37IVM7Q*V6?AsBjza+7M_YjuXNXdyd_^Yqjcf)GGB3S^9@K?Vgbsak4uYN^13 +bevspCqG>cOjOlt;h&N4Sb96BX}EPeUgwfXor9B=Bo^c0Iar$j4%Y?Gi0j7ixKNHgyF!O5$iLg=ESQJ +{I46pY+Rzj*Js&>w}466hnFPQjJm;F66>=h`QbH*^-svU4(~~E*Xo&DP-z65s8x!kiNY=+I6YHl*UdB5U>+@tv!C~v`XGz +jW8~ybKVsP})KX~&4HZZXGb0j&TmHzqyVSdm{fBh_(&(KVN`8KHn&`p26#r_%=-y(AY+Uc*KCk}yr`s +*#S{y{_iDuFDHpJoU>laB*$LZ_qSIK;Xr;Te|?1{C$#KeUm+DKn)a_>BWV?F``53<<;#%;NOcV7xsG3qD*oC9l3Q>p!16ufX*d^P{ZlfL;beg +I>m+yJY=HF}#8+@S!1_)0*U;jwZ4q$k{sfrA2;?~~MnqXO2dpV$b)mu` +^g$8iDcn}qzpfdT7x$ZUZl0}ige!ag0z<7dQ?(cORfbFxfFfB*Hn#LuDYA6$ErkOYwS*YA;Gg}A@`kk +}0J{`x&qeL&z}zfVjGiGTe*aaM@@>-UNBGl(_7JEV|?(tq&A$Al?_*ne>CXYA`?bo$d5`16lQ34!+i> +yHS1f&&27+w9>{6n@C82BUwhsbkSTbN#WNrbYM6^=&;5i{_c@+jk>h<&RpNtGo|R9x&B1w +5ZO5M+Q&LCi^iGjk2QBJ`ev?wp=)W;Hgo-%E`CJU%;m>=xh1 +j>V=)?n7RHXd34b*^V%=TxQT|D*S^x;EE;C6f2G+x(JyoFaq@6b#`hj)Uk=gjah>2qv&`iu#F-(C@2T +C^BaEHDPv}BlbjsX&g7~`F*-t7I*(dYrrD>no5sx0e$yz5=;=#_g*E_8U*x%>!;$(baXj#3@6Es-<*qY))ih2asJ@?X}y +N4q0R@K%&Cy)_pXqc1Fr(?T_HAyJiqrEad*h`yKL5iJikYjL|+*7FpnZGBVKM +_dXyF3k`nn1I--N(BOB^kw^E!s2`Dmg$Td5O_DoA_}!JFzg;+yQ-+hkEdyvyNr-{{soc<0e+$&-9*GV3!gfja&` ++LF4JgYa3)Ro}zpC$D(6m=#$*HF|q=SUR?MSb%XDMz5F?{1L<3`KqO6j|XzP~SX7#vOwC<|$GzpcUZi +DN;xYxt)k@HRSdU{cG6#DYA%$8ozm()C)q5zws`a7NN#(o+j%li1C|e*bhgbpC^F|F@EzbS;0e$-#o+ +q8U}xs{qSh;%?0Aj5aTynTA`>R#&6COSB4nBA)AeBi18cMY+;09@CzgkgcyH=E!G;5+sS^P8fyH(jct +;GAjj`sihq7|MRE*>-Hu-jXSzrn9YX)+B5`yG{hLdqw1v=raFf~u-t+=lAw%guxbY<+79jQSzCb)3Qv +dD?WQhu?|KP?~DPi2a+F326+mfAb21Ve?nW> +KR)9<_cL$LF?bVs`d05TL0!XvPy*3zqvvtdT9Nd*Vv#UfxJ#iPe}c{FOmcTsekiR;t-JfH&@AA2dRJe +Me@TS^>5xF6%M5S%^M_fLh3)b$qWvye{+rfG8p_CnP{Q)@4iHe1Ze%6Yos)U*1vpS3r97i{)3xul4Tg +Q{)3y>$#e&?fAzJFEMF^xF3@|J2eG~x*4Yr0ZtpuF$Ct83c^%KN@*fi}Xh>J2 +?%H&EX9Z)&2df$+Y6Q%`ygg!kPKbP3jo^D1w>tMh9E<$eEMod6ps@B1HWg0F${zP}w8aYxr8$8g;5_{ +FFMw%M;nC9tj2b^}R&|28p*ko4amsXxs +K0w#$58`OfBy@enj47v`{dn&2BQA{m+Ys(o4(X6egjc||4a60@TM=>4?~7{=OyBdv@J)GXcJOo#Uq(X +-Jcb-kx-Er3)WVopB)|<{a^I;;mG}CRQ&aie>C^s|K5+k_t<}a?8l?ipLhg43Y6K2-+lCt|9JS%?C3x +9qyH?9{&RlxpYG^C{n3AxNB>zJ{bxOSjOk-do-3O?ST=dGZ1QN?`P}6B+~oP(G&Cm9=O)kRCeP<4&*vu3=O@qSC(q|6&*vx4= +O@qSr?ESEK0kRrKY2bsdA@S;eC6c%%E|MUljkcZ&sR>Kubd{A$@7(y=PM`AS52O;nmk`MdA_ln_?_Q< +?6Lpw*pL7Ihkx{+zAGL6f9i_gd+hgr|M&mv@BBYdO9KQH0000800Wn#Tv)XzI*0)P0A>OJ02=@R0B~t +=FJE?LZe(wAFKu&YaA9L>FGEjISxHVuWsyN|n?MkS@BS4}J|&Wa9iOT;ib`!)MUAjzoJ2XUVZfup?sj +)6;oo>JoZ;|EcHbt(?FUFlWx-qpXm9ECGO{cg`O4HrXW& +j?zB<-m}uPbs0XF_UKDX+_9fhTgFjmA1z;VKH|m(l$COSBkGk4}xyCZP8u9_&$bOQ6@1YyfM>KHIX=C +1K!jp7vZ^lIZbr@i3>LM6Tq5l~es*2o)ye_?$zqpO?#F7!oz%CdM_(_D$%Q57}my7rPrlo~}IVmb{0f +-#t4Cdm5pv0F~+_n5`OM98}{-X2C?@!Es>SEZ|KY2IVN)RP2M}Qy)I`^$$-{zZXbjN@JcD$cj0>rA1a +OqRDf1{IP#L;yFDW()^h13hWQq?DK7Q%=WpQz9Y?F@H5M|3y`!Wd+61=m_RT&Hc8b~TS4>zp*C+w-cr +dmml91ky=n-J`9n@iB3N=A`}jw_09Mha<&J|2)2IJ(C9~OIP)h>@6aWAK2mk|@q+BWpI56S?0031400 +18V003}la4%nWWo~3|axZOjXK-O-YcF44X>MtBUtcb8d7V>DkDD+Mz57>;$c046+iZJ6>Y-}W4^?fW- +Rz+!Ffe4jF*fx$o6Wzku_2porFL6{V2q#Nyf-t^!np~sdT^U#j~Q%ahvY=pGj@-bJPEvpbeVy_FXyZ%#;--;zb8w+sSsynP5l%@os8#q|$5TpZVpp55B7S +Pv-kk?8ODytqkf=;u^d9@Sk5Nk~xofw$tFaH536E$R~tYNMTy{@1|)5smTRj7`Jv2WyQd_dOZQ +?;lM%KleONQ99txJbBAA5K0OP)V1k);bbM1bjM*%$d9GMJ2LvB6P9j;y69!SQ^=VzqVX9caahr5>8G{ +XcfDVS%^{|7QL&#;O9KQH0000800Wn#Tsu3R)2#sj067Ez03iSX0B~t=FJE?LZe(wAFKu&YaA9L>FJ* +XRWpH$9Z*FrgaCwbW%TB{E5WMFrR^^gPr5}LA1relPC=!KhW#TolaO}#Dmi|3!I}cMpA_vFu%+8K?H? +3mM!HYhy_M`c1@!+M=^|V{wR6x&SvAAOnp-pUIEI896;7D^|nRLkE)JcU9lAP4<>nepmZgAJcT9r|Z#jz*DfYtJ8ek*fYyzB^_TUY)%(opdr2wrpc9joO>=Xr3JCBU7$JTAa7YdXiZtfjntNv*U)Nfc;)->G%8Ep%SZshkQlZ$jIP3J`rD!Fx`LLekY_TLesmFK`+ap?`%xQ$beOF&lO +9KQH0000800Wn#TqWQ~_jv{Y0A3aV02%-Q0B~t=FJE?LZe(wAFKu&YaA9L>FJ*XiE^v9JSZ#0HHW2>q +UvYD>K}sD}PJ(ncl43yG4js0j#geT+QOLAR$J%7l6{$2y*Zub0QIt$tvg2(+-YoLopL=*rwp__V!;ER +JvnB6k)n}!PGS$6#A(xQKJm;y-q)=d&1zYl&E>}74^?GT}l!8}x`s#kggY{C-x9|D`=%;eV$qMU-;kX +C*^!xQX6ns^1#f4VD?=)z7mkC&^n-xp{jBsbqh|KsLl0@*&NfM;F8USe>7`0X@J=q+D)R3u6D9uF5gK +AqQw6lwzf@O*Wx$vqeWD!(eE=#3hN*?HbxI-(M9l-QnbM=^B+S=$f5^c>foSmD1==bpGd6&xHSYCGe8 +vl(Fj?RMXvJjxk6)%D?+LpAYdRJI`3~RY+YSX-NtD_fuy_IUkg+g4kDpr;2_XQU)Ewfz1=S(l);$APL +7}UFhf4H4`%^h52*R7@I_El_l2T23BRk58oPy<%v;dUlN#`*99l +@GuNmw&}G;xTrDyMRkAYbgJr4NH0NV@DNXt0EiZ};OQLux1%^YG1rySKj_Sl#>XJm|QmZ6^bNJA=d#F +(yk^V;)_L;~umQeA0KB$chTnp#114A_Q1_d&fXAc~hQ#CpL1H0KqMbCJ}3brJ;*J^#}U6#u!FF?+l&@ +lfgH(|737?)Y7JrJS@?zB6Nm-BVLH3z-M%@IZu8ICL +WN~BQ{RbwHK7kTT*JIzhR#?H#Ce;(+-1vhNktxwMv4870ABJrD|2E1h#e0vrA823TGx$21;LchWwDu} +(7>)~Cqy4p6m--i_9?8Sia@ByE#wXkYH+Xzxz$E$&cF(x6u;rcPMUL)x|bQZ2>X}{4Dq>AXE2Np4o01 +ZTn6m4ggV7xjilNtf=>~9p&z6Ai5yp`siIodd0h^F*|p~R>ozGB*EXr&jKAuFNUJG6BLEU+o5qaXN?Z +P(uW7h0_4yaq*{?nWeA)E$Yv>)F{8Pgq60uqMK3*(1QXc{r_@@$yL*G}tjp}G~i$gY`NrymCsih_{t| +W<}%p}>Ur9Ga!w4YZ#MJ|E1Ghgp=3$UT~HOm$ECx%^NV|0fmU}cXYz`eXaHEhztN!U>z!mo|f?5ec8r +WZ^t+JLa)v={_#76z?|L#yrwMVLt|4;usPGcB0zvE!F$08!Q&CSy> +yk+;fWHaMUBSMoLT2t(XS1>XI%i(Y>Z>9zmH$FOgtL&(83vkvA-eGA~x!@=v?T(6Vgqm}KsUuvS_!xE +QzzoAtWjyGA^D~~))9^$5(cACyL)@(K+_Un%Z-vIN(~}M(?>ddF4OqeNAij&M=lHdKcDQAwUc7+glWi +UjkH*_H40dGY%_rlrqgC-o7~ESmwOLo(fFni1mLfOPL0WL8>(U<|4dCESff21FJns_!XoO~ +oxv^+?od-+GMf;PbZxJWVrU3#6vmjNHE6)zMqF2TZ}7215m}-d}b06$IK#UfAk|s?VGt+&=JVr~-&VL +p%m}(v%(J_0Ct~=y|4zVNd|D5NZp&H;Mf0j0FDj&HzsoeR42fW7}dqu3T#Y=!u7S^!9-l(w-#saB*~S +K=4r#)(Ja4YN;}Jwg%=->sMZdo^{}iXJ_CN|D_ +K^dmtv8{>p&Snuv(dKX9B?9TB&6LoRghl|lXN9=2Cf*o>=n4t|@6aWAK2mk|@q+BE%!DTiZ004%50018V003}la4%nWWo~3|axZOjXK-O-YcFPDY;0m-V{0 +yOdF4I*bK6F)zx%J)s?%2~kyXh~Q^!-~#*{o$!M^dqUo&N6+zFRYe=Bc3ErjxOj}-Cq)S@Mrk(7Tb=za1|Py2 +MN}S1tXXnDPs=L0Nwdm_>W!D_d7S4HM+Pwhd+n!PG60V&)JY&7R!VKOy+S +}@`|TtoD%#@lNmIVW@!~g?J}9qx~v?ITasA$0rpD!4So<_(guy0RJG?x)-F4p#yY)tu}HEhz*%6)yi7 +K0tg~e?bYG-ZBDwK7Ny{`Vt2mngOqbmycX{#nK27dBfkvUFvRCC}Y_08*>ES}KxG3Vs8dMyO!)}d4ER +L>|>U}(4a;6;QMN%z`%tk|hQ7l@Pq)};ZsnF?JqxQgHDuwzW5vG#1%k-a#L5LvYmtVKG__*mM50hkp< +4tSrayCnfljVHgWycRy5yS9_yX+({?&9jWDDtAq&X(2LjK9CAV1&|Zg|U*Tp!((GBIz<5eIWn4#n#sG +PtnESPTvCEef)lO_6GQQcXSCa2KeIq_+S(roSz^39Q^=aiNhUL@cQ7be!aW3b@}t#*LYs!R0X +_rB{T2P|_n*BQ*4Ie()nzria7RH}LR`KOFyrWPH1|H99^yc=zfO+B|x9esLVVI(>agMS}rIjz;6;CYj +tu6|fh9O-d(KJ0JhnWflB`cf*SKu9jfZhV;Ma1yDvTYF8alN?z`D4*>u+0D*@sf3W#*fJzbuN*ICpiz +DogXiU9HP`o}4A>c%hCn}S);fo#&%R5vY_5}#gXf;mDg#9-vIQ4hCHHotOg5x*dm*BZC+|76-_PoCV~$Hld@1Zec}?>mk>&ICT*%oVS7)#G}9j--|B>Pji>)fKzHNiz0? +13qDs93~d90xUrgKE``?WzCvb8w8wYlN@KLDsieABO_D~B?ML>oyzIVsjdf5Jjj;v!^fzJqF +5vC&RJH$b^lYEC2VLgW1Dh+%Tc;}_zXix0aC%<;&SnNPSide%VIE>x_A$YcL{m8`~{SM +OW4EZ2eS29OTRpXmwWhfYP>uOGOWu-noa%kSTmhPCbi5ZX$G#anCjy>_Azm~o5lomG^1xFftN74UBCGhwt4%Yt1{itu9e` +sG15EC^_{6Kvi~oS3#hq(u%hWV;Q58virwt~IQ*JL0it8oDBj8ih^Zp_(;yX42(-O_oTVp~#fmhr3N= +{NY@q0vg)dSSicGkIq2^WGKVZQNm3cmUxnWVE6CqHFt5xxX3u}ERc_$S(OFciWotY8+L0!}iefKp5@% +Q7C%lb%H*_Cgms52jSr(~#senPg)46riPu?^lxnKn7~VD_BJZIDG&P9`_`lVprd +%)eU=hd9uC7l1#jlBzFAHsia4&Nj!qtz5u#!@_SuOP9FBO(2(iA4mn8W*|y;ODc#@cVyV{xNTtZtO6M2YAMA6`ZTUKx?T{b<*cMtj^D~W>x3v?#A#7}Cc1Hi;i?LVYn#GUMy-7+4zRnH +SqiG3LVK58atwzIi|nn+VXYBzyYIxJE{i%OSEXDF625t=1a7_iDH7x=lxA +OxlxFeSDj|uFXy8c8&s~cF;X3~rApbk)Vtq6MRS% +PI+V)((zd|6BalMPAtYhZrr8Pz>R^O%vra +ah07pF4?{@afTvWI%Lyg#s3fa87s$!7n%urnlM(?5$`fhMJ*9K8%eI{Cv4Df=ZmEDQK7_ +#-zh*bIlQ(JOpmoTEOrlx{7R(mnnCsfaYaUfDZ*8CdK9fd{Igp4;l@3*_9)X(VGaoV|34w0%gzzfmHV +i0AhH>o%IUs$wSrdbPZ%!EXWpis|6OQgz#h9V$%4{AG>6r6XEksAbyH(jj-TLcFL#Wu5b{ipeL-H=Zi +%;e}rlGG6$Un>6f@AdoPTZu^YtV${}i!gJd8Uy31*mq>Hu4`35#_lLTVd0$p(E4h(6jsYislPYR2$lV +yR1^DZwyC}e7FmW@T+c6AdY_4~9nLUJn;1C^p11g)lx4!+JnZICdCu=&=r(FVLW_%YCdA*_fdR0`~Cz +U{Nf`T7b}n3e$zGodWa5JRgrq`;3;i2GI$IbbwDF!2}`j17lud*EYH#V$@4kFa=kcvSH!Jjz1WVKM+# +;Sx5r4wEYO&+RyS1%mgYdgwbx(hE3(I>FPs ++7F;?>vv!c6E*m@-lcaB?_6rwUI4}q&zPh8T-Dlqqjg>Qa*mXDIJsE +3oDdT>xx9iDLgBdM2Fv^<&81>zOF?=O}GM>V4+H=y-`khlpdOH9rzXsITHVWb?q~`XZ=T8ARcSx(}0I +WS|#Zv&z9*^S5S2+l=qI@^C)+5Gb^JSU7cc`<3AqUM$8A!ko>nf6?7@8+Hp-UH$M{1ys +%QC?XHq)n7g(68KoXcULvs6BjR-MCjz+X)Vgh7;>H;o)dX}5Jk?~MoxXYd>fq=&Iv9=E(;+ +z1Ntu0(KH)qCO?afWEbvV$Bhdz3*57FJC>WFUIDXzimL@YHqIARTn9pSSH~ravOW|Wgi|!@W2TMHeM2qVAYvHjFLgBQ`G8<$-X|e4ooBkQ6EcC(s0EJ;^!7%9}MI!~nzB}&V6wx>hgn8So2q3xkC5d +yMf`|@5FeGkL*sjXe;{WB`>XD|5b94j$ffMG;FfiTY!m5>xtO_$yVfh3;Dm;hXANZi5Hb`M +hlZj7e(aH>#e9D7qo>-|*!6a!?G82;0cNe=vp;CtCYhFISls^IL-$9=S-a-!n;tke=5Td_9#D=)#F>66s@+21k +-qREj!iurEk*_K2MabX8|=M+6r3hv4Rs@fxH|M`B_7OL|s#X#H-Cs1ZG#8UHalPcj>F{hj!Y=0)J%*+ +)Ey568I}y;G(W6aPexjz+d?SKQIJ7+N}}zzhd|ZVn5daGG*~`Lr6$&WLlrm-bbpc3P8+t-|w04apNbX +B?$S!isE-3_>}`21_IF!?xK~##pXN#zc2-S`0qCF?X27R1l<1{%=@3k1H^L=W|xjWbC-Ui9@|{t|5~3 +D4}+LuJ^4=+>%YX$bw?-1Z6wj**}B^-zt0#Cf%ie?Up=(gS8VJp?18|$!f+b#vpCep*Y}c#WU{Q1p?L +<_4ye0^>D8+vBL23Q2m~^8q(euDz5FIrh%d}oY7N=8jvp4u1aqKCCtL2K3^AUqph}-#ZlnpoHlhf+bQ +L{cvdgp4nN0q^PjC#~rCAL0;g&!lk3#;%%#+0x4t$g|zaAX+V@rX +=Lu;E*mp8VuMIzZUJeUpvb@8K&;g|uRzhP!}FP4aSb*AiMkuWAw(;=H~+fn1GT%Lnog&Ry}E7)6Ay;p +;MrG9I-5{Ro6I^hx3uY8nar!WV)^Y~Ldt|qD{@sr2AU3jCd;P6Q6EpG{|(B6%$6UaHtRzM6ii8OgKck +tN_DtbwH>6fLHW8K1BPOfup?909{P2hI!^KLe+2t7THTjCg{Yp+U?nA9Cl?7-n=VSg6eJQew2!Gta`8 +G$1M%S*+^S!`u;Ww+c-yMAz`ZJhQe!b40J~VNfes;$$FfJ`IBQ$kR2Ica^$QgKx|#S~&0 +MXMqAgc1!=}jC>@!+iHTInmA#J+K_fw7}hh1Is-xG58ct-sw&)%bngCL^dHynVAj<=yzX(pcWoCl|omCFTQCuW?q2pmTL8c(!Lh}gj00~oD< +&viXdBDxd7x)Ou&5{BnkQyfC#-UK299Xxt85B-W1FRz(+2~tcz4K)69e3aQa{HT2r;}Ii%tJPHM5*~= +fgN1abK*_FXVz~0Ixv(z~kw>^edNVr4M<;Nv#65Ud`2HGT6kfVMga{O+lX(&sG9NH3Hr&-hN!TJA%Z^ +I%(u(PF0=_W3lE>~*71&O%PvUcK)i|wq-z6C;MTySuo|bjsE`XZ*J%po=HI1tVq*!us-v<@5`xL^zvB +-{XFnDr#C_|dOrCiFPr0SUna$Mjiwf#ihyXqW0HtmyBWLgIoozw&Oed +D=fDNN(F=M0*S@~r~(=(>%iU{xGwGP!p^74rb9z6a1rK?scU(ScM4V8zv +aen`2@#sS@ucxwio6ME#Yqf_tKoRD;7I@uW%Gval3P@xxOk3ExsD+G1z?Y8{oh80zI8cD>{06_}rWF( +3P>BqV4{}j@j5pwKQ&O3HeYB4JqsN=@ +OLhSll7#~uakzK)4MSx|KJkYZJ-4G0c+wzC&8Z0S8h?5$pfO2zx*#h&Ma#s-kKi_rqe7?C=L#QXAWN6 +y_mVs;l2ici(l}TFX;w8+Wu;^~G<nGjlLACC +Gc#$Ox9T-Rp)GbsxNQDH~O3BEqkjLo<~J*YEdYa^O+M28_nj$!bBQz2v;>`EFm%rFiTI>Qq-jQpq>YD +|?!q2JiRPyIfbz>f9t>#8=qqhk2+51}C{?(wbxTzgmzKd*!puus9t59P4e?|9ZY>eFWd&8Hp8R}Fieb +;!PLMD}bmWX~Is?QMqayGCS#=bK^MtH;*p;;$ZH!nyyh%U%V>solnhw<28Yy}DNFM#$O@?29nwbpk0I +FY8qekArYVlVN1^n!u*6iZLTt`-_1&Va;qXjS*Y?CH=K)E;?+xDgJBmM|VxHSW_S#aF>!YwAzwmGVA< +jRoWe&6t_`l9S$8|gAVm`RvmfeNl!0|*ZafbIGLUPq4FMr{o;7U{_LP!VQ+=!Bc1oP9rq6>aa|#=m34 +i@e+Wlk_4+$t`J(s(cU=m(X+aCeEvLKPHO+cl=H)U*9<}~uAN+V}1olX9vj#%2{sJ+k6~VxpV3x4C^s +MOj7b623p#<&SAkkC5nbmNLJhWIX(0SYS&Jg56qVL{nePFb5Kw05W$CsCWVc$;D;JLd>8xlpG@%^)K@ +1%cxQr->Re?rbN8;JsO&Np2yME)<$)wU3F%k$Ns{^GE=pCWTrPV)}R??|n`oAA +epUpR5w{2!B#%wTw-dE)z~#cjdl(z2E0g_!wW_cG-IjF$sOGH+|b2QW}u&Ya%|)o3RMoq(6hzMl7H>2 +d?56iSkz32xVccZH9vjETb1)zo}X+U0Xd5nz4QeW}%sfF6QttSW{QeV{eJu=}u!=JKUXl6_9_!5Np^e +ux0Uq!&Iz}J=>)7Hr;RjcGEuGbaVIl=3RN1X0=_ZZ-BIK*E|>Lx=tdUNU<$35tDnJ;^%LTJ2pcc8R3F +znkVRnn#LqBr{$hrPoOkD{yT$4;-~&`ES*J1DMURJchI%40u@Cbkj#tgr9=Bb`OKr$YzX>4^n=zxB`| +)inCKIm5RJVZ7Pg?gv-N*aO9KQH0000800Wn#T;J}}yng@y0L1_R0384T0B~t=FJE?LZe(wAFK}UFYh +h<;Zf7q{Nkc_WQ$=k~%L>9U5WMFr=G;U7q1J+eh){nZu^Y0GW+A)P-#5MJrMG!8Gta~dm1rMd2@S7)A +^5lF>_aAOWuXd71f#ktB%&j3ymmX@jm$49O6sDtG`Qe)9jE&|^}}NrFB7Exl+%3fF-oz@VKbJZFlj9Z +C*09=5KG;z>3_F(Ur0001RX>c!Jc4cm4Z*nhiVPk7yXK8L +{FHA{8MNU&iEEZqKSipbNSA94)jWV>1WZ)a<9Y(U8>HhS1-KzFJ+xJo%nYCwh+I`Zj|;YzJ2@lyJr{eho +S%R&6~sFFqgE=+}PclhPQHWUg5&~+x71ou~^-RcXz9s<^A$*wGr>{*5YAvTZr}T$MxOK!#jLj&|5dl& +HZ}$^8-F10pHBUjjDC02T;zxAqoQJSveRiZXlj7}B8s@|GvEb(#S +Md7=Zc7xU15uXd`M1@R?4am1<-0j5=!qo6V!+WM2Th$GxdKr7BSZVsB)w}&5%%M|OfJ(4 +X4@V)#VQ;Md5AEmWTv{>gS_XTeLTgzotFLJUTf5}c0jc`5uSvVaw>?Bq_N^Kf4`mV2*QAr5;*#|Q7zzLI3;mN{sQCXjNaK +@)P1+v^@B)w%|2_R5wh`s(|)f4QdZ448)v9|Vnq8^G%518|d7E=UBCTh)OPN)4`@NYC_4F8{-fGjRoL +@i#lW&bIt;f4iy2tTkRYLJjEF&0lDQY)HbkN2`LEa)t*LLZ&j_Vh2`|unk@b +qw`fhJ;b@YwDmYkoWiyf~APGfh2GQtND;@-Dv6W;Fd;Z@Nu +{OH-y5u>asiXGjPY)P=3_bwD8ArFFVjWBnU)B=kQG#0*anA{$nkqVDpf;VtPO?6ZbpBYatN=(JrEcW53 +HhJlQh{iS0a!{ON;2X?KsPW0yd2?;Ed?)YGOHX0tSw}rpsg2i1qV=1vh87KSP0M#Va^Nj%|+iU*!c;P +sWFG^WQ7}L^&?pEQ3*7No1I1g?s3@${`6iF+aM^ul@6WPQ7Trr2Sz_c4`UT>Mef2}IP7(~&%gkjH9!r +3%(UuJlPfWb!8ATkgaQj28$N*u@8&$4yfCbC%0Z-%^(Aa(8cGUSrgyr7UCw=ej>iF~>Ph++;?#WJdKk +^#cO>3d4XawIV}7b$T8b333mv0XRy9Y+gYGjKZVSU?&d!YBMX9y?^<7b#C}K*Y!PWK*#RWwr|92`Hl?Bn +PGQeNqxS_2&rj)8MwH0ef?~M#7t=9|O_1bMXt(D%|#6JbqwSVl#4a^|5-fnaR>DM`Z<7Qe*}a2qB;|u +{h!dKn~%Q!0>uCfMr7X0rWN1K_l1bO!t~R@8HDv@inj>yTiuG9Az^cU)NT_Ck@2z(Ub_}XVu*If4E`j +wqOP1SdVdhhI9$e`*90v!HN*5eIp^z;}g)CORb|Po>=64TTb&M786-M+wnp*iuvqyJ+sl8v%e9^if4g183q2Rl@SgU+8G^edwc}&Q5ib8;cI&hl +_9=*Ww$R$V{VY3lHj^YRz4gBB4iac$bxr9H1WJPL)$RH`STBX>_wP~Oy;`$!2>&H-MujDnKbc9ITp}w +dd_Z#3=4M#-K%BgSc4)N#gppxptX(#a$mC>;0Hrta2H;GDPABFup4|Obt5VQ}v!#LsY(Pi5s#Kn+Cnb +^AT$QX*{Om{A`ovj)m!HU3}vlgDZ1JLO7aM{Lj!xRt&W>~6@g^%t6VX;!kn~ID~P>2pG-Tc{j1aU#1Q +%J?1#M~G?gA7uxGDK*h%HT24oSboXNQH|}a$c&ZMysw7w4(og +5eo4w!AV#q1k3mftbWFBR7Metrdr^mfq)K>odp7I^%@U(jK1k`J_ijm5(_1v3BBKQ7l!zCZsyG2L>{=6jzd1^AyV^-3}vd0&n-f%<774;%Z +98f{M}-|lSgDGC8+K#^fj4Ku=O1{B0m%LQ#jtJD%DkE8))k!Vgj&m{}UzsaVh(AZJGLGalvepU9y};npXz#+65sS(0icEb$n?#(H*im6$&6csj^os<+Lj&;Ltn=4lqGnFS1sVCq_h+eco%G6OD(w>MN@wuY +NBOxqo`cUVS9H8(;zaH>*#5rk=wxx{b8?1BfRV8z%H?VzWlz(4v7p^i*FsWO9j0^Vp4t9H`zz0zs#;q +LWg6_a4SklR*Q20%Y*VCvCSQ&Un2?zA9h)oAhYR~4gA)A8Vd^NaG0@zZ2pNkvqsCB|i+gf}A{t0$D +#w3WUZjao+Qs<2=R)PWYA~i2*3RWbC`P_F&)hpB$hX$uDYW_BkFDK5u#<>1|(^?I?oU*2xS-8#RPzk4qht3Sj)m#Z6~JDP8RpKvA*Ea7rsLAmk>9bm-4jHIp9Qi+yK|w5 +wbf|>ewbTsQY_Xn#SfAt>?`w$KF5Y@Hv769t^;bjg +}y#F&wv=*~Mc!_|CZaP{Jyc+d)u-53tooiWuxH~H-FGZbah_Y$Xs$O%SNyq3BdEmtGi)MJ;(4Hdx)-v +q&101V#T9=x$~5I7izNYGCQab89orpxM4({SPUoX +ZQ4*r3Nl_LCekP1Pldc(`G2uDi$u@PgO{HpRS9k?5229z_+U#tgDy42KVZ}P)h>@6aWAK2mk|@q+E|s3rD*G002M*00 +1EX003}la4%nWWo~3|axZXUV{2h&X>MmPOi4pUPE$oLLQ_PYQcrK2FciQ0Q#|d|N+{EI+)j>hf+d2PZ +Ib3lfi#u~uE4bFx8JjqsOeT|(l{g!`@P@42XoJFqkTGhxNGhqbwk~^p#6L}c&LXK?9kd5+s<_ljT`)E +A7}5zX+db;LmZr7?51vf>DmP$s%!0Z?y_!(2=mk-3QTSun=YO_+Myob;NZs7l)$U?M{r~Oce5ua*V=< +^>Hv^HJ$CTijVJ4U*TVDYPz)CSSbO~G5Tx(js~w(#yw--HDGr@F|AP>~=i354%9_9(u6i2RV(&b8bm4 +2%89?ht_Y$tI(G1Sprb{9kKK^JY=n*jB+|my1ADWQ0>1%uH#>H97_rJ9u=S?72E$FnJQQs$Wt}-sF{! +0#=onE0@*UYDG@bz_TUvVK08%8+Qz8h`bPw(N!jRoXeBWTcMLW7nov!jXw)}@kLk@6IldoURXCd<7N> +&!qV^OP$Mv`F!^FiI>dBk|x1)j0VjTo799fj^XrYYkF?*p#_IFhp0hFoNp@M8WbZ6~#IM1b{*s$i+q& +Y%?;6q?a-BJ_d3H8?IP}uXHJLVfInTN|+*Wt&ogDNtF?-%Bg~~Ql-=!&=yIBW;qobo-U9b8G&zkVL)d +z&p&k;w14op2`@=XH*}5O?*0)8?u1 +o}Z-QpbL03y{gsBXNwUlWHnrN=Jf^q#5a;allmF5Yg)X+$b5EvC+W4)}jh@pwXaHXo!2wB{t^Bu;b2% +|Wf#&l&7tztq_?E`4YAcmj7F5`HvLZC4z8Y0k`7&A9*1o<#PbK?;TzRty(7mNorGN9~)=J&WOp+kc>) +9xs8R?%|U5vn4wy!m32xJeKzpy^fw*_USAy%v}6Bu2(EILEypzX4E70|XQR000O81DB*+651&mFaZDn +?g0P*ApigXaA|NaUv_0~WN&gWaA9L>VP|P>XD?r0X>MtBUtcb8c}-DEOT;h`zV}xQ-Ro|<7V#hm>h2z +dMTCmil5M8#V48$vvQWhTZZ=ub(~vLUV;(DbpUA^N3L#b*gaSo9YL60vmgs;d1V%S|FhhDgS<%OG%(O +Lppz~yOv4W=Bu0d#-XwU8bms3HDn84%9?(o_ku7NsX&KS<#u>*(Jcw*z0=rz +G(!*TDmnv6)XXk{-*5`!LVKE%|3>9714H#DqSXy)8T$4OxT!A_h#p +YyO;(%e-|LPdzaE`xicg_6*67zR$;AT8-kX}7)6?C2EYfGHj4I8)Ziqd@-c_^Fh%`JTW_4ZvBKTt~p1QY-O00;mBm!w>|jnIm(1ONbw3;+Nj0001RX>c! +Jc4cm4Z*nhiVPk7yXK8L{FJEPBW@c$@WiD`etybG|+cpq==T{)i3)#rDb&2X~QcrWS$C~;Ydpeye8VV +v85+)?b0lBSjgJOPqZsXzvfbHC(@*dP#L@kKY9`5byv|q3IlfxIibxQ=U-iaG^mm8UfK6V*JDN5+fkjB3U645D7FUTRU8wr+ES?; +Hwz<82BaHfE=JT+lfmyg7`Pg8)kBV5!r@adFEIlUYi_ +kQKU+5Qb*GOlsVU$h3t~j#Iq@QKaj6rq(m1WfAETN3U`&7Hf?0wc|MDi6QT?_(l^Rdw5m+ +OBS(X+;rOHZ_sm+sSm;yyuk1edd*pZ0E$71l&U-btPgK)gUKeV<@w&A0n%5UaM% +Cs$awbb(|eiX!{Eq1{CzyMT!z)R_cF52-Q#|J_a@RMusL<}{~2-#3Il6TnPjXjpJ3x)CowRL6c=2Fp{ +Fpi9l}O<%9Hs@gPQu};DlUdqFTocV-$o8=`d&WQp?rW!VJ{5&}dUy8wq-Dclg2eH&*ZvLB0-k048{ZD +gsR$Nx6c0sNF)?EI_&23@KOQj7N6Qu1~CLV1ts<1&@%4-H>OkC!@i1ON6t^<`o*bUmkvCxSaa~8qDS8 +tn?j`NBjRuKH(OdXBE+$MqICuL%I53O2}(+mdO;;oZ+^y7%U`Bt1KkmoNEC}`9Tv1M3luQ7uG;;Es#- +Zb&Qy9WMhR2j5+39iL^gduL*=K)ua84f@k)5%U(fb6}Qix#}B9~5u*;32_54i#@CqJ(82$VF$KDVYBg +_7xm4eqAeLgMl2hJ%KyW;g$A-NbUbjQK{)l+)yYut08RzHcZil$<#?`QRqyk4E(?d@%i->n@L9@@RF@P>mI`1R`iYIr9<#B1?;ns^QIcA66Or_b~FPgtG)Y +!0`WGt6oUQMM5LJH%v@G2UZ?#FI~OfvvzF8=Rhew*kDV1pB4mW)gNxNy +=x?C0M9BbOv>Dl^zvq{)I|Nomr6+T;F*0qWYW(!!OYiygMrBii8Q|*w0?S{I*%hLq!Qymfn!F0<+0t! +N`xfTL7`_-!zDi)NG<@bmtkvUgm;rmt3_yeP!gVd`H4SR3HrjEasjHQ4OhVO3B@C(eIRO9KQH0000800Wn#To@hN8dD7b09Pdd03!eZ0B~t=FJE? +LZe(wAFK}UFYhh<;Zf7rFZDDSCY-w(FcrI{x-CAjL8#faD&R>C|s}eFx4G$f*RZ$W}mK@d6lFD+DO=( +pla0rr!=3oXGOI)x2`@RM+Cr3VZzbz{z&jB?0?$>!eU8MT%{tvQk&x815aZaFI8tjjOfi8H#rlpMJ!UTlXSq&b$)fhBQbxMt +wS+j*W#~C#DVD8-JUPP#X^Q6CvbXx5^|*mxOl}i$G_9FGf6v7-|%21W9&RV^N-)Y@sEE#e{+2OcXq@^ +k7s8i^Q*k`e>;7 +0PlHu?yIu#4n^5GpYWL;nF~13uBwp6{rcwp(&F#ldr}K>6CCa +!`Dv8;y_j15g!jzW5JsILb>J__FI=ureu9#j4yKRxA>~0Ohca8$y#9rs8(jh!|8S$7eMcSE*1@qTDRf +4S4qrHbXDDAVIA4*H#I190Vvx_8#p~}Cvhekx5ZtMm941dX5#D?Ag^3S?`Vsufiq2ES|aGqPgx9FRf; +xQ0w&3c#Dr)f&A^$wD`%inmI+3S8u$x_T7oMo-aCu>M8~)d2cE(703-S>(w;6U{V=>GU}+l;V~rf0>0*f)Ejnml!u{rvO8&6i2z +RK3|UHRQpIgU@)z|A#HkcV +8TA>tV&;3m>kC0F@BP=QG*V#(+^0Q-?)9zrn-XhK}R{i877eKM%W1#%@PbFHZ+#zaT>P_#zSw!&wS$6 +^}PP+D~*ENuE+;{>mKDH<|c+!Insi0Tb^L*1?L$OQD$5ibecSY{657(mG%dg2e*aKqu@zP9E693h9D! +0PLngD3Wox9Q9L~l#N{`on#UzidK`#Lu3{fN~I}{@G#7GDGzkcKn3&%Y?&dKl*g>(awV{(eolm^8rcf +AQYwp3Vo|$g7=jQ|*#5|ft+5Z@%u#b`-~>-MAY+1np4u(!J*8 +l;<4=#T-}$en=RcqLZ_Y0+-yWK6H!{`(s94{ks#cJR2dCp%sA)|venTwfJyU2n_#@7r5*hpT&hMUzTLI+cp1Qr80u31WrN`iP+*RGEEyzmMQv+` +t68&HDb>yZz%l#$|RJ^*$j4Bz)|318a~DXD%Z+;HJy3@QQyKKA-p9di-*7j;l@#ex519HG`SaGDTUxl +8B@L^E8-B?Y`LM6G6m;^ZjL~$Y#th9dhzRY+8>y@ +=@7Ji;RpdAuK|#m;u|E#F3JRTFfpeTs~Bw_7;tT2pkV~@htQsfW`)VSD^XBGWC9*8Qyz6)@ILTOULH^ +oY$=iPJu<{RF?SD1dQS;pA(v_S*%4Mk=O +&SaOO&+_HkKZ^LXKo(0l_m$iSRqIG$G)JK;#GBnZIW11ZV+1C9?3+XF|5lq4QG`4rM%Y)g}pkU^W8>r +B-*C5;IiPazOEQG;f9ZY>vVLk=c(>^yjLiTpfF_OSNoARUB81T~dAZTK&RL@71SIA_09a_$1e9YW8K9)d +kbHwqCm>NMED}71i{<`D<}hv|<~b~xVJk^V9>ld4(OP@k5$b%)C&yQStCW7XVyqgdPUuerX^s9e&itj +&el>~Uh^=G2wuRMm>*=>vcs9{2foc+=;%_z96YxT=D->_A9d`zB4(-%$DVP-3o@I;?^yxyGb +8j2N+R|RrC`OnXwk_njqV08QJgYEdYUC97N-CD(am~mkNP3jGNXZ6`07wO#R>5~4II<8@z+9?;vIX*k +6&NW7N$1Zjz9-bFUAI8_i1CHRqN34I?CjVqY?s>ZzL4P5+aVW5#7{5n_I|wj-ZTh5+>CZ!-u|usPtQ +Ce!SYAlLDd2KRi}?CgDW@o^ys3|&38{9*LEOO_dwGiO-xY10pq-L^vv;S;}U(yK2*;B=!Sy%?=4O0BJ +sODy8aHa7~F?wO~a!}`KI4YMfK)sXFOm#<62)_UjRtdi@ar;Wb0nnFx&0-P1ja=Ox)u!dHYYr^wg+A7k(SIPXD__Y218I|R$(<`<=-W`~WgVCrM6_o=LGgfe85l7^( +&O>7`qBhE&ZN%NyQ!Z<{?)!ppQ&zxlm6!69l>iPWF0LyY?Dng4R2FK|OtI2y+mqYtW^`Mq{bqb?CsSn@fDK2n(%RKW&5m=jPtUI1ilVAi1r# +}IIND^u_WK6AeOmDGlaiNwv3J7q`P$`{h>sLGmI{uTT+_J0|R&%c(%z5kKLy)722Ht +ux%>FMj^lRx}7#}|K0&o6%c2d=K%1gplrfj+mz7b1ioGW_K=d(Iw)tejl1o=G7uU)sakG;r9Eusf(zJ +g8BeIEv55Pf?sSDUO;H_p2259l`PL69o5b^v3Q}6(z!a#N%teRJ|u>!uhvA^Q1sI?h}$=W!51wth5gy +7t@<%X-e%>F;TK$=n!d~N6k?*<-7_BdMoL34VocUB6Vuo7BZzlE1;oT5lWxg_BIF;MdMU=xEpR(=@^% +FtHA>eYs>Ku>_}c5fJ$$S-jh8XQ>mj|c1C!)a3_Gs&`=xn5& +)A;j%Neu83bl3LwLu5F(LRj$qi;SX9I=}ksoQewL*2joJWy->;Pq*u@{X$Zy+bvJ!z#(rKmZmCFG-if +S+@L_3`0IttK`AQofjzHs3yY@xcQe%P5QLC|c1}!t^M1B$f};Gri8V8{Nc7OjD= +YmlI3G%vNgB=cB6RAvPgivj#!kAk54ZiHMjHAwo{lXMnl_DCBZQlX}nvrSyrYS3AwKFLxMFs0E^x35V +Tnnk-ni`Pt;ALjAV6$=TL3UD&)=ca6%%LG={p9$VkLN|vfZJ<|L7adqG%7v*awCu)3Mq4s%wAN{~jA$ +fBLJ+5sKz_{Ba><6)ghBd8zng?b*7?F5Km0)b+XJ=e*?@FDR1%;t2!rO+fAkr{&-FD?HtKDi&mvzf+( +UPrg$e?~k3lH?O|64=_ihuZM|Lb~GG`Q}4S0j^y>Q-XU*e~V8I7EI9Hf5oJ%h!NN{dTWXM_S~w#0Xok +LyC_UVCEqQ_P#{qQtU&OHE0Fw#;03!eZ0B~t=FJE? +LZe(wAFK}UFYhh<;Zf7rFZFO^OY-w(FcrI{xjaF@M+cpsXu3vG}K1{-FVF|imFy>(cnhXKDEA;`8<*rN6hl- +bD&ynz}$Rvu&neveS~*3!Btxssy~Dal( +lkwy#+nw&vgv(qu`D?Zij7RQ@xs%7mn6en)9cC`que-QaeQ?a42nt)>zPh`kVUi@363#*S2PO12=98Tq<%<>CbR2VNVE(K!K)4wkUe&=?B@r-n=yWGA~UKg~slh3k~`!6wUdE~H +)uH}s}ZXJI9WpWzzFFpO3|tXGQ{YxrgfDTkQGbNOeHiljp@F*Az8V$lj;?K7K>;bu?u_xV#19_eiGdb +Q5SgQ>F6e%P6U@I(Tq%_8%Su#xjM(qcUm}kOta>lD3jYWCM +A?^76O$O`qZk6oY2amxBiTt~Y!-Aze>FLR?GY%N>K)s#tXzkcY$U1Y6v}tB_ozinGGt}Z)(D=a`nEw9 +QC(8MHMX=l(#O~f +2Dn>Bes1VP&ouZAP=P+{jG`}57MwcHCHj~x!LZ-wgPd;WEbvU+L;i)UClQ7M7hq&-!C-IUuDMR#gg1y +Lqjsd_z&v{>E=eeJdL5;M9cmF>;@{+cEm|433Ko4rkIW!WU!zhso2ks1=F0n;8n>Iqx--W6ONDMwvm?Z +7KYsIg;LDPaGEj>X<;~Akf~4?eu7qp-4p})XeP&FjGPOI#J{1Q@>#N>8+hV=Y|&V{%MOr +LQN}D?OWHV5I0r2hk5y0FZdKT5@2w(UjD4wYz3`1+8TCs2$6${Fe@O?k@k<+I}WppEVu +`papR`@tuFuG%Xvxp@T18uB2DU=xLxWi>>taVCPTgrHbVLG_Ae9xt9vY=a)pZWO$XU7ZwSzB=%Qa0^EKI|@6aWAK2mk| +@q+BR2m+iO;006Qr001BW003}la4%nWWo~3|axZXUV{2h&X>MmPUvOb^b7gWaaCy~QTW{Mq7Jm1yV3m +hRscOu2G4o*5?K-J5HP($Ywv#Rp1gav_i6*k7N_5g}oBi!`coRv9a_nF_gEi1b5_t~K{d}b4IL?PKUE +CKjAvi^OSd_Rx*%B>qj?)EBqX$&xIEt4sF3N7FGrz%Tkwqmb;`ACVvjX8Tx~!R_lJM!|A*Zs5$K$vpKKxH`5hgx530HVAU&B&9n&B^N&=9V~gR>MkibcBt$!>8P{}=2bSiK( +}56;H(V0tzl&VWdccRHOY3Cj|lWDDHuAovAAnPj8{iTlWP?!sh^9pCG)u?1ejc$~&02;34UOCPZbJp@ ++u(5tt=Cl!3?k51{b8NiJF)%gI8V8ck^R#6rh%$8~lbVBNYrzn@sn{SLd2$+UJ09PrPFbE#qZ;J1W;? +aBSDDDtMahQN@+SrG2i9t;=l1|5qVNqm-F5opLB{&(k3b}`-T+H9sB|$WXxRtcvjIvc8MkK}H9f)%n3 +a{cMCJ)`Mj06!%G6+2O-1Jp;^*fG;#a;0dL2#nDgpem8gqO=GeCAy>O_^c-kYlF2YYfug(m7(Gj)Wkn +)f+-}7P{Z0PaK1xw{1k3cBg{F-DZt7ZP{#_wtMIV-&3!wLW11azjR-}^m=yRbqzwUbIliY70g8U;L|{2{2fbAF31H9 +hJnwnIkoTw-g{T=J?ie;z`0yGpQ2>%C_w_}&hcP*fjM@Cn)?RMS6ih2_4(RDE>zt2HM14^rV{Slr@bo +L$FJm;gJ`elHw|9mhvbRydbp5*QOEu+DoS4eN95<&+V@E11KY^hHJGgZMtGZsp_w$yOCZMX$R3g`*}q +my(Ra1SV)nE;y~D1{}E#rIFV{JK!MAc}gMBVhZa3(xFYwRcJ%ln8p_C^XzV2BOS{G$}2lx+{5ojmTBJHy_xcK9Qp;5{4W}z9o%+^Jup{RyCxC= +zM22BPPpcAZoRIC$R_6^+U(fDSKvdN%Aj6DSoH;F&o3r8YNMU_ +jVOY4ECK=mG#Q*DLHgpJt9oXI9$S3|L3a#9zT@M8OY7Ef1m3NAaTX@Jfyu8x-=k4fPSAam$W@i{w>n! +>USzE&;WkmRacDmj>te%GTb~EFjN(C6q5RNU^low4J{&mNPtgZx{!ZZ#9FELxf(lPEe!xTuiQ>Mcnqd +t7JAM)q>FPurOrkht?Jb&-`WuxonL~xds?*Fh^(8F>*i6j0s%Iciy`Ow2;5=N+}k~Zj)S4v%Q~D{$O1 +p6j({!RG#GZk3ItAq6NbZj&5CNFn2UCs)h?3E?mztU>+vz5U2T?pjCW*LlBL9K2 +_0n{|a3;WilT#H&sMsg#H)=PPt?Im5a?8$~q-p#Zi`IAYNr1hKZHxo}-9)bm64bcl1)DZGuTp0ik8}s +9vSE3gZ7OchpSP;*{pj*@2z^Dn#ymOm1LrafboAfXga&9w<_GWOI_!;0wl60H;1ky^NXx!a5%ngzkHu +TEx>sNADW#)^BSIy2Y(s0Uh|7t$UEtMAZQfI9cCNeWJZTRIZ;5KaP$j^O2V%JZXTE{ouLpNeUnN&B6>neHy!N(CNC{hfU?gv_qB9xbP%%{310~N?}Ai>uQ{dZ**fm2W6W +ybVEU+nPwselJP!`1gQI^B=jgu755!nNDc|uY)6uUVs!3Wi-sCo&Z%YvoYF%7%EmU7TUSi3Z*#bOXTppI! ++ik}XqApM8oY&2tA1JNa+gr*Pd0Z({sTCMqhw~`r)?pSrSwVIX3J}9eCqsQ-Fh?s2`%D7rh(v^H}QEI +R^eQICgNw*s2hmJEl9Uk#R43~O`vfTqzu9wUBD~iGtWohyNB?_%Ua30g2`~A-p=X`!a|K_*|Nmi6K$YWZi7 +4}rqDD-I>4!uPGFbOsnXK9%6RnXV6-JEi&A(_bpp)K%O|tY?xaFs!)}$W{SP5#7_M +jk6#2KeT(BBPGC29sz38y)}X8ujbd0s1~y$&{c=+e;R`jkov4{W8f?mopkSw8HG9`rHb}U%V0l8(maB +l4uW|GYJ8R)?v2|@VyTR#uE1SW&o%t&VD-Kgz_$C6Y0G9syu8{>XeR0>={%@**wjR<%W7gKOHN0cOY= +C%dd=t#0KMD1kIij5vwDmQ6?N@H;X>NNeo44U^o<7=-DVVdiJ*&{7({@y0D!H0@vuPr;uCC?6P>iSAxzpI<5uc-pL1=OJXQE2%j|UFxbP^5jW=2^W^6oA57H0t +^o|IwPCT#Yad5|FW+R-7JY;&zDJVt$D0`j85pw*vXtVP|P +>XD?rKbaHiLbairNb1rast&*{B+b|G@cRs~IS!^H{+6)~EG(eMP2oR)$jjj|;o@~YxDex#2?$n3q6ZT +1Zq^-mWT%bd>$fkbYegA)V0jsSgXstuww;7ZJXEl041A{jhA#D*7#*QGg<M&OR +WytIStYx+&Za%k)^_FA;Crig&ic)S2Vwn$IuQ^?tDOD82G_`16zpfGHd%Z1p?=Q|zB&WtK4zd6BYKU{ +G|$3XQi_94Lqw|YeQP~;U+sHrn(SZvP5Ou%h8^+sl^PCH=zOj+?WFogf9j-y45!4c#^;rii!xH$1vo%PqC|LDR_e4KYwwnV~(|ygo%+7O4& +5RSkgQQDx>6MmxGc!+!vU<#uw5Tw;#y3}5i +*t#qT~UmVSW_A4_8=DnPoF&%diV0n`@dk^D35E7#;+pNoL&N+;W +K<8;RK9u!JU8`!0X@Gh{~dU7N<96BPp@*F&Ba?9R-6N50|XQR000O81DB*+k3@5ECIVP|P>XD?rLZ);_4X?kUHE^v9BSZ#CSI1>KOuh6)zY78N+*^kE^vqKn +XmO2u0K=!T<7>~dramC0k$xOnA>~Ftr$+l#hWM`L|B3S*X)o*G&@>V1}5(L|Qwihf2NVH26krB#ylF= ++mxNNoZu}#7=_LRlZx)>3xwZ-`%&FChkQZiX6D2Fs6JERf6D}-MdXM$#l=#nd%qNGc%lPLomcuP<4WX +d+tHe#YwIV(n5t=1=_UwxB#^1yhnMc~8fj`fJlgnB}g%~P7l2)*i&h-aWjPrji-GBG>wj6V57B*OKdH +Y`P8TkCWjXMWE}Dw6L}$U-8Mz1T3N9OAN%Ljv(4Ye1l?5XOXHn=C$fFteppglr3ej(C&>fvZOFBU!xd +mQOn-CB4(uo6(N>sn@N^WlF)JY@fz#0d95Cx0M#R$@xbJEoZ&TiXKiOeKoTx$SnX_{;M`m``ynCX&LE +0Wx{QHrH5_XYcLmvP=hiE9*sRaDjt{sl@9#t81oh%R^*I0zvG~5Mt@q7^9rbqsIN|`PpC2?Tj$w!=w- +=K_-uJm3~2*iAWf~${^j6yJP)R~V}I5oVYJB>7-~@J-Owy!g5&dQ1?E2M!WjFP^WbJM^{?l@__NW>=^ +=QN?9wP^u5gyF)7H6grlT*vyp3&_Sf%!2IvD=TpEqEOn#$L3s}eW!uSUbkcye9G{G)^nCs$X4y0}}4| +9v}|`=5i^d^)=RQiYk&W3dzK<5r&3$os|D_p8qPc0+P(Vx7fTXVr14Sn~v{b*;2}zxvaQ$;{6yKeu~w +Q}@a3_xnfq|9k)Vu7CVz|M(HUj~`9!FD4MF#3g>G)maYr}z5od*^(DP%qV_Y9Xr<9z+HDOhG;G%cOe9aSDp`QyXe{KpwmNFhPzBvSUBH5?1T9eE5pR +3B*jXxY+j{NB>NiWYjFDMVfK(IUZ6jWNj(NB)}F#2*mnfk*)eZ4`m3O|(vcsm`}rHij*nXS%DoqvX&b +;4k*<^?_fZE*g-59fbhnV(*8zUtUT?oVf<$#rlu^)E;N4d&CqsIlnMTXq@~#*^V-9E=AS{`i$yXSgb^ +e&+t%Tbu_=Z&i-8jl%yl+U=t1qksLmj`$l2UrL^!NJjJ<6D27aYEE=68AoFA9Vh`}6b%4c#+6Wu|*lMHA@#M6C-ry`>}lx^MG_?7UM%Rq&LKaBM*h7!3lOzVmE@>>8v +KPedzp2R*`gQl7aF(81%;CgEl~44 +GTM@F=)yM=NpKwvBH!j>&%W6zL55^GPAD1&2WqMAQ8Q_#5`k+fy$HIa5%=r}7!%;u0hfbX3E?7`@otT +RY@MOH+T{U360Um0|XE%VR!*6?qrdy5$c%dE{1A^~&WOlMwcl3Sg +T(#cJsMJzOX*}ClI<=`s}p=1NufLgIauC@kbgGMo4K_8>+9&l1!_6Wn<9#KX77)g7V%LltqIR;OsOR!_)r`(i_r-dnfUQ@kjj~E#EAm>) +biL{;`&l*VSGx3BpTtlg3h&{8*{%XB#Z*<48>rVe9ybH{m#@@tjRaCfMW$W~R8O563@G5Mp!}54Z!s$ +2pQ^++UNYe6f*H93+Q3hrFZngyZEn9Zw0H!S9u&Kquoz3N9Pj>s0`Tp`bQm?0t!g~&Qq|Br^tHuRpX% +E^t15?8`}k!qtA2hmFQB~q=ZphLvsuw~m=#lLYPRA$vWoE5s0r00ztT70aYr%ny*& +(D_L7kxmRIN~9_1tLnGb&g(~ZbPZ5`hLaFDzaT`Re6m64^T@31QY-O00;mBm!w>P_D!Ue3IG7=CjbB{ +0001RX>c!Jc4cm4Z*nhiVPk7yXK8L{FJxtKWo~3;Zew|0XL4_KaC0tjdEHuHZ{xTTfA^>0d4aBVRn!) +TLyG`8U~x^00JnRKy`T>@44ILsn76XzQgpm&n(uxyLsB9o%5l1VsvdS@ksQwd`EjUHH9MB)$=fg%cgE;Gy6`7S&6fYrm93iV;R3I+>-ZvznArW%6<|5I*7UuGc!FCN;Rr=)ADQl`Jzqi@%D!s5h|N +V^+{pv<+P(GPqlS~ql4Kk!O!1_XY-`xRtybCe;MZ@NkOJ@%Ow>HpiUU@c5xJ;Tf}%#K3g>r&Q +Y!}L)WB4tOZw`?QJ62@xH>ZZP^8?^(q{2M0KxL4NEcML_1b(*CiH%uBMwycEh7-t306y8?&htaL9r3U +4;qAF8{o+Vl>HpU8<3^biG|8Gm!8z-}TXlh~D!Uu_E16tsWgE!%HHz_g{>nLRnL?#w6AfUIhWt2sM8#cG;#)j6Zlr$Y +-@7PZ4?u0_}e5?uNRl*C65~2=pk}R~56i1;vpbj~s-H9f~CD(rN2iYljV94t6eX|i2`yI%kg(^9ejT5 +W71Q*TkM#MaCt46m}D;D#>Q|D$bltVj4U5>WM~SAd#-E{>tnc{Eb3*HzPehMJbF*RX +iKf+Ipl+Hx!^|B{%VMwfSlP>T^E*^MF+Wm@fVo}_ZDx*Vk_>27~97DjeS{YiANU@;rYKZq1$t-l+5f8 +YgLlov6xn8>%O-=1K9?drpjG#*lC=&>@6e9`E4mw4fg&gE&q*DPVx@Ay#NMH@1N-RB43L1%reaf;dTX +hsxAkowF861L3Nl5Xa@D?-$(jAatbi08^5BTpxk?*&8x86$PF;9OYZxNO-q9_j)%?{>5jWq#!AfS)z` +Jz*)9I)YlFHstA?kx|P7`RLZ#gk0Gm`B{4%xB7zse5xTquUTP`FxPaUu(U1&i{#a0B!Y_OKr+@Il;ME +pU;S8w4&Z}ZC3VaoO0VyRuxrLtHKVwjSGksOGgU_7|G}$%DgKKUUVUe1-NqOUVxhTG~5mXAC2$Q?RnNeWn^2gVz>wt%*ppr??L@|wV^D(|7V +tRRBiL%`#d%{=G^AVxoKxS)#SGVlp(01BP;Yz#u*Ow$j9J{@K +q!aa~L5S?pH76FF4GRyIKV&*)b$d`$q&Xt%z2I1Jc>ylc8YE{jmaAk4!i}o%d-`Ym_TiT#(4mBJ?lb1X}@nctQ;~Y6bJUP4q->s+4OLBt!Q8 +407(aC@xiP#?oil)|_y4l=9V2}ihH%3)$4?|fj0ZjjjXa{5^YenUCU8w(3=#%nE)5!+m>?YK;&*rb>U +zo%Su|=18=S0xTV9Cx39+d24e;G}VeE}b+3cUEt0fOHLH>;V?m}`RuX;QlbQG}+c3V5UP{U870H*CAB +kjNrRsNF4vzdxL-N-itdI|3gpzZU;`%M2Di2MpV8Weok6HunDM|xynmMl{!{gx=QWDnyAt7sx) +z%1+V{hsHvIDs~7LS>{kPmUluGZ6!_|HKKnz;zIBV?-OPgpUGq4+$9bt+MvI5-GP>q)EtQupN4%~omL +vK^#C9$wu0qTuZ=YN76O;A2yGhA(v#Zu?e_MaAQEOz;Cc}=MlfJvdx|+K68sAzZGtYO7Yk?{jDxo6KV +Iq4Qg6|Yn1xqjsdTdD&^)b2u2d6^sGOevPHfuJ^Km7dZ{kxxT{&}5$e0O_${pkaJ)sW#WfJAsYUtZ+d +>i5`ZH=nKyS_Sw|-)Qab65UrUBl1~$xLeFG=H}`y$>78;=vHV*-M{(yU-|c}&l@8coEm5EuPt7tXGC? +)F2k#T@zH(RC7#?JCn{^a&r&yfS3K@hYfa%3^N`Sxju*1)ZO)TJk@QcKl_Xq%9^!8gVi +`3mlh+6DZrb=m4FznktUWS8YnJ_)k|#Wm>ta388uM@zDDvw$*)9B&I-Z&1N+l!uw?9Ws%YWsKOGw%&z;km?8CNV&7$08mQ<1QY-O00;mBm!w=Xdt$#23jhG6DgXc@0 +001RX>c!Jc4cm4Z*nhiVPk7yXK8L{FJx(QWn*+-b#iPjaCyxd{cqdG^>_UhSEfM7Rc0Ct7%-tqVq|Wb +cFhdi@v=D{eIkz*TZ&ZgPEJ(M|NGv%5Au#5vg#zj1SF=8@B8cCyHn2V6-knOBR8BS2`N_VnoB~fs+Lq +1btNVfvzAdw(~=6ogk9pyK5cke7K?aIxnPqViKcZ~vQ&|X=_0k1f2QkoQC({oxy5Ju>g->~N6E_{j$Z +!s`pv5;Ijpu*a?ER41F0!F+pgI;Mujq_aH88$md_v%3=!&gSUw4W1vRR&J)Ev=bpd +?@|DXP3C&*mij^OQV&8qE|;L(^B|l$E)9&q~1tArtmdvI+?c4{4Glv@F33b8?~ZfnGGG3PDRJ15*RHvBXJy~a03$ +f@(uw6Q?jTxRW=`b8(Aa$A|MV>o+PKKtob&?gqUfA$<4ZCtzcR*1a8+nd*1%awli`=%MBxW%?W&+ny* +ErG7TfpEC?`{ByZ}9-C1F-nGA<4G9~Qe8r;va1VW9?FyPolat1FHM*vi!ffxU)C~B#KAb7#am8RF +_O?0P#cl7AitUz+pwcC53z})N9L2afyM5O`TBFnaxQSqo}|;icpc3rDF_Sw3w)AA&N>!TBS_W=_uu7A +E$+2WGv#t22SN)@V4>~PGs+n^8tU{i=>No0+PcI(`2Oe00tj956eTE%r$b9RAW4(I|@fJ$^Znog2$d%5OVDRxS%P6EAaeN5 +R}k|Xs8bRtxco-0RF4r0KG{zzL0J((OI9slL&x5?Ynqm$(L@bok}dUKwfAD)~hCr7W2-a(b-EKcjyx+ +t0UGY|gr{_FR*7l#M`rU$=&d+^tTH#l^GA^dx=fgw8poqQlm~1%rZh2$*L|VDr^q1_|R!;R-wYwRr4bF +61;26GWufl_NsWu+KjRj{*EY>T77WB$wm*u9?OdD7FTcE>1q)WD9{^lgr9A2 +_7D8@9dUXhCV}P}GFT36>!6_>xunzoJ@ir0JS;vxL4rz+zGsw34doDr{4mRDhZq4<2bM<_f}!UNgNrw +5=$#|AmAGxshH#&)MpdQgD$a*~r_z|C0kc%3s5%bny31$YrM?QoN?4=5n&w;3|aJ^7Y*d48GHTh};-~RR|FT^=q2 +(gUiMjz~nL*+2wPGRqEEo`ikGRt*JqBG1@t7ywAEPZoFt$LGCx0eq@Txn(+`@XM+*^TnK@au-|tEeop +{$zHrVG;^sMoYWO>==4Tvxexy17o|b54t(TcxwE#D%&}oWaAk$YML6NmfC;}7MnR0eh;H*8A^n2&Hlf +#y?o7FD+spF(QWEf3+-SUEU1(Q@Z(KRIjNB}m4|D!#C8{w22%=12oed&Qhf6*ktXBgrenI4gUVjZa-; +|{Lkl%ck!>0U6Ee74l5WevMQ+|3N&=NB^|Fz<|7Q{AU1dq&evQg-#6+b&(>3|J@XPJzbQV{BW`MDE7; +(DZQ5inJ-0R4ke3m>ip~&yWOr(tbd2YswI6`r!+NmnKXG<}S-T+IQrF!fvQJr!;B=#4ofgLuc<^PIV# +01D_?9ca0jWuohv|*}VVA;Rb$!AAp?B5kXcPAt6(cA!sI?5^Qz!@Y{M&vTK@d69jTBqyrWggUD6hg?2 +2^>q3HgGd4LW{jL9x>a6sBU8yRe%&Eo!DoJ~2^Y}YjUe_GPgVnS7cL?+BareN+emolu!1&z@0woP`9k +7Y6QFB*KJKxRQ`OYy-8$W%^;pY(oU1_K*LOD~0TyrL{p(YuMb>J0ksA)$kxJUDFFbZh|~7tVv3WldmuEVIr5p-;;s +fw4g=vql{WJN$Iha~LujvlSB;zU-IetGVOK|7V*47|Dt}XI#(h<`n!PhP&5nPIsW`&zo)Lf!nURkI@E +ZSt0SjVMZ2pU4Djrb{D}1Y_66ZR3iKM1vc2R7R<72S}D}YmFlzfK}|R}2L^{kzv0Z}CC(^#oQr_u?aA +NU0|I+`rM^(zQK{R%ncH6t934OpY2eJ5G5~|uY#PP{%>azpEVNuT-wsR*Sa9FHdq<9`T;kak06c$CU^ +T~d&B~tIdV|m|m0Q4j^lky~QT_n|zrl-9(j3C=26im~Snk(-(5*f6Y_>O=wGN=!$9>RTTLG&3^$Vo5r +fp6-dx;IpV?z!)pfeb`cAdMoJAmYbUDqKUD%QkZ3MLj^e{?XdmAjZGI9-=?FkK^e=0VRLULCVfc;(|! +!|E5dhK>6{gP(7DaKmvq4BL;W2pfZ^pEzn9eS|Tn+}bYAO77=O8_&%+V(RbM@BthZ_U+2WON@=;t&^!KAraSba@?!JK&EzX}X0f2@uOBGK>+RJVVscTySi9A? +brOsvbQorJ^|*6>zFDguIiYgRsHnKcT@?mB(P*IFc5Vinc^A^v-;_pf3HQGt^vK1IvHS=vj*bQEd!Eioc(<{)yBZ&5m-GFp*5>E--PMivrg1QfJe-SnB|47 +QK?L+aY3WvJJa0705H6EJ(cb>vjPfhz*KluT5U0YPWRCj=G2yWTpaRb +~U!OUa31weMmPPV@lPw;H$5;(t~6E2T)4`1QY-O00;mBm!w=PiM_7j0{{Sc3IG5f0001RX>c!Jc4cm4 +Z*nhiVPk7yXK8L{FJ*FaZ*p@kaCwbYU2oJn5Pi?D7{W_}awAo|tyBa;fbPS+LLhjls;oDeY%Lr+vYob +};=eO?oX-s(k-Bvp`}oY6IpbQZ28yEYY^Sj(fH$qu7MPUEGRu`TQ55D%B`rQ$!B68%#VjiYGX~8#W%_ +Ao`uHf`{MD;W;D7(PnHyk2BddBKX}QD-PW_0+twB*| +6P&$c7J`y)XJ=?R$zy4MzKmvO(4aBwOe#@|rb!%0n8T32iPi1AbI3G_Vky<0#|kX_9g44v|CPj9WA`| +eJb+Mvh0*1b8JSkiFI#RJTOGLh1Buo8yikmF{N!Pa!dFC5&`7d|4D=&;T5@`(e`N5qp+J)<2^zg#_$Q +yn(NJW?JFS&|tAxPPszAdf!u=1^fNl-dvb1Vbl_u287ne}MzagcXo5LJ%IU>R248V8(7)D9DNfF})V +adZjs5sqWOy*#Mf5#+#uR2+QQ4I!3<3Rf}@k40XH^+-DL}Rqx-l2q&+LHS?f`MS`-wYj~1| +T_*~gfG6YMSv$x}pVhVEZg*04C`3ID!8EJE~ss79dJ^bFTVxPuuDd%R+IK@TRL?=Uakl}(aADkeqMnk=S(Zj!7u5 +_w-2`YlpbZLk_-#xl_+4Y)CQ(mAci4^PK%QRYOkm&`Hp@v2kMjGL^`CjNY%k+D(hNB^z4OWfEuG$w>& ++zWcd!g2Uow0C2cPo)6Kq%Fk449!Di=KYQZ6%X#*(@#HYz!=Ka9>Hks|c=fx55xS5Y&97XLH}Mx?h*9 +PsQd2+*Gim>Cf4@wSqz1WiG44zb)>FbPK$u`)6F%wiE8c>_eAc)lRmSvm90INa(03ZMW0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rTVRCC_a&s +do0JS+Jn7x-1*U4HVR-Ds9%3^&aqT%33Amw#rRoRB9TX|`QiWo2p&*xG07epR_{0RPrK+r4GP&A!TtONaF2!Zx)|nlsZ +Z)JvV``XYxtzs`UqI$x+Cb%o#y^cIteGT-9}kYmFnIr+7h&4tD_wz&iDw|M!C_yDiOe(p}XBVa2z26VFkqBGXiB1SQOy5DuK>gfw|x<0X#5dGWqf3{e +QlCe-@v-e*N~B(>MQ!&t821=6;;QW@>Gbjj5>&=t+_6kMn+p$J4iOa4zdkh +PDXlp!MP#wtP;roJommlN)VYjjQ&}6+mxxpf>#}{Hhzh2enFaV7CfR!Hlc|o!L1nBkc6O&QL11SEf+9 +Y0S1FfrFHi+JID)R!hR=OUZOfREv;Rry9U^U%pp`EgAOrAW_z5W$-*6Z`?;*?*}gC0kJ}|lA8 +0i-2nDyRwwbjE;+al$ZT68*g17Rl^@-i0^zVrR4a0rwdheF0YGYvzF7u8KMX-uSSybrnQ+2Ut9oy`RW +Vs$O=j%wFfOP;ahD3-u`BbNpz%jt(Ig0S5R* +(MA>#=x&8)(KpYcC;BNYK^FR@Fv*QCRLN)o_TM5Lb&&7&@AmNgMBVUsj|Zh4?z^Rn6djdwS?!l-y_f6 +KMhFi)MgaWj;zEwKP(L7+0&CPB_eO2Ybe9{)7CLy{)-d3^L)L|awbpbC;U?(xkiz%mk1Z`OKp4H54t4 +hI`|k)ds~zYR*vP%JU>VcRn@lKtR2LLzLb!{k=nzF>-^Y2zn}39%EJ1bDJdGegMzMfY;PK6eKY%n|{U +OS}etSk@>*#u&6+0Bb0v~<>^IzWDj?DkiH~J4C^uhDc=i%@?96eK@{i(Us_FqWc&{2=mCx_3OY_LwUB +2c!~zm|0b=;6PWZj!6q+?c#0@=e(oHhQ}v&#pNy5`^6`0}e!j9^^u)5pUx*1JkDSTfGNUR3!N><#UBt +y5%59YFwaY(eXT)9}SIC=4hI@?RJv2Vw-NT!9QX6k6FvgEJLX_&W?irf?_vZh>oeiK! +Y?Z90^cOrMnk$;S$!bgKW8=)W$6;@}_!2=;0} +9^1Z@BHQDDAhMrP$QQT-fw`G9?l@HW|#P5Q7CucyBevNLk+a5e#KtAki&nksPbfWLp;WcVLc(8 +Xhpyno!R6APk2gU>494WY&pe#tQ(Kcc8=)taSX8^;u^56^N;XJiWfMkQm4-LF=I;IG4oFNsurU@gY7w +R-BAXyS3V_r@VJSK1i!)wL>xQXe2r)z?=1PFqFwd(&`~;_5Yo;d`MdUNz#PDK2r~f1zeM)r&}97dT-)=bap>vl3EmICWOt8c1GlFbxENU4qfGB9F6LMNxEq4(BpUuF$Fg1Xx8Z$z +j}vxCI%U+?qX<4}hkqu_gztYQRaCw*}3KAZK-^6MQx-f2$$*v)5TA=&0OhY*+5X7@iU!Tk=epl!CWt) +TL=yVudMpR?X&U6kUFKq{>}m!C*)388{rlb*J&jkMN`PzIcoej!OH=L)syp(<#Wb1v=lv^Xs3&G +!gCmq*P+Ua!eB{h)<-6abNqLmTf=&Z$-F3Cw?SBiHLM-+D4eQk^lOuSho7rneI*xBQRStCb?w@zC@FWz@9E+^<}h{wdqRO +3by~J`W{W+M<5J;qJctY!0%`}58M|nG;=yTANbLki(f&jFRN>dCOmGvb)KYju$eJyY=)GruiN*x +c2RNabTj6i#>`thf;4_z=r-iRr>FfgM<)YkNN)+IUCY{8XfiABeglW0K4akJk(c}5!|ME)5V3#5h)on +kT6mW4n|nz!9q%2l;wEYlXpk@}&8U>?067q_~|ii2)YwF(Su16g8ibh_`GPftb0kE~xe_uSGjhD5rTN +KsYm%dK7lDZo5PD8`Q2Y&2w?FUF(X`Db{hgBU*!U)->Vxe*I~--b)vL-1>j>|U(IArwK`9mGkv^HkTV +pK7%(!nd~A5fP_t{je|yS{MGBzWX|Gz$QH_%xw#aH0eLoR6?h>S^+o#kyGVrZtGd?A(0*kN4mvUkH0y +OI1QW)H|nN)+X{sEc~OFxC_lw=?%oG^DAx*+(c&FRF&)h=6&t|9n^-a-f8MHx<9sl&_9oV&=!c5jU+^ +$l!!3-j(Wm6WEd(=%wyCA8wNMxa9kxutZWaLDkzbSLnB)A5Z0bf%JD#JUDnevwR +h{S&JRxo%P{>^>=7Eu5j#l{0rpI&QA2Tnxr5-uYg2vXf5G|pe7`RCGo9x%%+J`=ai&(tCg#1Q)vs|vO +us3YScHn)P>e%iGV1C?#|ok{d>v64?mm(Stj2W@NnPHvW?W|wu^cNJm!OJDl&$l@_kRK&Ld2tUkBe@> +uZ{@@vM9(pfE*%MBF~_TAQNP#BaI>M>U$lkt{27_(ACSlwqx#j2G<%-c6E)!)b8aXP92FS~D=fLXazVQULejm)Ck8Xglrw*2pRyAcvnj*-#D!8xw6y`;@}aME +_d#D*J6-n)M12Y}pABtx_L7`*Gdd+;(e4$oy*ADl>|svW-qvT!4@ +A~f2pzx{ale!gU&7foR&w!-Q5krdmLN6M>1-&1&2*s(n5rnR}nG2nsOZ5ylgC8ftyWTm^@vG-{#9^S& +=nyJi}V*qSZE6atR9tN7Ol7s$WcZy+_VUdGRYm3AANMPl1DZ&WS5tVSxig)n95qdD!@`WkBTJva-?p? +jb^jh44b@G|ePw&&$g!0bUKzX_7w{jd45Im^sy?x!Vk5ny+=Lt48_QCmxPdR~5#Ko^p}2E^qNC-%VOb +1-ZgoNZ1JF_{b{9URcV*N4?%n*XYGRWOWpeBxIO4c_HzzIOR_aLfWuF5nRP|MdmP;JtBjm8!mhpwRUL +N?o2{%pTJ92xc2s~hOI;FVZoQuMTcb%Yp@yoXT|prKT!GRO__pJu=2m)0#FBj9;P!#J-pbbGdc^jY-X6kCO}-YX2C=^aX30s|V{71`Z%{vc^s>|oE36;0WvVby!azu9w_Db +5~+gglzRSg7Z3tJ$L${F6IZkAOCK_MBpe>=BUsXzaz<%AdRX@$u&_Pb8G}CCCCo6+ko1?DaAQD|;Ig={l@{*f`nB)&Mt&49Ya@%`*0ikYTE-a3CV^^sp`d*v +g~ie`WuVP-9kfHw16>piKEw-jI4E0*Eku8d46-QLi9BSdKxmCV8qK|MgM&yot9V-|{VNB8a+{}BXi#EU4uiqy;5Gvl3 +pa*7MPq#82_Ot$!kQgHO9{DWUf#fgkf?P=G2wive#NTOLmY|%Bm?h_fB&2ZCqjD;{6VvKmkgI4)^=WU ++>hOGydE!>i44+5T9Rr!Vj1s}5#@ZCu~<;%yB%HZiNOR*smJlRdD?Q^3yF_0CjMrDW&Jjqol_c`74)S +<0>Nv@_>Q}@(5hQJbRuKbU^`lS9+O<(2!07;xZ>R20$}mt`F;9@T=7{lLsegZ_Xj*#6#I-hU95tOA}axGF5BUbEKsjemCWPFGb)Z?jIs9H?OVOcoClGg +K?gLG>lDe_hAI3rtXuwOS~+=9?9Eacj7;UFX-dS_S!L{K3qx0o599wAIRrdaOA=5lidAEb +b{Ado=e5~$+#sK?Kvs@Dh&oG6TS=2YB$e6@qkEI}`eJD1gL{_;q?vD-dA>Uft%Oscbm1O702=wyul)+Cl8<*E{@y68aSY0&hrc@--BItmqyDynuZg%fh&u?~pl!c1YLAKc+2XiHvN +?lfaJ|O+Iv|lOSa^#!VkA0q!$;HaAJM&6+sp!br=M)ygZUh7Mzv^yt9$O`U +;(64z0kIg&=&2gG_b<$@uG{Y$H2?q@mp+IccBKKKl-l&484}8Ph5MTK1th3F2dmD1XmuF-S%uGs&SY# +d}6!)ZG(O^C99$h8o@9OYq%_T^6s>|^N(dN@Mlfa-6(=#q%gulY+)Gg3ammtY{VZ)2^PD6XmKv2RBgj +rHGZyUOS&hk>RnN|yGS9b?%opB$1-=P3cuULk6xm2$vd5$vT`EnppOp;X+A*o36TzO+wcwVjz;W%2a< +O+i1F((?ynb#U?oClbv)8xn~jj@pD$^CKY)OMVfJTS#gQ)!J_#3IME|9%ufbH8J8&QeyMe+ODlXwY?k +f&FbbC1P%GqE3@`Nzb{~96F(wGJrJZ|*mC1|8X6ZnZmYQvuL$ku%gnbQ58)o2s*yuB|r@-_l{VzB`+n +|?L*BGJRx_#(l`t9!6|I%jf4PXNp0e*sWS0|XQR000O81DB*+1P9*-DJcK|a+d%AApigXaA|NaUv_0~ +WN&gWaA9L>VP|P>XD@AKbYWy+bYU)VdCfg(bK6Fi-}Ngn)CZAX3W*gbo8gqE*5e~_#n;+OQd?RT2@y> +Z5eRSrP%_8k{q6g%J^@hlk!+NTB@*4QU%!6+?rtoqaurRdi%qks)N~qUt94m5QBo9TlQdab)CULhomw +SX9xqjrs>=UvrRqAlQvR3gq^iS)>oU*gTm9X&+TNB`sz0uiW|?P~`eU)PxQx*KZX|lWy`rW`2AXk*s`p@aAOgFibcB-n%s@AQayql{vlJ|$I+^omZ^a(zGROY#wH)RDhU&y56 +v;TViWcujGCy#!5_VR}bq0SIBrW)qUvRWm1_D_{Q=O<6ztt(g=80FyLEIKs+feybU)o^e&fY~2Rr$9e +g`P1l}fDe4!2ID9?jDAvT9W~3WjuvGVCDCOD%dkqWVf58@y^WU18vecgDmwWt{yLhMD_G1CgL_uo09N +S>)g)=sBm<`YApHF1>7(yYPF^r4`Cq;!t})*ww_#smwJEU}e02enO4S0mI?bx-bU2ER{|?JqH|KRzT` +&bJ1^iw_GI!`O&y%{20$hi`B>6_s(u}y@U@&+Xt>ke8?2xB0+oDOb0@i_hNBAs;mIu68*k}^L*c!swQ +bk3wQc($u41Y72W|=g1!QyFUMb^N)YLzd>4)}2-`;b1-tY4OeV#M(WJH$NLDfhFFHfvQ4N3j7eppZch +BShFCd&I;_nntbGO&v95gsgz9zfiaEtKO`LfuPN0xoK#Un*zi}zQrwl2$)nEvMNa!WT{mGaG?LX1b&6 +R9MhOts*(tJjz|Mf^Adyr{7!rT08oP{7YkKIbqU0UUAT=dlRBG6>ndAiO?HEOrHJm~<9pF2#|7%Y92+`@WS%J5Uni~J;+FN +G%nTdxJsc}?_AP3QZE(5qs?8xV?YBJ7NsQcDoDuySDHeMa=PmQQBwqQ5nU=HVAE)|$(wAQtEkC<4I>aZ*koDe&Z8UL +nY5h146sljXU%2_B6M7LS9gg@8$2J`^!x;T2PR5YRWo6Pj;&7#|7iNt7{D!be?GFez^Sd510R(B9 +w*6dMxg2J|U%?_zugUE*`$k_x9g%wU4hk-r6Rz-@u2wUZLnE^h40m$2`1inrhMIzbA5hgfeK)|@mUDO +lG1=tWK05Q*9h}Z}ORSjH)4NKbVNgiuPXObL7Mqb(*i3^)tdI +7-T$N`1ONz==&EdBoXz~2kl^1EY_Q}q%d=+NMXLuIv2XtBiXI?@HuGCzX}ZYr-TV9`{#L;L`(If^u{SYAIouK*?z43 +=4?u(Ibfg9B5h^KCdcYvS16gxKb{l9{bmR)!FuqxUt;e)oZWVy46iy4ximY*z(ZTfX*&FbLrca+edH( +n+?)b$sRVn|baCWBr}c75WPycJR?z7yZPF%l0=us-b?=-y`Mq-+?I9UyCBtA1 +#0n;Ojkq_V%nrIY+mcdGk&Qr$p?ezchln^#w_8 +krg7jxaZd~0$YO{jAHv5_Z~SLH4Zf#j0d9&A6a)Qg0Ml9(Drqw!TmM%b}-75OO=21^PA^-HtQtA-yj# +vY%aIZfu?Bi#$l1JAK0J=oUxxq+j_Hy(W^}be#{j(cqnUfl(3*1VXXP}Hd>OHMsW=~2!sfFE8riYB27 +yN2zi5`xQeTLqR2=eli#pPa^w;vZn*8`^hcixcX328*ye{Z$pwKiVNGyUbc4r;CP_MKl$PRSFq{HR1o +2yr#zzr4ykK<$1X?E&mqbwQimHf$6Xev1mSI3yT^u!H*KhKqiYg=wOuPnlL}VEg6_79)8ulP|A__LJG +i@QkCPB-gh=v&lDnQxisH|$!zPK8pL6GruaNv7D#5~{LbKtDdcB)vk16Fgz)>2j@itLNP)XA^CM0Yeo +Lu+ev83RF-OIUDWYwjhkm}N$w@d9TCVn};!4vfo=k;fbafPc0};yD^O>F7v%O2%1bKqW}k+bRR!OQEw +~Lhp*bsboIiKz||);nvSJ+-qH;(m^c=Sn-sIJxF2da0rryIcn)Hb&WwJ=8C|p6a}l*$e8)L0B$NVsx% +;;7vA#AhFd7;GoLbI;;)wMdO6KV7)g53LM&QxV +m6d!K__KC9SxYC)^x1BO78pgnjk+)r824=7izOI>D{KW!yL@B|J@jeGN7_;B@H{mwy~TmrOde%_)?G{ +yFT~IF4BcA=48V39uHVOEwCR$*QSt2$6!J9%qGt%iAO^wJ>SHxg}J=RxHqzT%ietFhJ6g$h$@U#tl#W +l5RkH%wZq5zyQ-#nR2K|d^C=xW0b%kfQPlGIEbfE5@TS$$xu{~@)#W$2${%yY)M|0d19HK8zeb!LkfP +(J6KzSj0;^WUT5e^ZU)Djy*MQU%3R(t(hMUlWQ8Lm;nLnNOWY7kiQ~Z#0UU<`NiHKG@M_j*ozE2uiOk +u-_){eru)$AiOJU*Rz)+Z{#$;j*N;4UZOn3ZvPOUD0zVPY5Rn+)YE8;8FfHK~q|Wl9Pi8 +DvwB1(vKwTH?+t6uZnRs09`;nxeoiS&cEq1XRM1M|VPR4jnqY$w+b#geWEF0bDl0dj=*a +SX`s&S#hiB1ZQ_MMiz(ySWkNz>mJj6z*LBkgrI)_OOpp2emy_Z!45XK}0lw(X2O&ul(tsVNF73@(I+8 +DP7AWkelJ~%`K!M@H?hMCo<^+0feT)M&(BguPhS%M}+l(MEFT@5-?tasGchaz08Iv;CFv&e4DG^N3o0 +|`3BLcv=!IdH0^jw#(@6GTyRdwrW!sTiCbW#T#fO4BDvO3Y1he<0os%6f`AfO)H<$Scy&32*qBjg8L$ +5IKosMvP2to+s#_nj|l0fZ!L*02NP$nHYt}9%_Ty#x)M37s=X2oOGD))oxXV +Z`Zf6cEoXny?e-tDFFolF16X$#TXZ?UPMlzJSJ>cK!Uo3_Hkj-mQaHwt!lXOIpxy6D%M-`o!!ZRPCLN +Ioc3F=pN-){w)gBwKHf*OoU23eIN^E5Q4x%2Dz5vLv69Ad)3XACW7+r8%deH_ab~4!=NwKScS9IlA2S ++A%L|i6*dGJ!m7X)~RNv7Gmg@)5K5k13$3YX8L_5a$jdV`?}2}?#jv1I>YP+C;+bYnNmW +KgF~PS5H2;q!Wd5AlTHG?k>*$rf}ZGc4!cgAXExADae!f=u!tdnHg%9MM5_eoislb}2BYgL2O$6^0~V +)HGF=|LnIC4<4`&>63K);NY1MNH6jBl9w%N(D}Vk#oUTGz~f<({?zT1w7KKf9a}n2}@a+-A}#!quo{nnAB4q +&VnG00X*L!_knv=mbqrZam4T@UP)WbaKQybWS}knB6x%$!M7;t#lW98%n;OTPO+6lhePj^H1vZ`*l@*=~64{ +_1wDb=qDvQP_443yjG*tz8^FZ54tLIEiE71_3Qw)H%h%DWLzF)Ei75v%$?V`W|3A*1F~bG*crR# +i; +H>m`{lVS@@+@f4fu#cWJ!~F5L^T +#bVk+m!(b@zhcJUS?t(O9>NuVw#K#FSHH&%WNI^+YftR*o29Wl1@7J9JlKTzwkB1v(j#@JGFQ)a2j99_aLps*tbhJg7%k +C`+WnhaA^k5j@Hpu^7kCwfZF(3|GSO_KdcvXVLzMxX{+m@o_{?hKoZ}B~0@C!X* +g`SgBDJwa4}36yd4adXgxYXkeQr%u`ZE6E)yvGQW;+?n6u!Q3e(*I=iwXcd>wqd0Adl{HIn*CuLCHVWb&_uE8Z@WMrLCe +6^CO@D1*IEH~l3F5F*UQas)%Xtkk08P7AC+>BC?^g?u{;u7mcy#WNZMfQ%We3o7InD!gaFPt%+=E;?0 +E{Q#>O(BY_*m7R5c5@O4S=b2$(Z(e~4g3j&HWCHf^1>)ApC%b_q?N>xhgX(PO>o7+@5;x~iIEPF{_yBV#KR?qBn8VTy-Loq(kILH4kwP ++)g|1avx=TCOp?(SXa$=I=y=g)zZHx;y0Wc&!=EHdfa95NF9;}+eOWJV+IP=T?16Zssu1d*fslpTh0( +F1OE`c1ZR|pu)pa3i{Z!o+*hHhn;L_^tx +)d9U57JPGDZg&sR!e%aeE;+q$ZO@C&J@7l>3_Fct)eqs3l}1-z9Yhx}c7>mZ=d4Q~TX3PF-5h2!6-;sNQd!my+KN#{Yr-}2 +rZh^2L>$rQR@XVe+&a6u*(?@u_vS64pbj5L!b}OLG@{ef=zdr(a(k}(8)iBG`l6dN+?2Fud+Rd=A_tW +ei~40^hxAxiA4=Sm4^HapQeqazAw*deV;q7vYOb1KF}WKT0p=Mle}y}5%%>YVYiTX*RPIs_h~wwxiF) +E0f;l!AT8jSRl8Ea{uKKvbzBh9xvY>+d#i83Uj1AXv9_o)gtRHKoZ1N5tLC%6H0y~E$K}5nsmdGPu)2 +YJE^HMRmgJ0+=7$7`Y3L~Cc#*0>QNcZt7NsZd5nOqT+CROb?cj7rPx1Z7!qNS@5i%ca8(?%oL@nTlb2`_ejZdSs<;IHru=%Sb<5&kw +}!1UDd`bl#jlm2z`(qlx@DlXh!BPl*WyY5ka>IfeGSoHihzl&R|Rm#x0_YOERN +IC8R8%t^Mo)xyvy#DKokK@9yOLD0`5?J;_5=|uj6s^3;Bj*ELo#7J}imh%qhxap3u7!-S3GoUNSmM!# +rLnrG|U{W)qYi}7(D<|$zTnf!mK|WS&=moLhvWC?g2@R?IFDqwwwUv5ZCJOOQUbE4bal +@VLqr2AxQf^1+FyZDJ8rb+s$nTwxN7?6yp7CQQ@9;L3nWwCHD!~m?H5#Dp9{@ZGHN(RSNsA+sSkuwP+ +SDxmLf=7F6V)cGrnuY9wX9@WMXeq;*__m+A!Hk_b!n-6%*cOJTYOoA=!e%m?n78Y`v*KR@gYUfa5fnT +g>6x17k+mpfn@%mhd9ahhyscEZ8BB#|$a?3Fav8Y9S=tXl&yv2M5!aufQOE_4CWeKtYay4Y_zru18Xo +QnZ(A)Z1bnA54FF`25-9sjg3%{_^C_+h?y{;^EQr!TtDaH2dzy_xaZe{yO1LC;HPj{ObY#`gU+}Fx7a +0k-14}`U`tOWi^x=xz5inY%Q8RRSt +9MuoX4IYL=-4)~5HsvB11)3D!DQlhtc1J0aHWymID@ZA0jwa|T>sCKYY^3>x^~Sgy$dK6ay&{l*+~l; +{C-iUitVaWilz2daRXEmb-oQ%?$#W-}p3EUPn{nLAo$Gv_-*LK6I4qf0Vq98K`-#Voj-YDP%m8H_XVracb(w%29qe{vW_A=BW|c>&V0IO|LlQCS7MmD?3f7ujs(Ls%_G0}?L#YJO>s{CAk&8Ml)+-i+qaUHn^Eczz?ek{c +)e4a#-MpA1k+)N@7Z}y0>85TCvJrd1UmyR%Cy2HXvCTYNQn8w_CMColxE7Eb9y3B8sNw5XZ2F?+-5MH +weCixUlTi|9CVnmbx#$9L8;PFmP?^yRWEp&F=wm|)kfn>8{UIhM3^1wJ7D=&<+;Chs?7f6&61GCFar6 +xm^+5&s_klMUDgWV-H=&2=_DMcVFmJ)Gg?MDI0yTgK;rXqimFu@y9j76=>`YN%hiS}qyn*_ca*V2t^S +kD_ekjIvmJ$QyNsS0&dcrhrn;SAejfF+RkWo3zi34?ZYzSC7R7){JgjOXVMi|xfYIzv+f77yvAud5rF +WqNP0`7r2o;~r`<_c(KFP&E4{aL{Vhh-%N#=gV`0PTMbRO+2Mjt`3j7y+f0ImDO`=AMW%~X-YQ3;uI>;rjvYr@@3GE<> +;J=!4||?>r)i2*R8$sI=doxVTb8;lS3dzU=Z;LUv;r_ub)? +@m09i$|Bv=?+ScuyezQhm@HGZDMQm_6G5Y8^9R&IxDP#YmcNxES5EGG~fqqLNeGsE?S;;61Ux2M&=Md +CGj@1__OQ*yy`5B^i^dW3^Z)_g;n8=A`RcK^+!lfibG=pNgj?Aw7xDhbL`iUvg(*^OrJm&)L_WS+*ol +u!g$G2W`UlLXi&x*`lY&&u(Yu)T}|ZCFk5*F*;Ut=O*y4tBqS*;rCtZzEjHqR(zBv2>Hp91x;n`^e+A +LEMI$FObk^+$A87&j;SA-XQ84VuwMX3M56t<-I-w9Y&AsS* +d7d=P={=92f9n;?Pwj4lWce^k_HI71ZOd_95;uAy?bBuAF_OO=7o?^?dOTQpTQL2M>LY_-$%TQ#c?|R +?u$sqkeV_nuOMn{wm{DuN{rpLzhW^=1$fd)^N7uOy6T>W$2+Z`Y?s|iaw#JH{&K1xf2rA-02rT0;xcj?LJul)lTW*5r?=Ghhj=AwVNT4Nnn}ugA>P8Xg&{UD& +r62$NAGT!?Y75(eQrge_kc;LBG3>bBsXK2dsqR@##9s&M!?T}^_y|`zKM|$x1KfdcHkpt#pkKAQ^;LPs*@e|`E(B6>beD*=MJ*K?DDS +o}F)a$a&-o1t|hWPC$&gyA`*C1^g*WcDZvgW$;uRz7}w%)6I$DyM?h*Ees=tk{9sohgcKp!Kqh9mR?| +G(BAt2&OpI>O8bzAQ&ocg>6X+Ike2Noa>siw=R|mOg)iv*L8`kr8a`)e4N}GRN|zb(P&|SL0 +w;%)Mq=w^4u0d_--VD#}vBd&-P+PfFJ05g!rNmKfFJNl>Aq;GM`pV1d-(__Etw*FucZ*qvM`9m#!)R} +C@~osT80Ia14K1KQ`}7ly{XR3MRI6|w1tx?6<6K{<`xh#Tr7s6xXuCVC{V5Y4=)0VC>~F0rt&RlIqdk +02CpOW!-|2cmD(LNaXsU<&?BifCc+NEVd9$Z)FhwpWAPK +^+~_}&En!XADNlU@J~fxuCIpUdca3VZmJnP1yOT_@}91e58L+5i3{L0eRkxi(8Wb80zu*8olFjv0q6{ +PlkjRk(n{h;F)s4cZUqcr`QM`sCg3bkDlh=DI9$u~Cke(W?r$@TS +_ljdqFQJkNStcUzr7{?$d^?iT)T$k(<*S#P(mAzb`d`ug9&%BWtOi|5VUYA+l{o9ZbqiB8r@(Brqe9? +2DjR?Y#JBTuy&Y08^ui3-wi`>t@|Bb=xZZvDU|pAH0OFJ5d&kn#(@)<0XXS1Z)>WD_T2e~q;%C4?3=ccoa=tWdzQvy>42Y1?l +?Rh=fVTDxg8g?*pDXFeD81(4BGGONo2ShrgSF0$6#e%7VI|t%kaLHpYusct<1dTgNc3>2&!)o8QHi_Q +DGfY5qU%Q}x?Cz(R+74luyE@1z;N9feYlD9RnR~nRV+~wtar(O_gZ5bH-nvm-;7?ewon6eR(<#u;D8Y3*JL{`nUH++~q@=QICg78xj4d$2=a$mU#WI@-gkB0H#MPQ_(0R +qrqapurDFUzw$E^A6pDB8{h_Ui;4l2~J^$J=2r=$5zF_K6YWD%c6Jnq;f_#-iSGSEF +Y)xJ~L9>O^fYe4Bxt$8ed0PK;8d3|c77LyqsuQ@ge{4kTxmx1fdQu;T$zs*G{-Ib~%`{J1ydj2yVV6s +WfujsWL2**z<<2girSD1c +s48rqk7NPjY%DcV+VeJJQrt&lrMrt!;M!=O@ieFRY!G8QHu%)fw5nk(O=~^T#y&N;d5&pFX26_rpep6 +hd3_CRbSZ*!jM3IZH@47hvTB9woMOa9+B+|19>yRfC@Cu{vM%y#J^|GCak%9|G+c9yqATyRm)F|D5Rx +$eFt=^kQVHNp(w7Ed#kP+UXt~@>M%Qw8Q +QD2Y7gF9Nwwb!A)kK43VAO(YNNg^QTMEIr0o!9RHLw +Fw2;35@mK=!bIUO3L?BI~P-zg*{tqE?5X&^7Kgzw68R2y=Tf0!M!@jL&1NO!WY8Bd3~3&3`pDWzW)|4 +m#e`?5Kj@Wq@yA)@ayq!EW&D!bv9BikUAe=1E1DVKe>>anih%!WID>(k1OFu9{_URQJ1_t19GtTAe-s8ZT1$w2u6~&r88-tHJH= +f7+_SMY6MX(auLV-iKxVN&f23C$RL4*z5}ef2YBB%*-K&i79xMev?6dzXMMuITD-BYplG$! +z?L%UI~;U$%%v2kXLMw|wtZjRhU$T)RxkAGG75k1sh@eJa633ri~e;`vR@__r?WAF{9ax!5G^XpXh_-VEWibVoT2US!!DFGkYJ3&`>9yb12`;7dcD%_1)`cdrXJFMVpbIxgyaFS?ulq3s>O?cM~sckN +v77xo?<{2x$D0|XQR000O81DB*+000000ssI2000009smFUaA|NaUv_0~WN&gWaA9L>VP|P>XD@JhE_ +8WtWn=>YP)h>@6aWAK2mk|@q+F7ZMmPaCvNRV +{0yOdF?&@bK5qSzx%JiGIz65D{GV9&D@N-?rb)jwwWerrg3}MalJGpK{nSEsU;~Vs+<4)-Uk2zAV|}; +k|s0N?4}k8JiPDs@bIBkS*%4IueSBJlyNN5^`q(%Cv{rn)xm*!woK||ktJ0nEBz=d&d<~QTz@U +)!3yCmiY${0>OD>73k~!|ve`iEiFhsly_NYwwYK02e<;&J*6CVWujxC#t#=4jzZ)G0_#FTI>S_Gs+ow +;yd-n312|aq8@A!`=NtPw^O!Bu^WlGVZRAf$$zK*pRZkAaJj%ArvUEP(BxPmrfM@jmfSXL$Nq +H$tL&eklDlLnAE%SN;#N)e(Sjtth&FWY-FIDeqBNyo^wE(=qRMn5%Ho}Z$MN)QH*cnN ++Rm*BmmCKjOT5%+;;@murbMu@?jjLr^)$uCLr2pp4g_N1~Mlo)B1r&iQ +=z)LYub@^dS4=Y@9*9kuoUfCa$P3US=t=PVlA +}GP=r{P2Wm?AZXeWqnaB=>cJi@&#-c^=Oe*V4XAVr4Z!_I*n7J0ySbLrqd~69KgUOBGe$7hm-sHL2ug@aj*%IKfW@L#5*lYdT6KOg@xt&4T`AH*J{CnT5={xc) +pCsO7`k+CeID0*@s7ncG|vA&Sv9F#C8n*l%~5d=ywD1nAe@21er79~AHl@~`xBI4GBRwRm&MjM4l18- +R`7&+=a)-=S}H@=j+5&VB9Kn{d9{MXSScsVWQCQB9)I1b#64kH%?pud#{$VAZh8OoFZ!hcCy^5Wm1E0 +15k{O^a4*a0FR)4Zw^h*2ZzH4!6aB#kGxz4Lg?xLNqYklc6N4O9ohF$CNtQba7YLPHg`;GPiRu~-3fu +SA+NS*JE@=!wG$)bMzfkUJS+be*wX*4s@c8&zjr$HvVwhw0Y_8%IiDb{@+Wx5uVEqT4)2yb%ra8rY*= +R3MNV0#h#O)Ju0=`vPvKz|lRUPBN)Liw5(<4%nP_QWMJw@utQbXOpP+9#v#0Z_Blu +1Z2OX&xN)OT{nV!}?n%&C-HV1eGip|qCkPBtB=;KlIpUDycF8Qhg=h(I-fbs7twYv_X+|MVOZPkDl04 +wE^c4-V_J&vXKAnpia7)v~gE@&iHHb&_FHFNrlo6g3n{DGhdz1kAU!cq7G|B(FtXz_|YcLV?WpXoHQ- +nUFBt#?ZB<6Ose^Rhe(sm5|pyRs{DEjljG8PPgwdNOe0Pn?bAS8hG^XNV@ +Px}@r{H+s|MmFQ)iln8}i={e>JnYwJ=m$N1fsOF3rB +x)YkgxALlRAt30_E#>G>v$UC}WT{D03hhs>Ol@^Pxz!Dhcxu&6K9o;3E}>W{k@mTUfYIMVux$6irgzS +t8^KoE7YvlI;}!NSXf~HwFU9+JBewp0f*!@B2Om-=n@L=-c~{DCXU$|fg4(IVi?5zG7nW^m_mnHR;<# +cFOMl5?g#R>^0(YIm@JcBNWJ4DTat)f(QW6$F-7Yr$JckO7IIvK&iV&u_#x8#<-|3=P12J+)c2VJhS` +5HKYP>BoRqn+ZF1xA;u2b0$6i2iO6h&0_MRmY0*kceS5p@Gs06oNd3%WL!VpA4Z>5`~WSQ2u?B_BIo+ +jab^g;IBt^FTb~vb8Q)mofv)t|Z3J7mt4yTg3YN*U$d%u&Q^ecr7ZqNobL%!UQWz7ipdC6g+fkxFV9w +(=4rb8kOiT5jwdbHdMYYD*#lFpxs0~8lN0KVs|Ms?EK3w1A9Y5uY1)_@iw%A#Y_d3GfzYE?O>@ZSdXI +!keGC2mNpUgcuJ#MJ#@nm<-T5CB-MqiM*N?y<(1Y`2Wi!Jm_j~=%v>g*h(Hzf45_6B9Hs&zt0ICu5cv +uF4pa&K2*t>#Ov#~Eqwzp{kG@4bxRXJLolWJMI>R@MU14x0_Kl4v`vFH^iZ>TB=YP_Cv*m?!?Om_}c8 +E(!S(@ZEIW+36LZYofpa4cG*0QRSbM~d&ftUEwJgwunDgRV5TQ%jDMY7d(w%?jq-Ms(IYT7wIxAEMS5 +}hS78fy~fl~>4uj?{Xp2W^#+kPQ76&}f&p@B`U{YVvM+?Erii(HN>fny@=y3!Iz!xHjK`QwS6_QKG^o +G^YA~&<*|eka6{ippR{3fTy4f*wkICQ#`ka@hXd~_P|hkoOfty*LE+6l9BJX>>kbXa7P-^ryY($lODV +446gE3+l?$oSjkj9q8DjZVcy`@X(D$@%|!xyEFc4+9l +HIPyU`%Ql;9MW1}0C*tTLnhm~_N!^QO38N-|Mwi7+n-%RE>g0%BjnI9dOSf59h9etf-s6PrFvx9*L=f +oJD4Sw@No9&qVOu~MLl8_Y^PfB@}A`iM+f3SQ=3hJftyiWg#{XY2M~GbZ$Q!0?J5&9EbXQNJm>#(AWN|ob(>{zE}! +K_8MO;DvTIe<%UQU%8|FkJK_BoEVr?{CIezQ(nTz8h2ruWp)|Z!Bqy&~o9|vH)8NoZYwRzxDaLovzzq +&TN?uQ!?cT7CfX4pv9e#q-IKyYkzb7{5r;aw8xq*3q7Y}Uqo6TJJ%9D|0T4Tk0MjLtpe)N5~M}tE1s1 +J`%!+G7(!Dxb^i~jTD^9f1;Th74PZNQL12COMG_JcyUnXnI=yMt+{4Vtt2q$E}PE2b5B9eB6hWJR)!a +ZmHC+3nnJ7o0@n-pUW0x7<5P>0pL6!p$6M8h5hg)9?uIGe1E_qy58w2Bk_3+YzPa+mOyI2I$9se0*+7 +2groYIh4NaGaW&un`S8<0$_3Y8BoJz(^_l15y>Hm#Ouj?K5A`Qu$PJaLR=%K@nqwPLk?jjMXPr6_onj| +bMvu=p`8j<^)etxJ2gk)D$U&{k&B=8MJ{Tw|H#Dye+rR{754o^E<0$s8=B~aTB@As^WmYL2z2mrrVe0s +toni4Rq=)#=gc{x8EC(hxWiE9ixi!+*)aRKk!dSiIkFDD5gc>rgR!f?mIF)aTLA3XU|G$fvKkMXZ2(8zM?YM< +xm_KfExd)NzSKgy0-rw%g^xN+1>Krhq%6^=#aS(AcQkRyu}u$%vbYWqDpFZC>UAgU^QJg#nf@FHt*&D +f3Sh=Uy^d^ruB^Os5Ozpw?A9kVXn}n?VD&h(jQMujfOc#6)4(RHzRQ#hSyZO;EnU+DW=prfC@Y?_YZI +RfJaeNTGCOdNb8>3KL509sPu1Fl>%c_k4-lPajd%Cov>doIi*k|wN<5^9ZKDFu?r|_aqLczAg;!`Z%S +Qk8dZgJI4tXT*nx)JMIHP!k*A&1j_uPCB1xH5#68>}~9^HqAr*A>@*-qSol=eaY$WVvqS>(|^^==Z?O +$R(pb*?%Hs*`sj%|5-RKO+tbSK80V@V_yrT#>3Qp3nWb^Q#x4CG*5iHh&Ei?rEWGPa&@3IRH0J2uJ?O@j-_0!D)t* +NCT&!;9r=9_PM0VLp%7?ViZoYhEhPiic-P1q^Fs@~LD!>M^(VZJ_n~U@Q{_x@dw1zMVS1_&R@a)F;wm +95aJZhqmWSd6)5gchi9)r3iuQXWw?-_g6y?iqhJ7e+zluvsivR$p(t-gT!n18!Th%;FK$9d%Hl +VTtB6{v#k!%#Lk*Dlf844ftyRb_OY3LD0NFYfO*|zVbRf)V7@i0-Uxw|VU>% +Ii^7qG3&E)_RDCXMA)m_wWim}-Ku%jYtYnoS=3)MRvJ@rA6+H?cyt1>Iy>niYSRccrGIHhSC9x4rLL9 +*4U8w|DTfYInw=V>=?aX4>PX7^k8)=KILzrUht>$wMS-*rv3$3kh~D0&o)#b1w}BanPeECJ!QfW+Fx13O&|J*tNZS!Z;~g#|KB_pBlnBZJK5y#)Zcy3*vq;As04;{>}#Ej6>hvL1d#hJcny>&T +9lbyMjbl8acTme$;d$g9;g$#AU&&(8}<9-#*0(~{)g=`T{mz4Qr2e7ez#bcUOX7q`$uO2^Y-$rg>t=Z +q8?Pfjhg-vZ#lk)`s=H0^Veip?1TZ^dx5akXLhPn=;r4!ZpeUJne%|2BqRN!8z&8#bg8^!(%NH(9{#kboX5YlRtUqd)#_jPC9SrFU-5dLdB^VFH +3+^OL%hLT!N34W!?LWoK&_bwH=1<}&p)#y`Wd;D&roKcVf_-)f*OC@#muVtvQ|s#bBVvDV`&Xv9J(sX +DPDE8&Gj$DKukM3bRR2Z{w=5;znzd|^McQPM(NLl9oW%wfuY3q +C1?vIE4QyaQz5(a3fo`*7vURs04d7)tWSE61Y$A$W{l-ifmX&THxM&Vw}Pm)?x +Sppo*?fhC$Xzz6Bz1acqUuF5rtTXcv@rf@kBf^Y8k#A55$Je-CIxzhZ-RA|vu~!=ne{!Bl*cpyRV8O3 +Q~vc5Ts616<@gJL4XnzCB>2Yl$D4VXcu>S4g}tC*dFQ0ZqVrZ^5#&UBiM0E=0i98u0bE-~aghA9}e_U +2rVdn|enN<~yw;(*TqZY7Ib&B~t&^(vpPl0znCuay2{SEalKmxzB>5gN4#1O;zn?Qc?5M8@#`c3wMA3 +`CxyUg(6S8Txq!!VDa@k%6ECfGgX|H;!T>-Vq$i<-LygQ#K(+2Qrf`Fs_lw$ds@?U4c4eRc)D{Ke-D8 +D!L@CF41JL#W%C8z<5s*;UK0zJdBNHmghv;1wIH@DXv=XjZs~(}ntxA_yJeZI`LJr>bte{nVouqNqcMH!DR_gcV&D#2&gE)QihF;PYYM2?f^f9EjmWp@JUG2-mg7ek3 +Ib3&)hwEdZUxL6ZGu3^Kjz?P-Qq3qKUR0}{nh6jW^jINymK1nFEySv^bIn}HVtfs<%SS!xlh~J1^05$ +C(l&`YD89w4Nc}EdrRYr^t7F~1QC*YBDP8Sl|mXR2tsrKv)@i^%GXld4a>yD~W2xLl5)7y(wo3D@Jh%l9 +1_iGn%(yWq0hc;?(G`h0-gg8e{M;CjNZIdcuKNg13}?Rqiea{bR0kI^PT5x03DDnbgMmmZ(8;x9qyGK +{;&wnEpEOYoQf#V}q57_}l=E&=jw|%-+>GJ{BzkixA$nvulWHp@Sm0bXS(K%g$-LNd3YM(r>G>9Sqj; +*?RP4GGHCMZux_#VzHR}cB*R@GMh?%N7~lhsFMuQLzBw8zV(g +S`qlSY9YrjnddfG#kc1DdNO49DHv~6g&%@4Gid=h?#5B{m_2c9o4QDDvy@lK2dvv-@>dbxhn+vvrA>R +)XgV$KVK||;wjFi(=K$(*7h(`bj5$`+`*lYGrez%qS|sl071Pu|1Rj6+qSxpYit*-5_kEb)`U^!O=@R +7sH%gZE$m2fpBKfYGB{~F7Hf;Vm?vD|4L}g07p+57-Lo%|CY-G)W|5!30ds*nX~JN^4}cAYfzviUst< +QLCkk_6z=_BJ4!Q~DYBlvhJ8kA@b(_noHWyG}R@*W6>M9loTjPgMK}-gnkiZ{=2p9D5v(iUf`1dhv!3 +X;U3Xk}4SF%jw(3G@cN_d9o>3-9^ovhl*$~!Q7tttTB=^Yp#G&RM~t+EpQtfH5NHVx8Z`sHm5t4f17i +KXR%a5BMA?1ZzG%k*{ZOJOGcJ!v+f&k9{7DgA68)eOZ7g47&@6aWAK2mk| +@q+AJl4)`Yq001iy001Qb003}la4%nWWo~3|axZXUV{2h&X>MmPa%FLKX>w(4Wo~qHE^v9JS4(r-HW0 +q+S8VBvG*vihX4>hfQQW)^o=F`~oTdklhk;1YLQDY+09saE|MxBy07ZyOdZ;cGh~01BAHWm%xE2O#(Q +v?L)v*Q|QF3W`1)Z$82D|29x!xF1H7#DYti;DVFE)oyTpOX}V#3`%;Zm9iciJNnP^NtskPcbQPiF7G%pGen^tLycBQh+q9#_ATbUR@i%U=#0yNS*xybGPUbQ1s88G;OD2m<~>+6KCs$bqOt%RTF57~8Fy~P9hZp*7$xA@iVa&~*Ra^AYVo-huDUhV7giSSNMov&4cEJ! +)`f(3_b%P$`F6xvDaI3 +U6pBIig^nkTG_HsQ7ecCvqr|Zxb{kd2$0Ae9N20J>APtF+yHdOy-YPc(V!Cdyo@UNcN*0EuG74_o~4RCb1jln1@( +u^2-Hg-p!fz@gad8wcH*e0V;ElCH94Nr2c}7lq_o>5XDRfy0bJ?Z>-L)9u8q1ud}iJe +SMFhxK2%_W@7}`j7L3y-{B!jJZ6bV)D3-+?Cl{kIO6azm1yy|V9?7vW<%z<;TBI9%L98*y)eE#&B|t*{g*sQq1_U=?as&J_lM +YK&`&;(jK8Z%#|=ATm_~iJ*Os3({=*qd>aq?DIKG;1$^lO`HypuC+Z_orI(u)+cl*-G@tfpV9_Jj9Y> +@0Bn8`FNf1Qdren(bkg9!@u5XetPf=O2ke5#wD;wh6X?8II&36&n)UY73q@)Poya(&h)Yl;GUpl$FDKv((_kK26gXTR086 +&gKOVP|P>XD@SbWn*b(X=QSAE^vA6eQR?YN0Q)o{) +!S9acW3lFDZHN;xGhfWsmIDu19iMvV0pH9?%3DWRHMuOm~A6N0NX0<)hwJjRz&qW6y|?2y|Cvy)v`1v +hr~#-dq=rm=}v&z~9+ATZlz5&C4dAiFG;4YtdfkqRs1NBdR(5c(%%>@aKCjHV|*~x+$vi;7~kCj|U*^>EZV;zIp!g^>f)^Nzdx4Y8f{4pw3rSQ?ylm2k_=qEvD6SwaD9C%-7% +O6#CS(P2R3o!{Nb!fX}?HmSR<`((z4R&Z;_ve!k1Dit;LLR{6A;7tm2rELT^{Bc=_Fc9z84X_{%rhVv$`ga{l#gQDzJN`U09ZFX$Jn6 +aRXh|7D$*Q~B=A-70^Z$yYy>Fwnt4UrtB5ZebNwccxicmBkch{IB^~PNgj8O{`oOIll($4vIOBTooS| +<-8JSBau8Eh?C>~(5#<35!lD?)>%Ch;!v#W>}r_}MOgv90i=U`0bre33IL7s_bnhdu3`Z5;9xw4X@n& +oiF2yh`#NiKjZ{6Jnx2nr>UsAAz)^U1ad2=j%jbYwv!Wi4lfF1Q1G;V6^QNsYxT`hLMqLWo5mkZO%i4 +U5B$42MLs4D+IiCXR{|kZ9gE$A;TI2|EAP}qzmk|j+MN^bbo5AW6ynef=I8!Xhu}WnYX&;)(OhtA +2ibLCy6y7CNyD^@G8!>O6se-9x(s5)vQ9%c{)XVL>fqg!n=L_p#cAHv@t7u(>y|uoBCY-kV`*V%2ID>vEsBOau-}bOYV8bKtRsTRy>8ll!A;3|O&fP}2(||FD!0U6-ETI^%P62$jDWJIc +;rS2ZtFMlQq@WZAFK8x(Ccy?4uxWrpXC<-e^kDqQ7ca+epa1y!#jBS?<`Sye3+Rjdn)Hs-S$=ce(@WI +W#d2KdiyX)yk$;DbG3P}IE0w0{1ud5Mj8_TR>T3Y85^W8e0h04y^SWx7E;Atka$VX!%Bo%xcbU;nlGQ +~6LqzV3;DDJ!XAwDNO-88OYuujj<(W7k{FATG@!63$xj-~N9%>Y&$0KoKW0L9%FcNCUZAat_c&ES)p# +;+ObdkX{kH5w>&+5DXEXrAe+d=vq{_E>0`1v{qG|d<{pqyA{^*h+AVdHGnuBz6qs$mnyjf!?8;`HCXd +H&=0`&ZvQ`~EeIp5SNewgN5!tT3AcV;659FDl^5fIB(NVlLjMfG+K^RsV-quitc6r{XVl^%8ic8Y~R+ +-}JVYwy+Z}#;TM41V}W}1Ahis3m73PcZ`4tIW*PY<~h8$t)MB8V?4YDq~)!uS^^a)ekz)LnU!rZB__V +OQ*&D6jfP0j6cp~uWO6z>NslKJnC|IfJ%iGd2|VCwgU5(8lgSyE$=`DsSrs1gbWSFzKx(4~hBWr!M2> +kP=0KdOQClDZ93cieVmiyEnQi!`f<+>-E_;+yk~Wgw7?%z&eMx8KNkQ7KDf9m%7M0 +AEtrEs>HUgJ)1!(W{uh}!O$xsu*7Mx*##1yHyiN;1^csy0RXL#MRds=mz@78n$$t<@U2OP|{0=|VdMd +`F_^)ffUEXH(!p8SvZH`Vx+ndY+T4yc5hJKxD}m{WR7sIS!x#IS~A21_*)$KZh>|rVl@0Db)pPoLJRk +fo<9(B@z_yW;t^I%#Vt!6H2oMqRh~50?Q(O_B#meK>7$!Ryh9>20Z(4$8Jw%vB>@289hgLQE +0QBP-b+e-){6WuYfGTP4gLHEcWz?Ya)+Kw5`1=>YjCj>nL5I)47fjyrjjS>b;kc5LZ^lDwL8<$%T@Se2J8>a275t*u*ER5Ve5NpHp`(l+9a)nhNe?(Z&Jyx|_Vvj>~(68~ +!=iiNAy!;l`GNx35y&f>)_YY8UrplPgUYT!y`u_XzkI!Cy_gpFcoxb4JL6WG}pcfKmf1ocAX#9Bm%9p +G5j)&_=dUDj8*bQtYNOI!#S}8_pA^?6-;#uQPJR-P{2-_bKyhpSc889d0J6fl#R6>9gRK=%vR2fkHZb +lIBj{p`hS_ei@mlRH1$E8%RX6VYkpm5tbbDL1p4fG2SU~}S$Z&2A4P~9*0!w5BjovuY(=-ZymAPq5eXDLq6-2*`ej~U<$b+AKrHJ8^e56H-qBv@VZn%J`FnUq +1JJ*Yt&1V6*ePA=-~-kG*p>JlJ+ZcEs!UTq;O|VMBl>Y}Kwp?OCYZ7c|4?=4*SXc`g;B#ZBN&Ng_CB# +2wZNG>Rt0cb@MyRNr@8)ty+t9$MQKrzUm%p=^rx_Bu-_zZNel3ycs9Giy&q?KdX0K_x|qN%g9w#xFKe +5zIlHwrqo;P~-QHLW_*mWA;Rp8$uiw^sQc;_LcufK4wdu?xU1MxkUyuJWdG62qEa%N2NN +U(e4=JT-+!cc!Yh+TwQ-PmnU3x`Fg@=bv(fTvJ-hH$iEbGk)*P|ugBZr&B12}uyCK +HmU3G09{Bv2+xk3a=(sQ7P>(I}DzFFg!KbW|79UT!(bUY;t2!{jPv^^vOcoRKzA9NCv%^h*uw@0c^r7 +a3rtc!Sb^Jsv-5P~h2-E^X=rV;m|;%4I|MNyWtRo=vI{^(^2JE9r9e@EtAh!e8W49J;NBgH<$%NS*I8 +xFSB`9@^xZhS-2mc>WBE*IDa!R)T@aG&DN)AbqdLuStW8#O+-9s5fb89b8OyKumg7vFTPhQef;*#CU5cD>3LmOwK4ahzdvRL+T_xaC2L!hxKRFuj2~@ +za@E*6Z#oRRI*@@ZUrv9jhY935ShvFeO{m>}?tJdho6G=+WnXqmOs>v +2|JX@d!vkKRB^q5rn3E07o4JEMPq*B!bCbxJ`5QT52`%(P*f3@BZVf+t(VerK2PG@G_Cn(Jz2=|13br +|QFo{UgDaLULOh{Q%h+Yx8P7Z%2#bT`u*GDH(wqCFXUtUf_+J1LP)G_TL(Y)R(1Bhjtj#MjcUXP#LL= +*tUu0cf(lr?aUs^*m&2lOrDiyvXHibOv$Q>ED)KG;3?MavIfR20x)2mq(V>4k!T2#XSP&*Lz$;y$W({ +u|2hYX%&t&35gosS(wk<(u*t@(j%6zAOvTUc5Ut(0A&nHw0Za^y3HSpX_-59q$m?JVvv!H*QZx){hc= +m@YGyJ)xRVJfMc@ZnMXf+$E!xGM$V;?y#S*ik!LJ&wH3Bl9uaG3NW0?~9?+Y6_utr!0}TJDd(l0zH_kv +d;Md+`c~;(ifzc3@a6FO9?zpgC9HHN2?~u8by3e>JA~rXq{Nr)b9=v4pTs)qXz_7Rs>9jO3WQ@@@U9gbd${`r>zU}Es)(^Rx@DO#q`}GpP)>Y-_fp;p^byu +r10E8rr9j1k!>W^P#YC;0bXr(8#5BL(A$n)8acG-H7a6f!=ZTcKhq~>sh-W~re3zM8saXb;s^SvOvf1 +ot=16KW9*d%2fbUD3`CZeUDO>DAe>L%-J(|&d0Vu_Ww9tgC}!B)poZ7&RVPlVd0e1oy;_m(pUke8*&P +d}OW>F^OPTD1C1q1*HW>{VBC<|~O>ba5=i3hF5#mqqKxxpN7q`V?Hib!m5-@uCN{ahqjfQYsyvpCBgp +Znho6jV_ca;YIZ~U+~51X&T1Xt1zs9}CVA_SUNG}CN_>T@`cFh7F6Eh4~X653SirB+t&Lm1#YsxJHIp!^)JrS!cmPzBLwgY89L7mA4MXo5Y+us^C)pMN +!k|q3kjdstM)wjJw}*T?jSiXu)TxS9AlS(`L%fi#Fh`_#c>xPnDydlS}mY2e5_?RBPL09^#x +|RsPMWPmpCssgDdcAN8O#O;pHVlU~0y#)1CRg^Xub|bdi)**{7pa7jYns3M5kYPek2J1eWeAp!=n98= +4^lzeP-8cNo4o#@;t{(2GDaeNa0Spb;Kx_$-688KN8va5Vb(VAOYEc_>KZY_x40|2)_U2XB5KYxDg0= +zm{4e$fBD-Dv2sfFCXjb^es{*Zw0at)0EXnLsH(Qax{v?owp-QF7pD-2meRo8d>m@~wov5U8&BcnS-3 +Rafg3OJ!0Y_K{jzf;h*Is}*WVvIr}Sp%_hO`X?gXpLO4xJCGUPBfm_;dB)Gj=+or)aBkfCIV8u_n8Sz +tIX@czDZL1nRJWBaR@d3bOAvED0=%0dzs0{F;nBzG$9meoH)LA-_^|u&T04)M6^)w*4y$w|(eESTFZY +&I!yjRsAM3t+#Qltqb3;dEZNNPjjv{%*YMu`@W4{47~~CLXJE2VYl5Pzd1okHjv7yNR^!N +3fe9b`WX=_v7R7KRXcUXA@_5Z!ZiF$y=@Lw4RjQ8h +Q#w|+czgt@9JfhoV%wG%$|xl&NGpcKy+nFrqml?TB1=+Ut39oW()H=+BqDFKZuMGLXU1O|IDP +g%U=2Sqs3h|$eoDMd@~1kIwj)?IZtt`C>FUnzt=rLxE?U)=&Aa#e2?Zo>D%W&e*Nn8a}fRD$BXY?zWV +X`H_u)_caG+o9A!icX!V2X(J!OkQ1r}pWgq!R^p5D-e*AzQ0|}3VSEuv}!)lB%tVUSij0#+la;EMmbL +zlwYWtPl-V$tm;FRw^b$U&3oEX+r^m@D93j~)NF94#{mu2=PqSUR0w;R-|gDG$Lc9WH1{spIX%`J66@}vdLyeB_E^2n6u@(H4AMZlJToFx3M)ltHl=g7fnxY|F?Zl)E4<)RH(P)-q(jt~ +QnoV=4Ge>BpxR`LQK4jHB5%*(`xaZNs|Q!3Jwa%I;12PHeQje6P#X=1q)78rTxRP0(|0x0>bo??V1s+ +2&~(0DENIK&z(Af68}=@=j+pl%h5{e(`-A#Z&)Sdh5jyC@pA->hmGtet$meJ;h$q5?D8lQ4Vg>`tE{| +dl4WC{xMVvn!UIfr7a+D80LFO?aHZdTsFdzmnAS&bp}%xILZ))`g&UdV3XhibK6kcJ%9U`5@K5|tFZA +{mYTPx`2D#TN3~bydNtWgV&uea_kqZ7aJtHgl(e3D~Vwhc55LxUHnJy6-j3PdiQUV~rB)zsg%@x_r+$ +jJwrkvxgs``&VSYMb1~;=>ck3NnFMzi8@tvwE4<&)W)LKwqDKDV;|u%I@V$);DKG_{Fov&ZS|aTE1g( +Y^zxaJFVMXuZYJz-n6Ta^2QYWpBSQtU)0V^mXw$H3vuR3Lt1Hj@`>e3DwBNxIht^N`Cu^F#CaagCeb~ +s*VF|7b9`R9Yt~f^Dw*cXbV#N;#KQ42!Cj)fA+U9_COEIqkhf5L$_*(924f}Q3=6nr#naiH|VW7Bc(5 +;TG%A0pyjDRMBHRo9nT?pzgkzLMO9Zk%}{-%R`okjVkDsQlL@A|my_M36s$r@{2o&&k!g&|tM&WxI9n +XTx6DP5W<$QD->6i{h|p|A}9UV>z@VAnL<=OzD2vT2JB!fdfLBUYf5;r$e2Pr|ENrwC#5HG6V55H=S! +!>d+mO@q4{m=bvz=fw4~JAk!EQhs*Ybb1CH!uYwxx@N!jmT>mmm2vVK%aah^m6b>@u;nG!|5>g2ZgITUAavDC{U>3H-`OS<#2as$~7r147x +iVPEJUE@Ks1UY&6_@p0dBMDz|?a3d*cTwS(cCTOOxz#@TJ +Kl34{(56oM3k1SZdlv@s8mcN%;1->XBh`gPq9-(kRl@av&k(&Wq_RmpUQV72Gmt2kfHcctw@0xjc!ArLcgTloiz@n9+w^S$jpy +jDID&EcbCeyW`M;@ahpE`&W+}07Ocw!VEckiTV1OqeL}Or?siP;(Cv}A0CGRXR&yAgRXIcDkj-{;$N? ++>w&|kutamgrasC@4r>nQ7il9UjTNJ6(nFD_S1ED|c4 +B_iQ}Zod`ntLatc7-FYkXTyo$*o7QJ4(**iJ&5Fv?pR#iR$)U`~$7HP}An2-gEF(4tM2y`UKe9b1%z`WY5O~qLP;$1I)_4{yMPkT*5YChnv8r*WXuuL-+()M0A63OHec2@_KDUsqPD{SRKZ@E%O^GILU;l@CgoA +``Zp}JV1x_2+cp=@WOMO>=EAZ+2t{?p$-4dc$*)@pXv$gN@`Tl8z3>dI4S(9}hu0YoN27;!6aIE)X7c +>_qO0fj1z~5$)h=_de)~6i59!6OJwLJa%$oy6Qu>%!SOj}TId95!bxW=yqEOKt7~i{w^Y9Gi@AUYg!T +HnJ+p}%;o!x6BgC=eQ8LO~oD|Fi3qY)~97F{1oIpOK<=B~Neh(l{yPmpqaRVXb<7IsXS>vk;m0OW5o+sw`1IjZ +FXb&Kd1Q#MJ7S8?>L)q9drHvf12dCROQr3HZ905b+VE$W6Kv3uYcm#H{C8b4d3H}`#0Eetx1mcLHc*< +9Vl`G8fH5XE8)+dJ!vLc;tiJ)%&DetO+$%&c&w#s_&M{}d*eO5n5)qolR-y6m=59xJ3FaOUevDA9oImah&(hD4P +4%rjQLvw5GUV6esVp)K3d0lwc%(Fs=TS5B-k41$^Re8VwI1!fT3vjyH*{~XLEF}V6ij2JFNXzt6pp>6 +*#2)d$5m$S5r%arzA=tzS`1+=XNjDt0E{5}#%g(4lzQ7g8_}6&G(zj`%vPKiGA-XPqbD5Nzyi`@&RTd +p7{ULKq*FWj>@;GHhF3Nmg$XQeqgvZe&&&vJ1-megYcU{fwoIAF%5@aT8@F|cM3U +;;8%8?r?5&^08n(44Wm&nN7V1Pz!-O?kKFk52OpS99q5h*+YYXXotNEV71^m5=1Up{=Tke?f(cw7?+p +m#uVfUoZ2zn4%8ss=eO4Q-cJU#(LYMSGs0${t(6FhbIrAlTZ5H5TB+e$K62H+W_uU0)C9ppStc%>U*G +vjj3ntz0a!@Bk(dxao6?bT@JLX +B!jQ2L&Dj5Cmzf1fq*(32i%x73#0fGYRQg|iJ1e9~7y^iE1vgyoXPZgaN)O5i-Id@$?K^j5bbo2!?*Q +qod@%m-)S;bvDY$sgo8e4O=)0qc9e)MSzMt=h~I&k{l@Lm%-Fxxdf(yA#;*?K1~GcpzjPBN?7h69+uM +6|i*8Fr{LftovWx~;=I^BLXA>b$xp>9m}wz|HK?4QUadQC@0yGCN7kE*Grx@zE-qbxwqIbZf5BF1(bR +zZLCvTGe%KZS4$G7B|7P+|EOTvj7#w6lEV?CBfK2Yz{{8np^A~2V3~-7+Sm`h|IX+`6H0w*!T|Ggd0+ +k2}7#@qz)FTJWx^mVuw9jx0uDojAhK)5=YNL=R-+Qh7yNZ5G^AGhX +hh6p1q(e|EL$hK#G=Fd1!j5{P^Z4TDorj7+Q2CgY}DggQ +z`9I}qP{p9=DqZjkT7N1v8^Yil68*~R-7Hz8oLj}%1hX$|6zQm0HM +2UrUkg0W9;0p?^prXg&^^JFiiQrUV2e4_e@g8nB8gZsJBFg_ZyOG&FyVvY$#N9fnt{+0E5b)Ti%{8?j +`#^>{W8*m`Q|YLd_9?by+m~P})b-}(p?ZD}&_7asQeet_6O)7;4yOb+#4_A3bFBco^3Sjz+F#0v@fnzd~bbyt#ckg>#` +s5OKfSm9LetyW;KXpG|-^rRW`T#Mpf50*z>CPVD_4c$wpow=sH=%-FjPG1 +$UzqJ}PW1C^K)!@dchzzN}MO^U1)#x(Hn!+U&9i-WV&<7dI`ZE%&W9H)Bf{&#N(Ju+6=-gJ2X+(Z9x- +~spO_O_~yyG%NjyFz(A`){rWsCzZo<4^7GTG+OD;;K$Z1jPQW_Z{|4j798qYao@ +GHK))4I_3LSGNEf|Vgx +cx$~h9wh1+4~a^`=XoyOW-f@5L00 +T%Pk8;v&)h;r^a3T28VuT42k5~@9}C0>e{nZX +;=fVeuJ|!-dg$14Li-5(`Bz}`7uFtl{t#Y0ytp^mCkinBv9{W;dVRkcbd5lJ68dwh%EIrj9`?`f--Fn +Q;Msk~WY5t?Gu3lBioKeOK8LEESVK2CuxsACo5n6_#MDW?g!&8bYU#9#K8B({Qe9B{Yye1k|G(BiDN?-!*kAD_NNT +ho7H`qf#Eqv-wLPd}BdEsdze31w}KF%2HPqWo3$4E87+SBrtl}f{IG#n`0(Ud8RH|JIP(9x%xJi +9RL%VIXmOSQyoAx86)J8;ZS5xdxku2vwJM&>Ojvw059Hsa1Ecb?M?Mke&&;6NFmMv@KGy+meANRrj>@_ck1`Sv=&9dw=A%!v)dP05hALlx}8nOb>u1!zKn!x|_A5|9qJd??=B +RwNX$zIiC03h@XD9#@gWzJc^WE{`>42Cruv_uhkQ*HtWbtWI=DRCs%pEoH`R6yV)T}hs2Q +^5h#Eil%ischI5(O!C=h1sRXVl=Qs%l*C?%limVGFmd7*O@i>0U_I$g% +{l=QK3+jYd3m{*^Jyx$X^vs1EO{)W}!!7zF0TcL9ingHH(JqPm*DS8z+i*R4@%eVHcBwO|N6p!Y6x((Z_{9sP;y99Q=ONyhL}H>0MOyN(#gonckUlBZx(d-nWU%_{Efno`SOUdUPF +lZ>g@$)4Pt0UT!(sY77P0xW0ysi4Vti6-UpvQEJ;IReBbV7!B~qTR%jt09I73Y+m#(y{n60O|(-gsSn==V@@h^vY9-4`>_$*~{8eoJN44E +Nx{Qb1XtNWrQ^~M9KDQ7?mJE$s3g1uuEPQ&KT2rrc$H>vF{p~PlqAGcDBxNJem$FZ2$Y5pG9E};S`rH +*V8>x9-7OFLvhUO;RY56K_RES5EqZkz#_@Be_J63uK>lB+CjxBaz}_*r25^>RvzL15<|YFfbzdPDZ_m1MHlvVc_`GsSUXbz-vG|S@qHN>eALu}^#7lf!mBm~flX&zQgARZU@zqp_%D925uUHq(f$~s^hX0XvkaTHO<*BneQ|i +h{9BV374loK`hc>~n={e71(NKQL#1qpmLF#y?pD_H#BXMG{4Lwye=z5q~^9DO{R-+2Yaxod=M0POyAF +|oDX=6@0nZWc+CfencIdvwJ)=eg1vrsr(CiLoeeOHx$M)LH`UL!q7du3R=`W3H>_F#nnj`e?9(Ww^9b +sp@`|5qEL@G{SC&{{yIZ3_!S;;)7lw1SccL;h4T#`az;hhj|@CJUX+{x>l!(E_i6uYN&!ZMEvHo~kL?HxcqSYpmKGC0K{vHA +iKQHwD+4md47r|j=KIc0+JmN8GtKwxAJPFG!KbzR+>e(IzkwrYg{o(#p0oV5rIKpK&p0k~86cLsj|CO +pnov@5Kewe%dIab?g$z&C+8#vO=HhLmoZT!igjVge?FGYuT}Me+-Fe_2uBN7$d6;wCo$pQ;hrUd94podwLMo+K5IU)fY1hXW+xY;ueO{d +!Jc?c{}O5XiC5-9q|DQ8-TNvSV{DL&hF>63@&Vlp8dHted7B{d>IZ#I2fG*#0#y+&p*8xAqpJZaRmeu?TCF#>{i$bm +3QvsUH1-pC@*5C$*JT3(YUV}e@~9TjXV^#G7l?7{iDN@66NFkqvTfmFkXf14YPF{(#tY6 +SYUXzrqnCYhivsy?NiQn9=!l^^CmBV9#f=mlPDW>9(rw8|@$<**jvZVtDF%%;YN5=ade9TgEN0-fhYD +R+LxT$Rd#5~gC;A^a>!}&w{%KDq69b8?qjRG@R5mZtMwWv`k;4K{xT`0?roH55_6f<3|EgPz#kEqw4x +pXMU_wSOcybbW4uQ3w6*t8U)2vxO?WiOuV1vWW6g3osNR$GKyC8u`+g)a4>b&_cIyyaI6^MSo4?PSue +&`b2N8-Fu2}b#h$frZSG*X!}Kzncyt5sRg|J}p_Y?MT=mu`TT7RXBId9ut_iS^F!QQwan@hwIlYSx#M +;z?NjoycygV%A72EqpF1mAa5d`sT1>p{~fCv2IWyS>w|KvHI+hJULAYKl1KloXT1%XRyl +7idh*$qWgIh5=Pn?52`G<`P~Jt01q@1u$!&um5j!Wj<%0gc9@`^rpBpFYTjNLJ^ytUgP5+S3*2I-D2s +LJqWbGZNpJgni55J=LpF@vs8N5~?h!Ge6e3T{e5R +Py8CchA3HGKfyxe4*4WfK7BQcZu<4cvFfealy2ka!pPC77G^Awu)?1SL>^5ax42a6S#2iXI1%7MdK*% +guS~_76!Kj;?`8rk?%eWtrkJ(_GDOTHv-ahaF+L-*w}q0VysBGo6_$V2VF% +|sW*~OxcxFdAWr2a2H<1BmYbb@J4big&M1&2H@2x=oFPX?XPo$=L;joQAK8r*t>ekIEF~WQ`;~H)NGA +2S%}&z%6Qn2E#Bz67V~O3rdJ>XN>!-ULl-ZPbByM5o$^MNRNVKrLNlWZX10(i%f_9|G3P^Y2g`mpT{1 +}bQ#}LnUai0ts8$`p1P#D(SPde?MssA2nSYjzvq;5wf{cz;FCu0fgn#dR+y8RX8L-KEt3=@g#SWqer& +JV7NL^HXBgkj2eprm_>k|LugEdEBBZn-Z;nVpBWu>So|k1?44Sow7P964Q-wp&&mUjgv>)U`Kd?N3!v +irSf)KAV#EprVawhPtU|U&{F$s`=6sbN{4AsOpX9J^H*HJVseb_`G8to|jdtoDQ$08M3^-V=Jdn7s~$ +rDt1ZUDl<3@(m1rTk(6Umg&)Tm9B&v^8kNC=(UZ-XmYhbN&||rc20gYIj5AMPh1z#G-Dl;|@q +xj1<>%6ISnfw{u4q4wMRoD+KluWX1Qst-g-XDK+JOC%><}EbD%ivqLnILYLp(f{{DJwz$-{0w!s{r@4 +Nmvqoza$E@P0Qo@Uxx!agQ7|Djki}CMTlNs;;ukn6Z#FB(8x#+RVFXM_wR;{kHyA9O8 ++cB?wX(uKF;VlGr!g(G87t=V|x;Tl{mNp%An(R%qCcnVtQbqbMk4Wk4swTU39x6)av4Om(Q}lG+xLX5 +oCC#v+i!b5(xaU!41EF5uzz#Vl`9cdrk(YdxA@FHI +SA_#Zq|SqBFkjkXmro#;+pw)2+UoyTkk5Id(d>mFVC`d7pNR)$a36qR8_7~(k53L=4o?YZpxY@YgO2NiE5BvvU3rYqNB% +XG(tBJ5`;3#ymML2@`Y5rt?{B3Tlt+j=jli$XnTws0Gbp@(?Kh0!sVTc);Xq9MzC?O#3pHUt|P*lO@H +jT*DxPET;-OoO5Ax7!a+pKJrOZA<>V+9T=(vBNz^W0R@8 +LsxX_gRrqt7Tsow!^Hwe_f9L8&WrXi^iVuhwWdzfjK#(KK~G{dXm|sQ1e+LMCrA?<#5?drVyi?OG}Xq +K`!X_w&dHKQ>&=u;%A4Eirt6={9l@8b2lD&?lRz0Yd7sfSgDHQftyt9|y|o#3A}zzoH0si_JR#-2+Nk +=DOhn#e7)^U1)~glS6-QRxOGKDw(tmd>zj}dS5`t(V8QGO_jb;4}dy9pcUS;Z~0&Sng71UF=$bQiE&_ +-TEs7#dST;Hh +_c6O7eNh5Yp_|TOhVM#$%GT*qJW07@It|Tn@WEJl!Pi{tS;RN%}&QarQ0N1;WH+K7!~HEwWddZx3x^? +aSJ)NP7eZ%UHI%sgW4_9{~v)z6nJlo(@gI4*;Sq63>yC{IUk9?0G2ffdwY&d>*vQ83LAC&d#k5x73dY +f6!S6wkD34j?__wfi;FhQrV_-O(VLdSAU&}eaUy1Q@mD +AKSror4Ab@E)5_Dhr@2D|5w)#1mf7WX|tZHyk-noxCrPw0d>R0rJ%PG~7NNAUZ)lyQZPIM^|=*^6Mw3aKvLLzX4GZA-sF22wmb +c}%yePYr5EPon*ZZ#-WYB3=-q +%L~e5xAVJ15vnRz%fxIEH#ZDn3A{M3{fg`-cJhsf@86d22hl<7NjKsBw+=0tOP-JWaoEi*1iaXLGXY( +SfLli;7gXOtd@T#f6@H6Q145sX|TDyT^q`yWUgk;iOL9H3;vineFm5a2&>QG>JLNqC{D#WBb72=85d9_+wZVrlfPPoG_An7bCkO&l6>a`+d%+{F?p7@imF^ +*+OkcIL~DJ4_9<6Q$xuxj@N*yMW}&4QWqQJu)eD?%e(z!))f_Ia%4cTG#G=;xt6>jL4=?3!w)aKtzo} +IC@4f_#k@%eqxzI!kS&K>*T?jRG3S0jz710w1me7be^auVVros)3D7tcwFMzP?dfk2%7 +uDoQ4ZOwhu7B_4W6IkfjADk>JdU%1sup^7SDQRLP`x4p>Mpn+`3*2<4fFEQ|A(j +j3{bR36gxm9E((bTaumXbE7(|{1Uln{de1AvlQRrj~w``Awaq@>ij_GV7g#w57=_U+sEy>A!W;`Ayh# +VkpsfPbgUI2CC!ky$CHVwp{4A*w4WDp|}+k8ZLu5f^hBIZso6ItZ*-eb +oJdIz-yR(tzB@To17`HB$n%O}0|td$RFm!UMAV4{+cgj5d(1jeUZi$3^Lc>3#mVqRk55@=G*dOQREX@mgdRI{W!_9S#r +sU@zXT92MJk35!FUyoZ0}*FF8Y2Qie +J6RE$_WuWj4vh{(m|Z2grY&#cJXJqe*q+pC)J6pwzjsS2s*-2?uj$%5FEWbJ^XO|;Sl~CoqYfP!)f$x +|A)hqfaekHFJOX-@$|FfRdtnTwTGwirT+M1R>Ht?3XjUeqR0#V18{7SC(}rCL#cm2-UEh$Swt0dGLIK +DlK-rbaV4W#kEoPLB|Frm1b#>+Ue_c8QY{ML@gmCNxomrW?awO7%OU2f_HK>HLI)n8(XAS_ImPIDiqCp1~Gf)+KTHeA-S-quaorvZXMZk340zqTVvu7~V^D +TEt;YVU&{G})8=jaq4GBbCA=rjO;YnWstrpbix?V%i>L&sY+dBPwV;isS{#J2d37bNsn78^_!hGHvdj +9tu=q{uVdGBMA8G0%Ph@LP94nQf(Dml+8QNMI%|B&gP;0SBF|HA;aItalQ^A}$=_rrI1ajEZ%;f&No)=S^xHT +F^qQn`S&D{)b$*J|rKFEt#vlj+`u9VepozJ;l9`AF@E$4pJd;_4h6pq{ng<3a@&XMJ=x%X*cr2dpei< +5AdT1EZA7CF%Ng+!BNH#%RFC3~W5@0SeFEOGZQ?M$eQ?s&)fg?*17ZNba$^=FR43hbLS)n>p=55I>uH +y0vpN8V_S1_GPwGv<&Cm+$|AUv2!oR&G*kHvzf(mGBV&j2rI1)K;#{w9ef#0XemG+rc=kEtAoz(;Z=m +L*^S>t{79h;j@zD5uGlAZmhpXih_(!U<%8?WF+g{V_%%MTV1cDNBV^7z(9kCRcHGDW{{6*nJW1@~=eG +DT31D>wy@BP#n|OQm`syzIH}KP+uTc1{}!&15vFNiUu(uzJdNXaWNHIvnE7khRp*Scw}W3$sz=GnN9N +|w1dB*;c-38QiuzXxp}-oGzvM-ubE1*Lc%~*$T%#AAEKyC^QvT%6-4nx0{SF~kRj-UBOvr$tKHz7`?H +EoKn;M71uHQlHK)6b1Sv0osy^xN^p%AA9mvYaAgQ??|3;wm<2g3;K>`E04+QGvo{-^XD8^${h~u$=vF +;C0m0}cERWTZ`(Y|Ant9iUwXerqAcO%oZ|1ryNvIcG?$^>wAQi$>jT?TsC4cjJ4l)?$_e{%$VKq8c2> +-8?}Oec%sS96$bDRRg(kc6zv*B#Ywt^u=>;NO!?-`9qgufTx^qVVd8Nn)Tbml%XB` +cg^nx@jWxCM$2uQWkhTXtPCnrUZcNS!qS0c1Lx04A){D;qjm;b_8ep{O;Kp%H7IwIbP0~GsFJyK0INk +PWd$;yrlm-#QjEiCQvQ;|Qs*){Ifmb2Ss1@b4r2rOc?GU~*&$=HX~1mMxGB_5y+NZPHCJ +Y4G6NVNg=AnA6I)qYEzPU}bkbbBBPtT_P9@qobr^14Cw3O#USN4Gp+Tob7})Ng_qeDG<=r?t3GiTU$d3A)5H!1)*-Kt~N@%nUJrru+0_-mJB3>UaRNs7r5+}{0@{bQC +=SnKIi}g`iU6aTQ +Te>m7H_Ok?43zj?|l3&Cr2!Kq;oVoL|7gFkgZ1CO=KmCApy4)R>_{s@P;2HkkBLiq%^sf9^e=ktblj0 +|o--2p6^P@uX|w1r1Y~aSIB%hBO{KZjZr7dpmd8RAVO)ska94l8Z|GS*|EzZ%4Vnz?~8?9O2J`14_KYdX-fUo)T +CTj>K+>7=I}4f-XNmYBpdh%Y^*jP9nRwv;dA^uzLo=@hEn0VT#{8ulr@`9#`J)x89}q+dag!_j~+~g8 +ADB$4N$$o$SE>RjB*4hYOobQTtNjXGFdXVE=8LmXdTYfcqP6EU@eDCw`6*W=Z}#xMC&!py1Jv=xh|)@dR24n`YwaQ=h0$pCT4jfdbV;!Y1QXCJd8 +W-~}QunB0YIB1Q#otr(pdlgQ>R1S(4rv!p4k+r~!?BfCa0I?2Em>MMi7lZ+ST2BDJ3 +(KmHc-wrg4<-9+M82z@|AECeogBF&SWnQ1U+(CQ>w{Kwf)1MB3FmLw`g%zM9my@tGb`z&X6;KTk{e0( +*rWlLDR12e5_~H6E6ZTooV`{MAeUJ7NA;d8{N)q-(YJ)-L+jbBZR?O0PU3I}j_Gk4yQ3a9d7dFeA +ia6ljdLXl7w`^mqRPY}`)C)?Ailk$kbAu21CWRtvrNTUjRl&El`LWgFAm8MjNJ|<@KG2{bV(cyn=2G_ +)8c2@?s&LDhCWAJuhF)?u*bnTOVyDzYGk+YYS{s;F5VzZ%oCtyqPF>g0y +OCo|Z7+SkjASlIr~pQt-Md{ZJ~c3vM~348cakBB%mg1OQ0RQe;#QDdq6v4 +9MT#X#}#wX!LL!{MQAn5ZMwiYK!4uNI#&PRLGDLfSn?kEdFcyMJIgP4OmH??VKC7LZP2;7(-(T5a;1# +kuMjWfyV)AM!KC|7Wh7l;spq)EIVrVSgHAu@U}&Jif+UyxJnOQF2%PBs&x=>XtgS+x`r>GgQ#G|M^RR +|7q2rsh_-PXc4@l_bbyq7y^aJzt>rW)QmH}I7%qB>9JqM?bi3lU81N<<2FJ}`_e5vd6T4k%gM%1)xWu +gfiPWqda=zRdK7gEqFLAS}XY2>`>QT9iL#vVv_GON4o193rRL0j5OI +@;t7n;v_2E38M!>hUBuz8AB&Y!#Xc|Y^YHda*^RiH>h-?a<6#>~_z6f6LAY!p5g7u@*BG3Lx~IFeLtX +_K)?$~+6TyrZn2aja}1YDl2ur+MXoJ{#>SZDJ+}&B+X5u(q1xm=pN8oRrVuA4OE$rigT_x{VEvSJ9ip +Z+`qP;Mp^L2<4(e&L;U1Y$!!`n4j-}`RrktNmb=loazS3soEBQ0S%nrpa9D+w>WJMV{^tz8dbn`0B;iyJpHTB$6$fLSQr{UE5MrrL?(2RhUf2`RY0j9gmXGPz}>{Tq(UY!P +M9#hr<+S4~ERzZR_{l(c9?F(aHWdZx7$-WwhX3UI7czGQ=wy;ic1uX5%naW7NMKoqiu3|NO)L+qdrzJ +l1i^V<5o9{RfIhHNV{s7|a6~S_9c(%@ti{$t0hGH-rTa?OgujyQ72mZw{lAqyIc?V64XR!R(3Ww6+bW +*K6i3HwXy00-x0HC;Tj0;p&k#l&`}@Bu8N%%+_gcsjRgN$ze9i|MQtHBG?hEvn8=PpoTwOEbK?)#KjXA{j +IgWegCO(&KJzTt}(m4F=l!{gi4on2k*RASv~>W+wP~K-;JMPt$hvw#a(uTFRDm($9&+rBtaK-d@Hp2g +*#k**)w0mf(rvF0nG|SY$?SFF3&?Zq*m#@nrGJr_SsCE0{g}S5NM>s>xW_nk#XlM|Gn7%DTqv0^C0Ud +Jy2y2VVPt3!YMTBotSITV*Y5Nt@#}*QP@o`r|RWCI~sk9gm7P+^1cW!WxhLnLyJ#OIJF}hnr3F_?Nus +(^IXCDuj(s2+R`ry>HTj5aN{LI*EDg5&-Jrr9fO^NiAKqwH1>>HQMr6Axxt8h5&%EhM%Z4!S3uFcyrMk&^r>@j(P5q +oIhiJ{Ccz;z~fL52&nhP0%R-DDlw89|reked!(9zn%O0rpwUR5m_s71b}Ezni5HMq3E-sn2AEjOUy^y +l&s=rUPCAe>RHH_)gZlNNNwp;6`QAfBzC0iSnvHsB}wrcENO{#7t3_YMS_=?z}p^H<1uMSO +?M|G$Ed8vNCtoZIp=d4Yq?d=M?yO?Kn=gz1xCKL-s(tl;|Uj#@+@?Ap)HJo;7Dq>UqQqO +gEJAzqkV!x{e)D;6Vw(@D8(T^L0mdXDo{aJ@DqwPtesBIqV>=%B9-&&1PBNdIS9qg;5GIQ$!K%2V#ft +zy(G1VXX|c9h-#Mq8iVCM{P6AW&ajqU2X5Yx413omJDtR(pV4g3RQmH-p>Y-W3bG4& +um6Et8HshWmLb=*z~CHwl|c{x*B?AML*8`f*GBX80e8-OK58v{qAj{iJJZdbf>vI6fLJs+W +)tYD9rm_3QBl2;Ud#r09#<`O)uTe`BwGV*Q6$-f%IV$A5~)JYJgGu^b`;ZOo=~yf@zEN1+EJuz1ZQZf +D>7H)^K__uH*gr+oM>s;j=ztXzF^or4nCxVRfKKHC3A*>qaU3t$L)fP82A2i%1Wqwgl|5%;&ztf#ApM +VOh$}ZJUU=EwjIYhbpj#b4VIgNQT{09g0p(GDaM<@F_+9!fMH!6GE8hMjEAv(Uq4g+teW=)9R&j;BA$ +dw(e{Ufo&KknFQOOE`}Ax7GFyga{zUA(rnLKx={%1oBU%K%^E57C^3=utH9A8R+Znr=N@~pgxLr4QZZ +xj{ap$i@XNjA?zUR>G8jyGnXrw_dR>PP5#p0{sT1s%62-_GCmqi?>2<1trKK21j7NgIu0V(24S7~zbM +D={!9}KRbM}PoBXFV)GRZ+Q|&5}=T85qlYD*3W^S}divIpS2~SXinghg=)|474V0*#=?YY^Tr$?Fl)l +yfqsn8SO8x-}QT9k$Tcq60SFo?P&GgW9`||PO*3;hHi>RMef7!D-sbI7hvJZD3yROr4>PdRi?C2Q|Pl +tn|I47lsQ-P5Ds9pG+y*P1RBC)bl^MY&{@|-5{xYJJEGvawwQmKECTU`hGX{Y^$?VnY8%9d-wwM0bY~ ++_IvLj;)e-CmA=dbJ8qf@J*1%I-`zVmZ21s|B3t%>M*X)TsRV!Wov2E%KQt8AKYS~pRpuaVDchL*iXD +8iLo}GHEGxGPl|1ageV*ij1TM?Cr#EJ<{dm&k3PW`J~iF*Lj2A!BrL5V=5)!{r^8h4DoPNZ?Xp@5XOv +g=~S=f*jcstY&3YcF!}Ot1>MlY}y)r+D6R3Dnc)lI*ATvr@nB1R;fEZP^`;JI2jGumOt0JiDoIM=6(;32Qk?XGr3OkWod^e#S>Qy&S +Zh>oXoj5FYne!YJiK;ObXT$g0=QegPrrchYe@a4{q9_k#gv_rH4d+1HQg2h$!RlYs+<(@+5g&y|<>H;x={h^(ZFT%3w$9j%WReTKVz;0keke88fHJ#h~yUtV5`!A`jQ$F`}w=Ba#1xwYRsKkf4}Z8y!PouCSf +7mp`sD;?c&L9B0sxR~>rE8e;rt)0R$OAxC#-3``3Q$Tu(MS6Of_yawsWq!ygdJugig4-$a^RC-s->p^ +pYCe`Qa_IlC^*~o2ZIHT(;lDwpj%&dBO{uu(Ta-g<094!3Xk|Z!V;I&iN8zTD%otiB(^G +DHcr~@1K$B3<)^Z)&362ykR}L(+(Or22syZn)dK5>Vj)?{MON(jq()h{NY`Uo!Ui)s#JX*FFJJdoinz +x#X)gzx7((xL6MWP9@MqP|54u)>LEz6>Q^5)Ox{1b)!co}C=sb9fL4PMk>A`}@4yT +E+_eC~2hZM!UpIlsdz}z@A4;>bL?^*u#Jv0z-Fish!FLyH`0l}TYWmzG70tCj!H|jWm%?cL9tOZ=FKt +#+)Je8&*PIvKuTw_fJ)`0i{Ar57#d3isp`ATpf06e@jRiaoX|MpM1d-|gp9LPl0%pZYElA> +fHD)t!(!Lv3%ov=H|({4g#~vlMDDz+0_LJn@Ka*MN2a>OqA31VOell+)(>{048@aES^=4BshU`G!|z`FPu^%=bifOV_Zsrau3r~RsJaiA_Ur+bQ!FQ`xGdA;g +A4USU6;x4+SzNZiFDR6_`a3`eyY6eqRAh;<*^eEt0z6cg1kUSZgQPO)RW7IvRf>)VK(luL!7G=Ja*p! +nq&f3pkF0k`o!>=g;S?EINtK{+u>l-TL+FyZdhmgc2ngYP^Ep;#S4 +FG@!v&ORQT{i?wvd?;xn?d#Lu-|LCcs&1N3zz%w0B#?RWzP$ +xt9IzQjN#fdv~;B46^@W$q1ynlQo=(!>4D}C$76d&V#*`cB>T>w($d0IZx@v^xNyL>&4B9s|c7k2l_X9)Yo@9{R@jOe33qe0I6SBk0etf)KH{o|D>eVW0N;WxT2E#moZ- +txv*0Bp=&3En!#%Ab-DFK=5DEvI3e(J}sS#lF75+S8W(*^pY9S0&)oWhnc+$+FzS{Uw6-m}?nKr#zmww}Ts +!oUK^~3X_;Hl$v?xvuJ&X74)=fP!2E%t?AwJy@Sh4v15QFpIKiIJd(BFs(swR1*Y*d}zldcCqLndwP_5HfbH*+)$Y)h2m?B~z64*ih6p +BOVN!*CV~)7-4BRAV-k|eU9jIsoav8Pkp`c>N`vz|TobB9>xna}!sWaQRY60Kn{3N-zSS`$^Q)YflOkDEGIN-A9YZcwEzSL6$o3Y=kVXF?obZ@Kjb<5Efrt;GP-ZSIJ32^iT;Hd8x|dDFI)M7RcZnyPl~e7qwOip&_gs6ER!62_^zF!f%{Ex5s7p0F6F{ZjYhao04^wq3b5W=^$C{5Kj9EZKaj{re +@Qoc?7F|S974wBV*o}3d1xy8nk|+>W1Zh*f|?>W&|bCyt}frFBE8D470uK6oDrCm_$-?N)SYh;u8f1u +k7sGm!$Dq3RF%vGcL2nhKoJrCtxuWJBjgY5~nKLh-`-TgAxB>jG`U6U=Z|@Yx9PN8RE}xs^craX~Zj<4G2(`n42-!g)w_4m?+lY%(S= +yQ5`|fBvxs~MdHJu*Nh?Y)b#C|>0l}6i-d^=6;T9B5-NJ34P~D%;u6MkYcjzhByjGlOzD~togmUz4C7 +fX!v~pNEPE5Ky)jt5V6=4K-9`Ci=0jDuOX(-J5y%0B!>~0%Fp6|~5O3bsXR&iEaKOTAbtIW?@y<9D`| +OH{0Jgs8bP(EmvG_Holq*{-oVSJWYeYtLL+xlh91Qf{V=Kh3!kspVd=sD#YOwS5*BX}DgMQF?UUSMuw +d3m{TJMJPZsx4%Ro|O%I(au4*o;bj%!NB9|0wA3(77vhBciqwUvKe%Gs!;E27r0XkURIZ_GxICIGA%moxvxB@KJeGGRv +uUii><_d-0u%i%~37!%-|m$GM1y0Km_^lM)z9zc8GC>Z0c88n?CjHW@*OEOv=!X4i+#1!cEj8dqpsLJ +fMXC78+_U1d({Ej%e)~>6$vBsHBG{0mEem`RW&ia+l +atN8ocSK`H5eB1{!gC5AiI|`-5<&@4iMSyt(2-P3E^<|F?4kjE)+bG0&843rW5@d +Zb?K%*@Y}B;+gM^doxtw8ql_Jy)|hd$JDeC+GLR6UTYk4IT*mSgLow19S0v<1yuOXObM)q{m(cc#9dn +nH9*+Z#Z$TUDUur;8S(z1l#neKb0YHk`-JD+^|JSW!a&PTw*=8omwO#^)em{`J-GJg-ZUSr(hHom)Mi +|-O)Ci^a+cT?_GjkaZ~WwM+YdK0<-{;VCVL}drdVZwDb?p1idm3Jugw_Oxt$ZbNl~$jWk|&yvL^nLbI +5Sf5RzZ1qFEHhP-F6@Ps+N!lwmT%UjJ{%IKqD9dGKi`nIReLI9!ttqf}IQZBM@66$#4Ajhosa6<`~D# +S9eONx>^17{%r6q@Fgt^WZ~O9KQH0000800Wn#T-jPT`uqz30C*+<03HAU0B~t=FJE?LZe(wAFK}UFY +hh<;Zf7rbbZKmJE^v9RT2XV`HWGf)v>#=VqETeQ@qEMQ@b#S +;7P2=&s=O*kkJv?g7BXIDH0;HzZ`_!ey%K_Mes^rEv!EL>KaYfwdvM)sZ*X0+aI@^a}$-iqz(-3C;DU4!h9{aC`Jkj +=T$R(h=YQn}%;`4Yz{_$@NHP}fpcGGrSrl}KQuo%7B(!cDs=-|-^Pta}@TARoS(W*m9wg92*D0o>OqfWHcU+N6*=GUT~$RsR^Oj&Pg$1-6I&Ch8Vh1C{b#RG|pPrFf= +hHaibAUVVw;P-teLp6jBpoCJw~!=MYL}979ja{JzHMCUJjfwSwJXYE{)m25T=cRVzv;$j@K+61BiFY+ +2_SEbk=uRPci2C|zjlnAEz7{Lj&2uyU2?|AfZ7X5AZoBLtE<0P7$x_e`cl=$Xfx8MJ8ef1o$@Hf1E +{_5)HW;7XfGiqR=fi(jABbo*O{341blio@sc>?y?eV78|3wDp0!^(Pn56)QE;7+AEfYvtGD+t~!U*m(`c^%|2J?Y1ikhd7Y?R3Gs>V-RjG^L@k_ +6>){tE^s#NtX68xZ^7I+s`yIn*t52?pj01aCmBzyd0(dbu(+(OFBf?!^M*6oS~Qd9z@rr_PzDr=+H=! +CtV@6xhaF+q@`@GAzeg=od4?dXNO}VU1hUISXOXtUU!V=WEoTnaxF?(G;+>@on54OPk&9{S|2gkOGPt +u0hjVmG;%K;v~$rTN7>U|>DVl@FWCan*{R}MvZo3MoxJll0KHOONi|5F5@X}TAZDcfS5HritShRoZzdaY2Z(efC +uAyhjuSNF|rrVV(apEs`oP(C=`%Wf)ap648i?HBrfRymxytx7ReQY{%b+{0c>U6TQ%!qr*CvrPg~oEP +AUIM;mSStZ1G4ZA*eV#4Lz~mvDHTE;TLAe5-AGJT7CUyo>lxdz=dfC5jamnaOK?a*S@B+Y5WFOUZQB~}oOZfNT^zGjIxS>x_sgAMnlfAN-D;IacJJ-r1K(@H7<*vQ +xq$OmUja@f$(hL*tk$dzG3w$XSF<>o!dgp%cNTC^rdJpUe6R;hu5oXY3s4+L_;;syNr(36?D~E;{R5B +CNr}Cje7EOJ)Uw}G?A+CiFF{d7|HtIXLoXtK?`-$7SCXm3XZA}d_kV%l3I_x;iAP}jAvrKc)>}ah?yOZ +ozNwLssF0E%G`8(0W@%xfbizgQTm58YZb>Mj;S|8Ty&}NVLXO`KBDWaZnQ)KX#QdhR`8g*C{3%DNX>C +b@vRW;}zO4h@rMn0MFtkUhuRIg|vFCu>~^?TLY)GFtCbyf#;9+If4gojr^=~^Vxu^ +ADyXKubQQzhzGl(G0K7A}1nV?&9sLuuRlRY^q~h&tVC6+14nm& +?f_A*Q|cYeg%_)F)V}a2CjtPu-JI=`~D={G19($M8D$L!5+^tkxi%U;_LX_?Hk5zKbaWCs?aW^I;EMy +!a5=rWv1{L3z{#o{y=-`AAEWRci~RZ`)8ejc(0*E;hxc%8RX~*E^;z~w$_cp*0vEh8F>{HHqZUMn?_G +&=D>xkl~A2W(CXJEbZxGc0}JgKG!&8}coMRwf2v_ySpgi{N>C9Q(CTAW(V(v0YE$H-cjy$3*oCnHpC? +o{FU`EWvzcv*@#T;`oNNn2UBGPcvruzR?{4T2S5`lZx$YbTfosM|LQQhJ0?3deHocS_|L5-Q_H7m?v( +vxW^8p$~Cze0n-duhE%{4V!*k~Q)($q?J0?$bu&vGbXcI>;HZIvl6}ks*=$- +28Ab7+AA;-Nq^)#nVFwgbW3Uao!sLc$ +6zx79!L;x6(6u_~s2wk5Rd0gx$s}a^w=X6WyX`=#r+d-^^AMedwcj~6I-l(amRCREBCxZNSk%(#3h8c|sbHubFooCell+&Pf!88^yzlv}?xub1MRe8@9$_ +l0W$)>$s+RNKIksUsX#yN-UgJpyaimGNM=~-96bE`FIy?8@XVTpEFv$AQ9`YD|>h~~5^)H`5Wm|6yGE +DES;y%M{*rc$n34YAWuhNQcYkiQW@k73W9tz(Fra~0Ht~4t4X=a +ES*8sUA9*tjPiFb0`e~)M5+A#4bmmc!s9uxdisbJTl&!mH&6&asL2M5dQWb}VfO9KQH0000800Wn#T! +IsUj&>se0Qr>w03ZMW0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rcWpZL#j#bEc4o7Rih{@{g%|`F0FvSe_QC>??%6wUfY)(H8SJ4#yykfAv_(|qPoTZ%|aS#srB1&fj_QUB +*4HJq}De2{_;}=J-PmffEDZR_HtmLwx1-V>hMO-pM`y00lNbMS^x_Z4um62yamUFM`M!if +!=CAup2}q2hoTUnR1ow}<8%_I^GrM+i{8_|7(NX~LhOiD9xay92rvxe2Y|MY+bB<=5>xa{0`8|#3FH< +PVq$-GWbzAIys6kiwzpAbpRdztnPo}gzSK=;YMaTqTW)VDiy~S;(M6dDV*k0wuKpsYB{x=Qn8|6DM?l +>@tYKuv{QNu&!;8MkbJ3U|KfgB(3vcsiRZua32ZGgL+DhiV$5Fm0MyjN~c>MU?t^2068vN+qhWOB{CF +4hRx!;(GSXsa{9=}vLg5mj@%WTe2lt5jHyphTHpbin#-sCX%^OS~)J8C-^bUF=?3M)2Ey*Go>>2xNqj +?T`G-cDY>dHcu1SI7T-cy|2ewHS*Jl&KpftLvycf`=|Qv3mtv313|47gPL|PxVjed+o(dEN}gn@D5)9 +>nqJG=fx*z*aS!g*w0v;cYiv1dkW2(oE&0XUw8YWdz{_?Cz~l2hHsolkI&%?;(y%>=r2+6WESU>Nsq` +OiHq_aNce&&LZL|24jEo$(qg#xc&wj!pdNmKwQQf +0iAt0bDrp5@k}1bLE-e~f@X1&n+Uh12U1_E~%sud`IDAxUI}JgoHF?!v%0>vX^~qs>bPx~dgClQ*?@2 +_k@antsbPL`U$*od6;FS_6}~hYb6w52BEZrA$fsM?wo}$cj9l=jmG_zygw!>{jMe +%%uU9KEm)K##Vt~7VpyRHg&6ECO(6T;(07{Rr2%a&nw;7rRlxPtY$abZ3Fw^=8ref8b9IyJyo%lS&BN%$ek +b}q(S08!Z6SakTT^N5zUV-RjHRCXH&?z1_|a40=H#%7!E=p!J)$1GnLCtcN4KWa^NdhAWB7V39}s9ImH}{JtdlVm};gG^gJmtaV4RrJb^&1SY83S_X=e*nC49qxrnBB>V*t`r;56T%()bQSyOl +ax{euvB~k$toXcp2%sCW?(-I7v!MCY*kkc!hi2o#yl6~FW4H;*}+@0K!D8M$Z3ng!mD|RLo^9-b3u9b$H@A +t&RKRY5@A-6=|9B@yp?1qZ#eIMBY=zTxxeSh+djE3jugZ;;d4O%?92h2fNN@=U4BssJeS&!H;o@ +m|nSLPeAJ$^td``9peHRoV6DJe=%be81t@r^o{Xru +R@Qvtc8zz8#=+AyP$m-p?BRgy*YvtH)S+xH*s=hju)MS$ilgqZQquWSob(Nh=-n@ +DVET#H7%#}x>`*;ssJdeA9ef2%P`W`F<;CLq)>ahjbbKdVLjwrubwQ;1!D+wNY{GT +325{WwKWKqa~ZM8LQ5ucu}-2~$oIgw3Njnl1q;b#R8FrO%*Hdaq|gVD8rxFKR*-%&MnQ~1l~-`ko(Ji +jB0-=CMVpM3cpwj`dI74xt-TOE0(u`I()!#8wy(5Vo36>K1M>#TX>cg?91l8^S8rY%zH+q=87iFh@~&Yu4ZH`KgNHTo5q}?^zBoQ6j`3qu;F?)^Jrc*RqYiCl +G=Ie`hKXO$0L;MBM|`BfQ6MWC_{F<;rKuLMi%{g7L5(Rw&t6rBn4BK}@#NK!nG?saUmm|WJbUx@6nZt +!v%le*V%h74gW!YFS&F0g5)k=N16DjK6Bq +=8n&EBrsb#Ui#&#KaiLMEt;WSJ4Q@Ma~MfDQq*8(-_1fqkos#5xp|p)!GCWDXN%0S7OC6A}EomP7lBo8F-1HP4}E~Vh6D?A(iMnX4>X5SRmGr? +J5o$-MV)g;Sr%+E?1!YQ%jNYG>t-`hCvnZ;DJDw?}kB8%em*ca72qmwEA=5dFDqN;ogAMy6ugPgGqX? +$HR;Ry$w)s9oUkzPgwEfu~Vi^hSyDAemm4qy@G_X`r!BMlM*7PbzGG**s5-S8nHT6;*t?Lp^)7I3jvc +11gDBcP^e@mw78HVb3>Yp(VpMgKvysl@dElM&l!&S?}bN9&}oN|4EgkSqur0YSMWcd?)Gcc6evof0v} +FCpm=XZNVGKgYY>nbAugqn&-K*GB*O$g*3jnJg5iB0en6$)3OxY#1+jy*HzEfOo?i_&q#QJ3$1cVGJ& +{4nMu-ew_Xy{p?2`(p*iWt82`K>F;K_|%LaC#R)g3zrJ*C#TeJsize$wSt8oQ>ujWpprw9b1!=OAFU)>|bN +v$CT*+~5ENt(Dhv2r#;Wk%^|D2!fV9OUUy-=cN{;$=yPaV4+qv4(m&Wn$(aq?ZShIZgHgtNe(qjWfeq +Z!=y7Rt6=4ueR9fUn9gvpl{QWzJO`b*a2C^UhCpv-MGcJH=v%d(MyUstR5y*+YQ5#k=v!Q?w7KgLUiu +I$LIre|tNErIHP$H<7~m#7Z%=8@^la?aL{D|xV;I$PUE-qI?~vvN+9}tg%gIEU8UV` +hdKf&Vf8qM))Kv1gG7$*crkRD-7uCS)d+_|?FmjIt6aG^*d(_mx?0nnRAkL$qp+DgK-x?`N8C&vByT3I0*6v9_0*!0ED4QNpp}=E*S +g{~wo7xhNEct-fq^;(aK)1%&FhsC655JiUf#og_FPNfDZ{MWn5*n +OCgRL)Lm?QZt$ZTD*M6bLAvc6<=P``WERi(=0_^hOGGH=tO+;&43s}ddJK592OH7UU~BURMIk(X*)Gy +7P?q;jl*^~P8b(3*`QgnG=VdI~^}Tb9!>AYm5!K`}+xP}(7&l$JQ1T18KWi;!p<$YozS&ysiOtM?}oKbu?B$v7KMZG9iE<9o@4YFON64*a3)G +^29t-%*uh@gX^p!ZRC+|q)rhUCGs`ylqFN(UdUKUqm1Bs>w1SqH>y6_zZ5T7)bqy&84pmg?gJ;|pc%h +ZxTGh1R`!KxdY24_N@Cs)QH3-}(iK>S$&}khGJqc)t;?AEf*+LsjAb{VKiMFJ0bED!Q2cD3ivTFG>DX +fP4*giU;iLTm^nS50(aD`Dj|fJ%sYExi_Q?m>{^hI^4b#mzi(s5rX(<*i|lsBLFBBq~(sC +d%V%&5MwQqu7!A0wij7%TbINI=YUNnX9;gC6<9DwaD1DkgXTjWFnHvr~MCv)pe?(OY19|p*SwBs#o~o +@XRZCF;o|ZOPZ8C1`Q6#=QaZy5zL!4Mb6WfIShG48EW!4@xh@(Cc2>Buz%2h>aal9H*pX?)!vD1iW>B +X{Q=BF=*PH6#=)?$;6XSH2Uj+T8$U{$X5y^AHKa*HqX&V#@J_F7X&WNxtE6J&P<6SGzHRdz0aIUd^Om +OwT5)x6Q3(E%P{TB}?rzuFJPu%3w7(dDUt9tv-&2I*pPsuM!(}i(rrnd>FvE&ZnZBtIhG;Ivlmin`vr +s4ucv6U=hqqvj!E?|Awt+EvQ0*#{2WE!X4{-BfoT06TAbD_FROfB!TCl?3W(YMX@TWQ5V4WUn@sbX#Y +u_4IoHB9k?mphAd0yFTba4;+bW42P=SevRSPk=LhI7KS9U%f!dFcj*M*N%F1DeHkPV%R^`RH ++4$pT?5RNWG*j6rZb^CZ0-tfZoRtVxo7cDLja+ +RLgt52D?g+XqDFq`2*_sE*u3-0aLi`#n)F7=zM*Oo<{Q#cmRFM#o=RfX)YselUTYyR@zmO{G++h3h(veU +L4{XHHh0~ +q;%g(xNjlb?-T9!N%ngM`<8Ou-yT-q8pf_}Z;M9NsH`pIvXG!{nDRhjKs>uU*EV +jYC#*}D~5Nt~gv>WSRh$b3bDK75Eyg!n5M&5_v9r1=qL%LB2?1 +(9l3eX!ki^}K}%I7=>5_2s3<9hElSOwfhiNgS-b*3Vs8s6vRecDVSDd>GW1?DS%dV +sr0Sz)y$*4U9~RT#?P;~`w$l%dqJqC5)~W#(oMZzXP8a@I>Ws5FFM1a*6tn4Hr0fegJ^Iq(D{T>9vVGWC>R_=oRIGWO`R|ur-6+5*7Zyi5I@*A`$A=4iw; +z{Mt$~{Z#iMDN%A#;{3ZXapo2~71DmYOPF7c@F1~+c>1r0NwSI8Tj~^#;0?n{41BE!?AxYqW5SMlRt|PhqKt88rR!7_`qQcEn+F8{HLR78g_6;6z?_4!tPE|NYPZ@&OvS +LrI-;f@LO%xVg+_I`x8UIeOlnSvlb&Mc273!s8Urbu90QNO+S}F848xKyRUPhwr{IQfG{FFfWuB%VdV +T8?zf{E5%@;Qz6h6k6Ms#3;f8*Kpbh=sHEmybEpPQsxgPC93q}tnZ2kGylyta~jX12OsDOL-RSo +9{O*sEi;oI8*I3Th^>=UaJA8;4lh>8AFP~Yz`fr$hVlUY11Tbo!R77Y)>2;VK+JN&?VljmIT*t@uY5G +(mi_{!$7b#u{C#Jq#APG?RoUU08v!^o0N`FI_^nhhgJHs#XG^VNJR(7Q2bg-9A_Z^K~FkymD7I=eN2q +`nQ`<0%q$qh&Bs0t`cv#VP@YSSgH%go5b0I)tDrdOG0Gxi5mZ=hL3ct^jo*k7Z?_l0KO#HB_gtpv$eP +hE9&w6>E!RbHt9x71m>CEV!jOCqq*djm^TO=73k@X&g|dFBi5NS!02js2td8jEx1=l;i;W(Kh;1-PFT +-YEWF!*0A2Z`+{y30l=a}p`(YCM9~KtAKq6(MfedTzjyDW&=&xNCW0r%VDtEfG$T*)@s8jkGlR{?N~l +Oh6VRZ^tA3h;4r*-GVJb4gVc?D^aM^xy$dc-`39u>bsV~1?-_CmQ={15hGyot5V7ZF77rZY0Hq5*Dt298FZ3F2cqDcEfJ?mn=?cryW^pluK`g@b*R +>c@seUUMdmIe)03}2MhG+k={x8sq2<|(r`?yF1@nLqPdlgs +bVOT6x(hJd}Gi+4EePx!maGve~@|SK;7qV>8f3*vuCdPWhzBuTMr@>~l)v`gJ0sL#prVvOoXmfV+>Nq8LOd(28w1~<5P3CwA +0-lJ1^j+E!&*}UFcYDDTw2sZxd}2ynIb1;$bX$7#B3wGMa6Evf=?A1m +UxuJpcG=Vx1L_^MC2V*zd#jP(J@?6#PT-}!^pVl+cDSS?@R{UeOHr(T;2A40iBG(;zb%x<*As2V`ZHr +xk9;#dqVH^m5KD@9CA0)FXJND|>z#SReAj6#=zW^8BdEWP-0&fE1JP$zxfO~jAd3rAzcqfS~pxO|TG) +dOa!bQaucMmr9qN}OSWR*d9*{lkh?yJpN!ucq483hkz>HC0W?t9!Z<7BkWqstVVirIwL)%q%lr|p8Dr +WwJQ4PLF7tZWrj_fp~6H@J!WHcIgZrP={!(ISddb&8zBN}?;=-VKcH`5sX!&XBg;kL)CBCXuQprH{Q0R<5MwLd9xs-D8ghRQ{j?!v8T}>8H#-mJagGSafCFHSqo@S&r;l&BM7q4Z +9H79Mi**{^fJsXC65fLss`mlPuBs1YwOPM(*(F9*4)t+bZC#Di`?^}lX@*C<|DF4a6&sL)7T_A-U~8l +d+mUi`FH)v?wizif5At6DCs3~edAbQFF5vb!IcUepQ-c$I?Dbh5FPC!mR`CWuP^syv&wEbe1e23T~Sl?~mun<|_*59-Q*|4?0aYeDZ6lMY4vgZn{&408}yq!NopAdpl>8zdjpdqbY>OB5h#RK%Y>QbP +@B3P#W``2U)HGa_8PB8ip6ta*XnSI^H}T)U}59htr?Ioc4ULSB8BD&QFh?$PhA?n*$)M{&wWC>O`}yk3VWs*!!>5(0f8w#D_&(w^o*RKXyHI{Y-w`8sex_kp8H=ODZJvTVO +_yoox-JIIP`DFq&>R;b&8qlA_nN+8aaq=hkZlk*|24CsdMsT*>$LQ-4sKq59x%gpHkomg&)gQRSoqai +Stc`n_;G*DRY&jYUbZtiMHm!+s)f||C(+kfLy@Y%oqaY=Ip9lMctd>=K8Jl($n(jc40_WW}^FsVX*x? +$+)(*D8RIOs6~mZ`{ZFcb_`V6wW{neQHtguX)to%bpUo1~K~cfjn}bBs~DvljxGj=Q%risCLUqxUMh5 +O28~*6d1s>51)*>WSy{>iB0!fDKjTGQ_Ufvp6DVsZB5t_OL$j;1=$*746OqL4(23QJ +uBPEIEN^9UBfILpGQ4Z^KcvZztWzKV5cOc5Sm4vM!y +jH93Dn38WHd+4kWYIDbWPiF+U$oe`ubo=%BL%caRG3J*D&%4;Gw=j?)2=f?nYC)lB9NXO+oic0y0btE +w764IjD>;eba$PoDM(*2vn|gTLZjr@>EK*hk#ws#6Y>sB)S7t0b0u_nVkOTk3Sy&7b=`pZ1Hj+{TuSS +AkQ;*cY-|_wXY~-(}AcP4ntJ{&H?z%5Y8F=%>XT@;`ckXGk{<+{-Dk%bq*)N(_9c``e1huS&}@b%&Xo +ihbqkTYFIEM7(JTGv}%RXA;SPl_i;oehbeN$D6i8ZWYC3oC^EH4HR#OK_xPF+6$4`funm`1wOwA4;)i +<85P1`qWQl})5c32ezuU(JEDryttTM$*py}Y%CpcVB%t3b0T|8JB`2od9Pf{jQ{f162CO5EpL&psR5; +~eV=)Gkf<9(pJXbkjsHHN2rIzGTi&wcbRTRZNhW;E3)qW!0V04a}ik?%gabEmN>1(hVa3i%0Mg#09*h +DOaUtbXlD`7&Bi$+jt81)9BthO$-num|WBA1Lp*RXdw1L?Ns7e3$>Q(nP9*bCS}HMIn|CRpHad8XWfF +HoRIs6~Q4en%Su3ogNHo7iFBj0jf}UiS}^(3Z0;sD9_S)hGzvM*{XRqYGtyP{i@4~lv4dZo@R?YT3z! +M<9)7K!LXX8Q|PwYYrLE!H;wP`fZ4i|EM1_EidqlqmKc?wj>i_-WOngpEz0|cNA#ZV^Bj66zTv09xjs +p=R2VUg{h%m}zOodm-|E(71_da*3)knjs^+Uu^b)@iwR&hOmRWOzr!vdg)414 +hK|u0Cj9D^4KXkhxW?+>u~*rUt(d67QQuU40lTYH2Vb?dii!CZskWopTAB%}2*{EZIi3$L4Lc9;ryOA +h~DGJ+Z#fXEFk&mblX|)S9I7)06MsoPFrNP!3x2+o+z6YNrxesxN)vD+-;5)>>C@cdTw`%ms2o2X$4+ +;kV9uS4GUAbyrgh`^tkS6Th*etx7Q(kSe3tF5fx4IUihHP}2EO4Xxq*czC>f6tz77dT0UDb|@8(((#z +RK!3D7pV~qX445gh2E&0JT%eNupb37C7&nCRFzVt;IWw>oeW?-XX;y<9S52WFOaYQP)eR*0ny#3n&h; +u9IWBxISRsZ7x{2HHaL>SLZe-s!u=D>=O9KQH0000800Wn#To@vI>zD}u0DT+)04e|g0B~t=FJE?LZe +(wAFK}UFYhh<;Zf7rSX=7z>b7gZcUtei%X>?y-E^v9pS$%KYxE=oApMp~d)Lw15*WF>5u@-X^r7`B%f +$g-{1(`!jbgV`eb)uBiE&AQ}{7A}@-_qo8#i<2ck-zshK2)DQ`yo#ae^@u*NhSg|Pvx?Mceco~M0MKj +n=o7CGuM~PcCt!%d%-h*(Vj(e*8b)1zq}GZ|J7n+9fiJ#l~C=3r%JfVO6xi6O<3R +T==UR;tkUpik+HhpV6R^O^p94O3MJx<4d>#P^~D|gmsINC5^ruG?%rs&bCE7Xr9v6AP_czb#caiHQXa +#HCY%t0$vN{EJiQT3mPy9r6-z{_z#wNC4`Z0fIP;;ND6>VVAXdqFcF$7*@_=!rq#tsMN+A7w37dFE8s +}jo6sua2i@oAb7;Wn9*Lb1-bVKqRcY}&$2Z1NlFuBev}7fN3k7+%h2i|0Xi;<#O4ZKkgZL&l +tDOOH6e5o{X#A`s43#} +JdL4L1lnndz-gVIgrCt0kC`Y9E+AGKJEpAk21osiYKaO0H82o)2g##sgDzCBVRP91_6IUug5ZldO +ycuc#-XpNrgm;kMV0KTRzn`fuq+aAI|x(bb0o^KtU^j}Mu!2TF%?TQ8-1Dy7@Ik!b}bO|g1_Eitv8st +D!atsyy|FMQh|WR%z6o}g*mC1PjwMt?7RjUornnzg1Ym+%Wmtxy!GW}>z{7x>TiE_8nxO3PJ`RVzW#7 +*7_4g49LK43S;voX9CfZu4qYqYnu@vD0`+whhS}rOoNw`3LCtDtl`32l;0;>*{~++UOn%Ql|)C5ep_Nd(W*Y&x`OO=v0W`bHP+3zu&Xhp$Io?x`ZF7q +IJSd3>Nz6j(r0$_${K&nX!AfJPax@4Wab;S*a!xH^(bgV3@fzD_;~1ghJIofqn@}t;_TQW3OFpp%$fE +&9DQ;2>{GgqmhM(66p9X4^!%Oj*(Z?+5%b<=pazCNM(MrFtARWS~xuuuv!qHvNm@BPx+E$9E>!%wHqF +?rkX%gGo6$=<8U{jPz)B?Bd}~17UaU9)^$~B^G8aKF>tjT82SPSo_DiaIsmTuzRl&&o@R>IM;ydKnt$5F0sIG1kTX8^H8Y1? +iciz^qaGmr91WTv1e5^OveC-^T6C9fh}TmF!hPTRY&6P8-6hm1nHpr3Cb-LcbG%Cl;V~qq7_p~6lVHR +wta(3;UYv&qBia5*fp1c#$G>M9P<$vQIWt24y!Y#QLZ)gT7%g%TXq64;Gc(|A=artR%b&yC=>|3mSGZ +emtap?Z*(^K*bCacj6_`D(a~U?tF;J>T%x4w+8$qYXzFE2q7*7RUEJoByRwI_2-uqI6oCU6UCA8tkN##95p`a=$J1y%)1jQ7D<7o! +1+WyiZez=RNa&lI?JrU8=Rv{jx#7zBAOGmt;mv+>Gy?<0=RK~!XqWF?Tw$1gUTbiy6+mO7BY{}P681Z +Ysg|PuEfj0HoZJu$My26Kr1HJ`umLD>{M&c>=_5yS4XDQMX-&2$bS0O-PUlvRfpo1LYF6rh=aPLy{k- +G5v`THer-iQMh*nsbDn-_vjSY(HhRBC^FIzud9dN(yd|UH2=*+E`N*m6ur~|@{jg3vG|Hz51$JH +aJdKpn1QQuF4ezT2e2{yXiVUGJrhH-s^+o;LXRjHx4Htq;PoGI1o9yY;D^x}$I-y>5<|^=VQjjAm>uYE|{SmQ%^^tgg$RK +5K1t`}W8wKeuesZD)H6Ua@shk!&q+rzM`!7LN;8Y3rrlxVm(3(Y|`9s|t5r@SD@zd9ghUbmFO)rgpv< +mdg&pxI?J&xy3RsHr?ITeL(I5BAwc{@fH3mBymbi(%R>a#kG6BBDqWYuabI2?jCk}9%yxlL)I%I_U4| +Rr;f$qIamT!ym(o$;0mbF#If;+tZW9hXoccy9W}5eU;0m2hm&y!{8rjuOjgKdjK_+7b +Xf;_K=`rIkwrGb6KdhhPmeKpRF#qxOGLO9KQH0000800Wn#Tws?B>5?D-0J6sb04D$d0B~t=FJE?LZe +(wAFK}UFYhh<;Zf7rSX=7z>b7gZcUvqF|crI{xtzB7<8#lIo_pk6M(w40)Dz)43U +=Wn5D2Y~WVO6!dJ(&M~$yy|C#Y1^+fS|3z^L=D-=OKCcYDd%f^`C$4%A%zB&p%(2I7?~q+E0?S@C%YA +`KwozPVthFWZ#BwUNRhxNKm|b6-0iXzxGz6FEbM0B**`A4*cKWUcF}jk?^D8;*bU0pkWAC@uA>;WcL;qb&2gyJ+T<&mo4kb~`nnI9am+R86NH}I_q4E1KUUe +6RW+=FJUSCgvQYA^w7n%sV;tDilL{9D%?>0$x +9{J-7qNmAfEOe$xT+ktD0U`5LG-SJqzZB;;;pBPX~o0bsCwp)a>&$1lg;M}6GJ7pQ{)+rB1B6OUdz@G +5cITTG3-gc{`Oc$>zC3>nHAr#fU^L?2dH&_vrL>LQxmEr6wsM8y_MWZ +h$s?EDyF)UIvZ&e#h@O2R-WmV)3@hlq6|Bq-;@8 +$qrNAR&Y_U)E*V?X%oC?gF(WKrUecRJ>u#T0FvZs$>zjpi}xf+c=qi`q?VXx)N!Q_(y)VY$U|V7m%P9 ++3DoI@cb2p(qktTdh9<|;Q*y-1-o-Gf^AF92zK}2Vg%cMCt0srd;Kh6MX7amdDi>Ihz9oI0#t +^+^0`CwFdD!g9QbNJ4F?YS)WBH9iMMQOA0l342)En2IvuM>jV3QVblwOCqY353{;-j_!1$<_al^n?YA +!=VC_q;nd@6rcD}sQjR-cB0&C;bt1p(T=sAV%mcYipPP6h25pr947h5l@S>UG!*MSf{QqXA$8tO@#tW +P_WHXDAyfOlUONI1}iJuLxWdkEE{jLNEeG(+dIFr$&b9JusqQD5OdKg#nt+UkJ+FNbmscan%HG4Mq6Y +tq2p*&?oyR?q}%)K+~?#Zs|#yUD3=N_k{yK(PpIyxHnUZ%StU)72$np^ZOG +t=CnkARIMB^QSMSwm +?o_!=O~b8S+-SfX2Ur+tc7f5z#V}9sifMw6F{$R%+P%CjgMnL03QR05%mXQqgSRO02LD?X*q85t_Jc6Nao4FdT&%jfaj$p+d6T#lEz`d= +}Y(5nDy+yE|;EJQ_P~@YDp~F-?sWU&rgE1Bo>BjF!N>im7kY^oYVjYyzV+xZ~2%2Dtyy!gDs1$G(BVs +{`Cfsymejj0+RdCD4iNS-K3;vV4JVgoJ64 +)e8Y{Au^_d>lY))!Vv&ymhHb!uMm1<)LpN8m8c;UxC=S +OHHfnH`$%d~vjxc#{DzTvQN#2&X-eYCh9fF?Fdy5tNb4^Z*RZ6(pi6Xa?*9HZbXeK?8(5O*GJx0s06+ +tA>mG=&2{6tHz54vnQY-wgfRL4EXsJFzxRODR(ze-jH +5?>V2T)(NvrgB%ySl1V(Zv_XOt%SpVRVc!Smt(OW*DL(?squ5@3KQd`=tN=;8^(7O{uE$YDqp{qD0$g +K#>YHks@)FPwS57Apb;lHRwz0P!Bky2aQu1ZZ`XXv}sqCQ*@x{6bR+={@g<`#iVEi!8T5WVFS{)<}F? +@adAm+!5xTf$ekU=*sFGk@hgF!R~Jz&K2*&hhNhq=2JPw4B-ZK>(BA4~JK9_qF;BxfW +|sYW?oJ)Ng}FGIxh$7Jp>dxg%?d-0HVY)8%`?lI#CK$x)wsDay4qX)AYFi{`1H@j+BP8MF76gH_>>v{Q(xv4O) +6oFBrFxmf`-2ikO8kz!YwPaceVek<@MI=E7{smgDf2spN)PXP=-@R +u=cq|WE7R~FRPdvzh2-D!e7H$5Pd$M>z%^FT6?NW1yfD~qHd!5+n#@WbT(IvQ`_^8q>YAFoQws98e^> +o#UVFKPCDBpyhb4;J~Z>v=04?L?nMnv(RH6b%|8|FyWQLs|jbyPsnN~%|vvn3+-64*h>E=AvoxW_r=qOVh6o0G7?gYq6yF-S}+`J$0S6lso&QjR=Hy-Ef^<-yTmT&y6K11=SZ2195{%)x +Z)=jug_sU){kNUoo!klSaXnYgAd#~xTuBtkr(TVd+x36m)DrBj>?hd#GrE5SEkT#|hBf%V8Y?n;#^Rp +z6guNt8poIZ(0$?B&a!17St`2Waqk-!`O-?BtHGyie5m;!nEEtjT{AHC(m4mkRGL8aRNsgVG%@3I5(P +qn}fN=j}?Dts}CpDN*SGXN4A`RdNuY~XMpriS%3n7&h@zzY1_6U%JYNL*m3pnj6`A8h`XvW2RF$e?4V +#u=OX%WnNc5c<9^_>&-IBgYc{tIDlC9^2?jPXjzlxE); +Te6@(C&EeuFfst4Va0Ena@yPb@#BoM4DNQ6TFiLfrM+{<>HHh5G8FX~``Fd~1UOgVKkBQx?lTES;1Yq +)w*sD`hd;e3^BrZ|THG(69_PveY@_YA=PN=~Fx*>VXiMWU=StCouOa<&>>!~lUh*Pgk|wHsJZ$3YXL%n+eljM|~*1_(8U +Ogq%v0Ns+>_jP0+s%Z^0FhBuId6cJ8AIN{&0cAi!A8kny`&qS{DOxFJb?99kI;leKbl+ni<>3*%e{*| +_ij@8BNu~95K0w~+lN|0!+3T69dO%sk)ulG-=cYSab0N^>rj|}7*!Pu|q;spfKvaAGyFgd}1|THLsC2 +{nECPT>Op;J?M?Ghn%6;h=O8;#kR34QPxOU2KcwR6;CZl;gX +~1O@OgfTpVEr#K$2wgLrn8V0>GqGN%JXmC@Cg1l@Nq3L5Nf(p;O%4jC&&k5YR+9MDY8ofW;7yCWvIqA +14?_pxv*6#-$3J0|rwL!%5;RxJm>9cle;-xWoaL7vxEL43c9ftr#RY9%!1RIZC5Y;rJwkfHZL$a*q!B +jss_!*MXm1wj4NF<>h-%Q^_d9iG%=^ymc85sF^-EIq&TTn;1Rg<%RtFaDgVU;Ffqn4c~(v#&gau +F@F~PNEz+F*F9KVU9hl)g%5$k{t;YAr^8izPoDso&jo7Wp0T4-W=*eI%06^+gZSFEti?xZ`+-05?Yu2 +K<%hkRH#!tqcC+eodJq=lh9u$SN>Ey778RsaHPK3@qG=olrGLVXKfKUaph9HG>0%N|JL4Y#y6a5LgIT +t%ULw6?VnF-)BE~7%eVLERl08Hx3pbjkYNnY?Laz(T4VleeKwGaST?!07Z<;@EO@>QA$s|9w@R%@DzJ +D0YZ1Y07%SGgG8O~L0XlVBgA@~9NxVt7A851-)jOM*y(0TnI@q$|jap$GKld@C+bVzIROE}XZR>&s`+ +UdV7kxRX)C(FBU@lt;Lr608x~fqSWSFYckno$M(Vzp4IhhmfF9-O4Sd!;OPmxrEn#xoYsL4_1vDW_rl +9!8^WVS`o3;u6jG5V)0U!D*{QBs;)m5v!#RE&kESnfpE>1d-(;}$0zAgdcb;7{RSY?%hih|^l~*@o#L +$&2mft{=>3UPccKmT3zwlj$+!>wz7ijIp%1z~N~Ga#0S$IZL42iBZ>9sdQWsKRvH`4cOkG-VF#xpSO1 +SSS5mNoObylh2MTn)_ix8<~-&_uWJ%}_23V9~791b_&TqF%5)$zn~ICF5)o`zes_AN(Shw7Jxh6fdvq +anI`aRBdjM4VDACzC0#4o@`)AWIhqAPtO9J?Spd(L7*10XCvr5;KD%{8obkEwzDlCH?k_q~CTh!0^55 +yKQ;z@OD7D4*HTk6JRS*^^TWw7J*Paq888`zA2h*{1t +K8hV!Z8))oFqtI9P&X%*$z+vaCh4u_kV5QnZ`vxd5|8Ajg4N%}Ywi>FGO9h3CrG*+Ys+KyzO<+f;p36 +PATxM#<*$L$)sUdBDQGVU45xaV5NKO3OHmU;{Q#Q+5^g0#?I4bWfRpzjP&;OX)-+Nr0Oma~b&v8 +7bnIaorz(zr!2+vaLnGU@8hb0|%wn9KbVlXzgyRKrkS_(|wTX@YeIF%TqsBDrj0;v}DIApq8<5iXN$4 +%55xm19?)mHH%W^>F7BZ;ttNQ0;EKF`p7TbU2#jXz5}!(qGwfdSWZp%uGuc3sVhKV{`hpz7`u;7?~f6 +)ps=*0d+U?DZdT!i}F7BN))>g{Awon)qz0w9=~$(9-kdDC5u)cRt{NI!)|pPP$U_7mR38f>bD(IKfx@ +3T8SMN;b+M%ys8CuP!i__DI_=17nvQJMlZXR#%#`=aM#9|2Bh|~D`ziLn{c&-LCr0KJodSl_A=*BeCO +RUc$MCrtOrDq7ki5HzohzK3%%c=Rv@iOSI~Mi%Xdmwu<|BwSHNIYy1&*401!WAmP@EwVu#hdqd-dB6(MG=CT}HkJ)?6>_-Q2v@8JZi0RiKrO`r%V3;OpOZNGRVeS +XaO8kVEBVR35?BA1Xhi;2=gdv)bCltX9K*)?mOqmFjytYo~o3n)@ggvvTbX&>S$W(L9iv@!A_g4Vji( +@igz6{{#UjD^yS=vI2AeS+*8>gD;@5um&lOxCX+Fn1Q)_3lZ5!?63ffR%CBD2DV5lN6T2dwO_ee#x9r +kbDV_Axf-t(IRVkTH@&_AUCZ4lsvJMo^Nty1^B`zgAED}M{UH9(zW?HOW)s|$ +njOxQ;XmVfp=(2nwb_Ev(efUYt>L`Z)9*!wU;rk9URuv;AmWem{|0eB>KIR=muc}eI^!3ALjQS40>47 +NAPQ94|L*V9N9!JSH2{v1Ngdmv`6FA4p6KOZgTTG#TD9I>E3URW17 +TJNRbjZhBLPvb~R$^Y#opdOX3%yzhfJ@~hrPoO8FxCnKOp)aJ!@CHb!0+E0!0(}^+UmVGfdL01xi&5H +T&87ten3b3k_XbwI#CM3Yom-b{COWxZH@T=!__Ow9PDsKnLlIVznCpSto49-%(%L`&)6qDEi`y~Ghoj^YZ?YeiOI;b*jYUrfxB&0w`|-WLP1q>v8RY@ow6MUbHr^|K7qT* +9p`Vmkq*F~xp(l)S5Km~_pgpCGp?#a_PwvblG<0#Y0Z4e^UuG#f4&zW{|(94H%ZeOeU0{3MkUU?+*0R +E&Dgf7>A`{i{@Gs+;Bd_lGe&ODyDL9~vPF^ki9ZX~)HO9>bYK=wl +l1WM2{IP-(SfVYa+|Q5lbr0z7B6p>#*2cTRO_akUO_2ofvD8mKd +d)sJp-O4ej;Ks_)LIS@Ra5SO(n?E+pL$s%Op>l$?da?#qA{BD17V#ZaJ7bx_$rt-OaDk6+VW$h(QA0g +l>Mm?JERlF+d<@4gY0V_lqD^pHzOl2<>1J?s0)mDLt|^fH*gOtV15#5Iap?%KmB|Yk?h9?4+gh<7NUa +olnw0$bZ?@pHCzS(~~%9J3T)(GTS=g`Bt2Me7ObY9Za2j^(rX8Ige}agoJ65G|3HjjlQ_3gAwK@KJ^S +0-d1Xdhj?37?=6c}^ot<1!!b?8b^e#?w;i%0;{MPV{u2POY393Ml!@S%$wg|16V~yHdD95&AT~eWrfe +aJ_)aF-qwge1pNQnrP1E_>>e#8HR66Hf|F%Qqf#nN0k~~X`Oa9BQo*yOq+86H#+18%Fr&7ON|F%M2w2 +|l!myzg2+s^sJWjp7))E>S0*7w?^Xk?3%W%BfOqUDqx7Q&Fihr{1`R}j2)#%H(z47+1*Z+9^ +?>dV9yZ6Q$bF$o;N}sL$D9MjTo`D|dM#ilt{4J-9rrgh=gVU*bwh4a^GHlJ+4|aMfcVZJv^ +{6Sqn~NDil5RJ=Bl*bgL=o`Jqru@Wn<5%4`6v46QU1z$xdA6r%Vz~igiG%cdk4>2{?;yY8Yl`z=*(Ye +l>D2MlhnL)u$s=v3Ow1r`Z20%;ltebK+^;TEW@ilSfJ`=U4I!zfMsI})i9kU@Md*Y+N3RJlR6Kjq1=5 +D3+dx0v)V6qlS&rQl`m*(b9jZ?3=#$@SvuBon0oOES!b@JqjJjOKgS-nY%%v#B;YSsvL{^^KwM9ZWgF +*cGP#x*Ad^p_yH>JT@u^) +YK1FE`|>l05?>!`a{D;%cy2}xu#+Ty$AdD9!N#2=t?IHLXAw5H{`ClQqyUn +B^PejJIY!bB1v_cuW0B7=!yHvkgl!M9nDv~ZsJs{N{Jt%(;L|P3A7e)9VOA>A%lM(3s@@yIuLb{rsl3~riB4i+ +|6UoPrgKvI{eM_Ks#9^pZc23z!P6l^c0)FWA=IO{1Mz&pOJ(+>vMIOL(DID$#Ofzb8IdYCBRBjIa}b< +_^ugz<$ZzA;O&!l=^B3EvjkMt-B#6?L#|d;_$w=Wb^BgSk9?tixKRS_WUM)S3y+Ac*>Jp#Ub=~y;>Xd +aE=4esr!29q#kzH@)LB4r&q%l$uE#xRnlyUJeA+S1FooLbs;5`8aEH`6{>|;LH}7u6Ynv;N>#jzVPF- +tM`qc;HC+L?TT)&024t0$y-OnhHy10cdYXGa}A6PH{b?R;rziVMuDw@W`{Q937VyB^DH8kuZX$7yWq1 +NkBr8SvJt9X}N0g1V)dV|H-HI4ijwsMyGgUdXjH1(MAiiA4fpk0@ztqjKRS9qR^b%4|gMHLsyxQCroocQcO|mfs3=6Y>$H5+f%+Pvd}s-bgH=R +hj&^C9^2jVYwQHix3^D8U`=nQO81V;{{c`-0|XQR000O81DB*+9#ch%PXYh{{{sL3ApigXaA|NaUv_0 +~WN&gWaBF8@a%FRGb#h~6b1zIuLq$$gMO{%#kDD+MzWY~XR%5!GR~$s5-`CP!4Wo%_TP +7gWM7q#&^*4^xU|#7h2Z=ME7Yi&J%8-ZqTBe=QP`#Hj7L!4Yg9 +0@Kp!`zaGxAEXE?xBEiHo0>j138}qCLo^)Tzu;~`r9Sebv_L)^a-?%s84gmW}s$cM?ztaAAVxN4g)bb +^u1*LaJTG`%9RcpA17LLZ@s^KP2vLU=4nJpyI@+6CtDQ%*d|hk);m88{zlOnKemn%g`bQW9MvcP*DhI +>crf~iR__+*0j?jf`WS`2M(-#4I2h`>k=38#Oe7y7KD@)*U;VV`{U7rQ^)msL+L{B`0%QfHRxdIYDXe +&f^(ujbG@05Pzzxj{a|E>oUL4_FJz^Pzwp-3UOzlQ^S`R!4<0am3SwFRPY?RDu&?C%TMedP)h>@6aWAK2mk|@q+EG +Zan4qP001NA0RSZc003}la4%nWWo~3|axZXeXJ2w?y-E^vA5z3p}zN0KP`pHE +Q@jxPWSEK0V!$ITwvBTKZKw{3|>lI`};9H0mk$!Y>sa1}rbtNdH}`?I7e7R&i2SvPrt-->CmN}iRQ{qM?aC{rf4SH<)yxvkdoS&~7Ubv|2{v#ea{1_9_|v)mjc +v!cn)=lNb<*HyhYt!DXQ?Oon7Vttf|)ZG*6zL9PjK!K07#vSeOe7Sn8 +=Tom&h23D@JqJ$yd7OShGg!fAZJxXAZw)9T3KA#me%t2LelGRmS=ha1;ByX>BQ^D&?lD}I*;l@2Ivqj +$Qz`R~%H#tHmYN)xof`4i#*W~aQ$44DWCX@ZiWRyIDK|g{Sgcmn?jkTad*d3}Vb)cU`1ATc>!J@2aA* +v>&64f%V-HI-TB+NS=9@f; +AYdT@`b72jCRue@{-?-VEt#wy2N(?!M%W?9IujT28%Io1TL-2yjT=8L)nHJ+DZRjEV&NBqQqbc +lcSU5lP4d;bY-)=hT+2;Ce3=etm+jFZZf&dSL0c>$_B&9WM`4DuBsUg7sj=yX6t#*BV59&O5go;Bg;7;e!dFK0uxq=c$>aW-{6d-$5%GHaVgG9xOM@;$Xs)0}C*LVZwA}&<(`#or@X)n9{(@aZz4W$-gCoPe#dS!-FK*g@yS!J4n7edGg60;Meo3e0rT+0Q#&;nH +d<7)NXbX_|#be*z|f`u8Ku|gj;gZJK4ZYmB}aRXShQUn-Kp1HGW>htju~t+o`HC--^n7LqO(xZNDM?X +?VQw6>(8s45%AGPDb?Q8(9B3oAZws#dO8rj`1n%1OD}GwnPx}W4%Ip@&^!FKmYU5^S>Ow{F)z~)YYm2(#XG_XY)BWrMhH)y@m08pGp5Jm|{fB(az9}AMhB +_SpDR0=D}@NmoOwdpAD?P`F^o3fhtvV`*L}Gxn31>y9!I59QzuU3>JN1ek}!m)3(cJD;{6F0v_*?!4YG2Fdsh3gI^Auh +4l@8K3OHp)<{vxVexb0HVWgKHne}Od8mq=hZuybB0+p2Hcu3ICuzi3c +eS&#sy7FO4FROZHI=G!B+Mh&ne(E&-l38|ygq(=G=B5l$;qqNZ>U +tzo|ysy9lOb#)Fn31@W)G%@-5*-;ekS3q`ip+3uEnF1k!sVlR2iqqPp1R&_yJ?aW=4Qk8NNPXFM?!!@>?Zf2n7frLyoBgLBfBfkuFsL!@G$!AJ-uNvXZ{rt09qZzJjWGS!-kaViIj>-=9rpBN0I*9 +nfV(L&=;_Y*We%tQ45l4m(TQ^k#YgrCIgLH*xmvw5`0R|2fp>r-D6bJXcFP<{r>DKw4##_Eqa^HTSbJ ++_?u|dD5gegqj=ea!zJ&4uM0MPUvNJw9K>%L45Tt?y6}}bL$**$!TF?j1;+q1fn(4~U7~jlq^4U=dwD +ttZ&I+mlCxNu_IWU*!c;ne5*^1lDk;g>Fka<6@kC0)8^K9Yj;_WHfPmW7K8(gP;EmkGx%~$3KXd1;!VeOQ2>Su(X^N$X&u!O0En^Qz0*kyMVxCh8Z1Hgv78e8@NNjz8^Dh3ydLb +4qy|ZBBSrWn+{|GfEP@Wsi$HQ7b} +`QVF#(JbV1R;TQY`p8S;Z*WsgK54o@OcxXGwuz%naW+0a#`6+$G>l)n`@cs;Yqht{Q2^>n^GrWB +=%LBlkMV`30DDs-_?L4ka-oD*=y)G(sR|J6jXXM;<4J +knHs^2zuJt`R%>JFv87S4lZ|0NZ4_84PXV#uUEJ +HzPQ>Mhr~qRX{!FIS{y^`MF-s5No)Q*Cd}h@kaf{_8OOJUCpYgoa`J;sLF9=I*dLIK#yu#L@YILQ{-yJE3k(1r!>7U`?mdVEov0ioxs68@WFI}W-?$KVjJb8N +a{rUNzv!ZddQ8tVl#HGTDlWmmW6fHr~_P;e7;B}u--)0{v7F+%w(5vnOlfspE$;S +_K`-5})x_$a}}{t+xox%__RBoTX5uS+C|k5DLD0dG5pn(GFIhEU$f|ELN917?Rr#WW8zAfSz9ehb7fY +-faREY{76<$+$Grt2E6$}3$5r}NbtS&HKeUOu>S&I-DTR8y$a(7r?VuR=m?S2rZmuqlfbi^6OX`8Y!_$M0&xWI9kzU +r-dO7%HIJD428u2|+btQ~2pIz!IEvnxEIA%40zz*S_9s?QydwZCiicI6ntSP2W3JnvSH!S;|DGqNxN0 +vWX63-7WrYLda{m>U=>yPB;x*Rvtx>&Bv6WXo9lj&!=0rQ;rA8Kq&jp_3Ic#$pJ4^c2{o}xfggJ^8eW +RPRVx7cI2mb4z@EdbBm)(aHr&5FA9Jbwo-+O3kbN}lc}N99dXS0!HFvNT1q44DUdS1lZ@cWxVSk +TLPrmJj!OXF|fJC4G9IPOQ?V{uP=Z(_U74k3&}Zbt2(2-Hb$|Ud4;D@xn4Rsg12b-MYf)=SUO@yb5a+ +J3=jm>RdgX`83l2BIU{0Ujo1MEfd}-)jmO+izRgOYZgw0mBB-LSzvhv +?NAfl^SyDzKNS15ci??fASgp+7HU}scA-%Wln!W1gyvA=E(fdL_bj?h2eg^a5tBLiw{=8}0J!du +wZ83*hbZk)hrrF%p(+k&o!#=CVGLB9!l5p8EQ3pxFvxVDpv-3zy5ms;`q&51Mkb@m(O1R=skM#>buv^ +kGw}DFnsmhTkqkEqwkNtd3B1FRl{fLU1F}uUE3RlY(hF;IEihz-(Ofg=>9o0a+}q&fMcx6xjAFuP+eq&-K)=x9O +6Yl+t2JBJ0NreO9&k|{_MOVa+RECO-}sVEMFp{RZcg=5^(*5gvAZrma!(^*nror@w$-DFVxM-T$bP|T +q~$2<1u{02?f66F|z12RZ8*p;6wre0UiY152OOmP?L=k!p&YGVpgkX#hptq8sSB +Hp5nPusu3~d(eYQu+({^#0&UkjLN(@U$T4eY4CU^e?U&tHG!f*ehF|tcnV+!^Y5^umN{Jf?J6J?UIDx +w>psR;1gHG;$ypaTXwN}Y!`TAt>Di8|j@x1@Mwp36@g&JsgGZ0Z_ySnqp@W0dPYNwKGeihxW@3E4IRH +?rQ*S-~i{vk=O@k)*Ilj=fnYl0bh(wJ{=Q4fU!4~-8G!S8UNh5M2x25$*VRQutL4agQ6%`9@Dh$Gq;ut0Kclq-nR6jFV6; +qKgITeeU*|L)!6qz~70w~NfoedupNc~i)tJ|Y-m)E2z|*b&+okJwGVo+(?49^OBAf +o8Qu^3(jO&qq4%K;e|xex#-VIKaiuA@@AVy}8z((t>S>)aV2X)zPcHHd%{qEU9&}mUrK`wx9PE1@aYaK~`vQ23J_#gfDCk9QP54!@u7c+ +5CFd9tH9ad@!zROFa329bB4dT@|LMi$HhoK~^1?r4c9HAQ($-8St*ggmLSv!RK>Fex +JP~v{Rf9xi2|EdE_wU9K%u1t8p#eAYss?&RiWj0Zt!}X%?Y>|X?Q1h&1nJIh0F4Wwv^oW4+N_-uro#l +ctMKHqjqJ?myWyESi_KI6H7puBgyG(+J2>*X)}lB{8kOP=OjjMMwgyOn^}8V+2MEX$n@S%KN!-dmnp0 +JctB5%CFZm`AhK}V{1_V;K^+529Vk}5TGX{YLMBeR`K5MBxikV!-xP4Em3P92rBtV{Pgk+iOIZ>+paMhxfTcSYTK4fHkpgNv)7R|9&`KOwcvO8VGGy@Lm&-G-i2Rq!+fb*2~ITqjBLh0=Yic;i*e>gm-$tSNn!-TVG +Yb(_~G&-({Sf4Q6@CqYlfuvBO;-dveCA5h_Cpo|g&PAT0&oyT1YH<2nLVwk6UqC1~@ykx@%%wPZd*W@ +`XhUOcFCZ|jT1O``aGTEx5L(_Y_;1;Z_D)W5SkX;V&8PjV%*uE*s^*cI%NT1;!2xR64dlxVF#ih1Hwb +r*gj44(T6sUm2mOG}&p+=D<#Fr^hLf9yXpaY}8=_~AQDSMRZfZnQJ8Cf$Z1AAkQR2g>ar)S8q%`+goy +`+amWIex@pi0lEk!I;fv%Qa+9%_>3Ucp57Z!&$%71N2fj-LSr>M8hiw>oQRz3Ab;+ +@Pwy6VJWVt{%(u;oXA!HYjssu>&vS|yeLEm5eP@UIvx72whAz`YmuoQ{4{$!{3)eBdxP}R5LSkJytOt +L@oEP^c4;pK0>2%Nu2D6n?Dd#DejumK%rF#qbU2ZTe(LA~n(Lt}kYyAM&o`Smy(}zRQn3l&#DH_Jzt| +D67xQ_mdY$8<=Y_BTEs!=~<46LeG23@ibOYpUo;pJFl8A#Z3MHL-NG4d*ye^A(o8;9Sw0D)!nf-3Ygq +4iEDH4)BNTC9yfllk^X1@(lKPP%pb!kuMe= +Qlw%=LJ)vKCoJM<^IMr}c9qJUv`A0a3nnjzNo3cyrc75BwBh<~E@9@VJ{xw=cPFB~I&!I0*pQNAkqQy}ipkRLXAef)FVGi4qi66a_^mEvCmvG +LLEP~e?eWUWrY`T#(jUAQZY2kom?258+%*rDBTjfk*WB_zHa6fomPEmzxwmW)hLcO=(~v75UtWI=MtUfed`{0p%(_pHB2*3ubVz}nYS<@##)9XvO3-$5r`=HGs +;#-t0sc5heA{}qkMtgOUE5=@oC*9LclJo-KI$;+K5144SbFsmy@CyG8#$ZURl^(XT5Hx{PZKeX2Z(hbb-VuBRyMxF;x~KGQKoqBbD +(aI%~NR|ns)wKFpwJi%IH(#>ee1vy{hdWq-d5jhCtGd9IlgCSNW@SbqfD1*TV!kC42O9tDVQ^qKvttV +E$)&Q8Xx$RjI;?D$YOcHH}Rb3<#g2}Qpx`0iH#i3y;2R4I4((fpC57X8d2srn37~QMZB8!it?lHe)!% +;F74NQ66H#hjRv#uTOTHHFpK^qFPzsK(hPS|G|LF9IwdkX{bctv=1EZd8w{8A8#+;36*UJ^ik@ptBL_ +s6(c_mxYJB1tlU$BcY54#UeowD;7-0HIhi-LhAS`9%N~85>t`(Fyxo2pv>B1@Mb1=hIYp&3@xkUWrqn +rKAG?3(wL4hp@F}`0F+Nwgpg`S0XR&=z6pfHmQm>WxTQj?IeKu5sk67HA`~6>VmG{=ku(*rf=d%noyJ +O-2W!eW^`LeLkFNHbMm3MDpqV1gM11OV!4FYNHCKF2Sq^GK#9Q_XcB&5cQV0_&_*a~=#A^j^a}l7@eY +9OTD2%v7#+ZyAv-%{MtMIJIBp`V3kzV4!@fw80l9=tCPrk*;D?jRFy6cveMUQg@7hcAjm*6500)Q=)N +>&)R8LGJt!_BuTIm4)7%P7gYq}J5q3{)|0Q=}&K1EkOH&G1I^bgJX=S4nqa0x8B&D9%L{mC{Cbr6Hr# +vUcX&PIK><$*{SBNDn4#bx*9*WD@j-iE4agY@7Vsj4SZNjE}L?{qi3_Q1l7=O$K_79@nwqA!3VopERSvaF9$Lz-SL +91mRZ>505Sb-0rS#}IY&~>e=Dw0K6`ir>1g +BmI*kmBG@I%wTp*BJzqY&EzJH6=san>%h8DHm{#yJAom*?~*^1>Qb&&I22Jk8)l$Iwn)aHgV=Y`6nja +$&|JLRnupVO}2ERd98Y8Zk=^2w{fm)n;>{nOtoK^sljPBDCN@MQ#CE^1jH>EMqX8HywtBCp89(;**mL +>otp81>WKyrgNX3kvd$J{-9uMq!X|Xr@`82f+D6U +aXbBaY*J~-21OS1DFpu4%x^0Yc)Ig7=tx)of`=U~+DTYkpRl>>g{2&78p(x9YX4}fQVM2o>njNEfs{< +Xr#JWHkTKhKBGerWj6pk?pB-2=gj-$(NLWsR07P?xmjOME`*3X(Usaofogp`=Z^%-qM$l^8e3R-MDJ= +3P8KjY)JhsnTBfG4=Y!nC*~!N5YzNP9O8ln|Rt%n|Vl7M?UM9D#i*;wmk}oy`bU7ezxJGKL-)ov=TAk +0O}2enUcVHY_|stVpAz!*wb`JY<2$*g`0?qu1R-{Yz_i}A0A&gHGCwX +mov6MnV1Gpb&%WPnX3ZD%na?}!AzaF!xD5VxQBn|`(kYM^AqHlV^d{B^f6DV`a93{=vl +s7J`S^J%qE;zL0)5X~Rpzv@tWaBq9_K&biY8eEnxYhmFlID{VnsgMcs0@UrOjfQe<33pte(P;A*!@ke +rtM6Hf+}2V7ql+%QP99#y}**C97hjXvAHhj{wxAt2+fbRJ+g?UE}oKSY*U(HxUfF!To?Dp9=Rq{aWO? +xWya2S9m62)C}w6PV@kK$v*BQT#ftoQF=yuq;L!YF&-Rz6FXy#3MRTIBiIQ61He>=B-*nyI%j3|&^a? +QOvivWGIhEQjZLDV2(bxZ6EbPW1XF8Er6b$=J9%(N^KNTi6wKnPWv@q2B9FKy)`&+hjR207L8paY;Pv1iF4`Dlu=Ed&tNg +xRU6cwF~;KGQ5`QbS=*Kp}7YZW=fF)HH+|IC&nO7WN@*1_K5oT0xU>VzBHD+}hlLK&3|iWZ +o&Q-2v_EmlQmkb#&?8FzHf^_qw+5^>Xh+(oy<$isS#z4X**Ini$jAt)coN=t*m(HH;{D#km4^}W4J|x +YOV`{9HB(j$BJ(%iY?ZnG{!!v;n_vYsfmI#5wLm&OLL*cxGfjxKs9(eOfSX~&Bm3ZVL|cJzVV~%pD8F +_^ca4mOJY?$71~e5SROTKHJs|1ab1V)(s<`O?Xa49P+AFRN{W-JFSgHXF{v7Q|!oDyGiIGR}>5@VpsWf`$8p*r$pekgf?rMYFem>;(TNANxr?sU(ek +*cSFmG(-G6PaTwA25(>z2f;K`Ct+BY5nbz3N%qOVkB8HQ`F6XERn#ckk;<8RWMvz*hE{*7x>!ggvjZ3 +?9!&Pg2j^yn;NAYl?L_qi<3*_^hfOIi~WN1aW=4}8v!1%?u5`RFMYkNyFqmaMDmJD>$EdfRDjoL6+V@ +rs*^ze~D1TJ5JOvH2rO^M_T(!=(NB{rq{fgP^oU*P8|LFPhxn( ++H`5CwmVJO4mCZBJHET@|2+18c--g9LR&`4ek;^-!7QIN@F2?9&IZzgK?FRY=>NX0!Q-)XgY6V7LXhO +U^>#oeYUoPh-pFq`cWyD-KkM^Cv?7=yfq+}lH*Oka~=6c%eHBX0~XeyS*Ms%yiCk+ql>K$7Xtl(Mj3V +c^M7g{8#q?O;E;bAQ4S%dFXmE|ZDI1f2ZZEuIJf6^r|w&u40+Wu9}yf+;lM3uB_#aQJFHUDpF0D~Vh< +GKct9(G8WRz$7wa6$(HmRt833q0t)DDA+Zgr*Ka&0w7ug#2L3NWU6OOxQdlo54G)iT>wq0bE^U|%?B| ++^^zgSCxHhQw3WUz@TQj70mgcPZYlIaY{*HWWZ3h@S1UXI+h}lD9gd+^jV_17Q+PAH$TkUvMdNVqlf? +%0n1Aw#4f^503;N!J#nm~roJ5T<7YHoeiSXJ-=9|lPozLBNF)`$I7jScO-l35V4J#J&xan|DHh53qRi +|-BsXKeG)N2>gHMo-4ALM3*A?4}fv;xjI4)Bl`VxXT5PY(|Eo}LAuD)N3o8$2=sir5Ia*P&Eomt+ZKf +vq_7^PFVM$|wYwYlA|8MF^^z1xpUmUhQX!V1hD0)re#zV%s1^Oe!+~pXm9Khlr|cZ{?lz=Y8cr((l{)m&xe4v1h|kay)n`DmxsT!D?MNoo1!6;~)j1Ns)zu!E%?4McpOZs>%Pgz +q;7LnXiUrvWgx4%4bUNmn*>p37p|Y!_$t$P3b59wR3xFjnnM!V%G5Y2r29AUfL>$B7AhmX4EKCxqE!! +S(1RgPN6k|j1K7KQDJdYP(Y^3qh101MeV71oGm32z=_E}{zzWI9*KTviY>`A)08CfhTd}L;VttlgOi_ +L+N2O-E-M{SguXlI21IwvaA5+nw|5skw3q6#N7pQl0TGm;Wod^eKq0(5oV9sqr-hh41=KYB3pKD +#h5}=mks)Xlw}ZT2qmm(Yqlb!;ns+{T5m{%b`u}&z2-!J5YnM%$D{>%anW}Ucbaa9oN2^bV&&>iMyVE +=v&N$f(eb7#W?MiZS9!6n$^9}C?@~?S79e`fA21PG4j6uDb)3~pw5&qhQ$ZNq(a=ze&&KSX9c_a4)@> +8)pEk!HdDem#^{u`eIc$hGcktrYHR!K{1GTD>W?S!O8!wP*TF`!VMH95Buf5T`HSVvfWy7%dcm&a(R|Fb`ET*Balx0j3r(CTgE&SH?>N(c=RsA$VQy(<=~)w39>Lo5}O&x(5P9Vs+ +*!6AYip#Xh6FV35&u`_r$P+GaJB+e^Pmdfck>Me1o`qj`#^xZFvzT>_!$)(%^6rmKWpQxlVI&xv%sUZ-r8U|SSZJ- +5+q;}WQAO5R6+y6aU1j2P-YVJ5@`0oCV@xr15stWQ~$PC!^ji@QYRYAANZY^Mxvk!Ku46fL;xjdJ2rj +HqWwZRE%eN{P|yIFL^_TJY$LKhfbD7;KETWnWk$0Tk(x1oC`i<5hFxMhWAL1kCD5)k$(O&n|7gNy^|z +{P=AyE9qpwD~#~F;y4%tHmT+_mzYVyvkDrqu`Q);YF1wUDq4RlCKph%RPO;ywa)8c1F$9^?-2n!NCp# +c&L(I`g4>9^^C!a*C!utc;FoR-azl$Q6l#Z5%>a|sR`l{MF~?v>emd6k{#D-s3*wsyfz8won?4WFj|VEe)8i-Wy6-(FK#1 +rsycK!BZNC|#Ew&HZonSoZOuVt(BCTK9a0YukRTYdKnbmCdSKJQ1xB(`3l-?#U=uWIbiIuAOIOsQ`Ga +%mB|@_l}QSGS5_Na=~$`th|i_qI&BXxFIUbT{oIj4I^Sl$k#(Q(;>fSE3_L7&vshHTW*354()Ar`gB8 +6US^>nZPqdb0qmU@m66cpazb&Z_6;`1&j{P+jGWXDAEkRo4#Hc$f%qHAf_6j +EY@4kLJ&kZ7~suxBAEKJ;O%XCn$P7=6PjFa2XfXl@7R8>`YHrN)gZQg);eQG47=&~1`MKk{uwT!wSs= +=I2W^=7N!Xw3YXT*jSwow_JECk)wVU|YQZ+K4J#nng!vZ0pMwECYU^5`_n147QdzLp341(AG +mXSfr1}$7IZqOs0-QM}!N_Ujl<|0nSz)HlTtEd_1M2xMaT_DNSxRXc7)9HlKIe3EOLiv5B?D$uY-vZ; +D(|BlI;7T2{Drezw63J#j+UG={C0l{8(>c+@#@s#!;<_Z?(s8#-}uJiE!Djf27$ogOGDjrUUQnK>78q +>QMoI^S<~%j7~MR(#P`lp1!2`)rcMt+7%f)aT|2fUSx +&xN|Vf-WPzp(&{V|OI8mg2jj?v)rL@8iDg(K})Fl2Kyzg`7&;zdd!RHXkgOEmQXpdFH4TeL^pC${3I% +kp@D;Be*Y!Z7F=|jT#tOu&cE@+{;LRutxlVjw3k|H!^wrsAdh!ql^BhXVUNrr#%*g^hbseWNS%3!)Rp +pX{bb7Ea +xk|i9zJe?(jY~)U(kwI7B1bcY6Y-F@R)NC!27D~tz=i*`A^r_84urQoEr(^TT}A+sqxojRce$XMki<5 +N432~rUdG|%;lX%d0G21u8?vZVch(bv0h=$qOkwK!pQL~2PbNcWakr%}eu7T?{8+8Yq*EohM;VHm^8w +JOee}YW&JQ_M2pjn#QQK5&3l0d?6{pr(CXe70c@(NtkPQ3{rx#!~tr_+NeI~7i&2|8tkipw=s6FBzXL +OyzUbG`+say~(^xy*A$f4|0|0Rm^25J*1?gQQ+OV=HdBa8&+*#(IoAg6!i=zx{P?N>YT3tuPWK_IlHO +QnbVbigdViBrT`nX0)^6}K38Cv2KhABqZt!qsw|af^0$#d%n6#=P9Evq{goh!(x~!d*iVlUMt`#SRZO +@b1&e^$jO0nhAtK%g>RIN?u07MRk+k69-;XVYBpB5u_%)6S1AQUMfunoWCF{1v0(o(H0y!D7g0NeM>W +hYE(qkqKz(hA3^_QCk{FVw-l3T!~+Y=!IrcL#cr>Ce{12~7pO(U9JeO#amJQ^HX>8kl~xTkE@RgPx+3 +;DpLw_HEym8=RwL1guztigFeaR^H%zQ!uUuM;9R#5C9kcwcAigE6n%i4ddnm4LR=z>07vf-|TT(jy@6 +eS5vm~HTOI|hwMX>Qp^Cqv026Z36b*^cRGZs5Jnq~FSA=(?&m@7ei2jB}Jf(Wv7tdTjUAHzOLoaTa}2 +&j`d42feJldGWad`iFuEh^>_2pf_~17b&GyLR_Kt(5CN;OQ+YtIcso!OKicBD&h(A#dbt=NQ_7u)c-s +bn9dogj3Gb8N<5Dei{U*i0`dKwjFEeSZ#-@s|Kcg1Syh)1|P?50sSH*PKJgKF+DB@=}0lFAvHxW2g*S7zs0AuGh@g<(=dOfA8KcaGSAxUe|Bj9Fc;GM$7l +1HQ8Ik@G#nhgM;HcVc-5dMnynQhmqv_YD0Up$uUcaf8xBxIVBaJXv$(|a&AMn?hv|5R9NjE6aSZV)L? +*V5{fLL{l?SI4sBQ4J92C?~=v4uQ+ZB_CXLO$zNceqD);P4yQ^U>X>}a8 +f-(_gul`N8Sx@w0ep+n~O +`$4c9tbeC$)*@UAmbnTttr*AcJBf$iuNj*Rkvj +CvoGrrWl`em)^##U>28{8(6fWKKJ@T=;EDDdcF$?+ym$j*j??9@@1I2fjq}&pqdSkv|E@W+6~fa|z3} +$c!%oqA9gVNp^}8#0sn+UGM5=dFWOgGdHLwq<5>kzT@{qhP(hDOfL3oUuQ@54(EZ)7uER^jYD +b{gi5Ra4P2J8xE*Cdl7e0#1POHE8MHJ+@#T$7k061FiuF%sEIOk~lJhcQpxqdSBDHSvr@*r|0{{JhQs +`$AzuI?R@Jm&0Io_CiI5Kf~6+K*vV=$iNTBro%{0dPo>++sFlIDO!pC6at182YV6#Yc?xZ!d?Z-MnNv +4!ZJS_A2r>Xx(+{9yg^0P`969w(+UvPQEE#j`5~nU1KXFCwR=m!LG>g<XZlSB)seiZbe3x_jngk3V$l0L2icXD?H3N1`Pv7jW^-Z;1MruQ{*H`uZg^hL?fcjSHJsh;H$ +;Pb=5hN6%}NtwtNVp>5=jL2t59ZZPPq0|glXV@tEusZ^-HG4Pp0;p;0uMu3)A972#IrX{I#^h45EvAs +KbTMGa+184x%<%WM_5) +1sCQ)Jo-SOvvLn9-~1ay^^mlA|8=cYf*<4h8Kli +-dOeEF3|(oRGergNknOQlkUl|>dlVAm1DQoM0wtHGm37`_?v%?-V3so|1?P&)X^!|@20jAeXw6Uqq!I +FdkDJb3G;`E=lfc%k|qc5W+yt+D}mv#L*^0*bX@7|~PioE*H+vy@|1<3);Bk5urw5taR-@iaOZhmj1> +lr!>$68Mvu7fy-|5iXw697G*4&s_$Ua+&xpG_3P`;fzF9=GI|&32E0&csZR{ocIiO(ST)Bs09)~;LxD +ZmH&IOM4-PLYOy5xoltl?Ao9HwK=u*}BPP)#WopPZU8uS5nyyY{XWK$EL!E$GM8NA3PJtfx=kl`O=*x +szrVhttX^UL&Z76n*P9~?2Ic1c)jy8RfNS4I(wi;zM4*|cBq#+Ia-e9E1(gP&bN0LPee_S(veVLai_% +eBs`Jky}H)BGMa=lF8=AYMF%%G>MUviWf5UZ@F6PF>FM67=U0yEIi{XLdEPWpR5A^M}_5%qjaBFgdk2 +94Oqobz#P_r*Z9+)^?fxx2cC6%LS(bagJW#@VzW)1ruFmWH&kIZ?iWsY_}OEx% +0W9~KFu^F%Nd|6@aK@^2lYWyZ(zv&eQQz(pWE2)gLHB3T{ei_i+4T|Q|Wn!fOi#!5?kgqC6*KqJ=xlGin)q?Wo! +@G?m{K9MliT0U+z@KYT&2rxNh`Nl8DOz{Hb3JcV?tftnj8*z(eEh?!w|`D(&i%(=iR~E!FLDEP`i?;P_cd^h;r`5G$Fn0v_sB{Uz +RFPv}T6lNY}6=^3!tVw}B+_#>$HBnt1uG#Hx76b(lfNxsdd$rZ3gIZ9Pc3S7%t%&Ic~lWY@f)QnI2Zq +sqTm~ykavThaGoX>9oG^;%CrWVT}#indW>DZ1}FTeRQ$u2NTspQU5mF-yk48&$lL@w9&gyh{ +pG8-+yav6(w0%`KNHu)@QGq><78Lby~Iwe$#-SEB?kDWsi56@{SZj +olj>jL<3WIm(<>-wYmNx0wn%U9cq?WR33p(DF1aj;gXjAJVY*#$JH76_T~)+gv#+#T=3{bH0R*O_!y% +~Aa*F~Ox1;MLtR+q$9qS|CFc^Ciy4iUC@MM%8;V~y@J2m(LFB%$YaEvx;{bUl-yU8R<@kUHc@n^MG;l +o=5#l*@$vv_0`ScAi3N9*QlO8RW3(uQxa@C^SjY;S%(j`jSbLS7%&HsS+L84q*4)MjiYQ)z4&V`h|Qh +fF5Nrj-++Ff@6_XNed)gpB8$+x%wJy36JW!~C<68R7sD5yF7UM6MI|=xfNFSuu69e4ejz=cj6!x`q!` +q^nGwY{t~fbyjC^-^qO!(XPg9xFR{S*_}f?;=L9XIuBk}D>z{`G8Kf=PP!5@#hf#YC)X+u?ba7@1*Tt +CTZ;|@vfj46u%;c@ECo!bX}oKM9a)#14Y<2s#B|x;<970t*)q~#lp|RdCmfJ&_re=Z$aWkmpGk7$YK? +-)6ij27=FYh`w2U_vB9j2`Ed=cD~sE(fU2|b>0do$Y5pL;E4aWj@FXnAc{m} +f)HM{F|EUnk^cqf3?e4rr0<3=LcIr_F;tP04w_@d#$dq}zXD>^O2`IeE)1U2+*R7iJ3Fwm +o|UUM`f%(F_-+)6k>;YPckB7LG=Ui0B7a)FtN11%`r-|I(bqs~(}K?nWQ|9rOhAKBjDpX~iHJ$u|AVF +i}pdV@56GV(VVD*e6xc#R=Dzx053BCK5(V1kgT?N`crzg0a@sRE7L?)QF|u1NXg5?HEYCe>Uot +e2;C2$rcH^b?$~wBNF7+CI6aLo&Z(z-Kr#Rab16?F4^i0<;i?n@seYOiV~nS}E9E)%uc|zRy4ZJmJ7W +25_XU{*(0MPuAz_arYhZr*ar*d+$Yj9 +tU@9Is30L`iPAO^Uv%CA8Qt4Dmf9`FQ`{E?~X&)xzlcSSQKYcR(>e)BneEID8Us874w1`H9QPhOxm1z +$m)FD4T?cuN9nZkAQ7!VMra77(piD4q)Xndi|HHNq~ZJ7<+CS-j4~}oBWc35Mr(2hhEC6v| +id9YO;3Gdyl0*@LawpcprLZr+I+n@BIjNQ8Ed`QAkCz7V?u~>TlcjroE0zd#YAPC7-&~{h!iSomADaQ +?%FfXgP5KER6rfN0!8Nx#wwh-?M7mXEj$Qc}>Johdi9fxZ3)+&hCAv?eWBn`x3KfX#HAwN>-IK0orzo +TXWmW1$QL5$f_bmoB^_zH`8p%4A;U<4XkE33r=4xMXAg*0eGG`O5=e&@Xt-2?^F-Sp1oH=A;my|Yn16#>apD=!Y*l=5 +_5lyK~Y&!zLZo3a)SpKwBJWj+Iqfi{iFpiHM0bua +Iy)@j0h)71j;m#yr{r+(1+l#dAEM)*4_R)73x_L1OE+j|0>TgiJt23Ut=CA8YQKh7OIes-T;mcaKf{Q +4?&Z&wUPClfYR5fNT>CGQrgYP|)s!LyBU(_h}c5L>j7VA^NJ21p-Mtif>Loq-VJQq;J5q +tcIkF5tY>JlsGjCrb!L?Q$6)91COD~JH4>$m#+3;L>~Cq1N}tbtIa2fjT?%N#{(E`ULwRx{vZ)~k!X& +-yJZl<&#{-@l+zjvsh84V6#F9EO)&;z`ygB0$fK6cq+Y_=}58P=8fd>+^ZuTvZik_oGy9z=u)RP?P~% +$8hV7vDz$iU$qbKfHlh+c=`A+>0>9}e-QEMN;FUJKlF{Nm^D}abkPivUv_k*$H?R~Q5@}X;gjhmmpN5 +C_3$U$W>LR}`|oa7>!JJGj#D?hZ7)i@_|V_vVvp0+oq!fZ2k+Zw-+%bJ-Y=d2zwt^0*3tQ7J^r>S3&s@s}qFzeFOBz=&zhvkv%c`qGOxBvs#&A%4Hm1abM$O!+?^U0&u>sn7 +kYPMQ8-=|ap(rDt_J;vE&!+9eEj?s@6|k;pcHEy~8|BoD90#=ZUskJQbHB@Hk?k+a-K7{t(e0W;YZ;q_b!n +7y`AlwUbl@vPe$_AE{qLWtXQ7Xg^eu9N{10{T!bFZla}9k>zT?CNIzqNO(b$EdXL_6VPq6X?rS$-tRI +p_-fzFT`g(J?U$x%TzY+~e_duC=BF#jr_UJJ`ujzXdCEXtj9MZesgy{;;Vx@s~V_35wVlqGaJXDQ +O*!m%WVGre*0+0@>|WPJ373@a@t84wLutGXvoQ@o{2P>?5nG((nMdaR?FsKf4_mwEmyFIU}&3VmKN21 +UhbnUezV$NUSB$siS%lyXHkqPiu1Ob$90(b +O+G7cHQ1+(A*uPrZ)V0Q8wL$-)s`k&bI$gb61yG5l5Ik`YAqXZ)-T$NRvBQR2 +1=Mijqh&5}9XSVh$6^2tUp`>40*OR~PV_%q5KDl)3t5{+>&I+9^z^OzCW-x6cp$Pw4NL^Q^pP>4Aiu; +3Dl2^?$*-1L5BjRhMc4dJ>s2UuOCX=jfSo>(fZOIE$pTnxH`zFbrwWzaqTImw@ub1&U8YJZ+8TuCA859)kPEe~TVA!XD0EcQyLTE9D_w{B^;0gnxm>fSRJ +kd2kjNr)NCzfEwX%S$u3fj3e+DD%XbyJyKwQLon7TzO~2^S0bey|!MW0YPdjaq*DZCpLBrdjlBGf!+w +-iy)c~U@(RW&rOI_5k#T+^*M%FZ8(`6x{&bx&l{#{VSYk}VAU +a|@w5Z4IdL?jC_2&Py>eRYQ-))2D$2;R|!_WtsASmpY>|FBbujB=XPT;5KvP$e`oTmRn) +X~GM(A>@PUyitP_vd+f#A?MeBLnHbMu!W5W`lHx;bfSos@x#`cT*A6Ze@yabN(sM=`kw`x^Wr>RWEf; +LM-Ld5_|aiRn?BHP#SSe8e3VQ%L07P^Qa4HJ6j&@*oBN&v?1v=bs)0=-&qI@05`)_SS#_2jK!UAX;*< +m`w>kST0v}d#Ugs0*j98Rcd0lW!8WjENuHa^87YASrF(^+#J_2Omp^%hXRlg%9BW+FuSlUZ62omiK?{ +1WqV{!yMffwhqEYSp1-FWVa`bJFD?>}(+Yn@S7;5c-ahV{e%sv8@22*aUxOY4^WKZ@nISy^1*VsUmrQ +Z4nq%@-9~it6_m9)-T4S79&A6ZrRHnV15}`MQ{!+~^7iCOEK(__)B)JCP_Rur9~1PHCRbCgSo1*mYA> +B%mTX{>_^cj$0D#8e;sUniQ0QgZ4bYt3R&%(L1E*kGihfw1l%wl*msFbOeh+!aq +iNe$7(eTCkN(D`FLG?^-E|1i9zWiiKMPj-@!yC+;jCD)X2i5UFVBShYvhpFyzvqUE!b6tyHkg22uN=c +!!Nb`h$hn?_ud>n+B#mqfXMN3?#=Nn$`_eY5gsI5yO?4pifz8Z`^#m7#oU|T(?X)%MqUzC5^FB}q836 +wrvQBs{ojvK@>Ozw#&Vz*EX9|!tJm{3#7o9VT?rU~+9GI+h|1~1VshZ1%w>@_8{ZdffH;+eZwEih>5L +2>~@Svhio18ebxNV~cr9<<1(5$vDAi`M33cd>A9>UqHr9;=jJQ|O4;d9Zhv7ytT=c?Bo!a6c2hNoAkiq;IaT}5R=&Cz +XRulg1JhqJyAQ>@fF98zp0~^17HTj{6o(CkLU>=~>gj{8~$w-balUhMMWa1O20hqHr_Zk+ZwZ#q%Od~4l`w2$z(`$Eb$nM=X%Q5X~Y>5-RB6f +6X+tG8>1eHUlvg^S8d4w)Ua9-TzoMaD!Khee4LNEwt?V)V{Ru#^Em(HHg7te;49_e5OdIo`=WEm8f=M +8AL9+E_JWO+l?%wp_4ei)(&x@HZwtuea1r{2k+;s$_s0kYlQYDyro?0gJo^0!gU4DUuUtWajRxJIe}GIB1a{~~DJYYPzo +c@INGwhgw-jlK4pl!CVnxFb;&sG5_YDn_T}s{X4rQA8fqC>f|tWWNT$%u4Cdcc#7@i9dHO#O3Lx(ce{ +9WL<*3Z7|A4xo9Y$wu2PUne)pr#C&#LsGakCiX_#;RgVrUpNhvrht7uxd`pl2 +MGjj=h)=NKZ|MFau>^(I=2k{JcTKD$THgiKBImM(WK@h={v^0%R$Z@~^cY3QbzQ9PQxi@M0m8PGC6bq +szCQg4fv8z&EX0;UU# +s5UN)hA|j`-<3nZUf@$1UQdE+r*$vli%rz%+Fp82&;0Hx9&ykwNhUC!7v~LG8KP@|-!>Z`MyYb!0Vv` +z;`b+|py;!<)0;TMMc7F_(nA3gy$#7LwP}g@4d$-P1CqB9oY+(=BtL;+pwEw#GfuA*PP50c%T8=h4u^ +I>)RuywfWv%@Jx?7=UoNmXf(b(~mK0E)?8@R)nS{|)ub|Ke-RAU +6Y*XiO~uQ?eWk&)NuLR}PB8-`EP{V}~5henVuWZNrO}yulN&O10QFk1c${;_vu1uEQXtvuB~)snx4(E +%>_PmV{Vflak8=kviY>Sd*h<;5lykQjCXsZMJ0DzV{nS>$W+jhmxV+u=(wtqj4+1s0LxA)f7&pj;hjc +4MFwv?oPR4-X~XZ++#4|3qDZGSvE(-$;n^XYKpCwcwW9kr|Sci3&t9<9r|td_Hk_ct7_kXF>y5Mx@fH +e>YQ}XWP8D$nL1*JG2t*26nkjkF{jKaH&CV`IX}pmob#!TocXKd;s{eHi61vXlGN*zRYT>$kjd)Q)Uc +{jYzRU#Hrez^fM_#D4j@1{Lo`Iql$ +`%@9OeyrE{(t`O|I1T5waO^BW`A&!&#L#{PSXcJvMVbn(0ZPNF_4G!cW=Mi`^=ZVv*mtA?jo;bDS*;+*`z9B$QGh#LV-un9u{!3jV7* +RHuegoKL*+`MtQxF8X%*jT?Ye_hIX~YEuu|t%h1-=AD%ur^I$-AovxPJq$VYn8ntm~TXV>M==P49#qU +bAoXuz9vRQFF2M$7lfU$jx`Lph&jF*F~(X^p2;zy>{s*xy{Jzy +atGdt#z6h&a6=+}nq*7uV?ByP7y}D0;G$|AP%N*?Z|zKs*)9wJJsrP28zm7?2d!Q~Np1ck!L%olx)U} +pDg7|ZWO9#LBKeAhc5{q06R%%3TL=Ci$8Xvh6mi=GhU*<0#7hPqM1m(w^H5TGL_5glX29BVaQ>@oH6r +6!WK-RqMUXZ!rnMw8$*D(t=rze?qG=8W2e#R`S-&D797&pG`zi?=CKKPi8hbdF0QMM=oFi}N?=nNq`Swcp|RK777jq6K?e(fiWFQ;HFO>|!5Q@DLCYixXo_agz;~-5>roqlAYz*#SCjA7T`OX3;`}$Zc3=L=%yojtp#1h9p#~gUE!d<u>49cU^#i1pTZis^26T{9`5?(P-$rTw4OndaheV4K`9VUY=aBx7(XY3k6Ux_ipFy-2PkY`| +MOsE>n^K9=LNa^kV#p=GR3*FP9AC#c2p`&FW{Zey^*2s74a{{7#=Q6f1V#a1HKU)>d5g#E~riy9XAnt +wODdtyv4RkH*X~Wr=sG?=ph#2C9kDi)n=!Aew^M%^b8+~*;8fi*Xn_a~nfgJ`CL|j%oA@`VW+n$hA-A +@dCtvcdS4DU8>_wSfCixt9|GRU`Z3*Hqh!kl`NOjK*5nJSLZJ2V4yAy|0q&Tn!mgk}$&kfL*sHTnU>m +(`2Hc_TQfmOS^lI~xnd*5Yc)F%XN8I>r_m^i8rxBi|4$Z*aXwz-=eLc061zjn^G346qxZRjz^DnhMHcsA461bto_jCeH+1?2H6TZLy4+ +8`r+{1@V;lM^d7AHbeN_M+2Tld~Rh|KG}{9?Q1$|Gwaa=9Ev5{BLg96pCd?l#2$hp=3V5N1~2D$DPbZ +I^OBAjbVJ6s%R&3h90mRH1SAwIL_s0-KFqy}2ei +Dt1VD3OKaUqnBXR578-jl;kiw}dI`Xaq!}d)g63-yToybDRR`s!sQaTn9Um!+(`R333`~gzbHcTT!Rj +(v^NaI{+?Onz?H9n*%1Fu6|+v<~l%WH{mTjdYJxqxCjG2v~iCW&rk6b`NlpYq=$u#I%e7uTXiJ4vau# +*fHhYvKZtov`yP(0`dpE@R(&6F=6+Ayf5mYS4Ab-JASrd1nPMR7oKpE>jNv211BM`F +mo+(3p}e@juy&<@6nZ5|8tp8OjF8&q^TtN?c6UB<(ghwiaD_C!vEyZoCytTcNuEsSJ8K}Nz{GmOX@xH +`0chpU>_}V6JUK2Vw#bd$tIEX;cm)EtFhN+r@$Y?zF&sN5v8 +~q~+FmZb1qGuMNxG=@HE*Son`9CBP75`{b&eRcf2SwXlxCJx@A3lq!nItm +h^Orz?2lMB>Hb$~7DY;{8_**AN(jwG3MR>qMF4Xguo*U~kkxUEGYeA{%!dN>9C}Z&<5ez~E3b^an46u +bklnR*>v}7Ea$%q{3w5w+riku)!s~RZ&vMN>l>7sVBTPo|d39pQr{WK!HW$t*X70D{-5vQ6I2x8UB5} +~-~#t&6}oz?6B2Vi%9|M3%|sk^^_`bj)WNT+eRG@9y0-Bpi?s0z> +sM0c!x3 +TTZtvAnh*skD_;ojFSZKI4E0s{J~QL3yMg6`*eKE6d@p(?S}mX+MQ8>}5U_*o9==yi{;vKooTNXM4kL +Rux&dX1U2vZF$b}^tV9-DglEr3}#6EreWSA&uWcG}g?V7_E+||2Ds%xVa$Gzg{+xvX8uc`yi-NIg#!2 +0rQ&$hK^hSF2l|CTxDC>9bJO~$9!b2NlJ{CH?$)-9H4HU(}T283Z61`!UCTt@8llN2a&8IB3)JeqNke +7mMtOmEOw9LCMje-7K!hItUU!gDNI)p%Ot_N5I;)FTM8gw_0x#E`wV`FvZIjmY)R0n+3NPd^?F%|fUvfP14+D`gCI4SG9T&iOZHqBXdI)6j|KbNK??V_PyIqM-y_%i32p; +`4d_uY8JKD@Ge%^HEUGmvpl{TRSOKQJL;ZXbN+HW7e=46+D%@Slq=ja)kcI?AVtvPGR$4n%7g8$Xb%> +vw?&y95_S)jw2-|Gq0`PNfUyO{-6H$2Kdh%(&*u-vcqM0#BE9!A5(tg~&D#>6S;Hjd`sF^n +b3f<*sjP>n8T#u~_Zo!Qtwm}=ynb)9D2g$JhkceNN*%D*%fWMA*27YjL>*Z{C~fk{-C>l&^;>_VVsON +Ye7(9BkOg>e*E&=3aA98Wiww*~2Krml;_p|vT97if=x^yYPTxyTM+;8UDFPh9Z4Dmh~~@a!kA-W>lm` +S{6`&(K^ac}^{iP!K!4oh5@$hDM^@h@@eGYC@U-z=v|xq{(-flAYd~A!X;}{5lvWz?5I(!B66X701W;&`&Twp#NIrITE)a1x>zz~76I!Bi +<3`1>F*L19w>A0PII_i+^mJmhcZph2fH%2#-Jd&u@+aFJk#?SwJ^!zW!FTXwzNwm4;To$XV^*P+>7yH +Z2>Z&UD7n|i~pHiPR`%nMy@gJVvS%c0fpw6b&A3pi?U#XJYCHRZbrA5*2*k}(2)4AvF*$0ib(iNaS3J +xDE+_Q^yIpsUzyk0Z7!6JKykuwfm;)d<5w(WL0D1+T|+E6N@On-qH^%kV`zYrTXI_!`U&uW8z9Bnd+d +e{KE{TLHUO577QuGC%fYWT*dzO1!nPfP|{$~G(FG3!fZv49Cv%q<6nbidl2{)N+J0CmpW*3rdAWe2o1 +p~gsg`Ub=6miiyaIqM1V0`83&H}+IiK^u&qD+pg5x}o +e#>mN0>)ubdj|V@c@bB=^zx0MF2aSQL8NYn?ZBUq(!mP>Qi<5uDMn6CO&%Lw9LxqHU_zFl$`whKaZty ++1ImSy^7)XIXPag*X#=qDJzRDly*hsJ?{r>3nm#^L&0bzk3$6vpE_4?@fvo}Y;-^d898zBmyPhhfF7H +MCxrn%0=_yy%=fSuV4W6KsO6=rsf6zt6Z#C-|X!p$$-b+`0yBKQ$8ZsZLvIM7A%j)C@!SZJV(n<aeSTe$iVvYjsjr0fu?{wK8be?)IR28dT8n=tl455+_gSijr +SC}D(Cdd}ypFtV%h{Zp8C1JkWR-*_CgX$id5W038qgK!T08qBS!G%0|47>gSvy9ul@5;78$cjf`B&Q! +WXMN~Xf284rLpGN#JygW^P7B$d+b5XP4|v;;>LHH3k!)xtx@wD+pyl}s!>g(dD%T7RML%_M3BNQBz)>g4tbtI%@!X=YH2^yj2_ +*cf@?HXS@&^m>BCnkY%!?Bt%sRBTqSv5@xS1Xi%rlwyM0<{e&H64<~Bl&z2W-7$b$@Qg)j@xX@TxeHb +sV%x9YErxnMhUOPZt_Deu{6-UJDI>fo3LG(-ANO%(VlNYaV?srU+4J}Psa%%mDDxJ!VbA;a05SQjh{f +pCtXOQq>BRrHL@tz%5vDEVO*IeUk7(GkBB%u5E*$TDQGWQvn{bOD+W*-EGHX|mI!nl5v^g0QiX)4!-# +;QQuFY%Kc+|HaUZxjUeYI9;^7)yxV<3N`D{JS2a*A6qz)V3CIUa*nv-|a*!j*P +hEC?4V5l7((7+TI_)y!~w+aOP;Xr%ImVaEsyYA431U4;`>t*nGy?aAel4G*oQVjX66}G_jpOXm?2;1E +3s3gx(o9Du(VGjAK8T=p(!Yk6m>LH(cN}^>Igp;DeiA_K&GsIw8N<)Y}9!L+xFJgz+K!_9yAFjiP9W; +3th!IYgiE`UAWCD>sXq+LaFX;f%(WTJZBE;XO#pN*CB8Uah0j`l2AawiA<5{29f0Dy2jYe6*^3I0y>8!EQzlYezCWhf!$czl3J!8eBG;jkq0Sd;zo)j-4 +`c1EUf2e`+4})lYjHOCNtR4Bj0^$}&ax{Pd^W6fR(4fdhDerI37>GQ%$-V0dt!|8$x@`ss{H{7c{5pz +%*MhZr-EltZkkr=n=P>xSZ6@thzCG&qF`oJYvCtQO` +d$g)KA`V7Gs!6p|Ea9^$7inUTYGj80E!3a?n9y#C7hd$BuyK}w>ThrJ(+l0dotm6nlpI80tYf56HJdE +KG5gsoP-{TMSSTUz-+Xl-Ub;WCBwBlBa_9tp+H+jne-_ll1u~NyG+;m35V6{MM$Ne|CttDUq#3*BPHJ +o$`huKDY>}eP{xEd9GAbr1Q(}${@zy+H_c^`UgMAcnUcpaD`ej=rEkZlMWRl{aJYCH(+?gt{**(NTW8 +GOnnly=IH5g%Crje?@uglyk9@DgKf_>OJJKkZv;I50OX^kvZZO4%pxi>tlHbT~NrH +|RvZw0jws7K<31)5Xv=a>>G!f^#f%8NulByjY_>7>2J>Q)PxUG7tmX9e{l*Z*W{HK9yDf7I)(a9)WQT +VRuE=3;05<|5DQ$d4Kkspbh$np($t!c^Zv9WA3GGpJYp(zf-J(XBzvIp(96y!NCQqKNh!3ii<)Ff~Jq +HAY7(6(LCTRrW~)x5A+D*^AI#Z)d;Q%Imaw2gY3n+_2jZ%uys< +|VvQ}(mBR6!y_Jn-z +U4Ov%va7`?Y3?4U>m3M%sHAS&|zZsIiOwo|}Y{K(R)o!C(pb$QYz0mAM8)V$K$g?KJj)`WuV3T;^8Cq +q3*eNeI!p%j9Er9so>@ZugD*vz^+LzkEHW=u$dh?ftb8#``*A;@0-LZab0t<#goCtpLq +pZY#6gjN`>lejI=M?0>&{t%{1OemgwtCVqhV05SN{*I#Q-@i6YO8Vr(DTxRw`)-PbS`XWu}dt8?EJ?= +7N8!^-l2DXHOx%zsz(ljf{CqR=WS%6Ufy)WWJ6YCAIYXVmlOz!9a~e9c3SAHL!N;fLDzhqTi41%PZz>ZPuVUMYjH@o-lDQ!mc2H!!c54D8Sh(1&3 +MeyHZaFCz1CXukNb5r0*rEX*Z|dJap8{A2>&tL_}2UD-pgvgT^KSa#I(r&5v)RP|+n@=3l%&*EbY$X4 +X#b-sx_jW1V7YmvtHV?_+61qJk!VS0_LPQ5C=9GL7eI5S?=xr<0ljFo?(>4>r~fRcaXI_9?rH~%$o54 +!G0=UI-LI;0%n7bwp2!4)~KY(&^IRfJ|4HiA{<-0XRov5D#DHq5>qt)d99>)Y7~B=r +`XUAw+yXp%~@+`)*Oy?CKjA=r+<3|?7c+TU!mKo(I((sEBpI~hmx&O4WQzkT1{!W5kQtdSOZr(-(Qz= +3}{7`;mq{THxeQsO_D*8=IMyTU9}_90I+OBT}GZu{A3L$W;U$Rz+gA<=rw$CXI5jN4i8I@1Qpyh{O-( +1wh|ml{BMiJ^kUrwZDMO3J@=_%BtMpRN@sNF1*EhW;BM48OL#u7BAc}}xz~EyVqMi7iE9Xwb19aJNX= +X>NeLMd9&i}Hi=HvUJ4oKQrtrhCt$A1O1o=A{dp4s`oOw8C*U{7z8BpE;L^ +0=X?>#G2haZyn*xrYpC{|ra1%(K)Rp`Qu&ZF}|m>#tCTde23P)YSZid{kKOk6Lr%lfJ8vEh>_!g>y*d)Jzi2M?g(M2robktR{kldv5bk`7F(wDEq<;}*O*n;xXRU +v)Bn=4>7AN{Ejq_y++iJyM&+k$WM{qKz|GP%kr)(zbC_hCryKX{P>;fw-uZW0bfPYsrH>na2;aGc3zga&jbN;13Ke +!rZtF;o-cQscA8W<;g~E%g;D&jG3lkOB@h%g6A0{+!fPMDeQxvExH2cDdq0jS;wN7=#J1P$)?QmG#sK +1-NWHlT#%nSN~WQ}g_|K|kG06^YYN6z&P1M`kRemK@xa)+WI%v27PEQ+Aii`I>zXaDB&(vx?0LAeMd+ +xE!8xcxAlId50TPf!&ul>+7W94?2St*7?xukhlkM9+XT`i3+w$@S=cm1&3+8;J^nm}64uGzCs2ae$#Q +tj!N{h(p<|E1|9(9n{)(+Lkl8a#V4W9||2(C|0(H$p~VYg;$I7YD?% +LgaAfe85lvH#gIpjpmx?A*6}$8#>dXE)|ZkWhXiE(hQxSuB^!?eZf ++Ot_@;Th7e&KV7kz_^8z7)Q1MYEormGQtZy+9?u1${msv@c5Dx>qZ#4vY^3XGr?m4DYw4n_q<3 +7BLEijKwgT+sT+v>jz>`ll|_rrkGPxk?4m%2KIwln0G>To{a&K0=v0m~Z1N ++hyqB+RcFKBVu^j2W_HRCLq|>oG!Yax#W<l}WgzG_xQFJVUg2;Xx{wEE!n-^MO|w>YA0use5Dz|ThU&oWz_+%Io4ITGo`+lfH +Crd3lQS40A$P&p81+Yq3obyN*dCYC!LzY#{l{v_dZ%k{WznLfVFW%&y+amFL5!@LrqtL?yUZYc +!O83cNzpMsu8j~TJsT*W5`!6a)w)_;%3BOpP=9mdn*{D-ugCB-lu-oRPoe9gcd1*!L_&?ORrL{z8@z` +PXgP$!CJVx!jBI=z>tBBnV*MT^MM&IDNkBBUpOw^TVGGX;5i8yd$gog*lb4TVk*c?h%9MPeSVpRIQ}>ggu}ybiV$gIYocBS^r2A0C2hMNu(yGod9oKF+r=>%>k5HVP5?pf^t;?N)#ZrNA51(uZMZy72 +=)YNZOeI4uTySCeaO9V7f}Ic3~}4GQ609;Z5K&xoeZ~1q8XIlmgd@PVAK{Q`kw0Bp=|TO7-h6bkYt_7_L#i4))HTPgGC~a9-$JPr6Qpom}$S +21&47De76O^lFtPzq!<2|_f&_#PutJOIdxCQ%pD}LjG)u|4;|uYEsXY8gwTE4hU{7obT{3w3iHi&6?okM-tbT^W^Z +6g2xVYNBIdpJ&^ej;i{X;f-k&OA3$aS)HA*=N59Y4nx_L@h)?Bz1R(LF4wA(_yMg$b=xZf-HkB5Zrgl +!o&8GyrkbIv4~no8?gSDmvyV06NDeQaRmh_uD}Uc*>K%p;tzR3Nja19igPHMyV?pC)bF&@^WT!h@`RE +!H^dBoRTV-l4L-__{+;C6z>7LUKN)p!&=rwRij>-gjs6*gIK+P!YOW7fHS(f;Ydas&fmCaM=41OwyjI +CGD`yt9G|oP;#hYC{J=V}Z8^@VhxQ>&hUYON=RlPVtIZq2bGH!Z7^$(HhOhJrl_ntlV9EI~V{z$GvZ1 +2WtH|{Dq30tTTQx7&3(Q&$Ed_}NWQd$x_mD;rm3|l+5*2y4SgZQeX6Vevq~Bgtv*KdIXg{E+iFWm8## +yPs%S;CpVpV90IFbr=F=LD%8fYf$;>?J8(Xh|nh}mTM+k~}3=qia^587KHj$YUkfHD{UY{lqkaT)&1)|fcyqNnA +)8@l5@Q6kX(5Fmq1M?|^LS?j+kArR8yVn5j-}!A@LihJcWKi*q!7)BLM0%@ANNskLrAg7&EMcYj#JJ6 +6OJG=KYCp#uxYIu+Xn{(5D_1+qLc6^}Tafly71fHB$ZeW6!Au>v9wX?_LyDJfZI4@k8-xU9EbywTmwsC~N`&S^;WC +SWCV%d{6bw_O#iPLE6SV|;MCPQ;T@J(h!5ez^|QCI8yx3cBcN2h``<9UibF)o_&^W@l^&Ys +H-0;qv%b%bGVn~ia6iKYqCo~4T4w4TMgQV)Pr`Z8n5UUizaR&Afol+JM_VIzDkJ#C}cQCG1M3fEl^@K +7;}0fssDNCgJ)6%E(iQGOmkiZ9eFv3mzEkIdYDAK@i!xnzhDyy-5CVSo_WSxLxL$^98e%GqTEg!)?KO +GY`F#3QKyStdXA|mRItZpOZ#-k?aAK#g>1hX{4Kyu#_ZkEmu2*rnIiyGh0D#|mn9qaz9a}Kp+R};3s9 +8V-H;3w(svzbTHQQf=NfZs9&Z)*#SGfJj%th9E#3T1X}w<};Dq#fT30O)mv}9~-wtBw{k>g2cTE)jf$ +tqeH<#y^Z&b=NFB9h(FEWJC5{r^BHIMoK2gfg8|Kas3?DEl`{>kWqmTGF|I0kM-vBI^)yo;|sfAV5E3&jVI3H_X+PbBuB)vPy9~ +^aP=r+^J}xYN;)dyGM)AVRAG7-iDu1+p8h>vmL5%J?zxX`&AB57ng`eSv(09F&^on?~Gj>2cbr5_q-w +846pAp6k~A}!5!~zedzQq#qHb%(=>?0rj5NnnX-8d|L=Ae#WrFj_9^V|j{Wxb_F_59tz9J!cvkJ<`)8 +-gRTbuh8L=ir#t!9TRE84HB#5(sv(xH{4v6FV>d8nHP@Bdd5zj>We~$MS#xt4&xEii9_5jkE2c?b>!H +D5?V3I`l84^TIXqCDwAZ{O6i=$AWe32ma>O{xM@p1ApnM@yEe)a10t3ORMbZK&#&FfTNw-a%d^4ygeW +se*3s9NW2P#2#n6X#}@$nCy8F{DQ1Xg$p%Wz)n_annTGUxCEEU5Ky_?h +X)0R`X+FE2a#m3Z-+8?qG372sqz;n(a +zY>L%$Df!A@9+)p1E06}HZr6S3aF|I<9<)VRsvzM2LWi5zduo=WdCqnYZPl-?Je_xNh!3~_(Qb_bIu# +!nGq5Vx9k$OH#|gT2=vbQex>8tu{QgXou*u)^B5jd=twojmF!k}_U4v)Wege@=kC{Eo0g;^Knp(xkPRt?%mrW +CIrYmT7Tj-bybXcaJ7=`zDw2qKNB4SEg5d6#=%scg;ah8sC*AoQ`As@+azsnnJn4*luFE&EEFw&NIzR +JyDgcrJK`id)KxjysXJ +m9A;CC|>0tKSztF?vg6et{B58URyp3Mr6TV)YPgIq3dlb<_yO8V3G-J!MJ5{8q0Wym6C8*tj(FyX!B= +8g+a{Nj#Fo2lS#Yo%yTe(EYJkZ%ea}R75e(tZ#F;X@oe#t)Z|FHqXReU=a5 +C%%d_`C^xoa{&LhwuzrQ^HGfnm;&Zhl^w-Y;@o7AHD{hFBGEFGbh>Lp%mjjilgE@_>cs)-(ArUU=QPR +awyMbxBpPltacsJvzC90@n@r$UivC<)4>+lR(3F097j#xU77hH}y*a2y9tRDx|H(B2Rw}>aWQn^4 +0MYw8OZkNS6iKY91-NeMI0er(``x}o4&q#B9X@#GJAx`aKaomn_>}o>UzU}2V40+r%QrHno892D;85d +*wjQXN(j;B`dEmD4uI`|M)>?TXElDCJ=j-7&NSIq>?*9T7+v>SVwAJp#3*|cqHuPNjpqvC2#htVQPzU +pT<9PsYQPcG^4!p9`Dj571-gaXMw3GtT3KJ5xLFZ$4KzkZzX-aU^=m3~T~|SAbe;j+cvfhKjL|N|;=0ajj%hZgsvl#ZmOXY& +_l+HCKGARk@j;=uk<&nnn?VWPh3_GpY9vnbVZnTVmz}9fSo<8RWq=A45UkX*>1|U#n;U!btUJ{!kv(l +own~yI+GnRDeqY@zQv062$qw$SEWvr9{D*FD6~GibPVHuQ9;Xm4Z}H=2QWgFg*wTNu!H;ber;8+kq-( +noY75IudiBQqVyoImqV?+*t-15LeKse%cUA>gM+t!zb7v*5vwh6)_>Qnou`Ep3)i7JD6xkH~oqE*v8K +`yY5l3eWH$q6hpiTZv)&G=_KDSiop3+QC9aJP{oZq%cur{Q3g{m^xEW{bJ{}(ZzxLXoI9tE&SRqRA~b +D!No*A`_gZ#!H}n%}8l;>kUF!ox-ytbJA6YiRB$|GmqpaWI^}NucFzvmmh_fBxy>rk7s7zq-2o$$)XV +>o2dl;}2U{>pLi=#k(VWIqJxPB-bk+4SVQXW;~|&dZ+3MypE6#6UKq5`@x)R@LK!G2)(WSqDi-#^r#J +0x4+E)_{}#BKOYR!+@o;~*!1Z5$KzA?I`@unC|pQtL(Ky0;0|J{rZ^l(EYF?HB97wi9m4SHFGslkm~Z +iLha(MWmBDo4{iKIy!QoKSz(JA7gUAN5f&nvggK#dKOo>e5R$rbBggqMvW6DL!*R)7w{cuIIlP7ed80 +kifYTIQc7t)@lGau>$Zf3srH^JIx@ZFhX!YwDb4}zzn6?HXIxtRmPpaW33Cj;AesAfojC4sZBZ0h<=+Eh!u +_mn^jLuaGGVGv@^y193Mb@dIaKlDpRUBn41WsVj=QN6_<7429JV)rV)N5jY~?8cw>P-7$m|FAhKAmtePELumz6A-{*F|H|g0F+m@Q#u +ESV40UvD#;8!lFF+&6yjvSMG9S3i5;_WGOR)fDosZ$LKA96nZEFNO#yieB@{?jr9KiN7OQGr+J@uuW%u++;VD}&AC{Ir66>t&G-M%`tD8Xd2oTI%tB{V{^?VC=iw{n2Ou;ChunSP^Hv@rUYRHOx^biZx2aW +rN@tsFxYW*YHcw2k*%o%1RFmlY0XmdI}Jvp2|9GR7J2imNyZKe%WAF&er$8{M$pxFK^AaZh~0UihN;+ +`(R=fLkv4r^Yxzx}o9rqsgv`D#agXK8WrTp*b)^kB+KXn@2~iCbIoN=2U474rV5QU86iy)>y|2ND)L` +&MUGD@K8=&ySSCoa$Fg#acUKa>_~7Pu=>V6c_Aq^1OZ!238J^6<-}+hyXFLN0a6MoK~e*@H6{d1Onwi%{Hq^Mxd}EeWF_uG|q*{8>0L|8|iTMB(~ +gS4O_#|#Fv@heuS;r1<{0LAd5`=z5m*5wI*>z?ww917>N;<9jXz3HShT!3I|b2*_6CZPP_*Z(UZCSj! +2m*vCt%Ad?u2s7rC{)r+jHFseL33ihGjtzh*@?&J!0gG&)XRv(&|-eVXBti)Y@I6-8j>;%AM>tkx)lX +q>;9a=2W)iOOd1(UZx-?znlG-XR4A3E3Ycel)7LlmN4O?wh)U;n^Q +M8e+o4^v5VI3W5q`kUV+G}Db2e#~b=wa-Xman$wk+lpew!=$8ZMAoAljv7k!JrG(@$h!q5)!Jg|eL+L4-K8XC$xCqzMHr{h&K +%~fp!2fDw~nIur0I&IZs$Ik7|f)wR8w6ScB-a2UWu8rp$rH>*d`f<9D+q46&Y276>wmzuB=*72u6iL= +`QF$%o+e%D;RW*aq-ZiY1WLjkRqe&(~?ZV%o>X=Z=Ldbk#y^`xwJ`vB)>WF_JS37jmLr=DatL4erapN +ii(n)!hu5=P8X=S_s!Fcn_RWCjJzIXNyP}JY(41$qhb5zMDARN=t6OE}AlyZ|);;HI^$2oOkC*83b5D +N+&Y^h&RDij!sK<>L;5p2vwNzf=ZsU`9=lBM#Qe3Zt|W^ALoays%QFSEdfcW329jf}V+p3SI+4fhP^! +t?EvRAN?J^QAX!E2((k266`yvJnnd;?2syfP&c@$zBA+dnLBx_W!Mz4ol*H15ir?1QY-O00;mBm!w>* +)*D@e0ssI(1ONaa0001RX>c!Jc4cm4Z*nhiY+-a}Z*py9X>xNfOi4pUPE$o)QcG{!FbuxyR}eY1fY)_ +B?xxsEBg`+zPO}^xTaGn2Rv;b^_yJ&`$4P;ozDn=q`fZX$`iAc4*u|M-VJD(<=}Z0d^l6Gn +wfC4YVlEa54-?<82=XLF2t`O@n;U+4g+YQ)mL|^=8x_?gH9dR5!%peirF;Gcq#)y}dob#e~701 +32x2Gc9pMV5W9FcjV#ic{E3JQy}=f5zmnH>@flPjNoWH)6-Yau}xa8}hOD1xq2ab7Po2wPkDrqm&-$~QP*TsB&f>~u#b3G&)S>a-j-$O$wAN0Yp+x>WV|31 +DZ-47K%k|)s4QTahfevu`xa#f656w8jUf&jmy13rvpE!=>eZa$;W`vVI +SPG7$+Zc!l*Mf~~CA#ij3H*;wpuq;*`rQf`n)MSo&>@q +Ro>JgL{~c^^5BFvp02385fF9MKpjIJp5ZO(PsYj!E*Ir6|A?9Dop0*7v**2!U5q&QmrV3~n%=X4n0I# +Dg?~T*!$fn|1P9i-$O3045>G7`#D3R8JV;O(=hHe*FcK1-#+ +ihT9=#fg9P?&Ro?_h-K=(S4X=-F~6WIu>S)-yA81TSS@AqnUhP5qy6U1JBY(+6!^uxCd!}HV_JtuyNNC@jgTCMl$sN;DKdDn`_$6 +Xl#61+XX$T<|U6)c3!+?|u{)EB#2U|Qt%Sg!*{9OzADE}KWJTF8O;4{R1-NzT5{2+pi?d^l-uchOX^~Pt%m*?+~{p0b~xVN8=br3=hdwGPmFkYUYUuj0+CXQm|m8R?u?@mrn1+NHug +L-j!^7j2-z5S|}{81$0KB-8lw@K$<5@ZrqhuKxg0`h +=#-}71NUlN7#Re}9fBW@iF3AigFlveCI>X%X1kZ-xD5Df5JemO*aD0n^=JdvCsw7wfWv4eV_;v?r$bh +g`tR47TF5EM4Cx#%`YB?JU92rB@mvJmL@8$Lhh6Ki9Be7~_|=E^ +4WpE0Pi@GRe&lToV$BmR!<76&Y{eTpb?1I4F*Vn^D5#`j5V2#@VtRbI1!DiiwcvL>`AJq%f|=Ei=|vb +p~G9A)MlVZMEnt&evc2HEG&QT3&I!oWz2+CbM*7E>UNh#qtzqO2WWV*!Z66ebJtWu{&XvfoM1EvLdVK7A-MJY*flD8|UUD3=z^nZqE>G +OL6RQ1~cJY|?}WA;=Y8L8t6*;511N}djtJC90r=1}>_sI&oS=1RsP-z+NKy{5a@Tnx)RPPY-3Yu{>?2 +sB|CkUL8RM~+GSP`V#h{&}sUlsVQO-vGGF-kbgQP~Jv<6*UC{DEhFuE3bSh0ZEH%`)pkx;O$83&a +v(*&9&9LMgqZntw)2X5;Zp$A3+Rt2?(5z~5YI$(BTpT7X+c3sjwP>pIGlSMI(yV2Y^P +J#DEnFRxvL45!$z4Na=hCDshubbZK1d~89gS6KT8_zP(6$xB&Dlh{S0!B25M7$Kgdw^Z +Zgn$EWvzv93#}+i;Z`-mQq@uhx6lGr2)C+!Lrt>?ZlUs`3~p83m6Em+xWy5mir`kBe?w7Q0i4TEyPcm +p@O(v=**vivWg@Vx{LLZLA+t-!+?MV92djNk!1R3>MZPbB`ExO*aq*40UeT#%4yuhN{HV#sM=_hE;)| +D>Zom21LY3CpB-(H#1($ +dLz(_~Idqmz17r$K8lmM>7WP#etV+a~P|jV>*7+sIBnjHJur|bDx5t1BOG|IthHZ}pp<41rU};oI&JsfYy(2qIomJ_f?b7;W-snBe(>#fDekY9s?NT^^N8{3 +(bIw>F(1H;Cn8u)m0AoFd1kyQ7G8uI7yv7^97JKa!hP5AL>M>YlLVRLu&)7S{R;0MsArf5(#&-(6%WkI&G*W*hI$+6H*o~H)$DdRl-GEY+6>qwHB4uH3l*SUaV>DfXhS +4QsFS?8-cm2%$1eWe+___NDy;QClV@mg6X~tCz%^UcDPH*P*oZpWQ(oRq1A_94h^jB(fagDPhVW&3di) +*Fmd4YknHU%x>SyA-javUo?{-ShB{y +mq@iWP#u`aN6y5s}%}9L!K8VDiOr<5S_(bD1;f~3M#FmGv|6uD{V9hlNu>|Gq0an<9IXjX>VHfQlAgM$eU#mV41SrD>NQ)v6C4j$}BSlGo6gR=qQ}qyWt{gO(xLVNFu +iSn8O@jk>KZcOwD`Mi}hBPA5-54LsGK?OEjqjcBO9>salMD&O&-sZ)N_Ro11E_2kcX>+621 +PYcCcgtRT45mWP9~yzCl8n?!4MkP1|@Fx^A8SfC!;LarWNojaSFt7X?h+G_%&nd*?DMz$8I@0Kni{>`}pRKCI1BB+Rl2+j|PL(K;|fXe|Q5fshI1g4z8I73wR@&!@z8n +M7n*UY!nix{gZda)GEOa#m{!`9A0$)H@HOGiIBUpQqQ{RHfVMcZA3cEHI$@Bp1(yzcj(EyAN^>uW6cl +Nn)3HZ3%nd<`afASDb#&|ET0A{~Es&ppiamu~8On-*qe8+MHsw=Ci~XzqoT-`ESQzs`%ytVUkM)Yk{# +rcPwy8~Si=)$3izZEEDf4GjoyYJV!cDFUP86L$o=PvCk7tVxZ`pCyv|4Xrn_8ybJ2b?ePeO=(7cBCi# +Xn^HfO-Zbo~_EOv1H460yeUUIlXKTvW{mNj~9=bZHS^S{Y!OZt>R|i;hyXs(0KaGH?!DGz{s5E{3*`g +!}7x0()wZ1dMcar`|Ui7;yZS=ikp0yW!MW>vRK@pJA^Syp+(Sb`01V~lkM;IE}dpJUf1P8jJ)n2l6#*kt +62d=gE&^u&ZEa9IS5wZOWCI;o4c}lI;me409mlE6ZF(Y^sExpE=qq|d)x1RHH>15L{a;!YUAWCCa;G5 +B>6t%krkM9kIiqwOBAL(VfbpF$3HxE)P?Euf}Y0 +a!EwL=@*e6jB(#EZ-b9K}DRKZ4c6B3vy=im7J&5pfvF<77Qc@AQC~I;o@4F^aeW>P+*WHq6o4yBr%xQ +)VH2V3pn7hu8X#;Bcgn#T)Py3B>e(B(y1lZu@mjIJa+W=S5qWE1wVJ)jsss=%PXe>m|!di4rW$YxvL4 +8F5}Fw@~5V_b*nO!K$|isVOK*E$kzL~_xYZ}r6BmaKo#o#U>oFgk_SGT#5mXxFQjlfybyFfrcqM7Ocm +dUnxoc&F=NUlcQIJve#E=saQA3$_xbMUzaBsR`+ta$JvO8R&CUt;@0pbo&hne@$`e9%2G~KbpfqO3AP +QGBQ`~K$H6oQfy;)M+Fd-6lLj`BrmF22%oE#T2CCy5&AU)w!QtJ3l(*Q?#YAr4093H6^3R;e)WHWYKE2SfNF> +lysZ1F5bT#KLAt8_N*dG)<3KAq^#MDCJPO!l_at4vLBTqMQd@3TrxU +7*`6GQB`b4C(VVQZqfl+ejcONgB{kAsP)h>@6aWAK2mk|@q+DWqjPzy)002QG0018V003}la4%nWWo~3|axZXfVRUA1a&2U3a& +s?XaA_`Zd97M&Z`(E${qA2uq+jg8Rg$gf!)S{oX}1O|x?l}Z6h$C25*@RVM2)2C8rYBDy?jWNpYkI}V +Np8dJv_X;Jdt~Ha&k!(BNsQ<(aFh4uQ!n*CviNfbR}6F6P}ksYC?-bXsWp=RIlgm31!jrKJl=N%c~)@ +m6kNoInz^-T1-jxG~@RkcLPoPK+j8FJox*!UvJ*WS0CPA{dN86PY5(=-x>7?{Fr`;$TF4~LQz2AS~E$ +tkPWaM;3G#s*6a0>j4DNLGO8y+=I^*vK)w(E1|veAkV5=RN95+?KWDGbo|(}=o(nfKa*vwX5ui6I-6$ +mG5=aTjnX+K$4#?BDX2zp>EL=B#eI*&yj8Iar+43sSqh5_1l~mHaS*_2Ek+ExyqZKf}U><1O%g}m}4A8Zf +Vf8v0m}@P=f^{*#y1fjoSHb{YYZy@Fx@ibfmnz*j;n*vM8?<3EDF;6m>+2IFp0&1C`1+g+`MUKFr~NS$ULXX-Fv8OvFrF&=PYMT%EA2Y +edDH8lCdRFfIC@CwSF5e6#r9G;r{Hiv+;3!+eFcq)y~(CZ!)$4SAZtO~-5lwnk$kj*1M6%V`{lQ03x}omC!F!IHj0uCdWJ+*{4*~X1fy*@C&dPGZkjTl!69~ +7MKTciOB;)NriCgJ3s}|Ga(;=o32U&@^MNjCOl(mXlIUni3vR8S%wo=^CDp>36?n%54<3K#aMl746|V +5^;GLpjZRNBOQsMq%6TG%5)&OkW}dR*X{Ao#AeL0lPm|=u^XJcAzUqJZ9G#yHBC5)tZ^!Xqld5&W0A1 +_rt?6e<1%oq*%%(h^8V57;S6GZL$Rwi=m>`Zdu9-_0hl81<^suB|}NtiPG6G~GmKw&U$#Kc=8TOmT*LSQr(cu}jy%-E`dA2C+67%0VV^Y@K= +A-|wQGRDH3u<+R&uqGK$3|#9z0>7P)?gsU9;2xe0O~EEV4m${#nmiXOGL`Y +W;DzOTb_Y|mBMbsZcl+V|{AD`wd~`lO*EULCTO7brv6rIdz^cz+h)eg&_1PGVxSkdOrr +b|#_qd>dSk7Z=@N@a(;NiE%vOtWtHo5sI6%xNaa|J}xteUl5CbkVY@A7p-4i??nxX^s(b8%*yT9M;@U +VZgaoz;J4W_6$>e_c}t5`XJRb5;QqfOn-&Hi^N*d>#CZd(g~?s$E$jK^5TaJ`He%R2#f)yPH~k%gm1b +5yG2(V6J_t{Y6>|3HFs`LvK@n)sVAbC@Q04!E%?aOKa4>mf#L+KD0Peu$Ro#2MN*;9R$cd?#~+=?tjGjSyYq1PBl7?&k1v(F((v#jv-rVNCc1L4;3G5 +0E5(zJ1Pu1r`M}hp7G>9Lu;?RmfWHGZ&%0Izhdy#?Jd{JX^4RtQwKH1bgqF@@<7`&V)b|KoiZM|w)3M +U7w9UcpbXH7yEt{4JS<5DL3tjoR(|S*V8e_0oq60{+aSxlN>cA`T6rE|AQ+;2lynWcB)V_>%PN(gJ0^ +iYp2%&5Y2AbmfCyWKTBE@NDMNIFrr=p!O#Fm!;4SZR6)1OLu$ +t^Tao2fZ-)0LRBH+#}*oYZDg*6(!XWF60*lxl0WCBK{l>YQE91MQnzjp5qN%R7>;yu2sblUHDXHkbE< +c(dTR(*9PF5L*Rgi@<`&PRc^gd*s89Nx?bEG(dHXu%z=y-UH&%CLFBcpL(Ix_HZLGo@Wy?yUqY +J^Tg1(OQ!sBz3rlTjKMmS1UhOQJm&2>l`546OKP|fOZ8p(vY#V=iu+Fu2?WAwBk#-{-R@_4=ht;?X>D +F%AM*DwIO9KQH0000800Wn#T(OlLBGCi@0J0bW03iSX0B~t=FJE?LZe(wAFK}#ObY^dIZDeV3b1!XSV +{daVaCzNWU2oeq6n)pPAhZCp0asdHjV@T1v`w(4HIO`P2m*?cu57N7sFAc2W7vNCE=ftYoW!P9EZgcA +TjIGN=aBbaOJNw6Ed6v9g<%*3xfCU#G+*ka1WE}nYaumZRV6gjTvRFuntMV;HPegsQmvJ<*6W&A^Vah +Em)To-dj9tGr;Cs88~+ijdAmL6RzNQovDc)1ZlyPBA154Xvf>w85? +HiyImz2myl{9IVgfRh+Y7(A`nr7M4p&G^3hO6fwg=mibC8g3!E=`#;O!-PIfhUQ`ZHMOr*;aDyI{9z0 +kT=(>Tsx1%>g8v=J7iqKuJ+WO5xdnJ)MW;+|>zju&vrDmDjmFFq9*t=3Cc*p(}r*i4GKWMzq|zQ=?hw +gUWowqf@8PPEWvagxx;W_`&%BmJcUB63SC!Tc�(o6GLZME|Y*w_RYt$f5l8F;w1yWhk2Q3?9X9<-u +Ck-CB(#pfWhd)W0{jq1){P>}kMrysbR~h7nprjeojH1txf+8Q2S0_Yi=?+I@K9zt+zM2vP?GDJAXbu_ +C!U|+uO$bEuh$P9M@rPy;&F=Hm?fTWSHfJ+FY7~l(8p27^oPP^SC+oJ4BDB#LymwgRb6p`ijrT_i#-a&iyfN~5_cMn +-09y+HFjUZF=UR#P1|W^yh{xRY?dsW@{LsRf?&iQTs@)vW;cyeP;W`mZu@4WRQ=OUU^{N8@PGEKs))T +fQCyl5$ySZnn?kTzA-$gm6WmVs`~(6YRWMqXe(I6enAOOzIL;jjb7sB_r0=D;pR0()Kc_8MZYiSU3$G +w=F0BET=Z~@?@1VoTF15B;n48J-W$0zI*Xn3&}svU6lS7FJvZZQ_ +sjRd{j9InMY{Cy{jKb%V8_~}qLw~s?bF2d+=xbQ%kZ^X=9Bk7LNbZck3Uek0EJPOgTf>)z1qw#K6>Q+ +#~!@a|xH_c<#3;(FExQ&n5J_Vju-*B)xWs4QK8Z +>k16Y(k$J6ZJwv*##RqhdmT{JcxItI5>%)7vldid{<1ymiAXafcG$+dTi*|J$E~C{^{A#9h)QEKkV?%{^AgXONelNQGHcKSc(f)1X{>k#!k2^t`%$hDiT| +Ne&+IMMGkF6YlDokVtp!k@wWxh7!J$3tz=4NUfwLG$K`txJOW)zqp#Rph#Wk3h(s<(n2j9y+YV5=w`s +DGY8a;aG=ug-!_xp$J7BC0`N?B1*YW^X*H@x<3b~p)cgTDY!O9KQH0000800Wn#TmS$700IC2000000 +3iSX0B~t=FJE?LZe(wAFK}#ObY^dIZDeV3b1!gtE_8WtWn=>YP)h>@6aWAK2mk|@q+CYKQblvP+<5&y2g0>gMF(u_?yy?$ujOQw$ +PB%X^ck0oE*@p&j%1SQlI!2*yUle_!dZx;Zc)`N1Crc-^vUo%W+V*bxt> +cFhJ?>DAvK|CDm2wxq^i?#zX_FpQcubtNk*k&GG{$9zg?K$ELBGJG~u^7!3BJ^f9R)-r<45m;l +D0U!lO?oM?amOf7~VK;*x<vUM6SVeE4a#iixola+*P^FBxZo>k-143SrRQ!h?kc-ck`+wd4vyp@@#`nI}BKXY +H`Qt8mU?c{!hzFvljEw$y{E@t;pe>hVkg+lOajJEu4uU|zHy-n`jRZfIj73b{X_5ItPJ&y@w1;H1FMD +QH(2*(aPxUN$Hwt}g%^|FaB!r>@iimqAC66!;fEzp|Bxi~|a6Kg~z2{P-GnQ&{PbH_f2~)li!5-->gK +q?k{*V$XnZW|SqVoi)lQ~nnW<{EabfS1s71$$JTD4ra#`A9Eyl!d@ +e)xMPMaHClDpCuKD#M6s8iLHOVo7YWOlesrSRTjtI*>N|2=Wv$^F%a{8eyhX6JM-byRUyP6v0z{iXDKR3f#W9;CQyG+hhD0<`qD}#J +p|F)&oq@buu|KF$2-z!gvgyPnS(#HVrCDg)R|I#od@Deg?$qG^&2G^#7)uj8?chFM5G;+Jl1vrxhOC3|SZEGN2DbrgWa +Y|FYal{#>&CVpq(RPy^3=fCfi@H+UH#wCcux}oF##M<}v%?hr0m_x$Q8*l+ij3+ZFv?Bh4#%dbq>~7%Ig;mXL{&qrFn%I;{`~;qY6`$GlFEwUsRFUD-h9=2VIF`(`EY={9fop6(wZcX#6y}08np-H=-UEvY6vZ3`zSZ-?f>QEvw3;`C^Eb$L>8PA+E+mU|vC(H4m%ZinM%L%SJ@pHGiZ`V|aT#u +@~(x#HuN01RzA{m+neGxg7|2B$}*_C~_G)Ub2jwuxb>Tc(92-Y_Xn20sn^7nPi_Qr5tbcF?}*M()_!; +0b^>z+Zx$E|19Gyw`R+zq~pho}Qf`q(v-lbZTB7ps)WR8GAoC4*IZH;`=$%@CGftCJ*M~!I{uCPVLm< +ab-eeX12RT07m)1&Gr`PSr#~J?5&c7M~mmUM)kv%JvL~6(^jP-anoLMk~ZP&MUZYuhGiK^)n)qodxmHGnNS+fC(h0v~u0^Z>HBI883~(caU2;2zOyx;ZEE +hv_MsDf&4hxGp5kvE-#F(1~(-j*jAbRHJf;Cl|(Fm`gD0pi!PpHI}cEX}PXh1DZ4E5l3CDV$GrPy<0lnH8;t|;=tTDG`)Ew%XnOQ|U;jn_WYy*m9C6Wa{G +k*rMXi`wv~))e5~h8=X()7U3{97#F7Fv!hx3cSx|kmC0&wVo}8OXVC6B6l16|W-ZwxEvxMq<0x!pUZN@sSk(ADF$0DaX^eKIQP$`d1j(I!}hD{8}`b0pj^H|Vjc!rGLWq!Sa3J{68)Puk}K8D*Ic7?d1uz?nC +p=RT|QLe5K0{m(V)4;tr2&|Q1c|R5orFYcM=6R6unX=E)>QB_zJ1EisSIR;DGQt7ip!4R)sZo1}DYr2 +YKyp?h6Hby(~ARHV0-4a6X@zbt(a0$a`kWD(pM1z$fok6$2)5hozX?$ +293NhBwNjLVc!NNDcq+jg9=1*+iD|&+s!0RRy&1D@5x%Tjcd{fuc1ro+Xr(zak{2JRe$h&dj{@Qz8M* +J)C3F0@w3oz()_&vmfnAyUwng!YzPBMTwW?gT`jhh#aj-d@&8TwY^P8dSYgdu2qZ3D_YV7J@3>HGmuO +9KQH0000800Wn#Ts2k(C +k+QNf+@q-vH^ljqWLnKg?wL_iD>y)6SieF&zH;ryPW+$E|IAh*~e{Bn0|O^)ucmwJaX-y7>NI{N)bt~ +5o0l6?)HU&6(lN2}#iKsM#xx)iLXb_@$=V}_pR#if3_n9ah7hqt6XsYt+ZZnTI&P(=UFvu5)lQg?Bof +}v{3Kf1wL+g+gQ+Hc>77TqQ5Uj4=zT3_ItICrOjzyHPr2P1Fn4F{KD8r2D*`D(;)%y4)OZ6l)UiQbQ; +!4FVN0|XQR000O81DB*+MqTwT9|`~fdME$@BLDyZaA|NaUv_0~WN&gWaBN|8W^ZzBWNC79FL!BfWN&w +KE^v9hT5WUMND}_eub3mZW!Sv`kP>4tfX+gr)eN?|T>krY&y0iw5{TGYS1Q +I*zjr^~tr5jy@ss0?_@k&6i^W1=9Pk;jtnpmV17=yonfW}BgnAyAR65)fg@U=pMfgc9gk~JiJzH|_ij +dC@=9W$EDbx4m!gst$c=P6SuWdEox0@e2SAQDSRq8w8{hmwZmHy)k!3EO16|hE}zplwQ(%kU1BO@G+57Muwo +yqccYS@Qt-2uofd!T`|9EDBlb#ii^(Wlm|*`E?!NqxF1*`Ac{Ho45i`rnKq&;eTH+OhKW700)OcsQM1 +Thhk_QVS9X7%m!knVa3SrerHDV*f;V-xS_I2;N`>u1*{$(&Y_x%=#7z{4BP2IuZpHYhRXH4~QNJ@Z7V +q#e)Cf{2mUTgAfnW4N?4{d;#B(F)a+3&P2tn*&4b$)YRBmhhdPncN3T&QA0bkS{|FG(X&K9y6D#6=Z9 +RXs=)eke_tv;ZuY#z#qMEHACmA=cU~Fq?TJ%cp@9CFCv_qU0rSB7H^aJj47|$gdS*>dAVb?wqO1;;dXyy7M7Bwa)0VSp=s(=?R2e{eHG7$mS782M^o;aw-X9+R9Bx=4G$*zUK +%3pm%kEW#&|Sfn(Ki9OV`q{x6q^WsUX8dS5CMcH#b4GF=Nj&beXl#R1vc^Q4*Q9Ca5+C6<4WU +r;%dX5L;4Of*v3+B99J~4-_8q!AQ{6qOLj~Twm5)`6UL~V4xJi1%vP5Fx8*kiaI%Ua@X|ARCrxfwiPo +=U02ZdtYjwRS*TA5-QV8^b`6;-WFbwn%@Hz1`?vQ7Mdb3ljR7cs#6+BfI9}uMQ_ItEc)=$E&Vw$aO|AUDB9h9xkR?-xpH~i?=-gpiHUp3{k$;J)LWmyQ&6NipM{}z|HDnU*Xmri +n>XF-&)ZxJ=ALwBJFj(y?Iq6{ZrIGvdcN3cCreD1TnieEAJh)9%A7wx_%xzcv|KUX5ZbjhEjiC);x}& +{F~UNjfaWEmW8q<@#k>btrUFs2g)?$3b*_NcCanfVe=-@a=js#`7@dH7INk^daPa6;AM9#t#N5T>n-! +hT*jg&GU>yk!i0RiO9X1OiBz7!tw(71X(fKfvlnl`PZ5i+65z-kch94`dG%K4al3rY3CHGA!ud^hp3p +mt;q=xTRh(nr-37f&uq?0o-0Y}EgTTh+i5~Yyn9DQ3#`yQ(T>cB?#5x3)Z5b&S`BFf2(0ANh+lu>aDQ +X-#akbrVXD*-SpE-|NRiCm`DYM#1D)U7#ROO!8-3YZ7*$1ZSS^RXIdzsh+%! +4lARTZLMAt-72k@8GT=hvG!T~iaje@CR6t2jn*s|t(P^&?0~zP6Wfqp(w=a6+uaZR1!yXhISr^MnR=(Ch-@CLUThYn0L!7=3H^ +vnfWfmF~LU4E^U&2Lk(5{cw)WaqFHMk9%~4^BDWyn{fG8vQ%;xX&G((FwlWeNl5DpB2sttEhP_nLHgB +)5+gCRhb{<8FyXU^}neB|>ALWwW%t%X9ogtcE8C9H!KzBt~{d+R6Lo9@x^);3%JeN$&$=TG#)qtguy@UXF=@f{v*Y}Jk +0`t8+Y0uXYtrEA86`P2HPx_vhvgD_LE=8$*pIoR|pxHpCe`NLYhp)JF50Z6I`ODX|Gny;dIEZm9jI&W +*WQ}{!#4u&4PD}CV32)7Tg$mj6T?mRFJo3&;f(^*xuc~r0V-viooPw2q{_Nj!isl)?TA^K9Sg3gu028 +%G61azdo4R;L=e-HnMO$rPSCrp{!#e+PfqQ+P11h6$nGqQrwy$u5&Oq<(y?x~+|E5_O!#F>zh5) +f!Rg;dVWLfQ>feGlaln=rp+8M~l(pE3o%d2{^0jHH>nyULi_G@(qAaE#7{aN0gY(?GGSEK*VF3ES@Ld +TPr6;s-cG8;QI0fTI<&eHrTJ)9#}V*hHYs@NWz|M=1bC1l&aq2-|P^29_ +Q&Y1rd@~%-k+-i5a+QcDJid!4F!bKkPlDrKi6MdPlG^0<#`7e8|z9v&jPaYu5vLJaD4&*O-CYsR>%i- +6;{{c`-0|XQR000O81DB*+3jiO>!2$pPGX($u8~^|SaA|NaUv_0~WN&gWaCv8KWo~qHFHA{8MNU&ity +0a7+At8l`zb~}EmcZa9C~O^CNacPh*R5vatw)CEJ2JC!)o8YW0%#kZKYm%%EaUO{>G_0zYO;2;NhX2! +0hqy%ct4nYzDg*@CO5f8PBHm_G+NH_=6ipco>ZVTI*a$1$%omlPRIcBSe%jOqk(nx+x*jbawQE-CewO +Jv4m>m(hUjVRV3Bn_^*U~g!hU@aQjy&t?LY&E~7^SzCnorui3e4Xx$$mSnPK`j1;})lz^ekZ)?HB5{}%zjtRYJ0+RMrGzIk2FXUyGUZ-7(d&0w43_?B^8OaQ%?kB +)TC6)3UL8!8!KT}iR#8Ovb41)VcUMYWZDnQO>JkuiKTw9N3d)RNC@jgN?Ypb95H#0D+5z-^_2mqzfq~I&A@tPJ%B>i&?!~#}KraAu7IWM^0M!p5tW#C!}NhnlQYM#~w +l~C2P5{f~vm2s68l&@GeMRsHawq~UUmD8el?~;g3$z+gzZxQAU3Qp$*3q;Xm#wAO2aPwBB7#zwg5~3= +Wax5?lhF+-LCO1sQzSnpOn~>2JU81#zebcTf*P6jnh%Dx;m|XLesc%pS6~n3(OGr +jFjl>9nNnso7d98TNjF*~8Sy!5ia)RsKU@EAQ;%FAb6=krBZ-fcC4WJ=|n0*49oZ-0)dB&t@h(KXtsl +LC4d>Ei6Zyup!%YrXinX=Fo0cFD#o8YRr3Kw{!#pNSs9W93yp(+x~y9b-ZMFL*{&DK1~zFo%ED}H+>F +|stj#XTiI0Z>Z=1QY-O00;mBm!w>cl9e3u1ONc13jhEh0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mUtei% +X>?y-E^v9hR@-jdMi711S4^D;Nd--(23nv3{E)a#ZNRx8R*M2fA+E@wv=zBz_F`Fm=(qRmE=gVDq%TD +U2%xmPXU@!=Im@%Nvk~F*VYjMTSrdNz-F-$!OC${mGCO6(6RqWHUEyn`T2U+VjaV^lwX~KMNrgjp-Ka +Do+}U_`#fr7eKf_>6WuxP=sK^=i5TdGRBUNFjDakaY-3rYC&$xU|!uUh32AZ*4n}oJ>7}wZ7 +Z1zD;s6Vu7xGVT##+3)oiUScM+^{I%mq8f>XNfDS@u$S)~6hsBdM#q=iD3V3Rj>-6*Q?+aYmmRt42UZ +(Qq1)go5QxVCMy<)VWzE$0#m3STA9%WrCh45SLSLRLsas$8=$zObL1sHEM|at8{fkVvX-oU%P$#1F+& +yglL56G0**iUO&7)M_{6q+Gp3osduCZ0l@)BJl+>U|8+wcK-H0p?fjs-xB&bf0NL|uRkZDH?l^k07gT +sQ05PJ_dPXWc`C2oJ=~GuPmWd2rXwJODx49^ihValC@Z#~S5h%b(p2GaSgPbw3*B>1(=;prV!iJeKSF +!2wUDZG`R1G0y!o0b8zfu{^5qZbmoG2B_Y#5X_ +rq#g)Cp?N^y-)S?fZ`pX@tQ@urfTO*AG9%_4~W)n|BX4K}DSi)6p4xq0~)HvO%MR${wtSChy)S^m=F6 ++`S)-7K=yL20~se=!(Xd>32V-mt*{0GB8 +SToSfS{D>z0iS;yA`K)uVdw!zKFK4lZz7kp3n9-zm#?lfJqwGHZ6^+b@x)}BrAPd%-VL(oV|{kW^N)=9Dd*PGeAn`g){WkueL=VEv@ +{kj3eSMMc_-}ssK$cWa5`)c9c*QrqED)5blU4K4bl6~e&iKDh1v`!Wr^A7>of_wkvs@Z +DTrc(>>jgu8{EaA(x5o_5>(;2`KiGrHM`X=2^>)FEaN?GyM +yGHSJ=Ih$-;5wMCLIy*+f>ODJ4;AN2Co5cYM-6=wpkNgdJA=%g)y{OU$00gS4bNE?;3m-Ko8iB`KKuK +##F>sVLP3Em>AfzvBR%4dfZIzScljshHgM@4LwFHon)&Z{eKmgc6XjVwNGa$$ap4I!(WO@WWfT +SlfIEXntArl7kVBL==%Io+5n=5mY#1|tSMfo3wdM~kVum??jVXhAf{p@TXtPfECHr`zgo}KUmg8$u=5 +0}N^1@V<>KT_)4`?)k>66(gp_lffguM*YqJ8tPz?qAtb|2B)(Ea43%SbyfL7AGvm^aG4Lg7;^RLUuCi +>U4UsJx6>x`Ug-;0|XQR000O81DB*+Zk@ys>Hq)$VF3UDAOHXWaA|NaUv_0~WN&gWaCv8KWo~qHFJE7 +6VQFq(UoLQYT~E7i!!Qio^%aDt7-$5?Ks$JA(f|$87wUGF9hMl)e*Y}_Y%|CPwZ{V1<*=@FO<#u|ZMXKfCIZI+HCY3dgzz5Hc&cvsr<>G|8H +I857HmV(@M!1m2?2N@=#dI%fIi4jgMtm_&wd+o4%JAHvCD>y)nA){FP3YW@r5o8QWq(jh0|XQR000O8 +1DB*+$76gZl>z_&wgvzI9{>OVaA|NaUv_0~WN&gWaCv8KWo~qHFJo_Rb8l>AE^v9JRNHRTKoEWRSBzG +w>@;bx(>79F^#Mu|l@K5bPa#S+_9R(i??(2T#zpY$?8SEM5L6`g#dA4lW_D)Qgb)YR*_Nvmxy*-=;JH +Z97=Ilc$5`KpETs}6k%$aqs0bhmxh>?-V!}vl%Z#noGKAY&gpu!$&qn^}5*8)MHNwX#D@dg20CGfl`Q +`K551$@}HcY}IfyEZzq`M^d;f3;OOZj0lCmTpIz-*V!90Q+AYXUEVxrVY#F#6?kDpeY5Hi(%Q +mYx}D2+`s`#{dGt}m{xeLt<)6S5FV+=lo;+VGc@@ebb~?VY)#JXS5~_|NzLg2$L8jAI9Iu?H-abJKBN +?w#WM5%O5q9n)+xGo#UW*I{V1Ap=mijrC`hA#yF0m?Yv+ON*pHGBEva9g@OE$EXcts_NAs^*I`p@|-QrEBC0BStlZ?ei+qXU_RHr`5YdZTm!ZBr~vT`^~ptwpd+wFA +u$g_rx~%u*~4|H#F`qwsZmdjtQ&OTwjG)oxp_;6puSQ2HimvrjIUad`YP)3MI!YkPmRu&rszo+s3F~0 +`78*H;`ZIJiEoKRy4@m=J=;pxByy*{2BrB>g$cs5;2)BlKAS{!@6aWAK2mk|@q+E9KSy}u7004Fe0015U003}la4%nWWo~3|axZXsXKi +I}baO9eX>4?5axQRrl~qe`+b|5i=T~sqAx_~MMS<;LAi%mlumW2*EbUoUY&sEOTZSYz3ySWyk9zo(wT +I?XSt37@-$%0Z`FsZSYYy8AYon7wlm?Z%`#b&3+~p6MwyNMc +4tz!?2d4LcJ}%7{OtS_Y!1%%SBMV=c@=|3go}s!Z$E#p6Ax303~P-kd|hAp_wTot*LUk{D5Rp$hKo`s +vpLl>n^7jfo2EQ4pNo#PQ4TnK$57%QRI58#<1%#-=7EU^ZL1R+Dl|KpgOMHzcnyMl`G(4uMTbQ1&W(c +)k-%-?!GSQg;t8$WLfbU=T;=ExsbuHnL1K_}q4vUs#&8P?GbDcvk2cN6WRj*Wk-5YoZ_eV7L8!<64g$ +*@3MH$6$%4L-%dq$Gxe$-R3Pj!2H-LFtSiKe287efbs>4-KLc2Z*fr}%$uP~E}8;b2(DwFjSD(V9cMO +$Y^NTRQ{8ia(>bk=9|WsKb4+K{E(qsq9(NMl(9wYyA-?#2S^5mOxj#vB@q;fa?mS{A&=)NWvQY@N86( +Q;B*H93$IzU;s1h<_(9p>2`<@y)d1z%OYGD`)dYzp7FOhvo!Zme +aI1Lb?!Cn!31fsYdvO8&RyWNHPwNlaw*K;z_Ch~ud+V)~Y&^$AN4&oxWt8B`}sCs|z=dA1NZiCR#O?` +Pt;Ql{C2QvMhX^pJ75g9LOCwX)YI!HuET1_LJis04-)zDZow}gb5u9QBp71)LIE^$NwwKTBf+BK^;99 +r*a(!2`yG!>rvV)5+MWz1#GSU)Ns)Qcx~FK8RL1~#&-a~OboTrX4dX0GpSl#lc;v82tDLN2u3`75gL) +Us|rUfZy)f-bS>Xyc5VcRBk9P)h>@6aWAK2mk|@q+De+a^>R&001Tt001EX003}la4%nWWo~3|axZXs +XKiI}baO9eZ*py6baZ8ME^v93S6gq}HWYsMuOQq9IfX409X1TcG9b+wv_RJmONwDA0*jU?iwi|+B$d> +A=x^UShZH3x?$G(cuqmF~cfNDca=BbE_;klZE3|icZEVZE7nY8{Jozl>{1tbCrK_w|+_^kF+Lop}T6t +*vmR$}%*~=F%e%QQx@$!4NKQiA4_FFW_yx{GcIU(4^$D21Fe!tFx8YN4io!GKh*T014@7`X%et-QM?X +pUEE*02ZLI4ZdcE);Eno5*zv8b(SStq-EcQ15hY@VX)y;LmTJ_x_t8>4on^Zy~@{80%v6{3^f{7be2gC}d~fwrqfyUda)(a9 +CZ&QUKZ34h%<`qt_re0`oOyF6P|5=Q@CVZH*~bhfVaHr!dR4K8-wOsuR_=QbV8H!Gs1CBCMCqkIU`pG +Z-88}p(!s4@PPS5UOWGmhrLk7H&gcpSw&dux_>zED;%JNzz!j$|-8mgkK3-lX&GmQe~KT3c;4_gw +X2`_=1QNnoz~9}=}x0*!oC=1?m#7JG~nyloj5)iTLBV>J~Dm40dj8p(gVv#!-Y~~ErD!Viq +7LzsIfhFvK-V#i$y`nE{enxz&#KEZS)R!gdXi7XP9Ax8%l<=Yr5k4Jz<}uSHM%=E2!6H{IxvG*?Z$rR +fPpB@>c{vWBv9y-^-%9*{iBxHAIHK69mL7~5%G +=xrJm(EBq~Qwq{r}=OQh0!qXC3L;~+bD@n9uDtdo++`;$- +BOz-aEpE_7iZR_XKtyAaE-yXjW5bvFQ?|v7^xRz#q@H>P2Y08fqq%>y$TP53nX(+P +9R(q7gQ8A#NLg&H%*!n7E)%nOHR6eq>&P?Ei)R$BME+!i^GiF7-SinAhk +8CxHYsoN87)*9p>B^^oY=v_EVJ&=$Isq?_QLCa(jz(#0I)t4f12b)vUO8f#Ik=aSv5ITcC-Wmvt&)Q- +LV)SGd2GH{+)}?e4cY+Jq&L_^5URYphInq{$&v$M0g4s5faV!D~FlB*d$1 +?ekl*K@(pi_h82937&$?9uJiLLUhX=O9BJW@vRu8o-__06MR-Ll4-ZowDH;7Sn8!dm!eScerv +wHx;y`Hx_m4~dEAq--Ys*yXJE_2$Ry+d`T&$Bg2c-Ja_hmY1YrWcj#(!aoTGN@xU_6gI(84PpuXDAefO8;AwB_VSj|_8Hh$Bz27?leFF{~c*{`urh#n~R#~yV-kNb5CIM(5f<{-2Pp`;H9!Mwge +3>XIBKIAYD3KEIS{68vGkRsDR>fc>?%;rVSS@;i_JC6zbz~w+ahY%poXF8{ZzIU{{OjH&#Z;8C2es!I +yCC!pfe~q-5O%nvuxy2KqGR9wh;$ysf6wgWW@&mt&9qa!Y)Q?!h|HxCVIhnfS!mo%?oZRVm4tb22Iq_ +wiY%PbS5q(tccDP6Tq*=K@&>{(}r8BHHtOnfr-z&^y)bE5#NmBUM8y3pgnFgkK4(E<=wDSk&i%W-0ty +R?hg#h&IE>A=kWzO4;^|nvvKz6yW7=}fXC?z&6%Rz^_oOPwK|!*IFs?E2I5DMu`4B{KEa^7#mXN~aQ} +3-xF>L*IR*tS;r$A0ByO_L#>;Wv#h1@G#ls2&W7Jlgj$02{A3L1%&>JEj;J<4Iti#Nvp0INJ@h?zI0|XQR000O81DB*+R|q_P6i5>gt1( +oMd;g*aqTI?5bCdi +B?E=rZ?I!-ef^FE+`FWqd5vR0)wpQ>GDKGx|*-@CUii;dc*+v)tH&Xb~?+G(!StcFQQ>v+4(c60u&ny +4S?!@=H_>3*qe={#TV=6MW55BIH$4>~tJpOs}%PSjg{Q%}@upb-4=_p7wl)iz$~iJHH~)^B&)eGr>E& +3sgrMUl;mEkMM-(!6$mWN9UTy(fBa;tzTr=W({H;u9XAKy +0;(C3?YixZ8OqxUy@{r+aTg#Xqwdc8jW(`XzF%MUePL*uo6fAapsH2&)GU~6bat)Z7|z0`-Go3^Ll?r +9l7J^dD;0s-biAmI_DL{-DutTwv7Dv~IRH_IeeH#2oIJpqc`BdMThkzT@PjcQ=s@r(w&FQVoxEQ5mnF +}IDIy4b{*=?d6or&dM&QI{Yf77H12jw`)bC>{~^TwWIhhY_*gUtguGD-~zg@veg90yfUoIxFH@eT=gP +1(iX9KETA(e4gv;`8?XJVAJEaov0-UIQSzGobgH5YUJZG0u)p-3kaE$*&r4ahasR5~GyR#!!VTay&Srl?2^m&LYB<61kYH2XvqIj +m!u7EPsAFfeTNScaQUiHGbEvl)@i5O66-}1#g4EZAijxFZumGO))@L?I)TYdCj}>g<3P8_c44w3JJBaKi-U;j64a>Q{ +i8tG=)Cj1Z{Ykr~i}*fk^`*OITmUc>+s +OtUztTOvKzl)>R9d=0b_MD-9-#1q_yM^K7xOg5V8)10ZA6Dg?7G!Q#O`Kq{a*suXEsgr4TxrdE-N=$U +$3HhMhuVFP|0;EZ$60N2*;XboWjxS@Uof#Jpiiw%s1U?ML;_$mArz<>yL=z_urS)JA(s?C%-Q(zt81T +d2RA5B_{;HZj?He@I0xNgnHjDR4o)5?f9;S*s<;zwYU)9F`c73z3d!J>M|KVPfM6igkW&t<7&G!XshcLZX8(7r!YlQF)#}Nyt;}(!_)v8Q3bHP`}kW6Crg)QT<*Lnq_91KeRX2U3oG3v@M|DS2|B7GsQw +xtB%*!G7B~WiZh*!}d{wNeAMw`&SNN*g#Q8B2E?&Y!fdek#0b7!y=rz3Jr?K$6m2kU5WSjL#8`7d$V~XK0XK^kBAF=bN}*T`fQc* +1*}hphRCf-6o3;Oa?wzZouH5FcsQ|XiqbmEG;cK+7|c@M-;7tlVw`On?kIHqnRf`8Fx4Q?}9yQ5x^Ax +2mJ3(0_L=5G6wln>=l;hrvGf+02o%i!%8S@g4{pB<;A^FZcx-QT0CP*1Co;H6nct~U>oa +bRg|E7VE#D?2b`{sW#$G7GKT^St=t*bfm!|a?aLP=#bWTdVcUWvv*w>!85z~USuEZ^oL<$N4EKw-kRE +T%53bV7=P#d;Ia{%*CxrG{ACXL06L_>|uhdvUA^4xf(wP{{Hz27}ltrQpmChq7NTX1A{dhy$O(w+xKgCl7*Jq$wLv~((};G7Xqulj@I?Ai8xsiBp|0xckyugKvI0g(Qslp)+)WKE ++9Toi2h&Z=jq%psFgDX^kq +xT5v$C4|<25KD@kaIEG=tJfqE1HA}YCNIkF968;s#4%86XjMuq?hlT*|Ty$P79HOH!`W#lkwy@PS>M~ +;}R>n$9SGKo-ouyzwSrgGSW}a9olG>1#xQAwe#ZwhcxuO6LdI>x5l5_X|_Jo!P8&C+OL_(YyG^e13qL +KL?;|HU0yDO1mIyjU!GolBW1BM2)1TkAbvK>hW!#eUts=#7t4D))1(Po27L&jxO!Db#$umQ+fl(oi># +JCv>0wb!O#TkDDo0vud$X7bs8aWl$9F$zVqrNF@j`_5gCy8EW9+q6;Ygt@)?T76mX$!QJ20&IajC*<` +arSqI7SNv!_7H$E+lK*|7X1i_;Vj)H&gk`)_t5#IGqRYrEj}{eBOkH#dCQK@5FCwB;RlUF5GHm@s>Qr +PB_$DDQodfO)SHlW1?-}6YljeM5V{fvjs)1)muaQmmcsvGc**CL5Uhz~js6@4=&R``>NKB|teVd;Yy< +**KL3?j^^*_ti}Kg+Mi#CHPWa8E06aT0Z`!=KW%7pw_md=HHxRe8jyKYi_j70yw7UY?(4$E!atc7MMs +`#V-?tXXtnOJ)v_9%VxR+_B@pcOiY|rZYk-Z528JckzwiI=a>Wds3VnkN##sKsr|8r|in{X_u4;+m&k +t|~@VNWqoO0Z{~Xe57Pu{fEYu=BN8oZ`nR`K4(sFe=kz;w%jdg4|K0Jql%=fn5N2$CV4?fp%Mx@C2Q1 +yf=YsfylTMd}sVy3oPAibb?X9Y$ve*&(d%pJoDSvk8iE|#enFd6Kbv{)O=mW+lu+jXaLZeo)$+M0(M1 +dbZp#OyeLNkB7*=iVc`~wRaSYP=r%5ayO0-+rC`>GB2qZ15GC>GLpOgx%Lz;LeBBQM?2+YvpnJe5R|+ +LL_y=l1Qs3c|)+1h~3SC!Nva}1aB8yU%Kiqmwlxx2TlYS2`#6s4GqpF +?0KfX@aDcKGi5*DuAKFE`+M{L_zvO)X0O;-IFS8pxHFATaXQsgg6JY&u4dVjv_nyo4BU@Sw5Idf}Q#M +-Sw3*ZmToBh0iZPPEZ{i(1c^O>t}!$^mf+z;Ty>@eMtC5<3KpXi0mD5_I5A2u`^BF-3tqz5;gfbf9v?a2UlAxV?p>>}T7|s}$m0*$ +|dNLuW+ruJpdR5ok*`r4SWV+Tmft_E0<|@j|M_`apE8T&41mo(}2a@^7>Evs4S~1I6U#|TcJ1>jP#E} +H#evp{#Co^t+;9{^M+h1GLThaA1=5@cHcY(2}ZEeX^%>%0y=qJfm^4$;FHqxa2Puh*ji?(oJSws6gzf!)RKZsY75!!|zRW_fX~9;Vep +(AN!zxy4(&*8^=T#0H4v`y3q)%IzO$*=c8_zj3+38Te4BMKty(6ZFjwcI_Y7IAhD1 +Dx`wQMYw4aRW}))-BGE8ko)KBxikQSUymaOR8sJm~Q+XBxhRWHj*2x)rt9ybyVt}Py00j#Jbh*a#6)3 +sb#B!h4o^|b6j})ZAw04G-N`Aza`cUM-gnfFg?A$Y}bjkMa8Vsk1riS6m30qX-1;(mDqKNTL^$ec9`i +hL3Y&TK6qEShakAQ_W=LHJMWw8F|S#z*m5;YD93<$a4TNq*LW-!C-rG*mNfYU^|6e7(VWO0#?Cobl-O +Ldl11cg_#Jo;SHojRK`7CYqutg_GzTj4+l3_*RMU?Ep0$Pb_d5D>hpe7>p3#gx{mk-e{2Ud0K6h +mpfeUFwqP1)tJu%_BQT627)N2Ya*v@K9haJ4)B1%%XXmcg3Qg1EV#mL{}XfpIGDiaA5lXS*Z~T)3~2K +Zy$OKxP1$Qc^G0o3#EyckfQ9KA)V@Xh^(63m`L9m33ODWB*1>FsoPypBE$;39jpuJT&!LQnl_sih|J4 +ob4onJR4A3#1$PZFMzJAyi6@~guPJnCnkZXgCFA2rKJvS*`*|!PwTDp)jI4vTNa3g|~i^Xrgt7kVc8s +!++4}<8N_$J+;kO$3&xm93kpi)2kvKjrVsGl2{Iw5n~))2Mo>>~QNuU3oW5gb#;x)J^x(X%mh^+c5ga +GSi!*))k=GDW2Ek7QU;mI`TkNt=2V=dcUK^zu_M1Vj?C@fsHW8Z0=LIEw{UOHvR6S&sHIr<5EVM9IOB +m3n(+^F_AI0ka;Q9Rq+ohi$z2fQWN;8l7re`r2Db76iBFIPzRDpPT8}FHpK?`b_FQ`+{V&{TvY3rXI* +>C`uI$gq^}~20JoB*nvOUx3>!2-*xjZ8(`m(4Cs;bw7?(Jr3sgNq1g<)81B&x*`_Ul8cz2P@)eCyRxp ++tT>%V@95Mr5m7RnM6-MMJ$&5jLItb%_?`UYg9qNIx^)Yzc?*TY?79}CuI8YWtQ~S&*iL_3NxdRZnj| +cpr7XJ^eq(uTNBahVa@A?2hSC~v1s9Udm@5qW%Nux&;aiTEJE(4QvW)i(;X%6ZrO^$7Gq7kys^8~ZZS +}GYh%GgfNtFp;V@mCCr9YhDWn+CAZ+Oa6jr6PJZIGpZ|Mm=~OOm|kzR+j`W9B5xkL)P9FWZ%1Iz@Ay0 +qVYi*nQ4HkT%w&8krw}K;+mNna6Cs_LqIS0RSB;$u!J6h&a1jpCCsKlOKLcr(r&>yvLLt_Y#d#oCy-$ +A04qx`uIw-JPnB+x;w9ETgbV#dZRwTNMM#j?W~2=TV)2d-t2MHdI^vuyWY5iPy`f%QI9_^QApI$Tff# +2PzUdOy1L3-&5V}K0^`%0I~YzJXWtng6N?{?fkH!AkKynxyqtpDV@LJz@9jiO31%~{B2Q12f4^pTk1x2QKBD2o#>7T +@!qSvp)SKZ3`0&DDJAY?)=+UMD${C)#>@dUVPWZm1vKwq-HpCmOQ;9Py_PNY-4a{p#Jfy6PY*ilyrR1 +OlZ>o1vOtn~$6Jru^B$LSrIpYzdvFvne7R?LeNqo3IxZ}gf5UU2M$4*i*r}DbvFm{Ym(ZL6SSZqyvfP7!E#;EfvO4|KMb)_-ItT2r{Q43zG +1qTWwiH@1tu4%alW?|`Sbk+cj?X9Nj>!MrdRMeLU8?z%GLa4&(RJJd)fkktC&uMtf=T;YEziu45`{0s!e +wX^p{_LnZbaoD`8+fw{TTlcUsCSfo?}V$Xl=Dr<*6c0YYZtmP=VqWHdXs}HCVKWqyiz&jjUvrwPn@9kzqU`V9sNJ2)Nc+=8hM( +&JI1Ep7glFZBMDzZ6ApTrri+1^n +J1e))R0wZX@Wx@ntf;B$t^yUm{Uo~s~*d_yGe#TwGSKJ-m@rM@q2q4mrJ_NDH0guQYM~~dd7D;bJi>) +`1J8bK8G976iI&1sV)|uhHb)6=nO~jyK*G_`g=HMcE;`i)S<#mxuiVK70tbgj14;J+J>Lx)&ljax%eT +4t5v-q;=awYWt$tJd>66~_cV%%m_&yD*LYr8>I<~65PIThlahG-RKdNzfO99syz4WRV=Gt6Lx@WFLN_ +4queNj@tC07d=$K7!<8EQ^Nj<8Fs5OChoB6UMh)@MDfBIF_F@DzVDerS`Dt+jtM0^Vv5Sc51Uda|7w_P&@x-c5xedwv$b5?va9gNN!H2+eT=t&Leb+UK(!PBRf^#@TWIKqtI5Asx ++!4^`>DeM9u$a>>{)3ymyA=;_Lloq#t=JXto^bD%=!Z0YEWs%^=pJ?F2ML@22lVe>mxU46d>HzZ!MX# +4rPav=Zl%%D2zyJ$=0N{+t?cRz2yIya$K=f5wv81A?G~YYVB-SoL}7o@XZwoI2jdciJSSi}F>AjF9eP +bn3a`f(JK~!B*hvzMzpc7uzQ*=IEWQvI0;$*)MGT;imLWlIDUQ@{kxalTM1pZouDdsK-$y-@G3+IuJ6 +-NXf!uO1QD9k{qu(ZjvBD~jV%-Pobn00=7zd(5#0^#zZaK_I9us^9bFruYW52&FdDRksE+zWe$yqJmX*79oO|?zaYq*u^CO{hP2xVvA2G@!;8-`_{WpB(hD7oI>6#Y7-}6F!Rll5nB*Tht@;iQHqk> +i+~L57$FRhL~XAqw4ykG{fz!cR&S+r*;Dhuxxl|+nHlE-*Y}&8$wQH6c5^<-n1DK!s<6dnHYnQCp8!$ +#I8&csm|yRkBLijGnkgCFt!c5>LqnWiwBk!x*C8**XkI?v&o!MB2L0ybEg9|n@x|v@GlPuTC56wGrt+ +_!3w@udaym7jA$%b&6WzLHzN^}y!nQKSlq^O|N)D&AoT4gFs!mD?>F|;~#_Al0y>Q`uJ4?g?Q|tCKI* +FOwBq-eiU1c>U28|-yuO%{i1ix+CV@$M3X&dwufguPaq(qHX*ZrVXj$t}-}IHFKwSD(;S)~@~D(@IC`)pR)pk{a^!@mHXIdMSKn%{&QQu2L{bvf +TiEnV|L>!x@bA;eMLF?HyN$MZ>M+49E}a|r1 +^NttvxkZCRs}S#WW|a4-;evxB#Pkk99bZ0f6Jj$miWj}^E|mRK&Dg~9vO?Xx2qTjPU-I{s^~N7TEio6 +dsA^Z^>*sFqIzcIfK&Qc7@IU%A8Y!(_j2bj0$46d2c&4DTZtkEmF3s|bZ}CQqL^VuWQf>eoUUEF9V~NFjjfYX}y>!=jBBrYO$nH{S#dSaHqHO}xx(me1#c0b@pV*P-p1#0~>l&NAmLBi?`2TJb(2}Znu*V6Zp{ +fjk`UKuR6k;%jL47R3byG4-WUKdX5`{4-AS$1@GlbJ9npC7~IOz9Uq(U(wvzR!t +p?8;SDH?n$GjlrSVh? +om?82W;q%aoE68&B8l(9nX(XFI)tOIrFr8{J7LN60J4m=s{N88>ee;Y)ETyf4N!*X4>mY4Af!=#r*qg +)us7eD){|}3)}!bH_?qLjvMSaY$=CeIl{vA?#!N>exOn;=M~EJOwn6_+YsfbqXhTS@Aj$M_7emV_oQT +d2CWViX$BhkVjss&!@HyOww;B8ps~s3?9~Tdxwk5%6dNdxh>_F&EC`b>BG{&3w-r3}=3o-~cebyd1o0@rL_rqx}cP&9ZU?0F +F9qGuh!qNOa~c!ujc}dmh(+Znv^6pl*K+1HVJjk^g)?uO6OBtC%6E1_1pu3+ouVS?B=AJE%AR>E0sMk +N1)KJ74`uZWY;D$RAl|;f=FSUqsGp~P{hzX;i-Csvpt9_garw{QNUArY{GgU4=Adf +s9nD-+XU}%_uK}}N@LN3ci&X6cxOjK4E`$3SuL?YHDVI!`dq(i6+u`%K*6uRaFlXIiUD_#1t|A^flFO +zE{2P7^aNukFmo6dA`Jx15Hyq)F!}QG-FXjW`{V&Iz`-qvbBw$fG4)f--_rUl%_;s)7lbrk}QnVMyJK;~OBfoL6VifGc6%^amd?MbZu!6-p=)=fz3GAM%^5=OmrW3^?1UP##@ +;f6oizGkXCv!t10o3xIWZXWtMXncG`FwAlRgJ;zU@e(-PeO%rTM5$@>O6uBek+)Geq}(L$Ueaq0l5Dz +M@o*?@CQKmf3sI*alO4~g^zc7XpcjL&u{R<_^9w9s}PBF2bTtPEnlD24lMoUVAs!JMK|ixC-2@qfBkA +^&sFhp0aW)w%rE}msXWvVm6)aW9eqmM?~ivW-B4ns2ORQyI+UG}{#bt!llq>9MGm;W+R0_cboVV@{T3 +(vW}SHkT{*Y3w{yB2S${uA&cXZx{kYF%kpFov?iRA{wocqW=gH`o@6L=89iDdo)x!da90!5+2YOnQGrQIhZ;i{P3+oSC;cEXaa=9#Tr +-K`ihl+FgV}-qgkRIT8zBIT&=Sxa(rS_YBFFbHn~9PYq_7vFU27qXAZ?*XT3gMYNK@=Vhw-?$0ja`Rd +VYj2ZC(bw)_~+UCK}dkV&0PPcUY}ILQwjX2s4Wf_d2yVs|TE{941qI4xYB_YFf#65P;g+3-W(r@j`M|Auu3W$$GZMC&O +HDa^k{{g24Kp4@q}%%tMy6eelTg_bCL~{rR>aw`k9{S9F0+w+*02yf +Oc4#lJ^h|R9>|9u;z1p{5>BFnMZ-o!7u8F?=R2FM0lWJX>FjO5DUYgL;8{=ge{w`2uuCPcq{3{phV)| +PzKHn_}YT-J_-I#E|l17bjxKE+`-&7Vb`hW=eg|Q_Io*km2fecyC=cjk`P`?PV +uHWUUL+AQDiVA;s0mVu9|M*8~Q1LHcPAv?~u=Wj)7`4<)^Sk%pEMIxEMwsPt^IzM4e1eT3$(gf~IS_( +Np}V@wa!cioxbk;ZQHpYdH(&GN09UO@rH5z-)6ZGjjrE&~bB@^ +C$HL4??oNwMWfuP)Cf{L)t;Ss4216vx3hVGHG;tA`R;I%HK{`8C;~L|+4%67P@Ej?JE>Y^t$2;;AUkf +#dhYzDfra9$Gq9`I+v@N4@Y<|U~d5^~@-EWG(L%%BWel$Lxef!OxqjO+ToSvMVsE4RI%qR6o<%59$gL@1C_=zdgBX|SC{_Bb^%IiK23Daa(+@sJH|Jkn5 +TaC`Pj^2$5w7^K7Y~jfpH%9>@wZE!b>hpEgt=D5-{ngJH~Nm44i0U2o=ig_VC}pzuzS4!Jnp +IulZjbHQ6(f{{m1;0|XQR000O81DB*+<+z<~@Bsh-?E?S+AOHXWaA|NaUv_0~WN&gWaCv8KWo~qHFKu +sRWo&6~WiD`eeNtg-+b|IQu3vFvA7XcjNy55;sTbNVu)%0cz3oey86`d^0!#KJrPMI?+k2L3FKO2aEX +lfe?>(JvFc>hPQ8!zO%9==4IhI19JN@%~Fn4?oM##EE=)h2OZBRq7<_2@96!CSjF!D+9rm7n)wmTccW +w(XdWb%GIo6JsO-GJR8+&mcpi(HPtAj0|gZ=bJk)5z15VuQ+H3>WDqAOHI0a&eU|pr|zDXt^j�GRR +MlLIDK_g>X#>+CxAc5s@i#97niMFXRD|98Z^}Z-j4_Az_&UdDfz#5}XC2Il)dN>?93&A{wdjY>`k~HH +3gzjv4mV8{z;VwUca1OD4*7D7fkqgMFG;`ZV?U4&#R#{youZfy +o-7{eP-)h`~y;={YCla)kyaFNI$*P9(-T~rhxy}fp5w0o^UMq6F&>tOo2p083s%LpWYaQY@W4L#T3sg +=?VSMDi2+&xR@#Q;}%r`Xqn{8ZFL!Vq?^^5}@przI_0Wa?5_cM$lSwA`)%h4R4Vcp8s;Z|%=?b#zr?d +aaOcv-VK(MCiY%2bH3w7ZPkWIiDl&GAH311NZ-@6aWAK2mk|@q+EXvjdFYf003hL0015U003}la4%nWWo~3|axZXsXKiI}baO9oY;|X8ZZ2?nty58 +N+At7)&#ySK2dKm{Mzv{+!~^T7hQy!(CatQf$Rr0?bDYRFgS_;&?_#GRKugzYemdWszx(dHbEDDlfKH +aL5|l>!nb@qjw7!SK<5}lTnFuZsxHPDiEJEMK1@2IlK^+9nS)9A7giX=+RU}V0%025@J4xe>z~Gk5QQ +>wN%Ty)In3uq-w4(z1=e@(bt#kc&tKPixac5r0waI;5PPJe9iW0L&Wqo!IwVZ +q~p^Hx_fb0xg(cms;vv8n!#%uQs{Bqh77AtaJgDQF)l9w5rG%G8ekOCjXiaZ6za0 +&p&2%Fo%;D%PpjDCbJdbt}cj4xr$G!azpoo+)@qrk{C%h$zu17 +qCo|1eoJ7_&|#T>9@jz+?;(w>0zL#LO;nx-7<51E_QlE8Q0?`c*jnDovr;C|MHr9S_H=SL@2AqoASJ@ +Fyas`W3}CjXqNtF@y0_bSXq?oaNVs#m2xEskH*b9Kd|CD3|`{=g6@6aWAK2mk|@q+E@r00T_~0000C001BW003}la4%nWWo~3|axZXsXKiI}baO9qWoKo0Z*X)jaCw +bZO^@3)5WVYH47>+QYg@1vXb%FM#dhnW0n#*BZ%?vo$Tn@W)fY&569++mduK>W)=F}+J|tRlKHj`}9C +9!ic!0n1e8_mNRVev^e<@0BR{v}NJhS|eLy{f}DfBS|eM~eQc+O>_xdL<*nfS_gU?SnlzL1b5dV3W40 +n&p05lW-w-ULg9M%NUSmS~_tnL%Ob=7!L4w$O-i>~sIW}*vD(@eSytq +wJ@gZK8E{;2M2A?{Tr7FCHI0&0&VgLkwMtl>3s!%XsGinR6%4okzAi-4lHIcggR%aP8&Z>vdu1mEC +RM%(smXa^nNe`#=?IJk=MZj+-580@|k9@vH5F}qZEAC%@GxxuggU8+@(jVpDcpJdRYY-g`irJ{OqIvA +~!u&$P>zmM1z{Cbuw_u-KK@&HUn~TNr#bkzybzHHe<&021@kRP=k}alzs!Du@Za8i`vM7ZhEuvJ2J3x +=6lU*i;7vhvKJB&&#FN2WL1Svd0r6|z-$K7{v<`7o?+_zJ6Rf)4xK`Mlad-h#>Nk8nlp3{mHPMIG9)}C$*I4^-zCE8E;3$vgJg?7aB +~!b6;S^;_Glx27w}OUntF9$gaFSb+))!sxDRddw$bG%#(7V)~)7I`%tYQKjtvbTLeq!4^-GERulqJ=r +PJ2vjb>||jC4Zqqrs60XPkS<1W8-**Z3v1N!WuU%-GD0;9EJm&S6Hf$im!)Y(^c71fY`sS*S5uQ2A-7`!z8yl ++Iy=pEOy?Z;T2x+Dh;bJU+NFHmmkBz!DGuf!vE6lbT>*R +d4f%(Tl>Vu{oYxp~ad9yNdYXM%qxLRwxzHMI5dMAi%!2f>k`9#IT4DDf>qcSl1OX +OHe1WZSSU?vifsLsVl+a}>N^~KDl1~Vq1equh76FCZgE!C!>kziBhe~`!aP0Yn`)6Yd2fh+Mco*29F2 +HCKA>>ATeDMjq!CbWDZgwOmgwoF)!!ypwtwN5k@FhgxQ1GR79=3aEoz!In-zs4NUmA<#L-ENTZA42)1 +=s9>b9~Q=EQx%)W2^#{F;75o8B}(Ms;Oi&hllX?gvFri+%$VD%gV3eZT||_ +S64s(czt#K69eaiK6PaSkD^|ILxkJUkMBM{Y?2s8$sD!AHN4r}Mg9BV-rj%M+{4aTqS6bgTr#_$Hejx +-Cmv?AS+0b0aIcGxyGLSo@z827YrMDC*yTEezUVsVK}cd?&_1i79 +<5Kh+;<;qwZ1to(#cz6q`uQ;i;R@cs*&6vs(&RqpwUso#Z`Q?LvEP9NUH5 +$1emLrzfcsoc_sijZTg+sMlg=AN-Q=)V?R~<1^n4t#L)}juk>o`9cNqVj%CGINIssgrsGR3iDh`x^Ji +&pt_`2?G@r!&r^5MIDdIQ3MKD%7Q~NKY>dwpkt;IWMeFX^_a|>QHr77{HMD5L8f6K|N_c7>$RD*aYV^ +sl_zsRwC`6e~pzu<3bS*S(uVpSnir8uA-0a@#a&4_RlF4ZE$imZlpBj^x=0vlMX-u51^{Gutni(;{5l8FYG1o5-{zCg) +`WpB=_ELt{Vq^2!nwiXu6SibxC$Pib +vTGT`x9whKgQ9Il#3OWrpxbxcSL;r8bZMwt9wLPfoUi{xiagt5Vv~hnQF%UcKSE1a|?J&KY>iD%d!rL +pU0>`TU)~S=ynzmV-EEc{^#!;icxHPYXJ#+7b;ldY@ds-HRAJ{HAxroEC&Xf6a`bS~0vE3iVBxr|V{> +!C<%i`5#@p=xIusBoEH2f!}DZOb?W16l`jfjLZ(&M|0pXKZyP)h>@6aWAK2mk|@q+HHR4YSP%001o?0 +01EX003}la4%nWWo~3|axZXsXKiI}baO9raA;|6cx8BWE^v9>S#59QHWL2sUqKjHP)fbpH1~qSI3KXL +ae50RyTvBG9^e>SMxtYNWl1N}c{#)V?Ki_0iK67Jix#-U3ERdZhcmsisbx>*J7e{tjZdsB-|5Lq-2 +%l_&d@Drb$^n*V+AAPRTp_lboHN{`vLU>Diyi-7}GEPJS?M6Uo_TLImgJ?TMF|xsW`Km4^5+lj~S!G6!cyqpOeSKVHtyKfWU~LMa_Z5!saK +Hs{kRc?AOSAN<3a(dGP~^G_YgBxgbxK^3p-wKB&xT&Phsc#-AY43TE=>iyN6$mdFp+V$>VW%AwJItRiz(b?ZDEJ5^P{|UM4|v1mRT4j!j0qC8?c3bSGt=!yRFHZczND1@IdKUIk>E2TBX(g0|Uc6AF +5O-c8goxMm_w$^tS$qbH2hl{p~l;y2d8eoBCiC7CdDtUfTX +&d|_6t}`hD%Zz(jAku)oLarVxP0LC15m`#5ouO*%mAx(*4Hc(oXnpRt`0SzS@FQ~EG5R5irVb)Sy0A54Q$TJzx+k%F`vE{Z-_>8(553rX4m}bxksGTUA?J{(CRgkR +kkk{RItD^~91i+M8aSv3>ld?|Zlvlh+d68tWC6=bas%XvBTyE<^*^Yq5^R(tgn+FGv!b=Xw;_sURNF= +-4=By@G8f#z69Hz$Mbpu5VsAan;fIMohikcEqgg8<6O_deE5k;EwRF}U@XwgPlfam+6EciIoE8+N=;F +^{g$+O}MQdw(5F;ip-NW~n>P?c3t`~VRv>!@iAjO+1+RTae6Rwh+bu8&@CmjOMcI;633qEVo;V6kjN1 +hLGyH-;yplRCy-1v*&UIuEa)|19B)c>flm2t*xd^G6hoD7f%Bn +kO=5@1GF$9U-S_IXa|;tofQr?X6&(jYkv51RlYpzqoZ1RL}{b(a&X81nqDLsaoYwo&tJ;^S8Gr)ESHQ7!3);o+8 +BQfE5GxjtS-C*>cD!6;|95-6^TleGPuyOnRK=}Y2BGvQ%he19K^j`D;*p56f +EFAsLRKNo?eCuYA}HC(rEyIb_6^ybT0){C5OvhpS?tStO2Yss0~gG6?w1(g1At}u9*$o0AZIk@M;p*_ +d#!Rf*znF|IVtQyZs3nHj5YR7bg4T#-hb5$VBn}N% +=s?e9T4%+sy-s_I~p7nVhazkh1vY+s3(n--nA~tUa=2vv8A2mMzvP0Rix*IR|pO4?K-*{l(-Bh6;8TM1hbt!6d3M(UT9*g()2PtT7u`YFqL4LqYTeo2R$)(StTOihi^dy|a=V?W>Mdb?6ssy5$6aAv*zY+stFlJ9NxRFgB+y<_N?ZV{AWCuEr>+VDCxg}aC +sr2_!YOfT7k~#Mjw;sd0Xe6MbTsZ-Y9_!l$DHp?CgA)fE1(!RD<;r}!b9Z%Yr9HY%PBPDDHQXqTzyA9 +e&tVWQ$fTqY)*{8BcPSo%u;M}2jT?!3`(OP;BR1%9HEgrfr|nQ`Y^<|H24Ui|ByGggC&E)zNMh +#4c2^R9Mz}+*O}hh_W8bo=7y!Q1U?Gj!K6$fLNg4_>+fj4cv(E?<-=vnfBrkz8mz|iO(mbLr$oh^?p( ++B)Rb=I^YIIs9L$ZqBQ<`T25i`8-8kZMo1JG%KSAx)g6f+YlICrJqftayx+#kc_dK1#{?#skQ@^fcMY +Rs41+n@1E-#ZWpk>!Ownt0D%2bHdd%waSjeZu!LE(1*FSyZ8>~QHG4f-I*a<^ +}@Eym|mec!c*h*xx;Oer08H&f}Zm3*ro6Ckp7t7Gr!agEfj_-Hpy$=4x*1s$Lhvo0`JkeG9$Cq7b +Y4OGAg+2B%)d}+(aO4-p{#k$oOv5SYLer;fqt~Hqz2q=o`)c8b&(;It9X}U(VA&|>J}+B1*tY;pF}Kh +;zM3~78!(;;RUrl*_&su5jju8xFag_CL_c?0)84C+Yv5{K&JLOGBtBpz!ucu)@ohi;pph3ur%7yI;lC +nH;uw>F!Pn}UBrpS^hamMG!!$@by8YcdwwiAMuhgo6cJ$?D)OnS9bVKTV=`mg7#m7%qZ*Oj}A3fYSzT +5@2D*mrK!T(-=<}PUQuYEv2JtrKDH6MKd&Ml086`>DY$8r3xRNCx5?7a~FS|XS?|Ho&6`9@?@Kz+sf8 +vZr(5iWpyv&7FAw1Ie*@6aWAK2mk|@q+IQ1cZ2!{000yj0012T003}la4%nWWo~3|axZXsXKiI +}baO9rba`xLE^v93SX*z~HWYsMui)Yb+nZy!Ns|-?`j9T&R$%LjCVLo+K#?WN=0b}aMa40K?6>b6UL@ ++`OVpq?eZKRZ3lEP-o}8TY2t3(#xu&VgC%M{ks(<>g_Vn~`pTe9)L}Q3p{6ix(F@jknvaMvxm70;C-B +)rponD@vP0udKVoTJDl5f@wQ8ZkSNlq!b{_F0yKfm8j3=L-yO>;UUpKfoA{P!y(Fgy=(OtuBnVVQH)`S;}yW5_*CEtfWs;A=e@I?CL2k1HI5s%`pwI;U= +wcjo1r1NxA@4=tGQpxr>Bfvm8m +?*H3o5v-A&cxPqkgT9s=?S3Bibg|l~z++Cb%jwAF_~QQ;Kb_n-ng=WwrT$tdJQm#V*%A0+u#+a-C>j$ +W0NLiYu$HtLD6jDzsmOKCPFOstkQVEiHa2`k<=zTJ>1Vp`V|sBz;IyM5~;IbyR1v3i)p#Sl%FP<*lsC +YJjC#tErr-q3cwmUauGNFwe;?HtRp2aSqisqobMW*D*~<5J0&G!EhbrV_mOfvIuhugE&$EB=&(u5A3K +t*{@P+V6V14IBhiEiWVQ1SX?R;V!@Po1Lbv`b;HW$TIU{|8Vq_R4nxwpNU)03P|;^U3TF;}MN3uY+Lk +1RX-PG-OMO0_y#wQ5y+3Fx11V+;aqnjLEirI#nhpUqLW;{af#(6BT4Kr@6z7L1=F@xfBRL~K>A^dHaH +a>n7QfCCM%WRcC5F^@s=*wEQso<_R>Q$lCGsMQijV&p1=Vju6VC257LWn(>K5s#sdkmN3Oy{^*n^OIX;N +agv1+TF97u6)7FH)HEDaUA#^8F-+RX`Q7Cq@`rRwO6I68;?&0>!M +Srvs|NF2p;cY(kZ~cM&2Dsn2Mt*r$9*WfpSS8XO|LdJExNq~Z|ahkb;*n +pdek-Id8v^_sIUR_IOD4p74a&_;9=Idv#?JLeH~TI|-(UUNZO`tin-&(!Dy;W4!%lK!U=`7h&@5n=jorNU>1l`PS$08|wwkr`Qqvr +06r4$F$$~$e_i-I+UKEv4A@~sX$M>TK&b8_~?yQCL`lN?DZ{chxj?e|W%SmiorE!G~svBvWP9vPl`_T +@(X(`R{uXf^1$7td|?8KLoY?R7jD;qVSH>`lKRd?VlS9Z~3XYg8rtp@~XNu#6WwRU2UoekY`$L+Ni|7 +Z#)TnPuwy4~6?+*7O<{gzQ~H<4qFYPLDk;e2awo@yC$L7G6Esm8&2xQ3Ip9)Bzk+U|_qpAqpyWym=kl +B36^#MirBCc}pZoX3X;vZgQ#L`nGH?C#B*uhIzI0v+`2rBq43V#}4jQE3^_h*I33h@y%D7ZFK|^@8F# +Dpj63iUK352;7#mlc3WJpQbA+FZ7Bv&uGL#eyn>I?!{>@V)qgrbl1`DoQ%k`pywa!iKR?20h5~O<{Yy +p78hXJR4&$iZf?6<$5CJ@;Fx=wNJi6`Z|zMxUbK)QNMf>C0Yy$ZjTBx;;+?w2j7ctF#BzI+majwsi(o ++sl;0^A8!Dp^PtK`;RD=;;*{rr1u;r%Sv<PM@jFP1xuk9P +VLlx_kZ!`I6whlvP!N+{psGDE)S)Jn(m8&eo-537%8AwW`91HgthEj1zJPv7$0d6{HF*YiGiAS%gb^s +wXaCk;{fTjOh_Dn57(80|9-GcoAdt`gWoBKTt~p1QY-O00;mBm!w=(Bgut<2LJ$47ytkr0001RX>c!J +c4cm4Z*nhid1q~9Zgg`mbZ={AZZ2?ntyo)ceS&EnW_(sD0XH+uDYM()5nj0`Q_8cPrs4P!5)6}w-duzH7A;La`Cs-?ZeYDbz(}9fl +$66m&KJi`m*kw+gNx>*;+6V;Uzb=Xgs}rtKage3GXZ=V6ue}`-_Y?Enc^b(VI(UB=>E#u}XFOZX< +bYWoBAtgp$3i!CvwJxya1GJ>5ov<~Z8B2Y!u~{>~+Dur>8YN+o|88rmVc!+veU>?}a;YXxR2^q*rAmW +f<6JToMNLZ3t05w-Oq;3z8v)7ZnRMdB&pxn#fnUhg9B8t>K4LEbS*f}9t6ZR54}6<}uY@7yWnnSbWH_ +LF1rs%bfvx94YzeSXHm%7_<$`aVC~fL3@&NegM^B_hwf0Px6b +8Yt1#$pGk$(birt$k}A=(IX?Sl!OjvP+{jLA%X8~z}m$k=@a+MmoHTpzx71&$9pgX~Z3QXbjH%7(N2;Abei<-7}}3^HWLWWn?Q;S6Wx`#uQ#FOYLx{haCfpbADBdv^ +pAL!Ufe_0yxDYK|MoHBh2Lis;nMThLqvSNJ2o(b`FAZjYP~d4}5wX6<)YkETwa{lFf*Q@|(*WeefhG%#!v>D`%?Y%82K2|?(LxYFV$(`jgSR;D!3Gp1FsZ^C0GT5-Bovp~0 +m=l=_HHbN$w6eyaP09dwDM%Ry12i-c)DJ%{_%LT1Y7@gq``treJGuKx)c>CLaQCq=7yayPHZ80N*lRkNMz%dUCj3|qffKB?z$n{k3Lf|(EhScgLl2nTjIF$@ +kzlFdjUhsHinh?0O@02lPejNc1)#g+~1nR!n+W~T#J$*^Bxb!kw!4bC!fnQ6-Vgm!MwjuB~YBK_NArK +v2L{z1fhyv3)6{ZChWe9x8;v)^MROg=V{coyDb?u|WrGG>R3#wi_iG$b8Xwq~oZh(V=((Ff;)4DGy{# +A6cq;y&6ap^77yA3-j88q9CfZtna#HEnqDJ82$z(@Q)&uP-otd0Y}ijckl+>VeF9H-f@W1#y#$?4ra# +r@m%q<^|-hMjn6=DQ@XieRoa)TCX +1cY&+s$;-<1cch6BK?LIdJJqgyNErsXd`}%NCiKRMXnl{KJdQ=BSscDEc`q9FHlPZ1QY-O00;mBm!w< +|74_M`OaK7r_5c7O0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mb#7^MbaH8KXD)Dg?Y(QW9>pU%h>+>JlGq^u1^|vA%i7QGs$X_xJqJ9LNQ$CnW(CB_u1j`x-JiPrGx +JA3`q4Xg?cW!_{p9oV{PnB%zI^`d)$5nfo_|8{fBVY6cL@IwmREN#>RtHkv%6nDf0kb4a+f|0FGG4=U +P{beDlcD$XV33acwIhu@$$Ft@$xTUm3&uUyuAB7yiT9CbnY6yn65MAHRHl +_xi=%%koKiUS76@-jgi+{qt8}JbT$viofN%uYdbRdG&F6Svt!XzrCw3UwnS|`qOgv4=+Y@Kp+LP^Xe{faI-RlxQ|H<8}Qttltm;dyi|I0sqD1~|dvuC +M1e^uVU`#(PXPZIz0zyI0a{o=#Fqlme*3i#~Rd++?HRrEVQOLsrLd-U{;F;AYpvGwVjy*9^LAGN3|Q6 +WG5(rlffKh{od>NNL=-PA^p;+}qK4^y6g+438o@Ti@-fX5ND89bYZZsKWdwbV{)J)iK1Pk(8QvDU;qT +x!qBwbh~2UXR#4T)Xe7?9t(goolZWQ+v$e$`c;c_yS!ML2HH*wDHPu;)yF +%Ud+7|=i#CG36K8$^R#$Q;zO^BGg|0E1gV@ch^N=fnJCMdHs~py0Ihg3G5HV=?_@q!JVAvtE6l+dsE0 +-g>de8CvtWD9g6la8i-p3w>`*cmmI&=t5j+_WeuJLk2~g@HtbB2G;yIwaxk`?v0<{v7e3o7jvXm<0k@^VKN2rpa+A|cXl}N2bLwiMPB}%PCY9&%Dky?q=N|gGD) +JOC*RHP=N)I_8vqSQoOSLh)g-dXv|M#dsF5oMgjgU?VCQTl#lgv67Gb0g>^`zL9gLfQhhPvNwi^1d_Pf2sl`YwMybU}M~l+YBDEN0)Is(g#)YE0hSSk+gc~4vi8 +-Qc@#{8c91vN;_;+LZT89y&};ck`yS>9}*==lq5+>Qidz<;vo@wMUq~TC{L;eN_`|smFX3kvSrGaDM+ +Ruc_nXo?Gss+TxW8fWs1wRW2PPR$=CDAo6$iNlssl;qMU?_+~*X<)B8!zB%FIaSW3UJOuqn{pKzrKBAy5p=JTX +}ZGHRis?}OquHY2kXX&tb6}%B@dN;TN5;s-`d}3zg`=(XQ(|Aw1}t2yWVPz668EVz56vv#3~Uh5eGqs +1RVtR8K}{Xpva4nh(tt^h(tthC%g16( +BbkE+qsoiaF)b=1~+3_rRR*#4B?HkOyg-Qh3*fSs7GoC`8_JXI1hmRcwY6&{{*s+tDgJcdSoc6#Yr8# +)>g!y#6JGKX&MLcBl^cIg_I^D?4xe>Edw382+2X6*iI7 +kx&>NW&E9r!?q6%Qqdo-`vpC`xLPOvOq~wwbZfw9paTJlLrx>C_h=HXYPd;-hWW!V`&+&YLJmk_u-kv +bpwTs`RBwU#hlF`gLd2oOkk!;)cDpdJTuLv0@GfKl_1&b2wPf1g3;=FhRCQ?lcQqucvS_Gqp$QlmQhO< +>5>O2{R+Q4bC1BnAzF`58b^z@T@S0zQziH)lCRFbXs|b1z)3==YUo`mKZBBz4AhII}|s2srJBA_+~74 +7^#6?nD@|2(;j%J&-MtN(!`k=v<9ZO_P|34EAva0tW_4CjUM7jo%WS@qZtaXhpDehYD^B+z5!`txHoZ +obgq1gr>~safF{LUh~c-TJ=h;Iowo;`zO1Qb+o6dF*+uq2*!pZHsFuE$>{Z$}l)V;PKeo_AJZGnw@7G +LBmY6ItSv>4a%MO)f`p9jxh^NZNv;C#vYE5&wmZ+{WT)j^Wr@p+-z+D6TI(9fmpfzKw+x~CEwRjC&H1 +N=O&ZN<&1_rBvNdv3q!)ZQTpD~A11GB#FvIbWDkkcG5PBXW-QAdl{vMpK*%RU43>&rQ6Zb>ttG^%*%Q +`P0vPx@1f;WfuT1Pu%tm^DqGN1A>X!)uyrpQMLV12=tr-9|pw-Dse`&WdL^HE`9;_tnqk+Vn%azJ3_x +Jj|}HbGWqCkL6TG?S03RXW+=@vFbZ#)##vsQA=@X10Qu!*UV52m+Q1zai<;MITx+>Q$K!sP5soSKBJb +rA2VF8JUO$yT>Y$IxU^n_8SezE(e@awMKj#b4TdYuz>zl&42E;$Evz$8n=0sGRNM1wV3|28qh^@mhjV +bonWeale8$-);yUsf^?<86HSlyAcCqF=A`^{TJeRbSVM)y@gCjVC)?I>wr_3|Dd*n3B5Y>q*lrrv?@ctU&|y>upCgTz)iRb87TH19uIap +VX<<+G2*Q?}dkRM7#E*dbyTST~_Ddw$t0yb*gI=+@0#uNv=8dS#zxM^S<4Y_75rT$FVZC28zMc;H-G^Ym60&V)CO=r;N)W9@f*AMMh`^0WXF?W|V&?% +=*)mDFx?6D~4acZE>6U{mL%xU!XQ(te3`X}ntz(dhXYeIh0*>lrgv;|$PY+=#BRb5-q=q(SI +&iq?Q%2|pA77f%T%BH`$Tht!0MX!Nl$Zv6T!?hpExToRLUa}RUXLR@TK3Zqvf%~C +en8d-l`vvs3aH0Lo~`s1AS_c1$dx2*e(w(js6sGQ5HX)dbpwh3;_aQZj4X_G{JQvZJ1xGYpq=>RQz`ie0oXmm`fq)12FI%mFCpI(`(?VfuU+(G{c +qDmDQyaRMiQpT3rS=rv`5Nah+YO4U@B6y}UX-t!d7|>9jL6rv~amxH_+atJA<$12@g5PI`6Aqs^LA1B ++&9D;lWl{;I3N%1z5~YGBqZ=@6}l(aaxOqC?j*&8dMp8tb8%KaRPu +6+ic>Wagq(|A3DCKNTBXVkznImaTS{Z5aWr0N<)PD{l(dZ%lPl`9`Ej5>C03x73HcaFfrmM7}G0#gZB +vv=neSYo*f?6fu77H+)W;Vwp9P6Mwro9mbum^uP&9f6wpDkq!6Ng%s%3B(D6=7m6L`seyV=xDfV%&4Z +$ndK!7=e!&pUsZQyo3k(NmolR=^tW1liG#raJ1*LV?@Suebo{4^VgD=@zcj%| +eSUSrB@e7xO9}-pnBQKx-^C)w1C4}1WvR7!t)C`;PTgah +LdMFd4`i`IC+MXXE=F=lV>=23hXJcXE=F^?SUWq9e&E*ci4>r)A1k?Jp+ilP~!m_d1}-%nEXjPV0b(u +$^*RezyLkt$}_G!;6ESXkMM(L@_=1D1I#A}_0SD^Km(MD6L1apx5m? +eKJx+aL!MUjw4$dKJ+0_zMNcbwTG7*ro>ug_E1j$|;b+`=#+_%}dB)w!xLX-_E8} +iu+^vkem2tN+?pDU#%D7t@cPry=W!$ZdyOnXbGVWH!-O9LI8Fwq=Ze`r9jJuU_w=(Wl#@z~1)~tO7ZN +FPU91J)M!|f*L(;avNC}Zg*u?c8bd-QiQKdNnN>v)e0B(&}Eb|?^!+%Nt69u2xcSLhBsp%I#){euPEP +_gh^_yK$r3%`XQLLvckW@zrqjBs(`a9EBq_`AacqE{|5gC{|5gC{{}yRC2pYG?*RNe{5$+qdfDOM;osp0+)@ts5BLx +G5BLFjl>`0*ejqvJg#Uz}skA+a1{qWW(Shhda)IOm$pw-N@BKy{S@e}TWiU*IqB7x)YO0KW>TpHkrm`%}QBl?p##r^ +4VU0FB!ZvA~lAGeifjPCWF>x`<~Htde->S9KK+-KB2gp)b^3JTz;SL0DO{Uuw&)gmJ%L%LIncV2b{CO +xEw3dMhn=e&YP$+mpVqqr9NO9T?yJY=m8DTj&MplO#Mo;KS*TX#1lI`i0`AK(G|KwPpI%@D2S>P{uBN +aeh^scg#U#9gden23h)Q`1N`8pK<+jQe}ErERf_OO_#^yatWtzO!XM!Wb(IqQ3H}5>I4q#Qjl!Sc2bq +;J{2BfXKUl4l;m`1A_(5-_0)LVEE7V`1Vhe51$Agn!0GIo$+bGztKGTM+&zX%b&=tBvPiTY+C-ABj{u +TZe{uTZee$Y(Y3jYfK2LA^C2LA^C2LA^C2LA!)0p|hd0p|hd0p}r{q#AYaG3xSfjIskohr+o`ynircBUor>G3xSfjI +sW_0YVW;ADDsHFZb}DYC;&v(ybZn#W0|#u60~(+SN;I{*Q@cC0yHmUS0Z*4>2s<^ppJ35;s&uDHcdB% +kDn0q;Nuq%l0*MCr1N;I0AP_vlBjJ(ozH|wZi6Zp7mX1{u59N%zc%p#JI8TUX16{TV$PD}y0Nh%~fu` +{jL*Nyt;qwd}l0+sY1wf=a?#m7hw2E-qiXInldX$;H9cM(@k8|Ga^_DvORWAh;y^;G~;Bp;K1IHyv_H +lB?Q(ZGUYjo02>iKxq8|UncX0ESbFPGKKt>ZQ{uX>!A*KwSi*F*EMjziPD#+hc;H1(1#Z{xr}Z%)(P# +w};wW-V;vfHZH1rn!Z2ZLy{KdJgK+D~PS=4Mv@p6$9SWT-yvBU*DG*=*w`edT+7owa>oKz~fL?n1Lhn +dzgXAsmss6Q(fbr{M4!`r(gO(*5{YlndA50fX_FA&+mY`PDRqd^;x}9_S#5~E&X@0(Y~WvIo{dWd~bz +aaO<~EyPz1d9y?neMx8k<)Ol#%m7VND3+GEkBoq49*6u7L4i?jaWlGuw^v%*H3ot(SAM#!^ou0C>;8) +M^t8R9|SPQKBl%M+~zwH?$Gmv8kmbmXY7PItG-5%nJ;EFRr{ZMEzU{l+pPgtg}*@73uFFUxfnLeLwyZ +k~3E?8zPfy*Lr(B?$LtjAm_ukU@87=Y%7vsYg$bY}{ndAU~Y56_&HWaiRX87?tKVi0 +#a<;!Oj$wxlManmV>f55vNl_WWeI7PPUtm5gP42JIqgS?*+F+!>?Sdm6#^aXcGD-yGaydMX}VUYwD#0 +HVkXb(gTSCL>``3}-~L5d!B5lWOdIU)*D^uQTWkfH~Q9>OJ^$frflG;qihq9hPSppj%a91SuZ1qvNFJ +&97z*oU1Fe7XUjZsf<>M9LZ6C51?glrvJ!DCLZc2reS)Co*7h6_2Dz6USX74tY_E84tu4MFuR=!XP30 +1MxpOSdJ%bC)qqN=H7W@kZd9=7DY-d2AG4eQ4Ns_NK)EFX_FDDJxZHoKqN|=+$B>e0)`0kNl#6Exnq) +ad$va=(O;94CedG$lqOM{B&A6-S_+p4;R2O+qKFuZykPGRN!p2>L0jQ4#uM{GmI7o7kfi{b0%R#b<}x +Ca=j@T_TSa1U-JrBaCg<&E5D%x5SqhL(*iMOIF32J`oSDTk*~~JRWljeRw>zdRA`IxngD{`W6`bXmat +PbuposPzy96QgM@Qg%#FUdf7tTS8^Z*V;ObL<-r=OgP7*0hR6$w9%KTBXnD~ydIV}pYc!vRS9p_Ghq# +#v-u;LyS#VqoO3z#!$+DBrJrw`=M_Kd1*{e{wEo9A|l)VHr7DFdRo2WJKDd|Kb`>pA4Jn_TZOV#Li6r +3F??}JRBmKzM!`vi(_3EQEW7brzhs*Gp;vkqr}U{93OLXrr|g~bRvA_IC^q&jNy9KH0s2&LJ#ruPrF3 +CoLo3ghnxtFxy(1S99H(e*U_WmS)mexAeac@w@0rVPe-v^ugFF@!{L|SZimEhjJe6#%2x1HiRowec9; +6t4GSD25`-LL?sD$KCQu-bT>=r0)Wpt5cd2le4|bQl?Hrix$e$gO%;8ah;E_)|SR5U~eDr?XDDsX+Af +`_?_K-86gLA7>^4UT2jY?CU94wx4yma=7-ky@?$w}TR37j0h1xX;-Ue!S|6}lj^mHFB-_gWDLZ;zfpn +^p02(OD~VUwic06+vu^ICWcv$iXtFxQSnWz?6+j2SNtgrXsR~1#v;v6gF`{myrE!kB!qL&W5-Mby?1i +^2YJRA)XVFxFDV&9+83z2);#$iNr*SiNuI7A9IWoVIqf&vddXwGBH_VGONqJ&1}ogglwCvL{EZFmZ(9 +3`cit~(7pBFUVw$;vc<~c)%L-+*dT&%eF?X4wca0{%~ORw_fg}E5g9iGv}8hP>sk**j?1${_vATnaS> +Kw+YDzSRy6+b1u3Y+JhJ;=N?Wxhj?I164Ujn1Q~#tQ^`VzWU!PR}c+<5f<_D+l6@2J!GtmY7V8h%RLUXz1*W< +wTwawlP9KsnU%{0>h&6+#|^MLO5CHe@gL)OJq?VWY@&N}eaePoZrVWZ+C=9qyhU1d~2(YDRV<(gu;){ +be#c4XJ((xKBOZPcZV^E)3+uXxdyuipNcfn+^~fE={uId@k29Igd?Uhq|VS*pbyW#nVm=J +ZGTF%(ysH&niM@rpT31i7lhA_x-_eX^xixvu-ZU(y}P$;%4BYuKA&5N~nz-FRQ-2-bjXx>hiM=y~?ur +DFNtJSk2EmRIy^~^<=m?S9PiA*L-IUqh?mUxMhPP?-s@{+ZN`LbQp;LE#w(khEUa@z4|P`Fb6FbE~7L?6VlhU +at{$%p4zKR85?mZJ}I-OK)jf-c-hDa&~ON<(iyn{B*^1%)l|V#VPI=(`bV-vs8|x(g`!L7?pg`S*(3UVjkNR^Vs#BeU^XMTtV +ir-NyD2dwr;5`?t%b^K1w7`{D8$cwC}e%{7*G9nf!wYy3QRY`+W@SG5avY=6he|NQlJXK2w>W&u{(B* +@`@=p^ThU2>w+Q#`=IY7h@cIu$ieHHp%s)KmVlr~J21e)aTCpOxRVa=qz4L2o!wwj67=9S9U~v;iD#$ +N;w-mP2KWQbNm_vPCDMweVZ`E&SX%&f!%@f@H_aqo$TwRPT_a(JNO;^92U3Ve<=K1lmJy~lnUVx ++j0eFJt%Dt=$hkX%h{~uPRycf6Bv`RTrAm@l+pcXIr+9+SXs{REmtp=tC#kh426G#e}jL6pPMbq(XZX +$M@3v;=5-4H4!`JBw19st;9m>)*UGuK<=h*PRim2(QG`Q~?%;y0+#Fc0d#qgdSndj~Xk)bKrb7ixe+U +d;aOvpGvnXY>+=kd7uW&wYK?hqj=UKTKvA~1djEsllaSJ}!MiFm_d@BmZo)ponX8{6RG~-ziz?R!?%Q +d9s8q$IQwjh8l2w*E6v5?C`F1Z%B+;z7(8cNDslv^&!Eq8LZ!day};J7XK;g-uf+mDg@xP}5>r;j`Ox +TB9d`naQyJNmezk30IfqmMiKxTB9d`naQyJNmezk30IfqmMiKxTB9d`naQyJNmezk30If6D^gFj_sB# +9=Pb)PE?#auJJkVZ_%X+BT$d1PHYSC5{i^c8-Fpr<9hNK!BaSBBuq5L_98 +D?@N)2(Apll_9t?1XqUO$`D)`f-6ICWeBbe!IdGnG6YwK;K~qO8GY*F-fC>aZLHor|;cl#0_$~b0=M)RSh2O%@MNt +=1?i79pzk}bw&n07V@H_Yy_!syW_!syW_|XSh7WfzVJ^b8l6%W6MpXr4SsIn`jW9z_;>iZa4S3fJN)R-M5nCf{@8MVY*8s|xjwdBA +6qoaHVXd<{|WyI|4BGEWF-(D2oI#gbzb2*4-K=8!p~J{iSUE*E)o6+KOLp89xGg(7OqZ9f*;Jc;Ic}B +Kf%w+tt9v}{2BfXKUb_J!=K^jda`8r3;ZZ)F9rSre}SKC)55)7DezbLSzZ<(MR#(j>W4(9<+9UJntlVNE?%Ajy>roZT!qZtnvI`(PIl +;*rDB4LA3h@({plJj1y@B~g#jxvI3p#aB;Njd`IdCM65+PXp1H}CS;{E_}e*nQd_~;4$3I7Q{cdhA!A +2py!AbThL0sa7gfS>DFfGLf_AK>R^HbwX&{1JXGX;Xwh!XM%1zBVQJ6Z{E&u5MF;Kf#~i=N30*_%r+& +elB!VhCjof;m`0F_zV1n8ZDscxuXL<*{HZZbb}ty00mp}{3rY;{3rY;{3l3oE^qhVaU0#BU>}{tf&u5MabMtE;9THb;9T +Hb;9TIO#&&9Kr^a?_Y^TO{Y78R=VW-A+YHX**c4};=#&&9Kr^a?_Y^TO{YHX**c4};=#&&9Kr^Y~KGz +$L?xO@ksF3MT=orpugo+Lzt?o{ZGNWp#xo*f=4ai{urs&AL-JNe8>Y5~pwXCSoze}F%T!r1^Tm$U5w7 +k9{eL|dqn%S^pYoQHUAMXP!zr*XMDcp3mg@q3o@~%=N4(d#?&>RPSW& +f~S}3RNXb_gu5$FysvDBYeLh94$0;^XP_n&WTFI;)2rSdKOyqtq%*I2vX$3Eb39cFt%~$t^DNsqhRvIvRp-qq@O_zRctx +&n6S=;Pldrsm`T9_BlD9Gu_T%0;?{R(C^QseR+L +Qh3$&X@J`Uw?tA?#C6f5r4&-FaMiUfvWn{b%AGF+Xr}`gMx=ffKpnlVgKm1VJlSHoVyD5M=9Rc!MCeL +qT2-NdT;Z95sSW#qb5MN6!}{JL@PGS|VAFs91>c!ioYZO=61zIp`>O{zzV6)q3NVz-T@qP%eh*ESGG#uHrA{)1%3wFzlK+ +eN_Js>Xt#C#3l*6$#2?!O`HUh8&vt($5$o!)i2d8zI6QroFES~qVNT~S +r6W?qDwc@aLfsSfo?cJWi2s@^6q^L~5rdgHE|)|zwPo{y{SWt*QI&>rjO-Md%tgr9muz1Mqo1zgOgQhKT2;%JU84q0ZK&%ItZT0E_NKUx=5*?cGcc)3-w7I~%b2cSa=7B?2fLzqn$xOlL +?5%s4{dVAB-x;dg`nCDZCEw>R0XFB3P_sA6jTwaRz=^Bi7OvBH`c0*ROOVKQ#sF(+cGs4_mcozTh*(? +t&SVHY*lw$wnKMZbLr}=RY6}QlxvaT~}EAHxU!vBndU)CbCA0XjtLLqCL> +AA?MdC0REL9>Q#QISAMA1u)@Vk3Du2x<=&epECECFo%9Ydn}zk_8{ +HOQ{m25?TNDV5KI;wKB!ZQlLzMG9S+Jt-Q$^58)rV$jRIX0FpOoVliM6`U625X)ca>4XQ&Lm3ZWlN)! +`aWW0zO#3IJ9tcbwSoh$m#P_fY{AtIAlxp@%{8tvhsn|NRrn}w*;XjDXO_*fMwRwt@)IOH~qtS8arVU +|-oB6V}I6&9ajlZ*35BX+jTCc-s{k(gbUoep}*+we7HV+`6?K#=uEUyq8Qq}@5c-z6KIuGoDQ59(+3T +|DTD*`pY`LaJtuvS3B=3OMgZDZrjZ@T5l^M(kLjo#&989pvml+si33ASagtC-#flgEcVc|EJUm`?I#T +-DQa@>s^94xero5$Q-uCt${k|Dy!baa#xnXyLc*dIiCkQZ$+fvvdOX-DYTeA=nq!6><6$IW1}c5iquO +Kc^AwMww16fbx~|1a(nG@LggJ)+eD7GqnrXqG{?ju5mlDTEQLjyIUyC3Br}Q5l0?G_$Bd22BANqq8FT +G%KvBBH>3EV;=7icAkwURqJXIv5#UzzTp%{)R4N5!=(%a5dIjO`d6GAf%89OHi^;{O)OB_14M@By7#B +<6yBBCJJqG}Jsq7iuvm}3iDm0!*(f*;6rAe(R?P$EAn?Lknw7Wv49h-||lFJj=R?VVW4qe|oSBBFt+3 +z1H04yte&OBO3Z0Yjgu+R7W|Ig=70OfzP_cHE| +lzhzdiV7)-1Ctf}U^qk`3?xLd0bTRW5scf_hjYd-8Wq+oR&ZxwNFt(yICZX%M^EQQnWIMor+oN8J_m( +Z$Wylt)~Zn~&}ido3TOq&;Tqog|r70YP5BmLsCY4kK>(iJ?6Ez`6sp&K@@QXS1X0m-8+{HlAR*;HOPt +*VT?xuzux-GKUOI7O9>w2hJmuDX9+RYS8~)jIP!(_A&pHBZhwIJZSJw<)A}TV}K-v}wg{LBY^L8Ruqk +)4XkJT4T4`we|teY&#Dv&pyLFkw#vg|>t81FUn7Hboo6KoLB1J`D&+gHM(}!!Ffr_SHv}} +2qfzx6}n$cNZ+5}mT2(ngJp4K|DTI7Txu?rF7N0kKTFb7r7q- +m?x;i5fuxl88forX^-yN +u($`*sHq=Ou^NNR!9qDY%Zwm?yq?P$R0(iSXh$w3mfBwF7@aCJkq+986r +NoG_UN7{F|lHIk@D0!?kdeR$br6EapftpHLdKJ`3q~*u8+~N-kgKe&R>74Q=gr3TpfifE;nCy`uY@nY +)%cFuX}xco1B|+Zc_+m8)~EMJ}2v4OEe`4n^ULtnP$>7^9;;0aNZKw6DcScmopdl@;)SAzvzH~MI6JJv{M87Ig +_&4zWg(7F`Q*VO0c{kQX5>G{2sE%l$TH|>Y(P3!A#`l{v)7jCDh&^krejcD14Xla&i+8+J%M^t0AhbT +;u%Q4{LSx&9ckky7VM?RHp=CZNnUf3q@Vz?M3RBeoQ>EH%uL??nl^Cd!q{QwkdTm#98*JWuK<1Ow_VR#a@` +GWlw7S!>AcEGgTfM6|FHpET&&#pwhQ-ph^whvb4c8oL8W$R^S(4foDQRpznk&yh<&2Ya+_2QS1#ZqRY4 +ZV?h>!a~MsL2uincQ=8W6Yut>AGhGF$zDHiMAo2>CmS3X)8H!SXVwUsJvi3xl15@z-7(5PoMt!_e^CG+E2eWz=HkgpwCxa-T*XQ +`mcYZ{i90D)Q6;7kP1$1x6BKZl}@dWI60(LwBJEHro(Vho +XzcuQh@B?-{0XwoJX|$(&_Q}zqq}-vT+@Yl075Qy4LeWcTIC(Q1#`RmBg&J>^pEL`nh11HlItHsV8Z` +iMR{+-)z;)$Vy#lzdMR+{zf$3}j*A=LB1v*`UPFJAQt!Y>+p?3qsY^@t=3Ae6j@`HN)#zlGsza$`8`H +6KXe0L~(cc9Q6O5Po++grIij^~4Cmrg=S;($i!Wwg5GNE1cTAlw}YcZceD2ddqHRd4B;o?idi{n6h%` +SJhw)M<$mABs$r8=14bZ +Dt_tZ^26ZzgRMGgx{R+8bgtt9_s37Ccu8PjXiflu*a{s|yiR=+7*{WGCJ^*lY5i|Sy2*XQ4(ZN(RFpA9UU`7{lU?{2uB1U@`-+bdplp~@5uF1$zq +iVQ2!zmBN`hp7XH$+-Ry-Bq%N?xT6>Drvfks(zmD$#P&J*p~Z1Z#E-W1Sro2CA*3KrcLxW$=$)RCsnr76{(X(y?Ayg3Xd@2P?0HVG)Pcn4i!+Yk>9#iJg5%pUA$405*bnS%9TL1qEpE7z9 +>|xj)`{>4MrA9F6uUy#&ZiZ4#nHlscL*w%g?&$DphTNpQ`TXoL2x-^^T%KOwhI8Jm4~6;5E9!Ob)`GZ-TA)Xc2bc58>HMz8qiWJ_3!^`7VJI)!qAF3^;wZ)zRqaDLHM* +Rtm|>nZ9(qn14%L*sjxRQ6{ZU&jU>)x9)2AQ(j@4#>q6PAl1qmBwD^vT*`jhnyW+4{l;)Rt>w@%(yn+ +H_Zq6u19a~i0Fde)z;LW`_Id8_ai78Z6aEP!@wbcOCv){~f~ILX6_X^Iom6epYT6VntYrYX)Wt58<0R +aQx?p^!8}iq9d%=U5E3IbM!VP(x@~z#D!7tSsq06upHOP75b`-}1s`CMxtXs#7tlQ~8mpYz-<#b!rh# +biQF!r(#a0a#UGarPLyeO@mYe?;^HUtLVnwIyUP=_B;PWThsM37F4dTNED;Lu&ttsET%Yu6)f>t1veB +~ErH8nttEDTb{6U)j_J&G{BWRAj-P;y#c*GLRxyLp9!$hVCiQVk+BRu@E&Aa<%a-c@{(oBTj`mmEiqp +40q^Qv@XV743oFHQyuxBT#)*a@i9M~==D!5&h^(scg&}Y~ln2iDdP@`C%!F*0lSv<(JW$|GCrWWyF+o +p=4r&?)d6s<2tq*COFb+;nbBOWKl9=KHBkr;|JOXQ-w#zb|n$*62HT4P^()J4xjnzQdXKSWLafBavb{ +ICDte`}SKTE(>Wd7Jv)TvFK^O({q?hMMVnm9}_t48$PkSL_lF@vt#N6@=r5pg)kQ^9bgNx_HzUG%BKX +jB`{JI4lA-iu@g-W;ThG9rjbO;ODU5=Pbu}js|gytPPi5IgVpDw@{OA!I;Z}9$$xzIJaWcWyN;O%9^J +=dMcajR7JVyo@A0>0l63EiYhTM%lWqh1JTAh>qtZtoG24_bn!;XKR7fehA|wdGbeHf4pD;|9RqJ;X(N +jYBxGA(mjy_Y)dQvFCM| +1X#pKykCOI|35LdfY}jt!Q<2SUGiQmg^5j1CqB6JEsn{D~*bwCU!?wb{beNbyzNSST1!~E_J9 +@aaInA(4peckJ6}^e)3}aNe-Na>yQyEC;C`e65S&00UH`~9a=>i_2S{fVHXc+hAIOXj{u|43F6QR(x` +j@TSfx$ZI2x)gVxFjcQV5H!FMvYF(S1f5ZJ~$ivaL-4)c(0xbu$ZN7l=1Ow%AS($_~3dZbv1#+p&%z8)?R%S3UF}?Aj(GNNNYjwF@1SK>&zmGW)|9i +5u+6g=1~_k5w=I4pjuM_U&Bu5;<{|;B1*>>x64(7#7ANz8OP6`wEwd7%JYJ+^FZQ)Cm#W$li?5zx(BL +|5Aq%kOgbHybPBuR#QJQ|esNjH6j?K{n&IcSJ(xkOOs$IevdhiwhF(q0O9wk}6G4n +8QS6ghQ8$L)xRxnyY5ugsNF);5n94Cd|O0+p+yztF>~YM#fE=fof#j +Oylt5q@lX`x*I#T>ii5Gw^P-vGjO%TwavhBq)}(X)Mbd3)_K`l`yuM(Dl>2_Me0^(;J8<>Q*mY82M)0 +A#|+FPpR)(lW2kbj$1LVCkV5sCB|64gMx8o+>v1UOIRgg-r%w6S=2ScK^F!y@(${m=XFmWQu4zYpXm@ +R{pss1-KBy7(bl{e4w$LYoM*Uz4RSuXs|-#+=(#~5hGgwc8(;)l02%MGjT-_rEeCE;^fz}m#aR^*<&= +%Lz5wqIXWYIRSK)n(wBW!$i{d?P#L54mp;bG$c7fiB})w-$Q8i=fdTFywSk1nIKsB%r3tkkhc;B%XVc +NVmdA_f0tUpiB7ZGTwBVZIYN9i(!`t(q+O)WQ&FgCuEDhnF*%{MUX_2=pF=1gg-8s@9)colh|###FHK +p9p};paqNeUJdv9V9d={n=`Fz~M2h~5cArFMYDl$zBbliOOhsL|w)+B9eEEB}8%0IFC5UxT;{E}{QY3 +Q=whN;4O+~bxJXP`h@7eN{*qpj#y&jVGzvRF0h|vFocB)AF9z^gmS|y+UOW3ZuloR{`eFT(%rVy^dkJ}cC#)yI#H=0-?^_+K@4l%s8o2%$`)zfqCMX-xg`iN( +ZBFV?QdPOc@Jr35OCRLjSB@0!x|S!--DRmH_dgc$KgBM>AIu?haQM29e7_G#4Wh>o@xlS^CjYgqsN6t@&@-TG*}RrQ$35G5b9`V)yhlE+VbBU>N>8Sr{8Y*IxLCEsP=VIV_Cf85YKn;QV?EWA~ +&&FLPs;)aMRO5(I|h9uEATJm@Vbe3&S^XO--anIId|qxV#!;JF~?-^MtZBGJ*HGAxxLWjZXCUGk-Ph8 +QWHuL9P^HtmA~refCY9-#dpaZ=HLa+x&~q0f6z_shl^W^d)U$D&j352*TlP-;{}K;=94hvL+syzZrI7I;lN~PZBRW!KDC|&Q`O;TnZH>=2ECA2_W}ctFUo_ +`BiA+*P8_XW0J7>chbpXY>3oc*7EMz#Jl9C#UuKZZiQ`zO}t?S56^w0cA|Gl*e;DrB5f_A(|@vUJ +1J>g<(673Yj4P7i-H%`+$5g-^uCDD_h1iCVkknDy<>aqQ0@T!95(V2z=h +iWQN4LNwO#Mo7aW;?NE-Fq7#+M(%`pOR6>>Z%)_S9*Lv=emXo>J)0oWTY9aHzlgHo}6LUgB+!&~!(6U +;kxAkOG%sqi5!9rt8zzk?;ihg5g`U^Wd^9ms=1!uNE9s4m98u=T?mRgT|9>Ekq+sOleYjVJ2IzqzWD8 +#9a3qT++%)l+XGC9lD#Q#=oX?~rOoEz=13JbfZ9adf6zvi4fLHCP5t|`dSEple-5h$ssW%)RcfK&L1P4Ia*p+0b4>#WYN24O(?WrkZ +J%YkF%>riU!!KCHOu#vsI4(Y>WK +=5qbjul*FBKdfP0Tn{J|>(ItmufxmNmucL$K#kuQpixu=ePcl5(?4jd^N+$BzYUV{>tTr(5)la +DKq7)X*#xqnu*6P9Qf|Xkq+FMq4SdK}9|9*r0gmisb3hb9aSWg$FCvU-c2UxFi&`9b#ePB9C_&hJJb) +@Gf)UR*LolAAkl_TfaW0}B9mt`;md*`e-~ccZ^L+sr`PhY0df)O7;7K(bTKtKMz!G +sTB1xZX4bA8WHK*94p1nvXLcj5W|0zkejisc20_ATLfPrnXehkp4(RFeG3U^>Cd-Gj%G{(VH;9|OSw5 +#v_uZP*)lvjKYpwRRur_Fchk3QjXnuxA6JM*Lp_l}28e5569h_5k!u^8FB;Onx@1*h{+LVoucHqci3L +jbYWu2*S$%D=`>1GNR_)V3ySgQVBJ6{hkI7s@YNd^xqHY>@Nx}>-DYBGCTuXhUe>{Wfz((-b0f;{W^R +YoD%GDkfCmm1Qo?ZVnLv;;^_q$Ag^KexqJRyg1o*C(e-Zxu~kI9lbGH8_V6tcuKhvbTVI3NI=>BK>t +8=e3&7PzFL)cVRc=69Cy1>eF?{D+BDRbezz{Qc29TDyVo+~|Y%S{#ChdH~CH0L40un +7(uC4X_JSxo-ixE^~QKfL%9;F6>>2{82zVbvUb}c@OJ_Nngc!0pda}TYJO@uwGD6z!kuCMa*MFF}Q)b ++7QJqM+5{W=KB5sIxO6x!~73~4s(BY3>Xw})W0$$*tbS?-2-wx1mQXngJ($ncY^2o<|wZ3h}{~XlphY +e^;ekIzX6!maH;V4cY|Slk2tF_BL21GtVS(;3rLmf!ZT)CE>g6RIcA{R?tBnEW#{Xv9HV1ZhU*pxrPh +vafKWFkU^RN`6TCr3eHZkT;zE8n%u^otgTFMA=^;?k4HQZ3%iaKt6zJwBGs??J55Ev +#th`nZoEQqx5@2qHDvdV?Uk0Sg6%06l~Yx<&g;gGD!JAJv3;5ACC_8!JRkU23^VD-*4)m-9gc(D8jCf +Ykc!4eaM3gwJ=x?Tj?Df)~Fd@J3TtV9h-Y%~hHIDls$dM%nt>A;^XCD<43|Qd{+%FS{t7b@ +=U-ta-y_WAVF1QGti?o7Xy9LA6@P_Q{GhOkNAJ9o!t1V4>Z3s^}#c!@bIk<;r#HQp?vW}Vt++yzxo3D>d~*?dFRJ>|7U +q#UWV5t-_@5dKEM0&`Li5ehdXQEGw+#q-pQrjr5B&aXV1&y{}5h&^6K69-??l5UY6HizI=Z7=+S%s^~ +JO2k3aeBMGT+4di?H3tvY^vS6{rmYmU2T&+mBW9Z4vB_E~w8$``NiCH1`g=BmT~_~`v#6WWt#Od|NYzm&%<^4)Kjqbq@tsgFMm&+}*Ho^&`}3nG_SYZTUw6Lr>C4A2Ugq}J6Z`J +{cdn0j=9YoS<3021pWLN)?{SvTUX=&meJ_0RMR}edKTiFf`O;Tk_!?%K#_gH^) +J0O4bZW}DK8@7V?W_cN&e^MTsH%M2Rn?BT)l=tq{8E4b?QSsB;ihJ*>v)?|x=~b;sq*wL^F>i8PN8WG +7AK(4wkpB7Z^^3dkFE5_uE03+V?p}ZT?A48zntlCgY3*22>GgT{>9bEheJin7U%q_#;**wCa8pzci%41-@QuVi_$*zNqKYkd3 +hcB7=QH*zB)VId#}pt)?(qy&t5-np+9LI?A&1p`5wPj +`uU-cZU)V-AIN)4>hYsM1-$#MlGI^$o9fpNzDK`#^bJN}8+X5X`RsLhEFOy{{gB-MeVAqFKP&IvpLX@@Z8mGszwc8{OYCpL@1H(@`ux#NZmu7^ujb?)$M}uAX@Nh$p!NCgSF5 +8wy1v-+_3Ce4ekDUUoL{>p_}%R!aRq+dCg4}kUOfK;2{NC(`_BIlP)h>@6aWAK2mk|@q+HvHw6|{!00 +1v1000~S003}la4%nWWo~3|axZXsXKiI}baO9tbZKlZaCyBNX>%G!_B+3#Bd2y|WEhZgY?fG3**ap?D +w4~VlHHYLXodzR8m4h~kAStkzkT0(-E#p_?8Ft4GD9ElzDHYITMY)E*>XG;snKC(;)GWISN$|-=?eB@ +vt*+zjZ7?49oqG7Bxg$%k0++f4)aI0+v$AY+U@Lq#|BGgCW5_kIG7Q9+GJV?_WbJd<;Ckap#_t~kw~@ +ZvKMcT?Ecy5;qm#KV>XhC4Ta%x0ywvT=0-f7NoAN4jggX57E9(3_EvCUe+KT(+x^?^{RWWLL^_WyE}x&Bu +@CtC^VQkq>DlS|vHkhW@#_~CZ;pe8;o}W_J@dn-2Z4X1!|j9MU?2W{)`pdRuW1pjeBkcsPv;k}j}M=} +aR@fz4jPMT(i@5>*?{v#Z$G;^fCI$E4I(4J0jMiVxYq0t|2>!HL}uyG|Ai-+I95ukpi5MN1-$057DE< +~m`nweBeF27z0y9}Fdn9!VWT)5GR~&lM3XojGeQ!Q9XW&-q#DBEA1@+7KTB-%eL0CW6Zs~a$4SBlf+< +T07&(Upt7A4(G7?%NvXYv3L~xK&G&TlCeUGf=zS09^zD +1~;h&km`(L^%jTnwAwF(aNOX73zC)C7oX8gVW5PI#il3U8;Df;+KfeFvz|$g^;H7!wCvEpyVqf^kEOc +bP~dK`{CbaldJ0!g$IAN)%{=!)lIeN|;QgEUs{c-`XgY)t-}|4uMO*;K(szZ68#gv(hbWw772{LL@}_ +#Ra$RD0g(0w=KC<8}P{HDDF6ozW>OknKr0#XL0X8dLbMDt12l4OZLLwWSsg_KJx)>p^gAP4eLTA0ZUS +&)agLVB)EP{13b}@ +r{V54x0YsW+rg(}rhD1gLxgdVaEurw!#1XB(knZ#*n^g7&Zgt4{>%A(B;uVRrovwemzoqd8&%P8hZ<~ +%kNaDGRN4Qqvc_A5&769qB3A0HsLChI$)AstS07Cm6-F)dUX8l4r23-f@aO0&3?Yg2=UKw%)i7noz(}7bF>4FhEnp7dh +Rr9j5qicWLBX}GTq)dMX0llV#M(ne+CcN8gZ20e?Eit_3%Az7pQR9XLgK>@Hb!5% +=_4IYOK7kT19$OY@R?!5nlU_o85*S!G0I6T +!(hsDRsu3(?%DW*Vn)!hhCmzs#MOJ_e*YZ={8dCs2#2ys-mo2u%p4N^A#nHNG@iPFEx~o=-o~tMUVh| +<{f)mD+--#ZFo^q+VK}}RTBzqg}o0~X-u6qGyO-I4!@~#AYgBynl>WxHlCvRQEN5q4d9UkH1j|#W7ph +$GzgJehcSjngjJVkT0DlHq3wi_f2MrlckqGu^VNM2tPxh}GMi=aUQ=ofc +~vU8%^>UfbG_b2Elh=($e~}on5$Ax#DIfU+qzBD8SIP4V&SMzppnCgi0)7}7}L;6Qaq9+Tmd6kBx_Wv +gJGLu4lXp~%D6Vu#yN{D@1Mm2{45{m;Aek---gcGU?`ultdLr}waSL~U{<48nAnc;&3TD&+xV=~xlKr-ug8^6cIVfW_dRj$GOF$9pGpiTPqiYv$~Q0 +r;t_xoOJaD#4whbmmLb3;={l+U>KJfFprLb1sdrv67l>>&J{|M +o!VMp~+t|Ex0P&Za#s2Gp{XuG42*?E};-s5Zkyv8a*L@`Bsz*3Ru}m_J4SR|;S9h1FKcE{;j$)#>HPd;6Z&Kl(SJ4~F_7nhrk^Qnwcb}dkC?IL-~lqIbizzM@MFT{~-c-Aun4jV2p+3xd0lWRLAtg3?G+eBRXg +K4!}umrF2}iaO~aokm;&AH#OZGnYxDSx79B9pJKV<>Yr#qRV(^5-=sCHd+lqMD#+{ZPN&nkty@Tb=V3 +-L?%c2P4J)o%%z&{mH)6(PiyC>DGQ9VI*3{Q&|%*KJLVnRVOk`FtKavO=lG?E$dfjwYRN!r5?C#p`z#! +@oxzXqx;83J12+37WJRb=>0LSZDFgXoPjVm4_X~_iT@L&sEPh&|191w-Iyu(xXXPGKFK}UL<>+Qfeo3 +ou&cql?KKyo4sw(BQrD0Okv%GsB9nyT#KFs4vQZAw_U>pKfiTZJQZs7q+dJwlVOP$lvaIeURu%L`a`*^Znp6> +|xY929~;EcpLa-V4BPn)!&Rr-exO{9t8f_1ZPwZqh;CSps4XP&vhl!C$G;?#HI@GV=w!d4b?U8C${mx +@#udl!l6A;A=9GPlpP9#HKdca5@qx%MVmJscSBhsfp7{Bm|U&21@PV#gGq+wS3m3P4OP~B!eYU1~UQb +izEBO7GExbpn+FPHgl=&oCID%4VYkUKNC?*r8toL8gup;6lm&aVR#d7>ul!!Y5?mxSDORz@RZqU2)9E +#TgHGP)+OoYlfD+oXzjHF6iBBS`=<1EjPg!C+s>e@!bAvxZza7R(IVT%)orVOIt|P~5RyZj`dc1Ph$P +5`?CSEQ^}~<040BFB;?SILXuO1II9FaQXJ-B2Q-brBU@gbH6|4>;s~kXZulP1@RN;y +5&#fDz33Qj_p?T{yKgO~WSFKRCv{%#2z;RGc+WGE}g*-D>u}vZ=y~XeE!Y^%rh3Vfm@;5VMXyAjzJ4`(eAllBk_|l657Zc_qFI|Qt+Uc(XHQ#Deq2NI|3T>ibnl63r<#fSohF8{y* +xGd1kmuqeNm&Q2PTfzxFH03(g~nfA)hHpqzj_u977(ImkwsJ|NByMG^DEBDB-_)!>dl!%>n!OA<8x4^ +T@31QY-O00;mBm!w=Y-7J{59{>Qzod5tR0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mW@&76WpZ;bUtei%X +>?y-E^v9pU2S*UxUv48U%{pyByU|^+j-f4`U}i7?3E=ka+qWY4Y;Klonb*~1k!H0lD}C{Q$mf>6`l6UOnT(PmuSJ@t`7$z +?C@YE&%_dqjc~YlEUPU6GM{~IlO;&4UTld7&bC?vHn=)Ol>ci-9_cc1$+q?h!gS~@$(d;IwS2B9lau( +H6taqbI%IMMSi|!_5sZY|1U9c +|Lhx+9!b@3SW@%Ml78_ts{YrE6V^$QI`DOT0*OFBMN;6jqL<-{0{=nM&3UKN-`XR>a +}JbGE=GD;UwUH~n{=Hzy3w&^13D~y1nXU8WOPtVRx)#_84D%$IB`_k`?NrH*wx*?OSQWZF48SnJfDJ~ +SLqa#GPzl|tDeYen0B}1ze)dH!pjHn8G@e(r$m>+pa^7;#x|3-*aJo`P8_ ++b|uM6!#oo(eQ;Ij0y`o4&+pc*+hK6ED1N`n3^Td+0Wv7-MfT^;!ww`(3K${GW%je9BeU71x#jiu(t; +%2-UwQ~Hur}CTf=bpvU4$`m4GTMAdk5D9+rKq9ti$w%wI~}P?tF3k2q%s37D=%p6huF;J7g&s`M3ryZ +yDa4t2DENXSe+cx5hizCG`F1H%FSN?F~kJEaF>TNJHKeEm=Zi`3# +e9HRuq?zwgPna>B*VIOKuD52060&#&KI{HyU*c9}Rd``*}M +8{fwZz(vJG8#ZX^BGwP30$_Uw_VrK#sgNp<4Qcl1gHfbiu<>=jP{P&-C-pxi6@I`Q=@#w!tlb?z-AHO +BN$3#|%*vK)|v!fjsz9`!=HnvcIw}|&UJ3GAsP4sD%lF4fci3yksRJxvYyh9YY!u$ +@|Qp^B;dCPA7!DUt}#@2Enz<=O;Fo6|rk70UaPlUEP`$|5;rZG__Tmj%$EwlpdTbiFwrzwsz +gf?UY#=~9E^=^eX#<6hyT|_RcAL*Q$YyLblZM^@!~|)47qz%Kn`Ct^`@z#s})O3IY#_TAzf1z(bTY9*ndd0q;drg>H*&_h|q +mv;p`uP!U3niL6`#3(n&~$Ig#NcC<9UJSxAQY0jJ=X!O;#rz&`c3t{rR;rtmG-l9$5#u3JmP6i6Sp7M +rRb4)+K9)V!4p9E2&5KCYD6Oq9bE?(LD5J_`Zv5x}Y_KKM*ypE{5Nc-1OsCIGcVD!nO+d|q62(E|Z!K +dozL2n3+LD5B78Tr$wq0aNG^n8Ka|fXGxM3P>nRV$N*?n>P_!3EEb!=x{C3OaK8icU()vMVk$;-`3J% +0D$VZ0g_s)8iDAC6i9FnpxN*+W^0MG^y?5{zR$Jf5BD?^2m$7Is0=O|n8H0OLjW)*05y7pk(MnpjvA6 +g?=lFW!8nm=Hr$II+}WcPf&fZkkrjm}F5TH9QKJk3NWQelK7RBKY4!vKlmP%8q0EY!mq#oe(DbJ+HUR ++Xfv)6y$=VGA4oDw2OP3A|0Jn@a48UgjublzHd7ctXMaArq`&~ +8)g`4E6QBNL;R?stA83MAT-B*3!4lLoHl<9w6uuQSR3-tyj8ot(hXDzv;0I6{g +h~=+Ht0YHq#f3&BR8>9IO=gO>$b9c(r^w#vRT@vQ}JNl9v9u)o0A@B?yw{aKxeR$xogCMZHdOEn$P{% +06KS{mVVRNXIbTPDLun7_>Tab2n?W;IV*2V9~{speq|6qN9?(a1_sb)D7lLU2GD_Dnd%|9HPd1Z2dFK +z0BfcN1L*U(4lv|E_o&bv!1hucy@^j3p&p3NYd{a=z~CN;v~=P0AWVUeb{!Z@ftW@Sa-fGiUvgkD1!C +TXBM-1C5RWUW%rWxA0P1lC9~|2bM19(cKolfRbeljXu)k0Hhr&Nn+#?i{!Ue$;h+5NpQQ!Dv*q0O#n4 +38ueO%#0U;v?zWRTo9>ELkS{(U+@Yvu$91_Ow-uB0eyMgjxq_+caF(hDGJ6`9=lW*zqL(DY}$sc(E^A +etHHVwQQH#{qyo3ZbHixPPCtbfu=fJu=+CPt4mn-D=s=9`lDAJJeeM +$YyA`m)CVEmuXeYQf?gy10)9&Ib^S(-oE$6=}+PWtVFhOSt|hM98j-H+0h`6L;&Doshlt5TCHyA^o3; +*PQY4JNt106m;wRFretF*D^${XzKwdnc{q9lOT?#dq-(AP1861yG9;3Q8Vopa0GhItd4d8U2HfR +puxYXzM=>GIocy{Mx(d5b7^iK?r@@Gj +=AUHiY`iO&CJ`<#QN9{pFE6xkM29lq&wtom^rF^_R!)OAMj@^ +4y(VVhHt@@7>8I&Mm3&AG?!FoRCn1`J+3z#EelT|KLt8F@*Zdi95N(5b7^4+{q<^usr#tJGsOVD*mZE +xx^6aFR$FmC5BLc`I9@j#1QH)XYS+@HzjTTb9ZuysnGuA!kt`V2=$lO?&K0fsK5N#om^rF^_L&r$t8w +Re|h6hE-{4mFMn|-ml#5o{8x8!iGvaqU$~P?OojT(%$;0f2=$l5om?UaoxP0b?&K0fsK2=8Z3u+=%fg +*pVhHt@r8~LA5b7^0cXEj#w0}w6$t8wRfBDIsTw)0Imk;jb5<{rLWbWh=L#V&3-N_|}P=CqY$t8wRe< +|F_C5BLc*|?KS459tYM|X0GA=F<=cXEj#)L$xha)}^pPN{Y$ml#6*rEw>h7()H!lRLS@5b7^i?&K0fs +J~phlS>St{&M3^E-{4q%V&3Ti6PWq^wQ$t*-^*Z;#e&%_RNktRu{*5d9j}gRkB`S?1xY#x9f{32t%ln +KZj+ZN_HbG2vxFPW$c%Q1|_xBIKUVUN_w%ep9&31X1OuLU6wZF4)tU8W2K?s{ +6DOcWyDUOxLv0i%YRWh6IsD)F04560X1TC3OcWhQp`7wlAauSA6O9s9|5NgSK8M0qvZ1@%o7xZ1!_(? +Ea&=+Lmi=bE1mrCN3puf=d$nl$?S+YkquYwS|COJM2nk9WE8@~?P7<uod62z2w`aWcDDHEc)& ++2*NTYy6n5fAPCE0tcBlBSy&2ZFa37O!jmhy_}ic`gi>jje|uswUH=`E1>g>iv3!g!0e5JOI;I)^5yEMi!ShNrvtH1|&TsXRL3^`yUzQ#XA;8;EmsX_?Co{V7g9iYNexFCc*88NHKeG!JfZXLf4Lg ++&B*sLV?K-g09xC}#Bv4;vUA>lJd9=Luk^QsSO8wj6J054C68kVH0<=QaI-Ou +###2QidUvF-0ZuHRVIPDpOMlKxp^6Y|<=~>!KcrFnl3?4;hFsd?`NU$#q@uxl0r-Sk7M;PUpuEDvQXS +Gu;TnrfnYuA*_FKm?WjbMixN`>nqK=e4oZxc45}pdm+?dayJG;*gJ}aKj-Jm^P%;DB;oON62@getk;9bf>$wg>2_P!xvH&LZ_cvT(0vRVD^3m0^ofY_{m_d>W?nl<*rP07UXR@r+X)c3o!{2mBmY;;d8&_2I#_%fVa`Jkwt)apaq0|Hp^Tk}AZ!zXxZ6cw*kIUu7iJ#; +pTDpvHNBI7SIKlM0T@{XAZ#-M6)u>6*;MFSwAc|`354!I5YK~D*mQ^9gun}-yAZ^VcuXPeRSmTffu9O +(7qu0Ezk8*75yaJ+WfnH%4tpa)?_c0=7nUfN&fzPjLVaItdf=CZJxnp%9(a_@_C1Kzwgi4EbmxOuZA= +h=(0<=+e&B0;y8A(Fwm*C!1afD%y1=W&l-(wE869 +Q!8&X*Msgw6D-Wz7K_WByV*RfZu{W3vWY#hZ|@SI*QP3V}SC8o${S!9#^@qY%&C7z|;vqpQ$Rl)c_ih +9PX`DtFSs5cW_wchbQSHh4!nDj*~tzA>}Jdn&l{WVWfo7BW1Y&cxsDt1##TquJ1J5Bh%I| ++-`}fP!~H5LD&WhaS`-Ny2V0#8iKG*7UIH{C)re}Bb$8|yb$Jny#@VP@3`QNV^qm$zEG#X(3iC^geHnAP$laf7<>l9wqS_6Js5_S%tjV^7Y6^}oxKlZ_F?c%+_4vQGv_-2SbUoHw0kiOQ( +>Di#CkUdpDb)UhS>ec!m=^iF54X$1~Vl#3)k<*;2w$dO&Q|V&1U6T^^GC?jRx^WKRCUTZvheG{U2QYKHmfahSluBBc$ +EDXcxOO72AvD6MJuQ5U@r^CwZdZ$;IL5cOh|RthK3Uj$WU&^ +RV_c20i#t@w>%hyC2m9~HY+mki0|8bjLOW(8 +KN?$t^YR}gt(}9vx|K;ccG{RAYEtib9W?KzPwzEjoN9aKRFE$bSs|Ss6BNJ?pf!k{ru~k=BOBJPjl># +E=K1$s{2TK_vdXd(w6`C@NIjQoa5MUJEVVh%6Y54y#LBW7r)|Q#r{5GB5*z-F8Wqi@ZJJ^^$~~dA=i& +ZB?IRielR7~0i#h?T*)#4j5=em*=+hBiP)sIK6_Z5CAi*=u2yNX(siw+$ScrdS=FGvTAjkXg{lJ_)#a +{Ue86EMa&J-ENfYVoyl66P4s&gmX^9>_07n@pfqN_8frWOiYLaW?la@nMF89KBT_? +bqo!wlh$Iv){gOt_LI>~4Z@(%UP*3mK>O@jaDY^}WZtq67fzWO3I`}1CtJ1au%?b{ZO@&=LQ-1?QTneOoV4p1wX0sc9uJ)Vtc!qIz +J0%gj*RX!3)r^k1n}e0_QuFM^n82Sc4l*~GOEic>#{B`w^zs8Z+(qCEU=m^UH%8+osJ;NrR}oS7AS=t(>Vw`Tmn9^Kl`f^ +~Gp!wn3{aouM7idc(@0(kixCJ+7tuGWh}T&B +|m_*l;^a<%ftwt(M)q%bDZnDGvDQCVh`5~=8>t5B9{vP4lX8-0|xj*qIx!z$jIu|7?_uhnLFH=?G5KZ +JDeqZ-rSu#pC3j6>h<_0Vc(%W+PvVD#(fFRddDNo(uJmAH6Z^v`LP&NBJqDg~$6h$J*>sKpH8a63Pty +lnnoss~d@?GT?#ef(_mA=fj|J|9C5QFqq84&NFITE4@;aVdRf%+&@|0fBaoec&=wC>Xjx%2G3|U$d(2izCe +Ukt%+*H1yGm*WF|~;dTxot2t;8n@ik8Y@H(;jFicm+6)Tv1vg8S9T)>J*B)T2sb0Gi=8n+6w`J+B?3J +G;72FSROB7ce%8@@72)9ORb0W0<5(D4HnE?71z5`jzQ}tyy%A_$!;nKe%bUIzD-PcKTyvxN;)$&Nb7jY@i33iR8nwR8K%4AJ#_6+H2USAqn* +%bA2Mh#Z(Uv?{`Dn@&LY*=@t1#$cHZ0F7Vt_^4#TLn6T8=fZ~*O=SGC9!sm1`hGu_d7Z3ZbNT-k|^j- +q|uF;?9qgVvCtpo)J%I_rWeQkrb1PSEdYghwDIoV3#`5K+jmrM(Y2d0>r1OwJ8AUE>E8ihg$#jo`m;q +H#y!_t8GDqEot~nr&CDs(P1?>^u-0vYnKKie +i7NB1whL{AJR(Bt!ns|zluLOHB}+L`I~$~#9G9ba+eEJWC>h(BsOBQZSCxv2j+_%@H20J-0{gs#p{f? +gv|_UoGP7#|0ln2IO@u4S{grfD;(4XHZ>qAj@}=3U`k1tHQ5Ngyveo2e8_LJHj$P9vyHOwBLve=kyKN +@#uw3hYm*%jR3GVimwrkrG8TM4EnrSPeO<4e}LNm!rF8k1B!sz~ +qc-oYlD_OsL9y)a#j7>lv0jFJ{nT4~#|3O-SsEri89srz55*$5Pa4aw}DD8lhBc2S0ykbGUg~Y)pz~2 +B*_$4*5Mw&x*w&lF)VE=*o5O29(-lLsz#JH|R;mb}9n%wa}RynxRl*8OZPQ+GLe5Qb@1m+{}8eA+InK +lWppwC-w4C4Z)~NOF*QC0wgJ$rVdSa+S#p6Q`~uI5iPY!2Q!xa$-y>bQGb7(>A%75Q<>2o>Us>fZFOx +3QSa^A9gn&a#X40mV`4JsH$hI{daKGFz6UCv@X-QBBSQ>&;=byy>=yHFN434At2}}`5L>=4uE4hP8{A +0xK5D5B_oad6x6zqg7m!;|r>d%Hn?P44KDSTtz|MDDN6?ocqmJ|_xtds&sdxFRt-n{BEUmS-+de+l#o +q3{Z(FAmx@|skmxa$%iK2D~kmLPbt!s_gadg3LU8$Fnx|`c%y11oypZrv$9SOV7+dkX<4U}|rsh&8dr +_Wx?#>O=I2s +cjnG8G2V7Ix!)aq@w7LPu*7I52o<~TKGIkT#_ZbE2YGANq$LUnK>7b-F2mg2y7lb%?y-E^v9pSW9o*HW0q+SFoGIYSXRY8 +fXs-_~5uUS|E?YcF==iNL-1siD*exq?{}a_qTUuNJ*4dP8^^>1tivzGsEG`H!m#~i-^Hf@9%a(S(B8y +*>P({V`%-K!zZGRKRp8*7!tR$$#uPNH8Vo6(~sA`f4IC +#oR~`HLK(4PZ?1lG`)~g^JAZ$5jz_XWSS~9#a{)Jq4Q*(Zju@EBHq9{#yRi!CAVK>V=VF!8XcAw(4mTNZIfVZ@im2kUcb^j0{${Vyo_Db_2?D2`QS1d=>g+VBg!PAq?4(pt&@evzbr{KQ`$1{&sd>NZ<>z(WI}O+%(t-Ih$Pp$8pOvQYKd* +QG8MNXCgoSXu*PZc1tmlcT#mqR&K(m_dLxbfV&a`H+Deeu2V=bjBF2Y!WieNoC44T+6IqUPdEqLO`&xIya|$^6X +4xj<`Bm50eU!4DbaB26eWucM)FYYE%A!If3pEQN#k8)4vE(uMx}!-SZ^;yRUF#TpK{x)mj({NbLaC_sH>CQ?|C;6UvL_lDdv^rCWNQ{ +)Yc<_LV6$~Usx`^y%A_=6f{PO$uH?-^ooz*>Ha54=o`3H`VyNH0}^`9v61n7#PW+gGV7HvNJrFN=uh2 +4@D6>0@$w?Cgtx&!nZ1!eb{sqhRU}S{dCgwG*0q&d1uhJ{#5fc=Wh_^@U>c5xwgA1p$&!msWCqE4ORE +r1+_HO6FeB+1Dk`mOLA*KE5d9?~yc;f!U>orz-(;iOnv +9BS=1>-#_gO-_fXWVuI`W*9jXV1I1NYI#N}e73mr;OARsOXvR_}V>Exru^md$y(2L-BtWg2@O^j_WQ2U+;Sy$0=}WP)o+q}4={w@m}CVufr( +4(WRDeM*?Xat~${UuxI`F~E~+1x+HVaxqTPWU+!}+31p4M$%$PJ76Q;R(8!M*Ip&;qrqBf?sW@^ZY$V +>X!b1UjVRly!v~hQx&`*F$a!o0C9r1fpi_Zbii-Z-O2|8SA5gVvmBL;!%LFXOt1M$$4U*`3hu|l<-x& +ZeLA`PKD-fR88wkenpV~9gG#ajt&I5J*y#l5DAxVOEF>op`z^9uHJ5G*AD6!3cK>I7W8Jc8QTd=*%Ef +^BQwDTXHfDSS>&*>~$fnu639bASEg4~r3#MDZ5yW|~R3l+e8*=(0924P%|vmr{4%cK#!h*#?a!K*-b0 +DL3GgK!und`*DWp&Z=OO9+$mh`K8&(<3L@dM-gMAwd9qWWgRsBA>ikE@go1$Ibvx%i$)IJcW(aM1`A? +)Z4%YrJ0&jO^FL=Z +{ksH#T(;v|5g(^^_;Ao<{Xz}J8E5Q53mQNO=o!NbPq_Ux$)+^y3=dhuAtrB0zHPlA8ZwG +kpJ{4^K!-BY5h^R+x>As7eR5um#6S?20LMXa5Z$uzk0^^4m$8V)0MYq^%45VB&=K%d2QsI7oH;kVGs +0nz%pf?x&N~{{%VxyZb))FHlPZ1QY-O00;mBm!w>div7$W1pok05C8xx0001RX>c!Jc4cm4Z*nhid1q +~9Zgg`mW^ZzBVRUq5a&s?VZDDY5X>MmOaCyyF+iv4F5Pi>A40a!!EwV0JboZe*AkNi`++Z8MJgq2+ve +`%^OHxUMqW|8Rp(M*m8Yf*KXn=qh&5-9D4rl1MuwMsLiJ&r3mJKYWmQDnjL)w7PoU*}xjgy}%VGC7CK +eo+y=Pevw!o}qRjt-{_nEVc>`xl2lfU7km!Q8=n37vfcO8X#1KHk|mzMP%!FBV6$Is62F?EwCbCX)k` +%VXmZLy&ItJ?xHbv#g{Jeq40Zew?Nm+Ku))5A5xZ){|*EdWSRkKZdI>xa!bzxoBwY#JKw6ijL<2~TaJkdzfct|DgBf%QaJ1K;;l1` +2hXiL4a(@HF#L0(l$B8koCw6c*px1&@ARGPVuz8do+X>i~q9wG>c-$BtnP&iYyc$qlqp*%77gbl8mur +eA56d^uSsS~b2CHt_z6|K6X6?rXk8m`wHb#43A$^qH{4!$7tY8rdQ^B->p?^*i2x5u1Ytle23sIM0kG0GYB5n?NC{kyop&N#GN|2{@vUS|UtKnr?z^xP34oq@&)0)6 +;S|eG>DnOzQnI>RtP)5JwYrS?Dc{rHQAuEOVd|^{ORT=1Rvv=k_f9w3mZ#wy=vx8>@tjkCqv}NrE!zT +_EKetEc<)1Z*A$@;nFTN;o-#DC}pHO4&ZGoo-N7V>5S!YtR>1% +(i1TRGkRmLf!>1x@;IXVhl8^agiQ3O%d+PI@p@)8ju~-Iwq@}qu$^rDyHjlyT){dX69VD>)LLIX34l> +V}ioIaNdp4hbH(M3=AK?ji~L=y_I+xI8h)E&K6GU94mEB5rWh6UryG*XX182OT9o)bZNI|v`*Y|9K@M +cQl5Mit^oXokT79-+(J;wB1!SYjiYd8Qyk&Ns0OD#3(u%nE^tknEsi6!u&%sa{~;o@hA46yoc)3zHXf +6P!vnu#?66mEvN}GFI4j1CsC4uvUKG)+8(m&>Lt1rFjNwYULS}(^9~j%P;g!ILCA#A&ovX|lZ;G%xdk +4Q7ms8vCwiac6v)nF_w~U6z6MbZd1s|lw6!S5a3r!7l +uAo51&1UVat)+wMMY4Sl8mEn=v=A{ACyUQm$YdhX|R_Wq^>lk8qdX7C`}PU>vWa6U8p?)y17bY-Bfuk +%085ua+p6B(p9)<`R#{~+rY6x1(n0GvCHEKS-v#X|^pgnjXn9NL6n_zf70%dLR7lAd#;tMJq`z|*vSss7$mgp#lyF18fp} +jo8Rza^p@Y{EVc}}YTm9#l>Q~rM=9`bzK%90&&6mrB`~81I%ZE((XS}xtbw0YZ>UD#Et(*8bcg8wJ&n +1#Z5Mt;Y8Oq-~{{T=+0|XQR000O81DB*+0D@dCM-2b~Q!fAjCjbBdaA|NaUv_0~WN&gWaCv8KWo~qHF +KlIaWpZ;bUtei%X>?y-E^v9}T5XTpxDo#DU%~Euu$=R$n;fnvTx^S6nzRSxE43ZzrK3&Hg#l5wU(8U3-SHiKfCdlKRkQ>)7$ +5w(2dwgo2wFgo`CC#+SR(TqLJas>`l0|`&xE4MYYTAdOIl^y%XA`b#Ax9kF9bet9&OXZnRc)nqA9kqn +mUjk~G`pb*-w)u=M5gzdwKT_KtNsy^*D=WLR)1ZC0pK5_1_X%T{es$mR|bb=h93DiA1CwaMJ0%9W3r80gTcw<*{dI4KYb_8#0S>F^!46ub@lB_+F-f}_wIH+nDVa4*K(Dw +uSRo6&;6p8GOxOcbn|T({y3RrSzeY|1}@I0Bqu&zw%TW;oatOd4`B%`#xTNCaYJi5r{B;2P2FKjx0RT +dIuEm11w?6jA-)!+GB$BKorPN`ni<&h^z${W7?S!p$zVlRHdXv=GTF#NWJQ&+!AX-86{KD2)oj5$!EW +D3+cuTB*-AJ>!(L(9x-OO62;xQ1v0$>olMsF%5ssXmc$ZZLlNOb>0yZ*aXwk_atUnvgIH$!Ic-+Wzt# +>uZC*D(1+vJrgb1M^Oe%29d9QU43%CoV`P4I)qwuxqXA@zDN2^^&@C9Ap@)JsedxeGHQ$t&EHrO+fbL ++2&QxrM@NJ?q4RXLQ!gnSPeV)aT+SU3LGTPrcPmFWdnr#yCZ@60ix@rhZZ{(RFFC0}K-9Y>50kTGh)c +wwZIRNokk_j%zOkGHN33<=|Y~oV{yWd0;U)W>>PwEtu4Wux(w+P7vUHCzi{^9WpN!!kTe@5bVax#ZK) +w_?X#pNi;~HSCzgQ#_}Hu@yK)XNGQZ=a3d1h1uW-nX=iicHkcix&?!h+xuat{S52?;5)PisdiCs;EH^yu{PE%tKJ$HUx;8-)x;!;fh7BSD6!R +;`7ojkr`u1yBW(iYGOfEv1H`NFkbF?6JWv#x6gwX0~LW@s%jGzG~}EhY@}t2@jmF9Ga)d@b6Al2IkJr ++}fc^ZjB*>S@-b|TLa%PaTcn#XilpJD{I6Sxck_u>1Y%N?lm2pAhsD+uXt^X5R!e4xx$q?ZrVwkI96m +1=^8I?T9N?6608o~!ckR8?+d7WId?O-x4Pd4xo~Gg&a#y;_HygQGEX0%a$$^!FLnp$>wwa;9=1DQ_wk +9pRO+UDmziB?Yji<9uxBkyCez$8{>KoZ4Gn(y}4{a#8Nk9Te{rG>(YYvZ2esuKskqdpPQv0+#uypTxb +Mfert}X2B7B|c*?*wbf`Srm*=~89nm#KIM5Ayjb#B}y@&%hEvzgrpkt*(A$kNcI~>i^ZRlHRobt6gl& +=a+liv5G7SILgB)x;#61)*7pK>{2I3eQ{7Tu&8pzzuqO@ZQ)9QV_TF6@_jAWlnhVf*#l= +oP2qA_+cc1|xY5lOaw3!2s0K@Qvq$pWs`ZvNmBR-?jG6P9Pkg@*ka-SQ?Y0D6msWW$Hd^_rFFM~J#9p +^zjeugXNELg!2k^hC9C2RYqK0urB&vC;kvzzA{NuPqTdkw0@UvmSj*Jg9i+zzd_t>V9MO*f;QdM;eo> +y|6w?;ZbPHxWaVR!#%69o#mB!Q=vDf*U3n_kr?bcIQk@s~Ut0(IxbI~70S$MjZRb;!QaB}6;zKy +}$7#=fgkq`e9c_KyQM-uF`?MmdS13*Q13;;ws>l2NxI~Gos!^0e0+h8Cuiidy8j46Tho-qNVZr-IYNV +y;d<*dbYr`=;;la`o-FV(}{sCVPWI-~!H(Mls3X|jwPK@rbJukP^4sow6$*3DeJ-;*RfAmrFFVglwlc +dx4n!1j_4na)Sr3`t9`#G-l;OB;>&|FZ+ST1wuaBpO0<$Ie@!@+9bkGO2%>nJ&V^wiWL1w~B}poag~4 +QV_?4c4vUmQBDLN03P9mYs=nXH5llyh3-Ej^4L;kep-W0KgDc?RR4bTHYO4^-Z}$;4tn2hMBWN7!||kB%huL{HQ21axsa$aW!70CC;qdy^5PihFDE=|gr`c1jvwmo1VhE+SH0<_(C3iF-^#85)@y5P +-`LABDZAvTH|_a5mr+ZUABnK!(%w6y)Bt066PL)zwEJ=*Qq`zd%LQ*tAF!@#L>rbN^{G +iT7G#E{N{7&Uxxv6+i@5`Z`^bGjGTxO)f~x;?%)isjWh0tW=O9XSBP=;dmsXs#pQb=KdpA}PWJ)y#w{ +^#dY~C&uw$kdI^zjn-QQbzh*d3#RM+SXJ206~>Z<%w9Tht^sR2v9NyXZ%TyDaP= +O{mnTU>B%H|ZQJFU}WFE@E*#OrQ7nsN8F=TiU+IUZc4MT!tRgY4H61CH#?y#F6m!0Pxg^1wpmNG9rV( +>0UqZ8^i$=*ybpg^X|nrB(m(VsSCCczw5td{ebsRUq^H+mfV@J`IW33a0%}w*{cV0eXsb{OJ5Swe?Bc4T78GmBM(Ao}aLc`yD4Vr`BgsKRI2msb#1 +Wp?qYYgfBG?*BwfWbp(lED>$^l{fVI%r}6&gY%w*z?C1xTT-2xbU~3s)*Io7ZBZ_Jia)B +$)b>YPaJ+A5JNS|MCB%QC-IyLPG4Fs=?2*Tg~vp5p0OYRyjZ3qa2(q8x)73k)%3lJHx8!e888T-Wr;1 +jCLwQ0g@*5l&$(W<9sYBI1GuUY=B2_TLmQ3u59&DbW!P?f9z^{J +LR3mwxG2t1kgBh&eCqL7BX!*{~Pz*YJa-q{hRzZxTsj}5qK#4%dAQd`gpm`qu8fs-&l`epcDX{|f!%2 +s@*Cn0_g&%uyYoEclfgXWzg+BjzjFJ-(8CKFw5+&7 +$N&)-l(5#~IkzKcmEZ~P~ok=FXm=!TIh=}ljjrER^T?^qqt?(uALlsKrm^+=7Szf9fFJlr};-7V;J*X +}#Ne*sWS0|XQR000O81DB*+hs@^xB0m5CA};{|CjbBdaA|NaUv_0~WN&gWaCv8KWo~qHFKlIaWpZ;bU +u|JxCd=oEO1q-%)mNJNYn8O +CqRiDv`+V|;KTa;*O>W-ZObMfCN-B3^dvu}2jSw5lk|2ZjY)#pie@`pcMz54L#b}{ +)MlmGdLiT*b|Jv*IW<-5F_{Iw?)GI#~{?sB@*Je+DW2`=@ELOxo$6zc +A#NClHuu%Enu6pYQswb~8-(#h(%N`r^&}=Q!M?%GT{*QLPlqG!=2wx~x24T{egzquAe9HAE +U{v$VX9^-WvT!wdrrz`J@r*u)~h(3)?HFnN%w2r^tx3vHB|Y{Ypn8mC90eQT+^1rpsC4VVO!C+ku_pP +py63$k;UX&&_N_IoN1!Iosvol6-ruN9jPsV(JK@oefRQx?%vXTeqlyMfs!0hkWZ9jZ!ttEvLsUZEU`M +$QnG1YTGV!8h^rB=XL-Q+>mAl|YSjS +etCQ;hEAwO`0hJ`{0axoY~nE9|>$#Q+W{!gC=9QI^ef97Lv|eyj*&4-{ozs-QF&%~ +;j4&>7w(<$Y}LX$35(lf^#NhIz9nm^a%9`L=Vd4?C0K>-QoRNn{-P5T9BK&tJ}#hMZcMNUG!bj +t#j<$49KW!LN0f7Z{S4@KUXHz`C^lF?dPa={>QOGsWQ1bRnkAksM3C(9`pGgMOrs{`3>kFlE=snYd^M +;AA@f-HwOJUWC!%A#`kWy&2`Io%+EikY%Z5^37h3MjVa+g?;_vp{W=)=F?y@HQRvV8rl~&*-{!DK1Iv +%m;dWR?enR$ZVC2X6o#wi?tXuxhTh=D}JAdB9j#5*dvRH#AEQ*6@6HFnfM_5EyHYjnj>60|Y=>$Za_~ +~9k*!%8?e1+O=nIF=HLPuECYtWpfr!>~fsjK99K)`d@T{aYT6Ioxsmc>1cp+F1(iKeLx(^P0q;845fD +R$_llL90V2GCMew(e3kUvrefS8)%Aw)N-JC#O)C>WA0&Mz+~Nmn&po&gX^KuM +JWUkYubE1a%F}@URozoCd->gW-~8PVx#&*eI9kpG+I2g-&!4dY`~194yXUsIdX6Ghv91$cMfoT)uV!i +9^~K6?@>#k`idsw?RQ*kCjn&^kmED|tgH>fXTuT%XdAGV3{~<2>?W3(+l)?NBy>$@Vpb>MtLwv54y$(Po6FeQDjI@t%5NnRrEdz+BMsjMWu +thBx@mgdK#xIASenr}sAoj?T*sSxoaAlp%W0?(i8!U6B4;folRPV6+VX_c75h6~<8Ot(wfQA=3~S$%{ +YlPK&d$!y5>-U@K1-9-0BNzw83z6|T`p6ML2S(k9=sN4vdHFLCEfkdB8-+I3`^4Rjp~;9j1)P7OUiY= +>}(%+b`B7t03-c>x{0i!2is_LddTy^4SAS$xi0P^b1jy-yf)*-9b~L*gU~;EWMv}>MTH-iv!six`DFq +f@!9F^D?qUf%9#TqYn5Lo_qj2x#y(v5>>J4mi6WNDA$BxG*NHcg!^F8n3(_g=I +rOotBdiscsB#Ykf)0}GSo?~SKA9c8ZBZc0$!z0P}Ekw{!FOGK3}NonZih}Y3A6<+LLHcF{Dfw?Sx%%` +tExU7S;)>monGOOq7PfiT#}TIO8cVTmb8sEJ`aHHzh3{^8)R*GhpV%+wU?VqSS +q8BFDH%cB2y)c2MJ0p0{Ta`~-o70b39*o?Kr-Y3(Yl$!b<%uu20WOs}@TFfa^B~TmYmsF^BL3LDqT?~ +2K6?Noja7oDl-vx{U93tql4WLC5R^W41plAU~u0M^IpZwLQvnJARwrpTj(twTM1_`1G*Y?hu$mwa;^m +Puk*EE=MBQg$V+Q1Mf>mst}c+}m-3ST{h)3StUNdhH9x5Mf5EN?ZWkwaszlOj<-5~1mG#cdMTVV3*4W ++CGg8rG3BqDl`#OEjdM{rqMDY78((GG7TK%}~SAq|#`Tbbeahzgiq#10VwA%ve<3Kx{qltQ +4mQ?uV-3YRJs|PZL~Fx_^2hM*U(5F2mDdHOo2(OqkW|5trl^v2uEV=!(O0l~&aAfB8J1Jl3>^;}aas} +3*$p%8hgv4MDwG!OcfGGMN-+Gp0>i9%oT@hR!{hp{M9a)lMRpdT*~roEa0adtrc$OhOj +Shfvgsbh4pr*>k63hC$w~ic|MEMY1}mAA(%~lGe|K10(gG7b`^c+hnRockfBzlVg$iptIckABr4{Z}E +^)hn$iKaa++^Z)Sw;*2T8Xd^pq_V4A8TLM$y<|LXZ{~rc3MxY^nV~$EnYhp5@_8rcJ`Cnv``wP3TXRN(CGS%Ad> +FibPW?hyWIngeHT8M?6Mc<@LI#^T-W8!jO6X`V~k5HsxdAgB5S-NmpTAZjwSByX0bo#fnSHd0A8)Vpv +1_CHK<$Lm3e#^=$Llr*6}tfh!>cJ#j +{%=Qf5F{wMD-wz$9iE6z|(0Ls7?M`A}=K27XAB@pL!B&}6(4Y&lP<%vO0JmqwONCvvJ%+585zKX+`2z +Y)1V>XUg(t;U&;V)w;`b$vt)%W4%`dv&DSWM9#qNY(cHCKR76@h6r2a8zsl5H#kU-ynBhQ{4M}eSt7) +kGe(I4RM-2<;$vorAR9UwF(r!+%80&8?qR%Od{<@qCe3xfMy8-a{c8V< +|OUq!SSvK1t)-F$9Mvy@qqBXhY&RCOReJr=BKZ9}UgGP!Gp=O8dBJlN--!tHdPg=QELfLR!946nZ>gd +DPESvImm*=adtCCoIlGwq0{_gDEmB|2fHrcIgh!kDoQ#?Pr3Z9}#dnBL(b3hH6?Q{Zsj_osY=Kt`YCk +i@EvizsW5x7|~dw{RIl|oI3`M}@y2Q2qP8MfYLwaO1`BHUF2u9HV}!w~JnhG!vzn+}9T&VD{LC8s@(h4;SBcH!x1W_E7fbd%F*De!+RF# +&YLPJ|Mqok6V!>}Rk%LAn*Hr-Yz4?oAuoR16*fdj5W-fvRE3J1wzEOR%1y2yXt8y8M$yo5+YonGpo8P +_t0*L;UTsrrDN-1p+faQXhu>($A`$~u*sVawh?I=)a8NObd;v9b7QUT~ofMx63pdG$=5g1lqyfCI!S;C|2mTl`>F1@fRHU{m-OBaJW8Ac!T^xn+Wr?Mv(o3~eG`ioU>?XBK86)PB`1kJR}Vc8G(nv| +ZfLIqnwswSg28`b}P|O{Cdtgbu=!JDoi%v9`P(Sc0=h8;tPuiETNg1L4ZW8*hwlg92c_iTsj`N;`i$= +Tf$t)(t0JiGVH87FE*qkyd~aAP6(2!r&N|V;FgeJ)tK|4?kbvYTE$k6w`rQ`hcx`*!Z8i!8@yW{@iZz +$m1?{Kd^7Wn?le#oH@JjOv%2u95Ic?Un8+mVPoP3$rv3cu_uA53L{&x&3g@EN|anz;> +92%Y)Jng0d8IA(m5d84Cjw5}U+2zt-R<|64*HILu0mK7_zqru8e=C~Gt{7^?P{7fNn75sCZU +g-%3s*i3fQ(6ZdyX*|B$QQWL$p#s57kn`<@@ +0|K=S|&ru|qiHi6ALUJi!DROfZKD?>@}(WePl)83XwR%)yYqN0UV}bZH*>4cMy*=HO|f`6mkaZmn5{g +%)KS`!RIWS&%|BB&V%CUNCj38hg$T!_>CV$(~yuL^)X>mf;$O7Y_D)a-37+ +u}Jg2%Ogj48K(zjM98QjBeR~3tcHYY=~d9_N?q26_Ws!#aM!N%>)?f7O90(b9oVJ8uZBRzU`Y;D-Y4yQ +@)W5*csJ+NX>1w>$$XF6tjgsvN0G5tDPYxN^HfqQ8Te29~fQkmhyuno +}NLJr{XcXIi1|&q6C%%qR=0>=}3{00!3tN@pZVmybx7W7Iuheeo!Ige0j3T+OZNKz>2&&kKO+S_Dh}K +g4>`pZSLtpfG>~^oQ~w@2qlo9WVzpU=E2s?JoOBSuad5O)5RX6^T&xsc4CA<6&;$bA!Gwguc`L);Cmu +OghJ}M?~42}^8N7k-Z)`Y$puM;k9e4)O8nJSFD)w*?bAq{TYp76$#c1tJRj{P&;8Bhuk<%Aw$sXOS_? +*$hC`A712l?dyt3F8-9dd(-szVFD%uK9ihSqwNJUO#Xo+mo;=v?J9H?;|J`|hCDIDL(cRW(cah94hvB +RNLnbTy}Q_|C`id3qsK%)xPaSMBnW|YcGBxq9U7H4*xcdPVoFJH<^Im)W|>h=skyQOI9e({VM +(Hk5JOw)i5ZtO%ESRkpG9ez|dM9^UX-cli-1_}G>EX<2}oK6$tnM8H~(kF?g?YYH3g-><_kIlo7f6ne +d$ieDiH|ymX_B$j$%11w@K{!x}XUZ>w!3(e-{`kFOLW|wLl85`h#tQ88h@^;}q42579L1pg9N_*p4>w +c1`nZXH*G*De#YkubpfLMj-!MfI)a#>m{=bHu|0~}4zhduAD}1+BsvyGuh^)dx0IwH)68UX|Igb@U1u +VtTJwf(GfC=dsGD-U;5_4tKT3n(uFp`8UgM>*u2U@3*Lr7YMu_6cv)O5v*n=9NRWuw|8z4wc3xW1KF= +hiooAMBM)i#h;hl@LX)_rA3x=upk5ArjOiwU|g~NMfx@Hmn;GN?z{#aXh9L*mWH{T%@ls$RIe9(^bu1 +O+)&x>+50_X+mDkll8xvT-vnmPJ?*r30=pg=@gCo34*shgg}U77GcD0~F=nahJ5Wb}_Mp?vna-vCA +W8_A8Je9Y~l}(To)^NF&ha^>kF`F4m$k#*}cje*eyU*j8VEi#70fbQ1BJIIk%cJ%7qTsI{BN`k`7iJK +PNgQm7L#A6K})t!P^?-R+F$4N`M{iw@D+E^vuvHpsrtW4leW9Tzr?y=GFYK{S2yvtUuoC1BX0j@*5-( +kU(AP=mdL7%Sdzu|l(ljqyu2^!jrgdG2@xi2;mAgNHPs4Z#|iOF*!1PUi{ +0X-Tl+txM&GnvXg6c3ncXlQ-TwZUp>M$(u#&{_VAbjoC&5&@F>%f&(t=Shrrd()#9fflnDcx+!)lhlA +RMUzS9!D!fUfJw2^WQcK&1IZMgg)7m+EG9?nOpBUxXy*6)fql`fza(WMzUNhNoOcT0y)?k}v&$r77_< +Sqst7|s*9Idk38YH&`eZr~$NoKTlh#nN~9&%ds{Q)ZN`c>7VMpkfgp7aUq!PT;jg=%?3feb_J`{u794 +^KUxLt&@yChzWx=q>DuEWIcPmB;in9nzs%(yG)aeCTj`r$w13k)Oe}NoqAf!t@lDqNXiE+%o`+;p(9+ +o7i4cc1|D&s6^AVDf!`)zTL;AWCbDz97}jI5iW2W-knC_Hdv1Q4xszD!&|#@BO(qg*=%>4Qh@HS-HxE)jF}x08)W^I}lsm8E#fjhvr*Z1(m>H +%VF=xrJ6K`FkBG3BqV^IU@ss{00Lao$}2;7tQXvRcA!x+43Q^Os0hzBb&AxZpF_Cle4)E);i#mdRo8} +m{{f1FKXd~hHKz{DnS8TOGLi;o9D>C}t`G=gD7*6=#?`Vs1zSyXP3+_E0)%w;Z=YhpKXI2Vpq2$ceAS +`$$v>%t9{>(p0cqjLrCh{JjSk5Vq>u)q^c$PSz!!3w~Y2UaP?to0)MMV +g~yI4-_nS3BS(}Fm>}ib^e`cV-(6oF>cGVs#L0t;HF--HE`~Ao;qo?#wLjAq4I=>vNhONr0#qR2IG|e +B_%i9#=a~ClF0POp!DDSiG810P!&D=wiPM>wt^?Uqf@8D~6c2O`o=NO+fem{4e4F4QfsOR^xkbR@r8Vw@8Wk2Zy +>SNjY+K@(c`D8qE|d|{`PipdWpS=!sX75N?a``Mfl1g%R#nzq}4?}Un7OEt=nv}&@?|<2ch4kqxa(3S +9-J|&%T~+SDp=SG1i7KPV{Sh=tKvY-i0wGokwv=MR+Gu1f4~2WJRdtRm9P=Sz8feN^1e!jMN5c4jZU8 +Ix!O8y>gFE2b6&!>XmCsR1uQOn{ZHs_ieZO?aTtb)a|&_Cbov?xQWe}&zqRpkI>v7Uf5LOoPN{yZT34 ++-~LA2Uw$L*JHNC?pLVeY7ROz{70urBE`F3l@1rZ)nFQY6-BBI)dwa26bnBv?d&lF2U0z|I?RITgI_O +g(>x-7S-eL_s(?*32FDh<=1CyIQUS&7JrR>}1WmiOg-@RREAc%SZ$to;E9Wd!g56fp=E@NG>72wnjXf?j)I|y##xGOa_LT~kUKIP~$>sUG8{b}hnMK#A_y}1kEDqL|Cg`ym(yLQU< +UrT4>*2*3R>LpXxE4+f^J}V)AX{%M9|Re$Hcm?-&%qRR|Ldwq$+0TPPT)jL0U25R?-{xdmrxP!u-Wt{ +a3{T-Sr^~CnKjb^?q5F#@2{eqf3@ZOE0wdxC5Pg#!R>mNb*vXMx4r%H<`R)?uIXwG(`aQFT(O9Vu~^l +U>4~|iq3LixyVuY_1lm9?rmB~b1E8XzUg{EzUWK?QC$Ov)fo1KoiS?F>lVKx(Ah3nF;Is0@eTa3R2WV +Y-)x`SEmEVxd+w)1;tnu~j+;-)sJWn@CZ%xe}c9#N=p;fZf9YO5gEa%pO1Ob`@w0IVN4nzuqj=eC(pu +t5k?uwWq^n@gDhxy_9)ncB+F2!%F+#K(-tMMcWXd+_Ez8SWm>&qV&SCN-eY|TjS&maK^mO&Z20F?TKR`lbgjHi*6vferDZnbP1!F_Qs9l&ul5j=D#x_e*fWx=_7MVxfIXYZDu&8I40Z^ +`!*d0$zNoA!(6PLqF8vp9p_f|rTke}0&L{P1K%z}{1oqv!OZG-75i-JcTII&+1Bc8~Y?AJW+MQ#sH60he#LV%gTwRDN%{_6N28j4MKZSiE_SMOv>!fjHp3MwUH#fshMN +zyySDO&#en-W*8%4m5gq^Bt;WS*#O>y!_3@VQ{5w9FSS?CLAX_B}-74{Z;ItO_A;F>VgXZ_i!0%R%TO +CmU7=loicl2;=IQjYsHWnFg$~UHv*{u^`K3SM$bAU_FT{Zi!whc8``JtH-oVo6p1lvAui)kWMoyf`Kb +KCZ$r_e<1Hk%)xadwgf~cb$;<)TB?g0se{7FFS>)Yg-c9BSUPrZ6t$^O|dSUDNW&A-!Zo=QfK7}6^9} +vj~yF8K48dr`47vI$#zqjTt1?Y)phV2v?$|5;v^XJw`Se*jiS`FPk;QOF&{V~?fo?rSO +(aYX_;=W*xwp!mOqu1WB95NWD4z`K?NDdkdJkwL1d~hK>MIUxE7rxKCIxlC^7KZuQdk()mxAaL-+n`o +or%y@>t3Ii-q|0V{_CJ)lu?l)q?)#C?h#xK9RTEh}X?OzB32kM(uM`;ls$B8zHDZ2w;@A$mxsQCagsI +vH0iGoY2d|O6zxVffU?PWT&WIc|%?A-g1d=eZ!@loTfQiW%b%@2hAHZ1g<3Nyu1Prf2{c%vSce~u1q> +wcbI&au;1u+Cc+u%6;NvZmOl@f0#Nn3Q}4jo5h)%m+}t`eo1XqS8=?{!w(Vj359C4~I7JQ?Ake +$K8LhijJ#_X5k9{fnEwANjAp{r%rlU+w>@J2G4m#1w`#+ES(c{$z<|#&abGz)j*XQ +4!1?vVSqLqQ$T^_X@$xk)RJeJc2ryXT0p&>@d1n#bI&nppP7uTV@((70U->jPS^vz(x<#!p-tn0`D_*i;BhN44e$uO}_t$`4KDx6@WjNx6NQrV?bZ1Q#Y4H|dv+K*-iIHT~SygnirR9w58i;fhiU+ +_&W7=Uf>n5^+fvv8vZpA=`)kA#F8eNsjqQ+5|*pcv@^G(E;OS?e$&z{kX_!4 +TQC`ctL>yVSu=bS-UwpA6-p4tuOfHj&UG@=Q{w#z1-uQjsBe+}G#k+<6~;UrtrjdDb-DTU +2h60jmLdB_35Dj7S7cX3t3aXo0u^eNc+*>4-n8+4BY5}jJo+rN*UnH9;F<={H5-zjeR$zICv)(Ni+76 +!obZp-fjpjA(aA!(|I~9uYG-~SlQbF1)v*@}`|7!l9~bs;L`%kZ^I?sGF}j>Uq#XC#Fvz^oi|TG> +h8Qe`%hz!Nm2Rrf(Ao-FZCtkv<&&CeX^Jsp;iW%&$?j*(`APGtjQdk*p?;^$a%7}J_;_JPU>iTYnhVyd`b$io_mumItn{Pw~ubm52kgA`qUjhNzLB4=-Bi)ZJ&zQ|x!053-URYQ}+S#cR(MdO+b= +zivoGsG=fAa{iRS$e|kQUR00@cIF~Sz#Vn{pOqs#v3H;L2f4F7RVtfDGV~1`R|F5?MDKlB{H6Kpq&EY +QUZ;p0)jJn8LKc;l;b~<@LeqN5o5%6a%``)oQ1!B<=Q!3i$W2C>Q`1l8>d>S*IXu~k@mvSX+Mi5rRFr +j8CXrhJE1MQ;2Pj)HmUNF(3;`+5M>}XV5`uc(iXhTC_8bpOc184X*QNy^qznKtjnCQVDskfiYNbhVTH +rd5enF}nw_RN4{BjV>61qn#Xjh74Q2eh=YaXwD)pq`2e9XovRn)~H_ukm_IL@uvLM8zW+uyKnWDc=V_ ++wobW>nWzRczI%0;7&e_lbRjA`7RY-2)!m9mpNyB#DD@3h+2Q9ENiO0j-C%vEyS%jKG?ly(D1bS1+kf +vK+e{9Xk!QfYd^XqW-10kK6()K3iJO{Qv5%OVWwSVZxCbPBUjunhCQLTw<4+h!jGXZRGf=(kVfUEe@T +K@&EqM|Ng&jDzwE_E63$}*zQ?4v|OQ0eIM(RewnBu1%-?dssto!BZ903@&sn=;i<|bMaZ6Jgq9+}@T} +Bz)6~bmjVw%)&sw~VO;d{rXdRYPrVXo{H!t=`PAs^ +()08Mt|tU?H%%Y_JG7BRK50N$gFd4qT&bw3q}BS>w+gBOW@{a=2nQZBX{@{ur!+?Qhn=Jnzyx_Et`>5 +?YW9>LKL*Mpb+mVw)Gke)#z+Ec|XL_mx_+_Y^yJzT)oIxTeVp%t5M$zrfFT@Ka*2{ElBdNMVTYi15Al ++N_*TDqZKX8&%QKEXaUfL>kI{j6+x3*TeiYa+o2<+C~as27A*oO +8-`CHFI@Zz>^zfdY(?t0oknJGM((Y#%eXP9ejxe~#@Ix^^@@E-;95z^a_JaFSKKg%|5y)vGJ0{{^MS?J+qU@J4}_S`pmlUI2ceYqH4dw^n4BSh0P2!J`-VXA{K +u&T8TqN!9gvk*%KH>zu_KF`dFzeq&4<;RHu~gblRq7Pc@7F8(i5?*F< +hgs%=`U3sD-4nVNF0D6mh!SWk_@>kEp=Mp+l|(iPYe3wPRvX_0H>@s=8{leoeAC3LWXUbWb{vh0F-^e +&aS(Ob;+Y6*onWi%QI^rj%!_jh_0os?Y^BcI>j=%yp3!TCNW%&X61gx-7%K`D@0HlY9SouJscq*Sw@aD +`;4!k`~ZgEK3|dX2k#y2&58U3d3$+Scy>-YU^qqfAV?u*yLlJ%4gTQ7%Vv+JZDcKdO4k=JLTxQa=*wX +dWhl~`)c&O2Mry2itVa~DTX2g15U9QNl%^1~w}Cs1v6|AU%DXh$e<`ePy*nrOrA;dRm-5Y;15O459Ck*^B;2v}k;e-fYbrA70YaFG98FKL@!rxlc +0~djQ47luP3u-598Cyq;vwYqt85+FPUJc|Nls4Bt`Ie^^9+|5msX*+Yu24fkILXsGcEmdV4kEm#^e}J +;YFH6j;xHlN|THfUYw&r$wkmd(*?#VU?l6%MIHilmP0Kvxu!i^O=pei`lrIJTbi_MLsU^Vg?Irvc@pv +6(6>XZ^}fy10*-B($;PCyvY-W$qtE(0Nh^CZ^xk9qP$g?kdEL&PWa08rFv0PXGnm}jw_WSc=RH@`qvjl +dvS4!ErI$QNLr=Zg8OHvqy{Fl&tPI%Z%vysnJ&V%Xw6q*erRfSR`O(P38jT`Vbe&n&3&2%7N2Z%l2yJ@Jiu2fhze_P0;-vCSj=Be$9kpo7ib$yMcM) +e1j83V4zOM={d=tD==<_1h)uJ2u%nS6k*jj>tAl5wcz>AQT|`bBPWKI3@s9{XsXbiEAjFEJCZ^P0=vKZzA0y-R|)ZCM7-1%&_wy>k&03kk!qJjYfZJb +=()AD5h!=;h~gw;t`j5qc-To+ORD`%&T2nCb2WAvC6ML%&$%_Zzh=@@}X}er&SJli{4d+$11w`P|IW0 +GynIg=2z-(RGX*EW0yp}P+rq}_x?7a*XmKcRga(O;Vq5_{FHac+!N~r5nTs4vVDRpVs%;JSA7FN)i>@ +%_=bj@#AF>^R(te3?vRI*_fC2kMQ6^AY7|Wyx3SB?cS#c2GqfhDg+xLp2Z~Bg39RGrlxiWkV{@*f;!l +6Hm>O`IHqaEX=yNY9!OB=yFz%q-oG1(9{0-}uF)g`(m>9jJ!&k>RY(BJYtcyKvPgVx?0FrbFy>-u@=g-j|uf#~m$W5-Or+aRnu}d=~7ns<4Y;G>jX=0Y8B6mrG3T@XH5#`jX<&EG!hRER4{)P9%TVO%;KNz&ocQ4dx2G-bR}M+-98tt+2NPu`H2X$h2e$*wt_Q?78}FpU19#e>yW8_9K@*Xm39VS%?Q_0)bF +x_I_*AHWIncfr%Y@9I*BI_!Ho9X&%CoyuXV)Gx6|f8?F|32YEh%_d3I;%pXTXh@bRmE;9eJuuu6X_|* +W&Fu#vQ{zSCOYn5}rb29Sqh;#mj$0vV`|5NO$>Qla~3V45i!X3U3@C|-g@(AvMhM&yy->HW^mxs+BdX +xOcgSmqrMk1%(J=beT9w{}EG38IPoS^^wkuUUH +=Vj!6k2dKPRf-Xt6!qkM^0rZ=>)LoU<@)KuDHveI?%3FiHlL61+V*!4BX{oa!@CI4vfsgaRW0)@%Olr +!1tbYhY&HThuYLzI{z8*|CA5yCgF<>2o$Loa4$xujneo^Zhi*aIS0v73+&Jxaqu(x>x%lIFY$F|l(sd +pf;*rN5{HMF-KK3|^SR2=Zlio;9&>1`XlphVVAdi_%EhqQ4kxdqQf7s*Mxwqjq3wlB`jF#Ew@#pK|vj +r0P@#|~=B7o*f#KCTt`@W%^gwSCbyU5U)q*jYpXYWXbrC41+gHHD?p)UjUW#dD~RxbnRSjXV-NB?}Ko +>iY$uHe-5=a~w?Gci!rp&3aEb<$|xJ-KT7yesfKoTao4q$3&?N}s~!oUhG=ZwFhlx_pfQ>q5_5+}cqW +F0(%sI3gV^3K2 +-F~qXOG_eF1cgJ4)iNIfxj%#8k?Mb(r<4$1R@=duNS(@xgE4)z2(s1<=>L{+Ib?366mvzb%vF*DnU=! +1AK@GbQty%=A)P?7W>bB@3Kfhf87iHYSuL0`Cch&_g5QZ71SvKY!d1DrXBJohfVj?}U@_>%4*&0}=hX +{?pFU`QXPGhapdlle3d?gCUMnwXSr%eC4ORD^-=_03f2Bu$;4C&)?VO?Y*dN77f?}T_6xjlqptmuI|0 +my1Cjn-Z0*QfKA5pPu_1X)jS(K~x5yt8+{clJ*C2nU~T?(&7THw~RQBBZO1nRHO7gH1#xir;PJs@iw` +fiX7JYP^-1q3I@)7qyjg8uzg$P`hNcDpF?-y90(;+8-t9dY*n8GH98)3p#8njUz)lYAib62~4*{vt=Q +#lcUAb{9H4euIOd6`%o;Q=7E*iLRbsPWoWki$8${p*+1XU$kKa(nhL +HAa!wRq}2aMZMiMAYUt}xo7ia>45v6kt{?M4r%n(i3_ZP(CqJGss4$D(UwRV`+eBLro&&D?m0Sc1Owk +_t@b5wt7sb>vDhj3gF#Q_2K~7)qQ@P-H+;1+HGL2H!6k-LtaKk|yGuayMs@_rrQ#NR1e1S1;XqmIy#w +fG}evvHK@+zuw~X7V9ACL?yTYx4*9Ra1L}uZv?2dD}fXGp+}Cxd5m=6qjX9DvcCq%5DY{Cmvx%NuKZJ +7841W6D9T)fs2Io+V6nqs8tyJqIzFSk<1;ek(7Z|QBF$nCa;P+e-6ur+X)0M$2E~abLp)bh!0(;_Az98x71@SLwSi +~9;jJTP3TP(CAC@>1F@mHB&0wznszt-yC%qJakd30p4d9{nQ%yr-~&`N*?n|udtO%sf5XxYa>*x|)m! +??9=(6x)Qgo6oo3Ib=;whY&y7kTUvG-Z-nd?d62K#>N;BYkTO+kdNy@-dI}(5@2}D^wWpj4T2I$%y!M +du+Q9uU-#jqGy!ibEX+hkH7zl?SqrA$(r84?;1C@Lj&$0GM4(tm|mWivvUdr^tZiz;X +~rFTqyQ4U>o7GE0LooM9{52&eHCVk4zI%rDfkgBAN{5)n!`3Q@aRtSeZmg0er3&CrL42f38`_lKEAuL +1yfH_J%4B#bU>SlbZ4{F#6NOijYjh4IPc>FJn$*xyhxhh +6lWNNi=(0x(hr7)XB7F6cn&CfX9NY+4IKlo_Tr(irXq=`j*dfIcmg*lovTuOKOc#Q*^>N3Tg!7Fl$^r +ZBZda7EQZ}y`@yyv;d2gDHxDgtYl +l=v}BZ@R^^IK~Gs}VbjBr0I)~h0`OqErDIh})V>NWs{X+Y4N>%md2T^4WhK8&(R_zNiE +F~{#7&?>5b5+8isP&Mbgvo0;_RpcU@g2YxYCN&<>7VKnkdwzNI`d#?)9 +d#qNox%6{=u&JYyQWWEimkj$v5g5Sa(XE|D;p^Q?8Omp7m(S-;wquV(B|EFQ|ixQ>p4y4|{sXP!3Asah>W<#VYb+;yH)0a-b$ +qq?rg&jUr1x#_l%f115`KF5eK^T7aQNQtoQN6pUt9_226WVf0y^4V;vR{Q!?33E%-|svh}?(8Tr8_iz +)41ZqW^DrA2JazY*9-a@~`1({=1LtER-RMYXRW~h;EJWGn8dP?v-bf0uOHTvr%Nvv8I(X(Bv4{yM{i{5tHN@QXz#lLy-Q=u35O2vQY@$NvD(vl#O~2wMaBp=u$pyUO6`9L4O8fJu!+Zrpk83XN}VfKVi^zXn|) +iiZM=tm+$mTi>79Qy$osE4yUUY196uc~+S1aHf9{6%j;6}b;Wu~* +n19q;Rh#7?}hG?RTKL_d~A>;a1Kp-J9*ipuKw}95M~80^lHyb&KU|_BX`xg4KH{32UO4QcQ7vnFL3m< +jV>9G=mT##m;ys6EVMb+RaRX-lUCx>weyCsp^JpOjUKe9i?hfV$EMEgdKyUrq+LPdXu=McW$!j!^bnm +4f*=DZNK*DP7(8Z*V&o#r%4c)o%Xf!9?B0mtJf;_SZado6tht%WCVdX>hq)^w*DCuGDz==#GNla@7|| +lz*j-Opk5`Myyvvo2O2&Q!o&OgPqsf{+wmnK0vM7kdN2I@?5Hw17H6YG=J(|qxJG-P-di-^$DTw4|WE +1K!qPGU1PZ@`L-#T>H<$2#6et-q#0GMccmK;Tb)4aQl_9%v`_{p)YJEl~!0hn{8E}{)pI;+Oh)z5@f#x$u?aBgMX(Ru=vrmSau1^!xrWl&#jcO^CMl|*7+rb5BSi1i`=JMz>EyCJwmd$x{B!)llc6qf2kgLyP6qGD3A! +g7(6i7GEEoK2GdL9NXQDJ3k_cC%-X;=`6?nTNUCkNMuda%EAXom@hrc2%cI0_Zk1kCj431js&)u>(F>SG3cCvyoN3ryubWIwi_iwRujFHbB}1H*{qVa;St0exgTxdU~3f(fiCx%X+9t1qNj|K>fS`= +eiiwKYT4FvMiDKjqLr|A>9KXxhFA;__z#eTQdMpCkxRUjGxS!#}Mxqi4LSoVN}M9xD+x*uh9E9krhlc5-kAvuEi2>8*VCjAH4( +BEe*Vcz{NxGYC5-l@(gxLqvY}adPVyhCSQl>UcRYdKwpeY +-@4%O-X*-4$#TZ5#gkSLoaY?yC|P((ZyYDn~4ie5knd!8>I@r=VV*pScJb6Bj9z0b=gEk5u1G0MY@Tp +yX^zae2{sKpT)c;G&+sS`Bcu52&uKR--+{C!*=^lpE#!#lb57G6*9+gNMjBc_J3Gi}OF0V;biLJ|oi^ +r5S7a@|d=xbcG9;~3RnVSB%cb&XAk@cSnu2xmjL18B-`@Q{r0VmDOEjmJg^FvW(-N4NmU{C4&&Jjr)R +teN+#qbT-Q7s~{)JiWcmneXiz4o(Z-fG6+B7E-iO0wX_x3?`TZ7RkhbAHy~Axrpt$tHR!2sB*jxBWwm +`SBtdnLGInrX_0XR9lX3lIFlG>b+(0Kzzxrh4}f4L}DvEB!DN|U!0v3W +lM3-cBsmwoKc(x+U1Ayi&1t%Y^^OTIjHL5-Ba%HUEj77BclX34ED +>}l>)4Z`PisX8Z{|Nw7Mmn1>a}kkgfxV=_Ro)En2|SnA`|&tda`LPI#C)7NrIC>@&iCT1}*N3KH7Bdj +JqTUz%DSYbhnmROKvz~4a~d0G{4-%9>{rWo_aWb^Gnl}*`!%ben~oeDr|E14o*!_8k)5?p=YCCy4dCO +rw&%gf9Y`992iuu9N?@!eDif&&bx2Ewx4wSqrc=3)ZYSj(_vY%+JM1G*H?#{8_f8DOb%vTAk7XsJhnW +1_{nUjjDFGRWB`Z(3~tHPMSH*>_*=pcA8Ep9Ly&}_>9-`pTLN3l;WvFO>rmIQbm1$|WD|0k5bJ>J3n58Jht1fmGBrE}+Ro=1F2hcm0$D~6I0`CyfLst6w(LKxZn& +llGAKfY1ZJ-o$dZN&B@T6$8^`yKjD)*c%1y)h%{`M>NxPGxGjfUFCPWq;@d|A}!izY^uOR0DhUmG^eGC1D^60F%;jl{z38KJ6d#({OOAGUozVyQ)qt9iTVR8*gNSux<|eNn@V2>KYri%-cZ=L^ +Tzgv1aN0 +%ES{N(`&iC{W;;z&X^t&sBl&CatxY`zC1B0xnq5nbmDqh7b$vOtSBFfPp1 +jT0RM8KZ=Fak +N!I9M{iX#X|pm4fD>wz)0@RV787&#Se5r(kxsH)73+FZ%1K93t7mkEk@13kQi}sj|LYI`A5cpJ1QY-O +00;mBm!w>%kYfjOD*ymp(f|M@0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mY-M<5a&s?md30!RZZ2?n?LBR +K+qjY6^DDScw~}m`v7Kvsb(5%hajv;$H+hn5w|ABzQxqg|O%YmxwCqIL-+nU#fCNd9k{mnP_Ex(w0TL +JhgTY_`%nWvRcJ4UvTU<@&EJ}nMvP%{VcX5@>ctoFmvHtGRx0jUKnefY#IUaPY_dql2SAIHM~knK6JQ>*6HLn|B?-nDh9DcYk~J=B+Eign`c@!H%6LZ +=cEUFJC-8`Tp$*RbX$fk$2EzgWcLzy~1ENAU3^juFt0vmjw&;rXn-PP#T}6bLHF@dQTh+!+qNFdPn@ht6qB5)h%d)p +b<#DUSpXS?TS&7|I)Y{<(TjwN^isseV%g88SrBmX`bx$IckbNrLr)0DsA@YWjLtE^+)+d7c +|IrvPh+0}9gLaNzJL(}77y)6l#yfEPONeVsY0I|U*j3+NSvycWGn;}BoXl4K!{@7-H2mx@ieJf6xV1e*! +!Px%dTxVXZ<0yu$;QMocmkCFF*g_I=m;?RrF<+lJZjzA|t$gn;HHtV+5u8VMs@ul(NuJi6{!2lWQNEA +~Ag;f8YvpSXHr>jDOw@`8Ovuuc&0I9T)!Z#~MpOZNClge8^4i-rf*7+4;;NDw>3a6b4V5PtspCFdH&X +d$X?-HAR?ZMdUnB|T>gk}*>et7!#V*JI+XO$POLVy1H$5(Iu{`U3brzb^hE@AXSRUR)Ez<`M>04JQpo +@`qh7m$>A8V9ly=fRvM&>xaE65vbsF86a1@p7QXdvlB`$c3Eu>$2Wgq@zaF&>N4T=0Lm$?%_d8k~lD+ +p(69i&gn;px|hLth%}gd8ssm09>F}2vQL9uH8^1WLCb+1N^Ulc(~yaFg3VJr0Dmz9oJ0o2N;KjC=HVF +V@(PA#>s!%szIEEJ>vkN)9AOdzHji_U)0RW|0>;%CiUfXgzf*wMj$7Zh`|bX6uixqPPWSH~ID3QL_UX +a?p9g!Z)7?R**Y3M!ywhtH(b_tlg)axa)06%G`lr7?4R|cP^zz$5OHT{#izs37f`^^1r7aO#>b89R)N +*CzYuZz;djDgoE^(`kZRx;Y7oV$k|Mc{Ie=ykVL(O-g?pW+3V1PjEyGriV=@29(hHy9-=6Qe;uhe +cX0?rw<-I?7tr%Hus!C?{4n^P&nS}^ty;j3K6bG`_qUEKvb`SQfS#HEBZ?K!|6!Ci~=)y*ZDc+Fq6{A +HYh*@(?~e;R3y%bISVgFZong8>WSkyNl?N8AQkY{@3(fo{n(ENdr%8Wm)%M-NYn2RY7*Rq;Q>?8IAmi +BSz@IsWC(rr@#A6l=u;JX^@Y$$#q8BV7I6ETI`XNVA%^9Ik;CK`0Ak{ucESMhvg~e_O+*@xPUP%$onKLgE67G_Lm>0DYlslOZ`LCkHyOeEnfm +_3joU}v<)|>+dq*Me<+)23XS)k20Hh`$8EEW)!@DiLENYEik(Lp4cgv{wyMw*=-%c(wAQvru%my38mh +(s`E`>H2e6?(Z%TK@Ry^Jw{cgh!Gz&Q~Avi7nXHaQ_B +$f$NuQ+Pm(qneZ(@4K3&cGC&ODddBwA{zp{A>AoJtE5LW41c| +_iIVsGh8_9e3_a^E&kf6!^ilhq`qAy_}^YG^(kRY){jmCcR3g(lj28hd$k +r3I8G9x+;t;?-wy3F_MFl(JKVfBoT4-B^WRuK%@bze(k>46Z{SOm`c2nE-sf?*Tb@nH{QbL2Htq{bn7f@x3_B9)+C +!pbl6}My1#k2diZel;KAzAqt)@l)#?5(d-ry~efZ$f@87RnTIo2v< +k!uW`Y%uR}oJ-{gDCN{Slx|hbojPrOxBwAhoG#o8gh<)_KmO<8pNgAG`JUe-+w^PN +;kH9;wtiyvg!O}=>-V}SSX00tM|bK|AyXtH1;e+U$rFCzFSOzfl>f`q +a6MYgNzIyEvr^Joi*hzUL9E!qi|~I#=_eqz2QqNNz%mU@;+sP*gzAC}tj=OzHz6nrr33B?}Q-Rd^bu? +9yiof-(srAfYP*&(n~Pyl@kYFQ9suBK86a7DT9!`!ciK1SfeTCh*Hy5VEX)YI{(29JQEo0nht&bz^aF +t~y}ONGIZ~>zw&8bk1l^cQ!n8FrU`@5EZuj{?zFwgWXQ)oaip@MUU7NI0*7^KA~am>^Tb#!we78gJ{g +6gm_1V{ZdUx6PLPN>Ls=p5K}-E!X3-PcHBfLmp=YB5EZS`l$KcbrxO%AR~vGOUINWnDnui?_uBHqmIX;7JgotqE;>UCm +uxYbJEp0#~D)9$~|9(fk>QS;+&rz4BS9qljC-$18o6z+8=f5SFuvjB_qrd)l?^hS^}$?e(pMafnDx}L +|e8_M5=;0qtgb#HyQ$IwTDn;Q@A&`(@9mRjo8meLRn~6dLC^xLs=`I374BQx#3W5w+@Fi>_;^2fyqgQ +7vN6xh=_@R$WIT>=`D)>UL1Q@Hg-Y`asi#2=%fT0_!Ft2P +UIWPk^hB;t3Fh8HJ}zy*=4{U6tBZgwDUs~V2*wIN`RFGm@y +OLs4%C;$X1bK~J$;OEpLR +LXQNAB(a!mjs%m3rTZ$B8X2~J;C!sfYP1=f|Hz#+Pw$g^j#dNO>-WeW4KS`V6!YDC5*OU;be6ZhQUI> +n(}*|yg>5BlPxx0`Js?&OB0s+TCjA?Yv$5wvmVDVK?5=ZpA_)0L61pj0p^sy0c-}qlbL!`1%p!N2?-^ +ERKR%xZD(-?;R%l3AH5i7L5x3xZe>!*CVN|jdh+Ud2H_;S2x1;#+w*s3iO+HH0if5&F={LNJVnhSqb8 +(>h%57xODUJVc$L9_L42(imi%nMdXdlNIShDrnZ0-m+31@W3iV`!VLx181+y==(fy=UHUj0Q)xKix&y@Nnq94YP}_ug +bad=ngFgu!sfNvK$VipHEydpfs}rc-ybhev +!XIFO8qt4vVVcAJ$9HdQK^d8T1i_OpMV9SnjI82W|K{CJd`sB59|L_lo7VZG +^%Q=*546UcIni#*1xev?D{3Qor$xj+;(0UT17RBqp=&3x{;}LOr%NL+k)O)N2Yo>(hBZKf9Yd$UWmuf0@S}Lj9{Kr-rB}tJP(90`HI3_i9fu9vBc9_mIY!bYFi8HN7DZzed7C;K? +bAnF|JvSp$P1UkJC!)aoqc9+(bAn8Vf)HngGkwA^fg0fo2mxjVNyHgl;3xf($E#*&%9rW#F3>FI8Ivg1N9;gnqu6)XE2tqL +nCK=2C8Z=MCJj&}qndwky$Rj!aw50FPn15aiDKgT-6raaOL<#vXSo-fPr=Oj7Q4&az)!wwLd4ZG1#h4%fNdZGSq?QmEwXFVS +By!0jW&OyA`usi?Z#R2XxHFl>yXSN(Hwfp0C?|9hjk2|}47gZYbc&E22zd$2^JX*D2IAte;)4lycuaF +BGChh86TKHPdoAT5)2tTcdaB#|B4JgCu!Tz5HoxMEAE8m)a^hBpWEF^zo+vGSnz5J(2?(I(=?>|SQ5; +ND|*kxn0@{}lUPgz{oRd|$b>8HQquC_MYQQIiEw5w49_-o5l5zwn4;InaX=>QK+g4~dat8_&e#jylBEq{dwp^h;R*^%r9H)zmZD5(N;B6wYH+jL6CDb)YWBHpddwCgaa*cRnZEEE +Ox32NitTpV-3~qL>Xno{AZgu?Y;Gy2JGv#FRU?+)Oce)mFN`sm<1e-8twzU4NdM*C$;<*YQ(Ky` +4#h(MqN+<+vQ=A<-P;@Tkwg4vD0j>+=%VZAUi%PH}ly1<7!*k?BQMJZ`T482tU-_i3t|1%t@kYa-r1o +pG+4yMMyPQxu3u-@^IwO@-g>G*wF=Gd%n$_AQ)FdjL{uruQwifo=r~SS+nnZDOvD0r2R{dyoX>jk4N1 +s+SSA0C|-Y3JYVmqycuElG={eAzVyW8u3TBT-T|M6+{gBkx%ONlkeFdJ&Gl|ri67o@%h6)PHz)hV~-8 +ONk%SC_G(gx9JRShWeQEwoZ*ZQg3Rs6}l-`%bH*FxbE@;J51ccUH=*rql(*EhOg0#3$&iwoWHE>!UIv +YpBOs`<>QKN&m36_B*QfEvo&_jn`gvr@i*5Tls6m{f4NwRsQRvek05$b!5M@De~(Hwc1Hh8D>qT>ZrN +3DN^g{udz~!qts!_PNdso>Lw9or@ieFbrX2{l$#cNkr!SGHbln)ZTwR;EG{`;p;TR1=}D!$Wv_jo48u +EU2;Omk;`@avDH+<4>Y$MK^!V`L-~io;m_9h1ho)bVlCP1Y&7F-LxtFHHku6+|$O31c0LhL;(0Y``q= +J~m*GTCNdMCM);cbG47717WeB_~pbAjvhD1p3qCL?`}C|x4qguyujnCPDafX%#%Oq`_3%=raW1t4b7p +qfh-hK-I(5E-B0yyOUXBNkUjHb*1_shhQQ5)U2ja1w~G%r11==;DQPHh90FGHgC9j_Q0^w7#$xit_ln +1&0$G`kS~_e+ggMT|zCS-;CA2sIhvpnab^0vu|OZaxKI6>zTEbOl~%|w^?gu|C<55rF*`p0sWUTK|=P +N1pc|j8WjfhV0B94S_a{djNXcIZBuc#U~Ajhx*ImVZEV_2TH;C@RDk;xtZikfU)tVQwe?F{+^U9t8Jp +W$TfySTszK(BS=Fq!p{d%;RN;YeO{O`U+tO&;nJTPIn>jP8`KpFAx1!o#(CEjdhE(mx#g4QE?J7n8D! +@$fpVWgXl$!u-q2ynM?9UgH5LhfVzB4O;Ew%nF^ij0}kVG?4@R?E_*71r(Ko#a%yMT3e09B9`y8vAF5 +aF2?0*w{{RiIT1fso4{HZ28eZ2_tP8*BsWOaQ#)Fl$@P#;M)VA!dMUX&#Yv1X-f5FHNkVm$bv +fde37eSqZm@Jh<6RW?V_Hx4QyF&8zf(x+6?9GFQdm@(bTrVU8A{e)6`~3p*_=D*rq1;%uuAZD0NfVRA +M$8V-<+Y3f?&$*J^NE;gvPI*JyAr@?dSB)hKsws?2Q#SyApTD|7Q)0o$gtt*O*)P{u}j+g8ve#s97KwrxN~X>LwD<6geRl=_q!;#F&srWfc6uAANJGX +_wvF_vQAMthvRjNggZ^^2b$j~O)`D(Z?b=>wQTy5ovq6WrcTDbLND-@3e|YJMf&y-X)^xYk=u +l5LfI2j5!-g8VH>NqgVXGwsd&_J3_^awiTQ*~At109)1VL1)*42)4m2Fl1)73f;^15HSC+O=t&M?Ei%FtSS=@s;$pD>Z +Ml>Qb_!{hWa0MPN3Bd;Pv5PQl-d`nit#jAq=`d!yS>BLF5T4UV!E@lu9N5s@Ul#js*9 +Qo4q?#kogr)Ipb>brx)tR?gKsCA!bEj_CS< +YCLH%#Jzf!s@~k}yRAlGC}~jsHstAmjsl!!)+c^lB6)CkcQ>!iK^Kj!69(5(9Rjs9dgt&F!?;w6)Rxt +=)hBwA0IQ@ATVqE)pPkA1d$Qo}~kHob)@#G@43X)y1P~6|UmV*a&y%ax)rFtmM+?~_+JA*yo +1mye>RutQn34pNcTiKk?E7VsH;xRI=qBdqFP@Ud_N$NN) +JtC{XJ^>V`Q5+edic2KTV!WW*Agz5^m%cKMj2jGHgU2SadA$)B+tKXqNMRi4J-K5{HoJUoVWG-eJiCo +b{iIA$e`c%?=H<@3%bTMna8oXxRiY?;Bu#)47t{l#uIL=h#rM^7w-5eh~#M5(k=7>rU=Y$F8t-@Q<9c +g>{bT%=hYfNzH+;a}HH~H|kk8We8)8p`gNX9|*NRPxrlKUUXCB>sGb>&b7B|}>FJ7e`4+fUgzDyidst +8C!o@iXia$`8U&<w>anL6ZuaJ+mI0Tj}&Oy9XHFOdc9jGXqywW3 +HnYgL`5XsYEvwthyk!TbrdOUBlD^I?xi77cBQPODS{Z@%tMt+!=2vE+~QoUYyEZ38lJq>xqO{-1xh1> +%u-t|phl82-iLt20E(_smT54Qr)pxGxd_xP-{ot3yB<@8DW!Eg#xPq6=UQkqMP(Sfm4guk{VXM0Au=5 +bq`z_MQkT`$q%4Y*`LbN$Zg9Qh^`;mt6?erU9~J{spv{_J7^vn9;td&ikE)LX)90z*rt3CMe9 +}^oh>nG3YRtFH)XX@!27nUM5nE)(P^uSbm->aHi=!Z`q)##ZxIb8C*oamG-Z{}WnZolZ~eOo!>FRsHjC{-C+mD)phL>mHs*=4>g^8N7u+IPG`J2f4WY+c)l^ +@}Jdtay9^#rC!+aD5>gEkAV!R2QEo0dbcz^a%UMKm5sgU^kP!H)a?27HlE#&;9|Vy!Ys=1WH;fqV}=$ +G;265bq^2sy0{RLTZQ|+7lYKKYE=S*-DlpUj3&u=c0e~5SbEd>_#fR*o%ZQ3?+05DtzmiRen<6aG_tx +5=0D|D-o>f8PP8uBeP2U@$)%SYw*9ut7LHS!fMlID#^8ox;u>CmPV9!fwjD_f#0zn9|uQ+YX&0A7sPmUmK}tNk0fe83GHGDr5p>NchlblMrh)oxqkBx +9N8?UQu#Mx>=OzsUyw%Cdn3X-Wl0O=7`kO9isLe>r)ezq|=ypkcbV@Sf-8xwX1Qtftfc`@&AIY-n}Ty +slJ|Z}dLR<;HbWT+A+sHOeeSPbWHcVJeXctzJO<1`iSb@1g_2ZE-_Cx>2i{h{91 +c>Xwa4{vFOi;fp84jvl4D>Qm>u=s7*9@u*43`K_vH{ofa2~juhZ=wC5qj|x>{-50*a-c``te|jjq1J3 +ddz50+w(;xGYraTTxkR8@<-tSg>JuwXFOKVLnt5L+sv+9_ZW?bZTaEH3nQKEEH}yfW(iV$Vucg=VL9y +tOUyBVv`H;9O7PZx`vxjX9!z(EpIi54ZTR5bM#3Oi**+r*X397=ey#mc-A)RQfL=vZdvUxMsyU^Gaw~ +a0`{GN7_u_3t6b%N30zoK`n{Vo)|E(|)R7EibSviG{|rov6P{x0|0(#^8BE!r&DS}xrPUTomj-W&)PQM8aw~>y>_}cWR;G?vGtfqU7`$=V}Cxdlv7U*ss3`_&-4SQub3<^gW%snzh +oO0*ankrWeRdAcTX1IY{Oo8z{J9)l(@qBgilK#9skyE*L>hv0|gLs_{!`3aWf#m6;*8>&FBbFpL5dBf|gp%B3bHmn(dO|Bi9T{&2wt#$2C@5- +SHZ8O&nHLe`e2sgv*)vR;#@GEfZ@cj=jU;gIT;s3E;hq51s>YG}iU((Y<*|S3x-1eRxN}e66Ah+@KV0 +w0_Li+dc^w7|mU(B1sTFcJf8q?0!S{qHNrQB?ud8<~Jm84(G=CZ&1LI#(cT2oq~(q@Q_9v0~cq<|HyZ +^pRou>zq6B&(IT2v$LaryQMvVISWA8DB7)9544ZRwz-fVAAK&N;(ZS^INhNH|J?Lv-j|{eSG)fVD-ED +Ew57BH#!NhmDRmQ5$iU3aHGX+b$yMB2BX#Q$E`wH4NU`_p}pOD9rF?mnfsa+CGu8f2lgvk;ojgCNLyO +iw*OV`Im&kN*4}i~Fiy6&Q9V0D27?;;Qiow@2KRm0NZksu*D|`c+-rFcVKgEAGU2}r}GP4>QPi1D$n +J96_3uy$)y{mm52egbuBerSm&F47KLNA)8-c*j>IE^AwnT|-W>}jT0_K)w1hO1f+U~D<$hj;b^{p^GF +^gjD)=o65t7#Hp|NM`BC4fwrry`uUbuXBtq8jrzy){6(KQd!VB7;WOChEj6r`DV?+ijrR9YycC}+GQ1 +{Hr951S3cWpTVFmUKuq13x`{`hQdXP8oC@xCFjIRJuj1aQ*V*bwtE=bS>e-a6O9pnU)3zqCrP^+M_O( +S-H>zm0p5=<3;d*uVY^O;Lp+9P)W`)$T;PGmSe0w7ei_>p@_wDa@_xk(pz2gV_f9?0*uYUPUmx$CTu9 +&NKgETu(u^*$9&Pa@NknFI-Px>wE;f3|6LY*yS#{%%g>`rS=JA)SiqmBG}=gn6C%=xyv1eR~Q+q@=Mf +m-(1F(84_c6)h`NdB5OmfF2ztF9&auXTdi~6fDUHLe +D&YLEYv!dwJ1Ec2vH}7(;o&$u?8zXCpcE3;-rvGaxjeloop9N=%=4444ZM^GNp_Zp3e5DZaa^9Ac{Mv +KuRqbUk-v8CzsAFOcK+mhk;1Ns?8i;{!IV64N<4Xrjn{zbXV%~P45`LJxN|Fm0(rl2s8n~JM2AguoJ1 +!}9W0FsE8ihvKT@hG^AuK&xWCe-{p3})F}zaS(4E$9b3wMPcxG?}#q`tu|8X_EEmZ9eMwL+b307@aFbAK6B^c^Y;Kge<5GL +8i)1F>nph+H_bAOEAq$MAWOPrh?&o)QSbr#<$DxW0+^I_60O=)qi0X$S=H=8=viEm0bz9oPT%VE-4EP +DZPI<0ZrF?i^mzr#{d`%TaPlA+M8IYP^x44Xa!*$pZdDiYw!1uK87KdI_vZ2N?r=b#Wpwd#tl!A$tHNy}c1e@|6zC#bl@-vL$F_$`iO5pL7#N&}awXUfH#tJft)CwDVpP!l6J +Ft-FsGu{BNivx)!0rN@d$!dwxy)!K@2^qW{9!mVE*ij*NU&f$^J=v=xFNRNvDXf#8V1}9z2)Jsgd(WHjQ58RfAVyHwE-W|FyAAcv7!tc+srjeWHkz{T^B6f1;|=7FVL2>7 +OZ>J~`oL!H}aQug*|oJ$Q+UoDe-7^U+F`d_)4fJNIJI7=DdxR&!`20aaf1iMS<#b3;X3P(PS@JNkvi2 +kIX>9n|z!)ANXUeHWXwql`9~KsTGL4WI~3dR!*T-< +G`aqh0jUoB|3~-t};B4s=~oENP-U%P$1;uHMj`IMQF13$Jsy|XE+{fRl9L27t#2nMldWx(lnbdlEToT +7el=LnLf)gkBi`idZ7FMaWEGuIzN;FG~1OL%U6X8P86q}0F69_PIw%RNu_3?C}c88)MFB}pH+}t=~Fl +e3u6Gr|AfmAG<-Dz@u@B@(9uLPeq5-B*^)giFl@RiKz@S2P-7S3YSRF!B-@QMSWb`_(@MMsG~dEhmf!4RT<->pHyU`^}naFH^!p_8D?Hm#F=_E%;;>2yS@~f$x{XyjI=J*ED#BuK$uXnmy$DQQ +7HnVVwAqP%yU;+wIr7)2DbAh7FU@ph2ypcrF14IH}vPPgt_230iXell~XsZFdmBbS{ib+R# +k%a{Flf!WlM)n$dP$s-k4-Hco`(IgvI>LY>@_94R)1i#$+KWiPiP$uI34@fvCMf7JX-YsL)#ZUPjbd1 +{o_rT-ScC$v$Av^jo`lWyQ*XTDo`KSc4=xL!&T$n_<(|iKtc7FMNgDn=q)-BKI +d{SQo*6dZVqLR;@Au)Te*2nshK1K@@l3+Vm6KC2IM>o6y-{YX2k);LOEKUTX9i%5IxPc_z6;a5-1Cbs +3?^{beM4DSL$Of(W;2rfApgKb^eZ~U<2B?V7>r@cCMZ{m?=nJ*rbdQv85KGN{fUBiQ2S=$J`UdlVds?!0UmsD`2 +BBpAVJq%mVJzC*jT2kq5k(sHX%50y$MlvnzZKgUPV6{6h&%uM8j@pfQook{eXaJtP^mX}w^c+Qx>pPh +5fqgKD8N2_?QkDB%E24)_=^0?7GNwkOVuq7KG2IpP_#3M79%kO8%5qkzO5U*-aKk>BQc5`Y)Qza)tsp +{z|&2J6U~v7gTLGc2BF;RgLMlDiQ@E+tA~5hw7Sa)zIaLIo(9fI+cbC>5EMAqrB4$fb+|oJ`ulaOh2S +@pJS&9cM6sr>d~*A_K+@a0knUNidb)VeBh>1=C1BM{+=@RXJWbp`L|xd)A`dc1Ep11fMg#)1X-)K8MB +>F8wDI;A!ba{H(G7pNZ80amv^SeO5?n`Y@}+b4k7;DGWgvt(lCjt#d9UI$&X^Hz)FAlSn;iIRwHq)RY +L=*cfAS*_SAxH{p{kq|Znbo^KN3jhNeNVgy4*FZf&^_&lp&k7YwbvsEGUvGz9ZGsF4 +-927N-jGNYViWe@A)D+A0dJ=>jG&S-wg+D`#FYv}z&e4uV6iu6)}Wtc|D#X!(uW92@yot1^z+~PK0)w`*@&0E!0pNZ&OSqM}iOVtN%1&Gm-9vmD +DvTy1dg!a075Zd?EMF@Bmf>XL&g@{5PQ#ma}4VBm_^#=K%(#hmjZI%|*XlXSmKR8MeIEQuT{{T=+0|X +QR000O81DB*+f^H_FWCH*I`Ue02CjbBdaA|NaUv_0~WN&gWaCv8KWo~qHFLQKxY-MvVUtei%X>?y-E^ +v9BR84Q=HW0o0S4_1B%UDOq251iga&WUQ8eo$w)(MKjFl1U9$%JWAASq*oVEfxUBqhamHYrdZ^u?Lco +A=%@ilPzFs@rOh(wfBBR-p0U{yAME|M5mi%eXYKX}GW#Ttdi5!giXgy4Aee+LS`ON4UDY{O#iE^6FRE +v|zUgU%TIdMYf-UL4?`U-CP!>u +jLo>B#DniKjwbB+!E{iOD%DOh+PHij~ed3K^#@s9WhiYW;PEN-}wr6$CW!0xI9{>I_UyMc{QkX%(bIX +-vx&>99lQ@Mw)xU#ednAsOOI@$WrrGRO(Fjb_+(B~N&^4ao_WvQTJM*Ipj7rD +}Ai9@H$~u?m0IQFP1gK~?8sY+Z-Zqw7f$@YQqJ@i&g5*}W=~>w<3#Uky#a@AXC9%IQsp4u9X +#JjJZQ<6(&b3zhrBLwDiC^L}x>1cN$TQ(w?3fS73p~^P7yToGkFWSVUU5$cqXN;COsAS^>o}zean(1& +I7E|oD-jP#7jnWuryfl#vsTBw2TyvQ(GK4<7XN?SVY;8GGIb68@OErCU@r#;6XMK}G)}`|QK3Z5tar5 +ritUX=Cr5DjM%gVK^A=2=^h4?Lj?bQ)OPtQ7xm4X4BD|@gLugLYn9D&! +|L_X*wLKcQ{0VD*24~R11jW#t0a9{UyuLk&%;e7kEqMD2cWKRzE{}WJ1hIs){!Qjy-2mZ6zYzT1D+}9 +l)RSGj9HwIX;ymN$rsE3F-*+lztxA}QeoYp*44mF ++R$CT=?Gy6n9!^39`%`Nw0^uvZa=YB0dn1Kz0tzOLq2ZpY!WS{K&f=#uKnWar&9iI8TOiRU9Z!Q^v-9 +1XgqWd&@NH9D +TUf6f(4!CvP*Bu;H0t;EVJ|Mv6xkzV;+t$zCx +I%aM*wy)GBYhfh~LKZ8T4=nlC{X5 +tEC1@m1$G#R9x3fK(|BCj#Q4|NkuubN@LlIGWUcmnYewg_FxA}zpO97=?m@U@=WC?4nUS%dSnDG+hSpr*WmTF@FJ2WrM4% +7m8v4a;`WC@5rYc0wWlxA|Z&ZWSdEYf_F$>JI2I9Diq$r7J1f*J)xc!!drB(Rmx=@LUem$@{%ge{~g2 +y>w{a9DF~WV*?@hV@3TRVk1@L)bzV3ymydB?|L|te6AwiUE{Mp65ix_y*N$(g&$p@3eeg8d$146PTO} +RL1AIxKW|0H0N@aK*m@6Sxi$3Q8c5rn>yGo1*M3On8UUR^0RRBA0ssIf000 +1RX>c!Jc4cm4Z*nhid2n)XYGq?|UubV{YjZDOUukY>bYEXCaCvo--AltT6vf~3S6t$Y;wESfPOn(0sf3IQT3t6JbRqH2!Dk-?&k2>Jz%QC +Y){CMP36ruRdVBu-^xb(#l53XS#0kx^=DVn?qOSD3YFqI9s+n{C%h_@K?8Wi3mnW}(3dvEv4arHxN?M +6BB(G?J#34B?DlT#g4BxU}YnCT$q`5^g&*P39%}^|pk{4C1b~WNlf3fL^z-K_Dvr<$d5!px)BpC(HZ| +!E^)OpUzaYHoGZ158V!4WCUI9ZC4RM*T^Q>ms#KsU0JQnne0v8U+(&27oD;Z6 +-XjTNZa8JfzDGmuxvZ^j~Ek`D3I$q+!+I^nV!ffjl$Nobyn3ZH8~MT%TeTnlkSjFYwAr9F%1ymCFu_bPCNgy90(Aa;BOoB$^dd6N+>>sbv|9I;)^ +lfn)_}7;g5YG5m1_)Fuq_c~%E~s@=nW%cNsi7=)Ouik(3@DnntZ`CUTq^!5s|wASlj(`m{4Kj%-f7lX +f+B{_IpcG7l0j;$lApy8umegBWwvsBPJ(+e>7D=sBGy@eNvoUAml@)JqM;8&C^0dbU= +;8uTEUR4A2WQY4GuTk@jt((~K&C}bSoiXvXWXC~E_PgESyBrv47e6g96~O+6cKV8LosBNwkD6y`EK@G +4ZuIaxzvdF%MUv^V&Xeifp=fjeoYXl6r$MMRYF5^J$k!koR2gO)Q6h@%Si1?B&f +lU{I1EH}k%Aq^9>v7uYPtlxHA%w`$OUfDr-Er{Y*wQ@1vTCjZ0Cp +_d;v2xxXjfV>6@5VVc* +jsa;(rXc|pWBGc-1T-uQmhdHqCy@0i5M}^NYo?xS2f(GkLLyru$Os_HM53_E(fk$6$%)<&!3`Nf-ss| +i=2(S`tgaYYvr^(@vFwPZ<#(+I7BcmE#3e8oTVkg?RWM2ZN3)u#OfwE}f+VY2D*SJ@6d3CPpV$aGv+P +Ze;F@G&sap}-31~_+qZz;kV%+j}Y&p@K9+CIpp%iorN(9Ho1ilhEc>j`rRH^=K3viW_@1lQok~?`T$c +7m%xpjhsO2v$>1y8Y1g8FMEVb2Ne@#kpW*dfoZdR%1f3&C%C;^S!=u#W_RjZT_BhRyU*@ipem)P%;C@n-BvN^Pb!oH$Lu3Z>I%DoeTikD?r7p +3KU45Yy7IP+slBT})H~1D;)V@q9(3O2*U{8@Zw>-tZ<43Nqcr7uQyN8CUX`3lTdg1F*C-cPpMuxB$;~ +_@KeYNLTH*4?xq*%@zrNnRHWrsL*wT`yx_F=V2CV`?Yvcn!={L;g*=%=#IPzROYRwCiIv@;#o$}f<9= +0p)->!_F!8{2&4bMe4CHq1_S3gm9EwCqb=U(2kkLqg#$c<{84PZxnz^c8+z({VP(y;^n%0u+MF>RiIc +TUxC4DqR7S?Y$O@#j89s3337y)MvUE;|QHW+`IU(ow{)O@y43ZHa(-q2y^(yc@@ABj7IK6OHyoV$L@G +Q>`Xh*eIY4LDA=%9wrE^lGZK2~Oqma0nR8FWI&C6+?pP4!o&6i;p4aKK0nTa +%fh-HmEx6@=tuCh$EpygHPn`oYKFd$eEl24x}t?XA|C#*0acgYz1Jl6QNxn?ZemGZ&ami#J~tin?hxv +K%g>ObiEX8x|hxGZQiogn+Q9R2Dp_TCu +omWM*)xvI?11hx%mJSEo4*&6(2Kzh(y(;MFJeYQ^@VPzPZXFOp2~5V~6{{$8xAeA7Xz6X))u}P>?WOp +MK?!0LHz#*fvJfHzs`IjTec3j`Mx$qXGhnCr{BeY5V^4U#6!SSaS%!V7vRos&@jNgi0L%y2MBk5xcBx +L2+*(up5TM-0a<0S|j0nxJt0K=^-d{6dpfZ&rQ|#UE3r +N`<7TmDyMwBTYSl274f{Dnpt*ciX&ad%E)HM8%W+AO7C4eL_0>pRB#r@#YpZUCRnfW|ad6+`OWGaJ(= +!?L?FdCpDN4}^XOMy26ZB^FQ^)~blZX2|q@JXp={x5W&de#m4rUfi(8iD@9N!Vv`5DN$9bj$>EIwSs^&*2c9-U2z*!!HAyLvVGV+wMZ>Q|)r +b&Gb*kdm*y7ojv%dnf?yocq`m48CLP^BSZ-Th6izd!0NTn`Az`S+cfRLeBRN}d|!2Pl4E0(s4XjCS?< +H9!RX%r5Ub9>{%C4}-#z?Lo5Np2rt?D~I}ZoYaD(vgach3ERfh*@1bdMcqp6;ZB|8_j%=AxJl~s}ko< +tO!`Ru?#1G=-|)~X-y3$KIR62zdB?t2F!GK$|nz8IjL?E|B`f#scWv7-wI6gy8I3K0i^xIcIsT-;H;G +Uztc6@fp0tCN#P*l$hGAKmmcmiRJ#&mpJ$Q?x!_TL0DreGN^JmHk@}^hJ80CT@4OK|Wx4Ez$4U2DRw* +*YAW5Vd+=V40Tigx3=i(Xp6dl@SvTMWj@dx`Cz3|#BXShJZ`#Cx_5Kr@%ri-rQ0LtU$9qFcRjy~MoCF +Jc<6h#cE*w8LD~i-*Kg<{_Lc00q;#p_ke57bst>c+diH-4ux_@rA{b!o;*M(4+o^PkD= +S)A<-{i47>uO>;_+)d!+8=QLyo+AU^x$?9J)V$Is5=7pJE$-^Neho&5KC{PgJA%j4J2LE`>Bm(Q(b0i +}DlP4-@IF&FG4EA;)u-faK2fhX_9fUsK3`0VKXg}VOb-E(Q{Jk=nW7q_BwbD3lNys_O_y<$?OzUWHNJ +TK}>X-caZG@`$J_Gq2gaoTC2ev4~dL81-RNQ4x@B*a_t(3;J@oA@QfBfJ{YzG{N6f;l%p{1tIeLoZ197&@PikZyLX-j2|d@Cd4KgMbkwX +W%9;C~Qfnu3=UW@f_eSt`)yo3FkAu2>cOn?L+M;iN4!&T~^003)Kw1d)u9k}?`gSii@b1%~=60?>tZ4 +J*%&eW(1R29?t^20BuldaSK(c=lI?$|#4@0)ysWs(r=B1q7dUId%Y3G`0v31&Df-esZylA61>BNK6F9 +Q8Xyrx-jIr=|PO9KQH0000800Wn#TmS$700IC20000003-ka0B~t=FJE?LZe(wAFK~Hqa&Ky7V{~6=Z +*OaJFK~G-ba`-PWCH+DO9KQH0000800Wn#T(V}rKNkT204)Ll05bpp0B~t=FJE?LZe(wAFK~Hqa&Ky7 +V{~6=Z*OaJFJEbHUvP47V`X!5FJE72ZfSI1UoLQYolvn(#4rrq^A%QDt`h3Pf^K7AXSh8|THn>s)=}& +L`Fqm#s1CtIlp%KB^Lx+M+S5P+^?HyTqVL}P1tDPPvmoez&{M)rIh6&)Gf0s(dL7`*2^`HXChkybvlw +%#gqt}sa2|UQ^#!~DPEprKWDyEu6=3l1OcgTto>n>;@ +TT2vT5WS1w-Nr%UxA({W74J0dHK+cT4qME<=RdBGO|3GR8h|-5)@${57z^ZGNb +W-@9yIDUPwu{o9Wb(iAdgJvDkg~!7dI-lANxDV)$RVk?;8e{<55@=Ax?QoGZn&Wb?czm|k&q(THNfF7 +o+%UM|>5%J(WAjh<=7KU93K)#2!XJ(BBn4o?eFa+cSZ>W~DpGGFs4o6Azyvd9*q2HE3sBWhW$d8yeZu +SI@Qa8SbNU-s(PS0^w3as22sd;0R_Pp`8d-#q*IarWcUqo0mnJf6XrdYe{Kl=@J?>^nyp`Rvuv>C;)2 +>y=_-#jCu|HLUhZ=oOPHr3bv4fKic&4@FruI(?^PiB=u3>*W0vt|>WW*J+x5{5Tq&aMcuM>G4R}XgAc +3thsLLGTY<@jK;yEBuPeMUCCNAlCz(s3ZKX@_qFEklUg-e6#m=RkI;2K=NO>TvX*OhS;z}!AK_>7tNE +c2{*n2Ut>vOAct<8(=kpcBvfeuBS76c;Q7(9GM6H$X@jHnSQmn!cqtQJ^2wRGRBh2cC9sbp{Vu8ll`jD}O0p{s%0xLYngs_@p?QXG8&60_&GUu(PG&h}X|)BAjuw0w50V$}r +VP!VvIh@LP$vd?1`-u7$L4Wzl}s5g=W-#+%UROs<-zyK1Q)S%P-PUqbkVFUqj(u|IK0s+=;wNHUlo(rYGS^Jln6a6 +5d)<&Gra)sQ)31j>NpF=jm19ZR=xDF@U=K;@WH!j>uc9!mchqd|77AP69Y-S@d4r{`kBjYjheLhBuQP +O_RC?{u_o!roDddc-T*-Ma#v6EM=foB7QVlGb3X%x^$W?-C68Ki-;fLFi|wH6qmadHTAkT}F9HZ^$h9 +_$OMf#`_xK-b)Zk^!&6E+cEf6ytI&ppr&3e{{SeWselC53Ji;6xpaNL<=>U}b?i-tWbEEIeMR><5@Y5VF}b5;?AGS%=YUbqS- +F$)i>hUpobVsy`-yH!vNB7y^_;iJUHFz0P$8(~c)0OfHsTZjdAL%rLN6GB^?I#w1OmvXTS3?3QB0 +K&nH0+%DGAggL#;Q-mxOkS0#bIMM}ijf|^8IQ#Lh1}HPkNE4bpivWv+B#x~)*75j6p{6Y#5|EYp1|cS +!HXGId3HU^rYKB7=@>`DUdwftkO91)2t)2hv{8AFop1<=ETftT{EO4E5?BR7;b3!-FxoJR*zDP5DIwAl;t9wk?g4|0e<6>MUg$GYd!u-pz=3WwR1Q&$zzg8GfUPt*C%6U2&U)dT#Ev0FfG0 +GU=60jmY&I0LuIG;Cb6GEF-;@MnR5)z``uUsJr|g2aP#tGp+EIB59^$|)umDq?0L>SsFtPL&iczZhh} +Lp8FF43@OF)y3Bk9Bp#H?MDaLyPlmIA)Bwb4O!;Fo;o3if#w +|<}p{X!^Ri;D)6LRs`9>A+6Y1-tR#V_xK2EPcpfhwRl>uK=~*rGH@y$xT`9SSu>>fvy(0&Rfd5jewPL +v3MMrW}rAF+C!PBM`)?ErbAHrqti#`;rJ%-MxO1@mkzkiIn4fbC3yz*8m@#dvL(+!A6HSibz){f@D-p +9h#e|*(#M=M^9tPNU=6k#icx{xj?;ivm6yt(^wez$m4wO^&;w0y(GbbsH$@;{2#v71A1EIGy8N2;ibZ +>QU#C7~_&5$a$P@WtXz{%aL!q|9$r={}?4lI=(v{P9lJW}Rl^!VATF& +v3?`r}lf-Mdph**eUy8^Rct*4{$RUSg`43j`DgyHVuz^>Kcaj3ukViCV_>9+_uEEmD +pSx1L~oes$`=TG!PUFa00u4hJ=LjjT8&JEPw!;uV7OKjaHxYeu*U%&e< +qiZ9$b-E2@BO2G+dbo4nNKP-#_USgqRg1?S@!zPDbLbw!3LNkgL$L3I#kLwD-wZSsRg-XiNf!TrIB=Q +-!Lxd&yaqt6{#=$abJ#LvpYk%#mjl8JZW-_J?Lo{6+1GNEJafL*t+ZFuf*s5e~g^l4%!*SwXtPq7Z`+ +&0xdFXi07FG7E#(JxPrkAJ2^!PD&d(aBH8C*X{vduVv{^U3ki<6o^DjY(W7js-ilLm9p)P-9%y@1ly5 +b^&=OmZr>3QT%|qr=={+i4SqC+xz}0swbc)bs5pBhTZ9vNiLcvMfYKmK90)ZH4LeFy3X}{HLjDhe?9! +|xAQ+A*uTF8BOWHE<8JlW>ki^VIUPg=z86qE*JCvuQ0kAj$H@yhu=J&D%7s}AEIskv&3+)=88;ym$9T +#)H+{Kp3aMGN?zipF6US!ga5|RlzeIFBX~c>ob-!=@eS&10>1bAnpLxAx`cfNvV?%huVvlxHd@VJI>p +qAl`1a=_?u;rtmc)|^*#IZ6^ZGpoAj}3%B~xbX#_8e!OoFY}`ms|*uYhoc!3du#NbudnLD7Ii{FZVPF +NlU|t%s~x^YsN36*I4{wg3BH&%Qo)N4yV{34C*4qpmwI@GaMt_6xnU)CfR&wBi;WE^n;{0twWsP3_*x +^xW`YO>L8}QSn&T){9r)UZGGG!gt_rmPb!%=B#xIKz>rB$aGPJ11_Nx-|uy4A*XI+ibs9pAJJ +oYj0e^mw&j7C@iTmwdtz(5-s?&&Kp#Tz@LI?}+b6oT~Ouf!qxzj0#JD|KIalTHb&8V9~zQe%!3r+fdU +FTwZx0A=w~{)Jir`D)S9wm_aipVK^|NH@;Tw-=%(2`qvRJD-M~tL;VwJUyx&v@P#9l=FX=ykzzy2_Pt +^DcL=(#lXqR?2~26AMgPB5`>|&yB_-{`@Ge-f0c>;5EzOI;9W_ZsP4S6F~Uwedv +Wyq_%*Ef+PG|AA|~cAIJv2maB>4b-Edrgiy6A2!@urJ-S)`VPXllH;L%45!F3K*we`C#Yw-nbUSDn|> +~HM52+i;_|A3v(3(gm6@7-2gJIB|&oYu2%40S}(@zZa^3p+oUuJ@EIgm%cNH|6_MUK#c|WM8R-eHBzp +Tp@hI*V0~`vR#jdwCSb&Z3KTlUCE*d_v0+2tvcIr;}ojG`zh4I5=(i#hPv_1{y>M7QPrJgzCI*5Sgf< +7y;K@o(;CJoY1d^r9^0k7P~*v&U-)?t$mlXJ9qIU+nAB56k$_AMSAG+B1q#1plEz*qO~}XO&>YgjsMh +6PEZ#o$*~O_ji>1%)4Z!h(2f@fQcg^^`MJxU526#5Whh`|H<2jn)v~Ku-l&29A;(@CNWZkQHx@BSI<9 +nOd#vP2c)6m$RpKPg}J3bxXH6J@6aWAK2mk|@q+F8bpUdD4005pR000~S003}la4%nWWo~3| +axZdaadl;LbaO9ENkc_WQ$^icTXWks7JkpKz-VS?>={N$yY23_eNtnmRX3G0lD(NeLL?|*LlP`NTGsy +hJr~?4$xillJ(<>`iGzc4`ObF^^h$i`XVJ@Yufzvks?MobFTD9LWt}#i_;&ub5WmT8l=djTef##iXBX +{7Z=ugzPF&ny%tiqBd5HP8Gtc-kNGG@ +p0ir;k%V~gVoy+p9|?kg#52N*3}B$hT(P?Zpqm)bK&Wd!`&))eWb58GEK!Y5JqpyZs={p;K0X +O0ZB5M;_g?dRoOS~2Y9AYjv-m9Vhe(M#SAnF4Aj8*xjb&y*NDJRoVWge*x)&;rZ=?|Lx?UhoQ +P<#=l_=wMA#2x(RL(2&vvo(7+eT?NZZ)3&DblKhL}pocxn;SJ~Fy|JW6Kib|v#3ZXmhX)_cyp$Oo#fd +9@%}dQe*#g{W!Aq!w?)djY3`Ud^oR05#Df}n0fEBImmDW5x&~|Z%9bel>if5Uxu)$5n1>A?1dW3m!0PA&aFbOoNCc5v)qxR84X&I>&-6?#|HF(ka +RqDfH#@t|y$=7-CXc!rQI-{Xe0Txs3AEJ?6#>0l?HmO>#Th37x#cX>Hn3X>DG2G+o<>@4RjsUr<@DE@ +EdCj{XicTzXp*ujI9PXOGmfwOl{q@W*m5JJ32L2t-Ba@J$&4ik>w7V=bg$^N_e=dO$DZE1uttds~iTbEo7mftru|x2T)J4?O|tF2+$5;&I|F)Mc*sf` +3aJ#F^B79g&Sq{BUtfK2{eeCokjreaoGm`^j;F%ASk|-4xQIgDpt4$Mn6OkV-;>i?!sI+>~*=%zyO>z +Kn;M*wCYilD=~_}G(Jy+0t*`(K7k1D<~*CcFsyRQL8OrNC2VFIN(xw}ce;aJ&V7E4#{sA6N%|M!)O_B +07|q^yB;HpIt6HgJeyUztiWIa99ivrNHAl#U?lT!~3(lUtkvGMpwyDXs5xYWFh;z;>A)Fu`AyL{w19N5p{!$8=#aREh|}(3b~^jRO@mGhnhPo +EFmS;NdE@AA1fcTmB_VnqZb*BOrjvOHrfq1ZaF%t^0Z@1c$aYJ-1dOmCBJ)r9#Y%d=bvAm!V_0guTk>^1XPz}H@{}&L&*nu4raljL0&k6} +g^|b7CK{yb1xW3wg`b_es%K0r0=!#J5=3-f+|6?!Y0I4vhqf-XGV-@61;-3lReB*wV3R +dLS);RZ?42H)j&4~PoKZEC`Xyn0-dcdPLYR5$YEEbecoZti%UjjI)39PvDt#*=ACg&W(v4THZVyYm9s +n|3U17!-$sLzzpXrvtTB`>flt`3-@=)Djt(gng+!NU-I(YhcF`^1W&;Jdk4t9&vvr>$FgOvrYMLV$xh +aGMDpy}+mi=3iArN1h5b7Zbu5Muv=6$&IN|QmW!odf#gI +ms*t+k?7>eagcP_J?tr{S~iolz*7M{8T(CGAV*~W3h6c7bwSgMYNkM06tu~NvJii}K9hz=>;{MmQ}aY +3I`NX4JT+!#HB3{tK#L};PP;4#shoN;zYg^N#eUaF@?tF95WqW^v4hpwKj?(UcGZfB5uPXpN-)6VaKl +snre&#nvtE@aA?WyxQesL*;!@S&`z$4o(|E}9iVN#dM06XQXRkbw_EM<~9=u9=w27QSd#3O10@DCw}B +%BS>xNy=6rMzHCRK}{KSOtwxInnaa*QHP&$FrNfjp4Za>l+bm;87!H*Q~}TB8(W-PSq83`O}Tt;aKTF +TNv05ifDVwI1p;mL8V`AlzUgp22Mse43nifmz29>ehWK@E=FHzj9=Mf`Lq6ysQuB%oWvY(PEkdm0WHu +kmhO8?5-D1C!M`R`?sO~NFHJMPb^&L1OKNIy+INqo#)m38~XzL_m0cT!$A)?C-r}N(QddE=m4@|908R#9nJZ9;KS!=Ij^s45)(OkKz~Iwp@4}T4i^=YaOnpI{BBf1D& +EoNyRwSR!#Z)4BxOFzoOA4IbR!ypKWZgJRCMu0_G#SgpPUWN%m^kEnYIgih0Qahi1-iL-=%9)^a+-RA +jY^H}FG=$Fx6P-||4VD;X%?xO1q_Q|>RN@{M_#`&11^fUH&kD +?hMO`>+a0xcSVl-SH$pjZs#1IrglUku#Bapxf(N8v#n=+UUE7TQ-2B$4*{x*&;C(gabxfVeFY_So`%}o5f*eo}} +xSy8yzurCEi%*O7da=4+-fqO*I=_~`doLENKg2(ms~ey@ns0!ga60PJNi^X~m5oVL2GN{U2An!VlS`( +ehRB{nEEw~CdH>Ke%hvoer6hiNp_p93te|=!#Wqe$$!C? +;{7HjeGVg2!LbIaA1Zwni|SpfZe*i_T41KrGUS2zt9@SHWh)kx3jz%@h{zC!Vr5I38b^0d)8;6!-b0N +2_PvO81i*d{Zm`+HWJ#^x8T=glm~-aqE>IhYg|eb92N8@fDSV&xS;f4YJ6U>WeJpr$-Z-wdd}oeTJl1NwH9l> +0$(m!tn3138&O0;1)qG-b_2Qj)&f+I2eaW&`$?(UPc_I%j!|nC28%yz5yBFjS#-v;Kg$W{4f`b5^DllAs{dAyhw#QON +vi>r0&ynJ-sY^@wzRr&~k4KPeEzYIk{}7nJe(NS`nTA)RBg=D-|E2=P{^9zazz+YCHUDNg9Z;S(~7{F +x$pYp@_GcZ$;+Ln+gkn3p0l+L5I>9)*IjscUQE5~M +)hp5H*+<1HRWFsBuh!#jTjb#3iMPo)Aqb~DT{{>J>0|XQR000O81DB*+g()u&YzF`Ur4s-EAOHXWaA| +NaUv_0~WN&gWa%FLKWpi|MFJE72ZfSI1UoLQYwOHS8+c*+_*IzNKJXiu$C3cG2!e|2Y+VtAHZdxR{?L +$#$X^FA9l|?N{CF?DEfBSxvNJ(~-z23tGNh}R#I5Xe;;Lt}zlx4vY(Q%f=cy52G`=3#EY(KDkOc9=OGdu>Uy@f-nq&EB;%&v6D!5kF8I&XPcSeGO|0rf%1$JqdnJtF6^V*I?94`1 +3EfIXn`R5v6&KZ7r@`Nu7CHUn;)WW{)_fTRFy;LGoW!=4%8+szJXz6MPfOR_M6-=CwO$?{-{0S-b*m? +pYCVg4iBubA8lB~`;Fh>JIq_?&S!Y>mKh;XE729rM8I`PBH!x^s%~xqIE4X5;+>L5@5Tt2JaOT7N>zl +#mn(a!-3Yb`k+(cjaZhkhqV`anVvxM-vaIcGzd1HrasYf2!&y{H1IkqdaWAXw8t2s`7#WW2EG7Zzbh|Ca1+_$>%-Hk_o{aMi_p%YkA63>7Ec)HZUwpeLj`r +(b&SSS@}@>2*_hb6#6tv}f?8@ru_FAkkG*n9bsB&ylkU;umyA;P*Pn(R}`jUn`Fea<^vMF+z)5;DJ=M1_?hU4e& +$Nt?mQFfteP2=6iTuzks>X6Yhlv1hQNO_yar{(GA|04X +IAa%YR77!dgO;6HALeJ?L9!?JNh)xqii&(_;{EVUr3$Q@ZvzFm6xD|3t^<8r5K^;;4IMRHJ!o4$BR!K(Kh;9tK{lhJM%aGS~9dt~U0Ft~a}A{B +qFA;O1x%*3Hw?^l7_f)NU|rY6}2b3T+XsBOsVeGK~ThJCED`Pe0pJ^Fk@91}%!4MpZ#yGE+*Q)2DetN +WrI{2SIlT!J??A*`M3+eOdHPQ0{L@(bp*r-(qCXj&f#E*QLBK*Wp1IgWFWP(ty$w(@3YN>8eb<8lZ{K#KuM;K#TI*nE7KI} +*gks;=Z}IU&0d{QDE@1Ov$I#Z0JwLZ?>9f(O<=B51Cb`EWmN;Axwig)Cx4_0o;uTw!++#jN*lj!Q^(c!B|+zHLeG>;+ +Vd0@;5coy0AsDm-8rtj{?)#J*EcO=F`w^=erp?3T#5X*m1618-_cSI#(4d)5h3guuDik%6)u$`Re`0Y +hS^(i8<1!%9%iAy=?{BoQgu*_58ki32@rcr`z%o^W9{%*QJ~U&>MG}k*0waJpHIRG8We)W{irkoKX1Y +#dU_jgbBTdT|6Gd4`GWRJsX9+jO +9=v1d0RDJiU5j=)zcLW`cisC^rY0?|npdYVL4+0Zt&WrTHt)WNq;XPsEe$e+J4W5$UiV{f_g<_5Vz!A +5p9*oHu-3NyyYf59wW^Jovg90tlVo=}gPKtuUOW6}|Wm6U5(DnS~#|d{%_?_I^B`$AoI(dKf>9Yd80v +BdGxZ4_XtK*0{#;&tw8EbH9ROspZ?|h4%Fi=;GD2w4WXJ7c}&EEzGQo(huM2qo2bl1UwV1y}0uL#fZG +8{HR?7YCu)mvZi5~E6Diz=ZFE~p8~E~0K6!Uyi^_}}24yUIR#OYE?CDRFzvhofmsyuoEiVyl++8X5MJ +Ecjk0w>R*S+&{11U%uk@%Z?H83Wo0O@6aWAK2mk|@q+IZR|J4Km006TA001KZ00 +3}la4%nWWo~3|axZdaadl;LbaO9XUv_13b7^mGUtcb8d1a4JOT$1A#qaqPLwe9lrkmtY5d_6c!Ap^PD +)7nHNrQe!j1L>f2B~apPZ|1=Sd9l($1o +lB%-8_Ec5y0I8-AN5-1e+bx+!i_r=tW4JllPDxmAw;R|i4Qn@WX)v%(_mSzW9nJl6d0B*-cxyXqRbx= +7zl#vShh8x$`G=L|;fsvK_pVu;1x5q=Ae1`aqAzNa+Bf(uV-{q9JMKFFu +XD=_o6Zg{V>ENsB{gWB7a-;or4}ALk7_SFDOV*u62v@_o5t5S=vn0Z>Z=1QY-O00;mBm!w>ondF~{0s +sKs1poji0001RX>c!Jc4cm4Z*nhkWpQ<7b98erUukZ1WpZv|Y+rSBX>4;YaCwbXU2oGc6n*!vxXM$Cs +yy%*X%B@4sKj7uJ0w`w%uQ|=Lt+QpSr-lX?OZ!a*Nt`}4@qpFbMCi;AYdAQHfXGgQXwsB$;-5{qBQK! +lZUYjt?opQ2Hdf*Eo>W^S)rr>TW||pBV@E{D$HTfDqGmJFz;=!T_Lgpa;#D2pd{eE)mR~+wzzXEPl5u +=8nuDYGz8~{bgP=%5evv+CaPL#3mO^QYE?nhokG9AX+&v-OpVoyrC%l=XVdgUGMOgx^wZ=#N#{xW=Ib +(nGg9zWQDUe!!TM?)ugtZ3>y^BIwfYu}PVg7Y`7`?euxWAmg89|rYCUj&tzY6FGk=854v4eqWchi%=& +9k!u*PuO=IEGUAIk|vcY0FN9gf&PlBD*)fSyfj(Zq1V=-6YZ$VU+_6!x1jmg5$zN+q}A4qZo+ +X^GHzGi-J;gD=2oG;-`0y8@}tos7hc%yQjEuq*_bGj7rhOcrlvGiaoD%Bqs)icIL8Fc=Nd_^;T4FhUy +3Wrq6{9860ey?az+sSF*)Z(?ci_;KWY#c=SS`p!YRtT<#}ghmR7ONB{&vcsmY#$(c_Nb_F_iO$y^zps +F#OMhH$#MxC|>MD^-xvf=M?ftd=+1oo`rWVYi#dLsmcl&eLZ7I~HI4PY*N>4snxRkD@!+Wf4F#g(dscp&oPFLEM&`1dDI&A +a+`o9371*NrT5_*w1kt;%8}w&^yRU8{Uqlu1)&SvvnNQ6Cm+OJfS%X}BlgbC?yCTD~cY?5He@a?B5Th +Ue)<6;18EcvUPU0{N578s$CzS$;TGb$RPOdaZ5_?LxihZ_1)B7Qt|*N-pEEP8DD{ugox``>gH9^Yb^< +PsmEl?63QPIL@zSmM(vUxhVz{Jh=}jSn`KkHy!u$K0waSUO5ovM?Ziq?C3`3@)9O*rU8$B=0{_(#YxP +t`wY7D!)fX?GXV4+;SBWGGubTE-8ye&S*g#Dm6S+FrV|mBrs_mC_1e6c&1ID?X834U)fx}UqSycfnKs +Y_c(DY=7z-GJCSV&DSE;hNRUd$%7xhd(p4G+d7ioa@a!wa@hn&OD0=fwv5hc7meHA=BTddVa29InLM> +-Mbm+JSOr~D~x|&7ZlnynAfW%{HkXLD)UaObsqSkG3w^}H9dGy1<+gIna!-Lt2x +36EmI-0#XIRBAna;a+GE<9%Y!yk_he>#5sM{k*}U48>tl%- +l~^#mZyPQ5ufdG+EI3?ZiC2blpO_;1dR|K|u^JbhxHo*tc_9v_{-!zV$@+4=F$M<;L3;l=9$6yDw*Vr +8aLJk#2ChNuQ+V`|Y4Ct}c=-+=e>T9xVQ7GBRmaEbpFK%DR|g4YceS*mgXs!9Y>H``3TgGOU)`M#@zC +lqm1ClBHMNIZTn2E!!~I0MlrKFDw1k45L>(ST9DE?{Y}0J*7P{U1Nsv1YvY-b0i@ON$Ob54iOiSI=Yt=&EyTL-zCRc;^Ffuo{ja4wkzOFMEsNFkkXVy +lo>@R~8kJJz`xCo@HU}fIwz2-nMNSGsmHejZ5|J_JTr{dYJ+2cG`X{LBquIIZa@B4dQsoU;OPv7rA+X +Hd1SQI4+VzgX~rWDI!0V3>137G+%p;23sRa;SxeOX3S72lKkDq?hatSnG?vFn9XAQD#k;$qOFF-XOu=&rJ1Y7! +ny2+_HUtf}@+cp~JaThl-;Z1$(80^0YY834MuZZZDY=;v!ve*zNianc9cz-Go|g^$K;-J@s5U{%&@Y1 +PO$26p2IEz2)gg-cFQ9T0G&BH7l{FyDi#-csLb!8M9#JzP%uO!ZP`__Iczz+~3JDPw4KQ0Ed9f2QEXX +dC*+~3(t$+?oB2IcsWU0p{->nOf#!~?4M>-UX-!HPfdTPf>k$Am0ZlJuEn&jYQi;p-8YkXt$7 +m-@vC0Yw8-#|tn3QTYxfp5(&WqjiU8UeFD!p=JhetzfP=w4u!o-pSFfGO5 +ftWY>5*%>&2?D6SFjoHFvOqDDpn44CeVu}-h&Hf4BLp-@7am4d%ZMg4R|GJTboFzx1n@C9DLBFHHlr^ +dxg|aqwXD9^MGXdI20{xca>+iNu8vrb_NOj+R^K4r`$_^kmp55Mu +Kt&FaUnUD(>lFyaMcHt!ja1hI^ieyMU*%Iq<3EsR^P7 +1Rn|IERH?-fZU3u~->Yc@ZD#!mF2{yOIdnMt-Q$Ull`wAL*vqco4n8ND|3wL^Z7ky9e-~_YA#hqULUJ +`n6CJS<=FGT4r4|*;2?F$ZQKzAIJ*T3*s3mAG;PgGr&rM8efW+ug^ey7FW#{v?fQeoc-uc9<3n{Ek?| +ZMXt1zH4!=#J|I^~#;#>$p>4oTL*GnHaVG{P}Y;QGNqmBoa?=HUmN|tJw@jdFKSA2Xf$9cd*t~dg(uzwfQxEso5`nK{(Wp-**^tp5_u8Rj0U6K~u&`-bxCP4>|It`zU$#`KSbY%O)o<<*pgyKIS(0wW +y1(;2ESDi;~UvNOvggoi}XU%HcIid`7qg#)FaWKZ1xq9m0jeM +%SR5iGwwTfK~?cIDtR+?b=4ZjT8oxrbSa%@K=F7P+17hZ?qzEA!@RX7lOBJj%_?}0d!`NJASH(7C@eC +3jS%!k2_J!He$9|v^yLi#4(1HIE;Xq)mZQe<*7UxKaO@_g80a*M52ut~v?fX!;=q;9o +E>CAs^4tmN;e7{qdJ->*(-LE$WJz(F$7WBYrgW&~9BEm%uW?QLLXqbVmC9lCi3K_7_Gl6y!3!2Erj2{ +{rkv>zG*o{+9g?!h-C@Lubg~_Rd_vTBRv9Q_!#xS4?;o04~Tuxz`x{nOI-EvysnPsU{4o%>y!-v?$Zi +cii$F{qn=e2C~USB%lq;y1Gg0^>9EbwLwcKA{kI5mb@Lp(lkyF4hib$zB7Y&aV{O5-Ot={8yA)|-ycNyp0ODADNOzVeVzB6Ib!JW4y7=0T2`sc)c+Zfk~@*; +tl7vV_j(Ai>C#$e+49Lf&`_@6j)C)**<V&(rz0dib*M;x5z+HH)bWU_XObqvvfSSRAp*a{{_p(W_1 +Z4{|U0;?2J%XGxk}amPCK1nhqv}0qL&3hL)z1Fig)BSa;WqlYZS^4qLLZvfqj)@y)SsMDbUqe__*o4O +Ew8Rpz%~#{lh$aO6CJ_k`#Z{nFcyOzU@6y}5G75-M>Driar;rYR%E(lSLr|(X2LB04n#0?o#QvzcW4? +kj5SreE9UsSddEF`mgA}!`etTRr8~wCDL!RkKIuY`Uob$G0>NR$)#SGfd=V)_a#t%y-IG +;bX1qS#}wG9o87uXh~I7Z9cG61LI&7!nq=cBb}p(qaLCTrkH0_&3HEu<2P$q +45r6QB`aTp+qHRJ*x{qdD82^Psjw!-_42b`w5O})+M!H8_eGFD&L2|_6uJVWs@U);4S?LSVWt*{W*xuw+z +R$#BPY!?ZA(nolRZL|wn$>>yn!8Xa+I^czVk+vR~>@YMoWJJvF<>z=$PMHQQ!xw+$`E*In2g`sIGOmD +Ue5FdPwCm&Jx$QHpO3^=PI?j;jBlovTl|jNu_Ge+As0TCe0NI1iK0j=2~Fvs_2vt`Eb5pr}YGf8qH!| +xjg|5R>{6isWNf`DfNvS(Z${{s7=N?Y#=COcm{f-QgtE@K#8o}ybxhGWm@y0fr?3NRiMM7>mpkVgmJ* +JmQ-Lu!FTBlCRZvnakG7d6$TdIw}Ms%L;Fili4Mi-YJw}_C+v$R7qY7J|ufm`Td1*PE|S5d+)lt +4E{c?$%xC@%B#SLIjl0Y6Q)w-ZbqPA&qM1&~sp#=Akg%#BN>#BOL06cSW>?S!NOuidV0Y_UhRuLhXRZ +X{3>F9$18VssA-7OBdQ;~jufh4m;@3`U@B0kDHy75 +d_rHxWTDXm3rfeCkX#K5$vFTAQFNIuCQ4)gOQVpi+A8zK`H1u!wNH%x +S2F9{I7me*;~l>POwfu21NMYW<3kg10as*tSEw_vF(v=geq&|j^I$j3yImR7jviHHTjz92dl^tX|+uZ +fO@G3X#t)*T&-4D8rBzgI0O6;;K>@0iKJszr`wiJ?rc5(&a?1IrtkXe=uYvp6FUv8Fx>9=ZjQhsiit7 +wCf#HTzRS8U|7v5#~ZjBr`yDXDYvhUeCgKsqZZFh#C|<36lgUBt6eVC#!-s2X4Ijrf|v-jJkvfe3h0J +34fdbRqlHNA#_!-AdMovE0;+|vm(tGSwm*HJ_#UfnLn4);h8BMEP!UjWkuS-mh%E|CpVlmVW-qn*UJ` +I?@^~t%WoWIlRZZq{Rz*g#66nTS!E&iSd@M_f3JOM%JyYfJUz_u8iN_}h+JvZfkVSrx$DMFx6r!W^>3 +6#=#{be@Y{6^gNw(jHpA~0$=_6phLW>I*k74rh?xA2Qq&a9_X*N3EujB4LYnuiF+_K7dEE}N1YJ!E-u +WjeojOGYXW*y7u~q-jpXFg^@Y>U>=F@j7$z)#dXF32j@pGC*m +y~!_@2EpkD<7?&336gR|+WfE8ReqiXRC$I3qx1dYV{sg1d(=ZC|FSUHyHjFWe +2uW0H&{Nw)n(eai{ZQ2NrpctNIqyW@u#^P1tBhlf3Cz_qA%g?x0}IJunG=328Z|>_LlUF7R{>Yz-iHs +X(YM$ovIcVI{8%DmaaWOB+T^c8NG-58dAokMufVa@zLsb-G1 +gY0js)xM#I{cV$F`~UHuPoEI<4W8ays#>Pt5r@!5p{jeS(E|(qGh^JZ#5CVJwSB1Nf7ftb-T$FA9AeS +l&w!t=)=zv^-MdUl3Sxg#3=C^$K5=5Rp0^y(@Hf2ds_OX +c-Qa9tgn`&CzYJ?*fn4k-4T^&nlUxguHYh0l6j}P{^<}o&aFiQ_}R9oI(7MpO^qJ5@=%UumDi!<-Cfw +qfo7(T$|$((Kjt2wu8BATS!HuB2Q{3=ECTIFB?9CIXOqbfYWhkWG)2lBjOMA6U=j}84b{S7WRWk;$oT0KYQ7$7cX$czSzfHB~b@L;Gaz@4AGc#AdZOFp!SAes4sw}* +_uE5zfq7SXBO5Ls2X156;Nbq!VnKxOwfyV=}zdsmFQ1rhn@W>g~_#?lxOI;lB)nNZ4l~-a=W;=Yi|8V +qa&`Roequi7iMN5q05{xo;A69t5P+J4oL_P{Lxm?;RhL$kvxX}t|5%c~in@#lvTPWtNy%!bZjH|eQmO +NqAfM>HUBv{xQd1~&R;+{8TH)LwXmvQJcm2RdlrNLZ{5fUzX^7RqK|2MJ>V{x#DX8$@o9dp110msK%Y +@r9|1NoMe;iy|P(=m5TY~kqw@3>N5>^hXFWE$FO(<<=4{MLrBgK(`=j;zRei(xfa73V{YPrH#iTWJ$| +TttC|1)c+2l$c+pdV<{EMxa$LxGsD)U*>3HVA>WKfyl?qEp=Jm!;{yqj}FhBGAEV%PfUy6@hTKYdaqa +>yA|q)!7d*dH@uUOT(OsTc=vt>i~_N)d$wY(JjlBN*{6>W07_A&zmfw;7gx1zqa4N)h{df2`uqJ(zu) +il1@}7%cM*@hmX&v?je~D<^HZ>dzfbDEy|91io1gAhjO%n#JI&+!^PkHH$FZ8e)Uf_vONpqsKT6@m*F +Aq}Dkt>G{o`$Xuq|*_f&*?Xqn!Htu6E>PheP>>Y>N*&QeIlj@_*qgBXc{MT8rSWY?(!M__)0#UI5XV7 +V9RzqR-4Iyf$ +pF<1(u4p40rvaEL{u4TIQ4+B)BtJ`rFxwZY+8y%I*p5i~PEQ<={LEI^5ojxnYT6;3uo7C|wSWv;Y*ilPo{IpD1W5R2$C2 +wYo7&5u{SQ+4)F=74i8&G6BKEi;7#>svs_m!fJ*FZ+BH<2E8nCb3wp6gq%bB(}`kHY){pVVlOPt!bA; +m3siXQxEK{3_;_Z~OaOf?Me;5TQEMkL(JvP-xXS1)_91yQ`(~gp5mYT>0ZP}OXli$3p_tZH0yC6Fl!#4bqal*gs(K|}e>JH;{ov)6 +5%iM*>^%E+2j&}ig++mOMcbu)Kk7u8Ot3H*!G0-{748hdAi~MnN{3MCYzR-DT&{&)nnBb7`jC_ZI$?E{kj0`%Nl1~>3Zf(v#zb*&2cC +z;UQAB$(Wn$!Deg> +(^6#ey_gf<&o_j0@po0NP^73o6mu4FG@G5nk>A#+Sxd^92Zbj}T}r$yoP&1Y-n|t1rU#D`%`v~v>NxH +dBFA2|MdztkWa5~PF?oM)ZE?8%5yu0caI7WB5sU)Iqgf~f4Oohudd$Hj-vQ +fxR`UI-(T@u6H2k;VtkI8SWe-I8Zzj;gXPkw=WWuTVD><~q_iFvkUV3<{Aa +(GUcOctK>cLyu>qaS_FRl3ln=@FonYb%j&G=2ek;R#yh^jj#8WbfL&wzDll)K +ZwjA7Xh|cqbX_h*yisAju?4=Iy>n^hYJ;gAp7r +V8-+uLchmvsaEwaanl>najAnYjkeO%54ZgwSp2+R?bXvnIKcFZpqU%%ZGK?7Fk*>O)CnQp+uN%LxB9@ +fH}nX0x032vu1ER6wyvx#O*9_!?_3rmrI+I++TNfoBK+0Z3qS8Xd-ls-J^Fc5zJV7T0=6!*J??`&!jK +Ti9WKNTsw1YNFHbZ#W^%z!GG#DjJS(Co265s_$rOmuuJ9O@Tq2Q0mAIuI4GT0AFCF{II92Hce-hf&WM +ZgMc`b}-O4ANk_l!C>xI!*y+@x`M!%8msfa2sZ9yiy=>sfd-^^5+1t6z8;H7xfK*Uv}ok$LypzgNUg1Zr%1rvxb%c{N+Q8S3+;4}4OD=yJ|@&s!U +I)GY(*(H>^;rbJB@;|rn^f5I3yRJ&tU@RcCq)&|HXAsK}q3+G=WC$P+Q4d8ALdX8^BS&puJ5=A83fw? +iD9f$5XK_yX_HpFzD~j@0~dEa9)f68^e_Rn=`$-N&ShuSEJHh*aIhqg +&(=Hd%cXefTQ*l|WwtftVVPpiqh#T6}Pb@&A4JUyL#TY8ZWZZjS_i0Z>Z=1QY-O00;mBm!w>1aLqh<3 +jhGRCjbB(0001RX>c!Jc4cm4Z*nhkWpQ<7b98erVRdw9E^vA68ryE$IQHFN!Brk&Pi^JWHZ6=X2AMW9 +4cewflEHRS6asD0HXB(~Nh(ez$bS2t!;3`8cAV~FxAU+LkjUb>@!WZsD2h6geJh#LDyF5Lcm5fEI-Sc +oS7ag5GGk;Sa!q-zh@LZoz%18%LNymTnbSPYm{epcBsupKI}y0IDdC?_Ugmylhsit6$ +PRgbvfnD-Rf@VZrbW4TmTChGysnk-)v^VS!_<#w|nJy*RoswS>i5vqGu^Nhvg%NItM5kb*T$2(!M3AD +?fH3B>fyj2jcNPn97Xq%LMM1=ra5Oj74p-4zWxm5N@VGIX(`znDN#ILbF2-aG9%qA2zK?)`ca8@cAI97HGG9pv1m#;+IwBoz}AKuexwARq{|5ZAB)p!GD~haZE=rz98PeF|br(|p1LW7NLr%z+;t2 +{Ar&tJlU_XCfb11mdYU{<$ET$Y)HVB&saXC9NzzUP;uTHI1y0InX$cO;5Sv~Lp0;TeQj9aUP;u06EI^#FnUJ@m*9`o +_M$O-?u4=$u_2eamNC_jL*V$kd9~l3cRXmmdtyT1GQE#C4*SC!q)!C+!+{M~pKu+=$R0Q!vGx%EBY;6 +<)iNH{S-Th;1vuQWVK(PEE>aC+!+rLRKkkvnKpoiHOa4|L8Od63VD>bQhovNyJ$I&o~zY3mr*Cpy+FG +kd&Yt`eJNt3lbPe}Wd3=mB62Ij2F?!Ou@GHWIQQ}9Ye!m0(9gsg3h1$mfBkdk0wtFpc+CCLPElBBCxH +tmy8HIi~5ekSy(r^V6}DTVAtrijd;W|w}S5f6WJ8o@+=Ui7C*;o?sgCOx5Pig|JagC52`&Ka%AYwyv&U#taOeLQi-_}SnA~OaSgP<` +a`y}#fQ6DUkvtEBaiCWfG5`Jwxi7!C_2fNGJw%uWZMF3=JKpy8*vF)DJXX8Xd@;{BCqc5Q5c3;!bPQS +U+URxg7aJ!FE+}s+sYdGO1-!tHAe2+fL^B%KX!(s4W-ScZc0~sF`YZmk`9&8?9hrDI1fW!@D2+LW)l11y9BILtg- +B`6okv;6}TP8CjNq;bi!6b@kMxb6t%+;71ks8Vy(3ltayTOLa6p@vxd8|y(l(QJYJ%KD9djtoFlCrhu +_jR*!HK==kHr;Xq--hs>S+oi;Ko$js=-q~Cp#n5K=EI?T`m&*Y=fbr>;QP4Rbk- +ykIC}s3d98kysfU28=NMXOuxc-exr{ExDTU*!QYEAhYkoJ>Q0BmA&*u<=)b`PMM9tVW%R<>heoi`Ulv +iI5E>12kqG6{YExO+#eQq?km(C=Ol*2Jj!3-`&_H2IjyQiph;tfKOiQ? +B)dxw7;r=i#NyXHmTW#wnVO +BL+vV8BxYuaEsY;ScCkd&gon`U;8{%(H^&{6lB2PB?#2key&{K42S;Q%=aV_;M3h--M1d0*TNG}7Ww; +@wQN=Vi-yy|Cdr_!>Y908=+ve^K%99b9M!(!O;qHS{d3-<+MtrgaVcq@ibeNjV1kM7hZ@OTHDdkq@Zji6Xtd4MH&k@nEkK9x3jD{gguj;e +ebn{{jXhU8zExo(_3i5}Q0b#ZJRR_{`(V2!y_&8KNBMA2G980^g4l$mSQQzEKC0ht+zrXG>C^)T&JSv +lhe*sZ-Xf=`*n7YwZKATbIc5qp;JJ>sC%A2A2lKa`4_z+8jteg-;2h+dGi7pm~7`w +-Fzo8!#{DiEMiJ-5i%O0t=TRWT5-fGzA5e-BY%ab&$0v^W`6-q?4+3q*Y+?S=;<<1o|6O$_dk_ccPav;h?aPrXzemU_4ZBnVGP_quJ!0opw)%#xg)avJi0?pr!^mF5HOuRyMeAO73SI8_twxCjFGw +4g&OYd&A_k9G2V;r6>7TYIqq>dLNT@X^u>$AcA|W?zfXQ1fs%2yQK|%km;6kg@9+N`stytAIaR=M!;r +x3aZ3l#4M&}c`QlnvDHxq!%m3uG +ZCH5F;p$W`;*b_0Z2Avhm(GxNyfwZq%w(k#!$aRxFt~6H7b^8yDNE^`FV%ciQPm+faCg4x%%2oenDQN ++%Qnd8ZkjsSzxm{(ko1{N&Z~#Yt})KQ|v*xi;?tr&yKaZUltwX8Se+j1GFO^S};y1^$oce*E_Zyn;q` +NM?xFO%)W96~_49b0(s +=ZNaSnZ-XwP#{Ol$CSe}wa+Obvzo=v$r%9ouM6>q5(B0T>-EeK?KxZiVVVn5^$C(CHQ`AHnh18~rG3t +!4LC$TV#B+}0+}oHI1wzXe0B^vNk)g9L-z4(E?q+k&YUZmg(|t(N)dV;kN}B<3PzIW!tRFUqGcQQ}OG +xMR8Y&EUCjQfbDa;TrSG+L(3es=MsGCkb4_?4*^aWYjUB-+A> +WSTX|Ri28j*`~iN;CfdPY)LS|6i2 +0FG~LfP)h>@6aWAK2mk|@q+IDW0EQd^006oH0012T003}la4%nWWo~3|axZdaadl;LbaO9bWpZ?LE^v +8OkTFigFc3xiImHl~MOtNhq%9B?5*6Cs^2Xz2L^3vGdm#!`9I&@97@u|ndLxo!8 +qq32td;`p!8NK<1|j_U`d$&s*=v~A%NE6GyI0#&3-IJ|4h3yZUzaRBzHDvxNNwNl(Fa9~&n)Ew9jB~(E}4Vix}U66 +mV@fd8e}5L`xV+*!EUh9)B1Q-VBu@dN5bk7Ikx6P;)1q+PCUh ++`N{=gkH(0d$QV2xu`y<{EXFkVfOVp>?*K03HVb03HAU0B~ +t=FJE?LZe(wAFLGsZb!BsOb1!3WZE#_9E^v8uRZ(x-HV}U2uQ<35wE<69ESIP$+79bdtos%TI`xg9>o8P1Fd^<4M^VbO#4%8 +jTI8qqCkM?^c!4iaJmsFsZ1J&WHy7?&x3*+yL(xja>l`1Rjr4nEaQ?`{R~r$RY$et8xR<^Vsb5UUnkz=hDAQU7-cEuqF24w_sq1di(G25`riR|kQM(DXTcUR9 +&__#n3!m}*iN{Y;ec-~_$XaK?YJ3e$FjS1il$6c7t0k)r6!r6phSELq7v0{=Ch2mvpZ`8{j2Qdc4QlHd%8iy+08hJaKV7Hus9>Vlm0fXQ9Z9wbeRTJ&eRNf;X5#R`rPcD7BWA#w~o3&ha +&P5h-~FJMTUax$DDZzbbr{K8Xu_76{Qr-2=R;a=7qJoM1;7SVI%xh +kCWsWq8(-K+ImvK`GVI2iM=*F0EW?k5vX>ds`oT4g4qKYFtIS7x%J8KRp-w!@FZGT%Lt^ +Y+3u+kR)4Ximyob7alsSkGFfI+t37(aGqptU4z{c2@N0f}x6o=UX(M=zd-TiTM*Ig*O9KQH0000800Wn#T-M&=*u)b60G>zy03QG +V0B~t=FJE?LZe(wAFLGsZb!BsOb1!3WZ)<5~b1ras-8^fL+sKjM=T~%S7$a?DZj$?QnLxgpFCnsIgm93o&n61%&)-mh+Mk|Y;O{-c+=(`nu`_odVq|2z0xTz +u0U+N>*Y%c|^7B5w*Qx<=eek=<7GwbxQ?@4BvKAn!Akena2>J5yV6EW115_POv|_FY+NQ6Abxbz1CHa +}ak@$(7IqKF^fg^_5xAv(k$MkiIa#U`8eDB2(^n)1K`2t~|(#3j&&M%DR)P&ZO#QB?slhSR^T@BLoVA+yrk! +URH{+Y#G*eOP8&B}WI9-TagkS<)__)i|Hd%VEC#;(pt4qrOl%#8dBzr{bSMvHj-!Aip#2*+2qHlM*LT +tgx2(@eQ+{Y=-XTgQFcSH?%W_)Os6r~-DQ}d5In{~a9r9tVWgl62$LjHn;BqK>-vXUtctJbxI8bs +#4ZGpxdU_CF=ODQ2?~6U=7Lu!Qwu(Jc7bzK(!VRC2)2xyA3?t@WaJ&OE?jiS|xEYE<6ZOBGt62%sPoX +|Jd{d6dvA!lAXjc10)EXp@kuCkzYGtRsoEunqz7uZ%BnPu>oB#yUk_+O1oQGf|o`|@Pp6OjS_1+HW&% +;hdCcV#lzjHmGIbV{DPsS@L-wh9B7js7sMYI(5wIj;6$%#4=`SF*XV9$#q_qd?5ZY@ff$KzfW&j~2#n +iv8G``V1O7r)!?n-E_naKslNPfkf3I+JT8Q_MT1y6XiSON_b>cQT35%K9=^vh$x3cDH&BfaCNya-~$-I+m^ +9rWxl7@RuIj_y>pKY;s*C)~JSfr6HL)7KADmAew7(u{szt3EKUyG*lXvva7kgB&lyr|8ZH!UZQf7z#Y +az=DUHklV`os$2i1sVBCa(s;9Ov{Nv~FqZ*avZ9E0zn7<#c*v??PjHtmupv*t=0qj;B_s^sjwzWze^2 +r403oR8pZLs-ghvpo +|A;>1!p6Qjt+w!j{RDLd?w$g#di$TO1_)}_ +?g~*IDHoG=Y)?}>w<6YMMUVNSD67t>(^coyt +1L}s}k=-i7by`K)EDk~-0xr5ROzF1&BQp+5hRsD7?f(ywv{RX2ft4jEN(=DbS=XtBg|HII#^(AP`!HE@u48_t;~67i)6Zwb# +_??M{1TjXsf`VRX}4f`p^^?zH{l!@0U8&SZ3~;5^KLEVo4__s6a!tSXb`A2k<<2=0bwx4kpqCe;%&6s +#$d5HLwS18d$T{veV~T8ko3>0>8KuwG}P-Q{e7*PqKCo|inyTK5mDq5CXeKHg2u{=h_wYQ)H`74m@`< +VRah@v;ksxub&j=28ivOhb=F(9Zk3K|H&m4%rH^K+jU+^a2m@Ms^<5LdYMKnqEQT^s2}f4Qfca1!T=P>QQ +^%242_FvO8tJZCN$$J1k!XUY!9*2iykD$>*4-0=j0?G3rMXRlg#Uesv6 +~bDDq}wDDIcDdYNj4|;usssqr5f3cSNg=k$nl$|-c@C8x>zQt+b=2#*Mdt&k@IHBvD==ZBfU$6 +`GaqS&{WVYRp!GCwt6XacTUf@A`zuF^A;2X_4BI`&RIG1JZxCn^n560FKtDY2?S{jRQvbHL(EodSLvD?`((8+9O3zF+)$Nm2z%h`nx@BhD7XkHiXw^#?%a1<{4DmW)QFoniq +0T0*y)Gg$}DnJ(yGQ$0vT3WG2sWS; +I?=k^oj;8=NY>Sj~)ka6W;sCp4bUBg7*O5$$&|HxC&Y99b*iFlFefyk&JUWqThxIZF4=cJ?mUrT3-)z +6%32`t=D(3>R1dLi(JU^wNz#C$6@6Hn}tX^o02M(tAVMec`KTZ3LVM)`Yr +8nt91t#p%EH4PYyH#C%W5ZpkXh!^=`dlYDaxtj95s~+(KHm;>aJqH^{KtvMmLKy_+ADuj4COxTnaq@} +NheY7#M8#H+iFw)|rF)WQ0cO-qk?Y8Gz|N36Bz2xlmKpA9THRh6%UF&K^D#-ftHVqOHggyS2I; +uCCq+nI#j99AI3#5bgxN&s#jaQ%mj3URQ*t|{Jzxa5Jyo*U&pHk3WXZKj}lcR_9ucw +?EzR%YQ)WWuov8}@6`3BtZ>)2BT9+O;E7#5>WQ9%7a`cl!ErJj(yYod%K@9X5~y2z7-zwlxwk-K$P;_ +EeY!?@IOwP3r0gXQ!X7USQzAeit>j*53dK*OWZD5MQk#jgra#<1;(>gGR(Pa(@}~>bhy#||R<#WPme&p +*@qC8YdXm>ujI#x7Sm;KKDrEJT8p=v`GB_YH_y0215p(jfoxi2Hz4T1lZl{|LOKcfV3w~;PfNInxvSq +p%H$R}P$C`e!UxXenvQ>MC89JJkNOYH}PNND8+8IGeq`9e|xwuR&ADImCZ({1O(-Eu~xWH6N2tK)7T> +ky<$tB>Ki~^|jV_^?thAp0xeOrK4F&8NX8RT~~&eu+{*JX?&tn{*))&;G6Jgl*{7D_no`OvE1La*1O0 +bAmbM$5*LWYoTC+Ea@EFcX&Nnnjj%%niebz;w_J#jWHg~x|&WvKEGNY9ObU3j&gb4lM}M>YKHKHjBI)>er% +U>)Jvd2x?yLV`HNkGRIESZzrRqQoI!jvf9VmK#Yg-XekMb68btNaHLkB4ysxmOY-wYnnmeF^NANv2H7 +Ian*VmLUUYWDET88cV9`A3VM>v`|Ub|DheXTL(p)+RK7b?=MLMQ_%Q`f*5xM0B +Ox>F}y9__O;1b0M +AyYM{%hPS`a;O +9I>{OSAd|BP^yUctN$2xXd4Z6Da#NU5<7Klk8CLlIfXU*`n;5kRCEk43`$@+d;2srn|F3Av>LI85p>HZ*YU0u_Yzn? +d9D-a9Gcbj>{Ps1r$5c){1o1FhQ8%J3-IH5AqT`S|PIv!?1acp!NuZWJcT`?nk%PyfIC~1jg0ipYx#B +vYT93Q6N!k;me=*_Np)s+WU(1ERK}X9Yj0*@tP_SGWBPP^G`W@cbCoh$~t3WE?U%h9n{^TqZ|m|S+r@ +{*Y1+oiccC!I11&2Q%Q~Y*Vf{rS8V`{H%XE!@hjh9BaaV{h(p0#L_OgH@8CIJ8G*-?8~dkxG2;rh59i{Y40!fs_) +yEdR|uK`6&MyDWuYdL17 +|Tya@V8k(mv`3G8e>foFX)%y`qG*$PYrCF!tM2`l@kfeE{Sz^DfW1yuXbbiL;gUIe1ssQ5xsN3XTuhAs^LW=)@!u*n+j9@KCCkcN;vz|IY7%1q@0s&QHu$TPg^5zrd(BPtO&Hd87R4 +gjsv?s`#bx05(yMdCqtxQIjJkM6*dGX@;?ThC>is#>6J%4re{IBBAudb7eG0pbnf1-JRF!Vz$+7b^&+ +pgm6;*b#=T+m-4|FO2ftfRSE4X2=sS(E;a<}UqY_F(IQ%j4wQuC(gE8WO$czkYzSbh9qSR~_8|CFd5P +F@<0dOnDu9Lv)7g$Q9bf*ki{7(Bvj?jO-VOgczS5^MU<*$Oeif7VSY`;n?JGx3TI5i&YL+)>>WXe}j? +Q9Kmvmh2K|x0{3w6e&i8L%QZ$2Z`E(y!K%+^OiLMk?U$wx?hpIoH>iRguf!kxO_4A8LJ~Lz$c@lxkdy +G)@E8caj1_cNzVgoz48DaLzU$RB5e!FN1moq7W0y%kuqNOZ{-{@C503m15!b@?)2Mj*doU&gT%wU3fVTU5meOq?kDW2rE4ok&K5{ +muKg%c-E{6WW7Rd+FZMa-$Ydkj;Ko6oIY;%#SY<5Wr&Y1;IcwgM$?l^&ZzrerycGUZ+=+knG#fPt-D! +gFnO>@nP;D$3!+C_ZG>IO;7)?5xV9<%otc|;uUkWqh66?SWfHsyob`EcM6dAE{d!+2&7Y6pC@&cFnFE +hM9`|tFfI5Bip=u1@1{}%Z(NYTk@Yzvnz)iPZ3f};Ic@(xP)h>@6aWAK2mk|@q+FfxWIBKa006NN001 +HY003}la4%nWWo~3|axZdaadl;LbaO9dcw=R7bZKvHb1rasrB_RH+cprs>sRc!2g?}^d+5zGJtR&tNh +gjow%Z{^_sN0NCFq%zP^3%?Cfmj@t+Dq3<<%x3qQ2~ap)< +p`;>Q5hQ`W(WZzxE0(sK4y +K?9Sdt|(P(<^Q<5`T8DHr?I(0fH +rlYW<`mG`J&lNpLgrmW75UBlK@UXYr=CN1nterR05!-KIVK0M3==Bov~QGOlh>&^3qe>H|Qw?31kQMv +gScPxjEi5WaLdLGGI&HqA4;lxL9%O^}JudKQSY@fpKP%BGHSI*DcuOIw&#(k#80IJBfe5a*y!LXIQyT;*8RSsh(%weQP8I~Mui`h +O%YbcQ=o;0D$l#y!U3Q%vQTl7<9U!XAp6o0a#MQ{oD@}uz|Ytd2qmUwWzzb-^2m-8sOCcNZV!ceD~LL +bQ|F?<5Y(DX<{q-+P=Jzng8qe)bs!*na+2(eZBO)RW_QGepF5=M6GzmkQf%Z8WQw9ZkR&%_<}{>~4rx +u4g3_eV(wR6IbyI+%8Wh5^<`CDQL}y>h=S$9`d2nu;r6=>;X)zOB!8J +EmLYW-v|T&vj_VnoUhVCiBea+fr^FCV|}*>sY|_QnpGp{K6gqSBqbC=G)dKh9d~-y}q +f*6|a5HoHaiTk%r5C*!pI^;o#b3m7#n-vp&y!|E-CvdHAr!w^vyg`iea1w?JX-8FyU<9x5FwMx*Yo!L +~S%2HvfsHm*!>d$i*Be&|pRaSOH_H0CeKX1RV!G?%&l-bfrS({IO{Z@k=t(_L{eW_T7Gzao|I#wm~ehlYp0I4=HLp<+@@8yPs1nT7w-15!%8x_z%;1vr?pALW2bum +#^`mg8#zL8+lP3SRrVS62TKEh(srsP4@(6Jfk~Uz5P%H^EGsD>UUs`AiO_ToL=uwGb5QeQ{L0iD@==+ +*E|_L(>{jr!#vQlz=us8C1k(7{hg98f%YCV80A=J$*XdNrD^*U=dMkS%gD2y*L*3|9Os{BXppnj<%V2 +=qt!eXHiGQQcVm)q*)oPjJJEu>=c72ocLhTAUSE?PPvPt!QxQ3>_vn1rkg>APlV9?YBXUM +Xjb!Xl>mAz_5#ar6a^E&pfM9b8+_4@+7%hS6Qv#;}ABl%qzk)pp#W +0l`Rj&>chNv7%>q?uYjg=~AkxY0IHzq1p#?yiA$7@6aWAK +2mk|@q+HXL3O|Ab005j0000~S003}la4%nWWo~3|axZdaadl;LbaO9gWo&RRaCx;?OK;;g5WeeIOxc4 +Sz!lo&W+0bcq>BXI*ob#~DHeikQ85#lR7om{8u-8OP$VVlVK+rl1BtESJU-5RoS_IIpG8&`6n28^lyS +x%U|T(aq@|D=_OvLeoU4nN5E4b~&`2MZ;Qn`6q&gS!;GdN$+Ml(GqFjmtl&p-CXUa1n!7Z|krzaOHSr +lx0>8xWfPEbuMCU}xSsu1H}6;)b!X%y}DsZ>-a908>T`GMg^cYqyfD27y{E9Q^l#=}~QXO>ae3TMdE18wxogVP0(pLS} +uT1kn5q6S%U!>t&8!z$C))aWh%tv)*I%lMa{<4a%$Y*Aos4gSW-+sp)?En((#XA77)2u5lxXGaJ9%bq +F7E52*C_9Enyf-TY{3}!a6uGjSv7>6>In(eA0l?xNTlwzB13!C*!P{n7uaRW$mxU~-O*Nqh1y2DLXh? +b(WXAHz1Y*y7?R7Hld(Tgj+7S@xfbd$NA!2Do+)IKe#Pv=fx;!P~{t!R6|RP1Z(`4E=ys@03j2GoceH +ajdISzZBgc_EfQWB2}qO@whP=--&pVmg3HcHq6NOGABZ5V85$9&5&P@y`%)@@A~!L;5J>F?J7(hYvd` +j-+#yPsfTSEoiFn-!m=X2Lzfko)!Vpvp@)m9|hy{p0@e?Ic>6d2a0b!XXmqe``@bu@FRQ_#!OTAgzZ$ +Fjo6X?|B33m;Q6$FH6_p?hG(8}mHbGW0zgYAY9Wg>pCkj=MHhFd|tv10(`ZrkGte(U$p>d2Rnvst*Zb +3%Z&DR!AP#!;egE?>aHlFKK=4O(1`Z(>+DK0bluok+(+5==!HpGHx%ZX3&M>58 +t|OH>NT2k^FA17)uB{#J45lJgR?PtqP4pEA}hS@6aWAK2mk|@q+ED)qFZPI007AP9t^&z7vSQKj| +4itmRKVqHlKM_sfvL1Xku7G%Ly1UWXileKh`g;E)D1}YZP4QM9Rgm*?PzR4W +t5(yE5Pj*2yY~Cm*sutXB1zZ#2%3wn3Lyen@zr^P)djzoZ2^T)=#O_(HR{g9Y}z8rnE8^j|V4cTy`f9 +i7F!WJ}OU%6TTwVNlc^xC8W&E{B!vU#@@kXiu&)H1k`s9P@^uIt48{XTrg8kfu4-b(#jV>9c$8#y@Ot +dtGwgJO}rS-c@>wVDJ?Fm&rp5o4V`b$dz{R#&JKAM^htw>bd{NllTKrO9KQH0000800Wn#T;z`UVGbt +%0LqF003HAU0B~t=FJE?LZe(wAFLGsZb!BsOb1!XgWMyn~E^vA6J!^B^xRKxWD{!N#6UQ0RUVC@rXrs +M2eq@#Gu3eUVsfy#8p@tZV5r>?R9Lb8y_uH>u0P!G4@+DQd)ZJ9=S_FXx&}j4<;AAq{YxG~Yy6xI@UF +W)N_x{WO?d_di7OjGp+fu7#U3FPewW_<+YSR?!thrV7`Cs(1!?LVXoBBpK>a78~H-RqpiuI;$I+bUg? +uxbE+uK(sT%@aIofp-Gs_L7W>S~o;*F~mf5z|>c_gi ++HPJpP2H%QOI@k9%c?wUa#a@R4GtS-1uZl6r;|4`fZT4Emnx&Om+Nz#=Q>w!ZoA96O4X^>>ay!L?a{- +B7trJOJYCl7hnsfw(4g;O(YEl%!zbVT@@Z-&Y-ZP{MP6k}?ZY(xnjNWEUqAY4Z`IUmRn%rC@2YmY!M} +9=dZU}HE9z>GD{YERI=|LcUN`BsDPaOnQvGqMH&~}N0FpfgzZV+1)HLrI75rE)3D%peY2ETSP2JVYx^ +#-(0uIk$ed=xJl%AgcC{NSz;j9W>=5{Eu{I9TZSDR9A>ej9$VN1`~+p;S*S<}r|b+ZPV$;Lr!yP`DBH +#osLyb-LW^P&Q(sj_m8)$HK9dR_rWuJyd_8d#i}+ExYiT(tA7T^5D3&$ivAY4pR{*_+>HZLxd?h4LOq +V3Tz|`k!ZInVpxKQTO}P*FQ%K@>90iV7K&ep0!$r!Oz_#};- ++XP>qe;lwUnFygg)|=Zo7ta5ZH8U9q{5i)4^SoGgGj*XmQ|S^YNjCy*j8v +arZmTPuzm!elpy+vBRlri9iC@_1sv~^*)p2p0$CK(hD~lYFAD6y+`=cxaY*+wuy1dluOennrF0zJx+U +**~s1EZV@`!q0T^4iZRgmTtw#^`eY0J5+opf}9Ek3uY +IW5XxDQ^y>PcO1qa;FrdU+)aIwuqs-7Vt_7aTVU69EvM6vH&yIqvQ%TWhxrNenjQipvVvo%0shxo)|D +cd&F-7S)xMBaf{++}i~gw6sw3oG?6xnQZ{4@SgXv)Y)zjimvz(cKwyU#R&l9w!?MZ+doogAjewWsd`0 +Jq!^iuKNe_31=J1VM`f^Cwq3mj-m!#Tev8dFO%0=OamT|b^P&N&P50iud~x#j<@2-o>DjZh6LoAbi9k +WjUh8~@vfv2_fxdiIZ!1&&*eS0;)HYK7#3}DIt`Z2cx#?Ic{nDufC|G9|?3%FBQ=I>cm#?0^`|)gU$N +S^SPbX(E-Y1Xtp1=P2?B&mA^XEUj`}q&^)002Fgz~Q*sR!`C$6xQAoV|SOzx(E^$9sEw%Q9;%DVv@BQ +}MB=j%ZlF0gS<*x?6eza)w0*0s`7eT3xQDTnm4oIQ$lvVa}=sR8p{YQ9}Ufo|0B!YC>b^|NV!)WCPEJ +8xmX;7*ppxf;(256#uZL#R|l8M=$$fIMpW){Z3P0az>Y_^e>HP*NxLB?=XfC-$@?2yq?67RzCMZ;WRMS!+p5eWQeJQ%prqD}`n*&>vSFHiHOn7XWEp8z2Wzq=3C;3Z;ZXUZ-#e0#pm`@nN?G5!9yYH3+)~RWq0%D4Ni;;LfqkHna^uUU +n*L&WjFrf{SWrAX%f48vrr5BT3!q@3~D2kPE0SE;S))rV^CK>io9T?R4rdpR5CEDW(hr^h#Z3ZPs;-K +$xIAozIC=&g1qi$O0yPw;a?abv0Ahw1xrS3zvR)+Sl#O(M+beXt*=XxbXGpsLT(#hml>kAELK7 +zH1!YbvxV?26K(;jeY)HS9-Wsj{>tvMyug(_gnm3rA)-h1Vq%~)5$cz3g8qFGKDn)`{HVLC%o%B;9a} +$u6M(mj=r4^(UjE;6UNX?<#nt7dVJPw_0%D@R*#e9J=h7#_%@;c&s5A*dj5T0=eM-(nX>BrLsah%X>W +@Wbsq*poqY*!`9jX}59BMTTL?I`OV4%Bwi2ry(S*Q)p3c;h@wYRwyg`oNZk+Xl`F?%BHt_eh1>HrIt9 +I&hKWBcp=Lp9EVPpjm>3?SBmNnXB@`@H>4PbF*Al9!7FqzZI)aPXpGj;gNU0uAu)uA46RM1PNxFz;t+ +gAE!F6O7l3T@dC3q;&~`aE?i<80!(TrQRS+E75?fy-tkvNG<>pHQ&dvvN06#rHe8Dt3h|H7jF&&-^qi +2RZvanCZTHQCA0GIApl*U^p`oR-rPO`tzBWAiyF6KQ^R76@o?{ZZU)hP(KLhsp +=ilwW!|R2t1DA;vW$#v5u?(g3;yQc%ao>hUnmtSaDksO(=yuZj8e0G{juFyomF0SN_U+;GMd_8Sj3Tv +brfw~ldmxFB&|p4JW=V)u?_%Kv0dlid!Xb46V57~lp2b@WYyIH;-m08*@yOk+4OW?(eKOa^69QEl~o( +9{pr7Z58bbX|)HV(|EiRgdEp%NK*$V_YH;cgL&CKuubu>+H($H6|h}=O`_YSDjxy<~z;G*;1(8SZPZT +V4$Pk%%q1F8+0+K(5U_aT|bURjrv%lFJKpe+(5q&8N4&4uK@yJ07`tV>Mii1xCBk%L1khEE65}1~ROYntY;%&y$1cm=T7(&a7uOAkBVU?+MTcvqCiSVY`X}j>_ +5?r2g0uNaBf?hz@)m4$~Q<%mvp5=EqTaU7VgXKRv22^SL^!QN)gDKL>Nbr|f5ZlW@> +dzk3>L^ER&N)&C1M;j8a-D5S{=&8{(E$jr_&*eK{JB}7SeYT(YYW92K)@2Kh5D17!VTI5j8woNDK9A` +Q!VA#H7Tac!y>}S0g$%sI+IcFxIRNPRENU)5v200!6s|KLB66vt-fqLFT-Rl +Q1ev@s*VM^Mj2_c*W0yIwrxuI%2`JX2FM|pCVX;7r8mnQZ$QHE0z#FjsdfEg=tu|%0^wEgE0N_#t<*+-d4{z`inGD#z+W_{3ohe0cxQ#RR(Gj}!)`fWuXJ39JKVnBZ2Kk&!&*zP&~g;_ +>OGQO~LP_gRA@HesLurDQ{k!S0eS35S3V(VjTZmRJ0iW~WS84t7R%q3s@pzmJX#OZxu%?@buOL|C0SP +y`azMy?I#IQZSmvxAvBFrixf_q?dmy196Gp}T{r4*?RFDp2qOz%KYTjrlJsK(BRW&Y+#n5pPfa5)Nay +IuuH{9}1*(vO60(MBLrRFRIglVmbr+wGT^pGyi^MrrjA#7LB-@?d|Xcw!=ukAkmCti!&wP9e|9+EV}>3FdTR7{Tj@C`o;I(5*xD1 +@4qANVJX0WC%nob1OGj-ElUUfJHx+RY6xaUysY1X{o83s6C0~-hFBj8StiOVgL0}++M_z5KW4yE$)x81G^zmT{2Wz3Ps9RYkMxDEFnb6zUJB`FcWcQrq)>v?Ue?<(H{MpZY`T +Jgt+Q&2QSa|mUgJ>Pnw;98x8&QUR@*AqZP6ee2$Ei{FemJvCEOW6B;e`Y9m3wJ+PdR7)wG*ESZ&&pGr +%ekZzUB$y?^}Z(N4`F;5YkXHo&T$8!bOvY*W|g_MWHBfN{(VPY3Sm01V585QeYA5k%n@LGxaI_#i0uv +9QYI0*xS=51Vc@CVne`dn)g0vT?!Eb--mSG>Bz6=Qcg5CH+zdvTokXjBsKG55`is6U|idE(G02$@S58 +ho-Q9MC~tN&bfx&NE@yLYYqR{)R?vda-~L_1ATGCeUM!rmc;tvXp2hTDr?L(HfqWs!q${FCe1|CIyi?U;hMl86_Nlh7$!3LyH+6G`@uo~9s`Qc%1c +s5dz`pkeI5r)8t==!F0E%+T#DW=5mQ`2|aR|c8#el*nT0|~Q`6X$ih-E4G|On0YrVfH1al}j>44kS!AW!pLP3^S*V-h~Z!xPK7 +}3=(UZxFi+D)C18T) +KW1NF`?TxQo=vJ4dNeT`~2F)~N@fwq6t2Mwyd#PNWIotH(Gm$w{1mqgTu00%f)MY=-kw$57iqmkBARL +gRkvr^PY+)d&sy7JBs4m{-mw#9~yCa5RrM{ihnol@8Ue|`A)@sp=6`8q)iLhDeN-Z~K6W%pJ+iscD&> +Y5~!CvPd1ph{prgl(zSf!(m0lFtg6LbOL#LzW +>+=8ZuCufprN{U{KN=P!npZ^Y{pfL!0qUyghMJi4y>}@{LwEn +fMLBSV4B&pSj{tVcSt4Rzioue9S>F2Q2QSXQ$6kPUuWZwj_<1wK3p%^-W8`IgS>%dGdHnfIu(n1~brU +5DwgP4LrA~w@s>E0VPPjk?R)09i+mpX>OHfvob5&8g1udb?ZPbkTd8OIRtGg*6cIny7>~1f+Y{8!0j| +_4$X5gSlL!0R4sneaP`7NL!sowU$m3(C$g2bnjJ#iYbZO%m6$Q)h5jN@Y`NgrC{ALmYf> +Kf|92m&P#vrUFN1yQh=ZQOy-=dR^StvQ&kh<&^Z6h+d-)RD02#bq!SKhgGrbl|DF)sV{t(J3JovF@04 +G@~6nEGMcL@A8}XBhBjPCcw9pXkre|Nf~5^4VvF!)ZSTLf5NZB-&I4hjS9>15eY3!}oVbB|91E;VOZxKu`fQKo{Kw*~|rlCkb5<`lS3c40;SgXRI?r65Dz@b2 +NoW(hK@Jrkhah4&c9up`VO^PbH7jv&|Di%TeI)>&yzhNXcUr7NlfTmsM;dO$-?#vq%l_tyz=Aa9`<94 +c@Wa~m~0_mv!%r43XdN;2juj=xaOI;+PAErCn(?RwJ&a3o7Xj2B+L5_T76%S-zwglg>9U-#yqWIKv`5 +Pqv|x_OEVrNzSDaeiJM~2yZP+x9xw7~_$#Fm=4q7*Az>Nmw6G8)51UNt5T%l0~k(1@a2NWiJ1|22<9T#Gsa~cNfo$GB!QCP%lxov^drmrzVJ-x$?4gOR6XeN~PyhGBk74brpD<1Fkn$9Xt~pt;P49{ +PBu=NEhDvaJhV33Rl)R>4dUhS(LkDjM8{KhK3ay`e94U2wLmI?Tz41d115i9k{qgYT=H`$R7VUw@KDoQ1^T4H@@OGI0S;{FL@ct@lPAZ4MMVM8JNIzS +qbR=dl(W;DGg6!o-mFs{Bo9RCc6{9Q8;Ovy`|3&K6+>hx%whqmpSr=<>=0cpc*+qz4NSN;-#)gm)?wU +8-K=?FBc$0?A#ol0f+Y2w=()qc~E+Bw`WucX2NAcqB2I3KE4plF9F0o}m-uhnLS@1gFCg&t6~+RDvWN +#?+(?_KH!+-%bHd!3qN+9+8#Dqmi)0GOIW=k;MXQpY-pXJmIn_fHZWfk|Krw<8)vq$U$%>(|F#y@Hlx +CC(CiDm?_r=jE^Ui``KUQ%o(!3$eQ9jWI6;0G3+`L%D5w~dP*dPTaN(_pLyHoT=lFxTml0?E>J9cq(;?c*xubm$ph*j;< +}_tW)hFbvr&NK7TvAYg%0FxBObYA!1CEw?>2bN7ZDa~TB}lvqmRH3f@E1q_Xy4B>6SnwjV*~fK{a~40 +ewH%J@*zpmQPQII5g*0FoB!M_PuDED~Gpbka}z4fUJ~n#WT*idT1^$BwcE;FihT1xP`+VnOOX`WkM(gQ5c$b!eEwg)q +S-_k82?qt3=TQXJ8s#}mz=Pkad_^fj8p@5k$7Qqq%E@_&?If1tT>j1<{aw6XQ1xg>U;e?UjOHJcr!?O +-_Wsg{97~UH_Jn!snld0+~kWGgh3h2$_L}&9pR?vo9c-L|DnL&r1vik|f?sVDE^aoxK +0pddT>}ExI&JZ?!dnb}VF-i|NT9#O0p*?{AaB%RFTqVN4F3xo#=XJ-k6?4pGS~YZ5)kys(Y>j2#E#Qb +y(H#7KUi{CZ5FGOA)bKQyAL5qP +qmLHTe%03&R@@j9q5d=iq~3*^&n2N(_L*@da{UEfxnx_8WWQ02*6T+kGg}D(!%<1CTaNVF2z +kd#dst+>3pQZgWzHm`jLSVsOJshH;JB1r~>^u5uU5c0+mUDP_CUfbf(sAAGmwNnPfgc~4Jk4E_UXT(f +9lnM7q={*89H=71v9UYKv)waX_z12Me9^rZ+##?&<UlCEV!$hj`NY#MJOb048O1cpE_L47wI4cJy0sjP^YTg5V>$BN9= +2pHD62e~HJH_Qh3%$2^q!DvL*Tx^kxgd0%S;@Do?oLWpKkK(2LVvU~i>`1ZjRj(tylB*eJH3p^OA%^) +Jo$KSt+F0t<{%D2uOg*5~vOs1p%evKxmktg(Gm1$)aDqq4#j&WdHMe*z^~HA%kK+s|UZTu|tH{#!Q{x +-$RmIGjb0j&FJCo&6j>)hJF`z0+mFU)yPdK0>8`l!gPKVhi9MvN62G7=QYW29!E_PZUJ2SdY)eXy2My +8V~P*hxHIDw({#^bc}5{ov)@`@}@VfJ|~_iBNPg0gLI7~CX6*kq>s`|*MX0Lz5=zU&aHITQ9NRI~i^0 +rUBJU6(N^P@cm}K8|R?77i%7ML^71P{F@O?ap^V^h8IQ9c`cSXRo}C_-D}?mS@=bL=%WG}N*Dgjb5H;6Q8;fxg# +##Hwnd@zUO8%YcJ8%?VX?|~Pp$AY%-$KEx@s^HukU=FWG5?r3`5{K<`uBbk^kIjLvQDa>pD5Un3ljxRC +sx0`dWW$`z@@kl4VYk0aNHr6@0CzQ!o9)E*6tU< +o~TAHMY%6*&;Lx}{Aax(Pr(fDZZI2Ov}trO&RlQAe*MF(F8h?)Xd%q<>1Le05XRGm$HTqnod>$fg%JPu1)Z=mq>8ETtcLj<>xw%?5^ +vNLfM2Gm!?N9OT@io;-#U}@oFQU;UsbY +-`;AS$>A-uy(b@xBZ-a5B&QIJI%;D?Z6M@Zf_vyFm|p@n;9<@bgvof$x51Xa{KbJ3Tu=h9B_>VGbwT? +W6COS^Fx8I>f0@HIy*)9E<{u)LqiW;Xfad@!&fdZw(;+nqhgPtpq%IutS@UK6KD@fXCB$xegDO@Tch74jFEyJ|X9 +K*Xwf{o+LGY?PKtHiy6*VcD8HOAcPHzvTNLacDx#|_Y5U3V&5{i5wwx*}z($6-o&hWbdND*jy<4VasFBOa(+*=kIx8cijPN3BS+N0wF$d0b*b;Ds3we +r8Sl$KJ4tQuWM`cAn`l?ABEN#SjxD0u~Y&IEI2mhA}hJc=)STw)%bK#{d8(+<~J2RF#qq@vrxXUwxn_ +o`zRW?~Vm3KExgOi$<-|O}&XOh94U6*ka?)(P#*$#|G|P5^gQk#!OMy2#PL!oTMCb*GWE~jdjG75$Av$t4C;k*d&3`%l*R)m*} +j)j&mYTvvcz~vv`}wpQD@7nTYe~fbFQN(Juz4N}Ia_8eMAC)n#==Bm9n>X9p5|<4Zlr{~+qTCxek!-r +ynI%WR8xt`jUy0=3KLx=Fk^Tuh$buqS61Z3;8<%_WDW}Em)Y4P=nQGr^c5zyyxO|dV6fJlJZ9mUJ4%77%^5JfSLN}yUwvybDoWkqw}ElK=*PEK +Hf7^<*@bpL24!!9xvJ_LSkMb?)15PPNu#5NFo7blb0#w*;DN^gMeJhHSo8vBvJI|ggGbmX9hR?_aDu> +2%E5>r+y`>KH7+jZgYNN_NLUBk%}JZ_(rDsqQyjO}pc~8|)GKqzq1^9r$PO*k+@yyzVv8Z&`Q3ygjU0 +sDML(Q9WK4fT3+I5w-ABf9kE+%f+*ZTwSD4}!?eV11>$%i*3!(+uny{;mSSve}3?18T^rYO?NV6rA@)H8G&@3oenz!SHZP)G=?KuHhT+y>wH)^4Zb{ +lgnZHC!hHRKqzgu?mGNi93cgcd{2Q5;fmph+K@e+1$blBmeXhO_KgERCBJ|V;EHCAiLq7lYw~v1bMeN +vo!l@!HlAc^ttUqqxWdQEo*{j2+Gj#|e0to%^$>S852eK;JVUh<9R_S*JIlXVbZUSi5eT(OcQ4kpiJs +mipxuLjT;P)2D%NvI#M8X7sGxABYw3()3jM4vYvX9G9fpfR;xVxAjQF!%7~cnV72(f%(-4>l-P=@8BUT`djuRFi)-sOXaE?!Qcn-h3;s0r((&yB +BSccWF6xrPd&8er+qbEP66DT{9F@p(293Ii#*6=2<^w$Z2f*MTjDSO@$ncl*@W{d#DhEC}elK@q&@R# +GxR@ML%|lSf=^PTv2fjR?=8`!KFZ{l`4^8eQEAaR<^RZ +|Q$gJ?(h8}u7;N1IiM8;}8ebIbJgqA;a-L%@?%tI{(^nH?Iz9ni;^~A?g5sEKfDVm@2C)VjJ7anit#= +#k3sTzNx-QEb~)hBOJ!A={h7E|e!zGc6`6%P{@enK`~UxWucVz%Os|2@F@Ab=tj!mrwE5>ax;z^br}H +A$^D*<(TYr&NL^UEz@j3(<9(IT7z1NCQvMjvWzmvapA*h5?3%{yzNDd*@`(bJ$mMjfEc)n`71#UfQ#~ +tZP1+gBc8^MC^*jB$CU8d#MqI{2Z#Fbo!opwkNr*7%bZQ@afZUes%a2CyK%=Vv7L`BQv0@Lup?EcuLb@8H&9Ch1QY-O00;mB +m!w>nA65mq0RR9Y1ONaa0001RX>c!Jc4cm4Z*nhkWpQ<7b98eraA9L>VP|D?E^v9Rlh1DBAP~myeu@! +$u-&e>>@89rVE3@6-l7T-Gj32YP{2v8s_(u-Od_XNFV%8m{(Ljv4_go3g#>YmRn-SK0Po!3Wdc1Xx`P +Y~Q&s(dr-P2rIfa04I;IG{3$T~n@k}K-ll$~u8=WQyD5JBHQ{Qh;&ejQxJ|gG@sM7%hhd*PapmRr{JG +dN#vz$0=TH1xQJ!#7q>aozUF&Lxwzt~S;T3N~3O$BsLXq5}7#I<+}%xllZoZt)|uR51{<2q?#)9y;}n +Hq$c%?i93=_n$JCGZ~mn~^Ud7U&;b-<$J14axdRL}%`9g#rt +GA#09l0W1Lx68alCNemcX&A!a(35exj|O95k&o^#MceI~%-qjok|D)2J;KT@v8s8!P|Ihuv~sWCsO+M +gMRo>lbI-ZmJm0k~*4x#~%C+m7=H5@qud)=#p{gQp<#Wt@6aWAK2mk|@q+ +FSfF|d^(006aj001BW003}la4%nWWo~3|axZdaadl;LbaO9rWpi_BZ*FrgaCz-LYjfK;lHdI+u*wHZD +Va_tx!tU4lq$#Z?Bp)5vz@)$%BCb*glvu}lEa4`?Ns)+U%vnXAmuo-_pBS&)I=hI2GHGT^b;D5Mthb1 +xz%-3N42i&w8-ndzlVQ&d*@eatu{r{W?Ge1ag!#xRcrNv|5!6lxRa@ugOAo~Tk+by_#7)=iV +^grU>{me4RvlBbe7-x+#mQQAKS&)m!_qNjG|LT@@R(DzXg5#)&I=`L0 +TIrIVNGs^KGc +8~}=I!DluG7^5A0ZfNu_`uY+?Y0R;<5zzQ^gp`(u=8TtL&#D&FMoKSGBf132CP5cu&FKso?aOUjB1jP +3bYW{VA>%*msctM)-yP+*I+ZSqQKNtn??-X``!4ZQe}xCNi%6ywatIXCC_as?D!;a+0r#1lDj;RfPaL +E&!`}^HTTTyvlFlEKSZ{W!O1 +BXIpHT<~mVVzzS1UY5ln@YWa?>)J43yzKyFyF)7lEG)tSUj0vo+J3bgI^+4st&+$zC@buARn(xb#AC5 +k}K3|-kynJFLK>f%=G*WH+|7)= +$)Deb&zse))nAct+HZuJq0o&)j>wx +UZtxm_yAG>MHz5Gyjrythz5Kct4qLMjxwgvn`kdxT{fMF%CU$@^L?sBHg^wjD+4gV%G?om6CMu4=SvMU*uV||v0DP($|}W`N`K +k_X2~+xR5kH6z5`iUAZ~CKjOi;40;9~*RcfU<;;gv>31)kv$j6qZL7K}~nt7yNtyRo4H4X3t!F9mvxY +|y!`BvSgS*9*DBLpB8z)i4cRa;}9Ww-97S?V5rK!W*5!U5g_y%{IWUa)oSf=xTyKX|^ge=rXBf1q9vl +OmwJXuPGVv5qbyb)&0vy`7lhu+`YYPGNnp`}36^_lPaW!-R0`H0-g7X-H5f_ggq4+AezTu+})(W8usu +lK}`(TjF`!>l+LXeFbl)dQ;qJ1&wQFDG-y$B&bdx{v&n5rxiC@r&Uew;+rB(RGa~$<6;;XvYdnXq^*d +O&?d%b5jD#J>VkmH)yHev3}X-#Hxp#qU^UQnQ;#P|up7e>p9l(e10dMP0_;!@=SKkQBQ*H5x98BqfA2 +{GI^QhLZDxZ?|TQRx_3p1DIQPz&Ig&$f}>#K9hxL!a@j0Mp)!2!z6TWX2s$a2_8&?c{gr) +7$2~A-os&9KxGcpSV4V{xwR%uGpgw24O}adXs)m^O-rM>5Q%9)uM?joNcYMHL5yw>1=(#?I}>t0@Q*uySx$s5rTa^9JmlqOBc(&}{`X(XF;kv!NB#t3z&y5l1a6WDW +U{#D#f~j$vg7^YSdvJ7i{OXljUB!4PkR6tj4Q3`31wdXkR^`jmYlH^`fDNNQod57lI>AV!X26up{6jD +#7)cW1h^wL^vJ!)kLbPUh8Vw +k}GrZEXHw+@mu@WFYhrx1W@A!-8X3M7xu{XgdAyVxGa?5`PLEoBEM@yAfn8ZTVoG*4$fop`)*|PwzgobtiNmf( +^F6C&kWW%gJu7ih{MF4QK^$*f*=IP$qhW0;MTfpOu!z&0%*(hZ+)_4&1tQzx~{O0a2^t&75Z4Jw@k1( +Kd5Le)p7Z%sC39?%_&TVLNf91W&iA211zK9*+3%p?E$QC_6625A#jB=B3Wj5(9*RR51-|M4<6tM%JRo +zbkYgqvDNJy4Jc>XbE1E?g_67P#A1mkmt}8u^J6&$D|iK>j!lN)V9UCiZ3^)EIOwHARxliAu=y*x7(` +}b~e28`KlD>oI2!wX8y#^{>m(`gen88a?+1@Gri1FtqIg+o&z~xNNp`j4-i +6#;~VVD}Vr! +GfaUR2%-~Jk;l&-Jp=QVTRokG=!M;bes0ic5W;wLcsLp$9832_#k<{}7bhtHY)^#Dlo4R(fBd`xIcIq}@k-aCUf@6q`8Bqb5uG?I!`?V^Em06zqOhm +SOxSe|+|PGT=%L9pHsy#UZnW6h?hWaFOc~V1+$>?1u+f#GQJ3sNa)h +SEVo76f_6+^o&Dj;*<&rPRcl7{}S-nUSLS{u&mdIM*TQU>l!{BK7RD8i_3D6ofQS +uu1qZp*t-zF!ZjgI#{Smfr^*0~v}7sdy!_dzUeS`&^B6203PO_o3^L;?z +R_sVZz!nu_A0%JH--`iu6jo6d%U=<&qR9e5m-l59?v<`sJdS;x5hDF{%cmb0V4cR&G&`33IrcN;owLk-7Xp8 +!*r8p5tUW%X~0sHbd6lS=)j0gY$H6Y2H7QW=|(W61JPL3{~G_DCPjzq12P6z1h72kUA4DMDrWHZ<-gd +S`3Ch-m|?kY`&ZLkotKM$a^XMXrbcz=5I9)aEC>_UW|X +nd12%GnRu*M02w<1NkyniSP@hAvMjyi;1x#>I>CWL37EG8l^vZ@{^+-q3$GoWL4903#`c~KEhQgW~!H*qie(lg=7=jMz-M(!?;D1|?PQWy?%XosjE1ql83WZOt^hN*~VKk +#P&DZuVv+zZnpY%tPa?=gH$v!UpUJEP}x*%O +&M$?JC%1nlSMC3oHOojub*DONN!BR@C^k-ta=a3_yTDFE3R0Y?cUl$J)I5S^B +;qGRAFcpW)|1=ZBZq%d%eWdv9rvNjDb(x=_c;uf6=V@-eUlYegrn^1H^omUObW9k6QRL_IN{NkV$eh@ +gq?x-1L$oPE#XyJMY7kl=$=4XR2vI2S*Ov0+NdjIb191m)VuJf@){@EDj_*iC}Hj>e+8RQSO8QDc!+t=F +%=R3x4c3(o_hR;M^C?DrJTv)tP~ykINy7&bO)2TXXF&CEKUKYwmY5rSkAd{c{qngYOP9TT?!WgzUEJ%#^Xq&aOUcwv3 +?-N@e%E2wnFPrIvba;ws*FPuL#!h61_hjU%N_?lblVxKFJ5;6C)?neyUOcPcCvX`VKV1)T?u%z +rRbN2Ki?q+L~uo6?PLEK#RmD_>~q;>GMw7tD;d#cV13j^v;Z&zIaqY|peF>SWTDzn2fsm)({pm8nzdf +|?mOumu2LN*2(OZyYsknNiYlS2`!*#iqF5B7*sd!4v2*Fn))*4Oa)CKGPJdBE#YBXWY$bMj7WgD&BI6 +lK$huKYJXi6(M4R%o;?2U+5Xf<)yOJCmBDTE^wHz*_PcuY;6;MyvEDT-%MFsOe)PmJk5^Z=nyMR&h +T*m$IFgBDGe^O=rNl8!&YMG@mY`LnRHN37hAF^Qp+?X)p!KUQ>LBF062#uL8KzIMugZl7CmM*$1DM#s +CQUF=WBev<-b|P|UB-vT@A7QRND)g!FvCVSUcTi>NCdH~dD`mp8qouMHyQCRo%*fv*r1 +d7w#+Q|AF3V +5TEwi>XOAf)#+G3h1O(wpOBO8?utfLv2IO5^?qsWD6l*Y;9_AO4-`+9fw9&(XGC>5sZCX?6ap8u7X7hvllr>#()FN{mS +WJ-+XW7E5L1FuHrc#w#$+Jq``v0fjx&y0yORPe3_5)}#y1wYc>*%YQ>xU9q5yeN#bqZudagUCe%Hnf2 +Xb_>o-^*Jjp +9ZJRMF?7MNF1iCDPlW?mnr+fe$dhV}Cm-L#@gvs*?|5jSVZca^{3=aYD8wf^Z|1&JCu++QMU)?nhSBE +E$o@;zQfm8}zWEK%POa-(U-D|8%2YRop&WpV>*LY{i)Y+%V9Nl-12?RraAqNrNe` +F}>KQ-(1pE6VV&j^+Nqu~;iFbl)4MHwzUVU+sMB>7~pz9m>hzrKaox_fkwgSLO9*(e2`o)Uu36FN#QG +*jBrK@oG>I{)BkH2PF{+%a8e#`W7Jd))R9z)&X>5Lk*rzM5atnOSG1#s!%PaW?V%9Tgb66kzV$Y!dGx +mxF)mvQxy&BAh{QXk^eG15e5SLCOPKT(F;L8dIE*&Fk_8?|f)TATvqIKou9(SLcKL;>`yi+yT)W|Eth +VymS|)*Id8+W9QeTVMW3D#=&Gu_Xb1!b=E|HvtKt9$%#8wwOsCF6Y&9B;vMkd^>XPSWiUZi=V2DOIOHpJ{8n<~AYEyrR-slgmOENn7wChB|nRD;+dTsUh%-M3o`j +f2BbvmSPRA?~gGj9ow|*U=r;bNBH;JqQ;?k@X}Hp9Z^F=xZM9;8+&d+YS$Qe^=t6^R=O|kuqR0%~jt} +yunWzHxi3pf~ev~#xG`gu{Q%g;=C!C3V9eU-E07Raf3G&B*krx+rUd?4>T9@-$uTxReXE>t;+|gH}px +$F=e8Zj&n>M7GDpg-=t*EH&v03FPNOm%Sc +h?0DCJvAQmO}_XK6n77S2+oz#^PS{}!?rWA?&tfx*xOc~%` +D4v{ml;Rr26-I@jJUq>CZ>TzfCl=JPTyV9Xa0;)aEJB7md=22gDSI0NDh5p@ULq&+t8i)6!=rD^Vd}0 +lEvkC4UA0}xGHd1PJHdM+&F_>IDSfuw#zY*C$0nDbywzzWQ$`o%^Pwg$LeS{d`ORi({MBk&&RI)m!T2 +Ot!ie)t~D8?_~Y`Y>fuADcRy3h&;9Ohk0P`^d??)KXS^WW;<=89gCxJM6P`tiOQ*@7|xkdi +VD1H!6G+6$EQ{Py$8rH;@7I)qbNvM+3P};Z7n@j^Azyltt}{qRx@!xOBco7s>|wpQ6kEbe9Acn}sHsF}L2k&aHsE?3FaEpQ4a-YJE*-Q$ftfIejMqTPha$z2^x`n8+Zc4r69&hB!|ygT=74!F +4sMOey{1^n!zZTo4USj^JbO|ZSAPz*0v-LIW8S|m|m^w>UV&l=>Da_v=|tC73oCZ5OscaNsCL)%C(Rqm{jmT^%@RLrH(z<| +RGrJCageFtV-0K7$UCCOG|K06L%!|Fu4*l+ZsTGr_tz7~clv8OIR`yWIbO|I-Gy??g>zmsct>#-mz0l ++)AXkm&f4}heFi3~4tNpWq@u31{S}(AM3Cn4&YPDFC~x9CE!#{=Q#}r<=+=Jcmr$IG%cn|`5~>{we=k +4N6Q=86VUxK5Z=hz}k-qFcHCF~={tku(xHymUz)XTsQ}~{0*)Szas~uwzg70(f0$;M=783?nF5DA}0T +A>iLeO>1-A2XAGs)U@u@(lt0^FGdT@e*166~#*zP}qDcURqn*N9d_2eI#{wRbpvBqY1o2GE}z1`e+da +k_d{`Da({dd=6N(+@gTRK=GPH&hx90qN-BV;2trcUCNP_$M94=Ju3{-Ewlu`+LZlV3ZP&@gqP+cu$*= +Xc=A>ZvbxM#8-|hx#ALmp}Y<5!VE6L^zIv_ZQ#iHitcgZTGe&IjDenKb3tc!-FxoF8i+3Tu2j6}V?6Q +jM=5J}@zn5ToY8_V4Vly3A;b5++=I1(8)5l6qG5i+zu-PPF33J>it?5D1&*OR3v1^nG6l{Y84ai*G0w +g>yHix}2og93!JUBtU!S#~kFWIVntu$($x!FQPE55-3GI>z<8lzF233M|0hO;cUz3?)nymGh*3 +rwIPp0+-=kThx)vlc{rh@~}2yEWMc(Gi=Inq0t +vF4rg^~E3I~jBjcn9wf26=g>_1>O-@X@+YYyN8ZW@eGCylLGyyKj(d+c{)Q*(qepSctCY4Ko@r114uy +by)V0h-u;C;@7c!BS--`j$;5@k{?W(S8Ixyb1AesyrX9=$Dw>QnfF8NQzYm-q`z^>@{mk>d>EB9EYC1 +oKMqIhAsC(CFge8f5tD%KbgG5Ro^1)NxH{h`XD9i3yjx*n2fxf`pf|Ut&dnCB^U|n^1aKr@`#6bY1tbWbW&}o~ZBX1B0A +6YOC`*T`p7~t^U05m%5DVZRvsPA-wR)hhW3vr4PDaK}3%+PXMd@XSlQRgHQ=S$|a`!Q+)8q62! +=UN$!w+`M~|XM!#6fzb<%~_xzj<_DHa6D@04(7`Gq|8<LDQvPlwq +xpecb2~(rEQNQ_uoWD4b$&d3PN6bCXoJ6*qSh__epW)ItpvjeVFBzRS7_heit!&%O9KQH0000800Wn# +T&zi!Wt#>70OAk;03-ka0B~t=FJE?LZe(wAFLGsZb!BsOb1!prVRUtKUt@1%WpgfYd3_hlZW}l7zF$F +X5L9X%#g^s7F_2vPK#LY_(dL!}6tzo9tar&R$+fKp{fZuX>DTp3I-KE>l+0=Zvh} +(#t#s=(Gn?OJ<5?@WN=wHC>%}lAy<=Nzde)e}H=1eD18!?9`}XbIpPBQ*k50PE8|L>?S*FKcTGfb-q1 ++QDnnpUOHl1Wr0gYt>gnMt*X7nJ-AfQ!^S4InasFatzTU6E8ccLFUd39A)41RCkykV*zjP=aQ-$&`ZO +YjM>z&qc41`>b}gmEidWx=e^J|OY=>B~`KAQ;^EYq3XesMHLdF!cZ@qw`1c+V4FPtgE80R@D&89syLbZnten!JYnBy$cJ8F{JI +4K&rVOT*sN}h_DYYkKAE3H_*sCvTjiTQczge6KCt>WGo-Wie+Bgv28k!4Bxn(IIqoEQFs_c%f5D?@k2wBh?bWJCD>?>~QKNoZkXrSP&%IxWenP +z=K{9Iensb20k8u?pg%ZX{RW)FAqCOmug?bVX8l@VG2|u{^y97zm~G8OaEc*8SfwS6Bt0C7)=PXe#)pO`E8T^F(5~~_qu!wbiniLDyG<%~UeG}TQX3{55^P}V587(c_WPPP}4G8VD|+BakvbbD~4mk*H^oFbR&6F)NDVsAEC=QMh*%+lDywWZmy0nAcJgBP>ffr_kDsYFnub5h;2x? +yP>6Q({E{>?PdY@<0`PG?i&SCi)kXI4XMqGqAYqWo&bI2P|;V5XNRm>0{*+!SN}R=ld?H)TzyR)k`x{ +qQuWc_$oH%ZKs;tD^_Rd|DDl=nrGaIz!v* +Y0ZhEBk~cN-iSe<{zB;3_(+(yuwin(*<_qo*12NslU{A;-NzRL-LW)WNlNEX=F&`Yn!)+DC`IDqasQ= ++j7h|Hxy8((-9C4C1XEq=t%YP=0Yr)G?OEwi411?&vxi19X3cqxp~rxHV*EEXQ%!S<%X)8jG+@dHEozk4y5Av +|eIOgE8rfW-yC;!cJez&&7+Gd1HIh#rOz=f*ZE}YcTn378+x_!%^Zq?;Xn#+4U(gf@MW@1?3bUa|$qO1JVG8YFg}W7p0u|@Ky@B +n57p7DCx_Expf<2%(W=*xGFlr3qHaOrv)6hT#a=R=Ve?xTUBrN1@y`u`?dNpk;uJl+1Rs_D&-GA +h{&T&q(Kelpe;59K$XY{_7_DaY=j>^F#h$vFJ!LcU8;XrL?>e)A$35q8J?99D-*9i9j}z<*SgUm%|B* +^b?-ZG!l*5Fdk#6&>7C3T}r5yV7M`(8mEjxHcCrF5YjD7VVP)h>@6aWAK2mk|@q+C%FOu1VG003YM00 +1HY003}la4%nWWo~3|axZdaadl;LbaO9rbaHiLbairNb1rasjaE%>+eQ$*^H&VygQ$RJ(W_AxFq{Mpk +fcT7q6fneSL8_Ac*&)AmsW)!`R$$A<;O~voahjT+&6E&-pq0~n+1ikt~@#Tp(_)xbBYiyhap%m2Uwz{ +JKHx=j>jR<+@wFei)q0^!OVPS`4NPpSK+!CnN?Y<~-xKUPnyVmGuSs|Y(uG>;NtSv!83^!!|h%vAUTbLdEUvyT9%jdI}400e7au(MCz@QZigHK5{hRJn+3X)J(zp;zDj +w&=A=BIp<7zyTqo{73DjBAQ|}r8l>JfV@IEb>U>KDna^)~vv-3TS;i0H;+4EHnv{}{ +9{bM^huHuqE!^>MXo&w`(>WV*n8xYYxw%@kTR4c<+M1!CJL$ +Im(is~cb|p*wIJwkgd_wdO1x^KC_)K4%ERNIcogQR~Ph&4M$;CwR(kw_jToI{1&EW8s9e)1s%rXwNBO +H}I8mm6F&)SW5FjkSKZ~byPxCYezxG;R@hL*$~Sopr!3tuXt3PYho+ukA{{0Q{~z-jM!gxc2AMLD%vS<|D_?XSJUF +)(18JI`V&;|33Tq6>|aqBF_iiU~Bqw>9$69n=M^shBm#`VP{$95}k7VvBQZar+3tni?>|nuT%C$i{yV$O9KQH0000800Wn#Tqi2&NYp3*0MdW}0384T0B~t=FJE?LZe(wAFLGsZb!B +sOb1!vtX>4;YaCzN*ZF}6dvFLaG3Y5C7xXy~QWXH$Zc#}G|+^BVIS1-wFWgVJYVkKI;q|y38kaR^*kcFOym&rB=&Ir|KrFFSA@73g``6n#`&Kt4x=qrHnYuck}}Wo3tRqM#>LaJm;(; +8nU-No`P(wprA}XF0G%r>vPBeM>pU&WXj#qx;YUPZ(_)@n>G)D7(5@P)MN(EehI-OEGSw!!1oH8_7~q +u^bQ{N}*mm@!c@y;}Dh#4r*X1M_svzcH0~CZ8AU4@FnYsZOJfm;0}tpS(VfUp$Y0IC=B(^?v;B`SFj?0|{VsgR&9=XjAXq+rwi-;8TE94@TH +Dv!n+7Fjr&f4yNwWUNEB0HqA<)5|7oDXd?yx`vs=DxT$C8`z--G!wLw5qJ@w_J)EB_5?=aN737b&i|tCLa +#dhN%@a|+5cPo;^gpf|IKlHaO?zWww}$3NizFxODK +pc4qMY(lq7Dhl02pNlLEM`S`>Nel6zB4lDx=4W6rpKWQ*Ff;601d3BC;m4lJ;hP>rG3gJA`BBBNHJ-b +=2FEJbxSPwL5~p$;g2;EJ3uoPvE-+~82q_FIhz_Y%G-aU^-9j5xOnoxb98^tzX +c~dhP$OPz<`=+HEmV>+7s03_`A{o}0^$__hx5{{<8TY=XRn;QpnoD^1X%n)&6mOZC>St9RaYu4z+Sw! +;R9+IJ>Z6u%OtS9)$s|ro_eDVdIf6p+wAmDe|rjVKM5Mc~y{6lHC_~GL4r*(Ru3%}B +#DkGPYN=tvb?Gj9BVN|t>s|0sidyji*COHjir+sm$8}EZV7ITr`t~z0s+IzX$raqjHxW&-c?~%728jr +e*Mk%?f^7CECOgYMw3|vxHha&0JcR$mKg{e!3_o-8Ww2y;?U#RrDBUBOe}5;MyB5!3fD9(BKWzYC2oo +HB3NgtaTS8YKSPHzWiif*=mZSq1#e5i$|@6_t)Y4j9c8d(?OmWZTg7Bk0CSX!5@+#3+5HPlq}KQb=I0 +VtgB!gCX7|S>C;(a*blL(;_WB2Bq+5*p*5E?~`nv%(`*56;2q +BVv2>uQSA7Ihah;{`_-`9J4-$Y(B6w5V2+@7W?ngZk2A!9m#?NnT4zc~g6qw*u{D}WNT384nKB&Qk#c +n-+(@(U0Y10LdniCZM7)dDmr@@ZDinN~IWh^XBS(6|8FK$GPHSGx0z)WFp`C*;~@l*SGMwUyV~LPA>XaTvjBaN;Qg>LCpgh>Q*?ZOjQI!wC6IgS9ZES8G5L(Ga_ +H4ZBgH9NIy^Dnv98k4Q&$7lq)q&bQWroFx~=ltKuDNU;wuxr1pu7&RI6SbB}TLw|r*fz}Re43SZO(Q_BQdGtb6Om(3wr()rZ +|dtrMsfgKo^Y^|RaGObp6-a*Jg4>TGvd&=|vDo3n>8PL}m$2(}<>V3MrTu|~A3G3`yd1~N*Q)tU8j0n +CE{Xu(O;MRpC+55RaoK^-*4GWSQ~PD{L4`4Qj}2IL8qZ8zGpP2FA*<8s`evQKxc!lub^AQoP=zQr{7$ +Ihqe=YX)EqH=TmvBH9$3^b!MUb{E=@D82R;)0>ljaILVq%q~a4LNn%!pvtGc+J#87+`WOK%T+gDZ}ZY +tudNPu=%M%XxXzJ^$>z8oeJk58CR}n=lMAfR3{}!4R1F~oD|f$FrG#|+F2vuy{d^>wEPTZ7l3cZ5!qx-qB-(mZSJ^@&gY>~N2a^ax6^mIm$!c8it1Au_kecC+tIp!;>YyH93YIb-0ADT^Y +Cpd~L;n&M1o*cSc!oHR^L)+ri?$}B6+y36q(YG4LRb_U4R~B)oC)x!N|q*A(HP6D{&*>gj5CBPj8Wn8 +a(@017Ib_W3`s&7m4_8u+je|6bfSN31K?Zaqu-&AE@)nD@A5m>V<${ybOVB-vEhHrVjvs2__qv$P*jR%t%*NI%8$tqP-Kj^-%`UTBYb8fyIb}*+zo(i7 +Err11{8bS)z!wNsny|&rUP(Tf=S>FgHLk+&}FZ02zGfnUREqiiv0lC_sUKmvb#XxvBvrY8ZbTF17O^J +1Q5D{2rPr&8ov*aUv4cyt%}6*~}ubUs1PdD#Z?2Z3heBkLOBh0TL0`3CmSReAHDRE +Owo0ZL!~}o{|QWnv!qaE!~VdG0=9Yyh+V@o?WTjS_ERxzjbgHa**!oTQJCYbMxHJf7&%NpYn2qJ$N}6 +0s0(Z>#0Bhnql$gxtskb#{UQYDoGIHJqlyM% +5UT$mGsM^Q#JfhYWtq{|ve|A@q7vLVqEGv%^QVA^i`y5wHbrJiLaJSy5p_-!<&x1UmYUO`cFBKj%rFT +!5}Y^$nKIJe$PmZVAnj)M)Ns5ILYDO($q9Wau=ju7qE?v6?2;B`9E{BJ24gZnoq@dX|N(L!dM($A!XJ+C5+o$1vlro)vc&c5XE$+Tf3;cOwUrc*d?h6=opNLc9kBuw!se|hx^8*I`RRa&&Rf +Jw2>GeL~_b5xzcy>HEy<$%_-dGSPK*mHO2rda@5VZL)9AP29yyxR>;dl*%LV~c&OqDMiX?1)Cn6?(gG +!|+Y0?JL&HHyPB5H2F5vX&A{sKEjYf?v{oQxp^^E2;+=6FJ@_<)c1IO@mV6Lgv4|R);n60MXF)+HO?R +-e_^HNXHvY4PwoF!h~L=-i~ViV^cAxV%T99ppcYn!5nWqaGSQ?2en?-Pw?#H0EAr9)T4j*WSJ*ank9Fhcf1Wd!w-qH*a97+beYR%(J> +$US?Ot&W$dwe$&ef7214YXS+OzNH{tvif!?rZ8~*D!Bt-L&N+?m@YM^o_wdP6b;P;2YENSK2RS<}C(B +tm&Wt&fBFGmWwH3Iv7M-%H8H!Kg`=Pi9M?FlA__+Y;`LlzQ&J;z%L=__q0|A9A##5*+Ii~H_)w8bKhvEqTbUeG=% +Q#G1^pjM*~Na_!wj8OQyoUv6GS2_n{M<__p0?`JiT#A~+E#5j4BnmabJs}!(46e!E@Gwxx1x(ryw-k0 +7gkb3sttX+CNqd(;j*zS7+~>%qvN6+({^gdD=nx{v$nSf-dI7S+1b{@IiY1N#ZUWJoP{N4P6+6dd9fQM@aq8Ut5TaPhyXBq$Z-ekB3R94s0`;k +8AQm0zMbY=8@-_F9(|5ktz7J7#fLUqU5Bz+q5KQ|V&1H7$y9KrBAZs>=W!QRO(mARk5^ggF+iVAH*!J@y_){!6b5oeiAFd} +^?j*$VPR*>-*v{Go=b>o8QJHDmBMcz_DVmu?G^u1MCiEaQ%-=G5RWJNj!mOR-vZP +v;V`E0C@DNios$_=hLb$8j$A>{AD;UaXp*f}|jERo^nV?2Fx67Ji>E~r}gZ?N!>?EOkg2PE8$Trfbmv +<>O(Lon?0z!evV^Co6e)|(wW}c^q-h6kbyK&m$$hxEA<3iKymLnQauPRKwkDGyv3KjE9v}h9%6-@qFU +hn|`n^jNojiS`0msCLK3C@#qFjXj7g8hvREm_xL?$y4W8cXI23UoRkz|Ji=`oh^I)Nk-&^d7Y1d(fIu +eOm_z%dkwpwae`7hVv+dC*JKQf?@Kh!ImkB2QcjwoltsfKbzEjf+WfhTWOTJUy0aCV%#{imgg0PFUSYl>F1uF5MA +$}yU@kq*|W_{-uD1(!apWUH5P=o+Un#Ly6*CoNwt=mVBW?({uJ_45`K3P`gWEh9aH~03QJc( +3@>uU?18HUNvFY=k)hZdmjqCwNZ2{OGz2N{P&y}UqiT%dl&4R496zSMMt62mj))-zbTlIX$rQe%7?yx +%%|5Jq2pKfs^goq-C$tjcOkCl(0WqD(I4$vR+6Kmqox1->5a?R?e)^S_?G{~k&Jsy)Eh#nJcAG*jM;J +HlWp7$lZgZJn>0@vN)F*!9;iA|l4Hl+nRiV-)j0T?sL~hIMI`Avw^rlsYnFOn6sT_}$1oJ!Y+YPPP(H +47*!e{WyAD{66&8bRYQ&gS-rw2qmbr4nMhL9x{}QG8nNHm}7XxHCu#(p?L*H_=fGUvZ|dGHdT&k_Aqz +}3z-r$P{H%?vs~J`$r)HM=6_9(?vl$DaQI=C-l~zQinEHlhrs|BUf3XbLW$c&sd+krc4jaRmVTCyF{- +!;_Vkt7Rik^`IkY&1P9rdEfOQ7FTZ=w|yGxs^*I2EY^RV*o7i#MtkB{FeKHE%-P#+IgBbS|e^mWf7?; +7zP4zg@kalW6)#m2J04_Uj-);OM5@aGzdb>B5z2BK1eKK`>IYkYlbtD1Qaw%!L0_5p@w3C`Lv1P4cN< +;+ZTjwpa7VV1GN-}zV-`5HKz>N)3poE*Q}eoFa4xUSIN#Q% +m=-P2Izbzk_pyxv#^;yeh3oG!oz+c$auSs*+ih+A9%`{*i^dmEo$b2N}-w66@i$(d9aq4mfNRlhD3)Q*8#Exe3p)xaX>Du&vYxrx82lfwhoB^B +aI_vo9aPX-$&Zw~j5_78vFe;FU`ALBv#viMEo8pa$QJpbXv%l%h>`tjh;e|i1Wo44=&dU$kv^7AkM`M +19(=M&Hm7nj+`tJyp+7QdENy}Z7;z56WyH4{AC-Fx)->nH#5^qcJ{{ztH3_5{X<+n^UN%dAl)C;7InC +J9;PcjyAfK)!ipoLm$fO=w)rWm6WQ-Qw|h<;)vM%(do2x~Ae#f$-^zWF~2t`S$ap7Y7Ht*_K$kiC(T! +2pC_kC=ow1dw}0N3t)zrmY5S6?hZ*+Qv)}cf610{U7coUrw>PajaCNs#uk?Y^w&~oN?k@-mCW+xynPb +9_qY*e^-nHKycr|B9ID+X1K+?FwsO)SIv_aJpt-;&oCfl+YH~(u>(k}ut)O)b2?jGkV)!iA?a+_{QOC +`wq0HXs%*VZR?yJ>$8vOo~dHmccv~IigZHx^k38OrH!px}TiJ8mH=i)=n;e98w9hlVy!tsc#gsmupUR +Qoacq)tK1^QWy!0a%*$=!r95k+SDfP8)iKcLx9D%+apVGjmgr$p^9geW*td-Vr{kE>=wA%HEUwJ$XN +G_Os_#>bJ0EDycl9FB^w!y&tK=k`{y9gXaAdwUx>|8H>%=I3KWV8p%04KJG6-~0OO$o&7|detgZ^6>V +R{Hgy^;jVi2Og-9D+lt4zEvMRyh3F73uZtuU3NwAbI|z8D2ZjNB4=@RQVl)`M +k_oRFL6z*K8+5gist>Fr2dzyWQi4tE{a4OTi5DJyW~5P|@%2fL;Eji|kg-W)I>IyNLIm#_mkCZ&%&J2 +lpJxsAvaB2b^JdbsakyE{;!3*X>J}?EI@O(`*ane2Wv2m_kR1d()z%kC4A)Xye*+7OaqjP`|FC0=$`n +rRIJNOd96Y;9-0~Ls?_-0G#1Wsu7!GRO2R9(j4P9{OeV84q?pF*!bI9$HWan%>*|UPEDcjT=zJMXv90 +4_Hmrm_(*Ak*2-%aQa$TM=nJg=72~j-8qX`aJIp;-a=jKG-!~ehrGSiM3v3=f_onSdVSLM_0Fk@@)~O +xw4ZJI}qReW%C5FNolsVhSKoxr#mx~2glJ>yOS6VM9o7hn60vhFNKClnVVPHPQlc}-JQ}fak!anDU`oagSpxG`Oel(vq@9EJ209npQ}^9YHgQ~)oV=6^FDdEU +G?7yoe0R{!&JK1|b*ybxqpcyeHXFwF_b0(#dq`HiTTf1zmWhz&%hf$N+hk_hfT32OAw`X)|aqqqMLB#h6yu5nq;}1WeO+t +HP>DJ7x{Y*`_S8m=4KjJXJC(V-z52}%X@HhyjX~<#jaX>LlpKD-8)rOfrQ;P&l&|e^i;2RBS4#L +roXbsyUl$<|ld83%Zf15TtO4_ULHjW$ +fB}LK`*&BnHsFj0Z+!%GVeL&MmAssc2K#R*dG*D-066yH3_ZW`D53DB@;ewg6yA2FwWz&2$hNu4>d2V +2}4VC%pLatijDa!_ch3bmk;?u=h3-ojN$1o_HG2Qg~`x`1=LtLMHdFTkF5CirKZcVj-+#sXfHYs4Eg) +&L;5PlcLz)?5`SUioQuvE*A#nM3l$l6+Bu3*IuqXE13YrE6R4v_76$5h>;3cDgKY(_tu?KR&o)yOvGU((?5+bv9FmZ+Azi_Ca?kft}5+ty|x*EewouL!U037 +aj2C5*i*=3i9ltrf@y+Sjd17EEIunSr$$(g2OJ>MQe|EZ8{m>@+YwVQv%SZ +7^|iff?C!EGXdfd)p>8BUrWKN}{zrWpA$W62NrLj3U7IgwzDZY48aV_`LJU`AE;_poOkUa#-Q7wcloH +zK#<0eHNvs|DI}1!pbL){J{x~ZTmTnEg1DtvUQVB@SHyzvTr^cGEytPQ_|ZGss|5t9<)AZfsXr}Ph?^ +R^mlB-X6#x!^;kfS;UQnW;WJyaEWfJSM?>x8nmZ6=Cy$j)a%Ib`qT6;~L-|NOLublpCyJsS(CRSn9~b +)KyKjNOvoXE+mNJRQK{f|6?O?o +KOeIdj&wNT|Oi(HJUGI)nYx!%#hV7Wj@?{Oj22YzmqrQ>fmgOM3?t@9~s(z@VF;Q7AN(_#Gao2YdtnH +HoIrz9Yg6KKmC)wi2hE9PTg3t#A$(+YD=S>hhn?vS{5KX+}d?&wW#OwtiwglGr>Yd}!a?K=Zq?sopFx +WeM|MzIAVCE43Wf1@(ssdb!dGSQvD#hPllz#(dj&Sx-0O9HC%>`t8GqfxWOksU}&*--fVRUeK6xZEzm +m@ww_p3}6rQkO|TQwa2d>IjWc@M=ayu_LocAewCPm~+ip+1$~`M&MGm>6@+l)(v?g^?YV~1)cT7+n{h{i-{9(Vl^P`;QM|%Mx2{p~d7pdRL>F5z1CiOu+?T7YsyUH#)0 +EghsqWaAzjjoKGpa{>{iAXfC?BX`69jZHXxW%8)i|5R{6R +UfsKH9*l154Wi4uPj^7B#H12cLk)_X@d$=!a9=}R3rIYV5++Tf)*mTt3~jkYlR6?nx!*eJHoqxqobqzr&CKq!~6=P`jMq0EsaSpQFZmb&hSlPgky+4_9e +ei~7Gfuf*U*J*P1mhbfd`s8p;=zy9Uf@fgsJN!&rwQPVwKxV`-Qb#;+OyW1rY}B{hTlJU$tUu`piCq$ +fzrJT4onqgc7Z`s8Pw1m8y9GJU8Z~^gs(a<^j!B5PKj?ZBGw5meL=T&E^+C6-#HD|c_1iw$lrGZ527GBHUhorF_L3pHm7n;i1qlcqFB!{%Fcl#Ud- +$twPlZ2zJb`4lS_@CcLU+7TRsjCLr^iWbmm1h+(dUi;OU?0nFc>L45q?Q4sO3IKM&a4m$#o=M|h^e9Nm`ZeA_ +vm=mfGMr^zjUsJ1`RMNkgZfs?iFAM&)rkuT}Fjhur8{Pqg3%^u6O=@dxsr3qQI?EMV*Mzw#2H0De|SI +~w%QWjPNSI*kBa_iA25}EFwoB@3vsn!H|wBn;Ca9u^bx<#a!#s(%jhJeW~=ls +|kA<`YfRy1x;UTQF24y3e)n#zqRVyWte|NrMNHtNIscUd-Kf~ua>Rx1;L;>CxKskj?atqE?h`RAr^;b +Gbume3{3f8BV7_?zg2_jv!$NEibEGB$}KzQvn)*V!n+?eN%{UTMG3oUhF8z{${3M}>5Dkc_XXOxMOev +vLa6n{fu_A1J!pM`ps_&Okck-f%Q8d%>*DO&T;ou)op(|80e@jKCkc4(SGl{NR12Qx=F1lo`a(|1->u +@t>^SED5@JFIt(^g1()+$NvksNugg>-Pjwvi&*VAC*zX4E70|XQR000O81DB*+!Ktmw+W`Oo?*ae-9s +mFUaA|NaUv_0~WN&gWa%FRGY<6XAX<{!-Nkc_WQ$C8`8atPZlgb)BfLAjhtD5BeaXQ7nm-J_KS6$;as4`vZ9h*x$M2_W>o2QA +xPBvK>&B~}CLel;0p`hNaKNk#uA%cs+}pl`&QEdl`#Cy@XFtIdj`5`(9UQ}mf*Tp;aR`%x7az}ncWDo +EgrjqS`m-C|{st!mh_1_E7{jygT!(3G#Kl3o56_Mq{=T9Q(I4DWzBCSZ%(q{|;Mx&<5AEfWn7x};gxH +FKQKj8c&43%&YW2tqR=@)_czysX3rHf`*h*q-Hv=@JQEOaQn0rm)uHb%nAcQDqxRHS};`#`G;xEKybPi3`(U5l}}){Eay~Yh^tv{G +xWcGp*~mAupbR(p#}WLHsZ6gFynm1%@c^rcoc2xSs5G=^aTwKQ3AZU}2K*i{VCbRwpb +(A;t*lNw8{rinnZjo=$5bC!&1QCp=^*x*zbLk3iHlNwcH({R)hh#8W-CNASnGeC-^pJ{x2O_$X2|M9Q +LZ%|7E1QY-O00;mBm!w=a)U;vL0000T0ssIa0001RX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ7`X>MtBUtc +b8d2NtA3&JoIMfd!Q&`CiGx;tof=qANYB&6*t1k$|vUi9}H?RPa>?zx1Uqm;H*DY=(7A;XCdIeXHDzY +xAm2^4MSc?OL3HReankU@jw$1HUPIyUUV`9!IkIG}@2><}nA^-p*0001RX>c!Jc4cm +4Z*nhkWpi(Ac4cg7VlQxVZ+2;9WpZ;aaCz-oU60$i6@B-wAm%0Zz++%vU9`al(d&o5uRxqJ6|?q9tYN*Gy%hdU<>-!vk7a@vHaxBNf?!@~#huTH263up1Tg>|N@o +b3;M@o~=H;P0>a`Pp=j<1wovw5<@vEwaTZ?z17KT)s +_CL>p6#BCjHGI~%)oN-*Q_u0B-Cmd_37oN;zp;(h&5|t^i^*gXB;Iad5w9G?J;<#v)99&BWKpp0b3Ee +e>gw;J5j*ZgRL5y{2>Te$VJ6tUWm3VXHLnDN_3Pzs9M%p7y!e1-R4Xzb_@2n7vxIj9( +8_{9roM3?wT#z^9Sz?X_!5TDjas;1}W1Dvx96L%#(Vo4OzqZASt)xL2|ZU*HUd)ap82fUN3S7qj@E0!FcrP(d +2CT3bDNjml@n}%&rS-fem|NT_Wn3F9sg>_RSpP9QBhIM)}%l!8z%y^j4bumr0jy54~Is=qZ@&EiQxU@cpDvFA +c4qYM@vvTQb7c_?COprsQVx%k9!1wjVSBo0sCrcth-ux$&G##Jtlfwdf-h*r_BA!mUIlK14#!_{N|IK*dAgAgllao8x=PazXv7k01GOq{TU~Al(x@u&RT +N$~8xZAEQnP0lIww?V&TnNeM4<=#6%sfjc +r&khWWaf`Xpa@fpfkTPwjjvK^&v-oRu6OpFLvy6r@Ra|lXX@^EEq2JH@j6TTDQpv3hBk=G|WT}I+3j}R(ZkOf?arM($?Wcoo+??=xy?&>aSbMw$ +0Re9%D46tsSjq7Xc5u@=C9M&zMS8=%ar@bg{lq%n< +q4DmY#Pi8Pg|Lhv~JQMM=e#F~`f1!OR826lgK!7UhGw_4$0Uo~G;P!CLkseJ{oBPoAJ=i~I(>u1+>KW +RM(vN_s%5`Wo$Hi=Pe#_M{VuNg?^LgUi6g75u-Xa@qeLU$m&*5!t3l%6UYw^e$Q4j5?k@v#uI@S;bi| +r5wn>*xoIGMB}&D8*qHj??V8o!BnR;J3}BRZ6hbfjyn8{g%u8;dWhk{UE!(IONLy*2f(sn?`uO&$t(2 +;q8-F0o!GPC|$zT;N5tVAFv;+<1;-eD&3x^3-A$TC{D65}2Z;%(GTJ?$W1R0FP6-0CS?n<5O~S64{=2 +3;_o~%!5hi;puXdsy$`8FSYB-mbWGmP+;1s{GS-+5ML&XA_u_qPCtbKN|;fqc~KaY@g%vxC3>IE5 +;tjW|HbkUSzlm&A0=(36w&C=3fQkgqBtuIoaZ5wH3NTF6xyh0LZC6{AwID<=**&WO{E*W~eQf+X>Ux* +M^7Kj0Y={_*4?CXO>lIu-Zy+y}#za?FID(cmbj1g~JwKVE#8j-xw|%XlplEaibNW+ +QS9QZUB951u3b>bX9T%5{04_U#7y&&fJ5jI?;Kzo<)V;h!nPS`D{u1RKtxEGVvnMMkB-)BU;wU_teesD4(m5fHzlktlarDW7YW1%Dx>1vEKBTyi$uPZ +iheK@sq6nNI^Bq>tsmVh2ph4*t%N&@^y>Qh-;C$!Q4sfjKq)a`-AT=$9U?FFHGcTtAQ1Mug^17_{N?`~ydAB-Ib7{y%2>mNAry +XOTHT2D;Ev388!OxiPR-N!1s#urkf)B)_r;L7VYcsdFT8}iPE~uZc7UNUfhvDaUzLbx;xNy~4&27is{ +KI3W6Qey9_ejANcuVyXGCd+6BccY&=Og7j*Jc))f~z-!rHHVKpNd}z*^}3^HUiTsp5yR3YV`C-eTB9& +eWaDnt0Rng>uorF(FF53Rxp}kskI(1c2_d%9kB=(N_L03gk`zn012q-CEZD_dZmD^^>Xh({|=TTn=n` +n_p)5j#Ewg?v#ZVzJ{a1P(#HJa0wZ*?_j;32Z4T|=$+?P@aLl-=_{iDpB|k5K;B=X(ziKv;=eMxdTG~ +c_Q$@2+B^WihTty?@G7VbVC$<@b%Ak)!pRm+{sT};0|XQR000O81DB*+000000ssI2000009{>OVaA| +NaUv_0~WN&gWa%FRGY<6XAX<{#Mc`kH$aAjlz08mQ<1QY-O00;mBm!w=BUcD020ssK@2LJ#g0001RX> +c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ%KaBp&SWpZ;aaCxOw%Wm5+5WMRv7CAY9;t$ZFhq^%;1W1e2JrqG;( +bOtoOOq-|C3Vn`?=GpQn>1}>*p@AlGsD?gs&;kb;T;_vy+e(+LSoe=I2dId`Y$RbjOHTWRnw1r1qAH&HTxU>cnQ^&RvR^>M`bY`Ck@w=Dfy`r?%upF{8K_N{g)~PC=Gef{6X{khR||6L#|gTT9vKNIjJ0gug67P;_Q=6*lBP8oAGbjs> +=ggLAl!(!nFPOQW@6hBBG#NtgGWT$2vEvb^fgna;_@aalf-ur!0KEv>1wqGNY4%uGd>qV?#D$$@?S^e +Nnh^5!N2yqtvoY~sR*5OCLoS@n8FljQy$gb}MXGG9?A4W={gFHlPZ +1QY-O00;mBm!w?qMfc%Z2LJ#R82|tw0001RX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ)aa&=>Lb1rastyo) +c+cp$_*RSBb7YTDc?A2HcY+l<1L4(5aIt+&4DAG}^MixDia$;op?>mPViInBkU1tQbB_5v3cdle1_?E +5LMWY%4>oqI4J1!JU>zb=nmAsZwWZ#tvgyOuCQ9+wBUR98361S^Pw~(u5SAii>hh16Uxz#vg_*wk*@$ +Gu{``g*&#nt<|gxf +7Gb+I7*`Ea=~7^wRm*77$uB-&n|MPRaulECeb{gm|KcDGA{*ek!}*r0+N{}nWc4J=Ba{76n#ilwgHJ` +TJ+KxwVW+h(P&OaHKZ7mw40SROPSzJolkH%YH7 +E|`%{*enOa^Nh1*q&Na`;;Oq_Kc^=+EnD}n#kS=vaDQ&yEyEr$W?wntD&Fxn53qQ|?Gh&wZfsYheB9C +ZpDXc1i^nv5z1d +nnZgu{ApxDl=n$lbROHh0r`CpNxSh^cRtt4YMfPZva~)+I9zElqr871Tbj5;LjK0!d!tknvijWi2h +6F++u?m{ywKEmrFzhDbn374qy@W_)+(GzwxPG*Kt3=9n_M!6L>V^k&8jrZ%NCA)|xBZQ*JI0)fW907i +!AXua5JWCNjZdXL)01$pmY2T{CF7`|oqW47nO0 +hggAZvJFWGp-~#SumrKoNVwpbtBCTA8$zz&@o_18;@k*qSU~c*NQ!NBsh@OMr83Uh^ +)HrTa*=Ey=jxvc@%{m{7r()`d_J@F;^S%Cv6SLfx$B^*pvsFQJyE~QjBBJjb}6ouy+-5qo&4s;0Jtaa +0&hBFOAZ_KhyS>@R7Pgkwbk~X;9#&DTFhZ3rsc&na@Zp%O}p4-rZg3yP+%q{X8*oU>Gn^xR@JN?J@Tf +^G&rt$2hVKW#|0{@PW2TWhW94GdcBF!+mBo|X}h9`n>iudR#$Z7aE(%I4485%1meVLsnXD6#565C(Bb +*CN@xSxHBFDvxgY0Z$))3ZN%2-pRa5Dte&4juK~_4J*19<%O$GMbnHI3B2kTmOVNY~0|Q(YRX*CMGJ5 +zS@Jul3vCk%xHhW{){n<-+so5b>=AM$qC+DalW)WP*f2*VaM4u^Rr8dLs%R3x;J}Lm-pSQ438P?R9hl +@}t$xTM8A@k;V=&1!h)x{34(F?JXyXJ8i*ekFlO*~2nS09xWlnr=rnVyl_23k?2y6YBio0;slFp +vvty;3##y@?#X5DeXQLrDhh_*nk-=!I1b8vb5sf35PP3pOStosv(DeV8+T*8wTW~&v32fNz?yD7>#M` +`*FBTjB?`=*jd;d-M(A-Q3A+|^^h(c*zO*m=r&&+kF^bUeU=s1Eu*$ci&}8Ac?6n%#~6#2?#&+Hk~vCqQDa0@7A9 +x^2ozy+TiXJRk)*#9SrmV~d%xb)Ub%Viqy3){xm*63pN)E&qs>or| +0tk=)+6J3Isw^*jnFQG@(riMoqw-qBv`jzHd@tsL&^!H%7d6!la`g$)!17}r=P~v; +>0001h0ssIk0001RX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ%Kb8l>RWpZ;bUtei%X>?y-E^v8mQbBHnFbu +rs6%nUaLi>XrD!K=*tKO;#WrL9-g@ih$>htTRF{D6lnHk&TNd}CgzFZRFY$<6sP7z7p;A?gWBLr&05O +Fl*Vo<{(Hg{GVOCo;F_Zy_>zX5A5PqU{ix9A9v%SGP^kOlB#VS4mm$3H2}rwx`dmxx_7CiJd11oc7{{ +!$ae;GHGtg<~7@qu&)V;vQ^yL`v@NVb8qB_y#Z)FfVfzbG3TTesQhX;u54@3zh0R<9*lZ7yYrctoA`w +f1|235CKj%7xMgVPS_%ujTNIuWJ&7?Z+RWLoY+62*z1sCLGb_J+o$>kP)h>@6aWAK2mk|@q+Dn98EU8 +k000LD001li003}la4%nWWo~3|axZdab8l>RWo&6;FLGsbZ)|pDa&s?XVsmtIVPkYIaCvo9(Q4x`5Pb +JnEPhIh&mUmuL9Z8brBF)A%Ta=(*y}{ZmV7HIy}*6^tt`uNT52#@((dfc?#K=44$87|))AH^$gbC9K` +5oIuu?0NB;#JC+ZL;^*Z4Gh?xottl=bhIW%=-H`SA4kyvpESoikXWLXuSmj}}SnTFl^CbXc!l-(nI_^ +4wT*l{FFQVV%JfzpwoMl*A>mUXkbz%%r(4QzXF82-A~3$r@<_y5BLfsO-ylFb^j5A+z8g!r<$;ISZ^v +@&;?3*u{-xh^ks)47{RotzBHSP14`IilAt76X^P<6TRsc?-5Rhi@mW~wpJ01A=k619>+$2d7w8t)Us%}q6i?5ZZX}Ufj*n_ +u?JqQauQlqIeyh30QCt4s6!&TDMg%2G*NmW!!L2HPf^R?#HICw +I*GUgD!qiYtSBj=h0z--qcGSA{22GTVM`!zmyZ;DGpfQA44pi$Mdg{y4Tohsv5_x>C$#lfmun@m(J!jeRsq&pOH5 +pO7fY#mwrOvu_!AW$^V0yuA&ztx({u?|GH)Q$INLYbuE27H-I^?saYEB-GCV67`Gd46O-@6nQwwO_M8 +e=;KPC&F}UXXDsWRYfn>0Vlg~$eF|!9@m)ggUZ@Vv#^^!(tLOk-?no6Sbs{`ZcJ1LUDbiUelnd(6X)(Jho^)4SeaSpv14HV%YR+6hNm +*(7Ovj5~Ft-p=3GT1u?^_Y8iZLPJ#sPY#XPNsLcUo0yyD)|tL?c1+)7@a+HiyC;J!D)*!sZQ4MYBuOQ +OwXinCKzy=@94|g;y?I?03GgpX(`W1qTFwudpd0A4wZtlb&$aBsF+cW_>G`vOPE-f+hItY&HhZ$L*Rr +xX;cTw%b$pB%d9EMW^tFN)sEQLd=v;B7xSf{e#mFM{N!hmyP7C4nHc{*9f7xE +Zs7@364j~Deacan-!$IRnIv#Y|4QeYn~UZBj+%I?5_x$5o^2@AVB^O2xe-qe>|Xb>28HivV26Nh +=T4b-hMj}s9#!BQTM$gBX*fc`BAgLqvA!4ryVk0a1cWMw*W5X8%x5< +^|V#Kg0n{0fWI#!I^|HAt@Ma(v*nB5vL_ZQ~8-xmN^O}u~^xt8$o6@F@k#f8*-HdBwcvmAqFA~|aIb{ +%#lB?Moc&5LLFa^m9o`Ev~^Al+Uj>FO=@dTV62@M(&WTH}EI)_bylT{~wxv +P)h>@6aWAK2mk|@q+IT4&hSnG008I)001rk003}la4%nWWo~3|axZdab8l>RWo&6;FLGsbZ)|pDa&s? +bcw=R7bZKvHb1raswN%?`+dvR~*H=v47YS5-fFXsTnA8+PD1IrS2wg_;hV`yGvkEmK|K3?yH#>3KQX; +S|S#!?JoHIK$*&SqA-MW@A%RucKOAc~ltjnFUhJ&E?F>c=|b3eS_e7{{~>6cadb$xRkLu$3g(uc=zjR +r}TJuFGsQCm75km)9dZ~lWnTSd4-mHLUKc{HQ*4(K)GV9pxA@kDu$h{T8&B2!BI<#5#~-va)w+G_sP)6tnE=vPOYi6Dg_X}P-C>`&U=tLXo?ZynTZ!uj$l@W3`}1{mqs3^EQB(r1{U*vq3j +!8!qf92Im}WxLOQ8pSR@ZtnUJudkfP3Y@~#}$l=$C_CiXCj;*lyE^`nNge?FobvmhWmH$=$7oGs$^`Zgijyn87hkmvR;7Y$aB3v>)LU(@%uX3dDnW=Rz#LwdfBV)& +*>|mwJaoNRp@>SCZ>OyftHb%vvqp+`kEZ5{xAxjZ8HC3&kxG45iP?Dwm!3m!4?lv0iRAzhrj5FUXfvA +?G<8ks=@h|$+o7-O8J)KtBm`b%`(HBjP~q}R5^PJegjZT0|XQR000O81DB*+FQ;*^;}-w`lwJS;E&u= +kaA|NaUv_0~WN&gWa%FRGY<6XAX<{#OWpi(Ac4cyNFLGsbZ)|mRX>V>WaCx;n+jiSVlJEM89_hhk4u! +R6c3yavIqS%dN9#@E<9KJr;nAT$peZ5*0W2<}IbQ$!R#kVSuK+10!Glc!eW|Xhu6y^UF86G;+H`GK^V +N!F`>L#478ga?#%)#>&BcX$my~(V6Y);I%35BxWtsOc%8J)($NQUf;aE{ +qfC=z2OC~v*bcFjiRQlyQFPY>&XR!=jOwV{(md~e=q-kmDK!0hV~3^S@{OV7vifeuyiC +Lyo}zw}Z}mUbMHxrmXk0O7ZPySTYws*IkyUD_q~|kp`SfIO8<{8YiuS^QHXzJ#WhVk=HYrq3QBgHcx6 +C17=X|Z`2FffPYGOMM$+*ep@8)E^Ar<^d>ISEbU=4meAak#U{@X73v#+(cyTvFj~`OfD!l0hq8Rdd1b +r?xL+$caH$vB#wORC+7iSD8vrtreqH_RSx<@?lc>MY-J__g%f~F`b>pJ&o%}Fk?`po`H7^owcC0xzH# +&Y7H~hVPd2zA&>D`ChA8vpCaC@`*?&Zzf|N5UF-T~;V_b)%({xoNsyo_76V9%o$7Z(>P->{V+a!vG_G +)Vlp;DIIZ8S)1)jSyreaBVdz#Gnsy|##%xb>^{Z*_(Nd!0k^^2-W5x0F6+}|s(VFoDu-n3iv0{cl@&Z^al`7 +eY+1@HUZg;Yj5p6%6$4S)NK6X+SXF@)Ph>J@7X3mjZtUefN~bUCa3|Q>{Z-Te4l2?2xzXmPTv0+?)v{U&0$;Qjq7ezia{Mgn2fwwnJQ +}O{CxzK#{OoWkuGmRvPOK&o>%TN~+F1acW{hw^zb+Zb?zUEr~ze&2wwwXjK6Rt4W^RlyG{2W*>nfT!OO?=vly44}ebGGKJ +YhYJm2iQO6=2E+;+|Z^f_@`D&k#dh*Lj;ISSo+^<*aWD>hY%)USO_9aEIcXcheId>03>L2oJ?m{!(Nt +A%U<_|nj-V!Cf==*7#7@!F7Dgq+}P05;7*GG9#G&yYfcSvf%r$2s-PGWE9$#6V%{S6DZM9o@y?Pey=g +k{jdgs4cAP_V$@?dyOO5)8wyqv=V*Fkhzh`pvh4^o(SqNkkXvs~+>z=k%BwrrQ;Z|i0IF(kmIrh}W1a +R7-$4d0T+lih;HwHb|x3_my26p|v0(rE~@~j1`3Wh`JGBL~vw}~E?=M6tSo+&~>HziwotJc5CigYDk+ +nlUdvd}+gj$qNg$HH;2?7>X#nR#E7qZsXZyDifMY#|QPg)Av!j?1av^|OX;&Xz{wyDxTQr>}>p-v#~{ +^nOW40dMSAkc9SQ8T{j))P7|Kx6Gk;y*xY%&@Ue;2?_H3Tw&y; +PobEA0Km8(e;{dvm%Q4=Yko=Xti$=VLE~H_@?!2a(CxYUoW}!PRjmp9h?=W5o_KUH!6>97ud4Hyym&5 +^sNW1&c_HIa)gNA)ifLM$`rh^;_)pajTHOT=F3D__^2lqoPr9pQI?7qB%pThWvldWF+vxeQ@8?)TsYm +Y7CU@8cs9gI4(=5gBldkMq+Jz77?mQ@CX!ITDIbLbQA4Rn2grs^*=OS%dP9l0HP#NGC!YsgbNY%^E}b +gTyuh0E3$GBE4%o0=kE2wKjo?~D(-;TG3H$GhPzXf(B0-j{$&?+vX&FFg1iK{t_Od*CNJ1B!fT12abg +iRb}Z7QOobES@>x4>MJcxFk(*xT*K{&PUmZao{KnLk56aT2*}{Z6Y>$5%2jNya(E?I?kp^Zn+LsB)KRca|Wi$B8)1@ce*+4o%ztX!l^Rx+ON#!j3HAm +7zcK#8D^LO4vno6wjKlF98JPHsyW6n(Y@{mpKzV4GT77CP6AWPPcV7~nyMJJ_2r7)YE4I;`|UF!Fa@lj7id#aE9yEG6o*=vfMRd80e~!hQJ`O;c4hRZoq)gifCvVDy~?S)r4#39kfplR^o$M-BWSOz`|_VWY|Skr4DXOAoozvF2vSDCKf(H7a@q^h<|F)fH^DdK7egt`V;XG? +bnV4L`;8kBxZXKfpx$O&J08CMm6 +33(u9vqd176iCsjN2ThT(L7yGy}tHfJXxn6-%B6Q*!e_J4`Q{^?wVMv)#}cS^-8SEb|aK~ujnJuhYBp +s8r+Nn^s*>*R*wC7^n8@GL6RzJdaX~=UnkH-NtcAEce4$*E}VVneY}8KfZ1wZV^a$!+FJU@mKW$Jkp0 +h4)6d8P0Pt`ZG%)dwlhrq$+oso28X3Q^yWsne1MmOoypP~vJg#$0aw@Xc;Fr`j&-r6)MXz5(fG@N&8? +xiTEJ05D1Mv&0#N +JK+_kZE&M#-^5G@D!1uKYc+Teto;4boyaHGI>|xttK>Yl*r%?#U%NV#gj;WO0lzqEkf3cO +}6_eRgsX|&VvX$*ql&`tyA1Ae9x7tjnWpf)k>@%4Nc!(#}# +9ML9Uskj*hzsEs_e?J7B_l!v#IpAxKq)6oyoM6AT{_XwmR2tZ~ek3?@zkgGeuUqU-Ety-Pd|L#k>5{4 +)NDWLP0MwB2JqgLzI0(492jf?bgUhzXU<^frfY(1w?GMQW~zH{9|F%0luYzQ7ewkXB@4v{pL~3@P_L? +HB|yZXCAF`KdwHHIH{bE@8ijfbk})fh_@R6do#zYikKqEsP}v{iY3!gyCzjR8pxmfu+!bYSF|2y9?E7 +tyXT7G?K4$K8=3^eFq(|Kb9lhX(!VV8EywyB9k7>FugPGgK|aI4@lWMS8-Tr#FH(F20QTM21`YO+_dM +UO&Fr^(VU~tAQC +q;v88gzxX1Z~eHs`hByK7AzOULNnV_(TDm&H=7z@#yfn`x7oDk}4GjeAV17U_v5#vb#~8FBj?wwcQ3+3(eOdO~?rs{)RypPHPAsuY@F0kebKA*|Q9!)J)om-1GJj(K +&D&?fvq#6Iwd&`crEU}qgE3Sc8Prn=r@apo&`fk{MR*6e{m!!0u3+?|RG64yb-lz3-S9_HnDNo^b&BI +2RHv6j5@BB*4C0^YAdHN?g-agGVle4X?RB-miSUsXHF_;(R*ni;Y&eKf?pO-jHsxtofnSHGDh$U-u88 +&uo)gTbbCwyti-cWN#nBrxRQx3pg_4u0QI1lJlb$j%W(F1vrwshD8El3Xr&Ug!KG9LWK!8uml& +(PgNuD8zbC8nhQ9+bm8a%CXy>w&-Qy){48*YmX1I^jLgtb@|?&mMnGJ;{i|FbYGgB!+cx2%jqoqiITN +TbYjDHR?oaQyRuNIE*#9hiFNo-DV8el$ey033kii07eCCTVx;tv##Stc*e$HvgClKe#~ktOJSGT?GiA +V?BWNm%1Xq^Nrw$REnp1&cXfu1C?5{L_stEfUhK?O(zWGg6FN>7=wo^U=Nv}s`4L;KGIU>wGvnfcPqc +UlR*31nD_Tvc`@$H?Q(=DtNeFiPaMox`Az?5o>Q2yu%(${-d1)XCpI#V^rYQz}9u-6KdEEkT2%+J;)% +gU$gOeIhrv|Y&0mEoTJ6z>#kd0lNvrO4HU+X#s+%+FnHk4p}J`ZCDAIU*ZLMt4d!6#TnfDg~dfEXpTT +){9V%}sHA22lqG`gSo0Vi?_j0OG6`U7?G~(9R7fSa;labO%oP2kNjw7Cb(xii{RAT&`?Sa?%mdXD7(* +kCOzj+=|2(Cc}iH*i){l6se{Ir=}Rw`I9SJ5JC@0!*!P6Fd)o?0i$NyU%Xj#FI+iiB|FY5CKMT%kh(l +jPzlomah`NJndcdBxUkBl_OgYvN8yIIA#)+Zy9vO81Rlp0-m+b1Q23gDGxlxB-z;LV1rN{&IGZ*l6=O +(Pd{ZOWDHG4-M@fl}skMTT@p2Cf_kV8djc90t$gOc9ckgytoWYCx-1sP;Q6b7xx +|OL3{OUy`Ev466pc_79J87LlMGI$1qc?honrvU?1vp3JfgS8dgVSQwsbKw$XTbvIk^$A1Yi^Pk?FUjv +HR!6Nq-M6EKYH5&gKFi-QEZPTzg5*ef2VSQ*k#faXYPort~39zk1G{$`WwH%N4XYr>(X5unczwpV@eQ +f%Mn)RbMFP>vBRjUMBijH!^a6~jz?Jx$dV2h@MYnSj2LPZ`QptU_*BIAs`e#qjyi9YFI5TMwTr_D*UmtWuO*yXo@CFA~G5xU#Q;^bYsvg$)M@jm1k}aww! +WW4@EAlL^k=krzOkfjs*rHQ2lp_hQTNg=(m*Wv~@ly%N>3q6R~p;xjX?sEeciS~D!6TlM!}0*`xlQTo +XXI%0FI_?%@A1$gaCOxxDr))`kdSr-_M6$_vYjyPCV^9t*2i?+XKPDH{B8@qBeSY$sQb*F<+z^iLPVXAZ#)umOp2GfR#3 +d_c*bp3|iOXv1}&R){lWL%U=*cgs&Bs +=BdJu9!))JE%+jHNfe@|1>IZsVcrAP#Ys_(Y8CX?wL@UvaVL$60U8aV1eKDiQei!pOO2v +AU!$RH>vTETKiEp@X+BQSrHC{UKyat0vJ!JzU!dQ5YRkf%h}K0jHtsz-^GIyA{*=Is}zYS&PZVhLP(JXJR$``7JKZ++d74F8Q@1PI%Au5U +UP@5V1f7HtME6rNo;XLGb+s{6Rh?7dU_qThZgZhL)Z5R@bcS0#m1qKH1Zm;Z`Ok%le+_5uPYF8&=oG# +k3WxEjWSg;4(%;}D|cpaCY(mUDIfb<0ng+M>b#15ir?1QY-O00;mBm!w?(mhwt#0ssIY1ONaS0001RX +>c!Jc4cm4Z*nhkX=7+FOi4pUPE$o)QA>}TFc7};D@Hl(N@%;KS5JTu>GCUKXy(Vn^h56vUIJik1{&h|az&3Zc3Lll)}JX`Or8^C(#%xDg8a2o3&m^OyvXbiX`G+jN +OObo$6J-orij2;2*5NbQv;RH1_C=}sj=#a*{W4P9%!QmEa?_FbSBA&waA(DYMF9^Tu%J=?ni!RPcoLej}&0`eKd*|qjae>2CrOo!h3E{ +4_;^-`_|3H3J|D!I}-rZ|WSN+n-K%2Qad3g3$uc0zCDRs&8bR_Hy*6|iCtzeJJ7z<-yDR~1MViM-4N$C@a +TY@3Q=4NJroQbQ(kp^;QeAi+D8;1!YOTqPTPvZcs`-pA2O=z=&`QUQaKDJ_z1#uSuWRmzH^e2TP%C{_ +wpc+Ly`gsNBr{)!K%HZ03XDq>r7ugD)HvfL}N-e}m!Eag~Sa&*R)8NW$ks3c<|k0E6_Tk{zukwrx`c5 +?^24W|<6G5iuOWI-_!S!jjN7*i_!0o{p;$H0`RXdx>l^Eje)B0|n2h%5Mwg;ovUE`lTU-d6mB5K_)E< +f;fv5#NWOqJL0J0|XQR000O81DB*+VS}l~00;m8$`=3t8~^|SaA|NaUv_0~WN&gWa%p2|FJE72ZfSI1 +UoLQYtyo=e<2Dw3_pcy44{HY+qb>SmtO{h)WF{?|1T$F_i*%sU5@m5l7FCjp$NR9qea|JSFI)EP!v=^ +Yk(Y<$z2|^^B@in{q@w@M5vm^m>lCYS)%(ucOsj7@B#XMqjE%1@cZKK_1tz~8DMOLO3sqNa5&qh`APuN*LU +i*5+@aNYTaNEV*_|Mtw4SQFr4KG)29vCm7wu)Q%DwvyQ)~;>c>ELA^aOR(|fd^Fq(CUMqH@W}q +>G8vJa`XGo=u~D^b6c$V#?W(tZ)`W+XN%=>CcdVkw(L%p;z8Lv)l}K7)=GPzH_(2?3SQR&%FUfgF%T^ +VW=C5lN?}DdF)P`7mWiAVRJ&NRw?DCN<$ew@{$~9i#Mio%skG&RZK3jtL7A(W6a64;qbuVVN`E)49j +-g8bqi{Dh)R5w0u`xZ;ztKCxj3BB?ML|$BRy)|p^R99DD_T8tmO1~Ox; +X^;nIHPaJOa)1`s7szY|Fvu{Z2`S1i0YuaYeMhV?dE0+nrzLUl#!mr49(3>RMt@Ja5H&aL5<&_!m39P +yJ;u*RUGz8Xa5KE)|}2dwX9bO2$Cti8jhK?Rwecm#&UY-)xVq_8Fl0=qs~>5WHPlbUJbCj=3sCaFBWd +(mD+qpunH!3O-9sfW~?UvWOLt!{d8@ARG~4KqhNFY_yUPfZKw${Wn+pp+bC6{{f?Ig9YuL2cbx25RfUPjoczcf}qSQXWC68OZygi$Em<$+`;TS1sR^bl8i +iAModo3+CW1XnVnQCm^*dxe4V8tGkEXfwZfFopz`8}vr=+w@1&RdMl)G_pfi;NvI*`F=Q{v+J?Fjb|P +$aCzM;lo8^Uhet9_(2FNQ!95A3aTDC-bF`q%RlEr6my*hLcC=HQ*_=)Ju&?(haq$XxbhCw`V!Hmj`1I +n31a*&hmPm!0q=eEHt-Xc-{3GL*I|m(g%8Gct_I1vSYe$=nSb+J#ixqNPl=!!u7e4DIK$tJGPQH +kPIrdP`Gy^9{xJjj)>Q4)ieo0cP)28Hl0v(l;+9wsSCi*gO(!u8267J;%8~x!QSs!&8uLV&F$kkgfmbT%}T!bDIbOQW_1Y98NgtW+ohKmqCL|utk5E8N#wOG=n<`?x5nU(7^G)p%E)01AyM1XIY2t8Ah`jwG* +Hp%-)TGJn^|5bSa>BPB_H^in~;4P=h`=LY%dbJM7WRC>F1dLuBiV(a6_g`iYKQC-#r%)D7b9Ejp!h+` +UDUtc-^r(HVBdN2XFU5%po*S8m1R2plSfp6VeDOlOxVY3B|{;-~rH-m4ETdSFlP3LunTAs1YA3jX`!KYqErdH!kX +TnFW#X?8oV<-bv_$tqW?GxAZZo|x9qjSh|HN0G9}L-Gc}Z{ecfW}^iPVpNJtCwLwvXnKqk8c`b}ooyP +6u(2=*1az%H+BYf6;N^KxZ=*5h0Ba+*vU17M9raKeZbr!Gfnm!dRBX9No=niNSDSIKTkHAM=+OI!<@k +MCGe5g#49KLxdGEj!;%Pe?dBBiEcGYf!itsd-jYA_@WGX5a$Oq1dPQYD>q53bVS}zcMKR3pr{?z!TW5 +HJQy11Cv0*B7$_OJ;$5+N10dE;`jB#)iUW=267WJ3}Oh0w)3*0Su3CZBokVrk&hh +7P*ZeF{Wv_MBc{gwF;4R?!;k6(suZHJp=0;kmHC@daC#W-ag6@H0Hcyfr4lPMCUz0^@gqR +(UlQ?~+6!O}{43PPIff|Kwo_<%l%&xBH%h`VcP)h>@6aWAK2mk|@q+HT%V^fI>007t?000~S003}la4 +%nWWo~3|axZdeV`wj5Uu|J&ZeL$6aCxm+TaO&Y6@H&zQEpJ^S+{$4X1!i}rHN!>z>DnQcvtYSJ8EjWY +i7#ZH~Qk;5kg|UBthUP2^W(H6J87v$b?7%$w5wj3==HK+Tt(dtE#@vWo;+1JUd-g=bS!uF5fv-!@V$w +5@H8#5XGao!PS@tjeZn(B;g(-*<2U}Hj86R%r(?<$V1b*%6un?%!u2=oU|A0%_cDAi*mA`iNRb#KMq` +0lFFfxKfDko98U&$E(+4nAeX_)BHDA=<|t(O_%e%AH<|MWk48IAuH3f}J +20eXf5Z53rb7=-|8@%}R+DGt02fP?Mw3g)8PZ%8bUFT?l3E1abnpta&#$ICZ3Y0Y1(rvArxYBU?a(pCfJk*c}YaUi)BCcdMqMApY$1p0xUMcDn ++QA?kK6|AmWZ5Qpe%`paaG5XfbENI-60-nk9po@I-kX5(S7 +YYiENJ!dXSb4)B0W~$6LCsmUAN5O8Xl3oi@?c1C0k}bLOLByEfJ$a(Xv!c7T*xmNEdE`AeW!=+{O6}1 +BtWCSZ1u8@J)+ykD$6Xi3Y#z-$Vy+wPcF!TA2wdiIA6q_}#U4?=dp1o158kpfR6t5yWl=1=SMW7Ui{^ +zwZ|2sV2n1nBO;W|0Q8n{S%0jLtkpnE{%vskZ)Q`D}JtVZ$x-0%*Uk2H7xYxx;4R}IbZgA@^6!Ft;9;D4#F3Vb5 +eC#_iGnR=CjxQ^b$G~Q8+lEb%M+9QBIWTbDHHV$#Aytub4W}>j(4MQ0uVW{L$oIxqA3BYh;$81v_K5` +N@L=twqU#}1QLNm7()S|823^@OsT1LG|a$#E)8R5<#Q$6RM^ct%^*i6+7!W*yG8S%ONt8ExU8R)P$P3 +qtAyT6o=JdGY4A|Ch!2L9cZo!OC{I6i-I7IuU=>m31-6h?32WK$)&WLPs46U)+R0TZMAKdhB8LcwCZd +Tm$@5ArvZXLd*iHp+1_a75YD(ge+%m=lk$?zyx?(>ffPoNN9V051nDC@Ai3ycrZ3kXRBOV97UY5Pq+E +jC2F19BZC+lco*P?7pSAj{8FAGXuNXnqC`zfzkEqGNHtWN7Fvi8wr!t0fN*Y;V`XMKibI~owr#+>@wz +KfnWMP=Cb<1`eFdle$r`Ys(<=#MRX2*6(>f9eDK-$+O6@y4e@aB`FQ_Ji23fre|-P>pT@863rRO`tLGm+em9%n|I7H +`SL176jIaHDeDLP@+B@TGUylzy8Xw#h!~GA&`=5^Y-x%-zbG-k@>O12gO@`JE!b_-r|D&(S;YWAzb$I +9c;m5ZRKfQhU)_dgst>6Fq>o4x#_{spq-NV1#!6P~R>uSp2N-&GH_bca8W#vVO=G8Yq8gr= +anK2v$|g^L=r;Es^SG#_%WhY+2n3!z)z +dS;JoG_NI{nVu>a8Pd1KarQsA{R;q1&5?U>{jg{py#_7{%fKy`fvCY;xW8iaUwlAfUFygvE!8L)CLf3Ez01G@E +t$kXHLhZ>`Yql9%#!`FLSUP#qIJLT32k;4WlXxW#8a3sMW2Yl9?Ww1p+LniQj)ur`VLJUPMP?)R))Q5 +rw>G=7^(eZ^Hf`m!jM)G6>k_d9L%ab7nqP)o(AYMh}tBO;-R6)HRnu$@SONQOisBC +=D;$P)K8Y_B``=TqYNXXr0vrt?m2BFdp&@*|jA%{XGB??E2ikOmEUB={XRqgfjwJMhtyShQBlfebbCF +)kya%e)q`fBO(eh_E~nOfhuY_?7!4r+5VdgDtpb;;QzV%(`6APa&QT^zDJ9+C4Xfr0Nce-_o|Fzrj4U +7Ad+SNh>fz0xScn%huY&rGJaE_%<5-c_VQu?A+4hx{#5ecFWJR4ylU-9$${2C1-@DvtH-s>^P@;;V-+)z1R?&3vWHLileto+$6=8yk67<)!v +eAb$d+SjagSh-InkZ_7H?Xq+JDWv3D2>1i5sTZFPl6JeS)valeaY+=D53+m91rA+_ej-%YSECe`t0+~w(9 +@=z2z?-kKNI}Z%pH8UH+~SuLG05>){V3GQuV%{)_cmLVmFRf?kO(INKJNt?Eu|ss$--VIg<& +T2{UH2}Cp!i3GmQND`1;8hON~_E5oAjQW*;x%vy4-mGeD%0$!)!Oa}YEGY#=XNUQafTO+d=z3icIicP +lephIr(wX9Nzge@0DYh@_LDc|_|4F(3UZskAB4!6s_55s4zif_YXQ|lN? +M~`biLw*z|@Gup?J0MJ`um#_N6SGAF`S)Q_UNZ-5}aAXNY@7+)WA;h32+wrYZUM5AS2gKIzGJ9_!$D= +;+uC_F`!{<*we*fJMAOHE`f8Txk`S1Vv<-dP=_wLuf{pOnwfB +OAz{`k8;ynOxg=XWph-&f`R3;zB5eJ1Psmlps3qJ9D9?_cWJ!n_58`0}04_5Nk~KC7x@M6o*S3A+LID +J8pCK-ZFNrF&O630>hPlsZR4$fKesew1uJQ#4S{_Cc7^Ct$fl4bm%^3M6>h*SC2K?LwQYgh0JWqQv~DtXGfc8 +Ig$?T%vMZc`+Rw&*wtcRq^@7iPk&?YNK%J$|eo~$=+Kqml$0w4Fuq$*z8T+W1CCURf40Fh?vw_u2c|a +Vikka{S_?+^DMmPnciIApn5XvOa&XRJDY&z@I9Wrq$Qy!3;Vd~5~PEg7Na*6dE8PAdV)Xy>Mkg`U;u< +ou~aaGj0>QLx}GV=?DCFKdx&$VPV*W%|(I=?W$kTM~=0B+r2yJFjH?b7aOo$?E8r9`roS_IJmg$pU4S8RinCqzTFOY3323A@5cxCLSzLoR_ZEFq;!hFJ>P1WuHsJfRUvoyI!NO<^Z=fiMCg +W$d;wb+)DR4Xcy#fQFJy=d)omgp@9|jV`r472@+Q=AzLAg_MRmTkqO>$N3E@BkG*wKBV)sAt_IYI)|? +2;A&Ey5K}jX40CXjhc4WNsZ4o7^mA&R6P`dAW`R7^O^19@sZX?>FTM8(}-4Ba#X!pVOxbxlg!Q=R!ntKrC6x13IBAgbSDQfVj>=3fx$TkV~L-K$ALmBZNF4c3 +sK?Vq>Q~ptGb`g^jQ&T!h*s80wTK+=M!!&3^8)^EK8H5o4+o!(DllU`uQl_QYE;W8qW>uDE8Qv?n#2t +XGp2EBL54Tp9d9O~u&pk2*2-=c5kH5C`f!o)PB5^grsr4tFAyYw2Bxx5?n+L}2hnoAicb<6{QRx(vtY +^wl`TTDrmYfs!U8J&8xr(zwTJM0_%M>zzI6Vgiw7>Ct6QBE5-sRm>R-hgIe~(wOhKU$ivsdbQQGgDVH +WuF?yZGp=_r3X#U8hr9jUnn)*JCYV=qD2XwUHev}VB0W0sP;bH;JqK6UAp@6w#Vsdy*em! +}1nIh5-R4qQ2pI`QV5jIDTPle242W|p4nMMj!4=tbAkOG~Uh@mzVY^}<=Y>TrB;27TznGQ5Y9o^<+np +>$V8+7dU#SmH7C=8QBvgix{!v(Z*X=puJwq;Y&7^;UY&`iBzdIMTSjpiZL{X{>E1^;-wy@i}UlQaWrg +v0c~_w<_4^Ri--XHr#J>(C<1*^KmLvEsBkm=-bnrd>VYzfoXalb>MEqT^^g}D%gBb(!o{X6+zjB7qM) +gNYf(@)i1mgYuye029)+>V+TWt3mw-Gda~8&o4di6fRe%Qjt7rWL%r)!i1nQ>P7?j|P+c)h!wg48o6J +3!O0XwhiaGf0m-D|kgW=z3>17<{60?r%yC(?AItqVUwe1lcOfCI(W~)yIpv2lp3f;JlHJ5!gE)}6~GQw{TTph%y)Q|T`(UXp|ms& +wO5l6D=rY&+)!7O9j;ucDRWXChB}mld0zJ-ro(??m;xxf@JK9`M4W~>NhR14%W$m1iiXmD8%aB1OUT& +i2OZTHrjGsLGdI3keCEkj0$NBX%9%-JPrq>bDJ@L4(6IZPy&wT4sE8(ezY8M`fweGM$sUIF-{m$5#vG1zTS%%K08GIjk)e=jZkH`1V8Cy?=r{s+X6V +Q*e;=ftcg9ndF0G}ld(~$~U7V{{#bd+6$9x_{^p6MdvpU;o*Iz$a=dXd(+Qz8)wleDVTr!M@6IvH4U! +h<1`3O?;6(seU(VXK*tr?yf*E35v%lXdI_tgeNAZYoy0wBBVW8PoP^?_m +x6k5kIWriF;|Z+lT&rwuo|Gscr~joe?K1N9|1K+j&~A6J|i<7xb!_Gf8#(KkeZ^<-#O86byl*K6r+Ir7l^%E+C#$JO1Pe@h +kmI%)xWX1HA$X)^MMk28aF1l_K2c+c+oxWAZBRo7A5p0~kvJsa4u``5xc?vj_y6;M{h$B +vzyHJk_rLrD|K}fnpJv`T^t;R(v7R6PSO2MhoBzn0)XL_Gq0M}hyCP~e{w*zb6qJj>$9`@~nLKj~)ts|flDL4!f=d;jcp{G^ljFw#qn^keQPL +7ocO`Odm-P6mvVN0{a_00Slo?m*j!nKFA1puB?try7uUS(FBRu!1z?!a+FCG)|soi60uAzZyUT^hJZ_ +S<>-?%f<-nvFiBU8P89Wc&>zQ?r4ZZf8GK4&>#7!K+z!ddn_Fy=n+79e|s@zs+GF +KLM}uM`i?+@ARi&na|89md^PG>=a=6EXzz45eVNjLgLQ{A%c7cNRS2T&%aw)w$A+_yhvW``i%2&{w+n1<&H{FbMH +ae1`xL7U%~6Bzz&_*2L6sfpb>J$r2{nFW&^k2*zWUWK}yVSR8|rbmP?fml?)?Q#AP3im09$0~m+#s1x +AcegxPkPGT%!(3zO8VcsQAOvibDmP-x`;$;<$PlI&mr}!&JNTX+n9=-)QU%I^n*1czV)_0TG&vf@+86 +a4Rp5cY0nn$D)y+%phMv|G-|rj +itw}NZ0T+v=Doj18x?x0Kv2k@5Q4a0?{1dF;cLa{vY8%X54?ni{q{abaTE$C1^rurD21~I70y4RTgrG +D4a!fCwS^Ju_h{&UHSOm|KA^e_<{ZK!=L`F|Mmy{xBt+8V|Bbg_ccrI(s278@Y&8?r-&&@yu=oR`)Yh +H;km7qgr$5c1sJ54RBnZWcx=G*GRX2I9t&HQM}fAg&#{*E`Q$YX^@axd;f#<&MeAQ+rRe)f%m@TMZvE +hLfZE?cdxXrw3#^0vL|AJC`HVUnb%#QNur9yER#GC2<8TtORLkU;z)88Ta`O#quk;_K_0;GCzoRAh5} +VtBj||dFtkDA|G`d_j?m}bCmv4;!96$+QDJDqm0W>s!sa`1u0k>%(ceN2vOK`vkRZH+CmY{%O!N0`o0 +SBTb_9eD{+-L8xFwV!A>oJ0kQ2STZp0SZ1VwPV3$fcjM34*-@SY?iUFd>&ZL7MtGLO2D4i77H|8i#(M +tbu~yU#W3DE4N3;d@U^%wqyGbN2RAje@Uhk=KtCj+b(ikftWV*BZgtPdVbi0l=O9j74e20^Fu`3yk +@acKO24+zF}iwzP?`5Z&JN#aWzf}Q|0iMz%p4*@hUJZMv<+BS@m^mkr2^p)85Kh+^#k8f4Il<(R-Zm* +a^7;x^=auxLcrIYiW!oMPU=~0i^oas8=*N}k;c% +T9PD1aTz2Rt?r*V!BaKEr3m>U5+490Q;l4Eum*pXgrK4-GT%0V|+Dm}frnF+X5+5CMY3=lcl+d=0>XT +Ga}`a|2*}?VPr$@=EF|?tsw{j7W>MPh_^;QVOB8ioIgPy(Iz#XF$Zl6 +0fxF`Ym1d;az?Bz;u)bZNi8iSqyJ`vfc7-NaXtclgYC&jJaOXjFvz< +@dD^t67u&Hh0JpUK#{LXGq&voI9iJO|Q+kXSGY(*>SV4R$-f)a9Cilho?gv2*0W!{gPfQeJdwh)5dR) +$u34&<}j9G#^r)LQlfQZ%#CmMnE+BfD~5p}e-0gYML50Ywl`xvhq;}}h$V{8q^e2(M;ZAgysvNz5}*j +NNoV+7U)=tm!79-pvu5;4Gfu7AdpDaq5+fauxIr(e{=5IthaZ$~(0_8AK-jk&I2O?(Ita~pDdTSNRok +Y(sta}^+PG<%9QA@xfm5-CBPV7*PnK`UM%mv0du(jY9~!Uh3jlQXtJ|3;xZ3`0Tm-9cpk)Ty0{#6JW4 +ych6+@nKav!79SH)X6xI{`m@O&Dw^0|NKYYrvLWmf3JsoQ{gXZ{XW67g8NDxLm6Sb*`zyUVW_9!30@% +6KsZ?*-(RR7U%=l1JR10XVqxG*1kAWDaW9rd2o919xyLwTNbN0#p=0zDyz-{vSSGGo0f90Flo2{AKf& +{|2*JwJFA4vvFL(U*oO3(V>o{n-SkIqX_b4C*nQmOnQDN#OBs&fskn$S +M1s2o+_+-;P2yQWkh>j1foSBg`T!j#n5u!;M7Be`>^L1ALpJ`6YMjlbF62OfdQWjviZ_mmEdQ_Kui)tVZn_3_B7_!XY|_<@7Or`?N!tb#`p*5RV=%duq!3 +tP&?dNJT{h%M;hP7vFE3-8>p%M%s8}eE +Cid(R=_K40*h$a1c}SR#7y%zwxCecbqj6A_6tS$xGGD-f+0K +D7PK$N$arH*~m=yI0`Ze8mHn&xp%F41u)FxX45_Q>>sK8wGq%uP6N>o<9C2j8A^16^y71cB5~7 +s9*^D!7ze0wp@LYC;Ju8!+gHOj9Kv&YyND-2h)-6SwG6TwL*gY3ZSewg6;;&f)#Kr8NLFtd2TR$1k~b +~4OkZG6R>aiSBfE&4#$#eoAdP&-{5UPTet3kfVaUJhJjGce$KTX`;yxB&xvWBh#BU~|!@Diezmw>8_NNp+iK!P)pA}aIvcwHZW;>8^M`k;& +0?(yW|bGZ_p%1>F}_{oW=(#24_!9(lM#2k<8E;iGMz!G@`QWC8HieSma>-(w;+dtPK9`_T +59_On}*xFwaQXZs3Zov=>xbYiFC0%`pnphP1!bOzKHqfouD?!XRIq*&HyQqNbHVB`4c3p9R$iEuKi8? +~w-NOjt8Z;jz9aLV1YpcZ_l4_sfN-TG5kgU!T+q~S6&!j_N`YwB4F>n-j^c6Ft6|-^I@5u%H07m$V#C +)#DiCYo*Th>0|Hct$o9J#gAI)n~)o#Hu0CTKKSDDvmZwrwPL({^5Jv2G``)p8fay4?q0St6|K+S=HJRiNpOnF +CE5e8+r5=!}R-!VYx-)oqK(5kn;|7mS)L?C2L)Zy&#aF*!K##lWW0s_9FsGX|l-~Dl8V1B9pm(U7hS4 +x7Tsz@S!%&cP_79#q2}zPOL{iufaeG&e>^c|*CMVzC3N&&38s+km(-LS5Q@XObiQDA(g}!A{S=NX{(*JO>odSbAR9m&?rbSAfJrf1XRSo +U~7&J(1#AJw$EUu;=r=gFmCTiu(FsClrqnyFt=bcI|};>W97*#mKG46&7i#PD~c@n9lVBwa%=9BOB&oxrn73wXtmgz&vvsb!>p}nz +&;?!1Vq7$rJR}SzW4G-Ga7}^o-VFA<@6_5WT04XW-4?=7Vaxm-!tP@m#||)wm0dBEVIyyW?2gNE&$ES +aDv02^8l)=F0V3Uxns5&o`e5uAm3ub81B&YX|w@DF*Y;$#oDs;`mDOWI$YjkR;%-#wuos#Ape)9U3+# +w#C~H4I2}?!)=F#O^F+#ZHI;piLJr5L&Ii3+JNcL(5QDpOOJ75nqBHM&Q*zV{~ZmbukD&<*(9KE)S4F +Aq;Or|HH|SzXaC@-laM4q;?z;vDUwallR7`kRLX$0w-zw1UT;m=nH01>yfuYqlDO3FttmZ{(EiC&Hzi +4f<;S=Co}Y2|P6xOae?nl^@AA!}Gz_N(Ky8)ZqgK&N!_$L+O>u2qy(Bm|MC~&yGVJRnf+^EJ{el|jBE +wWa**9T`*Z#5zGK@9K#~>%zD!9*i5cW!Q8Kqg0cQbu;aRm%|Uc?PDnAE$s09IT|l_G`Mh&saET|`Y@n +#FSOvAcrWGmj5m8t|=A4(Cs6`xql7Q4Rnl(}#uAJ7#NNy%jt}863Kq>fs`!74SnA_0)p4aT~P@Jwx}W +_jf25ZJ&1V95c{qW3huLn1S!IO*?pYQB?MiojS-!0!ZcHk5pJ}^#yKJ$E+Kl&DL_>_F-$hae@%WdIea +y56w|eO@RAvaH|~DrI)BN5=WGAtm18`Pf@H6t5KefgkuLG+E{PhFn~qCQFe5p4)J=yEH_5#Sa$0=LW% +Q~h2jKQS(W9V5p>LF0$&D3N@bT<5HL{zwgV&u^h6XgN2tKm>O0hg14Fg;asV=JIZ|=;?y_=4w!hGrbI +GKLM5#kx&=u~^M)Ki6mAKNKhv?P~gHqtp +fwFbOk`#!pfZV!aLNL0W{V9b{VxAe83117lNu0uf?;^Pd<58|cz^mw|#(ZV7#zN}?TUE5ejU&tn@$P^@%ZKnnh{zx +xR;Xm)iK~g8iufvn@U4b15X_XpIJl1BV>Ch=;Bbg5QFB3BHQMSVTW9&SiM`n$adZBE~GzLR~y^;S{@VprMkDcMAolPoYMUszK3IZQu4S3m)hpNf2Lwus2R$Pl{agf +JCMj-P%a3eTn!SO3rLzLwNWu+ePwyyJ?;?Q6&7?f3gH;6JezuAfpFdix1CY9$KUy~6!XgFYIR`?cpCAmV_p>fAZ8#Nz$CvXt-mbEXZONm~xX;x|ip>n+T|HNy0QtigzmJZg +l&v6)*z*ia=>5d^EiRZGyVzUGANz<>3JKO8FShqNmqTvvd}+L|s2V*av7*+^KVT<*-3(XsQ#ZxKLbott><3f~7uYGb>ODftc+*>14=ITxgw&r7dyb3Bq`ya#?~o)xLM +^zHEjFh~<_ot2ChwI%8K1AT>R>lbK^)YGda)R+znw@<%CSl1S_$Nau|Uu6YA-Jq9?`|Xe^bnyc~^#!g +)XbS`GU{5@;ic05acNd`I*}_N|GrSN&B1-N`he0>k)ob{L|9T{~ +0hwrn7JhAPEzLsZu*FLsros<=aPbkI?j29|OW{aW>;C4|*TO9ZY=W$voc#!2G<@?iWTQ{sauMx(qi3{ +fkw6{u64#D?e)ITeL*HhT=Y-iejuEBk*{rHc+eR11fLn?sI6%isy8}l}kz@sm_$Ji4w8qA~{~wQ2n(6 +=Vpq_rp%6~SL~~&2x~CZyQHNfXxDS#F0{=>mx>$B`ds!Lo+%d4@*oC*w=oz2UM^sOh^AVe%xqx1Ic`2 +Ho+#*S;ty2o>Q81X9x=#P%l#-7n%RQJI1bIFaDN{G$HFETxk*ak(Fq2I`Y3w}%_@ERfnEoD+7uq%hPK +fd&aDr0=(0DfLKoW3vr8g^AY1i^m_JZ1+~F-~R9m;}sEOXHUB@;|VA1=d>)3h;G}l(_I<{K~+0Od3j! +oj7VLXv)Q0DjM3z7lSj(@S-1?nO%{DMJk+r*p1t2#9&^bj%8>Drt;fB4ZvNXNzQ%@>d5kth=AiEykpx&?R+0<_T|t7);a^pn!~=d +mXA;q9Up&WXja&_M8_W)nick)vGGTSW&yID^=TcO!~^x=+w?Flf2uaiB@nKtY-sB#k~LSC0>}- +`{h=axFLt7|RbuK9?yC0PNfZ8Pivs_ci{wNY?;7;`$~cUB@}8|aHhqJj!X9$kP#mJ51rqu(Q4{bQYAT +L_$Bc=vUEb-08VBvAx1OP!Q*eKJO`EjB_KUky#Vqw^0%e)Ew+)okpN)%|3}=el_e>0NDplOv=Kbnx`? +vkhz?zLmK?c`bUK_yDWQh0(Uj&Q5TqX}k_g@i+T$q=PN6`EC>sUhHM2s06nC;I5Rvg9pcENPDj!>jZM +IG8EdM+c%T+AJdza%d|Nt5n?bamuKzwA>PFE4wlrOZDT(`E^a#MB9Q3`2&txblWP!qn0v6Y??Y@?M_vKcDYe9Ya +^+elGJjPf-(2ER1GiEwaJW +?(!wF!HehgnAzS6+S6Ma%#C;ZRntq@Z|b=i2YJohNZuu7sDdn$6-(TDjU}jNVre_NI6-{j}6c`iN&@~g@HC;an^NxHV<%{$F2y +^wMbc_?pMCS2;Ic*>Lc6fGm|zNXyNXzV~{x9R6V?n0DQQ_)z$KZTAw#<*fG!$ErLe|Pa>Y+w&KZ}3i@ +b$T{^%x!bgS2q{~kMHp|S->(3Ze+q&wwpg2+yyMv)*dcOAofyCZH#>)?nPk2!-1#!lNjdKrH@*yf$EfZY_q`}8`^QclWF!HMX{-(k4nN_xG2hLr++b@kwYf1WE-1`IL0_G +teWaoCk&(EDC=t;|lPr%!!4|kQaR5d_Ty)S^p59lRy|KC&`rsadC8o)FfabEWDd=CaL7x&&_xw&5h;8o@kKqDrqFy^w<<1W<0;$q~pUacWe-^)*QmAa{3& +IdAVbiTU-O(T3Ty}k^9NU@#jm3=UbQVM|SYFG(V3|=)Jrh~BV5Nb7sZ!W?afQY$tLk0CiHjG +POjH@ZO9D~kRegFD;pplm(|y!BS6*dM@yA6yF$Xc%Q0+q=+(PXtLJ!>IPN)tI*Ps>~UwL%i$pesYoIp +L%L--Ym-^r=W}-H* +BSyLhJlX1dSr%!pm1Hf;Gp-NsR>YyGjCOW|qL=8z{vp=QqNlchAxp=v#5BU#YBY>W{%US`3BGqN0uh=YYB7lB4 +wE4_zEgY4xTtv@d&xN3K#WF5k&Yuy2I6=hgG?Y2?)eQ`Fr7RULvC5S4V6_pE9M1=ek~kkn_G8m^*0#LekY-*4N01c0ntY*(?@q@7xEP&6LuPc2UoAh{I9m)NX$JsU?l_yF +0y%bTk`){PS%u57PAG2w7s=fDJ1Pb$~93AiYRtvNqJ2(yzie-s=lKHN0H;&x7v>sQBM9&c4J%Ih%-&c +E>9L?}Cg&N2%&kDi)XW!@Q-&F0m86M^sE#j94`jRzHQ9%ccQi@Z|)nhMf5G+3Z7^agCGtp$<+XBdz5L +DlXxfF$z1?;=dApu=~c`mO6%XdetOi9l81wySu;+Rp}D9JKa~cfU6=+?$QVOrArYLw4a|P(Gs3d$0qT +WI@!+y^M|YQojekHyDrOah&-h)!ReuuMKrT<~}Z(%DD8@N0#0gfQ~xrUIpFa9?Lx6ag=$HMTtfa#aMO +^5S}`DT>WS?V(VCeB!zcS!d4b27-<7njO?HWI%#iKjBKC=zQfY37}-B5D*MMy9b_Z{*t0kti%P8$hUA +-hDyLPsox6`gdVySgg`3fHnPc2OX5w9(r1*p(so3ogWF>=V2%@61E2xpLw8e&@Cx6WO;$9sX72T5vD@ +YUJy6DeFV`=IJB1M^cRsV~DpwhX6h0F(o%7rknZF$rylJ~?A#aIWmuf?G>NZ$^g-bGDbad$z^o@W?fg +rwIoB%P6gkMliLM_4>B<5NmfY#acj8yA-&@ZA=U03W0BU!HG2vcic;#L@8_YL)ASo=t-ospGdM~`DSI^7AAXV4;r+TAyIo5{}H&&o=QoIe8ONbWEjPG +~k4)*>%XcSepV-=LwGgHrq%{A1dUwfXzLqy)p_rBggiROR$ualMY8&4~se-og8BSAk1&<`Z&_X6~L8u +Wwg+mj0552F1KB+VZM=#M1m-v#L3Nzi`?(0`DiKMByENYI}J=+7kRF9P%z67-(}^q&<_Ad>BMxpSf8= +1?^_5LcR{qQJoE>s{;ja9f+FVe9wmZ@eU}N-tGm+UmiWm2Jz{Vu=0-(-Sd>vnm|HwkViP;aa{1Mj?V- +J2DYa*a2+5OJNa?t#6`w%_@xk{2H{)1ztbN)wTTty&BBKz6v<4YO#fW$Aj0p2dAiAuk%nG*)QKRN#rG +H?@h$3Z=Gag^)Z0P^(P$bP|>-pr7bd~$+rsfH-0uT_)d!N2rD?B0Ea&K+_ECzi1b4PD-#E@#)&snb1u +wxA%b!%qD5OACG^80Uyi)ZI2WjXF5SRr6R!xANfAOZYz7&XH`bxGuOs~ZKt-wd_iS+b5#AnN;A(JinZD{6RpqGY$zPPZgjY=qUYK1Cw;4da5(QgoT?*K$43EAAjZNf$Ng^Lmf>cIQK +0w5TZ=kOW;#>h!nzX|PPQivJR2_h6y*hNLs=k>2Wgre)AF2{PPtzj5ww5LqypL5 +1tWOU&R}eTJ#qhdp_c}mA{$o`puBBJdUW6%dxsd5c0Oq}L;?eSGbJZTt$LS$1g>=iY#&aJ0 +Dp#0IC$z!Sp^R7vO=`NS{-RT`HWcw(3V3#I*|rwybe(HSQ4@K*K6fRvuR)KvZQ!kE`ny*&*pBet*iXC +uJg!EN;QVc&^LGM&dGzZD)Q;pp%Ga2vMJbP2c0zpg+<1T)Zp@ixNq?{K)1~6E3Qlv +AGP$!^^R-z#{UE9*SMP2^hu|vg^>U-BHw3#_bE&a2S{Q`f#S77Y1rk%E|O;aWN;rp^to@{aq*KwUE)L +w1V!Nlg@P{EU3S?p|*egv;{dycxE9?vm}oEye7-tt0YSTFBMS!7W;own$H}@_v1 +!@^%9jDc0SOf48JRM}*{0Dk#as=ZMlF)PkN&d0wZtcYsWGUSmL#l4;J%8^w7fZ_>z;7kgjymazey3aj +mXamv^rr=nd2y?AF-HA)g2EEIvJaGw|;$rWNRpbO4l7U_DVKC}wp +-;D(@Mw2&%PDY0N_%-*PGKurms`2z6m*4yy%TmJn=D9TyMXN}&n`gXNP%_{E{>FF7h%(wBJF>InImP| +#ktWb)a-oJl{0Ys;LX0mXyNk_L@nGsf~vKrXQyr9pu$EcB1&UF9D#dw*aDUI&JJB7#niMvbm$T-CU^N}hb|ElOzd5;in`8)q< +4v2BoZ)v2E9H(W`R0xiEuWdmu*H&9uhnxjGSaf-Gy;m04zesc?SP_n#d(&Trl7*X-U+)kFj9jCQiC1n= +H57hGBhzG3rRuxTN9>o&Sz;1GOPmMZo|p%L|f${Jv=K4`su}@Q +~HvUei*Unl)5B!J;+#eO50>$?}A;*1_zSXE?xX8(~0DGrRk<~yxMdVHooF)Mecaj*@m8^w2E`c{7@89 +BX;cPyZ2qljedF)eWS15#Gs|W-jYqD&)$xY%Wto92*jI)EKj|0oCffgak_0AuNncpq2G3Cd7THnyWVz +be4UAFqrdIaek&_`x2!Y4#*5@)ofScGMLze#GFuiZ9EeIOoK-2}Og!NecOLCTrxl_iqv*s#B~~9eI)$ ++5aevS-?wA2B-3JYWjybqS{6WKr6MXC)at(K#5y`?e*5awK7qZzP^C1uJ{f}-e`ds5<^~{7Iq)!t*R* +#DaO4o_T$Lh(Eo!;JontGB9NYd(b$nqIt7ON{w*m_lUlDAk*UG(l%v`#q~pldi^Y*Ss~(R$~+P^L*~op4?z)3h#a +bY3K@aoCx +qNFI*Suug4^hOf`tST$Uycak}-*E{JNuiLkwc3i)2K~54{J4y>PAQCmzl7j=sn=OS-C?OHHtG54CexF?`VKMumU@_6L@;hoC36iCfJsD-ZC2 +elBk^+Da_%|57;-sywZDP@{upln3fjMh4Fm+z`jx`QVjTyl>f`LQOd1J +_{;NXyO?udC6v{uoIvQx@}N&I_laA_es_sIr1{WG1LWP{!%Zs!h};$rWNRpta6l7U_D<%6z{PPwxCv; +`{d%RhCB9Z}Ox^HZnP5xL8Uf9e!^or%3GcA3|>ko0zu=Mh{!Te;DIMn{5fI7KZf>2S*pry$g2n8XQPkt7y}1z#{6w{N_s%txfE~LfIzxU?FWEeQ+~q6Mk@VXox?Uw8Ny#WhmVh>(e%kNIQeh +2W>!0yIRg?Y(VUC{hW{2YAo#Cu2T5($;2;{*cl68qb(}W&9w@Rl`5q{`)>`YLZj!x$+OGZSlYz +Yp_DOGWAZhJWel8fntE-i}O?b3$?>dF6Na>$;*C|~^>k{u>r+6zI?47X7*JMEwTLqjkzdIz}SG^#R+B +~cx>Ds)gA_?0+rE-zCc|+x(cbkGLWp^0GVLTxGto3g;%r=o{J8_%9vz@wq+_{lQo3L{elZL3XNgj;H= +EivanpMvcE`6Evn#)KSii^E7R)ayXAsJYW#;iXY>mrKNy#_S;OnA>FZbeC- +%!b!+S0vR~Xp4V3n`QfuyyHcFqsc`QfJqG&h@-{iREcFMc*hxP24%wwoF(O&m2cbyenZ!jxnXV6JUYY +pAH#PL4Zf(k-%GTO@7Y;pE@Bd!830Nbe1tRFaIq6*EBB;N&p|*egv;{dyXxvYjk4GK-?C^SW)epvzZPiGTRB(Tt0u?HiD^t4r0Okap1PiL +&b`-1^`?38ahN-8aN-;FGc_2)@w-4zU+x-<@Rk&z-vHND2^t5Q-v(MLG~w@@e@2g3e61pQkfc6DRf({*i=N%hPRu6(@~dmWZ_c@`KB$|LKppB)z|Av<8_fc=H6>vp7K +qy?X~H#4N&cYyi6xU6yra$$*gWx6rFCfuj{=4?F{L2h!{3mz7?8Ga$OK_SD;ZX6@HSUvKn$Ct$7afz;iv-ubyjaiRxG!iJ^z55wK(@~5KJ;Kd;@3Z!?(oB!8@dQ?3(qmw}c~z*cF*Y8#RtW5$IHf5_+%t@eE1ezJ0QAp4uKxTIm+swh +RRFR+n?nT0RS_5@_RpN!Xh>`<22q*2mn%)3ZV(`P54TYfg~q10R~r>!Xmr;;ZlfZODv|wDr*VKMZ8ik5f2PNU##H$Lg +OU-x&g<9b5`pRdi;$_^$3|B4Wl$Y!gh_kQH#D#WB<^pm54+?Gtfue>lMX&i#4^V{VF`uP;GEGUfHq5M +Pd{AB_L`%5f$Oo0OpxmWeyP_8^%5UbD$pL +_MrwseXT=i%(F_RW9_KMb8@SG2qx=_^e{mGCaCtCF3C6MjgVugUB>K_1@rmTqjr9;)BJp(%CQ%4k9$dXv9-rjY9ivS7U2c7_E&J!isReFO}7$PQ0$)cm8? +bjG26?SP2H|o{ma2GXmzh8;{A!?QqSXzZPX%8OUMNM55aD#&;-a5zwiM%>R&8gUYpxyN*z+!PqM^tK? +uBijv{YUC=)3pknK^4Dppg3w?xv1zR@PrW9#VTC2Ahv(HD!kV9tg3XCGFBF_qk5H%g5L6OQDSRdtE +z#}{>hrS+Ek{h&=93O>==#;9u6W$;SL9tOVbVsv0bc8M{Vq{0!b0=Q6iG~WQX@C2}uHnfc7 +W>nPm3QRpn#Qkrae@==|7Cc#gE#jiioj*p0L0LYGh<&_ +cafdg(UwBxO~c)l9S&upWaC4El1V=4G7fjdIOij|&L|9MGX2)>kWOEQXQn5LxT+7WyED;Bkf(aW6*)GtAxNX5gm@YO2`aTxk6x939%8h_77JjS0^UPYQiIO=QvOtDRW#@j!Zc& +GFN2!8YRGs<;7{HCh4jotfXq8p^gkK76M0N77K;T2~t9=?4Cm~5v6B3zp#fjv|wc@68q*!qix^63 +fpagi)geq<5NlGNnED6LlV`=NAI_=mvD6a>e@2x`#|;2*P7K}AUim092yFk1G6;-=G* +dS@H<1YE=jEf-CH>HyZ-a}R=%OkHx*ocU;1hiN^T8(r67#Kd?Sd#=Z48-TT$x1IQsFv9^=ZOJ9a1X0g +g>jmE2;2ls3Y~gg}{;O-a_G;Sg(zVbsy&u`i-GDr`vKg`jq@-|CXlUWX$yhGV?jTffmhY*pAoc +(Wpw#|65W~oUWFr=ew#2({0Sd|4%ck;q7-D6utDTU8GZ$~|CWZ*+o`vPVwwc>zUHl=m?nj5EA`e;Op? +z2!BZz8NpglrvUw)e?*JxsEn61k$P$;#^@He-W-Bd6^VV{SNdFx3x^ju>lAC!?*}%7d;FKgFQO``&RN +WUpskYOW?WF$0Q`@tqllo6j-H)11>OVehc+zxI|M{u)LDNZ90NNHjz=|>qIzguH0PMm7mnY&Tz46}YX +$6Sh8?8UAz>N1s&k<0+)ZT-}bU0S82sZRBgdcO38t*sGAL&&s@jD&$j&Aj>*@`_B1nPG6oBqQ`sJWac +QZg&c0O;&=0lrWmr)t-MLfe2{JQXM^dcN-BSwWGxtivvzAP!>tr%#)yNxHKNoq8C1{_rjVq24b%yh{ko_9V +8%uFA>%9=4>Zil^Z*Y)Mp=iuEOIiCz_k(xdZ-_Xr3njC+JIY+6%dSB2qLmXf9_j0PPkiK@b|sz!-!2t +#dEjB9-Xnx!yu0tjmJ2dgS^YHOEQM*f@Pfut~SL9)jM`?SLrxxA4Ys83XY0xA_r6STxH*oe6C^#W0k* +=`Cu%B-$CyXaOlqDLkD1;fTb975MzoK5j3bOnRY6#i{laE3Ywvu{hd49HG@~}}*q>)L2PDgL_w*WjASvieG_*w-hlr>}~&UL^^ySb`dStP +C;vT#(Y+WFoZLd#G_OZ3xcSz>O|x2_^!9L^R~g~0>Eb^XXS83s|zcb&0>9K!6tKNk2E30Cw5b7{u_bc +NTToVq3OM8t%?Bwt5EPKW)6Rs?#@H*z4>Y3OCw$c0!Za;^79PDCrI{j;Y{v?SG;LFM_y8N?X^ +`?TMlH;8}{)K>uH|K>0sCjd~f9ygFS-(`h+ea?6a&n!+jt#Ojt?O7<68mY9sceq1%)=Y~rJn((6JsBF +{{cX_HmLv+s9+q1MGOzJTTQ=VAU9a~*sCPK+InoDBwn}ZntE*gD~5`nCxYrj5sZstVYl+Z5Kd8_0&)y +IR$()sBae$;a9gH=6)P|RMJU7EaDepkL1!Z3DH+VTm7f4w9tWo)QHT5)XLX=XS*%kFq<*n5d6dyR0Hi +(>FVa=7rk^X2S*GUk;a33ZtT@-9O{Aglr8PT-W|b9j=@Ya?y}3X=AU}8x?TJica_|k>GR8+rNp$0v8o +(2aO%(ZcgglAIDn@m9AKI@NSw`Up^L>)cQ8|4Ijl)<)VWECT*;=^uW4(b|UI%cHrg8a7{QMz^i2Dj-9 +YQ`t?Lr%6|Fy9c8R_Ia1Hm(PDT*(#*&y_A_R5_*2%`trOBdfkd)QZ@_WciLD{Y01Qw)hn+d$*kLSnk? +t#M9a;@dxPN)nK$XMoCWn20XL>O|qbc4v@GXIW&X!THsI)e_-o!<7#CeC4)s>_=uq^k5sIj1ozDzKxq +z8p6Xns8LK)9i&~F0)+W}@rgtO7eRuE +!^&02I-I}*Tfo}6R>Mj~US<;s7K5S^yI&MekiY*ehRId)5LWP!xLwS5ZpFq`{-Prj+6no_qZjym&5*x +&^NWcgvo)DGCxBCSSe><$=}?NT#w9jUId!(bRq@piJm3CGfg~GW-EZDruw(tv*x4Msb?~cpYsrBNvwr +)I9Zj_$rgt6KIo}0}d_4+x8Q~@~75&mXu{6@DrB@eGqq3c=@H-;L<|{@G)`}>eyVUi^W3l5$S(y0@-o +!Y?OjNdZKf^lqP-%{l}j%{2H*B8fHayxui%xO|3uc)i&;%ttB&RznePmw|DoiXjKxK>Eo +*l6{rdZtE!mvhJ`LC4F?W{t`ob=q~p@00KRq?teC0y*bvAkP`$Esi3=l$fBO|xwbYcU~%+4)_q*BK)G +Y6)MIrQV7l7}H&J7xo_J5sP-~KTc_!)vh`ru0&|$~j9RsOw4O9(*m0Ji_9<$GJGp-C3xN|?|ss_v98g +7g-(`52lIZ!$9w?Qv6UyPyr<`dMMTuQSfS3bu65e7+LfTdkoIQASZ)B?^Oo}ND&$iswR5DYH(?1HL@C +z0jNb(KzV=^+Ag1At0X9Kk}D#bYBd{KbF>*Gn$eYZx%+XXVcLd<8ad+{G;{UXttixUqtva~+l>ay~7A +3T3%CH>?%b*g**Wewi;a>m+(A8~{QtE#Fnt;&r&52pNZQUJ7yV76A_ZWWWH4?U3xr#5{@oL9A!reeg0S#fgZ-*YhE}gd$OE+P +lyEuKazAuc2**iPceGB0Bg5K#||^GaqHRT)u~Z1D0q9cBV@lhtXY^YmDc51d;tyr*RpfvA%@!c5+q`yeN6kMxBt!k8ZvLs5tDIK#uuk1Q`#dky*KoTgznFe3g+lX6Z`} ++Shm3SAPazJ{oI11H+o@Ji&`FR=MbH;uWrjTmf$YFv+yX404`h;cUe=PEBCVIPL*FzQpIuxTtNUwgoR +R)ZqIFLCkaG`xqk1G!kiZ*Ir_zYM<6Ha4xp-&RxW7oY6vR*c~m$$G6J +ZVsXX#Wd1_AJbpQt9(lmk{-UOKVQ7Tfnsa@-Qe5o+da438GK7xtERSbK8VAa#y+gkuc%`b05bIO&!{2 +mG!-T?TVpY$pbaBW2^6|gJKj*8b+Oh<+5Dyl1U%^qGB+E=iqDM(yxY`ITX=Dg=dNnCz6ULt4*csA%HG +GTYzQ|F8y04nU{1l>Mcq(J2LGvlt6flXcuGj3WL=#C3$#yu;F$oi>M2Ni`6V&&Qx8}-vRzL>CquR<=% +uMJ37?78&$_y+1i9IEwY8DtQLU0-FLT)c;xg|UaTa=l8-=7PXW{V-SGc<_J((&ZqHY)&RVU7yj&;$#v +y=D-6ZdlN}!|JM)IW!MeskjXMaNIIYqq +rpAQkC=a%N>Bk51n2>qCLn8zzviGJ21_``v`i`Lk;0e%FBD62?CPWY&E2wRVpH(ay7RvlL^~eywq}6r +;NwXya}vL1h2bshx_%M;bCa;Xk-^d;WIyEwo>;>BxEohtLtd42#!A`FLb@(C`b +1afl7cst}pNynKabiG=8kfecOc=_cxKaYwFVA?j8~P)^@<8CeiG;7nS0NCNT7PZA(DhA|%5{O0 +#-y)sR{DbC^!rOS5LblmkacI^S3bODB9#F?xY2q3@}Y?!^|XxMA-t_K3eUj!Mq|jk3Fog?O*rvpW7EW +_b>hK`3PJ%gohT4k5EkVj(dZq3-WI{oVW8K%RRe+olP?i~;cdavX9TI95dK8Lh`2dOKMwnNd;1jtNG* +&;QI-O#aA}oUenw%@Ch_R+y5hH$kTzL@@>>I?%TNmX@9pUA9XM^pfFwP$l8URmk)PM(3fCMfh%H2Gr) +?o!J8^3PH?n9U<0c+%F;}V0x+qjFdyMBOk&kub5d_@K!BIn{B@2@H%t1_4R?$zt8VT%mR +@ySKmt1Mf!M=kktFK&;kG&Af#TZd6oa2DYvozs3Dz!9{I*PV5(z>1nEi?(cWhs}IEJ$L9fT;p6?XVrS +URpA6lznN*!F6Zw#4Y#>7K6DEBa(${5Go~NnlT;KVpMbb(IRsD=N&=?dXmy1PNL9SD`ZE_wRZH5@@wrFxIDf?x417>l4+`-0NYTMW8N_PIp~n#nEW9vfHHhf|8!uyGL70)Vr^#9Cdk +^zr6J5(rLPptbZC5Y{md4`j#8Q}s9jO0r3Q1+zQAT{CM3DTXbf1S-fK@EyU^;@Ion}73U#(*;HcTzl7 +nlEZn?+kf|Wck#E4|!9IJYL&vw|3QlBjuII4cOMhWPo#tBGEe7s;i?uvBV{wkB|t8*R_SQF*jI6W6db&XbGQBfTgul8b9t%qpeMs7-Ut(q>vm`O;=$ +*Hhue2FbTBYTA|uN$rw!t}`C2UvEI8mHm2yhzm+um##MmxFB^Y_VotwVg~juxP*&1khBib4w)ZjLo#k +~zI)$|-nbKJ=FqqsXlBuJN6?y4IqwZv)j~d?(OOtW8)XZNXd`WH2^$!+uz+q3Zp%l}nzfHzgV0z8xdpMKB616A*MUL9MW_qZNp8)AB +zNesr986JeQjSXxjhd@-Q@O6TyE_>_gGxKn({??kzAZ3W1adY;z;iTr#p6bBiq(*y5k*V7vTx@KQit?MjIYa4(5)`an^PLEMI78p+9C*UrEMJnZ{pA*{N2F99s8~mH*}m +tcl46Nr@K_aq-&WwRHJoS^Y%RG8^{g!FD_i{{KBm4-Ez&k3zR^&b191}S&p#RPaViDrlOm^#e8%#Xgw +)gv1u_g+wgHu&nky;z_&;h|MuaX+9(xh&Hk;Gvf012lD744n;10vw+$Se{w+mYDP%7lHOK6%QqcbHce +lx@F`?bf?{1q@wc?;#);&LM*eNwyJGz29r +eI~lxB>R%sbw0b?By@v?y&FzxV;&^6L(I5>kEFQQ4x1Ku!#>?$K>yr^O}fFsCHjUPI>pD{A&2}4MkEW +@Ae2v{P}0(;t&r)x!qbK!K=iaj{y~Er@NRAXeHoVGt{E`#4Awi#CCf1|AKOkSg^s$p +-@ncsrhnX;j+5Y7WQtq41>Xgq;{EwxnKlumR9aIW72}Y+aPE~O#j5Y4U$&WE>YiY5Osxzy(2DJn@mV +@hp>__=2?=3vdw!W3u*g@NNxsgULZL+xXneKwmXdCFdh)T+xj;@6N7{6+Tu00L818AJLE7b1S67#!?0BHvo +<0+GPX9;I&!!+6T8mF_uK++pXaqL50cs;<~ct^=cS(-5$V{+C%2dtEgfk1&Sh2v_4hW^_K%;oASVgW2*Pm^7rA!2KCG~6bv=Az63oY=j()=T#5zJnCGbw +HkFS5NL%X8xpDIp)R%R~2qr`vt+7{861eiY6XcHuZ%!md*+SQJx%KceJT5E5D5jnWH +3>@jOoRdhih-Nhq?M%0&8Gh$Kk@Gkd$Pcr%xjweAK%UuEUL1~3+>I>YEjPZDIowD_9`&Q!^#Pt0 +Wk8orJE5o&m^JNjY)iIA`iEp>-3Kk{);BQOgg=-=ij^^VFlaQDSYQyN2M%3)G>>B?!&R<(kRZ2DpLD8 +i>o=2b?f}R?4u4W{dN!vc?W3-B@Px2`5!Ik88+$qW3MPl9;C%%(SJL?@w5W&1%n{-itCsH<1aRhzRbJ +xA6A4oFLtc|ZbOJwqgWDX_PKx##}M*f3U&lWofM+>IhLj>hN +8uDz^4d2!jqH=*cQ44UKhL!K%W~DsVFBp{F^gCLIl&O(B2z!t>S?(w$j&(V9XoTMI8+Q^?h0;ZtlHyHk3i-@@;caUQ= +>ROeYfT{+?uGZQDdZBe@S!z@wCD>TTT@8iVBxqm#gCHWQ)>zt{aW_?|fbxnV-&z)^lJw#W +I_2HCl{a4he@*+V&aZ#!&NQbH{&^8ob<_nD|%bIb=bD)ZMZD`Fas{3$%UR*h5Nl`CpP8XZpylJ2no0K +9DA#2^8?;q0$W#zZ?{f_`vp0Kvp+~bHN++{th{cOm^9CW>O7^^+a69B5}tNJHGZLcjDz@A4m3wf%2hg +PVLuWCeX?m$~_6hv83)w26z&a$F}YdXxcEM#3>RBA=fu3j95>U-;2DlAteHrKVp$Es!&Z`9Ly!c?Kck +I;prqX+*Ew5l=O(>^EEh+Nh4s&I8VK)JgcfUKA<>1i9qUPo8$-MkN|kuD6UjdUka)xUS&LtA&!4Rx%1 +SO12;fKo3b4)M^R7jLYU6Lh})6o5%K?5QfE%ew4VC*-3fy?gFNCZfb;T)tvIU(r9L8|Iy|(AJLTC=1B +T=0j6qdvV_347Eb9yfg$Ti4H)mME!&k^SRlzqP~_lj%6WX$+#>c7s}cQy82T`7L8bWZFWbf;+%Y(f4+ +6q{DSiAYPBo08BsMSisnap$oqV%37KimD@P{hvi{eFJO9e;JpRIiPwp?6tmXIWUwC7FAyNB}^T$vlS= +1JnpD}qaEU0)q +Uxk-M84$wLC$DB^DoCmof>H@;b)8j?yCbpo3-wcE3lI9TvQfh6RUtUJ{vy~n5u9a#=B$SNqeHdKVkz_ +a_cD|vhEB^$}-OCFj$8`{BDThiL7hdbwd%gQMKh?;%2#G=;0AIRFz5j28euF_{$%EDBJHpHQQzDmeK +nA-)r>43P3jR8qNQq(SJ7EW$UKV`tKV1iP>&1KXn +%U~X&+w$l6&YKCc@obl%c-5$Zc-HD<;zOx#vxBzPw6Y=nz;xx%Ebn +i&7q*Z9`&9-5ZAqCqM$GPvh@qVBK@)g@_CoBl}feu`=0=;D!i_1S6L)#mmcS?{-t~y!NQ=MdBd0s$Lr +)l2o=dz0IhU?xbNzZ<#Oxu1tH^G5mCcae(Gn`JLRdr0TwAYjbiEM8YVuk56Pk0ll`?WjO~@ +6DPMFc+0xnS`I!;l;;a>H>$oB<9{+S$PiX;_4a2Ja42Y)CL%yScSwF^(VNODt-k_1;|P&99TZsBgTQg +)U(Cq3N#Jm>bHL(At6btHyeW?Xqu$vc>gojjBQ!F4^ +E*eJdnh{oeDW9zn>okw{v72%k1m$kh`9s*MzKb%y9_BZXY)AmXZ>vCU +mzA~odvp?2iNc9ZL~D0!0VO3o{9Yv6IrHw5KlC5fZgd@-%S4NXyqIaCoz=oso1-uaetnzoUxLiFkx34sd$92m4S-I^o-?u{5^Z` +>4Ot)^6+VIo}`;;#fTw(!P5IiczQa;G`M1@gAoUA$O>tw`YUPRovr( +SA+4$imS@>ab$_BmtDTCkWJUouf?6$OH(S`a=AFb{>4`=gI+`We5CrhG+*0#730dzfBaAsujW2@Ce*# +M8m|Fr!ZlQE--@tr9LsZIRJd>taMK}IcomgcI=}$&qsK8f-{MP9Jbn2o)|GLtk7U>M5jJI9xH5`JR(KN&+5o|n +k9Z{eDo`gW#D|NHWWqQ*SJc}3s|Z?ngg`WI+*tq_C5{d@eqX&s4$ +T&x)9JB2d{lzlI7o>Mr%JVPkN&*uY-f7lxWBN>4@O-Uu_40D*JQ*t=C2NKK%m`!~?bmEk&8&}~WOXk@ +io&^P+;-gMPkfn3JfmGMOPMpv3or$4*Q+z%Gn2A5HT*3mSJ|#NhiUl`@;?RPdinz;)E4c}8j@8a(;Wh +p1Bf`GLmed#2YzA*mf({od~Nc%ZBJu_ShuAdk#7(27wZOzyVD)+SE(<)C8 +tACCtlZrUU){T4L7#F)~sjb2n!VM!kfZ+O`49b*nIKbh}v)!9P5MJ<P|2l>$~j*a@~mZSfq+}ONXp3uU^2{0FPU@uHm`W$E$Za=!kp;2& +uk~_2N+wf$Wb+RZ&Q_nR`TPAM56PF;CEpt*bE`OjIPkz^Hehh1}%~XA!3p(sD8Gtc$Fy+`e$XF=Fbcy +daMrFd8EUR1!`S0`+hh>T$p=7szBdQVn$%rhoT=`4iG|p +{QE(KtkVlpEBlEECnA)($oj?QQZWGFcf2Icy2RvLqe;Yc3~1rlg`A2#Axpre2-MEAF!y!3f#1>ceo3w +v10NaDm!#GYSj=4#j8j(wzJKD2-~>$v0%vH-r0y0B0&auDOr50{SoL8TB#h}{cu5X}K*8hrl3eOI7V< +D&lIELlntCjZ^D+Klec|G0BZN@bYmShyksso()hEgz=cAjdbAtk@ZV+m-yS_x1D11o^($vopYTe2Y@` +*Vtbt^yg18qHDk^L5tp`P$jx;=4er#gFIk$N?ZqaI&}FjD=OaHN4Z6RW6tfmJsI!#v^(!35#dM%2;La5tkzCu=dTc1!|$VC8sWPGeH=pape72+;X>Qf=e +{1ER?>O*{)?}K4|d_#WdvOm^cc|*>V%Pax)enbAM%W={(xYVurj6d(s3{mLkE$MR1uxNt!A@y&~1l-& +AwQ|2D?afS_#dV~S@5i=I084GZq>Vgh~Y?z~9-8)hd!~6>4Tg*HeAhh~)ANgHv`Q +DRS#4%V8IXLghp&juRV&JFxDqDe8A2(sz=K_RM*8qVsNsZ6drNxnY!K_}^-;)E(k?^PL(|IITQG`*KB +6qL(-X#nxmij%pE_39JJH9`vn0SF!w^<`U=U$0#O0=#rC0dZ{7#hF7zJzcjJ{{N~!My6WNuZ_N&r=5#1zLTQiVbep=vLi +kjN*CW=9%MHx0fUC35*OquL~;jM*%pDAIQ%|e1LO=QCERTREI?v^@XAyefdCYdc@|ut{)l``2#sN0&| +}EXjT0{NojS6~=@s#}dH&_nWpoCQ&w^y6^GjGYM7y06bs#if%Nc6D!Q$q +GENi5Q8%VB`}PfFznzS3-;L*Uc#$!!3LyRcGwa;NzNO(%f>r&}RFXG@~3t+_8)TpV|i~9U3*S(JrW})VX3RAp +ALt2qOxo6QE~0iK9u*_J`c(eWhyB_oQnHEA3_TG(lgg9iX=`)j3wir6JCNBZOFAY15D|pfiRj>eE{wp+mzH(zd1|v>R8|UEtRJ*fbuY^S~2Qxr(rfah ++!2uk=6_h%(;6x3lH{i?`BqL3dc`&r5oc3X-Z7u1_1uI)|;!3C(W|M~lyCj3nTjf@lVN&4l2y--*-3Z +1~$z$VSR=O=-p8xLna#gvDAnO9E{s$g-46Dq^z%4zm*q&auP1YdH6W@^Y-w+eFJzeXSE{W1;6v1RaE9 +6UKO5Ato!Qm<=Lv0>eql$PY5S-{{^{hNtcmrlLTpKf+Up80%Sa384s(TrNz@#F$F;U}QQcP8z|CpOB7 +9I>&kjBf{3r1=)P*MoGM9^iWO`V-D39v-G#8v6sc8-;VgN7$?8Iin_rV|Lpn-lKH`$7T*`rU}yg2z;F +t_kn-U0d9;LlA;pmmeJrytgK;oe<$uyg+u`V6 +H=(BllrG11|7s+hEvPcKgzmY0C=Z9e+^sJwA4abgLeVLdO(>xJZwuZjGkM*213==lew)8vMxp{n2@>f +#z=7Ukk@60iTRJVD}2_ZynS7>R!js`q5Hj?%>jY7t{N3<;O|;84{bZ!LHapHk +^~7XdKS3($+@^ZpynY=dYt$=;=25Ee@2|ouaU!2S`gpH+Q>R|IO>wtGd3)};$*su_yhqE&fqEgUZ~BU +4Iz|GQN5(HK2K14>#LKR9L%!#R$BxTntgYe)s-8mcE=!Hi^{-t$NLCTX#Fp1-;eJi-ya-oA +VXLzsMUH#g+QRa~nmuT-D!={vB)U?46q>-Wm=xREO>%QCSjc<_W{_a+7B^FSpO-o0gT?i7zHBYl;7Q{ +P^mFCV;}@9Mkv!?>%0^_zNzqbD!W*kQ71RSysEh`4E9<}Hz3fd{pGrVZmnDd(!5Tiv+dXYwf~h&0a9u +}DBB-+Mj-K%NxW&;S3%u5`DJA<`7p41jxb?P1qtOQZyw|KK6&Rh_f~V +INHOD&CBow;zvkVchy(jB<;-K>gqXqs_UAruPj~927}((OC4x_DF{nv|Mr-?`Wflq2*JC1hfBKVa1DF +DZUdD%fNY&^&QZB@hRU*}FBOHbd&$5kXBM(gO%}3dT!SDy3bzo)s8>0ErSenk +n~j-Lv4aQewfIRH{$G^+W?T<-^)E4k+*elzkm5=TXGJi7#R12u4qo +JO1Dfq9mo0&*Gp$h$9yI5f+m&*_Bb54DHZ$j+5uXfs;d}6TCHF>jcZ1@oStQM$Mx_0eMgKq2u9h<+9S +(YSG#1BLJG1C4(SSNppenv&Ac&G$25XDxyMF+s%z<;t8D&sp$l>2YoTR+%*nOGeX&PP~Znso~2zKcHmgD-sY_h}Pw9Defvy_eZK2GsczwT<$74`*28k2!wJMyco8mEzC& +`k0t|*ov`Z8o79(0n_ipKiInMWKf4#g-J$Wdm46MpZeDk`I2(D_07kf! +zmSWQ-sDJ3DS}ml6kp4+ci_Vrl|m5d){_GuOWd7%AO~v&BoU>Z-A`b9QH2H1nxv>Wlv5eDXmQf8myY9 +urm9#2$Djm*xKSp8JgEV##$K-=PaEinbTE+X(<&Jc;O7RO_tD3P8-5tvXSLZjwbEr|->b~E1rPbnQi&$g?zW5yreF7E9s#r9@|E%o{ +VsPP*BXL~#eF@^ge_gUXSbC+~Fg)??bC7PF~bN!S+6L_wF0wwjO|>KM({&$>wTe0qIzy2-_ +IbsNy7==q->l^iMi(~}3EV;MOUWFi+&H9$++Je?2Dguv7Uo>>Piovxm2Uyny7{lajkCBF?+)JHv1Eu0^e7(Ha?aE!RG!)r2v>gr_T>5i~?dxc~+M_6x3QfqeLAUj~oF-CAC6?$XER}gPx1d} +DZ#`E5Jd#Sr$%Gqp{>Y9~=3i6@w=ohZc79wD%%y=4bVpn(?`Xj^JX@c!UMnAPkX^fF~1Fa$uY6VcMPF +4KtLVtc7tBfW6KFBKkWX;$EQ&5iGR2w82Yd=Uz5^eE8JnRU3l}gUOOdvKD!_HnnIBlA))vhZl4YffnI +}vcF|H#rao9LXn-!5gzmELLzD;$kKZBg801rZ8HC_-#Gpe^fJv4ULRK-W}soKrkVe2OZ|(Pv@$)}ykX +(Hy+P!8?ZUX#WoI^;RRL64+6l8uem-7-kMChS}bFY}%)AffcKU#vvtyC{n*(j!cqM_)S$0qP~acr3z{ +bb%|%VO8d_c!+*^-9@=VV*Cb_>v-XzUh!4{sXF|}4x{gG>|JoRr858|y7twWq9dx!wf^Z|Ot;E3RP)H +qH%5{0g>;hDKaqbKH24f{nL{C2YwUuxSI_lEr27GG$sK$rZdjG!eo;q&4oyt9~gbLVk5@w4cua5sQs_ +5M6~=nz$P5#G>?GiEUOR6X^Llkc@UgYG$u<}}fi@xZ!n$MeVg`CEX1?5CW@mGmFSL}A^y_Bt7JhR +5bHAfqi|fR(Bg?As@-|d>llBKq8Xh!hanPixL6bHHO&S+8X;sjqIYE&wgOEW2{d +UP(4<*FllB0O8UirSms$Wc0sU_R^WOy6zX_Co6Y%~faQ!|&|6l*`KTt~p1QY-O00;mBm!w?ddGEQ_0R +R9f1ONac0001RX>c!Jc4cm4Z*nhkX=7+FUuA7?YH43`WpHd^V`VOId2Le5Zrd;ryz?s-?1gL3DI5jef1NLhrDj>FN66{s&_$d&DPeNY|^t?Wnftt$7CcL?U}UK;!Rp{)&b5j3J-P6Jy? +PHs@l`5zI0Rx@zC`8}1-Kl62e;Im=RKjuh8uU-a&SUMMxn1yQ9OD?lE&S3gj?hVsOegTsHMKJt5Qd9HY@a@_q*x{NZEvLT+`q24l& +eH?>6(w2gqv^9OyVnW&L2mw;PK#|j5714W4iUIJ=)Odh^d*L0DrjS@&x#HxJ$pLJ +Ob{?%h4VGx5!RJ;>{8<9bXH|PtyfXTwtgamr#|LT)?_Vx?{62?DXp@R`T6xdn#iO19!ZLXRMU5+_T$6*R +ZNGW=W@%)*s08#Cxpn_x#Q6ms>%WNgq(3PgevBOtOPHzs6I7{I~@MoY`Cq>ZcEwJwG;R@df;0S +I`Y`K2WvsVs7EN~nRH{EQnnq=NXB^o=smf|p9+}cEQcA-_)$OPS1bJH8 +pA0SurjX(W>xs)W#0B5MSjlx4~(k#ars{jw~*@}IXW_-n5KX7#EfqhAZMq*3jv$bxR +3Ek##}K6LHn5P|yhRL9f(bZP(a^=4z7sOKzQL+d(P)JBL2AXWMUHLWK#)*^?vx0&=4}qETw +Bv+(>@V2wC!uUhU(koew)3K4c#5$24tfM6TwqrH7k%pO&5L7M#y|J)o+h?c{X()cG9-)Auy*|V~tc_` +ahmMY0n;YZzSejUOPP=U&z*}k=hfi#=DO|&j~xD>~OkTET?C)kC&hIgfeqt*GL+h$>rI6em-B`+@4QA +{-e#z;L;Pv`3_J^0|XQR000O81DB*+Nz}L7n*aa+2>}2A9smFUaA|NaUv_0~WN&gWa%p2|FJEPNbY*U +HX>V>WaCv=BOAdlS4Bc~zCT?IM2Vi011-!zf4g)j}?W9!V++IM4i3^wS|2mZsEGOa~XiTC8SI$LIw4s +A2*g8tt24NRo7I-4zl2WspDmY)@CL9`o6C}lc#0FTv%N(=-_|RbvY~V@#GotPzo7%10iBjzrODkF{`J +rACX8AZnJQ>FL$8U;0+|fUNB7hT^x}#ug*g;us=<o8&FFF1QY-O00;mBm!w?n!NV4Z0RR9W0{{RU0 +001RX>c!Jc4cm4Z*nhkX=7+FUuJ1+Wo~aSaCwbV%ZeK@5WMRvirI??X8i$%1WZ`MUe=K0X3SU~w`^@> +^&s_x4CLb@$>T?y9MT~4>gp<0%LG25ZOtG^>ST4%r0A|v-^zISmK&%)yPB-qDG?(7x +n7XBP18ojQqgRmv{IA)X0xT(w~Kx~dmg{)L-hUnp7N?~r$L@$E-CNxMQb8bH6o< +cDXCSB8hetE9CDDu3x`nO(hnoPEt*zh5HsYSxg$OhFJRy8H3E|u&}NDZi`EXhtA<3Q;ktph=)5g8}# +$N%be^H5xlS}rMG)bAi0MD?c*wtclw*=O|CcM-JN3B#4Nyx11QY-O00;mBm!w?ZrnNL(3jhG +PB>(^%0001RX>c!Jc4cm4Z*nhkX=7+FUukZ0aAjk3E^v9J8eNauxbfY;f>0h-y6TkVr4I&FAa}RD=Fo +g#v+aw|(9$+-Gb>Z7C}r0T^4~i%BqdUkeGN`XY>S*3&NpYsm8ZIDS|*jQ#kO7So9g6Vm^5?SQgF4awk +bP^)_w0~DN-i&w&Yslk5jela7fF8;%(OmL#sX4QXL$rH|m_SpR2M2^0HDXd)tbJZxHW8jU&8F*?m{z! +2P*~&wnWxT^L%~wo61iUEOuhgioI-fThzS +ahlbb37;Lj-x@{8n7Qx2W^n?sWzWk4BnJ1!K +d&IQ3onn4+snc{TSp+S!G=eknU+15Oz}6B|o$33tHCl&-R$(tQn$*uk`V$%S+!?dUY0nl +uM$NMn4$Ql)Ri?8f-vJHBU1NG=TWK~`GvRQk|x|VZ-LaNYXvSV4pJ%15>K){vJRKi+o}=Cb)E_E(n8( +>x<$WrVTxo+#}0mJ8eO%YLn+d+?_ +ID*fZSNg^KnmA +%D +~$%rZ1Z}N%r#XZXdg5AdlJU=Tma(jfVfOJSnRNO4bxHOvWWgBXN>a_R=gUHToh2Oc0(Ymmz)yX$9&!vF{X>yH{y(eO6oa2%nx7m%s@y&}0x~=pGr$e!`p`&; +YxBHFUl)Q0l&S96Opd0(7z!@eR94*-deifT_bI7CW`6_Iz! +|Z3~Txr?Ykd7#B#)WLfNyqrPG)?`A5-jA_wb^ND%oMShSwdqxigU{1LYU-0dw2q>M{;v1Ebg~Z1DYa% +3_F%Oj*2MB%Ib;soe`saFA5hH_)+v*fyX1ATOi*di*6TiMLUKV_OB+jflCIv06vps=}SO0au}mMN8=j +6B+py75Q9W0rs>_MZWW1(csejermHvmVbC3wZgNz=v{egUM23ZFNL4XH2B}b0tzWcFjEaaW_@)gLzac +%-u*EfIgO*KWzXrAg{GaP|J5Ucp}g016H5m@2kar!d?4GXFRyv(?5bCYKF73PxZzAMp`L)0eQJ7( +|rDkw!kmlV>}6FU$c_ZqAOfLnC+bs0spaskz$a)bS*9=ouh@yk&P%F`h`s{W*^s++4hE2w@uNQ}YQXj +1H|`(Bh1Ds)a9lQ1mY6)0(3(s@kH63bjdLJ>W@Awho&x_nf6DcivIu{JfvkoTaG!4683Z8S%LUYoEaQ +Vuv%c2L^LFcZcQUn{SD7l8~*9dNSieRL5^WUKi(_n#XktE;S)Pz!-Rj7lACoGtA4U-Z +jWEIsGhfeN<&Z*~ydgQr)z&y0a{PipIYR;qd;S=Me>5bzW$lN9 +9}_d+3o&veA%Pi4ZV7X@>V&A$;^Yc8jnJ~BXwretTd7e_3QywXHqWueD~$;9b}E8#DD{S$BK95C-ylt +HU^j;AhbA^T!_UQ&hY(kgD?3C#?eLsOp~zwL!7Bs!{8q*b%A+6Or}nS&(zE#64OJcsrvrBuV72(RTDtW)LnC%g9jKkg`=8 +n4wn)w-ggxz-aK~oG_&rb)rM`)T&=&3=zUwgT(9JMsPki;n7~GuZ1oc6q8WO3onouadUfIl*s=K9S`( +KjtEJEuS6iVWl3 +Lp9O+$gN!->j0pj$A+$BSC2TaEET*T*>6)!`~P+V16??t+INgFg}vs)ULeXuJ;YEWz9l{i*bWi|)~ZJ +#cAme2IX&3#MD&YzT+&N)aEcL3g!?><)K}2QgL?`jbcR&L}1%8QOpdSVf85Kx(*aBzN}Kc!JJu4_>&- +X65mAqEL-;%&(=z0iFbD&0$&H0w13cmfw=b_02~RVHTmiWPs9kYZ}6=~j$8 +)^Y``nlT7!OGu=m+d8GFK$GKCm;xBLLu{b4@Z3SS-=9kp%5mLm)V->wo`-L&kfY98q_)1#`ZleweTbn +9yl=AdKf@LbLa3ueY2+^oqr+w9FxKfi-Ub?_{68ql+{@a!}`Iy90&#hY9+RKc~a#I>=R0U!$ve+S~_C +#TQ<$4V#|U9DpQD)$ls3Xe*@!+IumZ=d-IoW%>=hih{D_UXg>Uj#a8lRSVOfB~zchtGEx}5QwK$=kD}yTHUkoz>LSoh(5Mg~X68$gW$eDTW|i6jfddu +Q-oTpu(=%yGrZ^Y9Ei6s4$Z~A#1$h7-{mq;G0TcQI+6#?%kYB{a_%Vtyws1N&aYA~~*lS +F)rqSE7fTvz(bc%jKZzD(dBHqS!k9|!|bLqLikG1b~inI71P)h>@6aWAK2mk|@q+AxO<{P&I005Z`00 +18V003}la4%nWWo~3|axZdeV`wj5Y;R{@a%FC0WpXZXd6iaMtJFFaexF|vB0?**>YEgLUN+uPRAdAXW +eC~RbS9csg1$7G%bJP=ZU6oHhTOb=bMx`T=XVMEUc-EXZm19jzu9zbsb&w_k!|5SvG47r0SK?gEZGLZ)9u^ +Kx|PCfyy=FC`}oG{(kUChE$zUe&73#h$$Bf*iRvx5>!hOGt1b$67Q0U84*b{)+P3JEJal$CktM4TA-v +|AkjT!Mr)8o_hS5>p6GN7vTPX$D*{U;}tP6I>ga^E(qMafds*fuShMZK^qpXWS(Q1{TxsyBCi;JfZ=; +@Cg9th+K98j!b;C5-XwkxKrPIAvnBgSPx!E0@pUw60|J^u%NmNm;pCzASu0I2_7fLI$2V+RW$a~uw1z +Q>T@L;w_w#;^sy0lqLh-WD7Jz=P2kMj&H!A9;UNHl1LXIiF3CLwktOdJgqvkRjYBeh@t6^B#ic3bnwq +3cPNgLg@#yl4WkxXgRKoBD<2qTQ1L7%CksjWD^#?gRp +Mlb_UrROsTudcb!u33#Yn}wyI2Sq{4kNFV!$ofde%gfI4%y)xurCedtZ&AhJc6#yRw{O0GunoE +!+9QXKKjNC_NZ;WXEsiwd49{coxN`GU_;+vTPjCT+&m*2a8TK#wI46zQ;_Vg3(`&;vGeAbq;1zT)rq8 +PGF&q2uOh`>3>xd~ROvnkYE<$jI&=b@sdN|Px)e`y=G}+;&xZzDo?m&W6sp9+N%8z!ZYH$9HyNNzm_G +zQw@{MpIYji8lZ1@6aWAK2mk|@q+GfW>K-Kl007hk0 +00>P003}la4%nWWo~3|axZdeV`wj5Y;SLHE^v9xQe8{KFcf{yuekK7h3O9%%tygzi!Y;;%-+^OmW1?n +uK(WTrrYXJbUMVml-u0%!8vKY-2#nHnGV#}Sx@jl=;cP^0?NVhXLR@^y$~g=4nv-mSs{dIumx?ct6Sx +J%6C!^*e{P9>#{1~=597e%Js%t9eAs1DIlCI%Xonhq-mf-GYvp-9bOf^grU{4gVuUrEnuzNfMpI92XR}9l;}6ms}}pPFRmLc*EnUP&ZKeA!Nh^{5Kj*0?N!?ohTCSUh +4h`oCT@npXC^(ei5VdxKnoM>nr7XVRG-~KX-Myo)>n8K7YwSsNpJ)I%h)i- +!F0E{;@6aWAK2mk|@q+Goy)3c)i0043Y0015U003}la4%nWWo~3|axZdeV`wj5Zgp&IUuJ1+ +WiD`el~hfO!Y~lM_g4&_6e_G&VfV10AQZj0r&2+X7Xk_!kQh>X^#% +%Zf`8X(()WvJl`(;X(TT9Qh#3ovqcOuLd#bQFJEMA42g6U!(va;Xs%)?`B9WB?i|burKVD0f3`>+*=# +V5z^^q5$dz%}cc{bwh959D8qb$u?L9fFpwe-oQ;l62qiU>0Dy)VnR}O2AMZPW>F)*gbAT_}|j7q-Galvwrmrheu+pj{dCfjQPm6$+-Stk1HL} +{j}H122Bmrw<3$j^Z;lPk20iN!OGWHJI1I{hVXxpNI&zxo%`tRAKlQt +;+ofdWogW9kUuhGe3b%P}1_?jKwE4f8ha*4u=3hy|rn6+?d$k&WgXj-XO9KQH0000800Wn#To<8NErk +RC0GAs80384T0B~t=FJE?LZe(wAFLG&PXfI!IVQgh|bY*icaCx1XU27vZ7)I~?D+Iksz$Bir$MO_{ZogS~tE=7N_1b=See>{m|GYWAtoEDdm)&}!E}pvWdiVXPs)>5p +y?^`IUXGsbA8!AAdVKzL^T*wCd8dByYh8?#`TDEx?bk(BkCkhe~4gQsR(-9L~m*(@wF&(w9cW<8l1HgwrUm3?C9vL~j-P@6q1<{7rTY!~HL>zUb9J+qsdH<^ +&#Y;A>_j8_Z8CRR3E)xNR1n)O{ie{JV?-B9>@bZO7roch~F9Z#$6dUaT<)%Mug6Wkq+>Z04eynkDF+g +J6^p?iHhsef08ZnZrfFGr8dn}^$*&$mBty3RB^l}ZD&+tE03(a520G)-DyKP`=>f?dqD>^9u!QdifGhe*CD;y=8}57*kX#E!VZsvp^rzt7)R5~~ +;Bzi0@9F`iIG&E{x*3hh>Swo{nU4cdqg+@=MhQmUm$5O*#{sG3cNR5Uy8rEo719H(qW(U^Nz{0^(O|& +rZR0@cAcqkPhAOTAWh)BRvLxviKwKi1GBPlMN*RhwjM3I9E#3*u*kwJBl@vgUf|V3VNkl7RQi5eY#uUH@@nXiCJiSiW-q(u3Oh2lR +;739mq7Kaux0c*sCNWh>W@)anEK)xae706fQAS3e?G3Zdfk^%@(zLEkdiF`#&N|3LlKuVCWqyS1XUlD +^6hs;;Q`SMsJE=BmNWY|4;#x}WCl#)xbZ&@iDbWkZ)0`hy+1tYA0oyP;rj?f(N%O9KQ +H0000800Wn#TD+AYDcuPVmFXlJGJn&%yS_m?Jri{_Femz} +&CazqX$!c7Kfb(*9_%c|>`22DzH1dCen8XM*z*69R`#KBOeDKqyTTl+oKvP~EN3@x7elEL5smVpT@l4 +*PIHn1%xh*r^`bP$Zv={!FeyZ)$R0L>Ht02%-Q0B~t=FJE?LZe(w +AFLG&PXfI!KVRUJ4E^v9xSX*z~HWYsMuQ*5^CT~iXY;VR=tXSKjK+z3NfjtC?4;?#fEj3Gkv#YBe1}%qxEjhv<*jkngQ<6}Y2i&+Sd_F~t9IM(oo8lmL8AmDzRS0uJ +iJp6u4|X)D6?Q;Z@%bNw0&c2yM`-x@2uwSM&ZT^a2Z!Gd8szm)Los4WWTdmpiMcRHQKxCPA9EvRmDeA +cEhh?Xg3tddI@JQIC{1lqj_cSOre3r!S7T~-@&79Up}zMsaQ%ez+&Q13ON>}Z4@f>=Mv(_t%gRoU1N0 +t6nHZ^6M6wZUyvfp_NL+O4Z5+B0^T-SwYni#SPAVM-d +fl(RLP%qi@NrlgId!W!jB3-=|RQ&tS_(3PE5MJm%}3L?sQXDZqJ)OZ#25L)#i5FhBCZtZoQP4K9c1GG +qha6M}Dwfy+Kbg;(V*fKP=CA6yP*L!e|ljthgIIr_IYV|UyntWWAGf=jVQs*LogUyIXO&mt%o2_?Aj*VZ836gInLW2^4 +8{jNpRnCx6tc~@bv#rU4jvXf|mT^SN_3csV%Wu@;K!J>`uWo)7EDVkbwnZ1UM%0Gj%408^MFcvlSIx^ +9L!Nx86B&<-{e>vGHxhr@xkUd3X}9miA +S1v;3{C~418B7eYq~!Rk0HiIe38{4D!ER!NqFg;3@irokGI`bxiX;IVcT0OCBdsurua3a_Vw94<2-d# +iEtvfs#IeG$QUGu@jkb{(kFWb+kW8ml84tnrH;pUN$^qS|g^DSr0pfy99 +Tf=utBH228=A&!a$*qy3OL51s?f$l1pY6p8PrpD9Q(wG1o5FGWcaXIGcK>r3u$mfBF5oU9czd}Z6%%( +$I5#!Qr#3{L}ciMXLgc8}f&KA@zx@lZ9({yccNJ^50Y;vrbv(*DtG0yCf|1`H{0uq)AJy%EreM^QboK +0l4GFBf!AxchwdhsY*JqH1O9n*>S!raxaNRDFThv8(3(El1L4uCKeNhXyCi?bN-AuTHPL+U7(ac<=~~?rPN$2A!%mNv7Ej;%u;Rhp;Vy<{+^MGZIE_3O9J5C`z+w^ +Db_eRJ|>V+g8B>hkfIwhuWp(Ayl#Op7;m-=QlI%I~ag_)j +sGVsSy=6aHfo~#6!!tdGw{b%nzVa +R|_S5uT+K3b8@6#kIev!sAZSrRA@)Dcl=5<2)@w!Mi#uT1%UM-0|XQR000O81D +B*+#xbo_Uk(5O&rJXT9RL6TaA|NaUv_0~WN&gWa%p2|FJE(TX>M+1a&su +5kz?Avd+$T49S=b&bW9Ot`5e#g65%J-f2TE6HKmWve6u#x};!p0UA(=^677AjB90h9smaA7JG4s-IpyXKG-ACf5)P +|Qn#8^(piO{cW5JLGV0(^PTHG%LrSRWe(IjkGDD+T>DO6)n&oG|861|?RC`hz{vT;?t%8Z(;H=|HW?0 +Q;RV^*4S!qbgD1B$7!Hk^FDgA9UCqQ@=QZ!|}R +StjHi(8k*HmX?vSN-D(&D$QRT;LzGExgBf92rF=|R5BJ{Iz6Nf*SCn4YhW~!rePKC)34F;wQ(km{5vI +?V^ZcaprumUY1Yi7mhM+s>q>*9mulrc?Q?}Ut2jK;T8?I2%!KvHNVT&|s_c+Vo6)C~>ZkOVD=ycxF2l +0O=IEGE<&-p{Wq8lskMLQ#%QYf6D=b<*~WVE*{cA{6J7V&UT@5 +fT?s1)w`So+^+PiLDH`TyhbNFpJ{;!^b3@$P7(vsi~{Pe=EO&S=kv(h=(06Qfr|lwKDU+#BOTOSotx! +GOmi@s2Kf8a@*3j`n`sCLN9T_Au^I3Jy!h!|~o|$BFK6ym%3uh#!w7A~cOoitdT_9F5aRkze;4^jMqJ89o;NFv2} +!loaQtr7TZ&MYxE@4AWOfZ#34!n$r>M>5bFVHrm>FZ^iXwG!ZG5CmfF^SaFWVV>ARSFZGIX5cTbe6iK +Y~^*uyQ*!hV>q?%7>B-~9|iBjF`9NPDU=zVKX;&_xoX-f}Ff97VPel3>`eNZ~%5|!RUGM~#SDt&){TU +9=gk%tv#8-jTW<|@pmFn3^n19KbZO_;Y}UW7RtD*F7Tts39}i{Jp)0qy6ozlHrZtnWa+gMA(LSFoRiY +9R+(P4f!OYcO@5Bh7RR=0li^f;8W0KEipJ#y_E +IsT#ti_~5a_PyrA7GO?#N8aF7IL{A?<*l{3!X2r5L6FO#=5v|guuHsowXH37?*=cv$q&R8;qDWHT;6Y +~E{&I_p}fSY{ddsiV?BlS4AwWWcVJ%xxdmc?%+_5#Z|@JJoQE|As{le@6CiUSW4hAd87;7 +@g!^-m}&#^|;VGcA|>Q5>%F6ZEUsLdfILMf}hTT0t0A_%4C1tH;_kRX(rmxY8&LV{4r2n8X*EhR!JBT +Txbmzt2Wf!>7l3%7IvmcW({HMi875E0m@5)jS{31dP69pNjYJ|=D{>*L#^KDOpW^(Ag8>mgIrLzb|Q$ +?Mg}rm&AqaUbV}guE9)(8qaEA2Wixj~PMG$9Yj7GlIL189~s;lu#@EOfU}}QFF~tMfvib_Z+|DT_`O} +==H*G=3{Ko5_*-;VLlFWu{@1V@nJB{2hI##y7AloB*+vSU}PGE4#^ohk?@=Ne0i=~g1OA+FoVw#^B@Z +#iy%uN%OECbN5CUR>*dQ +AqH$ZN(na;dThXBkwFz>>=2lGpq_hEhoavS6ekUJoELGFQk334CgE50;)P+kSnIrU_9E;h*vqwv+d6E6ULW)#gLMVgRak4V)?rz}XL63F@%)^oOxU~8eLu%EGQh5 +ZfRU(j8~caHT{N=+-SRn5V=Rm~@%eRTU9`t(!wewMwx75c2!-?hDQFN?KTsDZPEbh}F+Olz+=rZqJid`anx&=;W3SL11;>7?85fY;{69IJ8ta(Xc3iv6y`*RWvNFg9S^sQAj6WME8V4TcG09mX{n1jhA>cT&wH-Em!QrcP6xjubydriWaad^2uZgIN(I5qa;RQ|`Qg45IWDT{NA+`5Qc<4&)@n< +Z8ZtmsZR*D!Gu^6;DcYHk^H0tu|f_#DP{jL&1-!1w~jS1`Va@zr`t(;oqaaBuvdJF|RALCKZFYosb&s +T|(BSe33;r5CDFogX^ZAUrki&zU_YMw*-cwD!d#=sRxF(^_doRF&3>N>Yc2Nu62q*^92!juaPAt$(og +348y{xoQ36uvmInEIllcN>nV6N@A%bmWsF@wnDBjhr?dd##`*j%(HV+-Yc$#dS|Z$W0oDg;ml#LR8om +FMU_y)RbmZOHR3jLAU$rM9IB+Fj+ +pBssRoubV1@?j<|sfS4-{-tL1~W^1+qj&1rq3cyp?(S5jK?_uh9Uk9}BuO@F$+%mTZFb0XoqNVp&pE{ +cRpBH^+~sEdS#NVp;ru8M?LB=1qfI?26od*9Vb)0azKGCfm1sO^wpnL4X}Tc|?~bP4nczI|)u<@#iiv +0B7=v0B0Tu$spCvzjBmXjY@R23ZZ^8fOLLUK%R^*DT8q*8jyL%a7O^ON?uoCBW^5<;4AaSraYeewMw$3uHBg3uZN +q3tWFSfqS8>#&Hd?8YTWm>^ojnRsgZJy~3-?5))tB{ZOG9VneLPi7$iI2(AfMAn~QLf^jd66@Y7Do%5 +=)yl}4oON@IZSOVfMS%uewRd{t-h1Y{scs*FH-*bMMEXUV;!=+~qh2PD2Jz(w%KYDEm2hz~hfB^p(dY$n3eA?-@rlpXYBI`>m8d2Xm}+27TIHfA;e%U%gZTc(7`Uzis3E-zUef7mA_~{wIN6$0x*H8HB86ZG!`s+#FKfbw}{CN-f>c@6d|KbSp>3>u5 +*ZYp2@)h8%AM?`(jsNoS_q_f}?hd{4ftMjUv$IzPEt>KaBJRJ$}n=$_}R$IX9$uKNZ^8qhnaf7oVHmjhHTvHr%#XFL>DA5O +50~wzovW+b_ftS0{dUq-Q$?HSw&Upw^9cmt)W+hcaq5H!KJJyo^QN`sw=2`I;X#DQUT1+1@6+tvn +RI?jAeFw~cFT}|?iNbeab1c`IOP_e71$MKM8aj4@E=bE2~o>Mw@_dgAaZomh(;^x{t3Xl^&1ULtQKGV +Ia6b{=7b*c^YRHluQ{Qb>W?1fGlE@><7W!{4r7v3f9a&;X%1V~rtaEB|w>!Q~=not(_q?;|w(~ODY|v=4L8HwEjW!!J+7uf3l%QJpzwG%JP)h +>@6aWAK2mk|@q+I4v6VluO003VB000^Q003}la4%nWWo~3|axZdeV`wj5b97;2Yc6nkRgg_f12GVW@A +(xkdrF`!^jc8#RF-H$xk_}(5KE=#`vn5<*;@DFsJ1mv7nVlRm41Kt01SJfnEy9Li)p;tyqf&epLFa24HELUi;g<(Me*(yJ?t;Fx3~H!5r& +p;zIb^o6*!5l563+cmd-CZ2OZdwSaL&*ER0<}!8T2A0Vmpu74l2D-DqR}Ln02r<+o@I-48q)Caw6?K9 +2B1BK2enAZ-bvH3E+u{eP)h>@6aWAK2mk|@q+DRy5?ti~005x@000^Q003}la4%nWWo~3|axZ +deV`wj5bZKp6axQRrWlue8!!Qut?^hg}?2;H~HKcUQmML2)MUKy|iY1wo3^gJDJ(42Vg=!F|dmnmF2m +u$RiScTUryq}68aWW}(3)|<*-?keU`OpdQ~)CIp=Ybn2NfzkS@vlL$d7C^sx}jsNtt1#p2!eOZy5mIH +foi}{5y2iCs!`q+MJb%w;MvrGWLs7 +=Vb_cOzfget3}b+rD?TVVcb9Yf5A`f0=_a|@KD!v!c(H67q?vO{!6-T(xy7}ckM(84^T@31QY-O00;m +Bm!w<{AN76G6953?SO5Sb0001RX>c!Jc4cm4Z*nhkX=7+FUw3J4GcsReZ*FsMY-KKRdEGqybKAI%zx% +J?x-;*|bB=0f+qb<;y>t0$>v?I?iPO#P^fDSnqGR34l8=((df&(2egH^Gq(muB+THGKX4*s~2!J2}f* +_=Rzke3pEpoOI{%XYq^F_K&LY6N$yN;6Y_t|lpWNFOV;fE>PgZ3z6%QRd=OSVYYamdmn-m+WHqU9>UjloDSWAGfN!FtIP90(wbJYQu8&!0nU<}RZ^q**%8-5^~)=gHnWd%lsFp9hky +;`iQsodkIV550cB-|I@eB(dWbiU5AcCa*m;`pUNpxM?ke{4c`BA +{GGYA<%A|kLWAGz~0JNmyo<+C97u&Pc54mtuBS_-p>}=5EamM8^;YS%~Q=)w;L@Jzl{~w;0_)G42|6+ +lkbcwV-C?}UkOD^XlX%+LCmZOkj);Gx%>U7cKfyaLhfjmN#y^TVUFQ}3tg<<-Z-Gw-B=z&oXw#@BCn^{R-epcm;W!rXq|I +Kj)cK2|^73WzzatloXbMBMsZ|1!vB7$UYB-EJ<_bd>*pxz$GkKsQ8j-gh+A_53FjQvX$T0k?A0C6e&L7(w9cWs(sIpv*tRSd#UqfgZI76la|Q2rvt}8*rA+>oUVWU)+)5NgD7Z0g7q&q_U=)17w +&UfDidVPya;}mposjAvJ`2PHcHAU-(NWh_fNP_v1A`VEv}7`vbQ3BO`94s7rAt_go-XmIXrUDfAT6VQ +M;Aq4I8tsuGH1v5>q-{1~h&fd4^8x7)&aa51~3Ucl7bi +o6}2gdj96ZDV>Tk3~wIsILth-$4@0Gryp)+(XYHel;j3Oqw9DrvQ&IXvj|Pn3bZ-Qa}nLHQ9&xd_%BP{&gGz4(`@p5*dX09B0mjJYRm)x94o`HeepQ0?fjg8);i;J +@X()Hf*e3pmrzy`sQOw^|0{sMZ+=hOf@P1(lLrw^3bn +6{`0I=~xP-W2To4uY8|1pkJV1p~t-UL>H)PWaqk$2r*}Y(mIM2s8`q4TG%Dnv78*D?O%WZMc6rwJ}5H +StL9dC@oN%$@?^H(E|;jKETk02HCRV>;q}WO=Gx4Gf+b-z0iPBQeL4QHCm(~&}2~xa;j?~aJQ3Qafvg +9y~$@Pi2G}%dT!VAITwUOEn6{Cszq}s%L2i9qDER(q+*-ZR|Zt(u%@#GUY((mnGTwl7~N@9n?VVvCom +3SCaE(^1DIRJHj4-_;;w|TnI2>WRglr9oG5Yj6KzF;Lr9UK+AB1Lco8~e_qWAHnkt3MI>Gu +r++?6jE~ODGs`S!%fEt(*bDWa}W{8LIJZn#PXTs(M2M-9V0ph#f;Og`|>?47n}wVgF;|-^xXYNwAn88 +sQz1?hg#})@Zx5k)jd5iQ-s|xgb3~UVtb9ki@mcqC22FQFZuzW$;qkvMKNa7&)}=4+Mse3S<6Hv?JaO +Em7CN!1&=}dJZwVQ{U-uyXj)P+sCwzbb6-sHk^*)4&V~bDK?r=y@1i6@bEG4%z8z{I+_!OA1tFX#Zh=CDt;W1JC=HjrUuQXQgw(ZQT7n}+DdJ8aY4TGN&uBcH%Bs^(Ar&cwiD^y_{^ +#-}K%b<151{olgbn{D1yjK)icP?ggz2&+$D$!aV=)P?YBHG{nzF7QDP7=b+$qa9e4p0c;rhxreizSI0 +(T+W(eD{&hHvKgDy|>t_R4`fx;?)NDYt&`i+aRt83uUh|Bx`sW;b_9pycAXl${EGOXdLRX>L>TGLHnfbR+}eX9^LLHf_u +`0cr5}K>aa3m6&dz+i<`K+OekO3!&6KE%_%J+37bamFOW_1CZbGY#~C+GR;jZ*rnN1*ZabQR)>0lbl +Fbo`W}3{?&h$qexC_zaj!MM_-<|~>6gjmvdb{RP>H~M!>{YtFjWtWgB}y=x?UTCux3GCMHsC*4>ZGo* +9kT_Z?Y(kARZ<*D<~{@%4RIJr55-Ux{femtN>sCz%2W@Vj%G;Kw*+H!%hQ6&2}n$yoSGL&eeTGttF5R +*Idm(MTTDBxfi+Ljgfn*?Gc(`0?UIfGF#Z(u_qNuQwDrem(h%ulo1{h+-}@3}ssJZ-bv=1x;?yR^aZFnikOQd>bY8;G;1?<{h_gL_H^W*_`z`-pa#RNp`}61#34)s +S5@n1IRP4{VoP7CnAj#8!pgg6#I>g|f<$s-Ani)r#UM-;yufL}9-8whCQMmRW^w6@j@~&^^510gq}ss +Igg8yJ>ZEA*r{S#8)>8t3p^dib^H}X&iNHYB3HQn0@e9HV!L^$GQ05&Nyc6#z7~K@PF4Ch3bE18&LsO +aUx0hMwiF$W&ze!f1CweMY;9Ty#{gJ7-PS0J^OHcJ-fQRX@c*3Xhvu!$N%Xr!>WNYJ4ZlTkYQZ%$s0P +GrpaMisvnon#AV?4-S>D+1cQOSw(E+EWhoG?_zBMQcx^{jKEC8-6XgryuH|YEFICwzuh%jb^;1e7m`x +yhAR?aJMJ%vp&4yUpRhCO&QKYPvs1=JHT +~6P=yYh~vSlRbVwmoChB#Z);Q9L}KO_{78lqtiaL`)?dN!*~y*(!xmAU+$H#&|h-K}kYi;w3g-qG2 +|QypUTc{Cc0+1?(5-y{5QT;ks+{CDKecg6n}PnmW6`x^f7sKoy_!oTG>tzGe7o}L&Gg#Sf_e>|%2kJS +Qzr`VZ)j1gc>uYT6?zbf$q`U?L`!oT$Iz&`vg{6~k!fA5h0c%<-;iAah6d%_=V{WkGi@Z03SukepYCj +K7?KNx1-CZHyMoBUr${Nqs#|0^kfL1o_34jj;??Vtm{P5!S4|9Di#Ki<~~fE`plBfW<-xaxbM_et$5J +O9&UdCjX~-|Jm!(W~CE-iu3Cb-mQPNZQnQBi$5k!yW_)QSNz8#^d>r{N(}bD<>+;Rk1F-QFJyj3+Gg+ +Tou~^HrFd*wVE+S7#*ue3F}E$icpn{xmt;2jYbWZ{@7~)#dLBFl>LSM&;pIwW`K4K@E?Cgz#Hd(Sv5^ +sowPb;u(cY~OyZzvS(q9WjnUX2uJTpOQFZ`vH$N?+L=DQM%nu-qGdZBKKP(^H(x_OaqCPdEtnUbaI;l +BrMvQ`O6Ot*fKoDo4ia5auTL)^c$tLdVY9!_I|-cWhcI?zFmkSsVk6vcuf?b}{1urHD(h$k%-mL2c7K +pLrHne?V&v2c0Fj>x=~GsHiu6N%{ti-IY6=@vqa8srd0tHWv;6k{lkX%j4cT&7_(j{?6i5xQ5^7Nc2c +Pq?*X3q4n*M8?6`F6h!(I5>7-@e)o$0>oEXmw~zmK9Fy-bV)>xFPYWl(fL|I=WNY;3wpc8k(@|i*`ze +GJi657A*1MtgqH90REN7evsXQr{gGNR7vEkH88?|H*rA3*{UxtaL{CRUE#`2wB~gzHdYs$|Kje<~qLH +iO{DCVE0k+}v3kb;H@(_lL#PCHd_5;QOsstS6O6QUv4%qdgF5hyhw`m-jjMl0BQ>s#R3bG>#qh&Xqzp +#IIAyS|OQakv3!oHglx_al#HrCjRjYU!GWe!z)zv_F!!W0Pb7ZRc0^@SPP7G`w7jxcVup|gqs`?|!Sk +2PYCN(_FM!G_gPpL&0N78QcdN{He|_vZQy`J^m21h2=&>SzaV-6jop!%+7#)7D&rRGOk5>D6R<`*Om +b3R4Mf42?ZgHVNY1~j+MrRErTHVH+X1OU}KP}GZpB|2YSP#W0A^Av7%ZV#%Kkow_9rem5WrSMGFx6$O +XBzExl+aL)6S)a+GJ+fj}Y9-lu56-d543O~KR+@5y%gh(##`J7`%3JpMh>I*K7(=7C=!iPClUwN0dc> +Om)Lw}m!idcZ{XzOjicqOe$-jwN{qP}-8zd_SJCiuKjcQr;am+MSAnD7lxPlu-RzfwBJO3Yi_ASZEAc +@lgu>2xPCQG38ZN(@g4IXmZIG>E>a%%mC`E%H``xW&C8Rw95q8rm~hIoorV5v}Q$&;v6lTURC(uk0po +v$Vwlp>r-hi2sTwo4tve^U%rHRx2VXF7?6_Z7!>WY +g1uYvEXi5agV%EJP_{1X-5{ApFXvN+DJJC#=0>n~fiLa#!r9ICvofqCgwYU)x4Yo8*#l$IX`qpy#7-q +Mc}&r=^Dv)?}}S+;$@Qa_r%#w6w +7jR7$XgVL(#n%Q6)5z}+k;6TcA;Xxg8Nhyq=vXFUt~Z<)-*tnKotfB@H2M2;LxsK-H`82>hpBP8hIor +D%sQl)#n}x(3QYN>VEVqp{k3x(f)1)r@{uW7@$A34GE(qGlw- +=+J;8CA4dUISlnoTcg{stxPa)Sd>Tz{gVh}qvmj~j>g1$U7~;R#)V{E~qTQH}UD}|J(Vp6dXfwf!4D< +0p<_P@8d~6%^YL%;kMkBbzBNU;w7yGGz?lu*TFEc#6XKI@3>i +bVEb0Dv}CO4TieNqMYpR>sFog$A4?^qUs^~uVII_@4>WP@3^dXW^6g+)`e||nFM{9gpI3&ZzAC@5b=* +YiMUII`t8gk1$eFwW}5{DZlvBD2%a&*C)}Y`js@$}zb?TkDn$>Y3_Y(ezU!;HnTdT`xbyBbFEt@8;?z +!?61toXF!}#bO9KQH0000800Wn#Tuc^yoV)@60EGtt02}}S0B~t=FJE?LZe(wAFLG&PXfI!PX>Me1cX +KXqd974iZ__Xoe$TJ4g2WPOM1u()CZ(c`ZdA$&>dJVu+~j06BynUr-73U?=fsZFgwcvg_@Q;q&ENUXg +_pIEny8)faw$rZG0oC~DFupftLsIc=e^&5m|yaZSDAQFm!eXlfGc3Sk)SR-g2(s$PEGPoLD-h@f~^aP +Q0p19t-c^@AqoKL3$qx!qakR5qBAd3t5slCjJAj&foYpZhP=MD_VRb|G>tMkf@JI5*lkj{D1LVhzfeCWLy +E68$>fHg$(?K(8d_~_Cs%vzUFmAw}1*6NuF*ZYM@a^OP5yA$DS>wACeipn=e;irwLunmN)YSUcM|pU( +RlC=Zovp-u4=FSNj_*%Se8!vri1M52Oj)vvk)rg@J8#2p1kxs1e0fYsuG*2CE*XcuMYA(O5-j33}01y +I8aIM_YpjtTn4nG%1i(T +4fZgy?MmNwy9*L|z2(wi8MwCRKzK5(2(Of8RSHDp2h5@&ivGSaWk+^~T`=IJpEq}0;wAQwbsIEQV8ew +Y57ne8sI~$t9Ohotb*3gruu$OTwj!`OKHgv8}&zv+%4p88}6|jpSr`lvkxqJrEOGm4e}HBR_yz2BtmT0ssKt3IG5l0001RX>c!Jc4cm4Z*nhkX=7+FUw3J4WN&wK +Uvgz`WMy(?axQRrrB+*yqA(PG=U1Hggb7QW**6n6aUFJttRoY|^}#g_O3`M3vTYs5f4^-3FN?QP9uUe +o-{qVhFlICbvB^oc0FvgE32+5w;Vi)x4DsI;&gSweSmkPA9&%wAvC7FwZliacMU>f$%$GJ=lkDpwn$w +Ka1Xo~vya?x;F_Cd=9$=PQP~P+?Wf93jf%yqUju$D;LO(MT#OZ-Py(b?QLFFd`g7qA8UeMT +3|`#LS$n;uy2`*4?B`npz-N(so^G6TW8xl7&0oVh~0YmOamOQR%-1vBLX8G5t(~@&4X~9@bdsFQ>X9 +p>N%x8xqTzd+uNN#+1qqe=u}|`sj3?L>8c8ca5Z(+V>x(uhpM9|t!XV>*6A>#v%mlC-pC(%K6>$fJ1F +q#Z0bN3d|0qiWO9a0JS+Ir+E}kmp7&F7|mCVQ-%aJ>vL@~y6$Y?3p^;yr1POJn{`B-Ty +og;eYgA5LB11={K0XH|F^vHhc#~CdiGwNGX$4Sw=8JgWU^@E==DnWRc_wS^5l)rm2sa(`pfQM`r-NGu +K#o;nH;8d$f7&=zIS`SK0!DO=Wlm1mV<|SUVrp*qN+$wz$(qoPvEV?hYE1B?b^c!Jc4cm4Z*nhkX=7+FUw3k0a4v9pg;qvhVNE +2xZBrJ~*lI0PSsN?PS%s6q|P20V*lM}mhKnQU`ymA6@2?E3lIDim{AJdUS{smR#?&*1MTH4+oyXx~-U +sc&2q=izs3;%}nkX*V;Jlq|r7As08&&z&mUQL6C?6Lo3^I;=uKob$Oeey)Ywl(-j% +KrFI=gFEF@$yB9Ec!Z5rcg-R?FJRT7Y^Kp#?Lpa7QG)QLFgFrkzB6H(e-w#` +EP3Sm)zla_oDGUXG(k~&sJB4{lhyMilEfNT7lu<=MbVKW|si6N_84o9wAGpGNVu@X}Q8l9s7gosk^AR +Ls91nkmp(x)@?XnXS!Xgco%L?PYmiqXPrgb#&EK>}!F+y!>J)t;GE$(l15=BCJ6=Ngj<$~}kY<&5H0Y7 +ktSkM8aff6^Mh8AO{Xk|jYMk>uw-6p+IE9e;+3yW;`a>4IWr05E|ELJ*AM|JhuUXw=1?akYaotkM5U{ +YHF`wF6wBeby>lxLYQ<0ZVVpYUCdyO9T*^;J}FQ7}?}`sgreRY6CyipHEayHdNiSmEG1bXeju)D~5Gj +y00C+D*UYBK7-CDXx1Z+YZGf1XP)!;pi`FijZvoMP8u`&I%n8FMRu6Uyy3QHiDB +)b0$YqK}%CXj2SF%*WU)J6n+G8P6&%@?2=QhD0qwm8c6<=PcOxHFxW +f6CULMmfgLsI%7n+d1anO)c$^z+Sz0J3Az1 +`!S26MNOZeJ6d +MMx8G5z&mLKAV^}88tGl)+iU9702xKd^;5-KIgW;RRi`ZPXW#HS0mNteYY^kK-sf;k?V8`j^@E^9Xm- +@%KWx(3kq*k0kVc}_!@ovu5ux-?NIwM3e^NqbGFKV6QKr6BX_8nASvz&!<|i6YHYyiWJ~EQ}%yFN(q* +HGR&9Deu9B3oeKIBKOCMza4|Wfo`qt#~1z2puU9CT)!S}`Oe&`?pf7*H-r0zYlU0qpMCCm#`j{lGz~} +c?md-ilYIzhO|d_o9Ngc2>Eg?;T)O<~&TFr~@#dAcuD*Tk`tCdLzW4r(4;ZcowVE)Rcs^3yj@KKiyi`o5fgT~2>2kA5wuf0svpl+%ah^!F!Uef +s#pU*+`6a{4olProat$7FC^9zHA&AB2nCPFQ=>5 +l1L>V5UB{L#E}EyZaMCTm?mD!-Xi+VMZMzJXte5q1$8 +7-H4Sybz6X}vMleMup$R-7&;vhW=c;X(;$5EVpC+&BQXLGn&pE5!A5Wd4sj1mfbT2}f#f*1+N3hDE*( +qBF=mETngPuLY!BMyzSO;jZ28u4K4=nRJ^j+0Yw? +ETB)%&0F87H<3u8N$nbz+g~2wv;5DoF>Ld$s`GXZ`O7UO?AHZdsQs%jSI!AO5UnYDIhny;6bN)lK>y$ +AW%)c!Jc4cm4Z*nhkX=7+FVQgtx$h+lx2J7QbX~j!O~$y)*k>+sOs)P#Z^Fjmsv2AyNVU~YXkB|AKg{TM +##f;OW=`p_^ad +VjfmdNUV$0-l9qcAMbjd5#fze3`0Kn8qNxCJHd~go?}lcBw%p+lu>oo6^6k27wsql{y3iUYv2ozn6GnIw>|`JvvJ?$qv@k8RQ)o8*QwR)XQ$`k$T4qfQxx80$SjhqT@?}b`qdziMi$%tX3G3Rb&d^Z+k`x +wS!tc#QTOx_C`CtV8X0{W|Rv!=Lq&&ae-fkwW;0YcF!sAndg$PXt`w%x~}OK=)Y%Ya+k9+!h2FT!dL} +$$Szy96s#Z@h||x_(NKgzSd!ycl_*tFs8j +Q%bDai^PNuNS%J)#K_ZoiSkAFAvp_0YA{1=0O(rx6FK3#n1tc)t0M_!iKCIV%K=fX= +H!TVucwQ9}e|KWnsTxL&GunY>y;9vMs>LybOGFVXh$kdlxN)9-T3Pu0B%(YxbDe-zvV{*d3!);{J`rm +7=ATe_1?YHjcw%V*l%e)Rhvq{<;p?xk(nJ$`yLN+t= +&G;-^sk9m%Q3m1J`DSM@+p6?PVtl<3eh*r(zDuIrutLZ%b%9SfY+MvGha0G^FV8YW7ZY;i2MV +>>$`B&IfYYg94Nh9!!@jZQdT%Yq~Hr7L+{WyV%u@iM5EH)_A41vPpuZLPHtM_3%PkpFc+0acZP%dYo+uXTBzB +)?Nh-@@Gg^+jpM2|xkenMh#z{71xJo!lbjk!3|qFi-5*E82K4xvG` +6r*O>z$$ND0H71&P!UqHE}-lJR{C3dVfMr(CNHH34D*@ee&V=I+_&KbI5@Kz&Wkj0NbG@VT^Zt_VKdW +)=&~cC3s|=#wY&J$?WQ +7%8>>J!=77fu>CfEh(dFMbDrqmE9uPdC=ldDo{-3zd5b(s&@Ki+E}7KO1xLIq0jLSh}b7=-JCjGdVa_G +qCAfN&{5xRF3Y0US3}T{Ytyq@&0lHK~QZ0KMK}%Y)NrEj`6ahJ93T}l2vm7uQ<*IR$GDB$>730NHZtD +Kt57)14RWd*(~)l+sB(QboMDXquz3J{s&tMcXxJk*P44S=sv>@*OB9-iA$m5FB`%e1^-waHQ^t)+r+3 +piT<|n$;~yzhN9{C!$FA-v0=2^Gl!WRV8}Vu_Y}697-i@oLVo;Q;_CT=r4^P>enHjqKiROV3Mv7clS) +==4hBWQAo)+`e1|+;IFCwYsg4h>7`~xe_Q+~=RH;q_jJpBwGAH(^UiR|TbkeraSF|;U8kPZT9%q4}j% +6+=h5m~Pm7_2Im +lDs6`@^m05S4#$uMZ%%v}UD2dxj6nMn2JONKc0d!*FJJjkSRl(M-{EmX(5p@lU4uxxBjdc8nugZ)7L9 +a1teh5?UeY>$@p5wX_dWUEoaN$(0Z-8C;iSU*8>M-YjZrQqb;geqL_^Ox +4a!DPgWK{8_-mV=hA~QG63{iiKoXq|LP)h>@6aWAK2mk|@q+A^?=@+vH000Ra000;O003}la4%nWWo~ +3|axZdeV`wj7ZgXiaaCz-n>u%#V7XI(2VBJ4bYpa&yTjJ;9T-Y;raS +&|q*|=LHXX44UZo`@P`B?Cz)delZ%pScX6A?%gtoK6w$+-APe+B7V=1}L}H11|&XcQ~UFF!UX7c7twMo$q?RjIS95DABV8Z4ZJ+6NGH|g-O@KI>yS;NW#OZa$X}*U!i?xxdkORgcHuH99)YNGij6$OV +a}i#nuo2a+ZUU>3uUk9p3*&&D0oxuUY4!qPVi&U>$ey))?LGA;6z5==m_D>E*NyyQxDjuxQ*p!yfOKURWE5D5OrMW +csYfdn$L;%T8IQ;^^Se$Xo8*qut78Y8~4k_<31{B)t8sdpaY@kB`vVUN$%3m5zN!WEiXFO}5yVtl2MqrI;S!`snk&TUPY-DFfc4lM~Bbyl6xsjb4*@cl^7}=$fT^bpph7CD|LqI1RAw%sQ +pq|98*Z`l5U9rJFIdjDZ{$%2cjR%u+S8SY^T)1N6$K=u#8&@XNR_uFojgOr=dBmN7>IgGU +95M-ViBC;K-Lr5;VM66A5`!mCnA7V#NdJEd`9qT~WZ%XiQ{;f(#6Rhlp(sC-!s91`#Z+dBD;-;cyOwo +R%zCLy%KorD-mL&F3`ONP`7t9wZFNZaVDXgNDhfove4#F?~pNu-%d`-=^XLVz{f@FuFdNXQU@M35DGa +1#pfcmo$G6b{(4(=r)uIss;G(D9Y`tHq`iNBTN`O;+nR29Ck;f*JXFlN7Rx;>YWVSJ1%#k?2OzseL_r +t0m1nJBuhs!U9BpSAu1?R7g%R-;qIYt8FWpFjKtRwn|ogc1V$sdajV&gi4)HWsKfixx^9Uh<*@CUmlT +sZeMExt8}#o4aGp3^0AKQof=Dq{f~7=QBnOuQO8OBaw1ba1TZ<|1?AtX9Gvj&=y2qzd%VBmoq +0hgBGRfzh)m_r5$>V_CTdLnAhM%^*SVodbOfOi5_xF>Q#>QUZg`35vYW-QFj&DU+q<5Gf +MBhmiQMU6Vg6CyZ`%?|1=1puZ&jGix+kAcZH{5ZP0dBv1?2V9prRgXsKT{BKWAp6I4(t+Vq0|H8{;ej +{B0w-R62pGiU?CKPn|NZwHC{DcMI(yk+!v$}?S_*DtRnyUm>-U*0KsTZ*iQLy1(Gs^)o5^nMx{(KV@E +q=2C-t#)#*X&f_7M<+r@TBH_vt(7B*E{9lY|IEl5CNxCjA*M +vs$E^Z8`%g2FZWqf+kSEEaa8js~Wdg%e~vh-$&F{iLS)3tegw7zO6PggKGekucuTq-t?i+Hvi5D0}y|2k +7PmHip!tG3%}=y!814g|*w)%;fMxaV{t+8;gU8svscAg4PXgzDBA^mlSSyizo<7Dz0;u^N?g#Z}SP7J +PLZI0Z9mjXD=w{h~=9dGcOvi=eOIVF#f622e`_1QY-O00;mBm!w?eLj=fM1ONcP3;+NZ0001RX>c!Jc +4cm4Z*nhkX=7+FVqtPFaCxm(UvJws5P#RFI5-$4Ws2Pa1r`W!fu;3^u1N|s?fPH@jx13&SDG|PYKd3$ +egC(Y?E~(U>_|!$DJxwI%z#0Wy!-L~-&ImNjqCLGLJUC^jTlwcLYWxb24U7DADg*|h{$Zrfh!T_@ +O;*+kJ1yj&AR%<<1irB8B3SDchktaF(c_`ZS)HT`^Y3R=JylhYKIwMIU@CLrl*J;*}tsL~)f+wHk?Uc +$r4={P!@ef{)uad!Uv@w3J3e0DLre0c>^n2-MX`^QlV2g{#B%U|ts9nCJE455Le_`@x~yX7~x{OXop- +14(qenPCTUY(yiFvPGTL{U_*Tq!uqW$e2o$s)ktXf$%JRFDIDn3k|)qId(#T#h44@}*oUM{ItI{y-qE +n8OuFS86eO6fW$hP +U+smww_I0DT}QF)51yK=re8B#CMY)L{gK$Z3SgEO>|&hHahFBzTX_J=*2(JI&};6mFV0m2k%Uml}(7M3IpfZlW6SkwI4H=L^ +e^PF{7NsA%XK$C(2fmir%5^H(N$DSrF5k6xs;WBX%}8hEx1|0#C +XKPWnJt2N0~r5;?sOdoqF3KAXGxFV0Vpu}eNt?mkp*lQ4r)TM%F7LDWEEOVN{ekSmb(2wtzTT_~O76k +%G15vj@EXD +29~~Wy^$K#F|xz(rY9~@RTD15*N85RtPJgDeI<;hhvLt*A1L$SPDlZMhmKU<9>LVYG|XkA0&Q83`9bh +4h`04Qy7|s<^%lKVYHwa-lTHebG|RjfsaE;EEvjhI77`3I6WCuUHQgn!t?|uNFE!$#48bD?zgJjm*+I9>ruvC%}u@f8`iFSOLIVF%d`*uFg+~GiC32Y1yD-^1QY +-O00;mBm!w?otZHCf3IG7UDF6T$0001RX>c!Jc4cm4Z*nhkX=7+FVsCgZaCzlg>u(#!5&zD=VsZJPV@ +w|qfBC_OKa$Hw64kvO+ZF0Q3-Yq4oaezEN^g|0YK}n?OGiidh=_>`AHbq;Y{|o<;&dlCp_ +Z}3bI_`%Ow(f3rcIG#;vopJUH;%(8ljo5LCQMADFqZ7_!JWRleXGCy>R|6?hYci;yj57U=+qqEQTk}FbtB==b4mk^|&8N0e7Hj2qF`9BYdQ +USeCWJ$0Fbf8=iQvHv~iplOc;iCXd;1_=qP?i+GpwA1vo@FXw+)&ff=?C?&p&|M7Cdy-`a088QBAIsc +TXZXBMKxu>Frx!}`?<1mzU5|EzK=EVKQa{gmLEM+)Vh_~WNqU^*U*uv~Y#_cZKE^M88Z{Uc{B5ZeZW- +l2E!R+HO^gAph_jx|_Jd9`H+%c0UA|Z*h1bnBsH4lb?f9^1FtvB-}1J+kOKjBX1a|Lh2$INv_Af)Ts3 +HQexl-Ol}vBRG2D5+hB7+6n9XtV2IXM1753$w7J<06zEb~ot?SWk({n|v7X=Q?!RRF~(~F*%W-0_TKH0CnkkY~|u9u9SSYqmfQ +|EXC0Cby`LCW?6O~U-+~0J5w9*D2*%HPr_JyHw+{ISiv=n!z5Y7K!^*5whsRJc1uH_&7)if5K4YQO35 +uqs(9rE-7C67s7r2r@u(SF5S4Akb4AUIx*B70H#k4zX>xwvzS8+QSCjK|hE>jgsSLhVm0^0HNG10xRb +|J#tjkXGm?2%!^ifb0Eu$|_1VXU5-Vjjh5YNEsgiK)mtF_*JAU>4L8+i{$>k<@_mqK7P>t1CTyH^#X~E_XVsn&XTrK*3j{qWA4(>mVASY4Ym +bp$77Dd2{7PC&51YV`0VIIW>oAR1xii=LsL&WKA(8QbN5W)0(Xp5P#DUUh~56pt?dWy{lVVO{`~{@;N +Fdc!@=Rb!@>UEfivL}9R7%kZ@W$r6;GEOf=a;cR0vghuF!+1nX5DE#ZZkP<t^&MM3DSW=pT;A}^!ylvoWmeXk&FdEB%cgp%xN%C%0`&Y8%b&)AJxZIYW|( +wt-+pqtG~6=->HcSm4awg%#nlTO4@iPM)CyGQ?{}{5`lbJ&3K^uCYNLo^u>|!&|8tu)uMAnVo@5HjXM +Sj#r1#vbAV*VgPOn&F$}M-GydFQd+UZo`8D!n&;1WKaRuLwv>_68PwQg&NeW}Hactrgl* +tDY6C@YSnVg1xxuNFPwLX|6UyS6$FH2n$=mI^r<8NyJBzditFpWzD +d3?Qd+R_pUN&cc-*3;ewUV~J^ZWczjf{U^=sb_RMN8^v&WB%hwIlKuhY`VmWoy-p0*%8Rq_EDq1mj1b +FBf+nk^TyHN$at_V3-;?b9;*QpkE=A+m#S+}pa_ufoxfxN||pk+ViB&Zn=yw{GX+SR08s?$s_`+lIw2 +mW%h7i{C95A3seSZV&bbx3_kyz!_UEzGQh^c{+On=#h?E7>3Q+zG_@^0Pk}d#>T +>==8j`;(=ReXUz6TQDgMS+76XaWbe>wmC75LWe{2_t)=W_m29k$!wxmjBg752}o*xxn9ew2Cbw^!g>x +3j|jWf^-@C0y6zz)rEsv+&+M``T_jYNFNa&Oovadz_)JapAg??%f-(P ++)V+Kg8#Gv9{gd*{bg3^esu-DbvrBYzbU}q-n#qh&i?(q3zBbXY5urz(Y_X2D!Ohhnr$Wm+*jQ8A_PQ +7+jM}gy_Gr>uz!kSy94)Q*gYro_9oO1@Y7DMRj)h1z>A+|D{>WJ%3hy3Q2_gW-z{omH~|Qd=}K7r*Oq-N2i2*Q +FyY*PY@kA=m2S3*adBCR48qyIk1+pYoU_HhuI%=L5w@KlHewL*xbA&)DzaL#yC+vIaap@RIza64hA$f +sw`_@sK3{0tz4WM*c|VZE&yDW-@!3I6LOUFdoq)NzZ0(?0>V5gL*_yG^@y$+Bvu)Y*r}x2NLmQgwKnOe*;A!7Fe)WFU0c8DJ|JdrP4jittsuHF}h9^i$K~GZMJoE9Qq? +Ri8&7*Vj{+YmmW-Me6=snecrRE(Q0?t>$60P@p;c0!kp)^)vgiS&UC4n(90%)%^yLqt4Qjw$QzABFzK +b=|KRBqL^sVrJeo=%EcwW$P}7d3R7CewFqghhISJ2PJb&eJsv-qH5>u;_zKeBJ8lG1vx&|s2*EaPz0M +%9I*w!t|e(X7X3G@nSgZni)Y-$}gYdhdOD{GtkK629aYFz5g_k>GN$~b?WPM$5ZN+FdyVgB1=3y((M% +y{1_hJWf!V7NU^Q+5nWh^Q#ifRNO>m`M54(0C?qO}ta?CZ`jdbi)nk_zzG^0|XQR000O81DB*+-SW8q +DhB`n3KReU82|tPaA|NaUv_0~WN&gWa%p2|FJonFY;!JfdCgc`ZyQAve)q39a$k0dliH@G!HOe7nv_U +UkeZ-ASk`v49($Lrcb1*m#;$lMl($wwAS#uL3UPVp3yMlX;wpX&ts9=;CveWpUVTYb2?4IuB(vu>-*; +~7e#D1hS^ZeX5wk4th9Qq6*g?RhEj=EHN~KRS{Wx$W=e|fq{3x~@+i{tGF2|u44AO_2w(r}AK1-BWEQ +k5Nb>#J=n;F>L+TFFT>|8u}W4}^41DEY!zy$C<#DVAV9s?fryue0}(zPXo5%0wg0~;F4WDU?71IM)^+ +mS3n3kR-;#svgCSY{*Fj)nBDvl<-65*&V=MFNIg(C@<`58w(Ds2AiWM8(?Q*}Js6WvS5K+S}QD^Wv6u +d1LR=)_x0oPsompL!WiLK-K{N>vo|HoeJQ`sE?ZU8q`M@w#*v98Q4Ym0x;Of@#7vrLt%vxY7sDIs3( +$t4TxuNYlardB^mzo9kamQ)TP)}y_;3nYCB4iVDGlw=aNMW{5v7|^vbh8eQ}fcTm~_D_F2nS|RAxQAf +pqCo2o!QDDbI=PV7a9f#lHhMCjXNAS){srK!peGsxvVy#A3r7TPDK){*NuE@D2081Ea02%yhZ$_&|%N8=UPkyN +n}qnbnxv=bComanEkUj-^(jk@-f_}+*HqLr~tL4iS6Yrz5io(G)BUsh}tROtTj;ulX4Q$LaQ`5Y>!&D +>X#Dk%v%)sjOI4-LxA0h3miJ=&P?ZeSBr8km)u(-|@`h10{?)S*s=nKP9M{}liK6Am(1VGYhVnlrGME +5Q6Os4LXx&>qplc3!6o)Q#-y^rBU5mJ|p&JMTbqNy=Md!qi6At*7+nleITRl7Vxgf%6)gCUD1zLk|f% +9P4RNFj=IGMtsQ89A+j?`uv_6TuY5fd{$f&=z-6V5T8RHW5;eoU7f{YSU4k=v^t^%4b3$6mJvQPit0; +6MH9}Rg{Bh5wuP>#rRVof1_k!08mJthR;-+KlqjQpt +i~WsM|R>l9uRe;bw?N>U#bFHnqdt>~?6^e|%fwL)sV0LDo?jijRq%Kj|p3vEr}9_qI!?NsXHS(f_yN$ +Mlt1H6yQ`*c2Y=zCHPZ5;XoTmysY&ay&@_+ni^l~;SJ3nUiQv$Z7LdC05AxCB-F_YxRN4oN39bGprtX +s4w_x><-?V+~V&rY)rvmEuReer~fXNVKOzE%=@lpSjqnm&)`^9la`ntXNrAq&hZrh^r;;`q3B@!H#fe +hy&^2+Q^Vb6epG=Z{SLW*TNbNxuEpZ?v}_=A>mZMGF%7=9*wY4z_RI12@r5a4E1S=?xJ7Luo)X}O^gAUWNbW^S7Ft0WF3?AjuGX)1JOp9%GP70{f;r3e!a?^On-aD#NrS +_}3Hq;K;;XHdR`hvML~_fwg)E6tRivUil_*E8bhOs>;mrG+ +Vm9AnvR+No__-TYUcq!^^*9rOv}jPYOYWD7hSw7wO7p#}Uap!cT#QcUziZADd>%SQl`=?ql&2K&953? +_nYO-EGG83oooaREZCp$YGG!`?ROrZ#iXGFVLL=1*>>+)ngpI3eSwq_kEUVh0Rv$+8U}(1>;QD(RWnF +zWvS^7ms(*cc@7HSbdR}x{=t!9IC%=6sCl7BvSf1dV2b6x_f%SjkdcqD?}z+5r4}Md25xWTd_ +#vG=nFh2D0@{P^7^oR^u|+Z}r&Aq_~7f9$4*@MUkelnHgvMU=c1hlE;g~E=tyV@cLhWy9}QFeEIC3U% +qYvFwP~yCO=HFzyHfw0L?q*oCny3TfzHzI^fXb@24%b@1E8FPGQXmmTru`r_5|i>v1)< +gYJZJ%9bzHyWU5k&r==ML@sM^qwK`nqdkrlef)E+`sd4EFI%l><%)hT#5ZD>h3jp2E|L_~|3PLg0iRRUuNCwffe!Y^qQv=Fv|25t05L} +scXx4EtkP^N=5yiQMagjB0nQ>0^PJ^>bI1$1^_6AY=S1A|yw`~o=}G_>V#q#%^Z-@l`yH+)m*VCiG`o +2h=Co+Cwh3_1CxEdVKn4W4zWU4Mv)8}8z5>XQASKr$rm~bP5s=!0z|Up8YKtd7ioD2}L;Pg2*k_4Yd6 +ppEPl(%1z`Z_uHYJ#OA0b?fF%cKYaGFFhqAw&Wb +^?0|53Y>7J=V#G+Qv{lesS9RiW-d_k)bF`)!&|>!B~Co{2QIkewLf%66wm#U3)Z~%$E9`-Jp@b)Aans +q_~BsI*D^1|?A8FMmLi9!>7E7XBcN|jGX~MZET!B9`7N(9!V%5gGF`4^78t^lI(&feGuzfgLGzUFG6? +QLIiM{8?)Jw%jdEIW*lS`1mmCi2OQJ}_p}izxj(QDC(tsnqGR#nm5|dqW85+F|&zhJ)Ifv7x5n^Z7us +BW`omoyy+zf4Qj23WYR8c|Y4`gTMcL +9?~nXOI^WHg-WM?08~%V(=kKA%h}VD<#dsWKEN2qf*Sn@C=b=1`<{vO1^UGiLpJTF=?DcIxnMc17QWCL<{k(Hw?5yx$UF(&TxlnAx=EdC2%o6XuLUTc%egFc}sMvX +bOsOlIi~3@EIERIE~3kOvwZHV%gFpu;zfj2fotgwh+^8cgHpgY7sbj=1}TCQemn5I*pey$x@zGNtj{0P1#H)7-eY=rpVGeQmsj +r=&2Lt$qwliki!hA+2n2HgIAi`?A>m{+lUY~15hf3zo%Sev8&oyWilhs*yh0nDbbve-5*VkjMAVs3-5 +E9Fm28wq+pZzVpAout5>$T?bBnY)Uj&RvFk(SHsz(pjcgFf+0b@-6U=!zv%Ph~XIC4zUQBgguUGL(TG +^zs(&x^4P2NbgY0oVN*wC&z3=<~Bl@L2rGep~~jQnS=){S2?zNtvLVmIk*8|B3z0HF%aaNRuBf&jSylC6O8H_swVbyCs=6l`bL!?H;&9eG;x_CW17p%e9+pzg8P)ujv9)Lr +rWi1(dJoS(tAZJO<~kKSMBj0UK#?ApG+0JPhL0*vNI)lmGbMtXd`$t23Aj}N)MjCf@V=8A%An3is*+1 +|WwNEIcr5oe2Set8VW#v7lVuq)2mMMQDp~BiK}aibVDeoFnOYvn5EFI5@d#qFo*giG#AFTQ{0ui|6Lx ++EjveP>n9Hc~bsp5*(%xW@W|xX02AN72isU?sSuS%##NE*E^$1p$PhkU0Ql&5$+7(q5A`fQ-8Cp112& +~5}jO^vAAix?E$WAad5Ma#+WS{qIAbA)tqh}UY4Fp)ssvQ+-AkYFU#yL+_L4ZZ9j(Rp$6$Dts>d01n4 +I~dE+72UI@ih=&O$cPGz6OG_m{=Xzy03u%i<%2ga<72^Yf2zn_cag{3e2jl`x*$am{nW%H4u0gvuf+U +1_CVZy4bp}fdGqG9oxFEfgn>5t7BXDH4tEtX~(wiYaqZP(~fQ3*Ff?xBgY)ux-UVW-5%+0VV29wEK4* +0^5a5MN8jp|ZlvmyF4BFx6iHf$8!2`;X~|vE*41U8+nt&0F4FBTilt8!GQjw^*1K=~x4kE`@X6}^r^) +B`Km2=(NWSw4{QgtFGyL3shwyBDgV1-&cX{Xi_XukN1r`Hn|I6jo)7NhQ)Y2xRNCj|#rs?0>lnd2^Hk8ezW +WT+U*}1t}c^f6gdr<8w$o_S!Fm^{oD-i<2bA2hi^{PD%(D#oibQXkWp6f$g$F`I(-`*C&t*V{^yy1|KR2_4^e +)t{UqI?1J0K?Tz+UL&5uj`6wIif66`!pC8e51nW|}$ZvmcD-YEl-}|rs{130geECFbPKs!|c%Jytn%S +sj3pKavg7TGU@2?z-GjJ9DRA)Y7_bTHKS`>5FVHiBP#Qae7D4-KrJ9Jm-GZ(=n`rE+p4kx=)tpBm)dw15qMZ`lSkeHOGX +=CjZz+AK;jgD3MGwtT<;GST3@4?s^~J1p5w;5SA75?NSbN8_QEn=*HBt&!tvwS3Ku0ISx>4cLSFZTKF +imvlfa^%!f8!nJWGq#yKP0go|4qb{9knmb_PF*NVuFTE#_0cZ(Fxl#qLqwaOeipLA^twCvrkZqsuTw@ +JP8V>kE~kt4omwuDO;vjV7|axB$Q@ePHUvxZh@(9tSyLqD9m!_F{X;tRNro8u}POEOk$Z6 +psxKz4CRh>W~b{6z^Cv +KO@sznLrK%O(ar3Ew!4@>txo5{v?|y5VWLZ|@Y}C-M;31doWqvwcDQw?npnWomXL8vQ)T;!)f!YPuaH +9GnjLvJMH^0k8aj(hA%8H-vMt0$#a(f +z$H0gftz(Hjf(EQ~atR=aWKeR3TGn=DF~A?B+{9Z$R(YlD$;&S0v)K-AVQ#H@6&klN*b1FM5kbK;vj$ +CtXzFqUWvZ+qv1_Z={TiZKR0I3G2_N9PlUSG4XZs^-6s$Y}VX+FEI*v0R&5OikUz%i8Bh>=d8Z#6M<6 +yA>(6`8kwqnbZy544+*A8K4kygmym1ThZ{eROSNbxTG^!%RZ6-x{W68sim( +Rf{U5093-<86*%`ZI>V&g`8OF*7F)C>bs{;<~(qh8yIG*f2QpAI@=HfVGMA2jbHC +GovkuP!bvq7m8;5xlu)^YXC^G%O9-xSJfZ;baI1^=)_k!&}m1n$S{yEo128wL0}O~zUzZfrO{ +Lb!nvj^i_a)A1Rj@{td95d_c|&+g_Z@19^HeeYG8zj7Bt?GgLtrh@ntyd>CkL=2+hJ-q +oTp#Pmcx0|Hd77FXXfz_S4--wqWLJ0Z@@$^PlQ^^t(-XH%XGO@=VJS~kc6F{bj-L+8x5EgpfenZ`eQ; +;ciLO&MYL2m8#+BGzw!I*Q=s}sRb<*e49)UYUMXexsSUK+>@hW!RQxqRqk2w%8jy%e$T6@7C{+i41Ao +u=cN6>FH>!-GH`eZ=?T=#7k}_$M(NqjvH85BQw|0rHL8UpxU&8<0l58Vzn1%~jJ#)8VHIB?g|LrFf?Q +XiD@@Aw)2XPNmFtv|lgmp!ok@3@6}Z>~2aEZGgH!4tD@9K@|1wKb?IIgF0cx;=f&Wnia#Lb+{AjK +RbZC53%)!rN;tqbw6TnfQtmMnn;qoLy_oR21ALm5!-Rax1_DN@}{$yG8LrekxI9Jis?(>urHg7C`|87 +mL1-JSD%@O>5+bG2v)7TZ@|B0(r?k~U0)2h-OaWuOcYPC!!7~2@ZMt=0+Ur=cX+X9=H?YJWh@l?PJfj +|2R7lq9Dh9jjrDqW4}W2Le*wnWS-ZFH0gRI2(+KCx)=G~G9DZrWj=!BDGq>&k&jyRIB?`*r;P`fN|dA +1mnwxL(qoQOQ&P+~G;JC5kyW`ez-9E*|1ilzjUiGnBL)aG^S)SChJ`@Y^@20Q& +QC#F?a9~@*zng)E^N-dOc^BNT&y0(P0p#bb--dizieR$)%;cr&wo{ZyYmq)pGZ1OAp&fo8_o1)cW?$OWR=@ +58`@dJ(u1oAGvUUuGPpx&V!#Rlxy#Pk7+CXcHD@<-r;16aS@# +RV5(^R3lTtsh_X-mYgQo9uhsH~iXiw1%^ye7gzrCkS|dg3sp +eyCIrD*l4%@8&FFF1QY-O00;mBm!w>2L=8@o0RR9V1ONab000 +1RX>c!Jc4cm4Z*nhkX=7+FV{dG4a$j_EX>e?1bS`jtrBl0Z!axx0{S_mp0m*S3A{wMb0SdYlgf5DN!E +0m5+*#)(fgt`pw`YP)K^}^md+p55jMk~qYw)hjRfc?BYQuPn*ObgQWkCVl;(6Y(h^q=?U1&2ixxM2~Q +`Q}Lu%GYyvlYQm5+E}~DnP6fEQ$?bsV%o6#T9gl*q$v@Xc3-+TFd~s;xC>lB@M(rAOdUj`hA#KW#oWT +>e`$kCvx*Etmry}j?RQ$K)T|`(&&;5@7yV&6f4?xDk{=0t{+gbsS`O8XT;zY)uzF9e!@R~ezwKCq7ii +r;}oC^?;b+kdgqN%Nd2q5uQmsVI1zstl$Zq{#qis_rC7=qv$-W!T`e2q7uN^|miXu?=FSAVDmpcKx66LY{3gvO!_qcEb{-}oM@Ev8gq)&bO1O{}}-^}uZc +my$5t3%181i{O`swEAH$#zBHvtF<7gltRpM7qHw;MtngoGFY4+__n4=G*Qh%{Kgm{M0#d7aMk;Y{_l? +MC!hJ03n+r`6v$Oc&n%nWv}f7)=f48{#Q|`Gm;@D8XFS;cYo#(lTviNuq=S8;GvZjm^<=EQ*)vk!g}~ +qa0M~FA$KN{B@&RqALSfHC!UFpc9A*ov##muf*g2R${3%%P03B541a7HaMA}zoCx!0L$Jc*)?;6mMza +|57gowZX8unPl1u?_yN=Z-jxK~vhD(ZXd^qDGs^Q6xqLXS4+$14nwIn8?n-)Ih$KJ-if7N+`%<>N0gch71!TzIRDx6VfCboI~diSw1I6*BtGvYi>D|d|L<8!73eG~1}458m-5*THqItX^saf&ZyuF3BL+26d0tb +}$C*ArX}2VltSMu!5ad?Rn7)eG;2T0NY|8b$LcS1zRNf|-qu@IHa#n$J>m-;tTCj?JkP1+^_U3)^t2uccTkx$D +5$eb+-9f>q9o6VLS2pTxL+Mh+(C5sMo{{Z#6ObA{J*b0PJ_5s#br88v1)G<#i8XaI2)PZ6;zFIarWrb +c?4mklG;$eBOPgHMC*>sgdMmirx_@7EITuNp$_agq932! +d+eBvuJtXH7`Qr}??75;6i^EMPDNiWU620xlH4CK~A$1`m_dY~Dj`?7_p6#nkETbOTSCmVI>Yxv`>Yn +r-Nc(qyyyve9p#q%78sdb)L5TSX#-r}6ncI;HKE%Z=7?Ah>Zh=xtw{aR+PJME2{87We8hZfEk?&75F +gnlE|STU*Vwd}#E<9jz8U!F%ZTgPEI*&7`<3->QjO9KQH0000800Wn#TnGPLJ84${0P%?d02=@R0B~t +=FJE?LZe(wAFLG&PXfI=LZgX#JWiD`e?Y(Pv8#l5j`dz=GhgtWSbZFXEl9?>+FnbhRNi^G*d?k6Z=Xk +tYEwU+fOtCrLO-mXr?R9^|{e|b39Ml6q;n7V>c}&he;aaxHZlC}Z3WY+U9>wLdteT`))XRL*Y!&pgto +670#(Zrqsyv$(i*xmHn#;LJ^z%tx%;~A@_+_~$n{rW1_|?tQ4*lCIyUb72lVS3@oUZ2l{X}6cKg%W`;HRmkaIWk1w-WW)KOEx +UlfS*$OJ97y_u@bH55A*EyNet8@*mm<`{SE~geE}dNDlMmFn!4?gFSu98C$9yp@t5H=t|b8h(FKoL{K +6FB&_B12swC+sDJ?C|_3M0oT0Dst>EBuEc1_YW|keYh5Q!ZC>^1$o%ooit;dhKkK$)KIWp-|R^#* +Lq0{54d|9Vj4MOaY)NN#t(&tY|U?O6K=fey#{yzdgcV{HmUm%iJAniqFjZD$h;TWB +jFG<>xR^^NxP%m(7h`49D;=Ky?H2+H@9J!Vv!#{c+mDnnU_?thR&?TU*7-~3GtJk>~earo-(>x1KDoIHR2Mez33{=pu;d-iP +Why8<>hd;nCwR4UXGiiW%B;#??Q@#FdySKF^RskSH71hi9-8!+mlG6<*NDVtvaBeyUp$$9YvZ|+tN>O)&ae} +wFS@AzoWg~*Fb%J2O&eRr$Z0Kz^R_9f^XiQXeeFPRJ*_+V1XPSLA$ru!QO{LG0@(Q+;c{I``>+kl76# +)LVJF1`-?x~{>N8oFA{!XU?~KrAy!`(i{f&1X +)$YeZd)_Ej@8Vr*Va@Ux1L(J^C#6xA)Y5ctCTdR$|jj1gke&uSJhQf=gGI(ytW|o#iWG8&rYJavj(@v +4{>TGE$Qw@2;zG~3?Or5iUO*nuePD8sX_A5Usy5BTd31qPDA|x#;&+&8#=rGW}8FsOU-0< +v~5CS4RXs!#bL|l~i)HWlB=9+E#^+$J+!D?5S+Vd@prjw=&32&I7f{F7m51?YoZ$J|I4Mx%E)fBdwWHWQk~k_UKqK5a0zxT`Uv_SWN +Ohl8f!!z+I$zofv9VaLqGKZ0ec%-hVbED(`B|z`0k8=6e@p-JA80-F~ly%4eLVx +ng|Sx(tAG8^I^Jl5+F{p;w#kD@2;O7Z1g;WMggtbckCrFASG!*!_98I`=kbS|5FAY$rL$uk?dDS0d_} +5|HhhOtQt)uA{-4UH`xQZ6AQ^T_e`Jn0J2@!(*#xv5Gqu>znw)u=OQHd#Gl6(N +ZU;GmIma8RL8s740LvxiY0+U$&X(DI>@~y_4f}AvEa(W7j^7M3_c>1dms>41uCB&&!aQNKe;e=_I^TS +B=;Y?$+5vl)XrtD$7C7AF{HX5G}w*DMkl(DYpsF+;5$m*uAZ{w`KYgYj{`w^} +(vr8`?aHa(|0)0VH#zcH(XtN$1Eu|By%S9mzj|4sk=vc4J!Ig#{WsOiyC2P!f0~xX>xX>@i5x5nBbcP +nu!2ULqi}m3tNCF)?XxLr55B(j7Vgg0D$oI30%|ww^rjpHC8sC1Dvc?9l0e@pn9pVp!vGP9mP=JZoPl +MwMCb`@_upbUoFD@f~Jpb30FURaP8YSI&+6M@Jbj|uRsr69u;wLVRe};;7*VgvV6~xU%e`{q=;y<%LJ +CsdA?9T6cb%2egpd4em(HWs#p|_A}38ninx(I!*u~th%1RQ?^$61{QHZOsF@FqdE1*Cu*=Xh((nC!(M +ukSE?V5vbtP>m23bdZp{o#6BdwsqJ5dytCFjM*T&>mFOzjZhZPv2u^V~KNHejoLiL36=8dOt@j?=qf5mgQblKDeJ4NSC#D4GHwle|E1>RtvARUE>*``S>texrQ$seunkp0@MhYXkMlg)0p_uD`d?`Dq2Fr +G$1qQE@E7WYte~vwoP`8eI?-HT>jRZou`4cNNFtCOEmzHQ)r|CzI+n6O@vQ`?n;Yv&-h0A}P#pu8c2v +jIKHlnb2UxtLPWM_`9G&IoN?_rkg-T5*>@;wV18mW0=GT*y?kY`3fn~q@CaZJ9Z`HbVDtv@X7*pOY>V +ZC!fTbzadm(Ma@LTDv#T`7@xY(haVV>vWfT1w$$i&~}jYq0To&?3wwiPqCbw2aEtEpgf!$X9h+Zz54JZx`z1CA(3qB*{XWk)Xfe##q=FYYlnpo9_Jn@3lzE!*Chv> +_P?ipm*HkQV0{Q>YKws?~YNPOg0r``g`#4qkk>@3MkAL{M}ASbnT6XJSjtJw?%_Wy3AuduFr72gF=7v +f-@Gu}6)M6E&H$=SsuxsZ-Mb*8a2OIe5Gj2f!I5*BQl-9rK +L~2)bJ+$ho%=O`bvjyLz7isqEd`iV;{fdX8`Vnq>@%=IEA<0C8{&6QOdImUd_lMV*&@m2YN{4l14fNx +GP(hGq=NTlkI`NEqL}9CWL4E=Mf_|?JY>fjohr2UdY#;D4RaH1;C+($n}N``C{${vS*RUJ6Z +(<%y?M^#}e~m|E;4zJ`LwYuJPtxMM#O8M~`<<=N{}s|sa9-|t1q%@1r(JmrKoa#y&kfZFZbVXz_;rg6 +gn3IW9w;%k(=B-_#&z`=W0Tg!;(v(>Ta(GfL`R?9WNy>APiuq~$~T#t-Qfq-!mirU{*Xr}a2kVa7sXUkY +N?NMb$H0pl|gy$uhGa@4RFOExl|ul-ha#8-$79qHe6JD2$8^AvD=AZnmfJ2AhDaBw +T3q%(5wVD*T9_V_E*+sn^(_)?--s11^Lh_Tm<2jmQ7f~s&Dt`8nL3d5X{!+|=3DjD+=T%M8X0JEXhW` +%=gf-vT%4urrJ7Wi>j2i)t9#rnq2~^$2QF-zolT{aiYh8yR-AG(JcX+NqtykOqNwQMcb(m#Xw|Y01mq +9weT2}pzfw%pbxMp;^V<)`-KwTQ7bh_TsCw1jJwMx(jPM=mg~Nl1^fqDaW5mg*&pj~BvW_)6RM=0VfJ +Jxu!Ik1Lyk#8x;x__u^|Vj|`=eAm2Q_QBy+&7padH`rMnmrxGOG9Qg%CW=CuNm2C5ykznA$i-jW;@_W +^Pfo^snI|W*l~6=u&LQLqQv(l-o`WX|ADgx%jA-xxxcAqS^Mw=tG$HXn?!}9c=pq&=NBeAIq2h#~Gj+ +eNU6ek3U?QpV)1&4OzmMERbLm6boPwTPmUahKzTt{t4?NE^OR6x5Ps;BTTYsQKvtymN$5nXw0u$uW6+ +@_Er7}l(wtI0zGuWPU0^F38cVW0s3GR#>OuQKHvpfsDc-Y=6v^`MRu7#Q5`E5`IO{Mb^-!t7E~bb_~W +#;^cv_`HWBeL3LB{}@;R(mt}{wglp)d-%&ArBG^GY+La6SYm*qL!#*~UIdw>9S`0fV~gcU@Ul=Vn;En +j@>_g?Ov?0$2!|KdN6)1$WsC;PAW(!cH<9q%6=^qeZ(HFc)^pRfPleUN#x37me9;W;y{04M0_p@!{G2 +mt&?BM+UZY_M%;cgCQhING5NUB!^X{u@LAgO^<2uX+gXCUo21|96nw(32`X{@d}%-fQ7d1-DewteUpE +L1C%wFaEg3o2pT0iTP8V9KGGcrnww@@pz@!yAhqPQm3cs!R~8xg1oJRN1|E1-P88DmCJMo54iD_*K9x%FDVs`T^V;5x)hd>`p?W&4!QXU8`kunOHZ2^6Dd@AmWja +&jQC2r&kZ}g0o{}4<`L({}e`e%yV(s56D(vrm^TKxhO;vtW;(nc6s8^a9(;XB_QA&E7Ay9J3Sr3Z`is{Php{}A9j~IJsl;l^6Voxxxt%k)s#>Uq* +e8m5H1u2Wi`o-?`P8YU3kP8$hGh3lwA)^oe4+6m?+@2Ra$a`PpC!f?b)Heq|UHxd7r*$nZ>vowswO{u +J1)*rJ4KmL{?J_I1f6)B;VD6x|}uSanjZBao%7_^Z`wHhfS0yi>gpI@ocb=YHf2`BsT?{8Ak(F6hbzWMK#}0F3bT6rBAPbmn^yai~zDME7_w#7%$ +y&>agsX06!Ld9@!TDu_|(NC_c1}e4`%Z8A>6ruoZt%hestIvtd+Mr>z-yz%U +#qdb@ti>NaS1NgS)$284Zh(1Pn{zj+hd!raa@5J}(M>bQhT6r><5m-8F^Vo(#@aUi6w#jz+;Vx;RA<& +<{eImto~T8d3}mO@B?5Pb(m@Il>14Te8cd4-fgWw^5ecHncIFGpe*SI6sVWR(b_qRUJ!>bcKrOnUO0B +GrmI1m?#2u9M?4L2NIzi?|Q#kLRc4#Na-ML%?Y#4YSYLCPUb%^4ZR*-i@i^X`5mQH$V)f6oO_)b9xP1 +&sreqM~cA|?#|{ikf3q7q27FZcsB&p)58M2E{d^keXV^4+Pln}Vqy!!@vNi&5b_EGrEP*@Rrp-f2-Hy +m22ZGZbIKb-y{@?>L~GlmIp7?!Nwob_2b{`lc$4wzz+rt6)(66RQGhQ+@mithF86)dF*FR?HK=n_Gly +)t4_rologre>_X)!zy&tts*ELYW?Q-wk|MQ>klU`)1L0IvE6gmB4D6)bWyCeIyQ;jS8T8?IR;x4Xc{k +ROv&SrUfR$fOMJjwxEip|4o?c;+8nwE=4ChC|HH9UFTQP-KMgnb*WNllx6?9Si|XCBUT?SI18@CYY^i +#A<-WWe*z-bel`d_5FB3|yutw;BUyQC_+Ij`aCq{RQowV%UqR5{mUcx`JSi*sh6n=;^@IeDSfU%EgWj +DM+h;&6~@5#P2t^)O#$A_Us`=9F4tGIY+m`lfzJG(uSlj8%m|v&}zQyT|e}ctG669TB3;f#rY_(VQC? +IudQKZ>^Ad5Hl?*!+wePP!w6z*8xRmZ1&sYeG*b_upj_Dogq;q-K8SpO9GAhZ(1*|wj520&z+E#ToFS906&+*8PgwIlSTazekvTmYHfP|m;q`6-KEaNe-@7lbnY$~R}njI_v=ROEpFVGMd{QGdd6jy{hT)l|Vg!P&`Y{PS`p}w)u@Ohz0**Fe>?#+$qkLFVRMHh}ngNeaTdmBE(%Ih@^b4OMnF? +b0g}gq(;2_i;kP#fLdxPW;#xKO31+&iOeN%M(G|i1uD9Tn(PX3neA1Fa!_r=NnU-x=L1Qf7YA692zut +<4Wm(O}}kt7_B40-CJt_Ae-dw_;>PAIFpWjqN$7c$J!-}(@Vjfnx;02o9r_LbU{t +_5!jw?J{AAOXg2*$Sv9KYWsx8ct5hx+d8UYprD?6kH$Rv<;)@8vb +8I^>!QP3aTF+qc-u;UW#rESHfS90V(DIVb}Zc6C>wOE>bmw>mr{bcr@~#yUsC`h$P +0U7^uxo;$s%14#E?B1>X?8nK-B#f>~5bx;MsH+_Ma>(8-2MAkRUVBlT#gZF6OPAf78sOax>jxC@ZBOouWU@#La6gbe-(Rt{7)qLnCv~64mX*?UtRQU1u1gM3}r*Wx?SQBEf|gVDUaa$*w +jAOyHVVZ*&6+W!2kXnK(&_(p^XpZ0!k*hTDGO19PM#m({pd_=K>FyHWUR4ucrDPSe`drv$qgLl@GSv; +^C1ZfyGHjmPa1Sr^q6ZpaKhhXd4TcFCAy-=vQw%8^k4t^%gkiw14VWpo!HWtwl;e+4a53&@Bwa@2P9X +9~ok;y1!T}PfkN8I-q*ib|S(7gorP>}CTw$pRi)RLaE&mk?-#W4-Sfk;^F+TQV3G@|@S>(cyW +~xRoY34VBPWx$0pwtJ5gB`cMWL0AjFR +0y>0N@_9YWJABVQze(tP68AtCF+9T19lmTn%9cw-F@1OvT`%Bq?pGSXxla) +7MB%Bj1Q93M7f=ZC(?SU5)jf#e;p1MGOG(if`$!yebogZTbw~I^#D}&!ow7j7s}HJa-w2-?B2kl}bYC +>0TckJL!C*HSwLH7&`Gy~I_~kMfeSEBM$|cc%R%??K>?P%Zyokwc_wAxLHPL8t>?G=R?eJ<53k`;~Jz +g2%g%1k-LsVjY{n4|KJ^5Gqccb0&t*c?Uu_$;O^wAB_qPye9&TF5$Z=f89hy!k@56s$L_JuTAv?1xx# +tE7>kq5yFN_x1o?sOhfO^;>3yZEslH`{4zi~M}b7G~>sIe@ki#YNmie>pKBdU5*vU^{m2l#ZrzXIGVB +jAFCr5t!4k$CqqOHb2(f|E_ +o^)k;spi96_xzgs|(k6CoJU$Fs+fdwRxu%C~y>1#sD|Q{-w-G*DdY|azzS0~Y4cA$j7I0no=%{<4_1- +?eQIm{z4UDob^UH9#h$F0w#@9H31;_l?W8aoY;0-q?oQ0O|WM?yBRo)OMsV8exsB`#boBnVe3Me#!OrmJ+1|+zt;&T&>nai;z0zJtJ0|@~pp%Ud|R}}Y;mBI +;n-FaCUqqzM9&UUITJksUY%Xu*=;1Gw&K47~-VbNs1DVmVHH?=Ns)T3=S1)n6}uBPY2Jol$_M^C7_Nb +^s(55+>wd755g>i0D5k>QPbIkK;0vOcFvy+SoHFV4h$s@vyJcn&$(fbLatb)f_Vb+*ikOXQYk=-kuXC +@~o%Q80;D8$XoH7BxAe)G=g;>m-TOHXZFJZtMf-4tp;Sxl53B-~#k7-yR;l*dt~Flet0T)^gF&sM!K= +!8$1~mufeo&~U+p@r%RPZ+1`izj?Js+BY$+&xD$SX`3kp&}P9(T=)$}?uvux9n{+MXlwUs$-g=lF)<{ +$UNp_J-g){I3Hk}L=uugnKQ%>&(zUICgEBEky~ss=U@j2tkSt5K0it)ikdy+wT`1S+RP6A=GsLzHE9| +DtI2R3u--}B=$%(0IU?9||4I(tElI5^O)qcWa1bGl4`H@NFBJ}k6Ls_~+mzJ{TqC+;}ZcsL}(HN?7>LbsZOTECi?qm0oY#g~ +bbIY5YOylRnpbzu{yFdZeoDy0Hqek>Ew~UyGu|G4?sH|mTpy^;%Y%=bs=vs>`<&(|y>LFkVXaX6~lLk +_t>wME%_h8eAtvdu5`&`E!)iDWO$LWL4^(E-2eeKX`VGxxx)?e6$4S)G;m~4L`;B|N;nKJ8hJHtnv1o +G?>F5uGRlb7n>(cZ2)2pzsXdGq!}To=<$A#1U)0-3D#Vx`h<1mDm~cJBcV^CwqCUv^xh^N}LL>@p$9|OX>85W!@ +4B3wXE$ouKZ0V9)M0I<)@UDik_>w#`M@C5?sHrz$U=r`+_1@kQ0@o!c1~_J?nyLB(_^msIF@6rk4nXP +c}|CqjMbIGty#n@(x;@N3G%X;@_TgnbZ6u1ufL|9N8Uc^@N6%<6c4(BO#;CsJR2t{gO}X86DF4zL{FI +b=z-5@G{V1bApPFEvl4RLDTFBz`2F_^^=0xySKp1$vejZ!V0^9wfl!Mfbmda{xi-u&PIIG&cHc6I +lS7}4rW+OdXCwBfHsE+($6Fd2|Te#13cjN;jgVp)q2EYfF~+@6$+NPj21V|1zm@MO8^CqM8fQ07k +eY*PL#z6Vl06wtl(g(@F_5k6GX1ntB$WHVCTGoK+Vm~vY60qDJ@XQI62S3vI2uyQMS?#IYw_%GH^NX- +ngkR{Wo+=>O|wBS0a*_j>rTGlN}7lr>|rwVT?%Ebh=S?jaUqoV@P?(Zx!kYa#u(r_)t=(7GU(U6V@-l +0BnUcy;MijG}SdOvk#zRubXs|2_IZt@!p(+mPCsevdb*orq{20XBi{`?RRdYvTk3j)A5pMjpmp#+SI% +p$N0b4I4J9EzEO5r)rTL@l|rPe?WBFmMB5QBOat=nV4t@r71V-&2;~I!>oFW%di3LRrPk+Jjt{-PlO~ +2!@%Ab6tlT-l1kPBNc`+~6SJLt@ +_f2OVK#ugN6%zzmYL%07wHm!VwfUPaC`KHh@#&+#s*v)x0iZ%;z5#zi@MNB8(iE=&NSegVt6G}H~}^k +k(>a3FuT;in*8M#R5Llo|NYR7{tS)7M={TAebDp=Etr)^d_ +>G2o`lRlw3-Kr2NFjYQ^~u#*E!UQ2v6#;`mv~svtnK}H|7M*@M1G9wAXRPb(B>*V^!Y=QKNFa;Psw)U +Y}kDDmJvmn0y;xZcnEn3~~^nC8@yRLD_&&)C|oOO>D(NNBR@Si}|9a^xzrl_4ufyg!_CZZxsQr;yA$B +kHgG|+Tu}WJPa10fSPG@hno5an>v*P=E!Hez*h1tEdqnAtc +|jdQN_av^q*rt1~%Ij^lJTR~}rGmma81)ZX1viMOLaf*h1~OwUYJHGD0$Uyhucw%N-h +j5F$9iG_#qB9#SIgHxHKws_vIPM3Jtb8@hJi|1b--8CTSFR!{G-BZHUmEd3_2fE7Z9JY1At)M^~LEar ++mRq)?o*U`ylyK19=8kQ|09)dZXRw>vIueP%Vzem`WFQt=6)MZ+arvlZK)Q^>WEW%HS}8oe_gJyhyk4 +8r`8N1T1u)RGW=stfSJ;ycW`9U8aOs8UR7hCPSLX%fV#}M!$TA%06Qb +D+!KHE@5~U}Z;NHZ#R7KTSYNG(mvM~~117i{x=)w_>&E(H=v^`aoLUtT6mqx6B(9hA#(Vsvr&h|z5fQ +ua1GN-H2^Ho-5YG>x^!74;&y-Bk|Wgc_+Fm{0Jz?00!XTY4(6Citu7*n$mRmb +Fd#BBQF!^Kgo#&qPgJ?T069jX<%JvLUVPfmYB0HoA;vkK@LZTAsD;Z-@Nw<7`V)aJ +QBlV!4B5`p&?6xa)Pt4i&@mDw$99w&RP>|_z3tRl^YOz`}`MBJERd7dHu1*r@N`q%S8m+10d!8LW6al8B3uv#c_f@bE&7Xi=j?$KWtoR4wp8BOu^fTCcoNa +_dR`{&a3qbVg&~uxqiBkeFyWnt_{i^OWnJ8c!%Gn>mTmnA&wlf?|TK%;W?z8P@QgLkjOo4r}(NnH6^CQ)L9=EL~DbncDHkokpRr1`oNIx +hk4UEm+XRd8oJca`s_Hygqpp-jhF-SlJJK{(mi*X +U*AW=QVYAh$)0JCFnyqh!;|L}u$A1*w;b=V%Pe+Zc2e&E_-P+`GlRpJWXZd54+1%S;^;KoB*WObxEp_cAYb&XdSQ)aHf_m)0Oq1NgjgO68|Kf6^%oU%wD_TeHtD>kWD6i=8XXzJW<9l`ex1n(<|x=uSZsf +6_^S*P$p^EaHZhf*dwH6_{8XMt<2qLW!qLGUT+uAzG%plZk8BWMyJfj2!vjWNZ!(w?I{+?GKrCk{PWB +9O&2wZm2mLG63|4dD8p)q9>1mO0r_VI-gYA)B1YLK^=%3avyRg#teS~QQGxjwjG^CSS%&;y)%@LW=$K +*dGJZix*13K9LWkU;2;DZ@tS~vO2|C85fTU83-`@?)=r51QjEr!;<}yC=EPoC+)AB+ntk|6(Ct4Px{t +jsY2OZ*vT$Q9>UlBA!{_kPjLo<9N@{VA)xY)vLc +bI*G>AWTx1-3&V%~rVuR|EMgy2$3H$kZFqRLFllQ@7U7>}(b@rY_x!uUFQ7B?eYLd;ZH|KsFcD?;0;0 +zU2a^oJ>~-%EPQ<90IPrPn^O0X)Se*A#!>`L>u@ZroWAeRkg6ZyfDShtt*GRpR%g(CC}ldMsx*U{(~Y +4+rH-g3ejYl>s+(daJ=*_5PhR5*C6xN$s%bU{6BtwDkRP>G;lyNX@@nb +aW^0OxoMfApbWGB{)C*otEWE!siCtTO^2g|XNE$^8I~xn}gsx;MmFLu^EX8}J!p0{7r5CA&$!9`nlR6 +|qyc5tjcWBzDrKG5|70mmZ{K96x#prboL?)5YR*)%$53@T-j}^k;bw1B$_;-Sr6!1-n;PW2JlD!J>-` +hm6)6^D8K&#)F)?rt~hRXSr8_MVNVp$jUMs0E0+_gE9sbG*ubcNA{NpfaHxbSt#-}Mbp$@{k;66vmQL +?+Vx2~Dj_ +LKY<8*hvCV_E!kaymS51-JW@3JgAwFRTwFRiiaWrh8+%`cFJOiqOpV8mO?tU*jV6JKXa=L;{6|Kt~1v +Br=^_X5M#qEy0n1;Kfpypw8Uj69s#F8>{G~QUKm|tjY|$7>`5d>3sEKzsfREq3z5z^8uQ<9ou$ipvO&Z +sbMM=~)idr0EcQ3S^0~4A5Vr5L>L=QA*v_rvE-mkA>fUU7&XzSKWt<3*0W*Q=R2BG*-YuKU+2lS1C+! +?h$NoMT0X91v>QdCK*-`XA|zCp>kaN(Vj|EL&QFfa8MCA#)usX0a;U~RQe5mTpYo`$UCaTLCBenT|Ru96?3|Ph2XM;om)T%-pbq}lsoU%fr!9{P{9 +z;lTwN36M4nds%>YL+K#e=^esy@C#}?mficj^)EO)Sq*(4fW7yQMVDuAy3K?wj6f;djp +89m%^3(c8ydoBy?@_9I;pdp3Cn^Jha$7#(Sr6)4`BC_o#dKqKV7Bt +FiK^mA@JFyV-NAWx7WTSo$gL45eud(_Uo=bQhG?dYgWwGc-#Ax`C08Ng)w*U4*Uf)ORz0(s{Ha556@o +sF^V#h%!jGn93TDpWCZC6=~6LEVXHi%&k*;>q6)mUSi^@a0lEGewz0wp{{x_e27^$-x#8a%hnT^HDZD +@NLotD%ix*R-AH*Gq_{t=_krU~Ssg8ztB_H_kBH=3(IXCT1ogaTuOsZEq#RbNVSc6-7(Z2a1*i*7AsA +C39OfW|&2?oZ4?tE}wd95GqBMzNq>>JTlvt;=*GUoR{tHM}B5NirRy}7ZtDV6}*WG@W1~5|4;h&cU+4 +=58%L*i}JXofcJpehoGe18?Cq;1b=v0Wmo#H9&g^YG?P$eILDB8Q->UE{dF8^$kqR&ZilR;VF0eryyq +n^OcVmBFZ8>9J%GAkBE$B$3m+^XHG1#h12r!F5g-=dE-1u#2Fet(-Vy6Cmqs*xj!T$I6v~2xtmlBsl0kJ&p+n#Ba%|gm~+yPmGWf0Nhip%7sS_x$>~2JnWITY;u +;>>J&&iuFjAOtOf9x(pr6h%P^8&TtUzYHL5Cb;r?BH7I8+}eSy0hv6<7Ez`Emo{X*yMP@eM6-)l4)&J +jAhVjEe#rqnFbfdmAjl$It*9jSGM;T0R@tDeqL!yks2k6nPQmCWfFAdFn~heiL$n?;$zq8PiDv+yxjH +9fUUl$Df55V2Jm1;{76AUG`s>vNItn_+dohV=;}daZ8sUu31y5g1&6>xc|4gkMD&Ef(3}@xB=vw0%{I +Ibm82xWn+J-Kn`;P!w{P=o|!Oqj|JB_^n^BwmW}qPn!yndd+wAW<-jIJWu*T^r!V-3@f#Db +5slKh$IuspE4d9AASFWZKXjH1YVW6$`g}swzp&=#vLAPXz=EO^kiw|YO+m>^;s|++57u)aAy-A4}9OV&h +xFf>q&sy`QPCfh@{rg(!-c^dise^NSJ9usL644lgLh3Y9PV%~T5GKAy{bH?8j^lW>S}J)XVkYr(n1WF +{BgNSI+Cm;$#_wob5+>^*ldi+`#rL}h-|a<^Oi7yBJTmlYi2wc)a~SY7?Fi4;s@n6)y;+41DVTH`46e +m$r^tl4&QSgeUt{vqsY#E!gs}c=z3eWb#rB%lE~bdeiZUA-;u?St#WMYn-$Z?~5ib}bHO=ZtQM8qz%g0GkO;+=)YH2B(t34%MWQ&& +fp`oiyqKUS3fQpE+s4lCfbp&ln39E#zlfN7v9*h!Jkz+u_vmAoR6;pcErLBM|6$b>sKcCVoeZRtK?+B +Ev3-g=w)u0Awu8N>|?}Yd?^8(yh8}LrY)PNkrHnc1wYS5Ykj~ZHnQDcY|6sxJWD{61I9st`8DUK@M9K +Uwfoqja&#iARlcL}~jv3_Qh`_0WVUmKxKQf;i)l=WHB7v6_aF?&0=7Q9RFkp?K7D=F$n08*yM%4h#fll`tV^oZ>v`AkLw% +$%J~U4y*!Qacv3`y|81{0T-~-VuBB<8zhv@SqrXmm&J0FepLLttVVckMeC2QcA=Zj@lY?$P&$J*Zp<8 +9>Ci?BYc<^1;AtqT(mEW|p9e^?h%vpM#^zh>BxRSzSpEo$x@10fe}=^k-Hy$-un^PWIEZ0u2BD{YY`( +RfyTU!2wE)7n2i>5jkiSQbAo9C7dnA4Kl9?iI5qF7Uj?0f?M47y>ytF +Cd6@Ih)n_Pl-E22KUm2->nPdf_m`R;o|fN9jnM7|vh6UAv60w2<93IWDFf#dKsbyL46KdkMI(0o1KlW-zuwR8s$WjviQemN#2rsX%mgO~{EH8?)vZ=x8Nd@X@;G*dSMl +>^9I8lINNYIxjIB+*dWexUv#|H-0V2P7nb788%>&qQu95gtY_qR)i=GdPp3(L1Eo)8wqK=rqk&_OdIlxTu>TCH +-HHhr9T^s$Vu+@SK&BAk-(rpSV`O4N@4c$j%5AXxPGZ&7in$nG^DVqIys=o+ORznWH3d67SuIt4q+(< +rFN;Y-KT-D`M0B7I6UE7t1l<;PELsr#qFo+=;TN1si7oakw3){SC~ASL2o>Y7YQ@G#sJPRUF3yFCD0_7x{cCZmt>Zr)p0Z-kw-*> +=1_VoGWIUSlfKjK1trz+y%AW!@es?jAES@kOLZaJ5T$3by1*K5%vqjgEei*4ik=NX|Pv{p*|UV7q6UA +IB3Q@2%>kJZUE(oNts&u(Qkl;7Nz)&%(3Gv`Uz}~b7b{w3|r63E68Nk_@l5qO>iMB)*rm1;k|F|HP#z +>9j1p)pShgdeZyYo<@tXHTl0UBLAb)+8X=vc%A{ha0&%-b*nU->lbnqyDi@)H(C>!Yzac~I|3dcnQkc=TM<|C`goo8bdJacaEr +O`y2d@^?)sQggrO58m96iV~cOwf`p;7tWM72ec4IgP{xGsqK&*uU$AJvS@Lvl+BH^(n<+e +gZqGR(dEa*;#OIW|2LHWPP>bcX7JwU}htdAdP`FvmV)`y$6-q)-(V!9GDXEi6Sa*>`@<%fKcE{kPuvy +KM`0QCQ#trn=45JAc@Cr*}}euGfn6l@@KiaBpU`7re}2ZDW9IZ8`bO0zl?!4=$+yDKZJwWJlN*x`orU&#s8c?Fww>(0*%#EW^HGjm5@%|XDbpu-Ndoqbg-*IulK}+0; +Q{Dd&W}Zw*gIt?(4GAmvE#1%X+C$@lJw8Q$)!w(b`=D{Xt6RLf9)Nne#yaKy+t1Z;PDqpKo0130{Q_D +;DUNsN5G5%$adtUn(WL{q%p=5qH`=tOr>BYcOCLk0hem)@?k434xQ5W(%6|BPZHAIbh?y`$FZa?A_e% +5MBzK2?^{;c`DL~P*GCiZ(~3)scvZyJ^hFV0w{1mh@JpxvL-({Lrc{nFE`F|~Q~1OkE_m!e>>s>5{NX +tM9zN>$ozlWiDQkOeb05b2LIiZ|np?ZQCHN2EYXxH*ZhYLKwseg-6udyESNx8eXT!gLM{6O|P#IJTvW+yt;fKWYIah7@~b|A2EEGPmR~ow +TCJ!z9>QAP*x%?DE>}s+=thbgJ~V}glTEB$|1HEf$CEc|Mca5q9gC?6(1m7PJUBaI3?$4-b12d$`?DnHh*c{w+6K1uhk6P$ETb(;XUs2bq{IfrO`KQq9E)L*a4R&=lnv|D +M3Cz<8|3y&s(=WH5eX+d;*blkMlbwAmi>ZmoWgX=|+y0L;mTuJxFxr4^b(l<7x!zE-Gl;&XM%39F>BA +X`xcTCfbv-O0Q@|vHDDo2}dk;Ci1YXKE)xgO^n^d-7!`*w?%NsU+O}lRYqX+D;xP&! +267o;-b;eBMn3zN8cTfUYLz@U_WTW82pHs_;Ra^uvS@vCsN7p+9F?Gr8bnHyd!h>*gv>O&cZ}fBFHUy +FPXC&pfciZTra6E(ZD)ZmMW5zu9Qv16&cB{?uf?8zf(gi3cW0SlJjPd}w;KzbyjjU|O*cVNgdfzE912 +q0%&^qg;pHsB7E$bZn8gQB8&Pd*bw`;d66b^07mm=-`fN51qrh(oIBRKryu+X5gwbPG-GZ`Q+~Ji^q> +2Cw~Kv9d$}IY;`(K-u&(4`@@6%!@YwShcEXJz8fQlg10y2$~jdg3PkA7v$8n9JSP*D!AE +26#fAfsJ(7VwFuQ;W^SSpI0Q;v#?S{)|`KD9k%dSKpaJni2|*+lm@uAy&Jn{VO08 +H*Fk5gVLc$1pCgXb}d!8Fu(m!>xAz$n#-w*idnzG!^fjqQGY +R4XNY76bpAW1*zT#l0DxYpCO;Ms<2j$JvqPnQa*}*nm^ix^itUt2%Ae(#n#&wjo?#p65Vv!xP&S47r) ++W!=YeIFe=N#XJ-Bso<%2F)<^Na}FfvTS${+{p{Oj4Ir +mYcv{V>>;Iz#y1g98A>Mc_QGYwhQmlKVu#@x+|4GZJ#Msie@pqKONPET2Jkv1zdw#0+1AGCyK;3oC@C +55Xf~gw?7NX9f@|qshXXUJpHs3CFquL*e#%jxnmis;5S;;Tj6neNaLP!9zycnEtHsL1zR9Ow$0S0wcX +T`aVOBiHfE&G0F%>h4+@9=GUO>qMQ&MDSk*Ih06emm3U@_Q9kxvzQ~ayP!J=SG`(=xg0L3kO&W6ar3S +;mm5z1#77el)UIO8egD{?_r_c%C0FH(ofxka9H9!ulizKIbAr$;xhl +t^<_tTLLO^DoFv3h+*4(6~Wpy39Kf==I&$wFw*U{!c=VSZqj=hA*{8FB5K$seS?qj ++$8WU(ybW=1OY=<5tOqBBByDo3TKAoW3MB@3iuELXdNZ{3(#btE;ZYeOPt?Ri`?**HZC~ +A;+S=%s!}s$l!v3%@xt0cB@J9tS-pVW3r+H@Dd!nSYjVh~mQSa-w&fz%itN0b1@Xz}XA!P +|nc&p^rerJ)b_Ql4!hEwsC1{HJT0u%ptxC{e)y~VkZ+G9mI!RCVj$ZE{?7m7*zTbPjC-fnj3Q@8NjP~ +X787D6e4~`FC?WKUk^xMOu*SjYuWQamKc_vC~;>ANnNtZzeq!O3-w1!d9bAyARR9jKW%2<7Z{b4cF_A +^e`BFeY8+MG8;I%;&N=G(QE2LF_bjD%sZSb=SfBjVC5w=4af4B_4SeeUq=(N|e=QRTC7@77km>wSF-1 +@69jntlDKQ$0#BfTeJ%o!%{sKtOsWUU~bpZoeFd<2JO5|D9qYA1sx!>odau +Ux|jTc`~1<`S?!doBG34k&JHSE8N3IZmAjH-V>oc(?{)1Tke;Y=QR`c8w299_I_=qdi>Y#0-ickt0T=Y=tx?D>UAfX%}YEN +J{$e3+1{%D`JDY_5Q4CS+HHW*O!JYvRIpU6v9d&wYk|YPKM$M&e$m +O8HB1-zWhyvoEaEEHN9G;d6GYJ9|8y%4QVkRpRRD!VRM;}#-mUozG>;4d{FRSuQA@C-dV$x|cF1#o_3B@p*kVNTKQcNj( +LBY`=vzjeT@>y|>hb5S*as}2hIfY;Bzc@bT4RV+)Kqd}|Wm*q#N2Oc2X2^*>1b)?Vw!BnS30{Nf^?#P +tA7Kc8o(q3r4~(HXVyDe&5j;olphtB +{9VeLK=!;^S5CVj?F-u77-gA13;~dXyjbEcxwc?h9 +Q}mUxe&A-I5&orw;D?8m1Y6_fK7<3fFx_=c#4U?P^~v2!)odM +Nl=p?vjHQucbSGcml->1~Sip|M0}uy1k?Riw)*bMGoR~l`DCAlIy%2H< +-v9XI`5&J-3my6hdXBWo&fVQ^fq{8(z$`1ZoGX*ZkF!ScpfiOeI!W2He%nA_t0p0|b9PRm7R9&Xc1TS +`FqIrvyU`4EuSvFsdmt3^bldSJ;RE_4o7)I04fz-_Xi>-OK%S({<|@7Oh$h{LP8AjNc&Qp_%1EMsoGr +F&vq!fdMspb2vfoR4V*XN?zbC!H9bU+op%3nQ;k^iky&5JTQK>|&Mk8MNxp8p_kxuo#x`he4OK!zD?! +La|`MUe+DZT$X^e4h=YAh9(ZCYSI^*{|CbdN1E892V*-fd&-9&uA;e=MMdcHG+%)$MsHn%Tv^R@9+&4 +o`ZD#Q{YHt^RXfoQ<;SJg+|6ZZYT7mn@2aDxHvF5Sl^q1yhrApEp5!=T +W%>@xf!14~ZGTaey^GEyf0_$1aZBEl;FyI_h$igil;N^FKX^yVb#-;R6Tjv2D7$@b&mw9eV63s=M^f_ +(qkM$EQ!#f$59xN|Z`N9Mm35jCa?iR>p3N&qmv8nyfEC9Itecv~h1z74>p&dY;!E$ZJb>9-{%2+y8(< +9$-Y1O9wIF0p#Z*1Aw@O4E!@mOC(SINy$2A*1I)Q%H5M&%kuBmH22d9Nu0yGE5m4B(cbM)m6?U^>XUh +~q`0HA-m04SKanFwUCHgu-QWRq;y<~DZPa5Yt`34C_o9lGL#4)+mx(NrQnacHVl(z{2JanUwPW1liZ1 +GC^%V>oZ61p0xEBtY;otSX#;Ui55Situ35G;98$uQ*t +3Wqcv|{Sl#C<}Dm18s@h7*p$?c@B?~=Q_9_6R5m8{6Gg}fDeyKo*M3oC7z3&Ap +aX+dcjd*ruaPfi;!{`GGYBCVJxl)vO$`I8bM-z#+oq23IqGL(Y$~=p;cm3C^_4mYl^^nPuR1@=`rBW8 +G1UK_jXwLrUz1dr2089M_ugKQh2F`1bu+g5B`-e{!g4X~mSF1kQ0bPbuE$>vV^oRfpj1n9n@Fj!)u6? +K(*V!Ir)?8~lhLwAIQs&CjveQC8#LWig#b;aq!ohmcm=VKF&*?yjMJ{jt +rM&th!mGn=o@AtBhJ2K~>thhO1lyTAR%;r8}``JpKcnVP}y;dO +F0*xV_y{Ge4Vb=Up{F|2$rE`^(9fpFay~K0UV&9QB$yWC8z$)g0=GY(2@7EmOr?141e9b4cMG=+6r*h%xdz+(2-FzAw|v>1rR_2?xFCH26wr~Ta +w>~}M;-_5{&Hv{_(n1PvjLs>|gQac+Fd?K%cruL7P)t($MQyPauG9f%3uFDk)x| +|tU%G#^*z`CB2jOt173;>wlsx6_q~(~roHxP_Ig(z> +s`AqHgi60YPRX5l^619s7EeF#=xJt24+!?4MYB%dE;SYgOV_og5ddd;z6D-yZ537xZNNvpcV10guHH_>Vk_Me4{qa=0?4G_uhMlOHzsS@r~x!|9-Lg3~VMJUb=^YH`jS(rHtGJ;eU3QZ7@d_k#{lY?(||Gn#`m~#lhI9m&0!GruN`C +D0iNWNLk=UobVEd8pilikI64(h%CP|JF4h40Gw6qrc^a>@@`rS_p}ZKdy5b)$BXqjK^g@6xot??3=e3 +LtY6Xm{b`$fMpRBxB!*5WH3D6uS>4e4$R5e^Sh5)5(7RY?wS(QqOa>NS}YU5rUpa^gQs1Ab`5Jy?OVa +Z>t0Tm-p%aFi}1KY?yq$QQtp*=yZyocg&jpH&9Ch1QY-O00;mBm!w>aOwvi-0RR991pojY0001RX>c! +Jc4cm4Z*nhkX=7+FV{dMAbaG*7ZZ2?nt&~k~oG=iE@BE4pCy=PsW3FAR$#e<0 +hm*?(Vy4Hz1=m-vM7JMTO*jA^tIU@sk$XJDdJ+QRqFG9@W5;P~|8raXMPIoy4HxJ{B~(2|$FyI9nd`k +UY0vsWgALLfE0#z}GSw*sY264tC;cL})V<0>VM;&a@=Z;R={bD07jQP!yGiR1Co;k185({q<0sW>%e4 +6>RsnZ<;;&zGj@d=9on_|0nDf@*+*p54JJw?DIAC_(n(D%&d`u#G`rSk<86l(g=cHfdbhWtcUK?DRICTBv4OH=lG(D%4DzOkaCVT +canr)5+sy;{jbJKW#4G-f7-NIEbS0WJ{J~cCug)-HT^Es^q<%?D39)_?X`^kl0Q&O0 +|XQR000O81DB*+4ANtF#RUKWeiZ-!9smFUaA|NaUv_0~WN&gWa%p2|FJo_RbYW?3WpZ;aaCzNW-;dii +41UjFp&1xpuRgcwW6%sMx?=0rUWei~Uk{?NlxuVe +}lU6iVYh{=$Yu#A(QP#QA)j=4$C{V&a)UrBs+wp?IbM^Z#FY^~azI^fXtIHo!T6zUQ{91|N%j(8`y_U +whx3{&Gy5h=xT|Ly|H|~XgtzgH!>RZt$&G+ddSuA8RHn$=XaxL5G%4j9V&f)XIZKTHw&b}Gee`<}D#l +st6Z}fgxehVHHO5Yu?zZ2D7H1C9Il|5d?=rJOqi=(RuNLuU^HzshzIGUm;dd?Kk&rEymWbSU{?uIoa3C68qz@i0Q!>nfZMljE62FeRU*^7eZ +xvZqk^MPX{RFQfhXR=T4rmKccH0CDSZo&6UT?t1LyZDyARwL9bAE9FTOo0Gr@C6?XGY%9J2Bi~xGig| +*E!ks28NoK&9v}%LZGfTNvoMX=Z>(74iz-T)c6BwZ`9h0^Fr%<`q9I^l+3R>`SxH5Q*^rfi_JqhPadF +)U{=raEI@Jd$)ZW$DgtkdMzM%fSc!H7)!r4n$FenQN+KdtuC}am=V{f>(78X-7(kyfn>;Ww^@piI9P9 +go6@4=(h2(%HlZK}|#c$u>0U^y?r(3+L}KJGCxSd(R2l1u$6dNh~`5%~QSf!}{V!i7P2fcD(93<+Bbf$B823z*jto-6@is +4k=;x8hKF#aRJ|El>ji9X3MT&A51=U5Hh`mVc218nF!kS=>#B=C5@fC#iBk*rMx>wY$nJc?kAN3Y9HY(j`zL@s#Bp=ix}KB?nkP-Gc0R&?VtQtGySVVGGjh@fol7J +rtuE7b=3YgS-`$bI~_CKF^!O(f!*E@3D_BS#?u7mX+nzPGlnmf@CqCRV#Mcme){I_>Jp)0da~|R}Ij-*h!` +ysfT+~_fVdZpyrhSN_YD*l9#Ax)HMhg}Obu@zBgeu_Wa;k<8U1^h@JKgLJ&4Cb+sg<;G#G)x7B$pfcQ +Gl>%%edzPcRUvq9)4p;q%j48Kyy>`ogk}T-}ya}?d3L0g3b}Q;nhLJ15C1=vgFudPv-b@TJs#iP!5M~ +5bLAR-)H`=npGYA-B3=PZxEJq2EyC2N9&m&XNWl~*9GV9VDJzw?yp&3bE0YW2T^sSKc1F2-)*L}A;rE +fDJvY+%0VJs{LjMB&!omaC@fv7Rv6QBTFAN0by1 +k`2mHly-XcE4M+eoDa~|)>X*lw_$8&$NLfyhTG)MpAaZQTfCn3lDVY0EG**9Hny7@kJHr9ay$<$3eS2 +n|OgH_`Iqa=H;WfePP$>J|iO9KQH0000800Wn#Tq3xR!s{rZamV0!8C$McA`8SmPo&^+pNF_BAI!EX4yJ~%(}@;!zTFPs&!7c7$#~ +2vXlm#dALCS_1epsHmV``9ShkK4aXOm}Zb*MTnoY(-{P)tIc8!$q3hp%gOBdiPxL|RthkrCf8vL52G+ +=t}{9I4|$b^gn+$!nZ%)ij{uen&kg0av{exoP*REUT!83-oVBI(?BN->O3vq^6>9rkAaPN0t(fCQ+bl +t+o|!iXmf7F<*&Axfa(Se;LuPBGz6`@Ne3+?QRj-oK}oYtE@h^L%uEu7@9r;R`)n6vJ=yP~fn_MYAQZ +$CK;ctgHRv4#nH~%AMzVE@V>N-gYXPOrxANdI;+9Ul +n!!;5d5m|YDn{o^~Dco<@GdsEOuN(EhYVPUp?)Wc7`<6AGs??&yLFOF|U$9dPAT(%Tn>aC +scydiYjQn;v-ky}B+`n;QyW74+-rs%P;NMMdJoRVf-C%@XP^~9$<$S{gKK}@r(05h4^vaBBFE0sW10E2v>D&1t5_cEXm7+O%N2<(I>kP3`= +O*&soSkW!4_y-2TT4Y=}UPq($#4i1mj&cMdJ;B?`JXOT+Wn5L*$u2mU8PJ#i8f>)tGeY=H +z(5=lbrjKvE#KU3FK!Mj>*t5m&v2Y&y(&geUBq5C&%WfUaG3NWT_9tZcz{Ap>bFBV$5NFy#R<1{DXD0NFiMkx2Pr@@r{LE9% +vQvpF@qhsKet~P_`oLH01lQ|bIDzEwOl^4vX&yCC5keKjHX&5NDj{6hbX8oSQqOb(%DOm&^5uKJgyjZ$(Bc!U6dF7Zz0am2qC^V9BKM5nG +?OxZKtvvCgGPg|DhXSEIlH-PHH!<3ubD!9JL;VD8mN4FuoASrO4SqM``8jfixf*&F9@&Doc9`(H__t^ +pe5sF=4m#|7Lr3b>ykQPaw^pI1!f9JszAJ>l#`azu#NtEB4opX2iA;wlj=(cKkO1?2)yO&yE3K*KP1R +z)iK<0+plV*vGmaFVGR1MDtF`U}$_fYevX5VD^6M4qxxvoO?sep*x#wby +SJ}^Wv-;FwSkxwrW8?9kcG?}4*;}%h-NThD84^hapL+}w<)Vt+VLVit!8YM(EQ! +&Dk)0)~?46X}*JMimFv|2N0yQZW<;x*!K62z_2aUFS(An=iR2}(AsE18>n?`h(WR#J2P^wR9F{H}zXg +|C$tn_2cW0Ztw5xu!B2sJ^`1Lmjkb%O19ln`Qd)eChh=yFB7kYLA#j$z(Fw6msB>Jijmh$TrsyEH$(oAVZHuZn5gsm^=)jmWl!o +c{_m&z3s*alByhwK&Lnf3pn0S9=h7o;#KBtSju#xeJe6#NqEOC%=fP7l%lB2dZhw?DI3H_6no<;3bC` +A&4mi*1!Mt&ws#>(-4hk!Pj7U7CeV&SBKR9pLki!SZben-#VTD08mQ<1QY-O00;mBm!w=oHd#|A2LJ# +;AOHX&0001RX>c!Jc4cm4Z*nhkX=7+FWMyVyb!>EBb98xZWpgfYd8JufZ`(E$e)q2+ycZi#g(m6JE`T +43wZ#T>7a-ZgFbo1M(=r!|R7om{JM6#jkkpMLB|B*!+M4J44tXv-Jf!wglt>>d$_qrxN=S`9&|EJTdm +~7dJ~Gk@Zq1Ly;={*J@BjFGm)+j|`T67Rjm7_^v`ie}Z?r-GE)e`#a>2>+#to;uW^A=ioJ0~ubSqlfG +4m%EOvuf0NA|d8dYN>BZ80g@(Q@+%Gerhy!FJ;@sxhPac(mp_A{pf*PyvJY(ZS2{s3Z?Wsz5_7cup`I +4}+uVy$5c60)})RF-G0VnzXX5q{TsdVymH(gTnRH*OswNLd} +QqF>1zsB?S=>OC)YLteVGfjx(wpmEx_ig +L^t-ZB!VaDpPP?&eoVo@Y=pVwu=6-QLPP=d>EWg_|?1)Qj0fN+F+VFZohKQRqlx@qw^vHYGZ%MLt=HT +Fe7xHA%NZMuO{SHKPwCg>chKQFW$83?D_UQw@qzIoJ|?u|LHEab5Bm;uhB5GeuFr5t!bS<0F_fv&zwK +Y>5o23QM`r!*gxyJ0H9w+qyX6I*&m4UW6qmVugc0V#z5FW|%d=&$@w&BPW5+%q7(n_UQ?7f@1X-R5>; +AZo!B(ErV)hlQ*my23``SpdwD|tFS&y21=4jhAA6&pv6+Caa_lP87|PNe}=0qL4`%Qoxp2u2JMf>-%6 +ZEDyWCaMOoq#7+O8Nnb{ysQS%eIC0@UXNNW1#-AkF*FI%j}MW!^C`h+(Oj^i*l8_n&pJQY+!hfYxgC` +h!n*9{1S&op}$WlmnYjV^3_@`j1hknL%5-aPg&nCeJoX5w|Z4UdmzTMwdjLIHTNtQdKEt|ElKLke6p+ +$2JeE)bn4IN0x3D{j5A{STEm>R>3zMQI-$wSG2* +2Y$bClIZVaVu3Ws;Lg#YYQDP;@i19Tt` +YxzfZ%)?z|hEQ!~1lL=4sDdIvWYJTxZov_tKM(5F#3VH547lWVHk>=Q+!23ML29s`EfYEv1uIKQ9k?q +XAQJQvOsF0L9sWl=4I0x-p&^>l}wE^`Bn=cV~BbzuEdp6O#XU%O85y`Exfd1AjGUbvn+jd5=#F)yZ`p +=RlD+Y2mg%iRpEkfN?80yRFowisH9$jcKhjGG$<@2$;^NKPJWLi0uF$a +i|?q$;=}dRr-|*$!!rcklHudNU5-sTMjcQWK<|c;rmr!0rh+VYpJEmqr) +C4qg$Nn=0DLkNQ`9BGX%tcplLqKMKJz}|2W)Qkix}}Wj<4EPHH}nqZJ*I~@&bEmtx| +4eNhU{s9Ze4_1|4apzn|-MxHENuN9fwgBZ+ZeG)q_YxrRf%ScUYSJn?uxrmK|?J&tM;>NFnlKT!bT#G +Xj3NjDUKqz)Wr+P6xvTfN_TOT$pnH_rH<&C#n+;lKnW^$w1}rE;71Y8K-yklaHark%XJ|g +PVp%|~RAe|t#lrryUuG*>rP%}FJ0Vj^^8*wNu0;Q>_DA<~hG5&<7Jg@b%z>dQcUbtpTZvtwM4N88>3d +n!C3x(2D_N}vuoUlh8E)jO<*Qc*T{4I<&P`LWf%8X5;;zgIGM_3o%a2da84CS$_seHwSG;sOL6L%q8` +bt7qg*vp8r?U@T%z6TRBA@7sCCq)_0dX_9O^)m+mCdo51Y5I6J$Dz4HfAvqIFYS0)InK+nehy*9t3 +ldhX-8>`a_Y|$&L%XzA?sGr9nT0F5K$P8pfx!H=D)vMfITQB|xP)h>@6aWAK2mk|@q+CCCI+oV~0003 +5000~S003}la4%nWWo~3|axZdeV`wjAX<=t>Z*yfXaCv=GVT+?M5dEHCF=RiiLeC#i@Sy8Taj`1aEtK +O3X&Y@o6N%ZDW!e9J(VDy3-CjOr-n@Ba-b{GYN~J+|h+l4PO?4?%gHWkt11)boa$@2jm8bar2qTS)u4 +Q}uJ;~ck(aD-wa&QS}P%%x;-0;pF89Ah6RKF?K-H~dkV6_#>`rsZ>F|FVKGKUBubYLYY)?URa{iYhu$ozxfG^$(6G(>wr|HB +@X<17%wIs;y%?n)vUwrILxVB`Dj0+k3a0y>)t!f8pr*_kEROo63Fl(LcsR{6VgyF2*LLk-F^x52 +T)4`1QY-O00;mBm!w?b1=|440{{R&2><{Y0001RX>c!Jc4cm4Z*nhkX=7+FWo>V2X)bVig;m>*+cpq= +_g75Vhf1g`Z2BnFiy9lJ*`#p_XB(h!7X&L&HWP^yNZMIpvH#v7DeB@4QomT_+|CTo%!sB{+JfoKqSC4 +X+qFU-K!oeNzyI9On>U-AcemT$m++yrLP=IH;V+3FOZY=ru35bZw%O-X+u=pDejASO#eViMY4G)xObTb5QLDe0&fNXc3_Xpf@BTPP +%sz=(`i+EYf4S6tf3Sk?1{5;p?x{s2Q7|FyN`1K>hL(TPwU<7dVBW~tsVo=9LPVX*PE-2(+)YrtJmZy +Se3lOfI*~zMya@wKU&}q!q{w@@9Y^epUBGRGZzHts{m>)Iu9J~zXq|@-5i|P_nbm)--de^>V +8n-p4{+`cN?vho?B~|?$8I-Nc)1-H80`O`Ff$BNIIBd-$r=CfK>M4!7o7lv*Akw^o@Dqx{{2;}%keG4XISEgxLP?WmV-6Y4kNNK}_q!foR`~aZa07YuEDp~VF(drt9YGgj+8G~clyNBs1pLNVyv;~*z>t>@~1pB`xAjm=`el;J|PC=W +#R`*_JwyQNmDlha1H%(b@ht)0f2f=KOL7wh)64;jrBCvwMcxM^ytEbLDw~x305#;`fyI+8eZlT +x53b`Gp9$})Pv&w<$b#N4^T@31QY-O00;mBm!w=GNFmeh0001j0ssIS0001RX>c!Jc4cm4Z*nhkX=7+ +FWpZ+Fa&sh6or +CYF%vIVN8>v66mRY-NT;srWdxVsz(+7+7N~QKId+=@RaKcnYIOJ~M{-hrmzyCf9!JD?uZdD(@Qwm4+A +zR|c!#Ra&R~yT#K)HsUQAjOW=$Zyc^yU0cqp3fbq&ce@RCM4VDNK?HR-d9HZ7|C+{$^@Q~TzOW=tdn{ +_4ypLf-b>CCr$(x|#=nxM)+Z$s%BCf>J4f_0k0#ehjz_+8A~&{=rJ`ASD1hvg5b0+xMP7q)t#v0|XQR +000O81DB*+YTj=YjRF7wlLi0)9smFUaA|NaUv_0~WN&gWa%p2|FJ@_MWnXY|Z+LkwaCvo9+iu%141M= +k5Pq^TPahDV!@8{NiVbZa0t`b|7^+Pt+8oJ{WTe5ce;+0Jrlj?Yo#^oJ@Q{=^bV^$gDrvMjfIW3W?m& +cp?;Z-+{CvDA*I#ee-|p^j3%Hi20=^4llMukTG-AYG)AwhrRE>H#wfJJk(+zzmiD+WVRRZ(`bfu(GEs +g=}@H0u0s^!MO7t!LQRxhVaDCXGi9zJn{d7wzs^oQo10S*lTAw#xfU`~b^TdUsYz-0{@YoW2S298=-G ++-4442ccm@p{#@T1Xwg8%R@yUJFPm@_B7R}MYS*K-xq|byx!p$oc?^pyn3cH{7_96}430?1eb5}`lD-?Z!bk8e`#=_hC8A^dhX|I+> +FsQ!Zx-56Rd^$~Yn*~+*`9icP!<5bQ-?Y8i&pR96JX3LFC!_hxm+l5=>`!d!8`5fQ?H_fS~}T;B~c?Ow{GD7zB^KHDf*$qFe +9NY@!@lC&mF@seBV^5m8vq3D-9ZJrLC-Xkjny%{EQ}swbELB#0+w+O4wUlo8^4IlXl;1<5ZRNyVH9{p +Nz$FUZ3**;W7vw_6T`zBg3>1ny6$2b}tQ-Dr*V^vsX=#L8^|ZX#*jXd5#(@8#D$X6$TAdh#4KV3U*kb +78XH(v6|f_$2A(l3pNBQr!DpaI0oWij6q@-#lQ_sB`pPbFRK*UtR_bKFGY1CVo_y6XNI_U^i2#w&*)D +^bVlRI*-@l>aYWc6Rv^o|z>;<`i-X{v@YjV=%K+#zgU#>qAZyH|Si)LXLZ5&l$>k?_+hrQ7_+tl(mEO +(yY3{*^2d_3s5QJeE1W6)_B1zy19z)8uEJYDM1%WG_J=L5Ca)^oyH$DkuXo>??p?BwV>K6Jwh-mA +wmeFU<%)_xavNEGWYekqVxU@e>B=gR}fyn_GB@1@3H8xZ@q6{qVw?C#TT93DMQKRU2Y2*wXw2pv1&@E +zDXB<1een#z;{rozqyQy#g9EX3x!-~i?f;RUk|=8VDQCdPNO&k<2as|QT*Je?wp^W`z)QG&tXhHmcmY +YmI<39aXAxnXJQ)lyWZ{LxhKBre~rMMp{xFv-<-ArsbzXd*g``6l6daPAe50vSY}=zgE(9@o!%Zjnzn +s5NX>Ud%`NUzPxS7bs|e4Cojg)|v8kA)|Bc0(F8^I^D2*@W^3@VCva{PJrtQA3cFzCQ4U~qTR7F$Hw& +Tym!LwEkqjFNyFxQ4>+qd$yja9<*nfX94p)k4gTL0hhG)AO^g#s +#*8nsVu7?xxOF& +G3f06T}yT-=6B&tpWzdB`)0^1PhhGS~ENgP&4E(GOXY^f)XlI&zd%&va^lJ%VLJ_)`J2hP=M)eAN5I_ +5Q1Xff?EuU;?W1u5>;H=K$_)9f-DO|LNgf^flvUDu3T`NfUb_3khbC*ffoMiAb*^=G#}xb@Dh@7(&AT +mM{#qq*z4?LSZ5e*jQR0|XQR000O81DB*+)4PjJLkj=^awPx&9{>OVaA|NaUv_0~WN&gWa%p2|FKB6J +Xl!X`Xmn+AE^v9h8f$l(M)tdZ#e{TgumnO6Kf=bSZniz?o;K-8yeE4iv>1tzM1p`aD6(q1zkTnW;W3h +sWH;NDZ3Hv-{hB+2gLx9C8A<8UB#r098;waIhOWMU)r4o3rQSH3(`**|0w!A}K{PGEehygHB>#$nI64 +yZMn-S5V)}jJMNM)IBS%L^KAjME9M4BVMBS85>8*OgzbLZ^Fw%%_C1 +ZL~%w?BQP#EIp+hC0S}qZrnfjDuKN|Buu2I*rIZDu&`XjqpuQp7qP!0#Bwz)yirkw#%+^_z^jt3ACFj +kdwGxhob+i!h5Hb8R#&NPzWonGBqorue%6jTVsdFL(<8O-~rGAr}_6})3OCOYqG6s%O%Al@GQ-S3{y* +@2G^4&(t7qM9pm4lO800Z((9MQFayaLCp)_nyTn}i;y0RhF$ayTac5GLkX5o%d%BSdF_UYuTi$DUlv! +=x=Dlaj4veyV%>nSh?J5*vA(WA^N`YNnP;n +C6UUE8>xiu*el2nd^&A_OFp&Voo<5XA$*Kw@QE0UzKzZgSU^YFO2aY3deb={jABC3EC6_p(5afCCJjc +~yjsY;Ea_J4huc~e00(#(FT70;13r}jX1mWFjdJSm6Aag;$CF?--Foe$CkjeOhIlx9Wx7^l1}OM_8P% +~`s`yLR)`e9$hX$uC~GptjQI^9`l1^^cny5{{te0fFJ*?m^XtGMkN#WxZ~5+#vbVvj?XB0(o~I9OLl4 +%wUbsnXL}4^dCKalEd~MEUT}<&H2OTL_HC@2+n%8+P9FKz(DZMgRb2Hjg7(k8bIqYfIZMhyX!uzkL?t +xcdZ(6HD`|$dw>mT0#diClDz`j$6(j< +x#@oUPjnetG#I(=esw10IvT-){)#ve7&9So%y?tVD&~0<=+i=fxk&DcJX62e4IfX5CK1ALB3v42w}+qcB4si5 +$g+UBkYI;=`XzxPrPgubG-e)B;L`(vG28|clp2?$y)_40SV03)!&0^xRCZPI*hZ~XYv#EG-cdAd3z6@ +RIccz8W%haw*xv=wf^JQYQtEv!Yu8Wj-(H-V?LXDt=D5W7GU#=KIW0<*ksl9XLl3<*O)2cEEy61=6x- +!;X~ZcFpeKec`@9tfkp1bZ^(COoR=)GlrJaX9j^ode+@D)7&M(@%-ivPMym#7djb~<$ndinVn}_TB!1 +ekRuo&gsU!tB%ne-2@D5sk87n(t?!78&=GNTa*Sb2;fwZQ+uVzZ)Nn +)k8LHt9IT$=Pif>eF~#pR739-g4f9{WU8!N38SB_iNlDO(!WHY$`9~-zQ?fFPyy-<`#Oel$@` +f(lqATlLYelt)oJH?jN>rgYgMc;T!|Twvpc!G5TznAEiR{EU{{f{X;3apvk;`orD7DSrO$X)aWNzTJM +GgKTRC+=lzKsU3&uI^5f6<>eut$WS_BqMBQJ}~IQ-Zo4f7n2E8)vBP1$h5ycoHKiTA|=%8yKJ_2d1Zq +2vCdMhOc|YRR(ppJYvb7QIIw?tSa@MWKz{%Y-3UrqE5&MJQcpiLWPSw4M!OK_3|Z*@$|Q8`sSGRIBbv +DO`xSO))I?FGylp;0O16d?FVS`0bjd6ELibHKYjpHIER{<4Nlp8PN=Chwy-3h+4Q~qdLJ%oipXopK;p +QH1Gxwyo*Hh$j0I#4vtwu$H8PpSUj)jgY-H1(IO-9Jb(+nWnx<#@Z6c7>rdh^jF;HO5Nr>gux<*bwyy +PeucE2|()5EXDtS~W7WAy0VYv=*sM1Jg`S&kBllNfnxwmQXok7_Yp;ow2%D?Rh%L7Y1)#UnXX#p!j%M +iW_M58GQc#IMrIJVKOoL3kD#eLyA$I!!C9C(rp*6ZbcCGq=%YWhYs+j}`5x4x6+laa>OrXIguvMqXM!n@_^u?>o4*B#=JbU&4KZPN(0(-=#o1fOSAH4g$m;2W2FyM+ +2g9{d#EfG;jd^It;^YG&ojcKU#4(LT^2MO<=_7v@rVf8TEXc*1HMHOYijT-01e|$hJv~bm}H_oB`bOx +0ZNWgp_vY+%S!{(Iy}eX}{_)np=Co4fTL55+H$+0a_je?{urmBm +juia3b3FqqJWC66op&R2M36Y8Nv$lwS)JDJf|q-c|4rM>naHF6 +z;RNi=tT_(#2cU%f?yjcBMiq`Mo(t_FLfBU`ol%nR#M0Zgxi)x?>8MCiALgGHAbh|w)-3bM1}sC>%~B +kFJIp3XW`wEykc5uo7pqsJ&!7usW&zoAR|iES@%a=@6-GKPeDy^q+?G24b|xE8Dyf4|)R0{Fh^AasoT +Hy(ygOXe*HqM+8^awz(C=HFs4@@4V*;V7Vn*9=I##lN`SX?a8e?llFLe1A$LcEe#Up13@E*Pv;ud#3( +^^Oms;(>iaN3MmXbK$_>0?{N;p=N}`%|34B0srmM7aH@W3NI0W;JS}vp+CeVdF`m>l@+u;P#tzr%=-q +pMyt^Mt@ZDO_F3Gk$&mqeo%JVG~GSA!Y*uJDQy>6H`e7t53#-HpY6y8oN#m2bXBE)W;B*wm4XyGa?i* +84+>FyrUbYvxEWtp>f`vB*Ne!7T;1S1cyC&X8DySRTpTHo-x$(%CPYb6{VX_z_MG`1A7RsJ_;&cw)aG +@JRdIp@XQ?c)08ZX}_Gl8JGRdC!KXZ5oEOO~i&Qc4E1M{?*u9bkSgxTc_Ozxor@lPVP9S5lxyS#gs~? +1cnqT*C^!QHfz`ZtKZSdvTnIWJJ(w2{8Wk&L{UcIZO^p&Fu)73ME;~M{sg936mp}3ZTotI@JU@pQq5U +8Dl@9W%iHKjtGGX9>Ne+u<<9lzf;Sd!+y?>94=Q7q{taG#d +TUfBr0NJo|YXM6Tod=6Cmr`Xv;KLCQ=O`;ql7l5{{T=+0|XQR000O81DB*+IKf!Riv$1wvR$ou!I1qo&r?7I;Hbo)(9%v;5L0p>=oK9B)ygvF>?RFKPvrpsCY +woC=l&2;B=fB_1PZn +fCeBb}mJ1!NFN^f(R_?s2ia9EWrff&h0@(EOy%gy0)%xW!Ev5=}@`B5f?KFnCb^KCo_k; +`y&2H)8qHMwJ=B6BI^C~N{`RX948wc?=2HEc#g(x8Go3$0R&*Hf>YwG_^k`5EEJ +I+$3MA;V}Q!~ENEq@Yx^-~~L^BF%vY1Er8~k>qs>afjA>^!*SLc-~JxI9P9(T2`?^zO`ioH63toFJQ# +_kW;1^2KC~bus)YLoctg@K%xzk_`F`yTAOhPEJKC<{bxfW}CKU()WpENaSVS?OZ520QQFheca8rw-bs&Vu&swk~;sVhn`_F(+e0E +mhIu2KE4PttyLbo>uc((wmq3I7=`?F^ahjy1eaAF`cg6$<1yV*@7Iew0Nb=Nzz5vQ%Sp +#A72T{E?&T8+m#%dDTb^80bV2jc%fbUT#o&uH9j#e27h9xMQ`>~V)ts1jB}FdTiIgzJ=<6|(uWsDBfT +QAQYG<`W3~Pd=vo6D!Iif80}#Ej8Bz;?xqChUmHN#@g7;9=C|bl-)mAE-OpCDs6?3(aA>*&x$qMb@I_ +-wSF-B4M6PPv$)kt<|gGXS5bw_H0Rm2M_jyHVy7`Iu_1C%!&@xxWO=-6#Cji^P_^wr%ZW@UnygcM4D8 +Lu199gd8y({w73~^-F;-r2sTwveRl}Q(j7Mu8@(P+|wQH)4C&DGa9tJh^#K=lPhF*H{SD$DcHlQayea +x9y_rBS5)Y*DdL6;D(NnHx|MG}3NTm)TZo9nvivF8;NW#$=T#!(6r^T*k9*tEO4X_S;#h`a5N`s3p_0 +K&eR()}FlUm9Ig{M?ZH-e}RCjWc=w%n6LKCZI-5t8HHu`wqOk+3J-Pk-J&@{A-V_BD}N`)RDX%d_zX? +KBmSg4j?EszT#2@&b8F%5?9$wDY-Ktejyjk>^IYSBw>iH%?ea=bQ_MWFc_><0@Qh$EL08Qj*Z7!w-+M +3as#l^EYBg0I=K?pxvOWXI6~;4-*Lm0_r8EPN0|XQR000 +O81DB*+dJ@+k?hOC{v^D?$8UO$QaA|NaUv_0~WN&gWa%p2|FKl6XZ*_DoaCy}m?T*{V@xPve<)4xXL- +^8v0#w9tj3kKT8fT|KAqWJITuF>6k|inMDTjN5_D%X!eUi@1?(7#S-8oI&RzL1U?(FQ$?0oNP+qZ`xz +bS(1(6#*-JpcMd0?)(P=f!vs2Aota(?btgFNU`MpqNeby4p2bVECX0inakb!9y?PW5Qn~K|>N;i>8 +!3ygPM*pRdJmtVe}vU+wmQc@Mm5nTf9d&b(HDUEYYALEhj45A?7BCp|(>YN!`GAjIIsCq2|z3nD>D&{ +xGi!vO^|h}}UnBZIw_k32Y@j0E1|1M;|7R9kmfmn3|e(^XxXeE=D>eTr+PV=pv{ckq3&SQK?W48g1X) +E-AEuE^|nERls__#C)u%IZT^9`ib=2|VZtK84{0!AbU)%(#4oAWPDwHT_XsZ8osD1pG1Yf)(lEI+TQj +iNdj2NSbCrY@#g&^H9jJ#sf>wFYtAP`P+pyt1B-*$C{CKg$!41#Oa_W|b)3N9#HF$7I +J2I3Albg*S_>bwy9wniy9!i0%nLrOrXvcYixr1=o!iie;xbB&N~1z!2O8^sc+6x$%ns-_yVEE+_;P1K +$(10z4usHM>*Ko^E_@WmfN291!^;s@uaYRgv&k2@%Jb0sm_6p)51>jg@jSxKM}J;?S7`Hf+sthD1FGzzYY+*}tZJWk!P_j$ +lq$f3(@4oT^GQLB_g%F#eugoe?QL-OWK7chk2Z+BFBSc{Er~nm2;?VwF#nOtahBp+^gpaL9j#W&|V_( +%J_=lyAvD*1=&8^9-LQ0aj;ReIrd +IjSI9>+NgXVa+0gu&geUvs1MMNY?rFp$5#=O}b>%8aTu~h;~ZBDd?T(`GcN%)J=6nX>v>JTO)Hev1C+ +rd>B)D?IeE%z`Blo6NGC^2U0+@`R70WW}*5o?fP93oD%6W6XO?qgHW=7epWis0f+5$EmD)2RO5cy +?RF4|?wNj-NeU=dIZL3S5(b4xE{0q2OVve;J8?;gU8R%mPGM0iMR&pHiV)(|LeBig4iZK5=PMgjtJ90 +NJ|3E1sZj+@o>3|}@LTAW#00AK_x~@|lEYKoQm+5ERxU-&Iqg!^JW0KPNlU|QTgaZGUMj^{EWR@Nzn! +|8G|^5DwbKJl+g5iFV+=>ibzw5Y3MW;;_0kr$$gh-IRnx^wtBAq`ZG?;=LClyFl34AmH26krb4bMoqy +Zs}OD0W^Kz|+NTssE9Ni$a43St5xm8@UFhv``mRYc7UJ}DCdYIQbs0o?(TDn_;2;dBVi?Vcjq(vFjfc1TOl-#yIK6Rua8 +Q7^;!+SRiSERWk@CViGT3S-R#&6$GZepoOd@F|SFvr8|F)?0nrXrkpF$hNu=IdHvL5Jq?C^~z&6&|6n=RXhob+9HGZ=z04Xx@jUqD1yV!GQTD@$LI&(X!R3{|wrI +(_i#q9KTsip885F^V}7*Rm+kQ5&P0M{cEvU?tw1BNf!jmmR3rq;Sg-5M3x%a1ef-cGippZMAjMHq~Fz +^(C#VUDR0#0RcFLD`&I$`=+BGra&D2CHTU~PFscHr&x(Z>_)U>> +jw>ehX$EI}aFaFM&CcTh!L+-kkRP}q*Mi=UWGPr;&gfi3Z8mTF`IXDncz>yz&MkV`qu9Kf3*`DMp3Aq +c)MZxOWuGbAXS3y`W%yMq8X-d0p5+SuyO8dM5d;US3Wb1PqzBU_HL0v`Laj$w(VeC_{csgTKSZNre3b +A(_&L}kXm))dw*tfS#2k?F@U^UlE&9|zlMN~Td?(&f-Bdy8p?c5G;Pi==YJn}po4~M+xE}3bZk_ZUBy +8+Y%;{K?Pn5kRX#S3T7sFDXlm+tzijJmwU1D#d$48lYbz~5)FKTF(=OD`-;`jGf>`+QcLkrM%m0aCb= +reIiBhtM^hcuIT<jX}Sq4O`J(xy-tIznRS{>fEAykav}gfOSWgt3bg& +oYrsXvMT2|GQAxo;ZL}mIk@miy{TC!Lq=UjR6nd&$$<-w%W$8c&CtJ=`{u$*GbB~_eoGJLj9(Cs0aWT +@bZe(?aAYSn=W4#%4>p3+}s`U7sOE`vAiP^k(t?{`N$RvXaa9zl<8Fef@wK&dTWQJ|%ssQi+ES4vs@Plbley?3{@_rq9u**5`9Om_ob-mLjGt_Pim5=HFx!&-k +$%TaQ7+q8YG5d2^!w@hA3Y_Ffs2i+G_#+sKMKU=vYEXZ|0SmR!UV*q9gZ!CvWHi|SF47yF=vsr~=309 +D|#WO!_h$C#JNwZJ|&K~bL)+ldvB3UrKaNl=P<>Zz=yx)Nrnjk4R0?$*px@e@t9TPBx;e70CF_u-%JoFNS?K6p;0>p6WXkp}I1mlg`X7IA^wl(BWaZPC+i8@Tyx_kyylus!oCI8Y)rf&>ZmYwirno2ZcJJ3B@-RAY6RL+ +sBhUY2>TTKlGDXQh*6`j=CAJ5wH#up78+IbgoLp!2`8}}s7j(leVqK2KsJ8KIjV@8wa8TXv7i+=U*L}wdkTPsMh2NTJHF-=yMZ;6zx{w2>PH~7M4npqSWLu@%2oeCbL@^^}xQ?EHy48k%YaisY@ry~xpBCv* +vA^#`j>ufXW8!s<$%T&_aoBb-9f?5k%CwQXBSdl=3kYAsQ0Qq!4o2*REbOmwNdY0DGPC~5gJ_7KwOS% +m8Pnl;@+K71Ma7~$3CDbgF;ZbGZRJnyqGjx8Uh`O6{C-hxh(FqNkt5>qX<!A+Q?Z|%tP)h>@6aWAK2mk|@q+Hn`#m=b@002xo000;O003}la4%nWWo~3|axZdeV`wjIX?A5U +aCx;GU31&G@!h`yWu_A<$1u)ao;=k}b9OHACFgh?=h{@Gp=k-S*ifWOfVS0}`|sVwH%LIS+o>Kbk=R` +@=RLU6wBXt}JK8x8&DmNq;i7a!Wi*Nj|>VFk +L|Ql`N!yK+IV%f;7Acx%QTI;S52`^)*8;`rU0E3p2zlDXFS8^Wt{H|@kT9UkLYlkF0s=-xN( +_-7T_d7lQGrT#+7YgE^{dUJ`r-y%$kH1#;Rihy4>XsIrm{vo5fLD@{jQmDBUMIM~!}b~Jz;BTC%9p^=0fEmG5J5w(De3681|crVUB%brDj>s8v|e42sv+k);GrQu@v9x@nu~W!KY*T^Zx;R;(( +zf$P-5S&vCt*59p#lOT`Mo<`~r5_}s|dC=bdpb?wSEVyi^* +9Rv4A%AU8+`|T2(ASkzx=dxm;{X5dG0ANRM;9WyH;~R3hd#}42W*M}@BpteuR=Kgs5%^5%g7VgzF()T +25G1+lDzPB|$M~}Cxt&}2ne@7CYj5 +5+jaXD!3!m!c|?~`0Sx!Ig%Y&aw>d+$KzSQxdxvND#NP{ghGHO3fgiFK8x-V_$#|3yeq+Nf*S~I$8k-;y +>VZYzys6!3c%MTL!U}lE4tud!?6ES4ANcfl|x6DRR?H=6nR_}8W3LNk|lUXSWB+1wjF5I)fL%*1wka~ +8C{NdH#{fpy2s23;QJ`ws$f~PDq4~>96!C;-T@qtT9?hT_I6loCG2p8Q?-PnhOJsD2xX2wHwmrlYRf8 +?Se`ITab1PZcxJQtF#VW^ZF-?Fa0Z~}`Xz66^yRtscY*Ndg@!EP$LyT50b>xNkh(>BmJJ<~gRET37)z +?<5kY~&pwPuE=o1VK3OL(inJQWXCuNgH5V1<4``;%?&}P4V|O5XvDm0u +v!u_9HpWND>&>^o*nZ0zl%Y5v~GH9fk3sbcC9kSOsC;{A42HBa?)JEZpqfO?uICDc|X+W#!(l>>_LQx8P!FMJKV1g}0YLkByt@RiXG>+F4G!4Y)CB>LuT%% +MK0a0CPtd8=&YkZ}#v1hPSGqdl_f;sh+1a__%Zk-2$`WKR%<9j@Kp`}9y7uaXDMmP8Bh#O+Xx>b2O3} +8Yk0S676_zBVEUQ61Te(OBZDzIO6NQPpG^Xr;98S|dR&y}IA*#hO7*;MTjMirXeo`A3vhH?)FL$am<) +VUN?fWnNVo{T3N=)0G*515H8LFOM3!d_e%F=j_oS%r@X80d9-S1kIDwOuNuAJ`izQd}E(sy5w2a@&J* +lR8qYp{|uXG+d-sz0vx3x7$-#+nRbfOz#(T%gGz@1u7OM@&qe0Q(Bc(%`$Qa*>eezK@^kiR@E+kI=^G +NjD%T)ET}T#0R-3^DAVFA$37$4v-EHEPMZrTMAZmrs6;mv7(*T*nzmhrn7u8}7KeyO1WpZ +x4bf}$|Vo7eH4jgW%sMBLhs3Bhm0Cb>nRwrRzg>XcRXDk`~bY;b8P|>|iI->1<5C)AObm62oi#2^7L^ +PLv@qrC1;SfPpBL46(4$F9!|H*0jDUX5BHo3r}T>7g>7?Pf9fA`ClDsde!UI6RtREb2#qOmCUxj-)gM +3oLIgA*_xramz>ji}lv5|~2erk2Zl#c3%To;UL-IM(c*;3G}wvCX!;c5(DmJay1mVtP}r#F +Zo8%z|N%Ibhccy>JU85~8(SfF%#I%+F89FG!j1oo!8-`CHAkX_*6q*GU7kum$JWYlCb^SO_33kqxDeb +52vYnQNl?m3S(W86q?*AYkoq*rS-jsu!GznOk1@;;_Ld+Jq=`HoPMn!icR`thGl@j!VbdqRBur5swj +i>ka()6l0QiJx}7Mnbj>7SeHMK-VNv34NBV3gPK<{gBXNRL%NZR8=T;N2Ei~-6IMjnJykW?acQH~YO% +LTJvIFJxo{U*Rx!)xhrO3KC^-DolTkU}`- +fF4i|7oL0BQ$Fo0hyxi=Fxwr{jMj$YF4U>KB9&_ysGCsgF^&hRx6HiF<*AQ7-v&}5)tNgLKyR=?7O7M +vmAkTQz_!^z5J->a_#=HP3D8VFRd@Ea5e&X}mBs_<>%|pyUhN60P^;^RdRmvfo_qsmLGD1Bo!M?m-SqQo&_9A~Nd7`3 +&2GLKkTw3=v(rP?c5HRBVl?qEm!dFB#S`xWwmri6THSN@d3c44*;N`2Q^1IAur)7nCu_E3!dp>VyDxB +rdw@D-t$z&TZ`&0r33%xt!FcEN>l&)RoAFf!Jm3f`H8%7-pXHAM0PJffnwp?JG3JEwd7;i(5KO`@~^3 +UfN=$T>PuAM3c8!z)*$Z|dr+$m7oS;vy}+$TdVj5pHFyvG`HK&e!c +G)}jjJbU`@hq|x2%ZObZ5d`yF9gd7THR^n4K6H9=v~%?q +8cesTN#cZ@=ufI?I>Ww9C4>F&DUB?&pf4s%kZsveb9?<9ADqFix706sk2Kpgy +u3G8xW$t*%w^L~-7mMbi@gJMZ0`1m0Yz`BNLdYh`t&J!(YkH71vdH9+p_M_Po8oq%h}~zxJCPnn>dq& +!{vN#uJ{T7E*qXVv{4U)Be?VhrMUSiD?mI?5K|e4h+-||?7$~JDPE)zdKurgqqkMtGYJpi4ZY{7LqX! +GG!4(SBzN8+s&fW~EJ;#T<1%7_cNMLd>K@x*`Z!m1SfY!YYXdM4fbDQ5Tamar*VC{;Uo_&bE1TMzZ%V +9O6*)o$(qz@PNk)?EvXfu`P9_#CFPF=rYwyzJC60cNe||_5AswEIffKNteQA3cAIh)PJ3b|B4O&QLxW +mj9eUMB8%TYmAg;h8p5}0xnPscUd;2{okP5K@XkSV_|EVQm1@5bXVyO2?+Nz7!QUnHzTAKn +;Ev-zhTtooM)HTtmM~GDmb72{jP4>$-U>vIT{(k0BKJh +4D{>=lveCLt+?M#o#crJXJ`2PpxcBkrlf=VSqrO+JfMD#Wn=o^bAM5ZGVpOjApMG~!&c_wew;tjmt|F +Cfuy;KFFyGJk8A))l;;o)S|Gr%sio(f19;m#!TpGi%d)V!U{{pt*7G1ygO(Sr>HJI{1DbvUiZ~9A@O@;e`B!yo^pI4>{YLR0IfZ5`mMvv1n%LU_F@unxJI9KRhHa +BDrhoaN2It33*0-_#RmOj=X$8j)@&zM?#jR3Hfm#JMuiX_%Sw~Hm5ZtLIKM8SGr?RSIrLRV}AT7!z&J +|p1je5zW^F636%IY>MYv2-!y6RsqMQ3CC7aSE@-h!B2#%dCs0#Cm=TwN9);*J7~&5VJ!OKW3`$AHCz- +!%uJ$`y1^K~-#r{{y54G`Tgq$|sNC9@@qZm2kw8h$z-#yNc@>i=rk~l@d6W^g=I|xUvWy`GqBg+qEA( +h-%lfpwC(YPpLfJYR?-?Np3_vHk~8O9KQH0000800Wn#Tmg)8ZR!I60Kp9a03QGV0B~t=F +JE?LZe(wAFLG&PXfJGOc4c33Wo~3;axQRr-B(L*<2De!>sJsuNr6^CdlaAr46nNguuTd%=_LpVMH<;$ +(4s)n-nzfOe25bDNV1z_b+ARwd*C6qSdvxG{-5gqd$ +AS&|E!H!aswK2lXBVe*>4KD(U?NcthEbKS3T@jdGWUr?BFz3lkIqrKA%?==Tc|M8y(5t1MM29YV2Rzy +_5CNIhW~ZaI_^1S%09qDS&rN^~l(=mpTZs})0?21a7T55mgo#}kRB$%`|zX|Fy5d-)EPOb1z;f@lanL +98#bksVe&qhzS;I(pSF@(7;h6n%lFR3#Fc7KW({&3arzgD@s7kr+p#b)ZeM5=S-%!PMVuESAcC7>?vi +Un0!<8fEC!s(Dp1@-h1K8QrlKvWb7Gm%ZHcamr-VlUx6$q=iq4ZLv2M!QxnUDol6ap3HfBBCSl2`gwj +*Wg^NZV@9Sc9lKq`g@$1qH}6Z)aI>_RwZ9L0Tcpwwj*dj;q?~Gr +SfvY5dY7B2dfZtVH_32|5Bf9Hj=^C@?FF_R{$kO=zCOx=!hKQxvzGuRC1q9v+LkWWgNy+`D44-{IRk{ +O$H`m!RL{CI8LRo>8;9yD+eQEcW*We*7yzzpW_$s8jlhS9fnv)aUb)vbbQG?!;cNnxr@$VaY*A#^K|r +tSFS+>#nG5Yp2z0kBB9z+jbl-gq_839)1C?+y5V2Z=yHw^bT%fg$C>GFIOF7PO2mBXPm_yhk8Objy?8 +f71?b58LuLL?peL;^LeA3-RilsnjX~cVD_T%vKphJq*cfpxvfHMwxdz|;BsR1=jJy-U0LUUlvH>cEhu +s~ZdvA$^!>J(uLTY!XFmrHRxog!$Z^p800Tmaw`G3mRtUND--VM!X2Ku&R!v +ylabJ2=-re!T%bSAJFVRJLRuD9PXP1A6_TRJ6qKh&-=eLo9HnycbbsQ~^8mqJh;zCyD|3iWN9&gL=yS +vF>qmsAa-O1nzEkkJ&r(Ig9Tywvd1mGm2(L+LzUo+7=BM)5}VYW*3M7@t+I9lwlvOVjFK3D6pu +j}T3s<6QSyExUw_6?6^-{{c`-0|XQR000O81DB*+rhqvvY7PJZv@iew8vp)SwTrAI@P=Am87ckZBnK=Wn=QL+Fa39#Z +p1GOPXz--6^t<@G3f*#~rOz^ZP1ob2^76-D&YY%agkPX9CPG8p@KpoPwCFZpP$t*JM?hY{U +JsSU`iIyjBwX-Q}a3y!l=n^Pq0zTKfNFkdAAOmj^hs}|<|K#_EvZCVB@t2J4JZeZ9fVHpsYRig#A+)7|9D +ql9N$|G{ICJ9OD4%e<+J(4}k8W^U9Az_l0$hiL8;vxa()je(MG07TG@exIk9Ro*MQN9vc*&w%6ZiJls +DcjU$?qV%N?iLFeFeY`wZpNgNelwb($qKTFyrS!*&6}Dum6~Ss;c|X`K94j))Aq+R1eO|x=Bi$M?ojN%30Svyf1-@AXSrL8>!Zud7Tu0EP?ARckU~d?%BW|o`}UmER +hTEhoSgfu?+SfRvUd{1pxOHckWVj30`$SB;=fv5CE-0umxIN6;3W^1AGx9o|0q(WavPnCCh3THu0EK$ +G3r+0ZNqI0MWKOxaw+vghm627K1Z<8dY4*uamsCSfeK`HEQ>nm6U;m#3JMv+=WB*2oAeEPT}j5!VSCS +K1*>AmD?h4xR~*wE$(1#Vf$9w1jaQO4`3Zrnr0H{1cg%T|F9_FqKIjL<}U0!P{uM4xqI9cv_vMHkgo=qqUO-Q?~t`E_bhqBx{- +t+3D3`9f_a6&YfO>P{3#E%X`RC1z9k +6Oii_!~DQ{%oNXmNS;%PMbSxkb|YP0LEy#Jk5nIbvnFjGUI6K +391!S<8NIn>^=0Z@Hsjg%D!z?ihW@5(Ep^K+DSNtjgX{%~xc4*sB$+G8)WRXeBA7Mh$DrRYxC?0!D$x +(eYVF^oGagr9eNG0`bkplwBn6fD|fscL5I4wcA_83{&(H0a%a8Mm%MaIf)BNi6%%S;sIz +M|W8*cdTw-;~TzJq`B^Q-0AyVGlX4(P`VE1dHgbdOG)OG?*dxrDsCSuR79EYW;zg!9~LMmjk(aCB2-G +eBkl#;q4JE5<=+!G`pE^Qbe`89^unQp8Qu-;;L^P@4SlDFVc>f&OkfH$Z0PV%A*kb@%2gk|NEI!?o${ +u|iD?9~5X>t8d`T*@F>z{x|+=&d9J_l!c>6;{b +P^nExI*n4rr!vCi@V@vUM}*rB&iE3tES!Ki^09*lKa*oCLq)RzocaY}_9v3?r+1Y%z1v4;e`J=RYyfw +fCoT1M@y?pDhga?Zc@T>w__&?jBUju7A(z}cB*h*Y4Gyr+4)FlO3=S4)e +C*-PuzEU|k9$F9aG;%(#{(cVJXmGfaUUQJ4zqIOxF3ZEhgzq@xF6}=p?;eL?(T)k8SP{oyEl( +n@qxifFaBs3%4Q9HXy;rn)%F>&pA?IHP;{&~T5{cEr8IBDrVbS^ZO2?<#3iI*4{UH*`KPvS!jsXMtOJ +#riMrTtHdVDpwEsQm!54AJvLu^5qkvye?vxu-V7eFOLv=3>Y)Tt@5mX&J76v15G!(pzMy7->f|%~e)} +#{xdeF=vz@3qc4X0L!b?fSn`pGwtA8;@x=C@I9qnD?RWbySp@kjG>5eZMqT~bhCo7B+9LQOO#L0i)rbM;_kmz^n#R7W`Sb+zJ=}d#MaQYJ^@H*99x +}uAH6Obe=cU`T~2EL3TL};EHiChz>(`9T9$<~a;ydz;U-V_N4p>+Sj38xHkQ}`NRK|T-_#SrU~jTo#q +rQSv_yEdGS*k#oxS*0Uf|bc_t{5AROILUmX}j7A1kyV>I4eN}$fkUMi1n3OONc`2BPYb8HkihJ#I +#wzB8UJA$SStp!4`UdPQ@eUBB30+HY%~Ql3a<0P90K-1TbS~1d$bqax+t3W_RXj%tyw45-CuI@s+I_@ +l1^il$=U@M8VySM*uVh|o(<>QxgMn9&BCob?!L3WPKT1cvSg=VrQ&8)ewZC0t|FfOAeYDC)NaJwr=^r)5q#oN?A<~CfKFAzI{+yTXdn_WhtcskUrvo54 +*{)wqolP#NSo9d6?O-a%O5g(Wpab9IS>)vSm|XsVqUtX4mzmq2jMqp!Ge>Pt&aelukHr#-5EZ%T#-u( +kfMbrOTpa<4uIL^gq>AO%@&YOb!O?7lZemt0R+q_wKJ1HbZZ|BgdOV{4xyhSRT34j0PZsH{<>1pNSp) +m?3LW_+guL%?O+DusMqS6Rq-vP7%O6_*r*X;^^mRe#-L%hPZtyIr8ePz)gL}$Ki>W;+mw`Ddks;*XS( +w>CbGe!eq}$R7ONM=Uw<4euLA(!<(@(KARp=D^t4Z)DGp`bXjt^a5-4Cw2HoN2QP{G)lfW3Ez2ra^$U +0{E009fBjb);=&kf>nSAa;q-a(Hqmhwyy~r=E;A=W{a2zzDuX+os6L(cvMP9{qU +YNfLy`rk>zTH>_&QR6I|kPrD5t`11J0$q)S_S9Lw%b+ct{Rb~_BmB&b+YZunCH4;8KPaaR>IuY#K~0ij1PI-nF}T;%k} +AC>?!oh4|QTPHP8gab%kw*7K&Av1up`42yV#tc$;d+SGi{at^}7A*frqJu~W*NC`snX%1@OpF<*XN>< +msz!Z(9|X#>ko?r|ro)v9HTrr+pE%L%)VtN5+(j15>B2A3`W7^R>^#UA~=lSoLvWVpcmD@Cke#?Pl7> +Ef=+)0^{OF6I{>-T-7SCcGgSi@IiZ=1QY-O00;mBm!w?YQnN=-3IG5DApigx +0001RX>c!Jc4cm4Z*nhkX=7+FZDDe2b#N|ldA%9ia@#icU0;DRI}86j`RTC%iB$+msvEA+it#Tj +{l37zEOHh_okNGt96ANU#cc63z>()Ec{x)`-tgAiC +UF^WJ#^6T+UT{fV*lyX|07g$Cuw^oynqU_v^Z>bqnxG*0<~G9M{agZnk-M!X>_#jYi#fs=2IW0i43hX +moL&T%EnY6cf;4G%r_GmMecG;Hf>&^Zo1V7r}Mx$MWQ_XQ!{H@$d2U#j9W%z-Gu`D*EmG;?0-K^KcXp +y$@%f-~Doa;gYPq-~IS{6Ct*L?ME+OT?fIde|Ug0n&(n$aV3|2uhU>m)Zv&j(MYgLA?9VFOOS3wQb({ +gBA5b@#zHrBi*a?M2nRPJp`v9Zp3llWeNH$CRLL6lz^;1S*)9eO)9%n>D`c8xyk)@)xqyG7fg^}~$3? +0ZB1wQolK5KXi$I+GgiNssFV@}Jmb&5h81u4S#ntd{dz)o7!uG-`$Dqm*}&831a?JU2@F{$BPnCx0&xeKgwJF`k-0h-&3qPD&bWOKD6wJ_f%D-TZ64LOqyHr=1giMS|_|>>;ucnITBo32AEl +Vs0#$gD6wt*SHX+zJ1;$ABSz;22D^yA?$o|KLTC1XkcLy)K{w;S2;)nDQG +fvLZ!UjK(azFV=aUuoP@$P2wcST}n5yMvNluU^G;H3j&ic0*RkGF~&~%-DWCJTSClM+(FVZSj$P;SsP +p0rQ~>}iA(fd){&p9!uYQaLh)nZ-~vqx-KC4qGib`F(X+w!pd4AybHxjntG(jWDN%esu|Wax$6W@ENQ +ao?)JfiH%s12gY!qYG!ny2mp<1Zgq{fvws*>HG-`YePhRZ{qcaaQH-KLUL-KN +!n$6VGiKpji5c10}KOvxB4%Ea_{*+pWO%at|zwY;k;7=Wr(7~6_T3cG56+}Z9?vlr@&C#%~Jn87PGR< +F=XqtveuJ3?!~R1(QeU^4k?E#DE8M~_PQXxc9Kb(#t0P4Un7gT`mf}v$jSsHw7(}c(7B>!4<`m-W35$ +>#dC;{dI(`~VrlW@9O^$S*}%-p6q@XJY9ZG-lwBZ%THB%2YK{bO2)3Fu)C?T>DHI_%!$TMI1f)!l06h +07R5$30TLhVDJ40B*(O7)M=2by|0F9;;dJAg17c@+f5pL8I?FJbW^xi0KTgq71a*?(rnC#AX#@)Txqk +5aQ1#_>$;!$oh?GQ2%5@IWZdT3QUaTFa;D3VGk5)G0&dZ6Ve^ta#Oa5cq+Sh2u(Q&tt%6-pWW#)DW{u +VkM6h0>FcMcvA%4?viaAf1kBn6~=>s`r2yPfcyb{>H+HV8xJuN~R3~oMkO6<|aW1#74lDL$1Y_yo3LC +i*wf?!a)fg%(5rlfXQ*~vg~w-Ux8_yJgMShR4%hSRhSs-=EW9aLEe|D`%w4^H!0{Bs#ve^rUH6(bq85 +hrM{&GD3LD%x71`*U3iL|v^pcE_o{;NF_6$dp`)!X6yrzythN*~mgr`lL~i>u48E8ZN!MK=-%ihGv4} +~&gT??v|HsI6*?T5FKr@Q19GHvxc-4128wy^GQ{FICuwL=7gbHxTSw~K+m#7UR=mKId#CUWY4)zw`jk +z9wH?XXoKIP?XkzrXai$zpcP1Ah}9XAb_IVc+3=TOto8-^=4QHfuUrx6x~$~WfPInMTEI6&Q3c{Ya`Z +Vo5y_ZEBSbb;*n#UZq&-tN0yPm@{*v~bc;;2ny!!-UoSTvbiypu>l-BU|a;9|Xl`;mvz(i{}rhQug7; +=K==Zu0eTde?5w{R2pYr?&D>#Wv2yHZ}6-@&`sRIUJhM}?2@gXw9DUDuzyscA2AL5PgNS9P6su4BPm8 +GSwcZ4vA<1+hrGO%dq1*Xd%X(j7~U|mPK$luj4ocEI%;L^viiH#h?e}G)-Vx}&!s +b%l#WRnva2VKOb*@s8T3h=9CspoJU{UG?qcU~=Vo+w_bAx|>9Ku|MixFmUh+A}zWs&an@nK>?vlDs3M +0HNQ^!LOpT8M?_$)l`Zm}j~Y(4Z0epf$Yxqdj{lCbqp@j#f-N-rOWog1GgB|WEq81erDCQ-Mghb%e*~QPle#OzZpFrbUrPB{8&r9*|vd+`^6c@bEf>_BVe$q2g@oZ`UXD%3iFP*-DK +XKN8>E=^`EA+X57X+Xn48O&v2Fxb%78Y(roM*-DGYL +9i%B}t+(P$UM_8VQz=n2~6WD)V4aqMu@+LS2fJ +?!(dUvU-}sM3SXG$vd&VvIe-=4@6aWAK2mk|@q+I{37zAtu006lZ000{R003}la4%nWWo~3|axZdeV`wjJWn +pu5a%C=XdCgc`Z`(E$e%G(y^dteQk-mC$u)xc@U}!qD8HOP+6h@+KuDW<6y)+xP-@d~;DalUOuD}cg5 +h=B%0;l4&4{-~ZGXf1 +XeWwb}t4l`VV{dkTT=ua7`krI;|0}7)0#FkLZvdBw_QLXeW0>@Z?jERy234eO`3$1MQ7~GT7{ +4LAgXLOiNfO&Y}axX(Cgn;gA3m+;ywhR16nP)(bLFzIS^Ps9Tuy)%t6lh($GDu0ZK1M885U +D&fP%u*juoB;j6I^5Dfh?gP_JeE%6>HJIZ8HR}K<(lh-_28@3oRsK%h0YR(_)f{mJq!5@m@mv +FG8u@v*A)W)+?p-_&sdHQwE2!v%+rXjw&D9F$~~2BDDek#_aPv_jZ1uVpp0M%G8C9Y!y?_Fgp&?>u11 +14?Bnol{F?qFf76BYPIl2zF^yth1Cg}P$FL<8^$%^Dr(2%Py6VaJcJuI2S3R}a~7AbvSdoSys-WYHz& +5%G+)lv=l|Z;CjR~(w$`GpYy@j7J{9{@Psq)qo`4R}?K20eeE}Gy@rUhaw_uTW^fZ={iPP)*Ed(w>sf<}LLC*`}lLk%qY!4+rpEotzf6wVNs9r)*q-@BD`Nr&xF^HfPIcMeatyRX-ol6pLAbVKU(W@ +G@gt5|qu3F0qh)|%&c`5LRFuUQ0LlwH&Y8&qKf(ZHNK{Th5WJJTgGk4elaZc!AYNP#!gIKkdrNfHsA6 +Ean1Gr!-_t2HO&@7tfgze<##dEF&4_k{wVh;Uj`cFlXJF}*VCC%U_QGrlPQF4fmm}Lx3Osayvnbmrx6 +aSPdjl6NAA>nZu54s2^kxaCv*>V4Aj>`baM-WBCURMz9o_C)_!Fz|aLY*q5$0^b*iX#W2I$X{aV*8u!fUcqN?s_u`Z?EbTVLmz-p&!$PKs?S_b&l1Xep7lTE7$Q_HT6) +F{?x0ehq?itvb96IR5pS?eIR|s{`wlF6NnVcOqQP#wo+I%UzpORimM4e8v`ZM9Z-grty<|QE0aXFMjN +hP05yvwc$ZAHVI9uWefYQ?_smU^9P5~~-BNXxhvCrHsG;(uzsUy-O%sUw=V$cJ&+eOnY$&@D`t +dfl#RdT0_Cz|g8yE?Tq;{}XYtq;L>z+0qIV3THf{C{Dchbj(Hl9-dX)|iZfs7|pT2`%i0u0VA;I00k< +M%im@kM<^J}G(O*p{n23v5dxg%su{WLLY28_Mn{Yk8Fl1S`-7^0@L}4YRX6w;ynd=Tp6uROW`J=gK6o +Vk}zn4^T@31QY-O00;mBm!w?(XHTTo1pojn6951k0001RX>c!Jc4cm4Z*nhkX=7+FaA9O*X>MmOaCxm +*+iu)85PjEIOx1@-3B5>zJgHqHf#Wv4I1OT_Md2C(y-V$~ktmhoIyMaddxsZ^q*iORMHYr3-p<_4%uu +Ri+km?3xYz)1x>hQ<_~ZR)dGhx3~ew*MlT^PuFX7;2VzndTjwLt$!}LP|joe@hW&GFgM}<~`WgC;t{70+?!+3tB!6^q7VyLzwAo*sCyRKWM+J*o{OKV +msoRA3JdtCiHqjzx4&@XJoE6&#NnX4^)LjWyAz?a&^Y=g%jJ2^kM2In5aM%gLXD@kmqFDi<5kcw8Y)WfsePOG0?w{0Ckp4x>0506${0llHTHje(x*J>MMU&x*FDU!j)Y +0WAqOD?!7OP_T;t1B`Sy#mrWd?^V-gv)#UPLbf*a{}%!_XnPm*oOt|`4G=qe~^hk3ef(*Wo?p6>mpKr +5pZr9m=JF=Y_Z!dWz6%y8#6G(S=#5Fz~uRqp{aR{V@a^IhQv!QfJ>*jb^9xmt_@S$c0I;{qmGzrtGXw +T`y9!9!|Fm4Gl!$&(d(&q0S5Steqtj%xabuXnD|Hoi;Y>~B)aV1Punk&y837Ig-q*Pz`I>@jeFZF$N{ +a^o-!Yp+DS3d$C+Bd>oM&I+ZLhqNkCr>GnPiLBhlVjdU6^qv835REx)IA&s;fsg%T8BO#Cz;jelR&`r5!S3vYE^P92EUB7CqM~T(Tch;Ls5-Qc~VC_>E#OJe9JQS(WNeGHE1|{k`K7 +!y9yjZ{dDW_5n8hhKV!}YqVsY#2T$@iXj%3$zsa!YG7e@KdFIV$p`G&_e0TpAosrN4FhY@Fw%BCYg?6mVlE+jneH8{IKiRR55!vvj +!gpP46fWA2~V(Tx^-iTi%0c6}-cKJ=a14`IGZb4GXjHY&*Z47kV`I@!`?3_<$>FE?6IM%7L2cSn?!*W +TNzN@iqT#BhgopWM5?IUJ6j^@Ot3YvE^pilBJNsQy&2*Bp=Cb_G_*hFZ%$yx*1z=Il@*??gM0-^G^nF +GKyblH)MHS<_FQ{RJ3CBxIB2+d*HgJ;*;@lF}@sL>UYIUclJtO^dgG}sTkLoOCAf4%vfkx{P3q3&5Nz +MuPNdU{^MjDfY-}1vaffa-kVShy +^n_8#{_{^fd4P|1VVGnUlHo5rn@blm3?^x0g-pj$oaQFQjZ>7~nc^FX)E7kLlkGi-1RHY?%>^cL0n@2 +zTz>WWvSjhBbk2DZe~qoqT*!Dyl1yi3<9vl%;`V}c`z`L0x!f;PwsealNrMBt(<(*odYykSbZX=s7H2 +}yFpr2p#F@orJ#J!{>{g=W|Asm6Tqu+*FT_(9@6aWAK2mk|@q+AZh6@qgC002A# +000>P003}la4%nWWo~3|axZdeV`wjMVP|D>E^v9BlEH3+Fbsz8c?yeNK-zc!q)uylpC)xXM=2PJ1__G +YRlLofWly${5a_DyvK)|NfA;U+q_(C9bu6Ln2V)twyZybp6I)esk9;zfs3(TUq1DZT=}`z#c8UmIRD( +8kg;^oMog_(iiV#A!HWm~N6O+4)@W|7R!W65p20EEbO4!x+P#Vpsxc~=d@bC!FMq?0|MGg**7_@rU5D +T)k4Xp*!iEujgEMPxh*}xH@YH8@yh*f?qvba2q#MlR~{=2$;BP8Gxh6&s##H#DC0;7GHeCg_bawycyqs6^KUJWV0>=9dPm7fEK6mpE6|CN=`eEpa1EAYZWF_4=Hr)^Pcb> +~ig@ghHm~-K*}8>=v90Fx=L~6Chy959LL=6A{8vpN#xAonL9I8mr$lA2U%`vWk7#bW|G;}Y+Ef&T^G99D%6%Q(`7E)zS(bNwQe@Qh +_72wEky)(+f88~zkd42uYde_{nPEwHxs84FYBUK+$f16rcu4Ni+65qGLhL(bv^<7k@`k%V*V(qRjpzr +mw9Z`MIjoPJNq%2OqNBeHGE1D%?PI*1i^dQxD}`~NFP&KkS-C@F$zpbawRh0TvpO>&a^19$cxNd3-8I +mds&$Xntu-up*zX`tXj;S8YEu755E>h8d0_C19DT)!H#>D5C;KzMM0Z=7m6?T;}r!Xc5MdS;rnaiBcX0I++O0AS-VV;m(@z_f@rw-`R2pn64`jLh* +2s;68Ka)*j%O?BkL;3f#i!~`Fq_6Z5twy)Q+QV>YiNB*j{8-(+Ji|hzg&JVk@RilW +S$Tog%nO!=zcnuIJLyZuF8g?lr`Yv<*(H!B?I&%bxbBHx+S<(LxuCCy_@JQqm<_cCWiz$MBwWYp~5O{B- ++Yv-3IOO4r?FyLO*Z^YRN#1^ohm7VFYB!1f+SpD!sKPim5O_a@@|q2A30mFVvgo-E!c22pL=CvDC<8) +`>>K4uJMgDv64q4%Eo!?2ulVdo%q7{Z8c6OaAs8GJhswv%z+wnBChdG&)i*of{rQBO6-DZ!uQ%H$&|L +3LOHl7SN +tMCO#Ke-X_V0No17C25A%eZ-4__uMW=YVD{Q2Vx+y#%zEqF6O4&Vqmc`8$YQ3cI^WLjR+Nd*YwrG1>q +rF7PJ7d~a$BGHJ4wh5hw-qj31Jrc4-O{|8V@0|XQR000O81DB*+%UGc|M+yJ{l`8-M82|tPaA|NaUv_ +0~WN&gWa%p2|FK}UQWo#~RdF@(XliRitf7ho#*@u!gt;8NbX-ZFQ-!(~F+ZpFFosN6MP!e=POpzQC%H +5^Y@7`VfA+R8Lr@MNl4=o=g5?CyD7r$LBmfZF2fyvuWG*?U;_pA4mv6s2fBTp3-+!C451kZkQ +`L*b4r!NFEv_0%`x+nKak+1|rhDDq*v^k1etLg)ewMR0?TzW(@VXvsKR%Q-Z%p4W$L?10-uC`kKfV(; +!crV~H5_|xDcZoN +l>%WWJjvE@uZ^qFVaG$GRMX(S%YTwm@!DWmCGPI8STm6{Z8@&)i&OVMRB2WALkq^gOE*6VTT@3?h*YG +;^jhN}Vk|cS}>{QNLOztbmwtaOyu!^nQ9@<&ex5sA7gdA{$1TzfFh2nC4QysdRYnFJudiBb3U3R@_WU +3`dzJpb6bN08kueZNTvP_SE-CqrEuqQ@JwaZp4Ds8*|g>U3?fvAFpIb;f#c6hcE)!Vm=#90ILFdp+D$BlM5(Qpe6mY@nX}fkflRjBkZ;A% +)zvKr(>AO_JFz{lKoUCP`?lf1Or>_e)N?#Ck!n})MGbKTWtnWCkN1gVI~>;!)L|SEQDfJ(@@_Tk=m%+ +H2i>bowd1A2!n$p1!tYEB3OU%j*;jqFfuVzeN89{CT6I|4uxrt5TkwRMUsao129yVZs$UDaXHWWSfR- +nqEII@c>7qY+y7C*a$~Gd*_d7+YFsKc8Eo!i=?77_Rk9Ed~e^QV&{lHi+L~5! +5JY2WfA;LpUAEQkav7b^*h6m+=uTUur`F=wrEO!E!XP(24JpIHEjt9!-8XOJxKPsSsyoK&mN$wGw{{N +c^vkvVFGYl0=d{7gu|E(j12L5tGH=&<2rw5}{7wOvBj;%uR&ynB)3P8SB`wV%Q6v=({=f-IdEca4O|0dDQ#vrc|!t$%BBOh@- +K7AC7f(7*_d;f3LX;DQqBkXdLv&@L0{3IhY$X@gT?mp>RgMxw$kx +sDj$s9g1+&kxvuAq4g?7d6d+{m`qx!%BG2h%Q8 +=v@pqFb6St>>Grg!ytuTPTFBHXoFhMLj6WM^giA?6Vwgq@_Dt$g<|?99e3oL&j8B8SHy`K75K>iho4N*vm`HByX0^$ +nt=L_0siS=AvPnlBWRUv*>D*wS+VQZ-B~{TFdU>dBN}6`!WgS$H6@y+`pF*j75KTH^lzT%n&jOKL$|M +(7oiPy~g^+5b4zgr*xwQEbZH|VFwab^CL}-O4%yI(}SvY=`#``{-{Ds#0bi!>^;~|m;X(e53M{|RosZtK#{nv ++97vsHWlC}Kr&wZX2XY}93Z@Kdv0UT#`h|z3*=eoSE@@RB)XoePyEKysgt{*S+)rI`XWs^3xjZ0z@Aj +|ogX;;%LH<@!NLKNA0UcN_g`P$e6}}rsCYueGai!74>cQFL2EDJ1#z}Wl6Ze?OD9G!N4&Th&_e3G?=A +CJU$GZoz-GiMIM4mocz~HxBJwjeLH6IW_YeUhUjKo?9tNYk4fmy$w%Ic#MnMU~#2d9cm9$>f#4C4AcY7O<%nRS?iusw6*>nq=9vr(Z#8NF!I?f-Y) +0jkv!|@Qwo3uJ(HO#M#!3JYzaV;ca0nPmJ)Ut&0v%)jViAzH*jXBZ8GLs|;mCqSGrrzk>UuCcGxcYrybd&@c&BY218<|1a^a$_~>N}6PTz}6)>pR!c)cYW;2t +mAF8wru<1(8QXc|{ZjG0ShDd9Ap*_mHXyTUsClmc}C`C}b(b*$_jlK?xlsDNk7ea0Yey!x7hf-UuQrZ +9_#q?g$Vf;pKqdP2z-bhL%g*o--`!W10;l{3Wf;ov@}Dd8Cmf=QpO0XWUUV#j-1F985CftUN)c1k+U1UQZ|QT3yeJ88lBrjkS}rr?+nE7~vr)HR+fsM5u2W%d) +8s09%u5XUs6#)BpwmY#k1>CIoybNhPNBZ`0Pso +8W2(fCc`sATYQV(`khNYFc%`W<8NZna3R_d;^~R%~4#gV)c65is@6 +aWAK2mk|@q+Brb4CHMe001YB000^Q003}la4%nWWo~3|axZdeV`wjMa%FUMc`k5y?LBLg+_sV5=U2eg +2Xo@lM6cXAn~dvZS#gxuvPx1ab+y@|IWwGHN*r=Ra&I6wnv0F8d30ha4 +c)AnM%Evvq)yHP2BFPf?<7Jb>+q-Eaciz@HB!X!a~4M6Fijmc<>OJlt^1;#h`)73`(3%{<=YQs2XD(_m2azlNy*FNpW8y#!*CQn+7q!Vi)sn~mR)92WjWOmU8d}K9$ +?WoP1V`ls$8fB``yMi^<%!-l=bC{wt2sM4H*Um5;aUZ67anK-xp7_Cx3qWSfbT ++j4O=#d*~|c?k(G;rGj;0|ZB-zTKTsC3<@Mz7=^VGJMI_&2n26BLc{-@{UqFF%$5PuPFzch@_k+<5BT +`QEYngj4FKEwoQ8`#2v9|^UHO9Ch7(V=Uvf;mHsKOxLX{rdicA8=Z~s8BBYxGdJ +bptvYz|bQGV}Su9fx`;XF%mIipmlU{>ZALR(V(DyH!lNI2b?PkY-{vv<=SiUdoiT +)L|ye{%?+ZKi<<wfjcdqe22;e9kJS1v)yX;dAN1Ll%1k*Um>_z9BaI-Ab=g^R*w{AJtqyD0b}*(`c<)))LB-N5EHN4ZGi~+jRE%-+pbtnB#%%axL#mN#R +5nYs9s{F`bPiW0cLx7NqoE(eFLCX(_;@y6jH!pJAt(**e7|vxI$oHt7Uj$NW#J>M81pDwZrAHwhUhJOls~|PfDp@?j=-cpQa4P^LbMjA=NMdrS(jKM`23JDao1U^ru%OeJ27rIK7T-jdz5~23cM&E6|6C$gg +QxDJ~0rfxeYBFj=6+EL+2RW%cDDs3nlu-l~fC8z8O>7^;sBEo@R;&!Mdel~E$|j;M=b2^2!42yA= +P7NE|8Mpm|qZIx@)YLCLBhM1{Ys^+}9&Uc;Y-j*AIx-qDiH9(*mq4l=b6ao?55@K>zC7GcB?($Uu!dA +1Nl(Hkr-54vNOk7G>Qy>RuxpPV(mMY(%Fw=h1v4kUaN2N^{`39#?3o1yfxMWaE3Q`X9BFFc%P#xs+=9fH9$&(s!7dfTJ?x2rwn~S+Q)c6mmE?Waa5?fs!D$qiH +Ag@6%sH(&*ZR)d<$wL*b@t+Qs7~NxTv;kKm%2_2P$JxyG%=zRNMceQ3!(0`$Wr5qfNKs=bsUgpMOU23 ++k-6teSaV87{6JTpi{kq}9jtq=EXW$H1Mu3#W0NC)Skd)~x5)){gVcYQ_O{>w8+G1Rywa-~lVB8u%AE +Md#K|!)~i~NJXSrb*yFyM#i0xuzPE@^d(Z5GpEKM^Y`U?yA~=RP*s*o0jB-DfJF?-^n4DCsmyVn^j +HlN!O(+1n+0mwcO(|AB8m*#F>I_&dOLP7v%K7O@pZ_jAg-|M2v}Tm8-JQUN0q(P;WC1Fj|Bwt +1oM;T>Wwn_8d%ajZ8DeeNhEKQFtaKQ#nTu+FfPdUPM*ch^~sy9t|?C8Gg9lN<@4}cQviYwKsf@)L{wR +Q}tMUPS9mF_>uao20u!t#peXQHXQG92sog`j)$pD67YU<3so=BY-hAs%MA&0FzNg%&~4#TtWv_BLx$X +FG1d9&aONy&Sr`b*79dvhOezv!PJ@mMoC=hV9)*$OINySH`6rz^vO<|WyhzI?Gj%}6XF*@qWw&rw-G- +K%QHszk7&!o>US|uK&MZs2qFPOa$C=>YvtR;Y`62LB)gPq(eD!{- +_xw|1r(Y*b>hjOhySM;4f;-Xc-#nmXe4Bt4XuA3?ye3bmmd{m@Qwu+$=a-LFWlJ`dezBtQ@yuFq7mWQ +hc6o8jg)Q@K|DLeL0}}gR#nOg3j)dMGXP9*(Oq4GPrQGyH&c`Og&cV;rpJczbnY~DVE17%{Lpc%HgGz +TY!!h=WU?wQ{@z)cjdo|P=$PM)UR#>(@a}7vVdFVBU|4axs54OcR!QYs&bTN;$p76!bciH?%wDg^XKG +7>L$Bx^Zh2#cTznU*G;<=2#to(ucpwirqD;3Lg*3r#dW!a4nZ}5@S@;z3uzKHQRH +n^`b^*+CrVWO$#WR#!ZXTczHGfY*KGUEw#R@Kv4&bpbct!0;Xa~GVvM0IE9%JQnJ?yzu$WB*yj5aMK!KA5DB7#%p)DS)^|3QnO_|-&$BmF&S2dn2hU43;0IN+vc)?eQq*$eI5gO( +DUXlgJJZLZ1rg0o5biZRyJZ9liH~z?o5-3o6W`R%n`Psd}QhdmE|&V#%aX`JBmyckX!OdYSCbBVJ(_w +ntr0lD;YC$X~zX+f@8+WCj?R~dd4Ux1d_~kW@*L+VT^Ld$i=URc-u@-i{CTLsAimOI7cD5XR$7 +F;~Ce?uCr+>W-GDem+)w-#1f*^>~KT?A@zeaWk*nQa&;AQ94cbrGlj&|q=>tGMBHMGB4<9qh7BnD#GC +ODP8lZNq=#_QB5|kP+h?+-h&T2A-V+-{G9G3WgEvLlmgRLCI&L)tJ08@PVkJ=uHS+6n#i66TXErVL@0^zvXlY4MjZ%gmgmk6`n_v;uGF2~^CB_TqRk`qB#*uz&cY@2mP=P@|q#o70Ta;zi)RpIua7T^(nxYk&IhBU} +4i=H_0YwzajAWn(7H`X)5Nq7LM0<(h;-b967(~H*v@(HDo6px&H0!71Yb+l2^RTu5WJZQlrkJm;)FLxsh&h3{b2KPAbe8CdK|Dc_8m*fJ+hg +eM1l8~hq8quJPVq(hkBTu;nAqO05?=R>s(h-WzgGF8Z`$1#?d?R|+%Ptg+>Y6=lWMs&MTfil&uzgw3O +~<}=pF7jsHR~?VJ-*5kJ3c8aSjVHxftVLnJ`Yq@qw}hSg$W8LN+wJaT^Xs2g@D+9U2Wfd16N+q2Dst` +pDT{$uf3gP>NvaEzO7>gMDyg3iZgoefjvw(^qG7nnT5F=p!KKgwrI7&jsqsH-uEvO|z%nE^b?jdSh_`3~lgT?^6HOPYvWu3N)PaA_FF1lfoB%(7n(d2&i3$%2;Zp=9{4KD5iYZoZEnz +kY!$-kQm&A2D%AWl6{Pp8!&!4`01vD$8x)s?^-xfRM`=ji~$1h$yd;Yx(o5~YjjKC)We)fczUhZX=Nx +6k<=(N)y>wJeHT(UT*ee<2`%=V60SY{UN%Tl-#>y4FNAO=%@zCs-s;o1676jhQaT}Y~=i3=Jz`!ZJQj +@BgAX*QWP8vTzw`zCh^o&!5#I|DWRl+gwhh2FPCF@-^=amo8;T`sWQ+`8VT#>EAbNm!l7zXFAWcExsDVmyE+{g7t6Ad+mZamRaq_DqGs+2T%G3$j#YA@y+NkaU9rhq7#!O +{kSc1S`Z+M6R?Wr3g<0Rc1=c|}2ob41&3A6)j+&kCRgAHaMM$Nh=tG<|Km36dI5Q;?P22(4mv1@|RL` +b%r~(UOeP@*}uLpWKO2dZ?H| +lyvyJ(UGxx>4ZIP=sBF4Y4A6v2{!k3db09FCJLLThah)V4w>g>(}EVrxCH+V@U2u>!l47Rb$&iKI65D +Jxx +aSj8O~780BxTZaZ+e4PrvnwfL7DS-#>9|!y!KGOjeIf2Dqq74_3eh6T~DoTWi1%7hd2Sl=R!6eD_O;a +kS;q)pnTTLw7MB@7AW?h_6{iPT!CNsD+kl3R%JG#k);>QXgm}f +YuZ3oWgK2?NM#%s91d>c%yjB2asNW0u8>F>jf{hCQW+4@BX@Z!wd)_XUZ0>>hYl$@cF~0j1!8J5%^uU +6bxlMTaXam3tE&`C3F0LJ)$|2Lw)kqbp5(CYh;~is{{v +RurfB<};bF|^GVF3dww6rzc{Z1$#;SSXyADeyRF`PgGH5&(@6nywCTS-t}yW}~&~!UqR+M+ +flTqei>5GcpE(HxiEWXpyEvKi@;s +yWRyATCGx9@wT;ZRE?z-Tr0WqU3q2wJ#F3$m2&y1%)2IO)m~YAbXL_W=DI^_$P}@7b{_sZjA&EK643Z +%P4#f=r7%9&?x-T?cQilycuxXKQTk>J{om=}6bZfd}_@0|jouOQsb;c8qRN%E&AT(WWjxJi~ua_ZMWFsal9*iO$SwXg*QOd +C_A<_Ud2*N4XN4KEVdYiy+8Vr4m&#Th{$U?jH&FNzj97!s5^Y>cr +KfgOKWv^#qRhPaDpUXxXiiyK-Xr0F&;cmcz^my(eq?`sEE`x`jNE06E0c{Ex2f;DxxSCU}g=73_S_(K +@s_*u`*s@OW_@P4h()6k<7=2Fdt|-zS@a2h&iAorj +Gvu3D^eJIYi|&!wY)knFR8sc>WX30E{r|8+I>|=EJ^U25!#*k!~`JZeOMIU5_IS6^zG08C1q_Pf7XOyeLWEmnUfgMr&pZ-i;N+2d~YcA()|XgkR@p7V_eY_V%kA +Q{i5j>#*HO?Rqxc-uX-yuS6-_Q*lvD|A=pQ2~ymkpMhS-fbTbfNvjJ=;&=x`4}HnXWp{=*Git6y+qlw +$uRVpcBQAum@t5A=0D63%Gffz`U$wjIvLvgo0yVj0t~5W&=LI?a;lbefD^G%(Bpx1#lJc&-6M8-KLlM~ +)UYb2+Fl%PboE8#pCo>Nh+**wkdU{%B)22f>n>H_I4|9WC$mpjl#}AQ&5Rap4XU@rssibFdZ09CyKj2 +S_cr<8C_i6T-p;I5N5(4(|ei39Ae+b5kpf6cijR0d*U|nJl`0lL-YR=!EfO()dWj#9|T!qOfyUtmT1?MOz^Np5MC&fQEMnO)*P$0XJObZwm?^pz9|2b*wQ)2P$fQU0gNggNKi@>*earb@is`@dx} +5znk(+w_L5)_4`fv==TqX;zx&7+Bizg=ZKGug^&jUnX2brN$Yq>@lhL@UJFME3@EraA|o1VF>t!n!yX +Sk$ZPj(h3S526jn?(*YR!!tqg9jbFq?2F6>MCOS&n|F;-lBkuD@uqAn}+ssJWLj{L4qV_c6R>Zuv>x* +)o=PmhzjbO_!sIm_IW-Dtl?S)Oq%&hVB~KbNdXT-X|HDpN)=QV7JrAiq?jGQ6~vC({>Mph?`=uHS+H` +z9H_(%}QD=e4I${WwznaMh>wY%eFb-bKILBI4`h4|6Qdl5Y+HtBIZIm;K=6SVE0xKbY~e&60iCe(c;G +KY-4}o-%&p&pv+fL9rfOrN&tQEiUW(k>p(*wIA&(j#}EBXQ&puESxz{Y}DHrQAaBR_M^GGpp +_VA`Y-;eYu@tHen#%NePVwkQ#kvuc~xVbr_bp$H`lEZ#oi72yAUu(c^9_-`*dG)>UPDL0;$ty7y2ychouVzsd*4@Lp@=&*sbeWWo(FrhL(jl6wE9&l2Uy) +7M>d#lcI+x%eA(_-z?@o6Py~ENi@sB*E_D;r_!m$;)Bqf(gsC_Uzr=rA8hG#{n69Hp}ysjnQ+RpHzT+&e}ShYto&Nvse^&Bd6h|_)m% +Z#wg(=8`AwniFGhrUR2GPgLw3CiJ*V-I)4GmI1Y@?D{!X%i1meaL$OFo>k<%c_$14`Zebe3p6xZbOsH +yO*DK!m#|0l`er-@{n~KXHOsK>pdCylRa;rlCv4sb;zF(E=Z;WlHW_}RxZ;bI?Fq{ePE2oS=PhK-zQM +4PIGE~cE-T75A%hCM}fmVTNCgjx2EwMNf!RN4P5zs1*e{Y`C>cZE_@Vv4(#FW=rGH2Ab89$4**s7=m4 +3>^WWzhmkV_~+3V%U={YuR8o0>~!{atkb5slhqGE6V`GSQAnAD>&V8K3PrVz(lK9!4|!kpM-9Ary_(Y +iibAFg7Cyj^F+i&zv<0EA5w6kUS!9<41?>@GhZq@Uq68(vB<6dZvjvc?R55Che0b4Yb#L4kuCw +8O2?XJ}KK=APGxl}AoPW1=}fjW==r0>+5kV64JDw*DvD0*SMIy>KAu6f<1S_RJ@M4>g$a*|Q0X!z8_f +Y|20FRNLy=T+76hCfgi_@Mc+7^;xI+7o4lXQI>YT;Q{-P2D8ROkpf~we09UwiLDB+T_LVVr#DYEqoq1 +We}_CNC)p>#DW4CNQSKQWCJ%A)+}Lpq>U`8QVkDUYDqxR}aE%y}meBNNYr-Cj9R(#R$~?HVEetgOjg1 +la&s0;!@D;iLZl88C5yMH6ypSJ6**PJ@^PQ?feOR_{>`ldVd2-qNM;U2IPK$K6LC(&&hB4gV6KBUv4Ggs6%{2-7Q<{wig4I4xD%fzkbckDW6mvbus_Xv%*F1aSazsWK1?Ty$sHmoCCaaVcj +U7ryr#_nHGVXwTjS6w>STROLkM!(fD;!XPJ?TM+g?W{M|^GKKY|B$pYan8)U_kN;jpdgcA`R^KRDt;C?ET64qQOL$k! +os%!R((T!uB+k08-Tx&3(Cb8}8xf69&*_CLWE`wZIP)xHNlcyz=^jt+j<=;)6z9r4v8bJ4f^WmA0E<= +kDf>gC1WmIdOOO%z~iTLE?aM1QP3p-*pZ+Wc~zpW!lFU_0u2fwVF3ZHpHky>ud4)LqUpu04JR8=w2)x +9oBoe3V2;=$P*{ZbRVbX_b(rJIufop<`|Gi(>fYvL!_eag<*5&EoA}ivl74R+oKh!MGfTL=tuk?QYSQ +GTh$D05ZbMQ($;=>u|<%XqQd9b3u^@71y0QN`&!A>HwB7--0LiI$oP0GtQG$(~#8qolL-$u5Wq8hw{( +FxjT05>?eONs;UuxZ`x}4g|{DopM|{t;GvuN@WI3BgNNQHnIA#wgGbYQZtBhNCgQ&);=d;%y+08TCgR +~lJOab<>st%QA{LW*-U7Pp!cgHcW`zY`2gf6D)U>_}c8CAu=tf8Kqg-ge!vR9kDeM?`@{Ll281nl1Q_g=Xe)Omt?j`=$O7u53w&M*E3xE60B_#(N8vb#ibC+L`EQ~E=Cw`R4e6{!5rDJF$qPmFw +kaqs6Uk=E)!dYL!$02NpPxVc`VYVR!-I#vUu#YgL6F +)?G3x6708mQ<1QY-O00;mBm!w=sZsN5RF8~1e>i_^80001RX>c!Jc4cm4Z*nhkX=7+FaB^>Fa%FRKE^ +vA6eQR?YN0Q)o{)!$rF4WL~5NXfu2gbr{S@LK(W7!IcGmbe118f2fvQ3~H?rw;}Dzp*zEAD^XMQp@=- +TNo^OD-Sv$a*v$66KlMBf=KDyQ;EYSy`D`nOU>CS|sD~Y}Kynd^}Ey#j>i~BrD6R&Dx?Wn}Y-Ot*G=< +yIvOMwSK$H>Jna?gBilgt|l7D({G;*;Js<)Aud>PQ8GJSA0#166!0+rYuf7{U`(d|k?O8UTXIJxFy;WtKziVG+W +po_CtP$ec+cLmpBVL>lrjbw@;L? ++41SmnQGskN+>!w=mVC{+>W16`WMj0GP%l=I$zFV^rp#O0rPwr8N4_7e0G@>W%6nbs9Gjp4Udn1OF%^ +CF|;l(8;QDD4l7#L+4UkjNy-Wk{B2$z@C*%gzF9HPo8n&q6Rz`iJOK#RT+QN8z3Hsa_;rxHsH@d-ko; +lQw8d=wlGYI5NnTEQ&@CbiZ;I=iIs6Z!uEG3^{iHJeyjreBhClG@%i>+3R>5#yyfw}E9-h_bWnEp@dD +D!qGE@4M`u1(6!8b5Or3L?nUv*-;wmp1Di@ZGpBBGZCWYv%7=NCYG=2g~S92^{sPa%mBVrYPkPkRH6y=I*O +&;z1e$rxAfEwAmA|MVG0d%fOMMH7;?N`ST$)wGyE&Ff^fL@Jl);U7ZY11dDlXF#`$vS`QSv;h +$=@_)Ag`pT1Q}}2Gg@KN_q7&|xY771lnwfCusD5-aD7ZKf{NyG(bwDQP-OW0!N*rn;f@%N2O`KED#QF&EA2iVC5)YNP5Z$`GP3 +sQ_%s>X33>N)fv^@GB}$k;Z;ky4FtDyL3VIdVHT0OCJ`VmCf|jK_d+d94-@AxTdz)1J2`Xh2ij{yGP) +siZUq=sQA5r|iJIS@MSeG{2l`3^mJEZ+7+DJz@0wipkG}t +06(z391MD2Ka<|;G1~~(m@)N@WoJ(@5YMbWGq%NpEC%^&KFuA>-s`?fw=Wy8LOfB%5vVTlxk)A`FIEz +I+Bv*}PGSxLYG@DS?E$f(uZ!2p8$N$) +OdR%tEeX)pXhqPwY;JLj$|(5a+As_IlivS7%W9XFv^`n|#`tUuRJHmn-OHXJ$%OIb&M}&cg6m&2!PIWC+Ny +B4wT2BnxDbV9I`36?G09G4yN=K(gty;Q5Aq7}`Gp4lKF6BxJq3RJA>=uN%3LxG6~*?^gdL`Exd30Y{G +&+`&}fhR;39Reyk-yR9A?@M19~DJ-S|2qN4<0Q_7eLO+oz($FU*a!$xsm_dZOh3vCzHE$bC(JQiNt5Q +ocrHOXxIm48sTrIAkwNO#h=F7&wONs`ip;V7V--5IRJ}pWY<_|73krn1}<~R4q!j#KDNfEmoxKAM&(moRap=%?Jn@fAJoPxcu^=*T29n%Z(t1X->{Bn75Oy7?P@DYHPGl_yeh3)gJKUg +n%RZcMv4H%WdSohS}X^Gjd|zCs#Iu{R@4lj3>kf5l(Pv~I{bGRUuk%G#p!QOg%jem$f!5vKnpxJB8Eh8vg8u2X<4y)G;t~DpCRm})%5zQzu@*+++0En-zmfAM=hf(HUW4?P*Qrn(8-< +S0+0>MaIY#PfWATB7_M&|R{8o-+n$$ZuIvqNk4sr1Y7((Q$UBxZ_qUs(;zj2bV%10pAyn-dAVFuz-mu +$!dAS*w7gr-QTi9FqoXbnpJ;?>PKrlhHsE4E1RJbAwG&Txme#D7sao`x!Qv>b&uL>iY)wv7Oa4zl3Y8 +dywQYF?1y4s)eqjQer?(7H3LwHau&(FjEbgw_ux1;28Wz5zh6WZSiAAY+AS9^iAdPa1)2-%uG}R<n&uW9h<6*IVeT$SWwzJ@66O{vQ&>Dm@%QMMDI!Lv$@AMi!I&Z +f49Yn>fbpmTsn}U3jt4GUWpsEPL*lD>HM!NwP|>3li+&_36U-2o>9gBRXj!G23Jac2v(B-BSzTxAL9) +mfRlR;&BauNFN +02(ZijI_Z=0K-QDK)9>G6BT&_90Sw$UKji$-+=Pkp^^5c^Mkxp1jv)6wQ8y`ht;y&K)E7AfFG3XLCd4 +gGlg8`}ZiAv(@QidncfyXt<~e!bZ^X?C|p&cdY$YRszHtjT%QPz%R;WTn^*>G87i$BjTS5M91&@cg3! +c}@U;gTaDtw#jWipYOg&P;QTU8DvMXavcGa6(GOG%o5TbmGAigCGOF)(7;0#7m-QbS_#4Fc?__!2S{D +Jfb;R`#Xy??;EUvlS8Xvb+I7NEK>Ak9U4~)}9pR$p;;I4xBGc?MYCN+~IpJhDC&~DL&1N7ZmDg4~zzHC(R#WWS-gDSh3Da5V +=1O!du+F>OJ8018)B{1Ve@0_fNgATamdqDdKwErw<&-mDd{DTgXf3NBiQh)pv)Ft>vIu8Yx- +qF0Qp+C6JO&!DJ#}e&uS%clsl1y;*Vx72bEm*TijV1==Wb+aI5!?KFt!f(JxkPd@Ta}ZO%c2@$t(O*< +Uf7{-2BDf%)oMJ7NQ`qIw4P);=+?Gch%|K6foZHrcbbnNktm?mc)rZJdW`&@Il%3plo|kw*8k>w%sF%R$J +qP`Yw4;-#w`Bc2eJ2NsQ-DHXE1Jh`5E2F&mkuL9mKP`avWSb2Cyrj?d1F)L$`TF=OJ5cEWq;6a(WVE_ +FyA0s~5d=la6fQh286PrrR;Ehg|tUKvX;VZJM-Fq4{A0eLcrrbwW*k62{ytn3!|o$NHEAfvi5qp2g_; +Rjv1>&SmBOOs)*ef4tICQ`w80?bQ(LQy2nm02>!cQ{wBC~i~(5((db@Zc%SZBL-==rb(|(Kc(o!Tq$| +f-!voqn>eB6jdDH6cBH5wJPRQ;s+bfL6czDnXof;h6ZL-QxQ26=td)E0`0WPH@`=1bBDocBMQ#AXRnD +-cxAXZma>QmqNX6{&c))|5ls` +J%L!+qnhVA1`lR0itJJ6#MlJxi;jZ9Vu0>XtyUrKOc8zNWwR|qWxxv>&fIIPq43$~ELGpOV9fS8$Z@X} +?N6f3qqD%l_if<)SE{z(}fZ?qt4-+ZH)Hzp{RlplE?vCh0w +9ET={8QwM}m?;nf25Kv~m0PL^QV^D=Z2eM1Q|Scp~K3Hf+<6cJ8IP)c>w9#>AoB-(9BI-@-Zh_o*1wL +9tUj@!}EHwtkY%z-$2Wr;yJXvxiv%^JF7n7Tz0UU#*C`qK79s%G=DEsaN#f-=O5EaP??z0A +DU%j>PiCar_(S+;DUnj&I=^Wv*kbRR(m*8~!k=3I1IjT@^ZbFB&b!QXYKEl|~V--t`Sw!$xROG0vgmo +a+%+DO@?!*mwhZ*PjtQ8rV3Plbr@h4*8iG?e|;kg8rTD=GT?U0K_$59}$Z*I2EE~*3%v1wV3cY1*>7m&o3R||a +URLpuvLW;mZ;!kf$H{4#0)8gNVU(YyT8Vkw$;yet!$=R4Qw!Pi)NM0-J`4+w+i3Kcf}MBh8-gVhj9Ny +8SpGGs}V^^qDFhyKROybX)8*XqA8 +Z24L6B$PU@gW~^qCFjpY@5#KytBCo4n}$-Ge=M8tivfDy?w{QcXr&$NbjrS^|%b`KD-EP0`Ed-I)nPAHO!Wor +@-SL1JAQfpHw-?0ccPPHCzTjAvrM_y~C43{I91O4J%nG7(L4nP{ea=o{oN=s<>Smhk;P*xJD7*aHH`Qq7DvY;eg$p}TJg%t9F>5`em7mv>9OR4ZJj!@TE;`VX{hq(mUT46VqcL~Kvj^oit2!sQA5Om +hYIrpJ@ZV(UL)(Bcu)Ct3uI9kpid-ywIVbD9SpRY5h`EwdO6qUg?kG^(pBe4^s>wG&{)hl{@o +5)kRG%b9Bj2(gN=IS2C~Y8zTF}3DDczmKm}&A3a=b?XM%^Rnv3VAIMxqtn{8k`vs!B%UIl8}xTd$Tx) +n7M}CuGEb+$1p_Bk}BJ>f{TZO&$MyLz_kPxQ+)Soy?noR+4&W`SG2aw|61j>G`IWMa51Cbwfu9A_nPXq4_^8S(| +OxQORickloF&*P*2{NMWN|Nf7Ew~zl}(*NT>|5xwAEq#1+bR=;>Kj9TFc16(NC)D^TLo(~Vw*^jy$Fm +RbxeFg)!k;wT2Ir$#!9ZFt_5t3Kj?S7mQ&i~f@{8PM)HM)y@1DQ7n!|_=xtk=#TWyucF*T&ESgYb5v~ +YH;KUNDDvmV?g#N^OI7;H2%LV2Rr#iN`t%4Zo6osb_8{<)f0S5F +pM1Ivy-H0^Y_w5L^zqFl8(xge4H0Y+1`8=ctE%s1h5HQoT1T>{Ao~|$M1n}djovij{Al^tS}7UC#%4a;j)08b +rM2E`mT?dRIieY#&GBp{mUvV+oCOU?Q8l5mMZ#;P8;u>jcUU +iJ}7{;Q4;cHipjLfd6*`^vjC%;HLfx-XT#VfP^4s8-C;+n898=ESf?gmW_)8~=p&?@`&1U$K-!>a#yI +@Hr#5@C@hDA&ebf~jP0N$suIBf?nV0Fq$b$X#w|g@@j3>^bkau`R$b#jSXi!C--41Me|J-vynA0}8a; +B|Qwcetu$))VQ_tx0^y#V%M3ZkYn+#fjkLocR(u`6<_T#I_K;|)8mh!by)=QovJ;Cc^^ySu5(t|v5`~Rueu(dW%J2u +u4u*r7$|H4(Z&c3*=wOV>K&oMLEjOo63+my(0RyL7woyD!rT8saoL$nr?QV%KJC)C(B<#EM^59Ye*#> +^KQH;u3;uJ)e_rvQ@A%Ju=RbdeKNlg$zBhG$n0?qJOKH6Igt+)l66P_@~Z8 +pCsT4bfUI)FV^XQ+)QRrvj|;Sr!ZpH?ex)wnvOZAV4?KSz|!*dT`3>(FpVMFQ6P#<>$me_Q2|kL&yE;|x`HGR1z+&E1dI^Nn5L?qEZmUgzHH>YYC-sg_H8~IW*)n*I2Yf +|ZD!K1HS#>%WkLsSV7>)%E`u`BWd#ZZ-7=D#m +Us;}g)W(iX@$S4tiBJf+ev$d0U;XY_DrHDhUg~(0SW1pdF(O!KCDMjpE_j#2>5aWJiYcEWLV@A%4qer +$P8+!dk$>PWI)zAUQYF7!-j@JMLSYVdYvz8e(rZ;6AiE#793@5wPuWgVc>A%R^Mgos^zcWxN5nKHjch +Wuq}Q#?V(#(HDCl@X|1*x&+^w@Wn+7#!E?MA?cAm3b~NlZ)-~^F7%K0&%x_W0h!p?s-+py9Qt2a5}R0L?yTRgFv*{GHN_kl*v9ynBij{Vl^!OadK1<4r~vgU04k4}&|8yN!h{tLRv_h~lD*&VK0E +9UW$i;gJFzgRLpe2BZ(s{l?!SW3BOwU$^7DwNu!U4#=Cj^)hrUMw3&-@escUs-aDC?7@8^dK;x*BtUoIr+ak%35e<$#DHL+T8N>Vd?H^~By>lyHf~c8S@6atj +a_X$Edf!FPNOexd(_r8CP<2JN>B(kVE4tO#{_k4c`;8dh$o3>NT!PG5<*cAh>*8km%foIrxEnmRj)XU +bU4BIk^W6j?$$7JJK%YXr~&7V!&76Ve^@QofV?k@cSX#9v7}IHha~LCxVGpk_?mUK0%|%3sXgalR2V%fxm20cz6kFc3!dpMGB@ +PNCk50rQk05SrUZoq_Pzc_!+M&v#2agNqChCy20a6nVF3V~)!o>&2l%K{`?DU3L1!z^7E(0GB7aewV2SH6+-Np#(*U1rv9}g22DvUK +`@OMyk(J*OH{QXm*2_2{L6Y_If1k_3xmF5?YPM|ik_rD*wW%Xhk>49^T)#@3kar1gaYsZi22!Ero8_5 +K)fPMU()}-Tn(?fdX^=Mwa#U_0Zf81kKFG?zo5)P1h^?hJ>2)i0zD3M61o*&GnpsYTE!!j6o@7H#7Fv1}_^KB(dLO{uhoq0fyE*YCM~G6xuCG`;%sDbyoW5Og~mA$p$UxvFv|)L|i{k=$s)~KQ41zOTC0Vr;3|hXvS_5Tg_~hNG#NJ~5<aZ3Vi;m>|0w6~sMt_Aer)g1X?@@5-yOOSz4sW|TJdc0u +#>p6Y0}uKO~Gx|!lMZBw5>)W7SACO=a^2T^@4Hb_l?Rpb47f^+5xqx582{1?RR#YxASSNou|*;mOeGD +Z28Rm9@=-CuQ#=BA0;>n)GP(uWWaV@<+;$v?%q6LY**1VLnt!q)dopznBJvqG +9Atw4bW_*0~c6e=5wpF9{zFkHsLxyXGJ{4zLJ+a<$g(>cGw5{fy+=$V1h|6}2u1+|8BKJ1J)FZi>lGv +OpJAz_(vkAU3dC2K9#7bXxF`;LTafe1d^OE-z`!FE2O87gfzl(s(!fC&{0Q1hIlLE6Im~dzY)ep>oA( +y&Dcx-xC!o{-S0|&UHs*@2{HJcfr~djo=2VPMamv!Oi@LY)4*mHJYW2UVWBgiC4m2I_*PwgU!<<2nYX +mxqga{^ffHOoV#EhY>kcQOV~{os|B-Vjym-!Z|`Wk0~Dc7Gpw}l55@7e*a#h~0k06y*owX4eGB??3$@ +a^)>S +&=x>{Ou??-Y{_4^eqX8W@hL$rr5Cua`ftC*|8g&x}a*dvv=GN@|g1)yMx-huRC^8zTH&cH`Tpo26unr +@9}+Ykin&)wE5{)ZQAb0i^;pfPdOaXjgFi4A1a&bTIkpzxK)r#*}~SU7i+ZRy4T>l2`=3+9df2qe7IGbf_dQ2Zk8req` +EF+|fIN)-jPD+}^G*OYJTMc4S-;j(M|J>GNU`*n6ZzK;A?pEdvT^5E|BhpF5$m3)78Y$AWHIos>P`G<+@nn)g +2!yT)M-Kc-zJJCOqBi(#S`nIdlU6$@MU3~5!%Y9saE)neWUVv^<^mAW=F3|k*T!elf638j4w@YJ$H8s&vP`r2UAAtL`f8BWA_U-=QZaPy@a +L*1)21R%BSs61Qdc*cy>pH&xEx9W(6zL8#ml*+e|!Bc{Q0csbmu+(`j$omxRLx8shxef*J|1BdMM-9UI~G3U!aPziwVn;K^z{XKjY~5Xv1rTAzZL +*}H>}`!J2<)59b&Pyx6{)?ARIsYo+~$eH`=Rf#InpSWpV!4mK%N90f{smwUgHC}xR-;Q}`#>~BdL{1iFRS$@v$?W3 +m2$MPS#hVZtbWJTQA2eFH?<*}l=hFeRS3~IBSDGq13m8gBBRw{4>UV?hbOw>=1w#;jGq|B~#KHZCvK0>7m0@b0zcpfKb&PM_=L +8{cI&s=BDhas8H0LOHC*7Uwh#Q)V3bzLl=g!bi+vwG1bbl*qK<%<4Q>9EF@T^e%|pn*BF3#NGwl{+Qk +0Y{-g&mI{|yFQ=I_MVLFpc5e!I5@NSoA#BU4&V;sSbOhebQnv|MVX~o3Q<%^93h*r8A3xSXDV~<=PNN +S%r$6zIEPa0bSSJD2?}EK-ss>+}mhz4Eng;cw;!}90&5diEAW<`;T<;$Hd9V4KgPSGfmk2 +X-?+7aSLf$JGZzobPgGj>ALp-CdQmH;cKQ)lz+x*LY$u*Ub?P#kXkU4{}8=-~*Lo|}}!yd(w8J9>87X;I@p+bK%5;)mG{xnDIp4d29l*48~XEpkDo+KFv +&Ov(Ybi9~}m9Y;z5%bLl=%DCUkTUm3mi57!cspA`>YO88CfrdN%``vHZ|*oNTL{@>ZwL;3q;YX%kG-> ++0|YWkkL_|M>_gO*N5YZr=8Qqct=`pRR!g+&M)|>Bp26Q-0iBek7Aj)6d2_txlYjC%5zdXOA;jlksK1 +Vh!?vj?N0d_&kxqp@lS4KLVD^JrLqSCDBOsq7HIotJSAIa93MJY=aHP=noOg|9FU7Il;JNF}=^pl%8x1eJ85-r{tPIDU2zgtEx$MNeT&@`JWd|D93=5z2w(TyPtx)GuK+FCK +H;22oJ)p&}>N#s+-hZ0Jm{1(`2-w!!-#jOYt!QdR6#}Pk{|N5(Ft5^|C=vJ2fV;ECe{{LrYlj}gw0UH +?!xJ?X|xGRVUHnfWk-CV*6&@2K;F(1k#YEx(;rH$Ynvfmk!W}6?Iz08k{<%?#l!UA?VxJAgP>uGOW{n +~s($A^fcrY&TA%Qw2diTtDFMP03y>Enp6KluRKGU{+br*^elcx@WT4Yvm|UsFrr1*F}2)2fb84;I;N& +V+N^no%6m2iq66xNqHFL`(86)(B@a+*Q;aqOSj<>57T>QrkO4eJAOyJ6I#Uqqxez--UIZ+ASB@OyH_9 +&Qe|7S$_4(F+GZ3J<2gno~nkMAXU*#PTp>T6xt;-A<mQ$clB=x2iU1gw#&H`TYkqP0wzm$*N +bg|}DHqO=cGYq|DFtNVsHrLT3?p0BDu2Vn_~Tr^0->$;exkDW0X;PpdvoQM~qANL0;oXJSUI1y)j(&? +5_E8t=U(-jnPM!Rz8$xK(HdoS}!ndJpoXE|9!b>+@k} +w|E#pFi1=58RxFM)nE?qcWob1HC$rE7b8s7GkC%XTaKgAR?0Z}|9$dKL~ox}TyYT0@u4gc)~FB$%pDE +03_JkF*`+UUb!$%*pj9%0SbN$NzB^G?)H(Xp;I!M{QSf{xI9)Q(GY?EdlE85^F@ +)6qEW&n)3f=Y!_G;l^u4j@sz5WVxDiK$o)cj%}!gh&i9E(AmYI_H*cUK2h(oZ4V}t$1NVD)wS}{Hde1 +V`#7$b%=ce@{DIY(LnjP=dr`DPgp{UD;ig2+q`_x1Wnq$O0g$|l +P@DRuiJa-l>Ff461|8Xr*4a7Tjk0aqonTUF+<6k)5DtA +$k5~*DTEz3$zVQYT)duh5TY|N5}zS2)rNEtrB11i%6_j$ZT`k>y=Uqa#FJ{+w7fAd_!*{S@G$ddS+P` +Rcxe6*k%6c(IcG2c~vdPczZ<3uJTfZ0ogfpQ&>+BW^f9WVhk0Wtp79ktAp-#jQg&$3tu$Jn4=tz}UMxvpf;JI2&6@t?1>3Af(ZrL +Ycg&uz=-!cr9{mLk=Vbs+hgNX7u_#!zj!*xy8N2+`BtX_?@~9)sk(xX8-&`IF*8DjtZtxvT118D^{ZW +;MA%v+?r#jDM};~GwTFEBh%L27_{{Tto43qchS^IBL~jb6c%^+c~=)hdeBiC@#$l=bx`N*tzgq=SN`=%8F +rr9CdK$S~|&XSlhY!^~|AA?F3s6tiX`TRO2(VZOsq{79vb6B}jUT3PqbfxWuW*Ph}v>DpkLuBLGyeAx +j3KIG*E^mdX{2*M2@zUlz6&gb*$?&9pGC~qYMx?k6BQ@niSbpsvo<4v+K20u23CZnU_KlHce|5E1v$~ +#`e(8$d^&zE>-#Brc7=Iv~Ve~^zrWd;mI@=r1IepC0nx=x8KYs~HU5B?ueO9KQH0000800Wn#T;lA|u +?PtO0OB7203ZMW0B~t=FJE?LZe(wAFLG&PXfJSbZ)b94b8}x}VR9~Td97LRZsbT2|2|LA_;flu>o}7Y +;ll{8IF3DZ=ref9s8~y`>v_f(rIYAyjs!cc+1_R-cjYr{fmn_cf^wB`YhC&dHY6J +&62bm|9N1AZ6Ephu{o^(SepDU;Xg@+uOIr?KgjVOLFphy;`lRw&a}r!1_I-od3FHv3r(evm)>lMUk`t +CnbpoMVydr$ujbu(;eBK2y3cCrq{BS*!U&ebIAgK#(peY64z~Cf@gc>*<|A!hL3ar40U8YP|5x`v@XH +!9CnlI^*RGXjrjlfeMj*x6N-UecxVKYIdx_PSN##)4tl;oxFPmsuPwXBW;Y&4+;l#pKZw`BN9hiWjC} +ZjihlS&z%vjppPJ)zlni|KNM$7m2aOgOUXB8%y +i|ZjBk;*4}w*hS-GG(mO-o3!Khc{tNCEn{>?Yf=<& ++_5NP3kllRsUNu;5@-cE1S4{t&I4^j1PM?$s{-~87YHEafoi6{l{W;T4{HL?sSnhR&4fTUI7e> +~l%7G*!XAT&bO{j)8>ElZGd^CjrnN+}@jQ{q*v+LQ{3RPLxwXGfA`@0F9pEp?B$3Ob_)8M$xitE+%tF +)nFMQ%4HuJ#L3;GyJ=gB7v;w2A^yYi_E#YdJ{?wB5%jC)mjAG8bHxPZ#ZATE$iLN4EcF_?7?qvOOnQb +)gp!byJg-SIQ_cPs`!TK~bDH!A3U1%+~;Y&;oJ@Kk{k<(?LXg%ulM#i{^d{8iajQ(KPI;b9z-VVrAXs +09w18ZJ(2c{xWCW(dOx5f%rSyK*=tb(~qJL)|{ +d?0+Y$$9u~clfSvabE+k#!f;m +U5ZE?iMvfGsm(k+Q-vpKH#OId7zOsg&dhO3?pOS*w+9~9MXI1!V2z?6 +~Df@Num4`_-k1uez+|wX6^Vg#X|aL6k7|m)=NrNJ;zi9b1iVEX>TsRDNEl`fp^ +%v_pFr84*B%5@vW!H#~yXkcZxrw&{aAM8WV8!_hPYRi=aG~eUp4z*fmH{=zbH8xu>@QfD#LfHJ;$>7o +`(n)5{jxDHC$B&TFSKjKPr`P1f;Gp4um?0|eH7CN7cKVL$Dz}yL$8?f@!Z0RQQmo +|`I`-u@}ItY|0<_r;Lme}c`WZjbWIVj6SUBPVZ<%=2;#BjY(Lv0DwH$}^3RNq(NJbAueE;&!$3B^jG# +Ha=;VNI&2?=yQDV6FflVx3DFaMw>P*zSGPhTQKcuOKFH=Y!q($A-4MV52a}*fXcv-_9Edztwl)U=zH6 +f;hIwz2aRQHs~q(7g3f+kB0`PsUW#O!ztvkZE=cA>=FHrPSiMT=AUZz{8P9U*TzoE +62qhDUCz1LgC&s=uPBobrLs~VX_-dMK&^R%Tc`(+f4&8~ZV9YtI9=F4jesLi{8cV!h`R7QW960?)U)N +kzDBN)AodP=in}mGsZ(owG|GihtHk#`z88Ws7JRy=rZCpt0Fo8AIp-^6$-B2tf5ScdlCb-76iNg!8;8 +IVHDbCOgDONGeVDc!$%XI$A+D^8^xglxkzN}6_)$RI6?(!3qMc=h2d!|D_wYx$O<<5i-`{tvYH`qB_{ +jA{G7X!#k$d#9PJ@hZNpf)<4Iy~icgZ+MNM#m<|V^c5uZ(d7UxSbLPTmPf +1|lW_m|w5g$^q&tS$oN> +5exPAv4B>I_be8ZisX%Rd}n8P;CQ{hh7V_i$L|W%1lzec5t8q~8i|bgQr*DEBZJO6j{eM??pu7z!&^! +Ryl7RoFH4Hvv5EStQe3k7A5cpJ1QY-O00;mBm!w>k#QK5X3jhG0FaQ7=0001RX>c!Jc4cm4Z*nhkX=7 ++FaB^>LaC9zkdF>iqbK5rZ-M<3mJsjC#mE<8Wnp4`;bz4u{B$N1ZbEDBP5DCewDS`u%b~K*+_uIu60T +Pm&I=!c8GLc0r_Inq*3vLA8k#66V^_G;ohKr88toJGTh1E=yc}jjS+b$)qo37+Ftx|HuK6aO{;d|e(_ +f(|h-!-hHgx@kzaax?6Z4l+mVB4}T%X!`Mis=>o%K)5viyfdhD@aNaL}F)WZvdi^f0KowA4kK}C^`Fy +ZD?OjV4TMQbas|kv~7vnc_9QB@x{lSNg0#*8G%m}MfMR{)0PpnXTt?)swl +t#aq@kARUVxN+J9mCuLofIiMpH@Ty(pj<)bzVw#b+w1h|9b=i`;6259=BWG=!8TdHy5!H$_NsiV9!rz +v~ut0XOn{L_cOoF@=+g9<0AH7CmY2Ibq31x{@GA9@QZY_?&Qm_rlva&9_EQ?!KZBhd`x0X!EcQ42*Ub +BH5Le31$h1uew1ZTX~DCK^GY``H{*NfUiH8S;&V8>W{_Hyu>)nJpC?G5Odk-lX@+PbWpz9W6zl@*vq+ +F~#e*g~+JmA4EGbcLpYf4F^cm=yS71Y{+ABZ=TLL_iMQY7nNpihZQJrebZ-9NOh#BQ?aEj!3YFl7wLB +%!qdN7JVU#W)_2qx>(1XhvB7(LXfxZXq^MQLYfHCfHKIo;%izNEIt{88wfQZ(j6BCiPxN09+``pu7QS +ykjnLO{YYo!#yex)QxZ2=?4%g<1}fc?ZkHEURb+Bc4QP6%s~hmQNzI0c)H&>oAz`D8K*&O{-<8S4bzBOc~h_qR +~3p=ref&ztnMImOsK&BJ&Po!vZ~mYR$2lFQ*0$1D8A$Y&mX-7=rHEFMO3sFu$ +=ZIiDL*2|bE0L|TAJHqZE4+W1%T)ayS;j>=j*DXw +qz7EyqC{s%gYJ3^#8RGs97^jZ^DJx*g52Vi1##lT>s;qL27XY#Gb|Fa9Thiy6Dv4Ku-(35i%9*95^qz +vfs|}=nzKXrU<{P24QZc`xiU#>VU2UG49VOrJFKF2bORMF)kAx^n6IM!@7`)a~3Yr +=;cX|Tvc4D!_k4>o~C0G%i-f=>U6d0_Kk7bth2J`!CH#XQtOsKie6P)uNBB>EZ(7JckgoHy#JYA3MFf +Eo$-(U!%}g{sy44FBTA3$iIIR?{8YPr1hoZ600dqR1>`6Kb~kh5q0Sk16&YNBR2;e%IB$NYU^3<`*pd +r%wDg7XRa5_#zF!ID8)61o%Ov91dqY4nh-W(&424!YZp}#|oPY)D_@_axP?8-vZckn7=byn4y|7Uv8o(uO!0L;*Ie+*zlX{nQp)<$fw8^qc&3-y%@O^IN2!GvKz4_Z +Rihn=ZVzVqS>)()M{k%hz~?IR57=w+wM@zXM@@m9in47gx_2Tys2Ce-PJab$S+jRqF +Z~o$E^Cj04QOtrZ3G^WZb#!Y>2w>>lW6uQFYDNaPD1esz?*1!Z}xs#MS-j^qYY%AB96$Y(esy0#96cJ +2kyBGa>YUOd?QN^Z^?=q?6M4m(`niOj^*T3?)4@u$-sURI{gm{>b86etCtD%_c7&U7G`XG4d8f*o}M_ +MI>>ahe7M%d249{C2P$4$$DWT<`nVQ8RM7sFq7Wdx`2EG4TSQ(z;Mn(Q2#<@ZWIidRW&za?wcMzJJ5o +diN+(u#Vt*<_porvMC-bHwlq2-mmZrv2<}yQ)>8X0~G|I18exn0dr%;*9=5o@4dPjjg#h>FA1%)${QX +NO(qVAYM6b6hk(ARtULrx&!NL%m6_6+JvvL=h7VU8oOUL+Gx3;|=}4liFuWvZ)59OH}5AM!Y(ph+?vb +yFTg+A8We0Kv*8PEbKE^05g$;914*m{6ORYJ+`*b(@xPgmN|5b8@p3v}vgS1)aQ6n}=Hx>x3zK+AZn{ +jxKX(!uE$7Si3cD3fdR%$VU4|S8;Q4xgj4uNUR?|DA!Z7<`Zt>NK3B3RTW<#$eL**083I-==g|AhGAb +(I~Tsq>?%Zf$Q?4ReD4l)daT3}Y{16k9is{id2KhsEiVw=S$PXNRP4eVqJ#j6i|f~) +W)g2UB>;E_PX&p+HgpNn!^VzZ;rrxK0KOBg+}S0LcOEgUjarX4edO*7eoA6JFTAOwCsBZ?u57wn_bt$ +|O1h*y)RlfJ|iYDf=UK5@Kbk{?oa!#p1wF>pnIX8{GP78py{P)1eETsq;^xWx0>31V^txEs{vcRXedj +$3;nZ-*jie7ycCGQS +n`JpD)?UMZo1UtZ9x&BBOvKZIq!t{8pW%@L|oKe4Qp +VQ7JyB?{kkIeZsQhSTlTgjk6joYXbLBjvIzL1(Uzr&N$duc-d~K_}xHA%{<4yMw=9qF4}TqFk>q!dn> +;=3!E7$VTD?=$%#6^`{{a8_KXfw{OAL9lsw?f*BNg@NMfF5Oo>{j$!U7VAxK&G%qI=i=Rv{!Ozpk(5) +UuG$U&;}wu`O8u4$)HKyQzx(f&9YbmNfw;DCG2dqK>6+Ykx7W?)`0uy0FsQ%)g!p5_!Yb;q{sD7))kh +_d5Z&ifi&+mchP|H|*kjzV(Ka4jh~N&-DVEh|;mNxkK +0Tz{T$CT8uUBd(gc;wZg=GwPlZHdRK1AJ01lJes;Gu8!k+?!JDTs>eD=c!>273mYG-!POASXC2dNOo8 +cka{$FCHT3H#3)p!_I36rU&p6ZfXqEc1OJtGGb**)n=^Ya0^66-9!H#Y>WnM`J2(oL!3)kxtc5TYXPG=jvusDpI?JLt_B@TC+Z~;&_yEx*V +%fYlWi!ie!T3<*;wzWtU0hktDn*Y&1S_Luxl&eHJ}Fm_AKI?{KC=F{KnHOG=umBO(W~VnLqiyI}eIU-0|sG!Lwyg1H%$QCR#(^9JP +1_$F&OpObNnzfwH!`nJO%g5h0JeD*YQXY+_|6DcVd_lliQ?lk+5N}bo1j%sw2a_zQdzNhsnHcY~yf`A +=)4#7eN%>lekqI81LP7nR7{h+ohR>uZDL8U+c3>}ZPYB}#X$GbSu1r%wyyElJ*BRq9(L|=A?F7a^Ezc4)uTPH;f^~$WMIxJ&DiJaF?&%UA%gCd +3E{zVr-6q&mUze0~r?z9XL>d&2wH=rDXVbx)!wH9QyBQb@YyO^cKlfMkUDNUVS@K`W37(;Cl7?H!`ny +UsU@n7kg-QvklGJ9Jc)rP)h>@6aWAK2mk|@q+D2-`_nlB003_V000~S003}la4%nWWo~3|axZdeV`wj +Ma&L5RV{dFOaCx0n!D`z;5WVXw2IV4wt3#Y#3@Ie8Nlc*xCzle+vXVyD+VbwQySCBacUH12$u@;n7#m +CPy`A@FMuky3aJ3e44PvL2aquMT31r;53A`hHef)Y`u=(p^{$u&`B`7>WNUJe(9Yffx;?@R%D8}en0C +Y7JEp);TD05{JBeF8dl(eeCPGd!n(D1avk6L38u$SfY^J2Ape}zW~!;p*eh(>Jgr(f@<57oxzQcoYYR +^^4zM}>5gKAXyJH+ez$AP90Ss5EBI%28Hgwq+{aQ1LTwG=?wVAXTbrD<$6CLx7BM2`vzIyoMB^)xjLn +8dlzcKgF{Qy1kJQHGljiECuAa%*H29z&aD3QOZEcEqBgbphCucLX3s~06xWeCdH=!+K1H5sLx?`a@M# +H$H|9%5=0uL;1qD^HGB#guPQ${UA;awZP220NzlkVnYEprO$^x4sRHT(Xyu3@NUR=0T12a}Y9by;bv^ +tjePista-hg8W_x4B0julclFrxv&t&7liyf%L4s&LaN}whAqz%H~G^lhViUIE6%^(T8-W%;qAtbS&Qc +5>c$5PN)U0ZwSqY0o6YP)h>@6aWAK2mk|@q+DIXuGe({005={000^Q003}la4%nWWo~3|axZdeV`wjOWoKz`ZZ2?nMT; +>G!ypg@dtR|}l{9&P>(nWtd;sACPJ#o$S&4ri;uLH(tKIRfWav>@0yx*w6c3wed+jxmF~%j^JDwD{$Y +n0q)nH^ab|!)JoWsZG(RTiibu*ca2DH<84muvw}rWJSM(*(>QA+4pIO83s6e~1QY-O00;mBm +!w?MITRfh1poj~5dZ)f0001RX>c!Jc4cm4Z*nhkX=7+Fa%FIGE^v9ZS4(f>HW0q+SFq|KQlS-66zIXN +7MrFC5Hv^%uiIi_7y={FHoGz@P*iqZ!~eZAq$pdK6leSJ#pH12n+G`$@l7d}CR|h{%e1#tazmE2$h4G +2MYugJsnVPl_Ec|6E>`X+@Cf{_#5OXEYg!casbF?@rao;Z3R>9RtS%kPY+D|!ey7TAeiO +iMm-3mZLef0)LeHC##4!f`%m<1$WmR2hpgY}jBRoe7ttMP9+`7^#B0~gAT`asQ&(>2`sutKTKvh=Isv +>xHqm)#^&F736$HIv*)%X1?K^UG9nPs(7EGM7VOc1Iy+W;$sQA_ev^CBmdC_suq2%z6NH@%!K39YpZv +Z9)_ft#b(^Vwn%k~eQjv$0y^I35Q0CL&a<>Vm2Xd4k&oS8i!hF$3Z5ZQdeB4z`2aq8Zw-O#u8L1&heB +#+D0JI~LFAwinb$M=zSPXd`=Vf}gWYDykvC5XVe0su@XB3}l)T^IBmC7ub+Ya1j9A$R$z>nlT&O)_|9 +7?nm4KVqA=(pkl=m01YcVr~{ib-dc*hc#iL2*w|w^Lq#-`Ncd3Er1_%5M9Y$i9O#ZawiK_+b@C2YOv9 +73cE=qfBH}m9e&n7D`5J2gn-IPdQn5LTzJUO6!Sb#(OSl-SpjHUdhYrHY7eL{UFA1-pQfVsS(f~Lj8k +07h^jI7Af(hgcNs^Fnhq(?>3(VaC`}}edhJ(xu0x%BqkwMvbrbUf!AH1NpU;yH%2-pZx;Fft?`bKaVwyF$j0rmzxp!_st5b{FI#{!?-hxU>oPZ@bwyY+4IGiXH4OqCR-&djqAz<%X*tw#b+&Vw+B{kX(T +rWUqi$XDeR=;i_K+c}2lQM&uHXx!}5AShU*qJv&GyZa9crnky6*uYZr2_vn9wlLOtD{CBdkAu;IARm` +CcR>64s8rJwD$BLFTyI&vQ-_7nGAFl4x$A|k5Hjc}K$035m;Gs2i4mUB*x(LS}+t1UU`%ztXRB2ORDVr3_y=?b!%e~b#eNW@-db+xNfm{D%l~4knI1qd-h-5Zjg2W*B`@Rj8HOdPVss>iA ++3@Hb06&2c54ybS>nimbbJu28fgA|n7DJQa$BOp4o3-}FFF8IP9$4;L_YCcuaoaDM+6Z=1QY-O00;mBm!w>hX#;IV1pom05dZ)f0001RX>c!Jc4cm4Z*nhkX=7+ +Fa&>HFE^v9hSW$1}G!TBzuNcBZog>XrbWbaSR2@hM(t%VCcsNdxZ{zG5Ws_ig+uf^>_!0aX1@7m;=!JrxI^K6l(&&|fwtUmMl}ml|nyGDHkIQS;w$d%@o2q494w +9+L+)4g{In%zAeaoEjOM9EUA3qEV-O3!USXVP~#pJ$KvTmuAaJ6q430-BY1n^4J^b%Y$!URj-<4@H?E$9tU*!F^d=sQJQ5C{UK +`rMS`thVr*kiQL5SE{ERGLECI)o@jLI3wQ@=%M5Y>U$cfHPg1X^X))ohw^YzIMlOL +E*Z}XPTO%@qy=3(iy2jP9&T#+!>(2n%GD!@FZ;k_tu+3BG8^hiV#zd^)129bKo&bR=V=>{?A>OZeb?F +3UmAU|X)!%4qyQ&j3l%q*!;!IoCs5FOkjap#>fAs=G<(sWaXYr2~g;Rm8Cx!%7#XGL5ig=P(+vIVTS1 +_+KlnCRkp5-UXw?e*!Hq=GP<03?ehIs?&dCo(gCnO{-k6BxVovlqA8OAJw^RM8011omKq9-I3z09oL7C<9)TjSy27)Z3oeZj$+ +8HAwJ5fk?PQR}fl1wJy4okYF4XyH(wqsXgSt~`~ +OADna^7H#ee +aPN#cUMGF@=i8H{SzGk9n`U^_iFMf1tf5CG&tqT*RsWCo?CE?BCO1Pa6LR52u3W6#zWmHGVFje6=up_97fKNNO{635`HeLT_}@%Se;*KaT0nI(2uvq8bPcw9M{?}x>X^c9w%&*7I|w6#4`I;W-cN3! +sFF$mNZF^6j-`_jmM)cqqir%m6d*;wiFMV9;nP)h>@6aWAK2mk|@q+Ab$^(%A)000{c000>P003}la4 +%nWWo~3|axZdeV`wjPV{dR}E^v8`R&8tKHW2>4zhY3oc#CUpH#yo{a3Q3*UMY7CX`qy4F2Ps399!Gn$uYW*)iLs)14o!Ai@OG#TBOz?)WS3!iD*a(P(PPRE|ydJsMSd4E^je!9E; +^_MR{r*I=rDg4$t3sj`=*tLQ!!ny3o4@ZH2mg(X218eoCxZNwZR5CHB+`E@SpqaI&QR3fvk)?aV#-QB +GAYdMM-{F?>f6V8>0fr=(?!|MZ+71Q4QVo|XgwBIO9salr!<9@jT(u1}&R(o7_B=z +!d!#~TdK(zs@?GV)ta`>Vo3t9$!7k{yn*}z^YfwD*4^)im0r7aE}uUM3Sq{8$H4SgvDlLvd8_~FvdT{ +ta_5kq}TYYE@|2;>3*65t|)ggt0a_NXL0QO%v)V1z*7z@L~5sALO&;zl1#I6LA6Ne|a@12-6wUt>E;O +SyE*!6-=Dpk*p6+!7r#*=Wck3W>*C^@%KFPC=f*Ppqb$um-I1`9%XG*pN6dXIAc{_wH0&II0G2S!3qr +Ty3JcS$*C%8PurThM+q)>I)jJ#-c)kRhn7+Oka4@HPFj3$R0ta4eVL1Gy}TdYxcycO9KyUj{%?vq?!n +oj4s{tHfphd{!c)?W*>~zoh;8nK?fB#4w~0$<=s9o+i5xJp^M&hU8Ki1Q2Vb)YuV7R{{NJY@^dCimSM +zPjf=o7d7zc-pm~+Fw5l-bJb9PGYMBCiLDH&nU#p9w87db@tz9FNubr{HKIKF^M`Rfia!lg8&!0-%?< +SCEqz^xZVK1~2N_G(fOzU??RHkJm$8L{PSaWT#EcS?FNJV?3duDk_g*asc7Vg2uPocmxo%eB9d#E9i$ +~ukASgNgg=JuG7q9B;M+ZF2BVb*8klR!f*BUUA0^h0JrKaaUCf!CA4V~8Kj4g^ZZ=J4_PnRmS6rJHH+ +g=hNQ(|bmZVGU-V%$hjyHb}7Vvk71k7sPAXg?Qot%y({(Ku$)B?C%ciKh;@AGB|4ot)Azx4H?WGggb7 +o=^l?mda*s}>3p)jRGe{BK6|@Vj+B$fJ9QG)_w!<4YZmb8oF`RSgI%dKyk^~*^PE8Ue4|OGb;(fv<&h!CQMe@ip&c}8isdz<%D>ZAd@s7b;s>}r^_QX>|DF0nl=Wtw_AdDIDR8w +SV~iQ@T&$FiW#?TRl|fLJFG^wT3_wX3~}#r_2K&cdUgH7hl!tmV@W-}vkx$#kk>rRgiaw_z6*Qkb7Yy +Gru)kHs;u8-SJ!KV_9|OlufJc;3iuyTO9KQH0000800Wn#Tt7Abu2KR305=8z02%-Q0B~t=FJE?LZe( +wAFLG&PXfJbPa%E+1E^v8mRNIc5Fc5v`D@Ht#it+)GsI*GA+p5yG+RaPVt&jr-tU9)3JKd&V-@!H*lj +R|Sxtuw3X6#z-^c=jS+!{Q66YWn_bW}f4bK!PtB`41?+8?yMDF3-b +YAsSU@Z4%jg{PJ0`5ovb8|+9d^o(xPXm@0E9cX}}UrRWN-NQv$Ca2Of +yRw31r=G871olB5mc9=Gg5l*E2Jz!Tz#3fYlk@f_|K*ACpr3i@FnCBKt?IBO;gouvz&@@ai+ca?^hVn +iN`7XkkTbwd&BGUc2bn^>p$1a8vr8sNJ6xf_)hgl~nIfi{A+=RFty#L_RqPlL86jN362T4d>Y1WS0#d +34cl3uFSSZW_oth?H!(S91WZzy$biDT5(v=(;a*93ky0z+`1reWjrdG03K!YRn3Ci(gtH4Mo5W_#n^0j@>!LbhY2m2U38C8mMX5Ox)U22UOlOWt +y){CqamC9GiPE=LyWbKN>FT4tM9Q~?!-a?UAWAS2MGNOCQy~-F2qNgKqZ)CF{6)OzJc@U-D^AC`>Xck +WydImHF45A_1193V>S^uvi6&P@@h))(Vsa-wBp{@9aA{IZoatx(0Z>Z=1QY-O00;mBm!w=)DI27e6aW +CHU;qFc0001RX>c!Jc4cm4Z*nhkX=7+Fb7g03Wo~pXaCz-KYjfkqk>B+z5Z;G?5yf3?9(TvGT$Z)6t% +_E1N!r_T$t(yYh7!CWfB@iXmDJsDzkbXU7?9K>F53yJ>=iLRGyU$Kp1~}tVi|~hwG7f_SyWAMk~hcjb +7z4Ki&Z{viXy93YgVnIc|5-p+@3a~a@rSZ2Co)zR!fMixV=sDTh)Fmnp1cqDsC-GQN>MBsphz8DgbFz +d-G6Qox_~~o~s|eKaP&RJ3jjB$=SCfdi6G)H~iNLbd6`3;9sX{E#IHTOOafyO4V{+HffQ^8UMNze_M% +sF54`ytA|ql^*#sq(avy(5gX4%W~gSwqO^``KsOT+wnq19(%jYDop_e;`%L8WrSl8uj^=l970-bNhOE +=S%js)uG_Qsdi%OK5cNd~wWz8t4()nG44HBkq9x|bTF7e0CPP%Z}IH5@-Wkp^WrpFQg9H~E;bM*-3%M +(%YtUEg(=itDIHyj`u17O$AJd5iZdpA{)Awxr{Vnd#FFc_Q_`CeJ2d4r-0<_rq|CZZ1R?_eNOgn6804 +?$DKd7Z_L2$~`|Ji9z$xG@Z~L*spYe0mC~?9-2J7iaMP4ZZ*F{M|A9_#*?I9v@!7 +uRpOee0TmKI(mO`d5-V?%-|<)kIlQk(7WTa!>><|qr=my=DXMOPzbmc?!Cd1Y{LsHAEf6l?ckJNLF)boPnC%38nEtM +VgMya{<%Fc|x;b7tsB52?K&+g4%upZwTGf9CZ_@17}di7`C +A@m%@KprHL+m|iVE&U>{wLUFcN +KtLfwZteFbudFx5QJuS6_tyu(^#i(#<$C2Fdn3@}7Wz{$-(aY%M7?||b*1=FS#s0uJYN$WC;9|9a{%u +>+fT!>~>nZYBtF;$a8FJ@wX%KqdPJGhcg3Bu-Dpz%@$`Ds7=Cj!T@#(=0`ESFr#4N+*Ni{_8h?3jP2=VrUo +!TAgyzQit;l5(bITBp66*9)L!!;5V8+(!;*SYSn*E9WpO*DSTJj=gQKx9>mPw +rzm^$16Bq7*fei;Wzv4YfNk5aZkXJMmY35HpbTGK4pO}7TfH0W;hI+tkFWjxoO4#8_VI2ivniNoSynpYy%7o1u)=o7$P>WY-EO@;Mx~j6F`Cr485vWEmt!Wi=x6=vBUKQ +hMv0O#G!dY?Ps~q(19yfO#}(af$6Y^tZF+;G*$-fI!MX6u+w0RPfp%p%lXpbKv3Um)ab#Sp`3r4MH1(I$Usr9O$;ZRzNdAdj;Uz-=%YH54f6ArfMEy@Ds4;C>M26B46Op}DYZ5 ++JWBcBZ+M%Xdr4q_D`kz!H^c_1u5^w_uz(a~gt$dwR_MDGq*@?# +M~`_@?fH8Rll5?2O!9Q{ZX_=2egwr;&>z`*-7(H5}80ndaEFAizR&Bz1Ka1o +wU6_qMq#lkX{w#D^9LINTx_6T~dq+AKQkeeHRy{j3oejCbeZnjBQ>mbzhDH8|hp=&7Qpr}UTCa$tnam +fm4RS&+7YoRJJZ^a^pG@C|2rn*BIRDI)Ix)lvdh)at{{d25$Yi(-lDJ{G~k-dTl0n0j_Wn4X~IF7G2XaZsvC=p<2Y%{O++{3Y`=zFE$|P^+%~)X!5SUS-PRws0#-Yd@wZPHR{vN=$(ORr*QLV{o +2L}3+5GWmC3JRt_tDypw-w{WHN(HO#Q1B4Q65L)Tw|&EO>dFoi9Xz!?%O^V-xiAW{fWxdR@9e;Gv43t5XSEunU*jhUYXKm}1+ +DPwIz7ms|(iI208h&**F^>D$4_742ZU>*s=Jn7Yl_hYz@Glun5Lp3*Be+_1xXY-mpFew871H@_$(KdS?0u;^Fo$ZhLn+mD1VO#0?=i^vmkFhqmjprF;%%MBpi-jzY1U55 +yZ6#}sNSzR8IfkDnv{A@v&F9v!2zAPUbFRF|2*kzckVHmqw$dIqHs>CO&k0dF>$c-0Bs6D^68{7&h*vS~7c8)G?J8dgfgMAVB_KQ=JP1p3*= +rWE5yTLWZykHRgAqeG=d-eoFm7hXq)48R}SXg@L)SUeX83!$#V@o3Z%@N7-Q^^H?+4eesLHJ4L*9Q&`ThNB2-~$DBTz%Y$^!ASYof*$B%9hT{^ +;7GuhF->>dAk|l;P0?)F%;BD%q&h8YduuHvgU1o*KK79^}yswLhiM;3aaJbpFs90gn^1J*++jR>X^wNcs8W@s#S~;HTBHKYzXd@0)2CM+IHNV| +9C%shps8tMs6$ZFTcK|H|f6AE%m32aPxyll?-lMg>n_H6Xwn{GB<&iTw3gG3c<5(qI4lMo{doUBvvN- +?P*%!2uIu_F|(V$Z~dlfD%vE8Mc_6?s`ZXu;j+6Z6bLs_y;Ej2pn+Eo+L~X2jA?oozdMGm?Iw +WAMJ?{`QHi=kkb!GvLA$(!_a!n$bV*adzw$~kT*x6OIo7XLrv-CEPnxb^v+k`&P@~?=W?eBbRX*RkS^ +=5}iS*j +;$RPXUfigl#Qf3hJRqTSNO%&=OtPc>#w&ufNfwtm$B;{(-?Vh>kPEb#=1P-Wev6o@iv%egf%wXR4I9c +kB>k9*<-dBVoAXkZy~^O`CwDqhLJ(fIr3>6qsJ0`hdX6&>$oWS2SgGy7LiW;Hnr{fotDbkTXp)=lJ%e +9cLna(68ErX|F^~N_|`5Nxx!VM#El^7hltlue=Wg5i{5Qi9v0<4L3?;$zxr&m2ljI*ki=7dG{oYxvmupS_5r#FfI6=ubZ)w{84-EMjGTsJ;H-ByVrr5TJlx^Y2zN|ujuvkcXH(14W&nesPG22TEVTAPu +Lq1w=xY}Y(>%?u6*qMscwQ~TMazEmLOk45qEpCdyPmJx16}ydsz5VVt^$3VpCG>rS?CbEmgWz=+-aSH +s4{NPOJKs%VeQm7>kLZ|Xmml=n16`C49$B~}sE4(9*hr}DJW&)2QFIJG%@g*7$#VWXu`8p4}Xww9D$f9bzl7vpu +$cx?NM?6s!aDw8!rSOThCe?ji)%Gw+^mP$6P}AHCkz3??YPOPp_JwU}4zi8pH5Q&MN?|+dtL9S*<>sb +*bDXJ8Va?Z5ogy$pp*gQxcP`P>ybhh-BlRWKBpAqhCpulnxlqve@1S=)L}4K*IYOS$$Wk&lsmk9k_3>BiQjj4XM_O5bVIkU?)87q-YP2y0T3#ABH`YFFR7q18QM+ +MWt>7Kqy**Yd+Mxr$NEw?vGxuU`3Ul&1$2bR|@q7lWH*W_~GvU{`TRqm+u%=d +&vgruWq?xLiZaqeQvz?$t(r|`>g$Ye4fpC9XnXe0Do@xsuijo4c)k9HaxgHs0<#MSTkvkc{+4#SU)he +Z**Wz>BDI3(JajN*=)9Is8aCgF6|shlH?kC7=Q}Cqvou9W`);sque(06LiNQRa%k)?#**sd(Bkt1#}0 +!Z3SHJK=Rc#?`0(S7Az|1^cHO&A~bsq(hEViu;!|3=mDq(y=7>2v(@HUv+zfwN6<`MDnb*0g(P~HKr+t?iBLt8dxZ*--Dpt(C%MAJiScBe~wYM^ +H!lpxM0~QNviLVrj4Be%M3KwW`nGLsFByLBtB#UAh>vEx)e4)*t-6yrz9OS4QE8+#Dt~B3;k+<4I%%} +TJt(7iWCL&ulrAv(ySF1!@wRNqS9`k0N&*PodzFSkxs==7q5EOwSsj8>mqhf$wfFbT#I2r0%jqiG9PR +4XiLQYP`Y&&q)tesnq;?n+re8U`ODIrJR^$qB&c^7oBBC2fzb>Q24jI3mOFGZ+nJRZFFr)JhnaD(2Gb +JyjB4OEDdCz8<_Bq}G1INlN`Z1@Wk)>coI<`?%UdmnE4lsl||C$r)LuZJ$LRiOD`Z#Gem9h-C{w4f<+ +C(az6V8P~N9$vsdV_{DU0}Fk^XeX)%gJJ$gPluE@gp%4Fms1@A7eVC^cr&4%xU%2C)qEb-3xOX_R#)r +-o^L4Zgk{Gj3p^klED-n(8Ya>}P7DE=VlRXG$Iu3lk=YS?Q5l~AZsIaJIlTENARliTsORYHv45uT^*ZM6ZZnIo7pkPH5NinTC&Xr=R3B;RCQ6vAOR!>Z-oR0sYwpHQMPnbY`&3vopyA+## +}G2$nnk`WtD7Shl5U>5%^|RMs9GZof|(c{^i*5UuKQd?dj~;fkpk%`mAsi)sjE&%_B}|#@2t&RsV~L*rWKBr(zHImrTa7$qBt4*OgDio~*uX-ZC6y)9VzKoSI&Y!Wo{Ll7-_G`(;>F +W`wIMC^5Aw^p=aNN(z8)p_6p8qXkk4wx1U!$L~DXPuy3YY8dNg=RYam%68uc;s#skAbXF`P8HK+{3I@ +&(paSzi|9`MXJpzd*c-ShptMawvMv^qf&7z=#QI1`OcgRe_{uf26}FC?R&;6*IR +p;G`vTK1yoC>wpE9Q-4sy%I46K*YET#h^}6K<*pu8(qiwKF=Q+~gUrc!Jc4cm4Z*nhkX=7+Fb97;Jb#pFod97D%Z`(Ey{_bBvXdfySs*twm7XccUrrVHV& +44BQ6c_?6Q8qhS6htbq|NV~dqAWY$KZi +fj@ddS%=#cDG4o-RjlKzC06K0zozI<($!?Zo0fRI?AzEM1sSaHZ~FBsJ4uV@bY3@I+Dch4Q||M~*P!N)FMkrWF=!K+ja{;QJe6{0+h#-D62Ywo> +}n!RKpFZ%8a%dwOJOPGZCQ4uQ-Pg3yeEh?PQVcWqJ$tIbO*oR?a@H1olQ~_nu=;BcywZ{)LDyNz +5>JQ>%{U5QuApI2H=F$C~jJYMF^-C8eGZ5N_I{{3QfGvt~}~Mnt||L*-N(x5V~mMZrpDG5S%vh&|9E^ +w8jknL-r}NHK>cJCJib}+EG!Ku@8u}O*$*FeAZlk{cSq0pWLlCA_&B2$s`X*$V?9vhJ@K-P*g?e^ITL`LZLkjmr7d{g`F_5`H~_5jaq2aDN? +XSU?kOmh5A34;i{=tsDb8F>z4gkNP|U_!ovIw7f(qnPCtbzV!$1zq!Y!%FizkSU4TFJ0|QlYbmizBi> +0FpdiSFxCZA+ej6)X^cn;7+;?W{gl#$1ShWM4hOxzJS=3undXmeEG^fX6o^Nm!3XR>`3J&}~#&B-^|* +w#Quv7yWcD@e%78=`IlDJMl?&>cWz1FZ+hAev~foo4%%W?Ah!I +^4p!RCxO)NSRU=q|%D7(wTN={dqZiZ{26-SfsS7*VJri!cpG4(mymK)?O%@zcW5`UM`LMS$T#aL|Oj> +>^rffdL?DIdy;pQbE4Z@G>lM!<-*VSA$RpgIT(^8ypp%DWUtiNc1_1eJ6f$gjX08FNbDtS7ELzOcUPP +gT)%;#x}1e+(2IDv}veiWS^R#cP=$N}8p(rJ$zs#0FjCbM7q`}i4i^7El0>f?GHDm>wKA|Hy*pf^+C> +FsZQc2_aMX@XZ&#?ZkXp)64Wr@^w^W7?Hvlq2*5>Ib~t<6I3c_5_Cl383$lbnotKyd|Vx`L#0_N-bg6 +3j5hmtZr)dqN6J@jvn`T3;Dw98}>wNU|bM2YB!7td95A$C_$LpUEjwjJ&Hg2Y9TOIAw^)1vQu8)`W&Gv0)h-YOw^8WV7RYv*GZ4$Hlcu{)V50z5vau7s~!A>jc~ +hpf0bTcxql$hQ@G5)%|@Yr{E(3YdA-jIM-3amKJixk`HsECiN}u7w!Yh2e7 +61TlX#fBj0001RX>c!Jc4cm4Z*nhkX=7+Fb98xZWiD`e?LBL68%L7g^(#7DAR&D;PogcymcvE7j(68M +trJM{9S)8_kI1GpF*(DX8QSLQbie)T(eLSb$ieLe!4d{E-Ca{v-Cf=F=<0F0+2%zh%6)mTD)Nn3?XpF +c=j&3W+_Elq^F^|_k=&kdWsy{Qp_`McDz0T!$%5Or>Egp$>el6Mvn|JBohM6$zeutr{88;#O0$Zas{J +<2u65IkY(Ex1q>E}SUIX^zYAwg&G%cb00*xV};t3b{21&Sbe;12;vwxS3;vf&peXDR4KhZsf*{#1F6j{NnBD# +r)#c+23Bjd2u?w`0J~`y@DPn=nDisIGEog<;|Q2RLq>w9Uchy4d&E`!5E&duI)3zrB}O3mQ*Zd6;`d& +>;pY)WR(mKMh6Ff5a-n%rz$I}BwNT*z+{M$>XveqW+{#`)D}|Yt4d}735+amlI&XIbR5w8I0e8d&B42 +}f)N~0{owN8;9#*%%2Le#lvXFq|6uR}ke7=h-J%dxxq$BdEAT54McVK!uF`4(FC5UD^Le?>t8zXETJH +wXg!r)mScOL9c0M1La=jYki}Nf$L4HT#;UC4DJd;cxe+V-H5I}S!zWYu=yU2hggDb!K6qOdK8r;MhYL?(eNE^2if|&d_VwHKywD77KzNf$MM`NhEN){iki+l(2qFa?TQae;9BHL}QK!y>8>Bd-;yTuI=O-gZ?YD2w5#A0v3S-EpC#JQal2t5-6PrSWkOczn@b*fMC#e0R0p-)BBoMY3sOk(#@)$ZU}oi +**Yk4bhD&|JWt28loE)3o9v5d;}DySo8MmH1?L>(v@v@#sPt3BYkjA(MxePh`;HO9hm>RhwNsSYh3r-?0}pkkgbeYBwQe1xb8=hhDL8gUr +B3hcgDK~@%5sBZs3Y?5t>)&}U+3}^EEFK1$#pwy!E%mYtU0T9OK)}T8C3*^W_e+1>JQ=UTkkyCyI<;P +C>F_e#;@-dX3IOQi${?;jf3+1Oy`6-m2Ipt?a-(v_lJoajk$77etBjoZ}vw6pZa(?ljr?2KOE-ubq|L +N_;t8=g01JFE!6aM3j?J`n_S`Mq}uUj9hWMzac>d9@3SDRf5n{B~`Xlxq +ubh0uQq&a)sJp#Lp^Wq*r=Y|ws^JO;k|x)UD)lK+i0`KW`1y5^zMs|=Gkf2J1VxDXSY4la2IhEJb%Ex +|G++m+h)yty99B??byCj-)sB41oC+j_zyK85cp0QmfKD+Gb5dlB$oZ4rk!9)Tsz^EfOf*MQ1Yj8amA2^1;@M%deak?jMS8U?;CDYrQO05DW~4KG=t#09lUK1f#HLnZt*nI{LC%28 +)m#bs6^Ep;%0QK@LmNJwzz_<6F$SPeIi4g&re5p#+76ylOA2uY3IQGi2xYZi;HX~d%dLQH|jKLh7?Gx +YlJmuM}ay9R{NWAz2Vj5)Yt4gh)E(>j>)xI)Osbx7-Ug}_hi!0c0nfJaXnAg49ZM-g7NzZ1efiEyiZo +*E0&2)D|ssSVe0gkQ&J3E_{AB22S4Qe)$A8e!V_95qf3A4k|WZbfbO4xa^_TbT=`&yze~&}wpszj_V+ +NFJ$U7)Lp*^NK$dN$O1tjFLy{MGKe}MiRglNR~vFzAmt-61^5UErTp~Er418mC&_7D(O=a*Qe7{Ep9E +qEO%PgS^$mEX+dj&H4>+#tO0h^Abj|PoieuXc`&qf9y&4`2rbR&j1*$fg8I+dld0%!$aK^&#QJb0D1W +cE3|50%b^b6s9E)f48{OTab2qd^M|T4xI3(6!RH%+gg8N+`3Vt) +yBO@GyQ)F<+>-$(P37Mf}6Xx+E2>0@hXu4+evmg-j}(c<~Lwe#0@~v59PTpM$Z+Kp!RH(K7*5$Znd2_%*8#xgx+XG-DsH?vslb=+)`%_xoFik!K +$#N$OJ+U%+Mtv)N8%D);16D>S;)NK(07(wuj)XF30G4ESMPX^KZ3_$G&jgU8L~NA!i;1`sNJDa>&W2_ +Ksu2mztiu|It*vU$i7{q(j&Ojy4JmAL*L1jcYr} +^-MTkc&B7*2zKgh?BR!zH$aPI{{9b6_=(zOBzaM(x}g>(sZ*jnuIfWu<`?aO4W&36(0f%2$iE~@H6iE +Y(x79FU!J`x#`Y@dElkT|N$uB9)`rIIlsG +9h-;#fKTG<~*BI$uV2}1H|st;GGe?$V`b=h*=vRzbVa1*|4u~RqImB(DEeG6 +6lgln}Up=!V7TIDpT%BKMb2Jau&KUW+eyR<}ZGmY$)!r;qwT+NPN{bHI@)q1*C} +V?z0n4%2l`Ltr?=JEs&mA_GG3(H?%iY*4kWrZzQL1P1;kC>#0ZG;pRY)7UcAHDr`X=G-uVm9-1@74wr +X1<$*Skv}Y`c}&Ql;rAs$A!rZ+PT0>voPX)P$g4i^Ho!{X2r6&zuh$X|${j`Rv1VpVk1oF1UqL8$M(s54EXI()HDxJaQ#XNW2LW{+V`%7<5kp1+bW?iNLCGHA7-DwyTY46(<^p>&h?94O4{bBZoIUQ +~j1Q0OOw!VGrjnYw2jI95nQ1_08WNiJp!B4Jl0LmMr1UOnX=#vdV&8TU(}!M$nBIIXF%8m9>}dxvby{ +Xnu?wSKgnRs8W1|i6rCssc@`N6kDfx;Mv=~~8c8(lNFEW&bn)%)xS9qJT +nr|^uw~29`ZzL)*YGo-0fyqywr7OwiH~5UFrgITmdu52qmNh@Zm< +og<;$G)KFsRB5M#a$Zsz@`;<1++d9WRO)%i$)JM +nBRj+*S(|Lb1dM{D6Sl%K0mb1m~v*>#aD)!Dt;ZblPKws*F_(XY{N4(Vu@ea+UBqsGCr(ft`^n@0ib( +h$>kDqcBwu5=u9q#jx`kPY#*@6A=6;U@W9rvD{pctkidx+cR2&Kl}D2B)H`u&YLu${P)Bu4Xv;xXeMh +Bo#N594D%7z$+&kZ?%$(iqrQ^Wl4I$>D0E6r357rMCI!0iHT!sEX9&TUV3RI?hH=Z2BU0s98Sm0b5-o +4`6_@BM^L4r5H3e-<>!Um>YGOsvLVj*(9h3w!KeWts%RXc?Qk?%=bvOTY&+D$OIGt$T9g&fX{8`Z!La&wtfSEZWB&6NWJfMxFB +5BtiS@{p&)#6<8gk~&i)+pCbUg{-BGEiuKyp0H2J5V{~m`mS*M=+9f#G~rmpwgF$mMzC^Yb_(oG$Y +G!ADoPkoOv4($$YWMqvJqf-xWWhexkF3wOCAa~?j{@q?i!+THmB*b@F(iN>fCx?!}$GrGQ(T(R#UcJU +M5Ii}M)@=4P4qr)}4@Y7)V-B1;m(fiARv7)Nol#Y1Hj6Z?PU@3I$6$?HnnxKyO{??vOwe(gd#RJDHYj +((!`pr>B+q#ghUXv^z}wgH8l5#xZ2E{!oKzF>lbL7heT+%Y7*gEKT-F*-o#@EUFyWt^)=r;lr;|5OEE=T{%}y9Iq}68z!~L%cKMI*3H +N)O6rs(QxYL-fYQ5B+9U4#^t~Qs_!y%6?UUW4njnm0HiCmmRu&~;|hY6FhJ0SJ6${3V;Hf}dX^NP;jx +xF)QG+%GA{lOd-T&XFUNVW0XuG7j54Xwz2NU!NT8v%Y +;)NIRLdo6#~CQEVMu3_ew%4Wkeu;7mNJYu552z>q;+ElSBA36{gc(hl$(a)Xq3E^WcGVfZS$Ebw$(hn +Bb<`tR3fREa;n0jEzow-vN0?5Et@ +E!K7DYL1A$>g!FUKQ}g?e=Ooi@W!);z=kx8BT*Mf8l6cEG=3SBJ!PCoa1SLrXoR5co|C4{3y^Y6(Y#y +3&RR+hn?w>jVTn&`{ck5u8+{n*&g9dmEqC8vz;(}c8hdt +i+@6-0_gbrv#x-qVu!8I^yN4Y1DCYpZ|LpWH0oAU6JOs{XMlQ50a&r)o8UwPoQF{1KUvBdDkM}Tmc5hO@*yZe-+UG3|sVe0KcveEAfgK2orFDX +GGopYAJ?>7GcLbE$7@)<(j$Pnf3OXO@|{1H0O!|*D;D{t=(qmK#$p~a%x7cgL{*t>Q=@BJ+^8T`;I7o +`7tk3b(uk5Mo^azz>^1uel2SbeSN?m{LV(4rFXl(U)(Q}wbk82KRCfL!*mI=kS=gaoC}T7zW+mGh)ym +;01$~JHstaJFM5W_yyGgNf1VKX_`8WUs-R))kg9hu(uTP2X)I5lT3dOsmPtWKVA7YwbNOXUg5}!W{jZ +$@==gZQmGj2z4EfbB;3WQYZTwc&#(l5jc3)cT9dWOVH;ORdQk$DY#&JtrvyW7h94BI#u2z!H{Op}KMB +J(+oo@v?*9lRW10+pf4#eMmHA=6mx&IXN`-%A%Z~i^D{V!Y#y*7MY5g@foSu}k}4gCN*L89f_{DC!-< +nAXBa02?J_OrP-xj1|K>gA88Kb|=s&yv^4Vn6?sX3P9j$={&VJyhSrieDu}=IMy2mNehTP{r=mm!LVv +g5}0IycIYY_}6*;#QW#~L_QI$-~nHuI+6Qiq9fKTO)_>4N5jKPGLp%!pH-lihDCp}ME5Kj?N%~{FW9g +YESJ*T8%$b5?Vf~}v+GDIj)>&N^YiDUt9Q4A^lo#Dl&GCY-}rPLW}T7 +ZSL-lK%+PgFZXb%7=tyOwli23HcWfD*Lb72q7=w`?$1qf5i@zt3TP +|V>a1JrI``*KoN%Y0W&KH&fiVfR(hOxox0&C%V@na)1#3=q$g$r7 +b-inT9FG~W5x1)9tYDd#4nQ`$mc+#d2;*Ufk~0YlN^ +S@lJg;m`Z-!1ox_M-Tb{||ywj3;W1!shQdssT5%zuyUj?>QKAu&CxR3Zt(0n=5ePKe8rV$?#cn#KC^c +xNi4y@~H&eBHaf9|02d6g{GJx|I5EU|2EQIt*pN5`DtTK=03m7b_~9yjLbt0ZmxBO838#X&(N<00{Ag +;xSR3s8;UYVaL*g1U6;5c;aP`{ST77k5{n%Vu%2+Z1|wXi4&ZnsA}Yw>Gg4h%_gjQuDiqM^2BnJM~>U +BUQXDM^*Sw0PKCzi9b1RDfhT=!|2^0iH*Igltdl}Z7w_XV{&L!KMby6t5CFHlPZ1QY-O00;mBm!w?r3Z_ui0RR +B%1ONaU0001RX>c!Jc4cm4Z*nhkX=7+Fb98xZWn?aJd975zZlo{_z4H}T_5u>i2Ov>tG^)C*)po14m! +6`O2}~qNqL8V?-*18w2voh5Qyjl%Kie^#Q6tz{3)zDhwK5i7-=6O2`PcpV&+o^FEbBa?8abP8hDXd_G +)FFN08G61Rs_7D8J%_>R_=>8UT4j-OmzEfbq4N3POIdkHr5%UgC+H$sZ9)9_1x0sF5g5Jhq>_!4exVGnCQz74Oqn$NgXRUyz6QiUda0?N9 +cU2!rqKr<9zB}*sgEuU9z6_QAFbNz02FUSSoJRp&>=KEGngvjZPvo4G>C4CM2b#2KWKmuzqAUNaX~7a +I_1RT +0|XQR000O81DB*+;zZfg{vZGV6OI4?8UO$QaA|NaUv_0~WN&gWa%p2|FLQZrbYXZdaCz-L?RMP8b^rM +kDDhf5PhXSN$`u(=7uhsk6Q3Tg%y-(=oX}RqA?s+fT;;It-^rGzK` +&Y$Atj>2^_2ru__NJ)#=}i1-C+ek8PqL5!f4<+!yKieKm>kWIB*Nu3&EJc9)wJn$f4vcP-=&rKAX>$Sm8|B;YZpvPC+X9DjK7r +@1FDr%Sld9;tS55zAv#VEuQ3WJ#(q&WkMOhmI^#Y!{5$J8PS{dB>njaH&^RxskI-X5bL7G=hvsK`D4} +;uxz5KcqRi)d-2VjO;eQT;lv)U7UNFw0>dX=}=R~n}7nt>ml@MEHGcrJ8F^!r`cm+SpYnvY5J25J%Q8 +`145g~|83?YclJpJ~?d4B%&vzN~RF5Wb +C^R6i4qoW7W`HhIyO;t6wIJ9z(6wuYHq7$pAsiT{|-*zVtA6}RJ&F%`wzImuPZn(LsnyZJKq64}OFA< +TVhgaQ0_-9jsWCCV|Mo*))xQ#Z=s$7>#mcY@ifJQgPN*o=XzB+rJzj*%D*XJiB1m9``NNQa`FMb$i$q +B!m&E4suJ`g))@hyIcC6t`O3S?Dovh#K)?62wTR&3j5=~T4b7qzNKPI3q0s@e$$BE=3&RHQ^f`ki0hr +nm-d3I&R?B>iGnR()Ad)JR}o?&>8{*nzulg|GqfpAglk#w6O|w5dQmm}H`YBx-`yPnCN1VJWr&#JmnX +70ZSQGeQ%P3{AE2>i@T*Em3DWrCPDFYDa0&7Xu%RfSvXrny+^K)BqCTd2#KsLR((n^ts6qEax4#y}(( +hD%XsTvKsps5j +EDiF-hf6?|uTy=kqDKH3B^*zQ%g;^GY$ls!uG;LhSUZWZJ>O{OgOhH_xAZouB>3tMk);XQL0T!yn=Tt +n<9Ws^gPru(6VezpRS(o%(=s@yDZA-@g3f*_*Tc$u}>)efcU^cI4~Rr%#{1`U>j&?C9udi8CxZ+XFE^ +fHAodGjN0FCxmt!$6tUM88Hl)gHZuiDndp*f~Ej)M3DdLxXt)(CDw+UhCU)WVzW+E>m;K4yeHA7W%oQ +IyDi>Gq%m&Ni%OeyLgb+K|Cm0d}~aVcihdICe=&WD=u>f62jVrWwNF +RE>#T;@j%xbnGGiy)O@d*45~ofybkfV&zGZHcNAcD<8z5~fEEX$_uae>J*jmXGF8xu_vz)wX)kN~xTUlfLKEYj8mNhOI7 +}ea!Az0*u$$C7-0MxT9a9@)Dn}Po1j2hq+HJ}Xbj)==Iklz*V;K6*>h2SZ%@xRYrrs;Zou0#Ph-Bv6yw&;`->2(^-;&s!2d^lfY#MCSvb +Qf)Hi_WYl%lisGI3MRy$kzCBqyzW51(39ny3II+Ze-E<}T{5sZNVjLg-xzO?}XUMO?l_GcQO;KNq*{~ +Ql2r>G53dTABAV1xxA~?kg=`}^o)%RlArv!WnGOq0}BM@}arKnez6pa6D0SJg|T&N*d>JnfE44C6IrA +3uU0^pe9OH>e1P3||TZm +A*i?g72l(D`56RZC6cG!61BDfPx+z7+z}v-+Bv<|6UXNspyt%x$QxrqfkI25c<@?U%6`K>I&o>r7D2_ +3LkoqA`{&de#^STW{2UQ3rmuoVYCVcjr=yGBv)ZOZ_J6%6xe=@pNU&HhMR;v@t52J%FL`C=qQV%yBZL +DHfs*=c*-4Y=V4I1KFIIkssQ~)pEiCO+o1_7Viw7fhFL9W_a1`;R9eQoF +$85QI%c4Xx5A3eNk2z)mt#kJdK{RGe>^3UWyy~yb>#1NSq=2TR1+eu^uEsxuvXu20UG`c*>%RZgn`?u +Ae54K~E40ISYkuyagUl*@7WQy2-j}y5|HwqnTk;e5S+)S41(G@roZi2($E@>FEcYfSgWqPu^cx%{^bs +_)d4z?5b6C1@n>RCiaLeo1$eA0exjuG$W^$-Z_ol7uAjmVnfO_;@Utu;`*gvk;!<1`~=xlGa$xI%2rU +wd#G1)I*|)T;!O0|u?xWcl!TT;_>t*>vnanUSN+XN^d0`ea!Wa#bf-mc3wIexT);b5GwbA7z_Ur +Oe&8VWPBF(iC)jqV?7gu>#{y8+n_!g;KTsgz}o1r+aM&y_}GtPVn5+Mk(_)yY|Rd`ca<-T}fGwLOco$ +MjY01l~Hm?F^7B&xo;&#!moN`z+1*-djRfg%Q)oF7UO&wSafzNQf3RG&>wbjes;YFgaWI^45 +(>L9xQx&lUYLw$Qo%qllM2k16<8q{pR$5`MlGy0jTfOnjp^m7sGX%N?RXyN4*3qFx};{MgdR)g+x;^t +M^K!se$d>B=MajS=e+vm-eQ#(Q?WW#S125dg@>}TKSun{a&;~5F|h>032KVOR;6mBNQF{V)CeK`Dsd? +`GOU2Ol~R&8y301*lA!h(gBi5Q35oYCdYlBb!7$z5vRcrOC`OaWdb~i4Nn?yjV52%Eiv2RCw6*H@AeE +FwpLu?>d<7S=?1|0#4*Nw*vV=hU+4>piiikTjH8(>g-*}wocNFWwJ9dHkXmF)Pb9ewxW? +i2!b8>LvN%yZC{IV7>wVrDa-!y$L@KI{TYFw)bYYMh0ZA$kC$Uh#MX?_*x<+n{fb)8_33H|F7_e975- +LhYg7n`0X9KxEW^#tcKTU`bq21H;g)gV&gLx9iu7e~vwotmn5Un*);NuO^r$WUuyveS9ay`QL?bSP09 +|cWjwU;~uzN<-+{wbeK=JzpYqQ`P`U+j&|gl1BxN%!en7p?3sE7L!a9-p{2Ku-2RtHvaw+=n|^zWJ{m +i5T*@IRwlZ_naS=-O+oob;MP_>{|W`PB~tm*fGcJXLZhXOK-@TbHuU=F(damp;ZhYZHhgz` +?kgSJgsoh8rC>`3bwN +>Uxj;HLB*>miiCuzau!HGciWO*}o-GoR$MAh~Ro1jmMd3h2)C!u~x`wEr?SflfNTLk}rRaJK-8A|V{j +CoLX7439_f$oQ$mJ!iyQMe%rn&i}Jz7zF++6Hfb@-WD0=a09!ytW3^3wvQRm1Y8>7X-ukTuF6)mT!ecQAfW>-`xS +vbgJMD{WwxvLx!&5bv8E;Ls7^yBhS$fErjjzBMqR0_~2obTLZdDwx|qc)hYcnwx! +fiR3DSAxrMKHQIkR3@&s8Fkdr%$(+(&|x|npcKeTIv4`*X&UWe-7KCQ@an8j&4Ppjq@1g>A7MIUz;?o +8MCN$3)wiF%uo1Q*@N;3+P!VBbEnlSaa6ih=SJ{daAV0nUh{bN)yt?vs?=$;2pYl|pi_lh?`F(ZM8@d +2}2Ond|1Zt4ONw*zmyqAfE1XY`iQ`nH1kHkh%PcThCSK9Q;$;SV*Z9X@$s%TE}D(?Ks=X) +iDK8wC$k;VGHSuPe-H9=70Nd{K;{_LQtWy|qm-SX>H&%xN&nh)y3bPPCs_vMlrBrx0?G8c!C>J_; +uQoutWi&i!aJrn*`1k;fN3j|;zxcy;UOVP9Ys-W_QAAx&9p5U)Cfz1L0xJw>S)nnvV6}+FPzwCFnCK< ++VFMiT3&1UAShe!ph=N>`R#2X7g#iO#nVR$=Zl{J9zR8Fkpx +{oz_ZTy_7LUCmq}A~|4F&XIM)E@)%p=7Q9^Jz$cVPpb(nG=gXN#y~s(>ddIA(6iZ1X~e-KqcrP^A@r+ +LbNq@J;bfL@)QR_t6au;XYbKw}M?&J>n|IJ1Tm%Ft!Z{7{8NvkrkqiA8Alxehiz|+Uo3>Q^NhkYcg5g +8x4X>qFUT?yv!MXAY +54qVmCV%nAz0-5jAL@yN)~esYkvQu-O=0u9}7rZf4*F|xbsDl*e``lZQW)UM@vA=d-3;OCisKiv{uJ +m$W)FepnU2|b}Pw~K`X7lDd`IDI^!?myTzCc+o%Sh{c#Q$)&wm7*h?miYX{m0wn;?x@4=`xy(XR3?S)e2+9OE6@cjf`o?m5;V +JEvm#0GZ!*^D_wt?e7h>UZB^`XM-gyG|Bszqx)!U!1$bdDh@++TctNrFL<)CvyO2CU>=8puI!ZDZLsM +6V=J~Z+Zw(|PcI=Sy8T31bh_Q#|2*Tmlx#~b(|kkR-Fq +Nvk}mF#EABuP{JgoGTK&~WR1OUo|r_FXSFInV-#5Do}Yca?)?ILS!V;4uttgqMP<={ZR@168lQfvWrM +j;MN7!vDw6M|)aRRvpo3^O;95>RG!J+^@OqM|(I=LND8<>+*H60_PoD5Bb{G08l0;Mzt!@&ouJ$u~41 +K&@hjA`F;r5fm8@C6Ub~RT!hHm6<^UTqmVOYUgnb4O*7H(vDWzrW1d%iu!g%g`32Co}X +r#_3@DQ4F7-;$!1x=zBrDiPX`(apQ^+V13^cMaEEwic2a=Ibe9u#wx_Wj^NgjH`Nv<|7#J|oavANyVL +NW8_nq6>YvzEA3aHWemn}%9f?C08Xr2?0c!$S@j}f3%Qz8;CQON0z8fq4Q_S=8L{q1@(xdyjMdwos;F +mPG>EaY}95S2f$#$w1bzcBaKJUV7X#mobRgDPPxqL0^*!Sgpq0)22;65W9skJ5kn$prD;6^AI^L^yVt +^KQhQtcR>&PjGmBuy9L8+A?=e;Zer9JkQtLK{ZI4Sc;lhh2gv5ojh7N9!&MvI1$*$+s>1Sj&e)z4g=O +oWT;Kw3UJtzKv2hA%#--Wc9c=4O9_3qfE4XPeFh&D2FH$TE$MFbZ#G^}!mSUZrgqy5T7}Xd=(QoV!is +9V9Scn3?!29CiVrh&t~ABb=7W4kCm4~Kt5`uNBVVC?FNYPbq@o#@_&CD3j4JtYf>HIk*P2ajE*+TEJo +(z(ghBXf&5;F`=#wsy1%$BSeZ?M$^Ny^1WXLg}o7%&K%kK5+}GX2+nAT^RB2J +v!&hlnjW#3cW{(@y>{XVXQT8>b$NJwKgWu$yymF(eZ0~InzxW=V$QZs=c +XlW>=QD8#DbRbAKNw=b5@Ir}pcyg-2QG(7ll`B#7bWJY;0Z>uz*(E|{yUWw!3h-s-+{0kRP|w}2QSp#;cP3s)EaCz0^^esRi;5IwBJn1g;#To(Kdh +s=B=>}dD!xS@A|%+X%^6dP{DUl{|`bBpKE*YC1HLXH@>Vc}|`_<5wP=`OHZC&}sdPi^z>-WpY%DEeOb3qKzxfd0RUV?{c@Ka +|`QPK8LnZ%Q>l{>OXCWZfxwf+@S?fm+A-%_oFm3IwgR>@HrP6poS|Ft`4YWFCxCYpa%L$*?p@^IYw+$ +@9S?miGJLC=Fea@(fQ(l;7m&*ph+rZYXst{yd^=H-$N#t-ag>y7j8LmA+{FzyJL|k&$^f8dML+VJj+f +hiHruHn&^`I~psslhG~ZQ0H}%XwOW9Qy{ovoCx=YTZT^V;|EF?aW9XC2*M_P*`9RK?^a|rFjwM-+*bqBfqkh5SGnt;`rq=%70PIp<{ +;_HJB%zbehVxZv!DY;#Ywgu4o(}9d5N=i|caM}yyvKIE1f!Sx9Xy^#b +oz3B`apHT-+>_GUMMjj~UUt!D2X(FKM;0-!tClbu(HBORL5EO97sdY-qn{f8@jqj`yfwj#y7W|W}JRzJu6)>U!cW$^Xow=d40zj*%YnLTrzA1pvmlERDF;_&IhHZN_?C +C~p3xq&j*nT%NS1SkQEJUJN)*vhOtU*Wlfo;Wz9eyX!$no;2W=V{wb=k+6a)O9QEUmlAynW$N={azYL +ilZ?omE0)-XQ4{WY%*V#kIQi@dGv6_gUs{7*vYVw%t#*LqhoNx#<TU58jzN090gl;&L=gnLcGfCv>CR6|e+5%fD+CB8GU#9aZA!u$lJEx>X3oU +aij4l`6CFW9vw>-nMC~D)h)BZ+(Lg`B +wwm-{OfxObYrz3q88BVP@rh^O@&7^v-_-06;YpYpO3&FFX4ki%x({8+a#h24v>R(Z^?9WIz5aI4|8>ZPc|@7jKnr +NrF=(}kjJm#CU3N3jNg8s)Nu#UYUmbl!y`6&FtV0avDrcuojfnSYh-y`Kr8eKB1Y;oWn@@f!6Qg{hm; +9Z&)i{^V$kq#Rf0A1GEN)w7bR5iTK4*Ls|gHUh1!UI7tPF4V4N7foUy$dZM91S@-j#*0#MkQ^)95DWk +fS*2a}D?TcbQ+askCAKrVEx5AeL5OOrSrdMD6-9CL3Fxwj5sH!`d&QMC!r1F25mp2F|gDhDD7e~yNBq +vtvOYI&Y-zyi*z&$y)D{KnD4rMr_OnWFBoc7P$@`^9r~HC>B}I}SMs+*fN8S$jrC&| +_Hk>h-QJYT8=3lLG?an^kQcIrq3#%WzZ!e$(N+g*B8y+2o_}q;zY*0oi?_zHoHV-^(gI$UwFJIPn~SA +UbG%qU9ZRv`j8F4S*sjlF`j)%jiX~H{>%pX>=H+Fjr!iv= +%Pc%85oH169C=V$}&huRZk9V2)j{3{!OoB<0NV)D>819o@Cp3#(<o6O)s*%Td-iy?ojd9nkdl&5k$YGzbn +A@jGw1qri7Rn8Wd2Ya}xDW0}W5|!bJo7X>OlPFGfp##1o+zyD +1aWdG!bB`3~_HUV~<8;Av_=mZ50*XZ`K)9o9L+S$k!A^AQjCVd*y4@6aWAK2mk|@q+C1yycM+{0042E000>P003}l +a4%nWWo~3|axZdeV`wjQVPb4$E^vA6J!_NO#*yFkD{yqK3`!7dSB{f-FGxj^l-Rl0PDwhaQhQriED7$ +y0tp5Hwc1N1zy10#kDdoW?%Gb}gHWXviRtO?>6z*2?&%q>yLOYT%As5~W#3nQQg3!`H`rHMvaYLUl_g +!ZYszKyXpJ?7yIsA#*1+kb1fI8l{qw8h#h0&M{P$Pi{2`-PFYD#NpS~KZuDoh0{`RN3SMR?mH`VIxey +2;m-3@iSEgSy!ruy5y+AdX@0Q;XUKxL2SkC>f>=H#mVkR?^uwOy}Dil%LMx)?tf>$>ZQ0@^lY`~p8}= +v}>hr=jt4an-hsF6>HRPM6Y`Vg)Vf>Z|=wW$H~=t@c_>i?XS&x4Oo6RX5bjvU!d#zpjRxcBR0+-|y}~ +KpOCm{PpYlL%mfHo2u;hU8Nzu=C7M-t2y75tCi@IKl9g2e|T8~Y!5=ya@lq5&@S6XSEzg7e7oXaQZRj +WjTAJ<8~&;bhr7n`^9H|U{NLNVoklQJA587H@HwNu1n{U{yCdd|I+p7#fzQ@r=kbNl3ogj~7d&iw`~H +vneyG=XEM@!p+xJzsZrWS_{cF>7WX^y8y6X3h8n7_r9{twLjz{ztxM=p9Ew^Aco4u^o^%mw*nJlRwxv +htrdJEtG`4(v`9ueg8?z%rSq=tHc7N<0_&tXuptS+*oRa0Vqmb|^G6kNMb2K<8P67INam6QX&ZFh?Vm +?(kk9=;{tv|AvmDJ@IFcnmE4m(;|#3f%eK|vQ=~!lBq{t^{0?=HAouOobQg~6q1-} +s5CFpN?vi~E5(R9luDm6nYIO}`C+({$IqRzR*=4!gf#mBCpo>0S&ZGPx@dn47%OR5Z^40V2{#wA_mzL +MQTvr7#Y@~#G&K1+kx~J|(IMG?d4UDo?yZsdY);+8VcS(yQe7kCI`=qI^%jI1HkRY#M?0M +nO2lUTt|6FeJi2Z))(eYxmm~GvQMDecAMG%L?q-aRM48U?;!`PFGmfhg}J@BM7;`DhQ|w6Ng@u@5{QO +m;DZw^90oJ6N|gtwVr-3c#Y>!oB@KDivnYsmKlJs=Rk{bcrRg|Ef(x&z;kK%_Nd>FY-9f$^kQ9wjU#) +(#-&{evfxD}w+`jXWcQ`H6T~{re{R-Y+URw4pFTLq;A{s&KyIdn^b@y}x*Hyqc9Y+K-+k(EDS?s`7L6 +v|vvvNSM{(J}DA~g3ozmt!E +Q_OrK(F-R;EG=3Ss+{_guny#0YtcBln58i9MC36Y@;h6CCG5yq^L!t~QEo%jH?XWVxU@yo$(N=K*9){Th6)Xg6y^qSFdtPZV5hPf%ER(3nYl* +rEXe^zgSusB!eBPDUTb>v4cS;Lkpoa!b3=gpr_!DYYG{Pscu4ZI^&er>;nORxCSFSDa5b<(}6E +M)CjOeP^hvY4*Aq*^F6`;GRSF5H{gxR(eq+8|E0cqE}BdRbbYB1V*m$U{{bJ2>Dj2*k^knaF!P=RO!P +T5)V7wJH-@LUT$UGe;zYiA}g<`a{%)Q$IYFAl!;U6~jc2mKh!MET(%Oq3svXM$m;n4nO~y%=~+u^B)F +{#0^{>%JB<+Dyg|2kxf2X9WrwKPY&uO)X>Fwz%!e-C2T)7&sz@s#(H!;GA?|&%yXbxScZSMvF+ +}1wB6>60g3?Y?hgFhW<5`y{wA4m^kim3A+!bz`)*4S6!4L0deu74LhKkrk^xn8lCWlq&HVgA5&iA1Yj +>b$?ko!kV0qBt$*@fhSAVDmP*RQZIi0@DU}y~R3axDHbg_D91a~MKj&LF21#>yZ;kv0l)WC*ilDb>6^ +Wvt$Xr&U48nf_8SB(jZD62qbPdwA4iUhS@gHE*r0_HA8VJHlAU3TpJlF#BVXl7!XHO!y7Y_Z{dqoE5Q +96ZniMPDruOMKkJ@Priu+)o6>!J(itnE3TlIjg`hxVI&FL*NW;s}d9w_Lrfh+F87SZb)q)dTv_%JVAH +AVOKn%03I9Jqigth3lW9s4;yI>O(Bf}xe|b;u3c(l@nl(9L-M+cpnaHT}7Tn75Ra>N@p8$IFz7&j%?YGbkAf*t=ZRRwbw-gq6kQ4JnKNk71mcst!P$%tUPu#1pD9S#mr7gPCj8xK5vS)fKt}sqi8|ycj6gSU6@< +sAzKT=#2#z3hmu#H?%fUJ*#r?0b{D}b<8eh5He@xE}Urqj59@CLFfG6+ySpZ)rAO@3&Fb@G|IQBAmqlzRndOC?&_7b-Ih&%U(;>UcsV)3ZgGu*z-;kMf^oZr_g*LnJPS8DOb7#X@wR2hIJ0 +qE=y&BwJu+3@K(Lg^zcLssWPB(Vh7CO&jXH60|8!w5HxeQ{_i*G(VdVfQI&@(i!HbF5!SU}G1~W|ZE} +%E6-txZ5bA>(}0+C%Wn5b!VXlBk^uo`mLniIn*SN~^|<01E7xZuJP$i1m*ig{*@7Go#J3iW8o^@l9d* +*X7bi$-@y8E|6v@l7=hybB1P#M5smh-B@%db4Y47>tZ&bSF|?t%o&{W2e$7ANGx`_SD +9LM;Hn{y*#0l1+n*)p}l0f#Hlp#-Q#Kjjvz^gf`DH8@;oyZ6Mr!8n9Ad66~O6m%yA*M5>G&tla_V1wl +`d77O1-NZKdh&0fQSc2*qrbR*VrG3|7TEy1GT+zvh4GhB;0*JJM>uM;B-J&{OZBw3M76E;lWr@vcAck +xz)f8JMIO+}!We*aL#dhB`={yjyFuB~>N|m4Fn#lz=z%noDowLF6pH98NP(ob!V&U4V^; +$rS`E)dkruICTxI{>Vv~XcA)Cr{^v=!|lUTb>$P95NxS<^%uak4y{zOnkUiD1!hcBvck3Dk_JFt+?C6U# +0>l)!UN+kDQSFpZ1WVO4+JI?+)NMPGq?R*2*xn{e<(J+3!X{MJg^gRO!U~TaSzagY1J0=$nB3*r +=kfuAHqAU>*Ob4nk}f!ZtQe|>;K~8>>tkDa-BBuFp4@ravzHK-#mBQM*$OZ#qhmK!=2jFC886Xq<^`o +C@2FJEg1C|G<-n`VTuY`^h9}&*9aiU`?A@4`F2WEw^!d+%ONK0hcumQKB(yrpr%v9F@WX+#G(=)VgRLo><&fv%c5bKz%A0Hn)-)@n)WDz$lV;sW&EvSUi?wpro-M(K +HE?E8ol8)Wpntoj-gExmIHZrY^nHXYY$ZL0r)-a9H!^2a%nG2*OD(fv_QVYq${rHTh~{=G^uSLNR1NW +1E9d*}zunc^D{IH&^Di4%TDTn33$Aq#4KiKVYq10QVQ_#-8Qs@zNG^o322ccX;ni}7n-ct#RFyq%B-( +UL5py47Yy7Ex`v(o>@fKMyy_vbdtotu6*rUwpByuCVV-d5kMXI^1x}LPeR67Au{WtN*j8V#@W0EUGnf +{UHk{dd{9kd?x1RQx=~xx%rfZV>_q6S!~4R>VFw6H3A8@#Zv8`I%ap*-i{{wSgS!MT?A)P9%R0bo}xH +xnPDsp<8zj~>1`eXn4~oL9E%7y6w2j|I7NX3HZW9ZLqOV2Y#5-r(dTGzr_k*j8Z(|gD^&s~owA6n@J3 +MXI=eOB6ren^K`G_i0rXgyVH#>FA@AsZ4GLD5V>DMCrNEuF1Dhaa-TR?MzT#-{O*`1J@(SObC10(RyL +M0E=Dx+%7Ntn3=gSgP&#&yMhY@9H97a4B!(&=+)@74NS0ZByAEkNuxRahMVt5EO3=oAgDJTVHd}i4FY ++GsWtM%U7#g-91RO&v}dGc$1uk^gv8V@>%Z_$+Sp~4~j_#7p5kvvXPNi2C9=gFG{Hl~HcpB53ZgqW +QwnlVbnJ-}y0nGfz)17IJ0a{EcAqM8&{=w9S*5ytqsR8-Zms5S?5=hjTuos&0BqXaBqP1}{e!MWp{&`e>;^8Pnnh)LIHrhal|rn9u^-7I +3V>sEzHl-Y=MgY)uAwq~lj;>*;$4>#!bA&4I;B8BIELUK|`jhNKigM#wXL48r#b>yIu`$6jonc=}c+6 +!}$$)L|CQ}$U!-k!2ntShGzqP&|DICxh*e+rSRCqRp1Gx6M4h!)%tGb0%zdb +D{nz+r9K2u}J+yL=r#?;-cv| +jH(`9d$tRT4k4ogxh!v{_^)Mf^9EhUr27Cgjw`t}aH#o1}#hBdan7AYIJ(DiyEdo}_X=t+<5eJL< +~DMHh#|hZ#_QAzgH11*G3T0bc_AQ@vSwLh~I~+&AB^hm0L>@Dpb>|Pz +6Fq^x#E^b|m8JcHp=;B-AGfUeFDTbl-LZF8X-CwoyfR*HUxmE1;u9h)?xlS@pf)LDqYkgey)UeR=11D +v@Q$`6&i>FrcDZr45wOP&q7+uR?0D6%h)Nw(rWf%s8(ADrCKpFJJyI#9UklA; +a%6dVn@{>kAKX*_S(sT)@;rNi!YqP_ik2mSYMG9JC8H2`0#9ws()tf*Nip>Iebko)$J`JBL=_@8NR +Ps2dM`4EyvgS0->R7u;=y^G&5)?H&7Iw)DW99b7)I*nYZ_?nxJY>6GRpKUX@#Q;Y_VA%Obl>&)rRVm- +IJXy?r;j%Z%yM{*E$51F7jld+3;km0a?iVrQ}?!%Eof?CY)|09r9%xH2RjPDHe;?DK5mx(fR=}bxC+P$hbf`-j3Jas+%~=Hs`6c +QfU21a62Y~?wM_!#bI(?Jkj10zd`sOf6rrtiaH{L)o>M-ubkItHei&c-ctlJ@3CJEL(XaGQs9hq=9SL +-iVEn>J%8jAxw&+BqIktxKU-4wG;hA+c+|ADd53-GnUS* +)f-CJWZ2YI+lXBe~Er5VTkPBspv8lyUx?dwQYQ1fz4W%MEoXSIpP(yZoXxc$A(;N9ct +Z&2F5KM`RHUvaY;!t_SA1Besg7*&E_sk%BjTX^pvcvPGQWsJWxTKe85tIpwuHP8+<-DZF!eVH%ze<1x +^P`Qp@@aJf`7(^SG|E)t<2D0w5~RDnw-t%6ob!!|^-;Esv&VJT!(Z65BR$m@$7B;LIpo+QJp!s8?<>m +4IW37@%0=5B0FtZ$w){#<$|Y`k`MJg<3*WJ#)siG&CgxAzNksTs+U5G3zF@%6*e3C|>=MVeiakdcL}8 +#C+Y4(SKL%VFpo6f>Qp2{sU&8B0vSZxK)5bh{4EQTv=yPr&o|tYqWXu)N&OZL^D87ERYbK7o>Deb72PuCb}sb-M(} +#Q;|uG)^?8`G8U)9^^Ol3>Ki|~KK5H2_#B-RBaauK-uHO%k$Z&xW|O4vNB-kkIiDoI$Gr~K?uh#x;dM +;0i@2a=F`F!P_5T9>r$Ti_8VPZJVvi>19q8LC*;ag2wEh`QecHqJnU12$V4-WC7-Hif>NX)jmWT_?0x +L#?l^^8JTh!Q5sR_E1g^bbeiLUr|Ah5S<;{MJ^Fp+*gd|iXY6l*>MvHfvOxE@PLwBktdPrMLR3H}iyb +Nt+~AFE8Qj45(vzj74kG&m4ohm5LWzN)Z#xNmiM%pE%D>@Y#Q4R-Pc;eO^LDD~&eBu=AOqBu?ID9*!Y +u}OFPxlRvAF^Poet#%$u72}c&4__w&CDTaI}AVDta?9Fq>jf?*4Z +Cax?eBkkBV1!zxP_i-k>~#{lMIr!~S2P&X?^8i$v;_WP@TsE56utB8+L6nHCRZhlcYbuMi*W5&Fh+Oi +V&+BolNjC;9`UIXwy>fK#a!ptIHYlSaUQU-;-X~*Qq%4-}s`vj>PwA+fWS;QM+IAwN$U(@4{Ab9sgdN +f@ydrze2lDS|q{1>?_(zz$ny*bhb?#w-r^4drdn^Uc|?UrUm5!^TgFADWz((w>|+{)KvQtCGp30abvG +mA%@n@C*~7kNl!;|3h6A9;05>o)a+8;4aN+BU5FQ#TC<=|kH_bsyR|s{GK_1xalqH*evi{8fiIs+pnP ++2jw0{0IuIP$v9oe=dnlbLWCAJ$ap%M+VXyyHYJbsT2Ot3(MSHkAm=rUVrBEXao)q0_Gf8;q;A&?qfb +Ez{B8_4rHJ`6^IXmjU@5fE3^TMOck +GkMRPT0JdiBMNAy-R-Gu3?6EQq|+^gD**`vjNYUYz%TSw9%L%T?Ojbz2dvyt?`vw2Cey_I_$ywDF3h# +g1Pk51oK)^;>;TR-}ov72QVhc(Bf6>$8tw0^|Vj}ZWKNJ0mmJ97$QcK9^v6r;G>K9!L(z>ntEu9fT;>*&+}t}7(XhD7HlgHvMD*LUF>Wl7f*RTGQ+r< +8$mjmS)tz;W&VMkyu1+My76+fIx@qM;gt^MSX~&VVkPjjY*QoQei>NJc@b@@JZ_3?>CY>7Ol2BX?5G9 +)X;{kg8OlWI-tS%{zRwnq2*q{^Cgnl_fJ&C1GuVu%rcziX{NJ6e}I)vVuDu|g`@looTzvKO-?P9zWL- +RdD%(IN{uFj2(?b*w5`A;wt7}EM-KSXb!tm^kQyWY~QK0h(r_-vV^&x}Agt~kF4)yXG#^@6wrN8_%0% +rhJ+zAn3L`d0tg7XKu${!!B8s$9Oiri;7-+?LM~hf4uO3$c?``GT(P!u;M{8W$f&ISzNFM3~u`vapRX +VKoDLpRSBg2kg>f+w%6|_PP=)_V^i(3CB%8JZNxiL_vr&<%G}#)Awf-dL1XXha8@z3i~3;2&5F5{5nOTkasF!=JIb$^^=Z?qd2IdDgm- +dG4vna4*&@qFTskgB>Og)IG|*x;^1F*`$JVb_({oAL~=;#;CGPq;Yoquwow_b`pxZb83!qJN9K-t5|L +NYobELg5OiVwpc0B+1%TU!)s0GA{$2_bjUxSy&1|b`Aga +L$=B`sy6Qc@Q=M?nXRq<6+p7=dX4k0eLgSG7EPOtrWk~=DFNIIp$F4obXZE^++0$1zv78(DW>Sl* +S}nZ8zHroQQD4c*`p4#a@u>@D4eV9;#JYZzMPY^uudV3dBlUe`;k=QmU%y6&oKJBzl~xowV``m$Ok&r +UM9)84P~rl5A6ym@zbTQ={UpPM82pMCN9v+VTrB>Tk|Cyw0XjLg0+?~-Sq6YXE&9iMO7r +p4nxc1XM#+U^dEe)icHpJk_?pJt!^{FhM)#anjD*nc_NvgFlnk$iW0ddf}w6WZ{9tX6fAb?yyi^HDKR*rSd)^_t%;3(T-nGJAUD_^}4;@SNKEdQL#mv@bjPv-kmQz;#0oc1@Ao>yS9y +Ed%La%g*cCvb$gifM%xg|c^pz>dE^z)Wn%P6kdVJ~<|!@-#qF5AQaXcgR-gM66lwJn^=3|~%V~mHWPS +(6ndX|7`V}24o2C@t)hRrmp9Dxbru_NIEELZ@nb$;|?FX-2bSaKkD1HtuPtIqndV_P4ej)TCVAlfY=b +r-Tr&;nTf_{4OZ{7d~wVT_gLDN)OekxqrSS$bS8|iHGJ0sZ_LO2|4T~=p5swn;+P)h>@6aWAK2mk|@q ++B{9)4%=$001ft001HY003}la4%nWWo~3|axZdeV`wjQWpZt4ZeeU+bZBL5WiD`ewN_DY+cpq>*RLS* +WN)4!k`g5uXaS?~8l!PswAxm{2n08w6JfSwNDS8g``wX}EsAosKGcYq=y><>zWeUz?5grW)c0dvJdyl +xEGtEB^IA>F`l#}<*zPAJeL3!>=k3sQ`cUr6DpOSsHq}PFLt|=ejo)z#e=FH~d^E3~mlBtjr14M|bqVnBTggIAJsmo)o@ +xVvpRe18zn`k|rFbNxp(MsL0>^gU^r_Pmz^<(1{{ZN^Dfvx}`#42e9kzQi!lG}6fDma;_OMOL9f{k39 +J$rG`fdR0Gve1Oe|lE0Ax=oyh}*+%LJcB#RphQL%B^w|nUZU{+rI2ojZPRiZ8b9rJjxx( +vb@MumW@uJwcPI}1G>yer&T5cb-&IPA$H1eD9$*k%5UBli%Lz*O`^|^qg#Fdh(4 +m38P=m4r4p=%;G}i*`XJ?g<6}K8iJa!8Z}z{N=A)@0BLOFG0fBT;`jL}wYx)BejN +S2c&4$9cfEH@c>^tSYr~^;{Jy+|y^@sWLf_@Z9>!%fu(Fj1A#g&i=*wBx4d=Thl6Duhi0y1N;#cl79! +-*jUJGK4cRO(Zg-5`7nQZPS(h1EP6u6xMMY$n8VQCv+t^${k+3r~O2pL+^vPN1)EvcMzjIgLHa`tWcn7 +)M)z5Lh4(A=W%)YprZ9M;&6^@ZSaNwkvIhVDgy*I(~T!Vg;+?W*97jH6BiyHP{!ig`y-S6%P(pYOB9m +yhdD>8oF@0brWvG`~1o%tw+*>`EL#f)TKa?MuWD&;&!~yXgsVk9zJ}V@O+A^z|t4xXY%4gR?_>7XhA2 +g|E?^8=}Xefzl}YUg4LOMh8s9Ze@hycvDfA4QJTp_UJWc#<^{W4ZNeF>$-M*pL6#gie`j)x4pE;{{m1 +;0|XQR000O81DB*+Q<+nopC|wTz_|bb7ytkOaA|NaUv_0~WN&gWa%p2|FLY&ibS`jt?S0#l+eVV;yS@ +VE?1o8+;z)jSbeM|K+VZSsEos8)nTd@y4}~Vt-LOD{2EcChYPE6Ve8Yaje%OA=$y-%rT>!G>%fx!knX +no_A*(7YGb<}^C^x&h>9VG{chS_F>|(!Nb#+~}S;-G}dDE47HH8-I{YqMG^6ttsxLmFIX1yz#ysI1Yp +zMmxWzls-!_T|hUAet9PsjH%_?`aipPwzi{O4z1{>$^1f1J{-r`ucpMvVpG`%;u$Ag?LtGeEqLE_)bDsMaUa96J0TFk)T%X7e +$d3e+0_RV#9U9O8|Rc-}kv%D%Vx90Ivym(P`SG6E-wkj%zbi7zr#deytMYp7@w){5(X;p8#8~``A{Wo +ycs;5m|nMZBcl)I(egn!qzVX>*dFHN&&c=6Y~Df6wF?DzZKEuhS__!D2gDBqP^X|XBtcHb1H#S6aN6c +$8VT;i2!@R~2p!|t}S@4m*1DgSeNyDRS9D=&QNILWf#WxFQ7+~g?|(_dbnKL7e(PqLBs!YG?(qjhnS@2hTP8^8MNvv0rt +=GEVzwGWS)U)0rlbno81Wm7C~u7EAtUA`*dNmIb6H@mVb#?9!v_Q5}lfDBKIcO7B?o)c}J!3s{Z5#Am +x?u|yHr`fK8<)@VeegcNevy&B2X?yYpTfNE3ZQJGBRWXCs_wN0%=m@Qbp8&A=^9+G6rj}LCEdCb@7%& +0NUhnel*fH1Sgpf`H+2qaJVx8@GFqKPykm0cEO_6ml4(=V>!f2ZA1Ri$gRfNg6;qJP4M{V(0v0cXv;b +zc`Xy-&Dh(^A!uMus*=<8LPcQC}85+qi4Rb+tsts5DvWVVEL*)_}MxGk!SN%rswVwNX~zozK+%{IHBp +^V>SqZy6-!!+Y77@qx`2KGtwVd8awQbKot*HI4!R`w)woj54%t|~hMG0p0W3lI#1D1t`|b4DW^snz5g +i-qfoFbZ&hWDpU!UR|Ai#w?U)m*sV_73dC0_yca_+u0XtbPjMZk7@R@2FVw{{bX+EdFW;Pn7W!G6-;^ +IGX~-sz*HW?O-*gMJ0YTKWF1!F9`d>h6q5K@y8rS +>$HblLf`_tyK^${hA9Ah6R*~|Ur9AtETk*%)sCSP^9E5MTG>oxx4b)>+4OA`tpqwv51pJY$7ZE<6-nR +)W{_aF#?m3DPoB7x2Hw2oga!KGWP?19XQ-cnbx2o}*zd3go9VN>spNB5V|+VXvtcl7s1;`(WJomcxJJ +1@GMqS)RIxf-!!Kw(>+SGQTa0ZCjm6BbJ!hft5XhWM&~37B2fDokSR12Mn@!8~azgNT1d%^m82$Q|mp +j%pFm;2N-EWR_sPE?Kx`yoowe$KL7-LF933(U0^}M&`eFa4C9_%VbReBhgY+ZPCACW)DVI9BU2C?ZWt +oIdoN5pbY$;dk`G>_{42F8`FMS%O(Lx{fgC@Y`>*9*Sve1+ayj#qnRQ|ocTD~dp(%{l(&VnynsOsL;R +jKtaxOidSx3@ra-%@ii-|*xX}vK$fCi&F7{Q0|B`SR`F-Fv;(Dn?GmE=1I-BbUg$zMQ)eZiIr7L%B*$ +#HFt@#Kr#_iq5aM_aPMfk@ycoLeT>V^;qL!wg-!ACNR#{Q)d`-TTPLk|JIzk}aaA-&7b=}-~xB*a;5w +nLctISup88yw1;HwbADEBoe+sM|9G=FOX-p(CdO6XRj+3^_v+%M3WNf(O|34o;cH1)OHqLOk?hA7rbc +ESGInckOZs40+}ldWpCgP2CNGsc#77>05?O^gUTweG5>nFAW;>y(JCay8~ys%kD~UEwqYQZp#i-M29h +yvmWD~pk9jS2?eoF4-T5$pN714qO?T+fP?QMil-6d=y!r+PW+OfOud6#5w|0SUnU0hIgRL3K>$LH0T7 +Z^BS&L?TiU4b(uu=12c$z6Ya$dB=J8>9jE^SXvdm2LGatahZ)JA~{MUbU)FMbD|IH)U!Zh<=HUesHR> +yyg(t|Vz|F#trbGs%1I%EkP=5f}<@gO?R0<;JZkn#ZS;A-rnaiZA*9_xb>ypujR3Di3uy71;$L-2YBd +N_10q<85+e)kjQ7eq(z9SAr$$|d8}U7K^|6YpFJs*m&n@)Xpo<^;`Wtdfzzz;y~5P1zd5z?d3OWjDc= +lS!zAw5SruX>C>SZpV{EgBfgPs1*{tumR1I+l6y~S$EGjaArkwP_foiDt-uORG)ueth&S!!j!gkmzWk +!D5+Eh{r0Y9HlK6%a*0a5S{L`2uk{4PI@jK18u1ihVbU|8=VWJbglC!*RT5S|I`kCNAf@5gIjE_6mX} +3`_FX&4wklV4BLXg!JBuVOA_xFL+`i1aadeIg+T(9YCs97Gdk;hwlZNa)z@MAZ8F#Xn#%*u~=V#G<+w +1tzG|oo;_Z8&*RbK?|0eh +RoP}Y^}breIX}y@^O6+Po4R?6%4cb$M^;>1l&cc{s%{ftz6Ofe);EAzP+Cz+HN_A6vQaX}4l*x6p+=k +Qv!{EZ(HRyNgZY^&b-$Bo&2|Dv13pRrUr*Jz&oM!{nh5A +2Y!y0n~ym~#!iuR2PEyep?&xR;tG8TMp8;$}Q{LsN3q2jroE#teogXJmns=CcqO_6ta(*Vye+w{?2Tp +Qd>oC!s{%6G~lS?{~uz7vfHP3Wi$F5Gk3Ls9~j0h?_k^TiHI8WOcrr9w`87Qa6xYvoKx-!$i2*qo)2S +a+2G>VZQ7>$KT_6cA!)UU>^7HSk4p{<9X4JAPZ-&YiE2gsl<`#@YzDdSq|1)`5C1Ere(xZVBtg8WC3& +0KmhxmC1SpC!qi`a@h78%Lq|r#{)ty{kzYsxiVOEG>RJyKo7!ir+Fepx8sOYIaD@!nRcY +oKp5zU;+I6C;^)@iSohQxVU49`Sj)M=c3_}gc^279g@F3ApPdgBYl5m0_^AZp$NhKgnkrFslSLXC6=W +qF>GWR{QXsdfn8r*qXNhkgIElXInZn +G}yvJJNiy4zKz*;cc1BhPe4>%DBlo|ia7XL^|7DHyg@Mh=f@seA_wGFxY`}%BpWhu~R*X&oF5vTr+pQ +Fp}AuwZA8lT;IMuL$7u;f058IfHjzs+vy?WY~uR)F^1MhR5D%Q;+t8SkoqqbC}7W%gyU{>Am;iL4Gq8 +NgI-@eeb^U%gm9P7CZ(G~utlAPsFXO(9Fu7wdxbW0XE%Akp|jkra!eNeTv;AwZ;zd&0R~%K^5AJH-Yz +o*u@&j{(x{NgS&=m8d*NPaIeIzd>JP*WTyu5#TgefH9bxXZ&<~oAT2h5JW!Fo!j$u;v9eSm*E`ZwDips!_JB85TCRoti$6+z2qR(c{ash*z@xu%f3(`|q!gy8XkNpNTO8J;9S+voN;xZOv)NmNdWbw}*a7GDn)!jEH5456AeQXzx^;X5{N3l +lZW!$Le``ixL}nxU!l-5Qk|UOdK4NeG+*G-P5xZ^28W(w|Z?6PC&i%Xkli81D~~=vlP!}iZs5ontURl +2*d03?2zk-F(`02oSA`!Q*xf7U~b2RC>cPLVYKu`E8!0$v;@Eyx0Q*gi9yaCh}uTU@q<`qO%;9`=V$_9S}9N#C;F9c@uNUuBe26Q#jj +wbb67bSb#Y$h+qX-K#o^wVUTj!kpXS73TPQJch69MGrX!!zUNJu3cjRrR;BA{_#Qr~T#5k5EjwNYYpy +4Ht^VUU}7WFztu1DT`!EkAzuS4Eq$!{Xwdc?mM`Ig!Pj1Sykz%7$qpo8myEs+B0Z0sd%9fx2iG=8mEw +(}RhU`dvWs_9=3a|rbK?C>c}w=n5z=!6aqLjA$1Y1V&AT9`Q^D|>>RDbR?AUSc8(u{3}$F(nK0YpGVjXkg7fhxpSN{UDHC5~eU#9+J$!k(_cKc1II0_8dzH+O_>|O +dH%+_S{f!MdINZ({Ghbwn65AI&nj0Vw5`kP2?FCcu$wDK@07$)<>{q`8y=qm|8}t*~NKp2L#G0j|peW +dmf-70o%jl5Mp&nBvLYRp65}E?0d1}szG(o3kkP)jm8b{X(>+ +YN`jNPBUvzUC{6&PIU!+pImE;t8%SE|8`uU~ZV8=$8KR1@f%)>cXj?%9LTCN5y+* +$Do3U!Vs4ge#3Wk7=_{!xhVVOa+u#Ar&*I+llFqOZ?1rN3_|rVPYHpyey0;i)@h?mU2mr9S%|xFb9Wu +h?qoTmrIO<<_@f*)+-R-6^ZbsxGdiF9oL&;X_k1(A ++nJV?qX0Xl?Og@FneU*dC`wq|PEf$ayp1N%6{Vv-A7m=!CL3ItRT}73ss45S~9}Mu4MwB_@H^t0Uu_H +9mSt1^b33#ndxWYiN(-09dV3a$wf;;eRV`<30gdBKDgta31KuDx4U6|=0I(o&Yba9U +zeLV@%7Yq}23vB{CLIM#nXV^&TYj+0<7H6$XR1L@l)8pLCK!;akGHhIkk7-IkD~AJLutwE&q9z+$jbO!D=5^tkeUERK^>HV}4B#DyZ11~Ju+*X*LoFWdPem +Ny>eN!$Rm=YM?p>f2{uK7IYnf(uW;ns1%l96$2e*33DZ(K9!W)gP1bamxy_~@VsLk;A-xUFFrpnVh#hI#{2u8}J{2{~RL??_dVdl(S9E?P>4r~4j|6g5+ +ggaI!?dEqsA!ZY*;*X1`>boo9Y!*;!lU&Faca%hv#4ED;Q~;l-j~wKfceGYo +<776n8bZ#JQc2VDRm)Tv;=a{?9y6Dk5r6%gtVufbRsu;hgh#k4Es$A2=~RrSk*l9|c#mzgMMnqXCBx}y#(xS%A=c~ioz{oUABO~KX^FAt4TL}G(r6Wu%2#i& +cJL)}-o_51P(&+EBQxuTtcI$`&RH~hqMi#DO~Hui@x4PfZ4pO?CS!E~C*$d@f65iX-epdCoH7#CYC4G +&b9H5UBXfFB#n@#nix*>07rQ2^~yrqiSr9ZODVN7;+D!4^yn6dQ4D-85y_6b+8f| +1f<^d9_}fICHST3(6$Q`%yJw_nsNjm{?ms4{W^J2_PS%7)QDuq03I<)1^(?pv&-}$ZdA@&Ng80=DlFOR{83xkoXhM?|aSkH=E5CDuM +5PxX|<>md!IJE53sytWK+##pVJcIuahYg0`Mv}vOYw&PljEYxtpWh-lAvYph!yQ0slCIh6gKB)%KDSC70TyR`r>;2RGVnGu7)vTK&E^!Lk7!%KHiRE +K8dNG+gL5`N?36qSI?B1z8SmelN%=Z~y|C#=viqy_l8G;JaKO}b9Oz+;)rd +6vl9}*F`flEKQ>XQsk1WX%A#Hl*m8b71r5=m2f?(3`I~Wv7qi?4fLLE?OTuPT<&%EHypix|}{Lr0uwiH{#1&mNU +=wPqIw%rfZ_#*2R%um8_FnQqm_Fui77;J05wR&&IsVIUy()g$T6=p=Xb;p2sz{M?PR6TJHX<9d2Q_$YWFAdC&9_cf#!Q2q0A%XNi(F#i~rz) +wurgV8@p{MisCOQ#S0*9YIGDfxk7iEy8TmGL +|p0b3@Gb;=nIMBxCB~Q(;W^_+ZCD!d^4kG<|FeKS+s%5 +jp4|AWQ@i-oVj3TWE^5I@^|HCztJV5-RH(4HB-;{BkF`u_0IlMAyZQ_!!y0J>q>S +E385gi&;bXy+ByvQ{nIk^*w_+vA}IzdbSOm50|Nnuo8p((8 +6USGZ3ze&F6!-zQZgnJOB3m_5ee-qC;m-~Womb-#eQYd_KCkq9uX#rog|kYMGo9(E!h%MQ$nAdGsk!} +;+3)9h0lYWiWc=y|zUHd&#g3nBD7=EWh7;S2Q|yV*N~`^u@eWPV +H4kENCmp;;MgzJXp;0IhX8HgM2E6_YifZ_ysG8{+I>&G^XO=6`%Dj0m1_XX +ElMk_*2Dpl9CySKN6|<0tSmm@=Rn`RNc6uEjn@~(2_D1{*-Qw@`oM^Yl`f976InXTUhLbBzm;HWMOeA +>I4vr%q#Ax*8OY4SoX}?i7SpyvHzy87F@Zgy*(t1Brazx +O$it5471xic=e>;#b?s~B8BV?aSmq=wlnpAlwy$Fc(xXb~MGW$Mh3L_mN(*8PLj#Rx8UfJmHMx7zKMa +1b*+^>MbII!iXAhCoX{Efzrp)oDOVtP}b6{8Q;%UaRjC;D^s(@Y(8?y!CYLRG~&_9#Ll$i`{}c!b!Jc +`7buh(`yhW9UKg4l`d#WS?~Y3oJL=uFNqq&{jF>jWcQhgGTurRPWI@qF#&4N{lsB<_SdyL(ViXwW^`1 +$%8CNk73g;F!$&6``>4u^$&tJApB2n-v`D_%KE_T0}*q!|6Uw8&S2YxZw8Rk&K#v}O23+1rd0M4*N7# +5?Pw9#B}k>6uh%;NXd6^AJ)$l$_iPIaE=-YRWSCRKlQg?z2ztm1roJ-<_LYmd{%4KgnF6S;p>$LWxD2hC+Cs+VGM6s^E%yioY-)tdC|h64@o$0YSv%<*TM>NSn>w}yEKN0{emu +adgvj3eC7J@;?gmVIdXG`dnV8}iuUFR^&NlVbhRTSYyXKL6g4^NMMm{!Uo7!f{KcZL%L<=k>&ALFm4~>xJF$U@u%EXJmLt&!V&y6z*h-=`bf4(eRX<>GY)aYkLH +Ar;ec>>A5HP~+hQB$24;L$1^TF(`&R8z$>ED(J&P$%$LFB7Kp+3*v}De^lL*{AQD==#YEiYdVUD0V=u +n{pbBLpeC{(Z2!9O?(yu^?{H~yc4g_K0H+@k&ELA#I4gC5XoXox&jO_EF*feC;Sl2*XvX^?WKzCa7q3OP{FepbgKqRyXBk31b~J|JjjE;kaPYq>l{6X4l=SL-1g>h6ADMH> +TpRnBc}|1cvwPg@5FY$=d^y`WAO2|2QWUIdRgTVC^!#ZC9cM^*QU!8bPGRfrq?Dwj!iKW`!IcfKxP_XJv6^)w#?=GD5|`h#aDt} +W*Cz0#r(Lhvpe}LBj%ln_cN{E;ZpX<%&+K8EiZHBBW3jErY4p^9+aHYMrmf$yQ$CCa_uv$UFdo~EKn# +g{bg~J8L^_mzt4;ArqH8P({uWf8JDCm$z{A&rr}43fPOg>+m3u@Wn8E+o;{jo_sz9;@NvNrxH!uu-(D +7WR+t3g!rj4L#NTwGwCaAQq<3OIr4U9}r)C;8ppmCOgrg>s&I +Q&}>B$EkI?tI9R9T3`3GPrvpo(!0LgwjOvP+04NcwpCzbCvbh#CJAkczHCpoZKNsp6d!S}w*%lcv9W{ +h5IXt8a>Cc@7<~qj=gqOu#*JBlPt!?33}Ztua4WLwulNOxRoEy?t|4!T>Q6H{owVm@*~$yKv)R#GHAZ +$3aOF*s?T%Ee>LO!}BNX&+K7P$q0XBs#QHavExj`_mSCg4 +y_35=ukKTWK03*?xz2q3R9HJ`x9YI-Ym@!@TU~7P~;_+)dq-cvVsCzj?T{JTfpSq6}eQ_T{k`w>(Ry_GFg>7QSn|0nUS +2z>^m=%kjh&j_|~OFl?(gqK>oll^$pm8Pq-fQdDxzl85X)D%p6yV>(2E!yyzYk ++Er8)9Qm&ElBz&j8_malI#o(cV8GGczM^X1{H0PP2EI$`e@)eV=`%m4I%83;p9XXIqpa?GtRG=$<8!f +pUQZu@v74nk(y0PZVGXFT;FAa8qw_UFmcaBhTRX{CN%D&*am^&EC#6#@B*P=FAN5U8N~kBJmsSmCIs?_vN}TyG?4R7_{ZZ4FyErBQ%UKEJXkT$-flhT%npg(63 +-;_JUzh6Zs%+#_fu!^$@T;2Z`ze>naB}53&m7DT%Bb4hhBI}@2@AIIQmpr@Vtl +!RGs>Av+>~3|68-ygH6fDx_#d;+7PRB|=UG4Sc-OfA$)UkLjt)oaxl(`2?n=hAyxf=TqPLo}H0rN&kS +^RD#hd^4fBrwEMoYx4jh4U`>vEG_Hbt@3h5pk~wynV(ja@cl`3B3N5K*%UKCY#zDJYD&PiLWcL +Vh`<${ib@j_I+EQuqT+zDkOC8z?s|Rjs1hb{z3yC&P$3@?%XeO|=?w%xd~FP}FKf{Or|%NQk2e`z>8l +uX?C@koIx}VN2}SQi{$Mq;Q!#=)gNyq +Zt;m_L^vrUSEbhf*ynXF6Eb|itM_s@JtJ8GYqHWN~<6_amaw>a#yx1RF(^1demvw@IqFU`xY1gdcbZm7NlI +4YxKD7vBK6l#s?Q2gT`RU%WaNnK|k#CS@su>TCZj}fUHc!A$vxkxJTuE))HN_Q`Of5-Gx~{AJuEXjW*ErLxXk +klOl~rXh1QXf=uU?jUmtpPD94nc?#lD$k&qz%w_J~HnLA_e#1ssgB)qYpvmqIaEXNw(XBYdnIzd35d$!98t>5~wYpyed~F +y~R-1+z{5-e=uwIaBpPJpP!=9>r?50HaCxm)-*4MC5PtVxanN3*OcBsm10I$x*-#*Bg2sIq+(2a{I_4&k0!gv_;zPbxj-IR959lfOfwmvj`u~-xpGX~Z>Ui0Mw@QR}7f;_cM +NUmY4Gz1$GpKC^*q_8)i@X}7XX@Ft{uV1@E@e-A4cU)nmq1acm~k~_|5vK-mY0?exuT40WvL! +5xvb~y0La5z5o_-xx834{1qw{vg(WQT0ul+5yYG)~uX@`WzS;<9BF`e1}KmdS$0Wd2Qn9s;AMH#3$<4MyrNvd+5^U1shYe37r3eR&|d9rvDG_L~Xf5ZXi)vSOHs6c`n)= +V(93Y5nbA~VcH6!jra8alZ@bJi13#Et%MxIxs8q#-xDr4y7^DhY|yB2UdF@Z1OR#j`X|lpUd!N0K)|W +F=60vb4g{(rIR(`FR8%Gn3*87R=Y}YY8a8UL3qD{peSQUd3Es$+p=bp0wPIzbXjjtkg@3b9tCBmMLy@ +6tTxfcros$p;C#k$hls)&s2P4B(J_v}N3J3K8{d2Pkcgi<<D*6kn_Nerp$nFCXIc(+08+jX1( +u>x|w(UZ#&$kDRP>#||!r7k^{zn~&?bX6EmC#i?667=Rd`>{GB)ohj;ay8Wij4`!K7Fh9ApvGam2I? +NTQVz?^;L0B2HyIFkfV0%&a&d4E3K7|uf7%BL6meo*jt9@A8)@qk#L%8(1{Aq+mbLM0DahojJYFby2q +febJGI!HT6U@{h2oyyY;RU8v{FTeMZfV?`f=0ieFFMAGZ(gbjtC>)Pg!6>U1}!jT7l-<4?_SJdT$?;< +>vTTiTqzxu@^FTg~3=a_cL^#Iboj&$x?`-lCySr%HO%Rns!qL;sRyCy1_}q3T46oXJ@=hO+94MzPl#L +1%CQB%V +DVQ#kHlydYGIpk0!^rT=k4IZ4uv)>Jlk&g>#(gU8=%aMy81;(Y!2@ftiJn6Nr^Wvz_=O-5(ixiP!aCTcd@vv5((ZwPf)xP)h>@6aWAK2mk|@q+C&T_E1Lv003 +qH000^Q003}la4%nWWo~3|axZdeV`wjQXk~3>b1rasODoFHRnSXGO-n4zDTyyGsmw_&R>;gP$S*2UaB ++2W4D|_#4-Sd+aSi5511l}bNX<=!sR#jaxVX5WDiv%YA{wYVHMsy#O9KQH0000800Wn#Tq|V8jlLb_U!U@h8&X|?am1ToH%bb5G06$#E2jA@!*$0u$=(;0`gxHTfRKyFSx4uyV=c|)t8a +;(Z1ENKdP&%tE;Q4tBb{QRn=`&l+B9G+P#9mE{c-Pve_|{2~{J1HJfH{URTQ~&)RIZ$eM;Vk;qd?qi9 +~RMa~NrEvwtATBu@0vnXbaXSQ`VW7BMQA~R33#Yx&uMeb&$p?^~4>jirRNu%hItcI_uY*8M`!tq`N&- +HRMq8~T1#Uh(77=OE2%v%2IHsGey?-Y$lzqe|Os>~Mr?IHW#nw2vq-$bED>y@lYSkbRiF%(UO&IGhVPWR;zv;ty$Bgl$Opb_^(*7GF!490Bv=`N?HF#wZzm>^oMM7TGja|x(l`8 +?|M09^$7X`eQYcE^{}mhM7zR$#Ln6%Yv|ucn6Y!kErr)@u~5h(yWFkX536;V3!05(=Bj3GyAg@$qN-L +h2Y&;h>ZVNr0Q8*_@TVv}s}}2J*=QQktI8~!YQbz?xxo`h<_l+o#!7nty)l{QqqT`dtyEuYLNTQ@ncr?SEg +s^F%-ED|cBXRZZ6yA^Uo{2NMigz4R}8+9$;WJ|KtIBly}eIw-@SS7(}z)lqGY^UWGyiLGD?zYa9Wh_T +^;Q0-MM$;`kjaAC)dA|-nn)6qemY@;r%OS^20|DZr}X~lHb3wx3`zGd6c4x1zNRF?0nP4%0w$)`HNKB(@9>sTV-@P@8Zrr=`txxXm%O6*VV~H<^fjB`fpB(!*1c-#nx+=4-LKegMh&j +ca*TW&AQW}K~QNf0)U{EQxXqYY!BOTGKg$c{2EmTd*3W)1Y>A23yBNhwT)Nb@nv_BkbXaYH^W2f4MoYH`&&SXvQ3ZHP`>eiYt}1Rq8i9 +jQiGO%q}<5RR}K+uJmi(INAnt1XhnV+J`z4sO*uHgY6suU8g}b!#t6g1QDnW3H0G8zbO;4O@6n>_Hs` +k}i|S%_Y-n7^Ah;H+7V_mDC^(Wg87L81xzS}CU_AgaWw0g#(kzGf_BawNgj%&w0Yhm>4WU@iT1<+LBEBW5zhp0h>{KIJq?I2(6Ke; +EnxSB(k4nmZ6Gv?>j0LIALI0S{5U#2MjjxpSrxMrOF(7s5)JQ4>#)wI&6U8_K?Y@? +@0%DN}i_jJTI=!giUm}5x9tk83+K^dc;CayiQX38yibhW|KpArSVRr;xcceba&Wh!F8Hs!vESOM$HtY +_j49Ea9noeu>1V{uugUU6DC!!WCn>y3fAn>s{)Qc4ttGi$&N(zkHdR@*Oe4rH|6B5N?+HTW^g!a(!UhBF#!TQYGku%_c;tFT5$dZa*8?zBEGn)I{vYJ+<&JsK83(fUv +eU__%^kn)EdFI4q7ZH}wzL?eVYjdT+E7I;f +e&Dim8Hg%BTENrb1Jq~O}gwAv-~*Ur!@W}<)EMU2%hF@8Jk;);^cU#Dfcd?f0ZUBFlb663dBs3XmjPD +-!>7oSNd#aqD;k4ZNvT!k}Wg2E^6rVs6kmc&Y|H-|Pt?j-Vuovn4*ME}%9hFz9blaBPr*u#&;^eI-GR +8OIFwy2tQ&Ef*~AE4oC_Ku9UvUPhNLot&yy&y2{p@_FmT$UEr~Nsdc;~}>J*0|Hb{Wa1<-N;TB~$UYBB;I6+10h8>`wGhTtk7_O +iI@DPr-JOW|~I^{|5h19B`uz`{JLYc^}KSJiypu+|aW%TPQUHLTRZIxfh8Sh3zpS%kQ1#}K#g^i9WmX~1*y|TjxfZ +HHp_C_Ex2L_CRKH+=sRZ_D3(CjW(^xe&=PYtT^}9c1_QVFRefT#)*b_$;QzookcWCD$~XxsuV$!Z&gc +LnCzTe|++x0gq73HDdP=8J2%082Y_f|d?BOvpWP4|F(=_!+A_J=|7rRYVc458AR@kG??C*%+#3St8(t +MiIJcsg&Y&p%d$Pt{Aon@sVCP}B(FpNc7DCL{}b@T!-vJGExxm +sTR3`f;g~nTEfRpM$>t>jKI|fxwp6X4RvO^M}MOaQR;Af-MZ3WMGuirvrJW8*k8b`Lzo5~_^M4PbIm5 +8|)i{~#}x*T$FL9pdjP%&lwVcZLHES*b(H7Jgk>hHG_<%k35Xy+PZgV+gUW)?5>a3AAP9xgI^H#K%!J +{S4KnRbA!l8AwIaARg1sb=E$%%{+A2AdIDG!glwxG#mAxoWqXIkN?T2sO-zwM2^kAK3lfY44SicZ)<0 +J_Vqk3gh9(PY9kOnYTL})B<~D}_h4PC(fGHrt=ojLW!wJ$ZiIddrpd4D+`lh&?zd}%maS^T5)Gj-aHS +GGA|Fj0$GFufO))--u1G#w@|qr@rwr8e}8pu?oAk0Q)=}pGzZq3F+}Bz-Jea0(`<=1%%r+&jLcH&%1#7+ +wWoEO#7X@47{RZi>HBqj(gk#{1Y^U`Zi|+qQJ{I9N-ghI>0Q$LQ#mrXTNbmYQrO~1&<+l5RWEHUS^g8^wuiSV66b6r +YFG0y;653;f;(mbnA1`hUGiAwZrw~Ls{P!jp5Ld9&oCb1`vU9_v8BwaBPtRhr`q$?%7Rm?>{@kohqrN +&oDoGLmbQbIs2!$O`OX!8j&y)2jlX^M7(T(0W6vlAyn(MWfh*r_@~)yQMYMDK6qKLkp?CZB?CnyS87J+1bAkih-$+K9b==rnVtE14zTh0N?-X(U$ONSJjfd;b{Xio3F`ZenxQjU<{sf`Clypqv_Q +3OJ0@#KvByJ$yz7+rA>@xcb-6kdTlK7JRKTvMk&UfsK>l}h(xH-tamlX#=50avyhVEuC+3^62@%0xn_ +Y;=|K@B%G>P7zeW){$-;9k2pWm&W2%nIx$iePy+l!3m--^x1ZSRfSjfjbr?P%Ld@H%Zr_`F5?5k4KaN +qqD{M0DMdSLQhCO8lT1f7O<{ge3v{*VX;c2o +<=nWlJK&dLtcfbG=++qCK6U0|-@Ym2{`V__$`;6imdwTnm`}ZC^N^g96Q`hkL;2g0QO_H%;`yZq!6-?8?h+il{9yu^vaLFsjkzifHWn +FNgzOptZYoA91+E-^h1$IpiMvsZ5YinbP2v@a11aV@H5U68w_z09(lAKCrg0?$@xSPOs0%syg_wH +Q|J1HtVL{LSED3PamlQS{Lw8!td-DTJJWG82R6Zzx+gGe@!|zt2e<|t_1-Aj-}n0~8z%z>JKIYWkAo4 +}@9uSdi=<=eh9=g0Z^=17CREltO}Mc!NxW4B@>Xrn1Pj*12iKmW4B&=O7vMO{bA7R87_7-@VAkVy{$7 +0aRjuH$qx&Ey8u)Y>$9-5=-`rXhSY6-oNw-(rXtM_s +?d-U)3{dIkTF+t}tm$A6Gvga^K!W&slLX1FB!~cSw5w8g*n69WH-;;IGHMf{j`{p{FG*V3em2HrPU-f +n{@Kl!iBdv7i*j#~BN*qR4qqZ}vFy93H2IZfD{~RFtOM#~zIss(Y?C`h_?T!lHtZ`TQ&7!_|aN7Op; +k>L?OkDy2n8FQj7bQ{>T34uHlKaHm22IRo4#!AK|)RI#0E5;)0MIDtkR*-I+b6;C55dpO|N~2_~%lfsE!7kqJizq(`#(Mh~9lSy1EsFj12`)@G +4kX3E;8z`jvzb^;JBpc#G1|>D)PsV_>In75~!aPYrjJ<^;bEZq;q;XmlE+eaG(%H;m +tOUH)yPLgDmz~Vv(M*hWydN#^2swJ`&l_QhS@@V3kSz)=nc$!>I}OQi6W5+iG~!wKFb74B7YE)$YRx# +{y}ImYGMhZhf0PZm32R>iZV7V6(d!sJ8z14R}%3PUAl{#+9w}rwJch7o!5_)T2{I;zvg(-T5OTS_;?QIe9xP89s_ +-92@6a=V5tv^Ftso>=IfFqLd*>&$Rj$F4rWA781S<`qd~|Y*L=vJ78Yv(u5v_L;wJcZ4Q`6qF%U^#c| +sqpvpU~0qjR>f_8@ggjX9wyT~(X8Z6FPT +9o&ex)5155VBlPnYiJ{#z$k@mep`C_B@(y@O(D_^5Sy6Xp2={%@|!|zbO15yu~fY0MRc4BmbhKt>8f$ +Tv(pVs(NFbVuTmmOMBW2jvcX%V2Az@ARbX(x2h@0zTLU=78&3b$?xv~KHhEG1t1^4qCeuUSOvyHz@Xj +0QtOsyWk)Q^E7qWG9s?yDmBr^!(mC~`a1-9k|Eie0ctG|?ZmMV!{!iC=g5OS{RDN@bB#wyu)49QVTLT`H(lYtJtjknUAid!r3)!wPb1BCb1lMAm?6GM)VKNNYr0JztcTb&Yp^=h`N# +dQy-j);3cgxw=Wt&a0z$pgoQz(AjO?l4uD($)9Sn5c&F>Un?5FVkr}iUs+xb`cO^-p3R>JOcvs0+^#z +d07Z02H@ovJY1S{nNvmz2(QKHx}8#$I_~s+qmqR>r!> +h>Y_~?7ZpQRnxWnkH>SH880s6OR2eb}WvYzhPDhgTcf!vnd1P(wBGV%(3CFpm(*=zFsg9H|>BhhZ)G5 +|{;0h25;GM$x{f>s=++CANTLd4R(){y +N5%DhSvrC8gSC&2yV}M_)^i?;!gwrxZ9;I7NqmAnSA=$&1yZsd-B=JgYwzNi{`@}S2c6>n8SK3rdz6a +IhGGFF0*62U$_L0^N(VTHwEP(I;r!|CK2oe3`)w3K>$NT2z!PcPx-daSNec}MkBE6{M~k{&$DEg+m1f +$J&10Xo3)c9#-Em&23wal?s8>wNV0klto`|;J<7S6wu~S4Pl +zP@{B$To&We8yU1IN++-ZjG(R@{iy8bkcS(|8&7kjPIEaqL<}7SB_Ia*wyOOnF8x4*OOag{AK4hLFU7 +h)QL^shbzSQl+7NN#V>Cr#Gh@Ev>};I_4^eCd|pXX`Ydk#PnVc%&ZCX>3 +Jy-95XHfF%Y)(&!+&Q}jG3tkh~d5|{A@uXL%B@@KW1=@e!1ush)%Mq{N%f3fJj}o@{6RGNB`!U9Cj&M +xwwtjc6)>$z@SipMklM;Y+ctZ@55dt8@bqjKwry5qIXrwy?ZR$&H(i*{(T&ws9r%1Li3T4uEhsA22AwU7JmO+!AU>Pe3&A7x$h{}oaRr +W^dco2H=UPw#GddnjtkPtp36(|fPpd_KtTh~U?Ir;bLLS-8?XuP2{N;{YjP;FR0|suXproZ`xVVpNq| +VAb*Xh83HCqM)u`JIjcJC55J0@h2b2-8uZx^9z2cC8gWYE(QN1wmx_fr`whqB?4{X`ocpa$M0#80aoM&lg?#PgYoK8;>sj^AwVHVjAAA-&^ +E7<9LyP#$(?d?FMHGIMZtX1%HsHa5dq$;1AT)>vAh@ +i>tsQ%43k`vK6G4dN%I_*@4-2rE|&8fC(UY{P(U!&w+$qeqCf~Q8P@kz!^K#>~=Bl94BgbP41v4JaIg +`S71UTG%)~*n;9m3yNbL<&U@7CKW5fV=UtE@0F{GVpU0WrGX!P@2p4R99;|Q1>f6v+M>)a&xx8J)D! +r--c<86(=OOZ>czc!P({-1_}XwSE69V;47BsJe@u)nboc)Azi(Mr0)#_N9~I;tguhe>=_IypcPsxs81 +`q(_GjQq>ZjtmIGpbs5zXIBlF}^UO^USnq`mu3rmb&X2atO`j|GNaOZ1KL1pZ4DuN^s3C~3K~v)sE)$GwVgV +xWUYe`TmNPCYN;+7N<1Rj?OpsbuF#bw!<#*0exySsg)+rGT=Be4pvv55f0>+N98m?hPrE$W;hU>hXnv +V}CDNxLHgs_OxW8C$eB)E6J@f$)+e@?^?XNQFfpBUA@rv%MC%_7w-Fn;GTTI>Crd%2f;S*eM%!j@QM(vVHyuAWGhLwgRbwFJ}Q>6dc&V5vqw8z8BxVMwP$BT}+bSwH-5&g^ +iyWy{@P?O$n^fxUg-EG`T+zL-N^SKaxli{+NvpL%Qp0Mbc)nP`{)o#zb7k_Go!8aPox7E76T+J^}(In +K2qElRukt0vDvZYWVb=DkjZ7S^7Y(AV9rTI7wZ16j^yn8!dd&?0cuMRw)#P&qlv4~3zj20E$?Gs-Pqg1s4XH)2+rt1nl7`VOw&R5b +8K{df3b+oAPVG?$a8s|nr72z7wl5+ +p(p^X)mNHuz)f=U6JQT1km2QL?-3IG7>Bme*y0001RX +>c!Jc4cm4Z*nhkX=7+FbaG{7E^v9Z8q03n$nid3(V=r7*VI5GKh_$61{_=KwRdeVByILE88FnaXQo$t +fe%Xqy;t +IcZ6vb1YiAJ{x;o!g4S8Isyx_O}DIOyWAKIC(#8@m}`3h;Gb`~sRqyjh)>$6VTSZUs2!Wqif(HxpXJJ +hfgFvpd=1zjAEHk+i}0B<2Zx-F7_lARl_a;s91@=5gh8EO7ZHdSGxs9T6N~Dzq{>+=sv?PYY_%0h3|g +>B+Sb{M%{GC5^$4*q+c`s(u2`ckJ)7tkQBqk{LHsh$$Ekv-C^XGydCd2c0&iAEH~lhTu0yjvbAF|M?; +jk{?=SJ!oAmuIV2hTw4*BDU-?ndm`}pD4@Ta~$=r7M7#rs|R_Ro(Wegl8%>o59i9PfuewQv9U_`@IJP +ksGWe<{4B6g%c?7KS1dbr`yxr}AX&+YvDD=fQURGvD^`d6$krE7EWMF~1!Flz!+B{BX|D$e6dlwfv!L +wew_Jf9NG+03JJd%HHM~pId@YWyA+kZhK0`TOb9sr_6v1OfhXR9WisNVhhZ&OLU&44b}!=(CWYj=%Om +<)X)dfArf?o=*%9)@h7vmuEmSiq9_#Vc8}%nf^c`^x6}}DIbvl8_3U(Z#v&HSP`Ah>lzP8f6uLRw1 +9H2((K3RE40Y+W$i_Fm3TE3W8-k=Gw;lk>#OXU}o;^Q-z0te3=da#=3vXY%JN?RMCvRT>=`zYT+5Gv +U^DZ4o|ZyH_lkXUd98031+L{|G&|3LOq$aWM%7`_2~$liJtxd%!3dq~nFDb9>re888LuNd13dkuV)nM +hq`d$=H$mv&e|Bn&A?CIU8VBYt|3L)M|VagVyu2E7v3JCbvU-i_QCjpyRf6er=EXtfKkfW!Q%GE%{Ej +A<2l+E^|wp^RYIlGIwM;836x2!;_mzcBpDTUrs}3J5H>-G#dg6lLjorssFaAw`dNZQAF$`(4;GGR_^b +`*^S$&)+L~BwVHOT{K!CdkWT>N{)D@XBRaF{$V!+l_lXSz4U4V427zSK=N>Hi`V6tLq>Rxp>Q&OUAr9 +>8=YUTfEVCCFJw9c?--#+mYoh)#|OMhS$;6pGZnVV1i3hvEmegZ&mzOc5e4uKSCWavwC!!{hiwKP5d) +vwp&-rHB5Q0;$!Yg#7}W#j*r(K?T#zdLTl8eO(on@ifmcmgV)nalxXCFw><$zvkFO+8vbj3*sM+m6JrP{`)@!1Ium6Fagb%DZOD%mL?-HS+yA>!jo){m;k5CfY +shpaxcQSmU738ky`OREa_iQQwtLv*l0d3e{c$_LRAeG;QtA&opST{5sjH&Eyd}a7p +xu#MID6YnWIv>Hs5^I=3Yz-M7X5#2FWCXwwm-GM-`cYxC{H_tk6H^mEvYwmr7!SueRC%dv#@38^=^=0 +Xm2Vx{ER*9uceFv3%SP1&?8AyU&Hj6Y^_O%2A2k+gc&rG#H*G3Xk>r#>%z?f9EmY0<$co*YUgJ-n5!f +*IGjub24fbb5QLbSoG?ryP)F#@8M_CGKiZ_x9I`an^F1$#I#shm6w~lMIDcMFF_!yxtuLYA7B_&WQF# +d)*sQ%SRo^$Dfa0(nlknf*#|^;ME~}&K_I{MUZUC?8+)+WF+Iuga(h@X*xTgM2P(N_z@3jW%Gy$k_+}v;3O9Td&0maa5xiI +3+fl9gz*VQRWQz1+iS`1z)kFLm&Rlj!`t&QJ3tysI24>_^GJqZ29bRcNHakZ%_Og1WBGs0V?kt +r;DaOo(Su|E$&=$72tOvmj}hlI-!z=P%lJN4CC!H|&56u-v}<=9=NIaNU7xzVh4_l;tWh<~HDum7T_h +kp4UOKK=o=G)5EUMl)@7d9S6vf*_@#V4Q10#`L%?mZtG7A2UA=`o0Irm0`DKL4!G1H$n)HH~m2$?3%y +KF?gElU^3Qh9eyLS&tM3jO^(=?tuWnaSHDfiiTd6~pNnLLFNjmg3Yx-5BHvK85;YWY>GsrxHBXLtVn_ +dooLEiM?j>hcs1?df92H}+X{Nz~nUnVhSW6C6hKy3TwJWiwpo3G7+S>#oYNIxh$nh*Rktl|Zrd!435{ +Bcv8|%(p|aua?j1JQb@x$);gC;(Bz6Af-r@_|Lyr7Q;xT7w>iqtzN*PT~5UCpZ`_9Nt( +iAWtaF(}?bEzS-tr@*xEOzJD$sYRv_w55beSP`{x*5%2A)SB!wxbyttITw=-di_<_0XHi>|fzHHDfSc +1c%8Oa0h7nW;&V(f`ev!g|nGFF1USY>}ba$G|(a!!^zMijCY4{X(ofi9W>s%);5R-oonZl8AB6@?_dY +x;Xd>R?&{md-NQoCnPy;i1nRxD;9^7X<^YrNVX`e@L}15um^;$&)*kH1-WX_o3BWT1ojp1roe`W|XAk +r>i>>p#AFS^q=qy3+=YT~|#U;sze0*^ecry$P5iIInynd)#W=Q&(0u8r_JXJ2eJAHOyJv+?Ph?Hj8=^ +RG3F#a-apbCv2+%UKcS!>YBF;96ES_P7dqs(VVwp>gpt=Miyg^A(6Id=(oZ^$OWG3}4Vr!`j!d#aMI8WhZ&1A=eGr$`PRZv~Lt18uz~V}vGQP^hl?qM88JBqk3D5 +bnShh+;QH;i}>R_7+DiI&YU#w+Wkd3%3w8CeEE|q>?-O5@-z?G~ikhLoFh*6xlQ7$03SBNVLMGc=Wf+ +O_a)Z!fw62UXXs%e=lz70RJzfem91QY-O00;mBm!w<{)InkF0000w0RR9U0001RX>c!Jc4cm4Z*nhmZ +*6R8FJE72ZfSI1UoLQYU5`O)gFq04@BWI1URp?`v9~}E5)D~cHQ)xClbAS3m*}pHYia*|HOZ-$nSpuV +yf*>Lee$`K`b=h^rD(`FebK~gWI}ntW4+ZaZEXL``ugP*{kS!vw`c`b8)`Ln(Aq32aq-L_SQ54`xTt((DL;6BV<6`4%vY#U0ME&H#N{F`{t*4z<43g5$(4+K +aG@6aWAK2mk|@q+CLcn*;+J004Mq000~S003}la4%nWWo~3|axZjmZER^TUvOb^b7gWaaCyx=ZCBeyv +)}zIw&H{B);NJAPg|c$&mlls-w?tD^0a*jN0H?T}-P#(ndWfELZvkQ5j4aDyA-5qh^MKTP;FN>R-Ad(S +)D@0?F#p3k*jaWounFvoD#8H+6qeT`cV*fgkat0IiTdheF&xGqv7TF?^t}BAsJWev5b%~5MjADC0(RAVE5-)% ++&vHCRNdijIxtj+5R0OGb|F+u$T%aprwwy10F#?{FrMR0)8K&Yc2t(l~UOENk0%GD@63tR{KxJ@nU+n +vSoQ#p!ECx)B1&B&THVqVpkrb2Q9*7NqrYZbE8aM#(X_n2?!Lw&Hte;4449{_NKZu{n=vfHbkY>-u!D +J#68Tm4GQPl3780=58S-6#Eo`18Aq)o#3E(NTwp8-LLX2aOyiiA;uDxe|5|1m0}bkQKM5}db-WK|iy2H&EG@4rEfb6fRH3|;VGqFrFuD+F6*Ht$fxz5e +WUgP2)&-t{2ve|P&=N865=0f>fu*zV^DtPjoMT?Y02Gl{uHSmM|C>8JIUb&X$sL_vpb@a{f{`?Eg?eg +hoRIe*{WQ3h`MmK&%)KN-!2)47aw(EUgnxlh|6F+E1bm8*$|a}XZGdVg``3MheiM4vu)?X^MG+s}%1D +5j0tT{!sGSL*27bw4+Bq6f#U6U7M<85pCWQw$)B_+c&60(W>eUlzjFO&tHz0}>JtZzTF^JzY#yZ}&z$ +K1LHp5bUd-S_|x_@?YzJUPu&ku$}_u%5}xBv#-{R;`nI{q~21YH4oDgqQq;zif8^J2H#75`fT+u8lTO +AB%$1K^qj4?lq&fIxZs;bJU72jmR422LcEX>O+^ +`vlB2QeLt(JU%}9dH>jby?;JDaL+H!z_0F~8R96o7TX3N&d1E@>e25$z(zp&_!)RUMu179Iv!peox#r +<6b-c2P_Y4$Mv@Cs4&J|ecXV>GDH*Mc_wSC~U(f5b!x1De1>x?W9D?QkiqjX+>Y=4B4hiS=K5VY2swG +MaINGxu*z?A6ay;4v*ga{LApa-yXj^d4KvpXXh6m{{8E3zyAjwKH +u4W@$%KbzW?Dz_+#63VEe`Sh9|>|AxgrY*QTdLu+s*Le>wW?aQO4EB0B?+iPePJM1VpR;ypS)*oO`O? +CA7(|KJFh#K2e%VOSIo^nVh{$B!dt06!MbpFjV>=?SsLb~N{VX+mWh>PLnGr*A%w^mC7&Z7c6XOy(Jfen1B?QBQEYe~;1uShcMq7 +=lkc$PE}AwJC~u1jQT>g(Whb$B~M~5FtTAl$!&>uZvmK3`&wFqU8hA#47*lod{ +G3>pp>dF<^TlL!l1BvE~Fp$t7tp0oq--4b24vgpNJEcbW0lg`B#}9&9U%*nME(NeS5QIW>+5w^TkfrV +#IADDvIAE}c5mf^cQJsd;Xz|AUg{>GL4eee(OCIZQaNWOA;!RoL*Dg)8GP*J +KJD>}j8_zt&62zt|6R;nPp +pZE*t#V{hDX-N}3)hVL&&OV|gmKzVw+Yq=9FY7C452l9?TyJGt%F%JCf60Dv|C0BZHCTQLYsbu2i1&0 +ajY$6{0A^nUte1snXMx3AO0v%S^ELj$-g?x_sWAaq$IcBNzOzh`dx3OX4hsz-t_;LJTExd!JH!)kJxI +K$_E+Z~kC=zEd3#<_4uvlpMgaDoPB#!%8JPX_4>ylBs`>9ywF7tR2M;r>Uk&#@}PHM?<&-lG-$UlVzN +NJP&`jQ72aHxH~>2Fbtkj|x_S10^9x|IplCY+B6m>~uWY>twW_DCU7r}c?iLFho|fbPHK$B?bxf^E7r5S;Yv@OqkG^JBQ}gbSnqn|c-s#cNub!fV4Qz +0yby~FuKU<-URbuc=k$BLz~y+q$mWYo>EsmD7mK`aAqU?R>PurO(YC!C>89R9y2ke%TPaw^ypAw4ZhR +S)3n5U2<;3Esg6UwvlB+f|=|w4llOKZ>BNa&FMdC}Q +=ykntVEEMpF)<1DAAUz7RBqHCNWKH3BbT1x(tJvwVYRA9S&dYE>TLTyO7w +68EjAJprymwA2E6b?|S7L!fli~BKH +a5uU%U3RE%&ffp$=%gqUKDQB5i-u{MdMQMQ;FIM&`s4r$>1+UFN^pIk0z&C9j;>{*uoTfGHyv=Bb1rH +AD@UZuDD&=_j-%gBkB0}t3u@F9H8LS%r(sx(?H1&CD-hz3->Xd=^^vJbdAotu1Q*O;Z^1sj;h;)O;);b{$Lmc +kMM@}!6Lie}OtwUE0jiS{8jN=%6?uwLy#@KusW4Y{~=l1TNE*_nG6`%K^|)rum*QgzX#( +y%cd{|9y&K>9dGVO+wTJ)+m(4F%P>%9NpK*$u=fj>Cd!w1X)A(;JBW=g(hkA_9yH=GYI+ +XgU{&opHE80--OF%37JJkx!MHk`0=NL)16})_6!mG;418i4x=hZ0hl866dxjv(`u$4_9Dcg*F@GWo0< +hRkTzw1`uk>E3#6u&q6JN)Lmozs0&tQ6`4ignkp0@+(3QN`%e&WgID(n_oSQmUijB&E6uZ;*QCYjEi?aKe!;O1`NrqAfsw^KJ2~=i?a)io8>Hkl4tDwN}lCrut2;0 +o16-)tzFf{HdwzU*Pmsxvw%-lNkzqjJ^d9=~3F;t)DMPyS-DvTWWzYDrB|>6$iN>ZWaAsP``|7=p3_+ +W<7iME#USqNr>=}A?9O_v6?{X2>8k8H@ +%!A|;fYmtZLnJIw%g;e;{!Olrd?RXY>){XHQ)!P;+y0#&ui6GW}&xb*iJrIKS;+x`bQjakpS0opoU&` +8y8$TV=dd}bzepO8#1;)l{-*_JRh_4hkPD`9W7m@B#K5$yNg;!NxxUDXmeHUYMtJeOJ8PT&MfsPip$E +Je{%M)3fIef6H2gqwI{QBmZt34(Oq|iDJco1F6?zK6%*XMI)7lxtFF2ZknV`isJe)`)U8`zA~O$!b!* +2}3Ri}q5Zqpwh}uZJkU(9Hui^(|@W;w8lMuLkK#ySiP_ay|;JWJVTsp1I`0nO#wBMrGs3;7-mrHcOW> +G`M^n}uTK6h%>Sh^UlHiB|lsM=Mk7~=sQqKAD5_9h5G9stLq$nFAPR!p#%OqU&M=xV4!Sk|YjY4uTs< +xlhNdmSq|CwQFtE(tOzJVC{IlaB_kh+Z8ciX=<#f^6Dxt{etmH>ag}g;#E0wXw5>!MmzQdR((pVy0su +b%n^X5wmXqiP*Yq)xW<;mv;?a{)d(MsTzvq(M;CXNl9rd>bfQHln|{#0UE`3Tn!B}fDG^mPZmQCzyYD +0&9fy(grGpPe!pK*{Gvpr)pSb$7#?@e!$yH8e}I*6iQzmSf}bbxG#JrQeSR;atPOvcfz`$R|1T`;i%q +O*W05M9Ki$Z7O(QFH_3Q|=-p+bvr@Zm7Ln*?{4XDRLH0?;ukNsW4{0y``$`Rf0Hr#v8{5+}V=#5gh7y +w|ZBlewvCU1X)Ajn&!C7V(`#HF_#_C&`Vb2$jE%C7`~=fY?gwXMrEB0!FU;Odc^Ws!ra^l#W=$1xpL# +j)IYfNvz9IZGrg9Cb>tyAi0DQuM1(wXP_iu6}dfEDl!&p{F-oQjWgrmlR|0+=DTRerF+Pc# +=0UR|Fm@eE0iIl@tI1XX2}yt`6|<>?Fu`CRwt24VCtPO-J~ow8QjNmx##p5B^a8fCps8lt4d6FP@`73rI{|n)(d +k}!<2)GMb@qU0Zmq)>C`&UM(5q&q6@!D9e`F%0A*G;*Tg^-o%2Xzy(F*SZa@ygi$HWO=EZa@eMjx0mm4nYG*E7o}y(tD?Bka>M$LjjGbCAQ+@rqaJA5&H7opT0dh +Essp;P5hNvLGKROEcEfOB-o*{i9eHWs*I-$5CJPJnffpLZN{nUMgW}5CN41Qlub+5hC9rJL;;70<52B +f@#V@0fUVY)sw20{HoPSdyzM&(Uj^YglknPlXjKQ*_||Vc{>Qkt} +16X@>W=>aV&F?vtV`4d@_)$MrU5;Sr5ZKptso(#1D}l#`HcUqN&YX=GN)B&sfThm$R8YQ>{6WbtyXi> +e_90wChxyk1|koxvo1`Y08xawrXFkk<#N@r8fvF`s|JR|Hb78YeRq9p(l0JWPM?Pl||5pAI+hUVa~^ReM6fo3H(-Ft +)+aXBG530Qupsrs0-uDtByQqOE2(ooyjRw(`nZo#i?AiR635M4?fp7@vFrTO+ +WWqOzKTBX+voc6m8i`md2|Kt3>yrDZQXWNOpc<=X-Qv0#BtO#xe{r(szvajIrn3Eb3g`<*mW~!fChLr +JFS>i?ZS-too69sd^=qJlam%PPR1qO)5CbE8^fSyy8dDTV;G% +Uv?M6-jF4pp)=_-x-TikCCZ!Psr+++R}U&IV9YPkt-az?oAjoaz|d8C)Ik3O?+C#Hdn+fSVk+p6}t^FaFY?0;@)O6GQ-z`@La{jCU>uC#URpncTB6QQQ3=Y^sQ#zFPp7p*@B +9$>YVAu9gffFYBYv8;C*I6ajj(y#cTs}N!i0srELQOBI2}N>Q{1DUGVB^w~35qwVdWq2;iWpT?ueP34YZ7|Ls_jQ@bYHdQ!^z0YtX9 +AJIzN@LMeMx9iks{2*C0o6!fPmL>c(`md2A;|P@WqyBL>GE7J#Or95eFMP-o>`Mo3V71;9jtg!O17Z8 +IL0yUDXBLzGT++n8zP-2-u28I;F~OT@26HOHF!44e;H?Ubv<9M7SdyURmdA2 +lHh*}5s1Q%l^WtD(Z#U3iKE0-}h@1rRWju}rA4_1$_CI+Rb?@M{G%V!&O5_9RpzK{3LREW-26P+cL4y +|cmyzCXPN1DhdtC3G|LDpk`)yrQ*WM1~kxGIxfHdQmYLAa*gkGr6jmUSO^Wuk|siL92*Q|3FwJGIGf@ +X8>bF~4=)rHj?UGL0MD`}AG4m1vJy5xZ!>c=QL|byT|Qy<=ml)c%Wif$)Y=xlx3ZR|^m|M(g<$)i6hv +#cNa3$Hrv0XE8w|^o{hU%=9JqO+qV;s;q74c|Lpf9{f%T(om;NUgLpCTwy1|t4TwL?*~%{75O#U1fcH +ues=sf0>%N}7Db$R(UM+=EJ^}&Y|_Ic!2w`XNKi%Tl5OiM_1NdDFz9d;-7t*^VpbPJ?U)q4O5Btn|Dy +m+;xpkZvNIo61ji3MCQRv4A;s4D9JmC>%Mzn6CqaS-zo&Q*zFG=LXYMl)}#slQV{w~+??dlfA&>u5ooN;qq5ty-1ih_9)DS(^W=5ENxLp6qwBV(}sQhu_;lHT?nvOWdCj-YPfitMP +gzX1(p&%b{X8#iSc;#tAjVZ=1QY-O00;mBm!w>Ich%t!1pok}3;+Na0001RX>c!Jc4cm4Z*nhmZ +*6R8FJE$HE^v9JR&8(FHW2=qZkHEfZkDFb8Z1eJ#4EOWhN8%n%~d81iYj8q`R_ZDdUdi6 +!wka~kN5iA!xQ)5?&jlf-X%>4%ZYa}BTUki5)s1H#n{?2+vhYRXMD95biR;d@+dcTChZNp5>LFOcYTPCktYg0zoWm{QJ!)I{P#_`{m;LXBfhHoa +LyHLT4ki06*HTT(2mbS3XbK+J$q<;>>DP{0Nmu9rq>{IXTaGEG>j>+xL(f+EcBz7kIMekJCD6|in8dWwRZMVVGkDMQLAqC?}JLV)a)CT?q?4kC~FyT^mth +NK747i2RxCO{nnbi@unxJ8Ehwgtg6ljZJd_+j3h2lCdnKbx{8IwYHof^RZG(BNYImjmgp8&-rB~gw?8)N_`O2iRb}WS0HT=oqc|ODzd>P$-_d7Hnqv3)j +yt&NB^j8nwqMvmb7?!_x$X5cAzob_E9*PHtR`$P;%|9ZlDHKA4!5#hW_!F+goE2mw1nS|mkqc6~n{nL4kq8MFg5<~(Jz-< +`7H4#(6Emko)cN{Vq6T2ABJ7&PBEst2TC&91yy%K%@wzKm@M71BvOu +dzU*B8^!+qCkD;ZvVqpm{wi{5AGpv9dXA$~Z8m}6s|$jvh8?7v6 +67W2lnA0fRY}1IRM*W3^OW-e(xyq4~~uk-}bYVDz-kYAGo!4)7q%v;URA1M+1k*JSwf +Fs +8nuKx~XbN@Nyeg)1+0X-K%d-J?F(_Y&o>sMvl|2PFK?2bs=!9zX4E70|XQR000O81DB*+v+ojT#Q*>R +{r~^~8vp2JX)j-Nd2nTOE^v80jlpWeKnz6h`xSy*9nKC^Zu#uRRrZ4O9Zd=$qZJwd`jDc +Xk+-}6krT!-x!34Tf3k#2^;Gq#VrORTXu$vTdE=RR+^O~>?;tgK@2j_D#9jb?AaBr9k`Y}A>3hKHZTqmid#OA&MP)h>@6aWAK2mk|@q+Ba00QejL0 +00^Q000^Q003}la4%nWWo~3|axZjmZER^TaCt6td2nT9Q&#XzEXqzTQb^0pNmWS8FH#6_4Nx#OGvopQ +P)h>@6aWAK2mk|@q+DHCb%J*S001xq000{R003}la4%nWWo~3|axZjmZER^@cP~syLq$$gMO{+KZrd; +rz4I#uIVFIQwmJ4jOLRn38z?%ikFrEtY-Q09sT%qF&d5&E6fhugmbZ;_sUfqi8NFdFcIVg09{T|I?E^ +f0efkEv8O>lJoqzwfqZt{i%yhEeTQ`FB(3{EZU*R}4V=!F=hshXl2Wb0dI+_TAgJyh%vza_DxP55sXv +ZTo&>|PZ$f6TM!$Q)TW?*&%>b4>`X-O10LQs1DxHo@cnP|5&2UAb-C7Ct^~*$Dpk +J7L?m#>Ykc2Du$4M3HyUt4@j~yQTmvt5@Iw|!1mb6&ra{wJP(7QJlC@E+Dv9h${+34WBN8BlO@6aWA +K2mk|@q+Dw_vf_>a005}~0018V003}la4%nWWo~3|axZjmZER^@cQ0RGX>MtBUtcb8c`c5y3WG2hg!e +qfkuEJrXx%#q3Js(>^mlOjY0*L;F(KOe`c>(2930=>F+ZJS#uZ1|e|(%|hTX`MVEztivSHkFc~QAKOW +=UALER9lQWNN=A27PEa4+h%Fs4&572&mZC*tdAkh* +nVWYPT~hpO9KQH0000800Wn#T$@xGzB35`05KZ?03HAU0B~t=FJE?LZe(wAFLZBhY-wM2FJE_ZX>?_B +E^v9BS!;LVHWU8Nuh4NnV0Rr}l5TID(sNjr&C<oX%INa7W7oFL;_LLG;&)jCc%aib{aE@yF+b~*v_cySm~PptIZg{K(L-SwJ9caq0~+mUPezbW!B#rA{jU#y3}IpcU{x(CVT45_aicqGesf}3!L=wnPq+c%MPvWwalHc7hqmv|w6VsSV&PV3+C0S)DCkslVI68{x9n}7Y +LVBs)s7tS*il_>RXpKPV6!NRBut*J$Q +5kI%p}Hc5FhpM!?GeSI(5?f|*80bdNv5dY&$3L!?Rx=_G_AZ<$5+2uF7`QeMKP)C6N}lx +LI3UD2UoR8lBd_Z}0*sVR7SH1cAfnwC}ZNcy5nz;>|vi#FHomF8kV{=K!bMu}ncKF2IF|AD>AoCd3qC +sq!I8w3rMW?Gn0_yA2%0Zo}t9XICna0^q5<|O4~pylUWdSJ_F=tBjl_J?aB1SWxRusEBSs)BD3if00e +3w3RAs!0FY9E)-IGntw96bKuH0lT81H80ZU9>|zALUIodT%~3WVp7=1-N>Wn##Uakbhwdv^?(MIY?>( +4mWEhm8PiZmLj}x@1yhF)_`?xSOju1bCPPy#bd!rn%4W+^&rSQu5FB+fY`IA?s_m)hkWyWMa76tK_hL)Sl^E2YdFg;+2rP*4 +{>2VOi#47}+m8s<)>I3wq5qWH6zma^kF=q%Ns?S6R&!|k!2hYlJ4kk}`TkTmz;15b~VsNWuiJ(eyj%Z +(zGxvF`Zagr1!Cy(dp=1^NSy)`=#N|yC`3u*mL;B_PgZky-$|%XetGwKVj0*#c#)f6h$+H#>lrGdQglfQ_({_BmZ)}uNnIL62KI+T +$CHzMVS^!V4lwa3>#BRI)}*i +qGP;HVTe{`j2sW8sLScA?)@|G-;$;n`TCJ#Ai0Mjyu45sAK7fUC9`B3w$0Y;Az?r?=ttB7+pv!Uh45Z +ABP7j)@vV9`x+QM5mSN%`9)>(L%@@x7F;)_g0Pp&WN0 +5X|GL)dR^@u)rfr1bpd&P%sHxs`LZ=E?-C5USLEUQImtEHH3rDDPI`wG&lVQSiYoL0+uo_#jAoZ9EX1 +6F!D*kM=9Ti_~yHY2t#iY|3*SUcFA2F%YnmN#>}HaUsz=us-Bxlm&s8iS5{uv^=`i3y?D9V+nV!38ks +er7WrvN>i@MUP&AUy7qvZ|zX4E70|XQR000O81DB*+D=7f@8~^|S8UO$Q8~^|SaA|NaUv_0~WN&gWbZ +>2JX@6aWAK2mk|@q+G=h3b1_w0 +02G&0015U003}la4%nWWo~3|axZjpb#rucbZ>HHFHA{8MNU&iT~f_%;xG`t`zc18S}E$Tdfb~yOtChJ +Bgd5G7!pIg3Neb!qQ3pk1lp>VkkE|h`dOO+u8yu%*jJ8YQFj))!0En56Hi77&8QvYA?>XzIy +LpDJpJ}1-zM?>#Ywu5AleoYRmuW;vJ7YSJE1MPn+BQ;$#t(iN{FS1$e(W423cnaL_|)wEKRai+-FWm7 +t==rq0nVRSy+4J%83x$f`@&Gyjf`6FaVC-v5fAU00nUD!^}fe^LjARXTCL2MYXP!`N~>3yi3}FJ#(I& +!R+_ci7{Ce5OS1#D0$%Rmw=A;+#Gguwx(210EUH`z?8!3CH<>J7V2QX=;pZ&zJ4RBYfCTSUQq)9N2%W +C6BERGM>HB#`lfzla&7kVP{ZySanyT2PDhIQ~*2RY@^YRT_L;!1I2p;g0|i{J>=n_7GjLMC{QTzH=H%lV$ze^5&U1QY-O00;mBm!w<|HFKz0 +0ssIg1pojd0001RX>c!Jc4cm4Z*nhma&>cbb98TVWiMY}X>MtBUtcb8d5u%SPTVjMz2_@N=0GBCqlM* +At=a>nR6=SC5>+nQZ{C{`Li|OiRs&S%NUc;Q2|e^)nFlbE)Ed +DLp0EXSy(jQw9eN=|lBl+`j>0oY4+a1EZWRyt8l6|x6w0hDe1UW^gOho-On^Tpl}EUW*_X~)mx_oTp~ +2x(ueb!<4AfWyi~M8`)`4bXPGm`P1mBUcqA|erhE&T5&yA`YsI56BU~U>)Gz7P|Kd;M2j?W*Eir%b4y +9(=~YNRr02In_djQOWgJ{-XsJwS<-Y!SM?)T#ny_Q))t>sn=S77$>L_vT|%`LN#90-y5n29AJ+4ws-F46An+3Vh<;l)?IbhqHC#oF5g>5*`@xzA +0~5yz5ej==L`mViRGm*+I)=Jq@jRg_yz0*%p3VgURlpMjcz6!A_*nVeZt}C%J?lpHEMcBqryD?9@1dy +ml8GGiTf|IayH=qBeNSgpK4qAR8_wxXZKoX_Cak3^t2v@kZ9L7du%Gm=uN7x+vJ3J27zxOLI^&Tpbb< +_nbd2X}}Qku)k*_`3F!-0|XQR000O81DB*+C}GG5Lkj=^l`H@N9smFUaA|NaUv_0~WN&gWbaHibbaQl +Xa%C@HVQ^_KaCyyITW{Mq7Jm1yAd-i*v92;R0lI(}E~ZV>nPAfhom +G@7su%a#pWTFsB`0YE<7T|H-(UzBqG=BNoRa9;&w!+>Z-`7UJALX?v+R$n6B?sR$p#w9=(=~raWKO1K +R@cs@oXZMoTF+B*N<$3{aZpS`kMv9ufG9h2$%q(=5KeK0mQWPFqh@Suojsu4SpT(n2!tS)7)63e-tPm +D)*Yr8>F^7{085h+v|cZN?KapOb?>d7g?#bucs1+>{>eU^N+>-jc6MP~niClK2~we7TJa#$>{zRxuD~ +BbE(n`bZ_n4Ha!@BEC)z<*pO>fc$?vBp|2X^dnLl#H_zd}VwdCni$Ej+nv4H> +e#QG5yReH1c9L3>Db1Sd4h=ptjcw|7&Y;%+n=rEE!f{x6p3nCDtxaD)5aydz&k?hrpXI5;yD3i5=JnF ++GleG`XK6NmQ%r5L*VdysX1Z$xZFT4oHi63HM~60oY4gP?f=qDrUvRZLT@oGcij-vmd!5Elj2$r>%h(CN1bZLf8LE9&^O%s|aeQBIhnq8a#9F-F!}7ixBNv;qm`B1 +**Os8GwJ3ZA2)%(A1mZ{Pl{>snI}e8<+9I;Yc=7Me+g{;i(H)nMc0dP-G&f@EDe&v)3s|8c|M)*BZKn +3t0#@|Hc4!5_KMUIw>AEf~bVt_2;EL5n(+O|)X#MweF?Hy0-t=kd+?b$oJucKYRJ5;E-@)TUU0SV^H; +p<@QB)fF>g5tge~nIUGlt`Kf<#zfIU^9Iee7^;q8X +26~uZ+<2)q*p=o&5`IQq|6-l8PH<5`T+<3hrGt-@oybAJX6N@I7T*1Pajp7&*6-T8(lGI#KHt%PX)F5JRY@$(v@hQ0Ddbfv2!+!Ju0}jOC{EjrmmUpvUxX;PM^5G1`$vSaFtVd8AiR~ +2E0OiqqE!CcwssBt_KOd6b$aW3~ZMs)<%tzbcMaEy87Dpb+sKUI$>wvPt +}zZG_x@IJ;;FM5$L|7r`FY>IW1RTZ3m|F7C{dF4j=vyEzhI*G8=yP8D3QkQFb;x4lBxixHS<6C(IlQ$ +;gWAiK~H#Y;k$JgYtUqWzm8k0-P+yF{-lGNqck^)O)AXln0N-P2BNwBn +Y!uC?a$PiHn%@D-=yUZtSE7^raT{X1W;I4w6@zCk_Wc!r5Hl3aNBFZ;P12zrrthK^-aV#e_mZoD|6@W +cUs#suPz4Rf(u$^I<|#4M2r-rETDecigIahFwdL2==${P>*-be{*RmAUpBo^vD4&P2k+1^&5As(ULUG +9H5{xX^$ZqyvsZ~BzmF9?3c}l#F?o+I`RkbyiqCf#lJH{9WMx9^?lXADF_mCng_RgzfTwBI(p0@L;{@ +O5+a1Dv&cJk2V`FUpJdr6+v@J03270&CW}n{^Y!b!34DTx&I{?5)pH(l~EH%3x;}+CakX9WFlmIpKE* +7HO%ju;5>R=S`5OX2Koc8D90$!`-Hpab=I?&EJMp|}jng*=MQ4}>n3-` +XvhrU7{;MVRdli4`+}Zuvw>86(F}LUaB6o@wCDbuLHh%-L(+4oz;c_3Rg6n+hy;|J9YD0$ob=Xcd%}I +X>Phxj{Xvb-&1*xS_@>-o?ZS%d%?lR(oAc|hc6`SaTN0e2)@XZ*eQKL22C92zJA6*wwkC>WtkCheyS= +Hkd;_NNoTbeMXMm+MsNGNXfXMUz6~s_N1!6eb0kKEz>wwtO`$Iq!g?&p1z`L-6JCJj1PO7_WBjw8u5O +VTg22Z8rhrj}@viA0OXsOqGm*F1XN=^4k8?zzB`!$I;Kne}xtEfhp7dmbpD_!oz&CWiY|-Gs;EAljdwyMBwKV{!wd$hYBgvcy#u-h7@Dc-|K|;Rz_1^wXPn@c$PyQ?fT`qf-Z*W+McTMHx +-;K!E0iZ3?|Ljko<;qJJXz*_GO=$SpiE&zFL{o0IYJl>B@=nR#cMeFB_~_8@8&ZhCg!S!%G`QtYk=NQ +ef|1^~vL4a3{c#tnXV;Tn(%JqK7{-K! +D`QxsF2(Tmz`Kt->h{{AB-;C`-h~CTXVN3Zt!{-V9`0J@b~3M-S0}w?^kP%{kR0Rhu=4t41lC)lnU>( +*hru&ijiXk1ibdpj$B;ZZ<~nyxGvD%>r?bpFz;s%{DZ@s$2GiAm@kIbR8=3mfRrgY==1zR_u#;t8`x+ +Ww4oCi?(pY5Jm8B`v%xRf%+`?I7oYDD@;0;jKmYXhV*<#c`m@nS*|Xc!Jc4cm4Z*nhma&>cbb98TVWiMZCVPkJ|E^v9h9Q{)pyYYAa3OzGZ?0 +LqR7n(Aj(v}eDV@e>!nVa*SjIW&UTuBDpH2-^d^>xyH`Jie2Lt^W+tJUsmzqCiPT;)uVD9;3a7 +HKluN%V-=tSC3XR%s~aIa`|FoTuh1%uBNSojJ>w8i?p8{T%|Iv-ek5L;3CF&E@so`K|g91+zR)&G%># +vS4L?C7F2hllhV6*}eI`_MWWWM~`_DBZh%X$!IN-)Q~ezvN(VpvXE_d)T~he8wp_ZT!fjhga@1o^90! +vJW`g-H^DNG>CR5D3?m%jNuH4t%bJlM?hihXzj%{iKl2=BiuEd`{bji7!#0M*oigI9G!gyYs5cl4c9J +=%!vCK15644tJebHGvoPV5TuOq^8OxdCHh$*4n=IXsn<@DlIUJ9UNtneXqfeBPkWs?dD+HqPkYu?aUn +@%i{oh74!-rqK_2eQ0U_!!iLeA}!!*OtU6yz)be!xm6HCy<@iQ2>A5n$MfDQq*%!#IfIH0@{Ml1>O0Y +)B+x#P>E>g<>H`2W0;bQkT^Bd%fNjfN~PbK{DGAL@*@tFik-p$t;W>h{(x9mOo_#(GU<9u;cLUj{q!@ +2)3D6uI-X{$vv5_8A&)1G+Jay1h_Wj@Q}>bf;>^O298S%BwkZQE*8{4Ie2DNgzyhik%lvx(wKx?0gmi +6yD{=_a-C0zFWrayL_{Zn)92aDBfJQoR_JPvu +Vc9If257#J06mPu*#5%&<;8BoTu{N#?UH39TFqAOt*Db}y5`@DAt+}B$mUvUrLK>7)?8$^SO)f*6b%q +4$!cBV91vqWrAHw(Q}>SUhvhNO2e-Ecvd2UiOB!36`{PdR(w2WHx6ZpQ3T4@}Ql&gezH&f-ug<4{@0p +V3p+t8GOez*)C~3C`3zFsU@eg_U{TIlH*bV)`rx&|1R4R4~xY^DN3^)X)=aR^i$E5H$D1T2njQA3J3% +-1tKu)*_sxwC0IY7H{YdOmlVQ^1Y%(lZivOU?EP7+vuyY0TPg=c@&DAsR45+__nygfG(Yp1a~geLka1By%uSqQoo%KEP +QY^E8PzEfe7Uak2e5U#G$fPg7x@HW6uUtUWqD*=LNxzrQA8flMET>|VtXC*-p)=pnJP`tkyVjB=q!uC +QyT6-~a{R4A&TXs5)WC}^--s976kOQrlkIS=ot(lT#(quxWS9X0FMqj5>FT3sbVigHTDX%;PV=In)+` +CwEA#bPwPN=*yCf+Dl6mym-IPBTf`4!(pQiLeVz>M$uSyQPn)pJLwMR4nosFutjodrSYhP8j`|^F$<%pwoN>nIvxHSfMV(Zf6&_kPL*JmW+iy5MSD13c09owstZqnv +A7hv_t{rx(PMZu#mDY&OxkkSI(LD9Jw9$^L{nc4^Lf{?My?9uWP^o4A8(I1uL=6Vi;DaYo*J_S=NYw%Xa?H%b(w7Pnp!xOGF17z_1O6dRpD(LG{#R&S~bQc$>p305V!9{=S45u(03!+tnSiY%HrC#aJpL +2EdB)?X<742NXh~Hc66Przl6f`3WK72_PiK<3usrZH&BwsQz54|th?=$*P`lt7G%aF$&bsdH`#x~x*l +ZLeM=yj-ccU0WL1*^bXm5Hp}XUHaE`)zIu9XSQU}dBAEP7-u<+C&hN`YGB)yt7O!>E-BD5xrb&T&oO% +=Z_N7wSWC?OT!x36BWnFf#j@d`w4HOc+;3RF%>%lWY-+SRqyQy5KVYe7|MF64wZT`A0aYEF_tgd3*Gz +pxglu2v@GEB)pdSa(S|nZT$_W8he$zM0B0_|cE@iet+a!lYWGZ_HZkLiLVA!&b8;-yIr8I{xs>OV+N$ +M+mo#>)(U(>MmswW^qb`oO7A{^qEYfCZs4E1rvQ;H-aQ*NPt(|9g%k|#ZPD%jVdY?myS=%Q?<3+-_0IKK;c@^auD8 +G=LwENWCIMcL~RSqMRjT|h$QY2M^%|pPK<@*s3LY~46nd1thExQPeT}EY9ccl>^>U$@n9&~5`Y^hko+ +lsM)FTQCUXs$YBOI@h28^FNg3~zAJ1^L+xD8jKrjKjabu5*E`MFv8cl~NMZM-t}|cP<2-`Mpyk1>(yF +4#M@Pt1ELFVox7-*`U41^kCz?!I@{w3dRJ)g_#TO(B&7zdi^>S_OQ{L|6E15^6mMZUgpy9l@fps1*hBU# +naR`u|w`+L$Cq1udA@OsyweQmGt6rzBwf=Davc>A8eMsYCIrbg0?Dpdu)jTg`pS9T3HDN))~6=zd9sb +7z1V9f6&?%h%sfz_XZsX;{WFH;Ju+ze`7lrO0UT(8IzI7B!j_cWs{i3rdH^Fx7vPay-9#FL_dBMiHZg +D5E`9xltD6YwOH8hbKVSGV*IeSz%W$XAr9`&WB{LhF>QzXC6+1pBSG<3vB4r=#igO375OGH~vWx7DD5 +tyczC~pU21J@%V5&)&~km1@bT9`4XIspvd*2kbI_hvH$jWZ{PgZ0r)xR;yPT?4+&p}B3kG<W@tj>Gu3)ys#uc>Z((i{@8gh)mQ +ANeb0M#q1wsH5W}AHl+LQ*?rM*KHcn(QQGez~lB!$)ODI-_6IVC_p;{9{-NFgXSk>m`_F~nTRA_#%xK +Ah-O8L>NQ*`!Hc0=LmTU# +uBqH2Uo9Ie64W`A5&Y_VgA>xQ`k<+VjMF +V52tRswMIiXvAh1Nd4)0Vr*Eza3-&&%!|2kr`!tsK&3L~qbm<817XiQNH`@OZ8?;rQP1Ei;RJ3ujIK? +DxK7&!bMgjl2M%i#%06D~eWOZP>ax>7B=(an#2Sc6~q +9DXr0|eXE)*c8LfyF)gXx)(e-uk;l-ZyTDRO&a^D`+SPQiF%#1emE6-^_XX&Da!amR9gD5D#b(FxtvwADF7tt5z@=GP%971>8g9kouzdq=DJ3afOBF4b&%=m=;F4(rq!017^D*PNo>QsroeCcp~Jzq_>qekYbycG{71EpRk_#i_VDKfS2Ss;+Z!i +TNy+*l4Wd)mmt2e3N3Xj9KO7aL+l;6;FeoYAC8_ZA*ld4|LGuXBUt^sSN!IoJ$Dj*3DAnD@0g4&ai-N +m8pc{Nma+S0WIo6rdp{>3O|(Ggz}JeJ+*ybupJA}Rh5?97?MJRyyGq@7?gCgJ-FSK)h)$we2*{#=Bc; +b77!g_am((R=bA4i1k5CF`gSS>F01PVU|EsJnNKn=r!VHy>~3(rchz?(^GZe~&0!oT2oa`Q2B9p1bMw +Yn^X;-iCS#2)*{!|5byHI*5%C;Ep;l8+ST7_i0x$PO-b27>KztFaYGi=)$=B!VDaQw0bp$>2@!nv~}n${et+#fqH51;w|Xt!LOi7=~KAj{F&L-g-sv%o}NsX +vorpG7{(6o-l9pHn-n6Hf2{IPJEZOJikBCJr+v}s_&i!c^AUgk#Opunlg1q#_>#Znm)Qa@7&~LKJ~ed +Mj!$E&gmGEk`=3llv@$LX+&6e`)Z77$2(Rt-8+(UiH-;~IcBq~$cUP5D>4DSrh1M6<32bNun^jeb)-UI|G-FXWC|*`-dYMEkeB<3=-{V8cH`cB<(C5 +*!iM2C>kmI|jKp-|e)lL~X*E+gCtS|Pxonfhqq`D&t7RTnxbYB;y&fBkfMd;Z=6$sE6pdom!+NdIt1^liq# +tye&3OHG)#Cj%dd8+093RnSO|B@LV4OB=}@3@xW*i1yg8I-E%RPo9$0?<0cWwo^`b;f=Pa2e{;-RpP5 +>bjB0XyUb**U&liF`UU}eex|oe4q>*6?Wj6JnA-An6oG@FacTNbFd1?vyj#iU30s)#k5|iV_Cmyg4c-H9ZmXU?C?4?)1PFPcBq3-eR1w4ocj3NcCm(Coq(| +_0xlj1+xKGgBvtun0v|Vk7dHxipjp#7)^M)$8uFTSJMX=d=g{~A`_?O;IU@mc5XOc{(zn@Nco%^lKHf$BbEL|s7ly}E+UWFnmC~$luN+d%*aS>u)d9ERf1Wx|79;vY?y +e8{B>a0IS=SG){;~JPw??%;WpxW74n5ljm3NkkF(H;`Ar@OKl-BYa#67e7FNh*9zwUpM_r&QiewZH-D +&~pT?F0?eG^kQioO^v%W +e)zO4PAs>c5TP)h>@6aWAK2mk|@q+Fd&hL9Kp003+W001HY003}la4%nWWo~3|axZjpb#rucbZ>HHFJ +EtPWo~nGY%Xwl#a2yk<2Dez>sJh%0 +)mU8kZF={=FOWAnb(a}1~MrOzL|=r0e3r6_bY|{O6#g$noYySItWf6V29g(=fdJuY(-pKi<4<31T_F) +gxJo9nJBBNSu#-x;DnZbNa7RIL15gnzi$SXW%^T#XV=B?8DB7`Xl^Lf?%IPgKnzT`H;l%xsafqa-2h6 +?{`xgx>ItyeU&2^bv-QjZTV#hEf&%d3ag{19{y%2N;|HMXB)We3`-gx3i0$vE?*^kF2!7s`SnQWI6Kstt$gzNg_6ojk6(;_4n3=arTXOMgbvt!?BZz+T +r57&@Dn|A5cqauuUG|c5rA-J~iP;Ko1}%tgQ@Gl2qVQXegAdyJ{i(9<32;sQ5El$Oc|{Rl%C +SAha47Jy=>HU83$NU^;0pJJ4#+q@nVxS%#;MK6ta8+hCO#_qpFuh&p86Z8H$Mx3R2QBL%! +us1b5m4iWhic%7X!j-~FZ%G{m62DMr###usdK^6w9ZY*jC*vZ@QpfBAEDTtewE^EvHV{cE( +EYV=Qg$Qil>yg_ch>ov!+3&G#J^-i{?~Q4=@_NAf2?bu1WP>XHkHL%6$hb +r0Us`%_FmY7ls#B>e!NtxwfdG1CQQc>t(7W%X@vcBs}EGBfkKq)R50Xx4q$5PS}PG@h+iD?zE-GFZm+INT*r)DN5Lw!{VY4!xjx$^$^;#X)|CE%J-4FtW!g4LbCgss +T?Q6QQB+BlDiMph23l>?={w|mt(XYagw;raqaR9&12{Zpuh-F51veySf%bl2(@kYpu^bP1OEW4fU?)s +s8asK|CwN^LB)E(!1t*s)K2YQMsuONw3gGxfgYq_mydLPoNI6f@Rpw4;H>ISM<;bJ+2qnoe6@nTQK-p +^JyRYJwNe{2WSZnd4O_-E#ih!(us~gPkmig5Zd?;IOzYr3P)h>@6aWAK2mk|@q+Dsh +T+hV;003$P001Ze003}la4%nWWo~3|axZjpb#rucbZ>HHFJE(WY+qwMJVhHBiQOOt@Pq`mNjOV?uww9i0RKdAclYhq6X +P?>$y{IBf!5c(!$Rp-GMyp!2~sS93>Eth!v|~%t&S5KJ4O8%--XfCq0O@m?dB^ftWji$lmP3`H1B|G-zWNmU|NiI@jzmL+AyaBlngf)}{aOfjP +_5m|f3a!T?TCdhhFOW>Bu6wG*t`WDJ2VVT_k_zJ<l=X%15WGIrW6WHiM +RHfvb@sJKTM^4jahO)8YLX_%8oy4cjlHzFFGEt5alEWSLS&dX>?>qgex7kHg%7J&@>rFw9{qTC6PTqj +~{QO9KQH0000800Wn#Tv7fFh5!%%07*sw03rYY0B~t=FJE?LZe(wAFLZKsb98fbZ*pZXUw3J4WN&wKE +^v9>9BXgeM)JFU1>pc!>7WR9nqGUx`EWX!c7({1PLz`dK|s*d$|6dUI&x)MZTjDD_C@ZKRDu)-R0SG} +J2N}4ot>FoIoa;=0()_uVf2jCFR1kR$onL_o=iON1%W}AUh}<`t +n{HxfxIV<@iqE&!r&-#`$6<66`EL%>8im#vi>M!-U>2J9Ze@AOy39VC)h{8Lrq5ON7M;af9#)70LP-Z +b3Dj&YO|HSdQKd$5VfL3;*-3xKL~)Sk4y8yTyn3a=w_o3n%{VaP*-b>U82XDoc-Gg`*i*_vdA|vTW~? +3Kp&tl&;DU(3n=qr+coxqI{37?5sx{6#ue7Pk9{SB+qUNRBkd_89L{hcfnp&l2N37yQ4zUT(&|vd-K5cDsZB}@m#o#0#tb#rEC~kVq5GpY@=4!yK5mmT{?tKf +iJY|51zU}1j26H7!T?8juZt@nNbs=&SRL7)_;>#Fa{xsAJps;jPK?XpMi +V>vwVrRV?RY(2;Z&{Uk_`WjUtY!Hah<#DH}J%^_!^t1Hw*i4OywWG2}7p8u`M6<69YHw26|;WePE<8b +T38r8dbAsQAx5N)vpf$n{dSPS61V|1qIr3;TjHk|PI-gfY-w*yaxETBZ|NRKh7iYbWq@0ESZZ;Y&$FnJ`M?i{e +y2(%}F1VbH7$Si=e|}{F=Rsh6JEihXCgF4j83xo>;k)4kB)FLjZv$DWKf2M!Q-<^JVK5#Mi^3iQP|JW +)k%|0dAp(=n-iPfg+nsqb61lVAcPuRAxh1uO|zPX +SZzVs;k>AA+TSr&876Dg_55{M3p8-|ci>cr@mCIQL3~y>(uY)Qe}C1F4UAMfsY}roM$k;C+1aA-tPi` +xK=(4oMal#~lWfvNHqN +{K@z4Ukz4i3IX;PRAeaq{*?qEUU7&{XNA^YxQVh=ib5b5B9h;Aq3qbF_|kjG^R(}Um!#d@_oCvlq>nx +C4EI~@vUY28z<5ZjI3vZfZ1Xz$vMQM8UiYO^j>CFOmXc4V3D!dqmNSFN<;Yn0tK9sGzo4nXY_zr +5H=n+*!DUIsjquZkc1%h-fqwIl1wAn&WBBVrv=B9r3m}CgFAv8B=gKZ@?fJxb@g;-b4w18y}#=cLE8( +L=ptHh-4fmsY=F^Ok8l+i>^7q1#n!4$^%$q7GV@r>h!YNSdLHDX|ULW~?sRQZ$!(k=pIr2PCq(!w&gO +4S70O3XA`&9!mXq#lb&1Ja{<;vg*A$U?0#(g1LIEerYW9?Rewi6}x>=H#;Rve%GATCsgZIuNlEmL7J@=8A$)SW`_XIorFJ|?wwT7+xZ7}q?)1=g<6cQirJ5m{ZWYqkltm6)k(<kcPwd{F-Hw!4&ZB;7l>Bwq$~{lI4f1QPs{?9xk<5`TO+VpM+O_cLe@HQeMS&Y~>>3b=s8bedD^kbi(lk^+)Pm +hhdOow0T4;SG|gd+a6!ykkVYeMz!CNZ?laq4b9HaXA3oPKRZT<28jPB6+K1m3@Z+50b$sJ5r*eZA73l +j&p$dA_BR}J*pCZdNuGCG+B%?k1n-=oUBUnYq_P+mWVW*8p}7&=7cj~2?G_4BR>0)q}7C+eCo&5M&ED +7T9ner%FXv^)4!+E%hgeQ}Kqo7ZH*zb8?8|A$}$dY +hEtlsGum@{DO`l9U*cVS8#f6_M6HV#tKPGVk2Dp$GR|RD-`7 +g{U^e8J0GwUM>&k;Y$^B?<1#jz%AR1@|3z1dYc0`+MO*>hCp<$JGq(+O +0+_P093M0<26dl+bz7;M?zheH0KfL+c=|zWH;y_${u@gJ5Ri#90wytiHqQqW=G1~5My_xX+l5C2w=ST +Y#S9@o91gpc|N)9x7)`>Gq?UO9X*FO48DM*n`%=E|B|-hCDiMq9^1%Ae4F03ZkNh4;Cjzu +Jbf*`81Cz66z9qm-cX~*& +sDK3ux$f1n*dvEQ$Oo3TKD$BASX1I7v`5tvYIIDt#HZ2Q9XfFXp1Kgkr+GotQ0|3M$U2qjked0)I73)TA!l{bN7kQ4QZ_@4c6i=}<=+uZJ+k+~@8I5%{Q|PK>5QT(-! +sKaIMU8q{R7Uku`K1s>X2UtyjU>-FOafXtL`vOrXPQTE9BCp9^jj~-^-iW{B>H^%5ez1;c+X)zt_~wUbOnEB& +kaq?np8Jw}C=DWV)WO)Vt +16Peg)wy#OcyZ_>+D)%=GeIlTvCChu4c|_Kw6rnjeSt^dEo^J5yKwH1|Fj +XHhVCiY%j96vtmKR%*k!n14;1#c~9E;-~bscgqR!nkl+nL*YIlV)7vDQe1}-Mo8a$C2=P%7Z(b6&QJt +gmKGnwmfDO$oBNRyRgY}uTHhF@=V>)B!H_5YKJpb-}{7qd8${p$7Kb@UW%IG{81{*-ey+;FbdwAE?3< +JQdWOtuz*S_v-tEsE>6^C1j%zw&5ExJ)k&Bdx#;x(;z*d#GI`{B3e(<5&%N<{c+5n0^%zR~nQBAroWC!Nw8IkNV_2EWSulm$83TMaGE)yL&p)G4PW?VfHm6@ittFOVaA|NaUv_0~WN&gWb#iQMX<{=kOi4pUPE$oLba-@KQcG{*Fc7}`SByB +dQnrhFTJ6mQQ>+b1Hl?>FVvFi}27q!t-?cmiypfxR~d+#Z^)_6L(dbck_qvZi+nWFnu`@8K?i-WGk)$pX?Sn<_Gs@6v_7U17=oSyIv|}199?Vo^lwI6r}M72p-Z5(;T8@S0~N=3 +6Y}xhc?hQO86sHJJ$n6AH_njs69pRY5e2GTI(Pi)#0IuM`vEDA6!JKHwkor)8|$1tO +A<$O=kTyvn(l!-QA(o+Pl5dReSB;DqA2-a@eeo^Roo%;yP+-=z{&1%+aARc2CPP3CE~p3D3NX1JFZ_+ +`tL)Cj5zAi_J86cvH3gi4qAYOkag#r#GS6Zg)j4LSDsw^sj^mByGWxi0zB32^TPsoZj5 +U==vYRR*Vs2E?PdPVvmEy}HuFG~%}BAW{=&IBssvrOEm&{Udnxk_NpSNuhcTLq#hMq@X1uvrQ!5g*52 +s%4RrjkL(M!e@dmmHt@W$Vw!@m8>X`g(_AFqd0M+7(s9^7dI4&8opcvN9et-#0MbE11QY-O00;mBm!w>L)(eM-3IG5@8vpc!Jc4cm4Z*nhna%^mAVlyvaUukY>bYEXCaCz +NX`)}LG5&m6&#g;)}DV3Rri}oN?MV+&A@xif;SZ;9$0%}DrC7zdDg}bz)>*H_lH~Zj2kuSg3IY{DiW_ +F(6%izjFqYuqX_$q@>-QFN%F=twMY_Hl*9z0N*PX~^=R~r-3r4pk@H3xCe?b4t=I;FBqSTf +_=74k7G0@!F;`8MMeLE+6=-!l@^U?Mc+@)`ewy93_aZPl{lb?1iqr(c2T|+3q_B`Ao}$~0!qOM^WBcX?Z>Dzbc7L&BPe@ ++U)Y1#4;M&*@jCgl(etC8~Wui(|CXy0CDz>~fNv`TL>8gdg#A3MJZI%3R$>EO3?F4BY#mH9 +7eg?DKtD;ZsD@bmCp56RJXU6>~)NPe+1J-4hF%Fw3bIGiL62C6uLS>`akeO@)e#Tk4tF2Fykbe<9(u9Jw527k1^mu2tlzk=q;Kh8hiUR+< +r+914|j2cJ5s%SD}>=`=~xu|sU;Dyj%TZHsu+%D5!gwO(BPT0d6XOIUCz2__>WmDIpG9ZZt67uMP3-= +uVuLCyxq5e<2Cn~xXV#YScZ1wEr%QZNg6>6z`>6L813$2k$FHc^*c@<3uBD(UAuaxmN{L|UrQBLeHA> +rWznk5%k@2=Tj+4%L8(SJ|+wdMsXp%=#gBj3Jx{pTN|p2J2-!W)!TjTSLy(P@>{V#jV!pz48*xqXbc_ +VMp}!+%qcaV5+o0-r2WcuqLR4;KqsYY`J`ef*?tq_oSV*1KC+GlS +iH;_do{s%2^4knvW6MjD;YGxi)6!G`wNHo}2;M3X`s$LvQbc*UA+j6{~ +haS{}#==Z)bX`F`Xn!P9+ZC+5M`4;F+Dm9ga&1|QdBMbrXs-%HH)P~z+;5PC*$kQ9u$c)B{6)@O_^Rb +{=slZ5qfMej<@H(^kO|!bqDf|HD>oCngOes>>QRvdX*JuG%N)wMLV>_Xvixg((n;ism`N(>rb&w&Q +`lHz{jI@Akdgfq;NKlBgX(A_PXev*r_*vzNi~9p%DsD0t#^>xgo6Tw$Bt<{6Ghnl`xM2neHJ;PnlLUL +fs3og%iH3n14Ui?1`QCG;~n454Yo#8?jcH&FI)6K6&2HsFU6f1egAe1+FVqiSGiF+sa}S(kK*mcMj^a +KVfdMu7CirHfTv^BxmREPVX)k$<6ikCG_kyvvDxf``6*H1F0G6rgkj=y7Zo2xUZGU;Dqil#Qtr~#0K= +`X!1hHOwR_VjYD+4EzSH;QJHpNgIDY#I&u2R6L^-n!yY-gGM+qwS*MKsRwV{8ox^i>?{ake~- +f8Fbq9yR|kbBq?UC+Lx1R)h2sWja;R+fIZhn;uUb{D3r?%uzDS!&``vh$R;P3XL?bAu!l$VA?XiW&5M +UqMm|Ymc36#1Y50BSUt+-^%WiLIJOX!Ic17x}MTL6Fra@Hb{29jigi9CnTXt)Ga5zJwTqb|hLS^?xTV +L`7-;Wua@ca-3C#_|nv5$*tn!T^c}h>1@5_@qwuK7!B=KtO9qqE^k&X)}dw=`h4odvucO(R*aMeDMN_ +t)O0V{|K@7V)v*3ro3J^B@#vZUO&S)#mi6??PO~&ScYz8W8I`1#x?ute1TK(^(}qg;X{}-o(#lMO|`N +};k%EQgw8+(!X(@KgLG95Rk5YlGM{0{v$zgFyJ@21BueaF*g;^HN}LmCOBB>{+CHszM(AaC#NiYhQQI +S|$_Gp@_jnl4i`#pnV_DpTeDy1$H`LWbz&F~udDVvSDaD6^0!DO_3OgZFn}D7vx~yucff +_Tj;@X*dksniK9e>~^-MAp_`5D!{4>LV(hYVhCSB_|3q&j9WU^t4wa|<#MI+daXDj(Qo52L=_#0sQos +zeq;l4G!Y+YRZmDx<=}O3QuZL7dt*#$j~Jh$CHItlb@tU{zD +DPzx##g!UFv0v8Z2f;M|Nw_UiE5Yqm?zA4AOR{w#2wavgDuTrMfm05W4gkxZOD?$YYSb_y +D9gaE0P7yGWgT*mAMyZ@d#-ThZ=d6&Kt?RY`gPRDB)RUtnpA8I9AQ3^98oC?&XYXm#e=$>!lme8qCQ5 +Fk2KzKL8cg}>~HK`y^Xg9}}9Bs@Q*NR%95mw4gv)zu4%iH>!s1?bs1nK82+w2~ow0|2DIwjewm#mdllqFILy+$JWPNi1U&`PWuLMpI9n5oR#8t4pjIN)=;z3&W2;0_cb3)xDRcLT-u +V>)HlWCyx75W~C=!$#jtdMnZb2n-ygNY@2bDXAH5Xv=moBQwX#a +{QC?>%>f!v-`TK2Cc%;qrUlB5?1O&E>iO?$w10_}qVYFUYrZ`fy8h7@>>RosPHuXvXGq7Ku`)b+Lsak +;{`E&C&oSs +8>1Qem(RRU-GJR1qk;%}1nc?CIIq#mASj~^3<-Z1{?8;utghb+<>02Sm*6(o)Jjc(1fAf$JPiK~F2zj +3I1L$Hd!k)78J~;?>@&>G128|6j!DfD@n9@72@~uVJVsFnf0#@zn1yc{IRB$9d@v;wh!&ATeJi4Saun +nXK|TjRGjRyCv5xs&E~XZg5pj+$9jn4BhRDRwu>l&PjjA24K;QXUA%I1klt6~M8Gbk&ejJ_uksrLMD@ +EMZ+ev(s<|cX0s7z@eN`*Povq4pui6P%V4{|?`&1Ys?Yz(tu-JgpKOnH)Sm?Oy^UQgy +DXal!)C0u*%FeCAb2<4JG(&MFqa2GkMin|ORqr*1e@J3C^?R3#H^J!wqq;2>0Ce{UL^5r2VTTF~X<<< +3h!q>s@dvOnkr3BPbZKK{f5igk7kOD~={au#?m#7njg=~i&E+bSg>mFb`qLCTXnt0?ZtyT_t|YG+(^h +%u44|256nXpl*Pq(fw@xGK_xt@84()_?#_?QoSCsbItKY)XfLt~+=P+EK;Z;}PGj}r(G1%p$|0GiSo8 +wOXY?HE!W;Aq7oMo#FiBXTXd_Z`3I9qh%_Q7OCzHONGU*i#^m~RWomh{hUaEJ)*i+3pN+_J{VKN +lQ9jhWlA`94~s{1_9|$g5zr3DH?lDk*tlIPkbG(V30q-}Rq3a7;iFlm?<*EMVqv^!-;9oCjG_~pwIsW +mbEn{@X1$`YsmAWWmu+}ikL^a>Rl~~EH9D;Sj)ainc(rKgA#n%Qc&SS<4;rW2+1dFr!>Y#oQ6_6sGRU +xs#dB+gj+ur>tQyQ3E&ynP`azn^VOn!H&D@QWd?+hJBSVB0xzSXcGd7)4h`C3Ir&C65rc?B=T;<;IKz +Gw=n*zzK1Xp$DP!9d}>9#?sboMf!@L&S}djLYBG({yX^a2r+cQ}{sg)H;isaBVN#)oTn6AlmbB4XF4Y8|p?IHVD47R&$NTr;}2ziv{!&Vetv_->N(rQGHC~Q` +)Y`C>IR4Mb)Ct6K+-7~Ee+u}W0I~`toN0l}_t{p^hI*aQxUu^PN+RgjIi`MbN6S?91?2;gLh-M>vtUo +!==DgUe4=_zR@wAm(YkwIv1#tq%mXzJNk#!}pp@f_k$!{e(kqSBiz^1x+GsQ$w+igCwYjyiS9oS$0^5 +*T&|AmRYs)6py-YNfri@(Xv8WQN9(81ybsJVVl{#gR)Mx=u^HVL*FWV7rVHd%Xs4HU9oXFZ*))mcw1g ++_~FR%)nC6`h{CIAyJ17r#9B>ih>#O9KQH0000800Wn#TtqxS2Z$2@0J}s003!eZ0B~t=FJE?LZe(wA +FLiQkY-wUMFJEJCY;0v?bZKvHb1ras-CJ#M+c>uVo?k(@A8gM$-ln^Y#b%M>rfE7Yrqda;neHxvK%pf +%)B_n{d6W+hg!dq;$G~3KC{`KQ|aQ +6EA?7KJbzCAt=_MPo;{^vb2(Ms*2G}j9y<{{P-GtQw4E(bcJtmtZ{l5+D!o0FB`#w?muaXb4V;c1s>m$xc8% +aUDQU#H%_)wpY9aspNVBw&~yiCUKe>*DqcvkV*$^^2AW) +!H8!hOl5E@7g-e?j@y)6dDgEH- +!G4$|&%6tjRGs9#6C-3m2G#FZ>%RTVA;M`Q~}Q?}Vd!;aM(^(ELvX_xl)F)39K5NT7R@V4q0L#* +Vk+Lsf>SB*VpV#Xlg42<3ez +dm?_!$}(QSuQ3Qsp-*vH5&d{eqT3i~jJ<_bvGpNoXm2!)Ft*Q7T|-U|tc1%< +wBrYR(Ebw6AY3V5Xmb{aNV`(L|!sNoUPeJok6%(?O#SsoRjxjYyuf9K!?oVyqKM2qWZU#XK&^%#j1!0 +hM-~5dl+zzLHo7YtpI-J7Zy;v0!J+VnMEM2TWSGP&aX!b^=8$IfJV@A~zsyG%`W3Q=Pn$h=-;Jj(I#? +BB}$Hge~pKn3Lhn(nhOh)|l&1b=x>?rd*2^*yJH&(sFh_MBSd7@EI1&n&ny~PdspaGwMYJ-crw7LGopw99)_p!9777@1s>qL3*ST#@3Qy2-U*sz49>sHsyFLg2Yx +DIvorCw9qEz=*-J9!5FQH8IK;-6I;Ch=r$-BAVqpq}=c5LSgI)-6ELz+i&ZH;eEX%i$T98W>9HEk#V( +OMwTjQMl3G|zT_db_PusMNs=n`(0K7FpSf0RH_W~T)VhE?y@VY10%GS^z{TPI6(bkxYte +lfk`5oE0-f8ASzR0F#?oCjf&?=C~?Y7AZxr*$9(B3gj?V9M;I@MJm_Y@i*y&q^+&YaK52YD6ORqCGt< +n#u4(z+OT91Y&_v$1B#m}_oFGhKUoW`obR%uzrQQ9ajuUqNl(MdLc1v3nTj +!)uDIc@R=h5ltSd5OSK>32cEwgO&W!f&8gM$-H!uT`%=i<WT&d>tmB@7?xJ+Z@2DzA<9%N=NRR+_SO;JMRK +Yx+3?n)1(w1Y>9gbu&Ty<+W)$t{!4rRr$+37UZ`a@+_mVT8)huZDt5~?tVYC<0pH1o@Ip^!k +I>d<+4{jOVLRv*!riHPetj)E +wM256B_x`R2vJhJHXPCmU$tiuK%J-J03-x^PD8lRa1xV@u$^IO?_ZsXzdrlZ)46Cvz}(h7$$n`o!vGs +_Iw@D6AK|KGs9|+?Woj6#f8qq?`r4_2;N;~NhyK(S5K2wVQafgI903b#Iv>O5V%tcRw)NMBwA6ykn&9Eq;M&^~}ZM@>ko;gvo-_S{D&@`vC7c +yv?ZWNAyf7sRv(#&L>#*=W+1tSI-($Y|7YZEmrY!#EL9*v7_4R}Xir`;*+rN$pGf!}*1UXaX&R!b~*a`>W0j^tT4OUTNU(D=H6J +D{@!d^u4;@i|*?N+G?)&<{M*II)?h*a;{s2{rrVegfU6{n4~~Q1cxSKa6OgfxRcv=ilLsPG1K?7C%Z` +H+kgrrcBP+b`RyEUDR=Fo{xaaxHN4$5dVG3sos}7QM@?JXhxd>FM98}=hUOr|f+6}NW*HL^mlUvV0X) +n&QeG&SJte3+oWzSAp#XbK2GyY#*-kDl&KaPZj1rjL^zdl3lgU(ILu$7nnIQeRWZ*c=)xCvv_tL?C0# +hBa?8CPkDp0IH{~0+xCBTN4GsrS9(a9&VSDr(f(Gl@w~QX4 +?8ClA;~fG7(%rrF1sSE&m&w4kPQ}UW_4(Fv@L1e&q;(6WZ@5Xp@LCl&Dw<5cP$^T`~7{EQYp&1A!Z$ES*4Q4aO*X*rhu2fE2-qFfH55NzMXrmVu%6F*fj1-^1XlbWicF9%x=(rL +}*Q^$HlaT&@Yy5F|-T5#4vaj&Hnzd$YOT<5XbQUOE19!cdx +8op63*->co|nQ6b&zmA7WjbE`nBR>-a(b?G6DCqD1RltbRfbG4RX>5Np4%GWwfjw +D4A#WuKFY8NQsFJP^L6w%&8pUU>Zx^&`W;W9+3T>UwV6T%T+~0i8d#bsKMx^6;W!&%;=X=O^M>H&?PIvzOGc;XgbwO>zD84;=a8HxZ>7Wa+COIWB!d!9|yC|Zhkpv%grr0ds~`1Q(Oe%#!ad(8IzUOYNPMHX{X=zj!z?*ce*Bi`fO?z +Ua`hpVqi6Fi*ijT3wrGuc@sl4sokJTnyUt!5Q^vGs1w3*FO;q`4|G83Z#gogor+4{Di)!21_?SMS-0g +rK(F-;y2I=$=Ejb#=IV{|Q`|U_qOO{EFq#|MM)^%MwuQ`)n95`qC +?JlwQx)lkt`dkmR#}8lP8;9YK-x-gIjLP)|X_w{Pb|Ja5HTx5w|}InU*&+|k{>{AfEotO|od#54ZKNH0axNhYJ +l2S8Ao-dQJ+Xo{51n<_>G=9uw5`-0c#kZeJw-7fwDGF=Iz@V3}UUIal42S9Sj-UCx0=HhGHylI_SJd{Ve?Zbuoz#1X%0pKVi6`7iSY +&k?{oNxCmzMd=MC-SfGd(CKYrniY7=&#gJIJ|UF=?pqVrK6ty=eGrxh3O8A7s&xE1B&$4m&!&+Ib9fb +F~9=trWfGQ5PI`6)F3*&fNeqPXy{(zx(7s1V&fa^P%%tbeu8-x8HN`K;naoWxLB-rGqyZ|E+NrM$7%b^vB`Ev +s+^q7ToB>H1Xr=z&|$b-V6oS=f!}b;m9oUBZLxdnLS~it=*wxvilh86dMB1YahfxwzXaicY^wN6r>)c +gibZ-h11n8yEDtdo%4;~&mnYoDSnvfCZbbOp8A9H&T)Gp#IxGn+9csC?$SJ{_Gtmb$~sy+iYSk +vNpoC2?Y=%-M-+xHhCbwGs*$#xH%mz}TNNF=f#mkpS>;Vg*}N +bzjoFQNKy?~wK@exfp4N#^AMf4NI;Xl!X{tWD&~229`$~u>^Mrztns3--xt2}w+ld237phFb+g>y5R9 +J?JEC096HvihXms{BG|6n7n1E%$sniYFF;Tu|q{#I!n+Lt|=|F@F7P$h-x#@4WFnsx>s!x6p0bN~NAr +s$h~x@v*5(>q~mS&0&c>c5^}_w}5Ic{ms`7^eLjP)h>@6aWAK2mk|@q+CAjyxYJE007G-001Wd003}l +a4%nWWo~3|axZmqY;0*_GcR9qWpQ<7b97&AWprq7WOFWXdF5K$ZX3xFedkv+m|m2643lhjS65Y6ojP5kO{#Wmx!e?ak&5M#$z7t-obf +nTInSkvv%$cQeauwMc*d6W!42kzM8*$;4T&kzD3WVG;b|tEAdHDPP@x!@IsS6ZGqDU*9E*VDyNS!iPd +DewAFt1TauWj;MP^RsCcRxOZr%zWiu6ndxt+L?kw{dQHzmEfIDdC`>oK$Ya#uvTgl742qtac-b8c6sB +1^DCsql|bkG6Sl#|MMul1C9-GiP_h_u^lL$nr~(Z&jEL@A0eN?fmNX_1XFI!~1u3W6U0L2DD#IuYwHJ)i#l*ohbs!Dc(in5}T4DiQID?X*abWks;n;t(4%y;x5|DE!$cPrfeC`bMc}h1d%9^!8 +l(^^(W@L8L2xpr_oV>QRQ!Wi7V+Q9?OVaK}HvZWgHB4)FsoV1nA{;9#jS*D9Bln}s6Kg7#Y(Z1oyi;% +0B8h(Z%8Bso{C$b{A5Ho?-33=jkd&kR{l_;&fy#uyA)F_~!{GZAZ1c8c~Uf=q7&tx}-{nS~*P=ku*#2 +p={kcakgre!lS7+w;>ikDZ;rJ71hn{AYJxtMKrjZGS={PRK9x&H1LtNKlzS4AS@e{gl#ZT4uL#a;ZD1 +aC3bN18zRhf2WJrZ;z;7s%%e{#|MTFVeNQ4CUdrzQN$vpKCvPp{Y=CqNve`m@?2D>N1Abhu#irXsaQC +Z_*y**mhV*=9yn?2YlPK|wyIvlGM7A(KZ}&Xc8*mdMGhG|^a$H(II@XFFN057w2XtO2nBS{;TGucj>B +U`90_En!ltQ{LFd9ABvP^zCZ3W=1~QKhewn%YLoMc(&X_s-WoSZW=&>Q7U;adCZhJN!Jb`L +F@(OBlFZjx!N$ywZ|htigZx>{oV0-kj^V37h^^f2d3+IlePyUYdo&{iU|81(0!LnOA-@*34+fY7lE$B +NVH%TGePOSIzrMtEz?V!ZE{^D#ElyTGXahg=MXZIOOR;D|$@o$;qdEsmp16Fu!PDwkyw!u|KiXHH2~0 +Iwv6I5k->>FQs$;dW{a-p +(gJiQtvH#{FKt!j0SjP|5x@h_3hg&Xo#h6}~z#>%ICiJ%Ju0|6LXMO0WHl?)H%6JI}N2CjoYH)tFGKY +b20Ay&vj$Vr`z!?8HiffG;=-F5bR3+6UIFl9>2@Wm!4uPK&#_o7r@Tkh54WKyp*+tF*9;1fq?Wo%9h^ +}QaFAT->s4PbUXF(uOm7a>Q#dvzDL{mjTY6y#2NO4KftpJ#rtv|#WTW9HC`zR;>(8Fz? +H&0|m)7dIfoB5FF)mPhI;jW)QTwE7jUq`wo*B8EOts^gUM%;cHNo0jue*}r +_>TQ9bS95cGnhDg6AkRR0)0R*q7AI9)%aHDdor14-l$zio-pH;1(5lLr&WB|rvJaU^r>75q-KKjkHd6 +wY=_SvDtvPIr8L(jqRi8Rj(78*$Cx#`5O<}MUg~BZWSq9SQB09kCB;tY4OpAn0%M7xUyEbbe{2~{_x_ +{hWUm1}4uy`|Vam>2Y{Z7oTRzuttP_Xjp0u+4+gfcoA`UeEbL{8gcBG3=iNCU_#(hrjx@+`x$#u55au +WCGYee+ +BY{e_G=Cp-(JoWJ2wCMLd#`JSUL^3C)w&mGP4u~e~)yCKcg2GNIx3>(OBv_71kn?fr>MP8(KaRYqoCfhAl`EE3~Mq{gDQp%zkSmT%66=iW#L>fZd%^*!AI(-#WX#bbE+Hd1L +e@rUV7k@96xR=Ts?$jyQ(I3KDjb +xYHfKP=Ul_30c9sAPL1Q()I`K@08ZZtk-k@}=J$qknlyhg(6t+|ZJhfj-IG_Vw)5uXH0Ur!KyVC#<6! +Sfk=dq*gQ{zP^!dul>KIn2)G#LDhe+|Tznx(@qb3VJyLQaIUkUTX$uF~^+S$o2*Ny7z?`hi8$R0KKuH +1E5cEHPCi*BL0wuWvy&~qr=gT}oTe1K3`=A#S;#6co)?>$uM#5ck|X`uc#aN0D3bGf7Tic&s%3xfPe6 +dAwo_<^k<=94?@N)Wgd_N*{jTYY_6(elfkHF@29A4Yz6pg2yf|F3+_)C(KNPuhM2Tlv7BA)6ZvbsMqqu3GipLCQ-M~GJv%m&NkX +8HJah_#M4oiIF2?*OHvV2#x#{a`}tEo^4Q28zJ8!&e;Q4CWZ)#CQU>;^$rB9w}sSSQG +QJ7PFRdDaMYKQo2G~BIS-hh*uvI@zASxtmt6umJMsGUyN&8p8MPa4xA&hS3j}Q=kM9tU5$`9Hm1Yf$P +|gvh_HH6>X?|+51y?HYBkamKCle~A!`kAa);txJ`IGRb*lDRvuSaqfFQbCi6XjM*|LHdC#sPZgaBX|I +_yUE`{AhGY^XZYf+-~7K9xCU;%mTd%9@r@=Gv;^0Tx5M6j`sRp=N4~O`%erxwY4@k@yTfoO1}@dI0BZ +hS(BXCBGK#`m5FBBHbvdm6mSptLOaxJNs>Ro&Jb4xNUQXGPTq;)XDj?MNbTop}}(fD_uqj?lqJ*ky<~ +H?TN82A8TtteUP$)XNU+9s#b=%<{c(GrpUGr?u((G@$mb!uIX@F8O;gUYh13i}ahaKUQP7m?$aMX>ejD9=Q8&--7qIZ%|7E1QY-O00;mBm!w>S&cxw90RRBN0ssIX0001RX>c!Jc4cm4Z*nhna%^mAVlyvac4cyN +X>V>WaCvo7O;3YB6uiG*@zNfu$;zQkdLZekq7v;#l$w}^Y$$B&>ayD`t4aU8uN0wB<;0tr_hvHC$E{Q +XcR~xBIFaGzfQ4{hduNO)Zi+OAK4wM_9H#Gy-U(Js&L-(6N{!#b7Sd=;jds>30L~MoIL8UD0qN;+UTH +Y*u`WbbN;E_TcgB;dSx!x!OUGr_EY=VKF+lXT4EXdRm_CN{dx~Cxqs!A;U4l(KWP< +h^i-gKb8hRP)h>@6aWAK2mk|@q+HR{L0lCq001zj001EX003}la4%nWWo~3|axZmqY;0*_GcRLrZf<2 +`bZKvHE^vA6ef@XaIFjJ+{wvt>Wi3t1Ozfo7Y3*ocJ&t?ZuidsccDipao1rNYvbm;6HA&ggq_cnf)&~ +FrASlb(%-p-%(aVb^5-0$LLZQA;n3csmh@#oDUX~(?f^@zp$~uViyr|OFm2DTGZ)WsNXkry$ +GjSD)L%A%8KjjG{06qi%NYfb*-wH-U?lzTInM7O)28Us9moX#;^Oh%;9IXHNzeoZL2Q-aCv!tSme2wV +z-013L^W_+L}inredKg+7E*5ATNH6N5S_mp6zu4c_XR?U`w19^&1$+iVN~+RT;!yv8=I)3wm+M4*u4*04?zk`*?`$=)u>TyS*KZ8Rhgd3h#;OH9lePTkKSBHZ;mdb*T;vKo;r0 +I=M`0wbuTVXF4eOw9#I%gi!5V|R%Ty*fKiL`bvmtOK}6ENDzPYwiNJx=(};d<8Lhjci>peMb#y~OqeW +a+NDD>d>=ca8TD}I$73&eh-)mpc+&@E +pmZP1GR`zkY49SDc%9H;M*Li@jbUV&ES#MZXbVWnjVZ=F!Exz6p5Il3ICQ?J*TMO}Y7 +d;RAJ3Z9q6hZQWwS$d6RVElZj1x4g%3#K_-+0HWs;!Xga7**ASD3T?F!hj~-K8;s$2}vY84fKMk`kd* +{czzns1$3gwmI%#!A?_QNV?3t;8^14BRW0V&;4jSChFb%J{PYU^@%TLY;ppJ?(VHRtI6wH)$&q|=F$@ +}f4Us}3drkei6qP38Ns+7~p!4a?GQX|1I@pC=cr)mcC>Ld#6T6DqkGlXcLZ`4&Y7s5VEK4WPaawEfq2 +{5dRg^B`B!M+w@skoUc?YwPZ9uo3#|U1|5%X6Yb<~@ATu*PJo1&_7m?_n_Lx7*o(rGN0) +-bTkS=^!2lkm2LmAnmW4{!l{!EUh_2KQp81csL2js<&HS^*1zzal_5)gqn>VEzHHkZGI;6V(Hegj)`I +z@m1ZZ2hS$Zbg2cE`%!KJb`5iTP-}78*X?l>J#`X%6=4K2cl@OwS^5vlT}nrZv^0A9DM8{_w9{>SI>q +4eXrohix&?;O(JAa(2bV`M4kd|%_@%%9Z2 +y~Kum}HO%+cZ5>E*%k=>>gxb9MrI>A@S=^q^WP!YOm?e%X8Xm))5 +PU7h;NIprmi#-Q{Yyt?ZS3wr9L<#7s?*&X+kpYhaAW4vmd-!&~s&4>L$eY0d&?vSUXThyl-4|tovj;> +{!;%VO!1ogS4HGdXe!N7wRy$CIlT7oW`yMjXDRNR_!AkRKwoJr`+uaSWuBu{LPDLaa`_3mqp2@Znq0ej*@JYQsD7=SFfDwZIVR5u6?7Ud)p*huiB5R2d-OYdOi<;1%P +u4G&a0YeECfy~qEo0=qnk!mXpp-+j}on$cl(I{9Dv2AIwA=n68!PmjNrV4)ga+WS&&0d@x{&)mJn|>7 +icyx4raB}?f5iav#Q}exQ_^jj($19N5a^fqDe_;(Sn5<|xNEW#2<_la+DeRJc5nhKwnC*A(udW86UfE +j)aYV>cM@m#b#8v)tT)qR=_a69*&2Qf^vwh!^wB~6wmEGPR1+Qf%+r$AqmCc5#Fmz6#2_%6xXP0LY%& +W$eK}d)u7>Ct)dj{IWFxDK4bvzBx+4<%1+35uiv6-_+^kd7IC>R9nGcY41Zz%?O!w!$DlF1%-WWdI>* +|0+;JIHd$2qc;UW#aGS3{)U5cv>c&MiOd--*z>%&HO@^!oD(Z$}~Xcnh1$^#``qOaIe3*LNWd7is4ZG +sNM13SeR#-p1V(Ls!IQg!~zl)i8>Ysg-Kh&B7X;)#4sSTV<@tyJ--jkr>aVIqno&j^srD&q;7Lpxr9> +Dng&{;xzU-ZUIMU;M5|E%{q?=%<%BY(=Or&AtF9tvknGbORI;eA>9G>otlaN>oLyW82_^$%ZVCG#Vu4CgBqoL-{?-&2S +X3A~JKflsM7uC^moa12^GYIGm5@KT?2;X;SMx@@u)B~I3$jaftlzbTJJy)LaC?1QypWeUyaWotdPGU^ +vmvBX)XOptX1$NNzjC2a=|7+PL`fg1N&Na%`Dw^x#Lw_6JR9`P=1Q^HpuOJ{gijzP2OrafOOLiceENf +g^)G;Zpz(U8A!7$RpepSFKmRIf5TpYTr*8_{TS_r6Kw69QRRHP%DNjLC)VN1N;~)ysex-Lz)^$mr`2O +EspN0*Y9OuEc$VC}vLo`&GyB!FsMZQxjxs`yKjj3ixWYPd<%Pd>%{<@4a-cOSPRY1~yhop+sH_M6y?3 +IKMdt^#lA7cl$(fdaF1}1hRV3mMudkt_Z)U*wdYP?diCW)>12t4yB~^s0kDQPn#ty8;|W9r5ZwS*8MgBpw%Agei2fOh*ci-;;&!=^a9VvqQ9>iC$l*W9 ++o){3z;|Ve=){?Bco7Vu6r`dX@X6@xX`m8uIpx+XvPXd&B%d+zo6drW90r#(rzwg{Y|oIA_AM$F2n9s +f>l8IjL=$LI1!!TU+kuM7qcC7Xzu@T`sGzJYgp4LE@r1B +V|Upy^~s**|?n{TcOB*3Wz^b-}AKpM>|sR6hvRPq33WJz8Te+)}l(dnY!3(<5y9Dp8Iw4B>aV94?!u| +CfRX|{L496_naR|w-OQ2fOp(qGUpQ!Uj}AzVxA8zP_AjP7xx;QupOGMK1L#Y> +1Bu9hAK<*8F9}Tr*gXwt#M3)MD{dQ(e;nuxaHNXqEeyw~Cyk-a6I^hCaBOMrWYJhhOGFbu#5;j_Z`BcJZH}C5$nnyhh#DFa?!fnO!nsv6}G3K`sZtD +x`GwT^HMBodJ`0$Bj%_Kl6Gw92y)bi&?b4oy_aImF@c@if;F6qk(%91|t&EU_-)H-Hv);rEgD3T@y37&X8AqfTnGscfee4Q_WQ%*!6QsTBd*zgW) +y8Nx$>2)kprE(eg=b3BNDuuj~E$sY6p=@V-I_1CHd(WPI_v)qE&0ztdshnLbI62S5y}j@|;{5P+KYSh|AGGE$}NJ2tqh!&w>Z$ti5HLz%-B2QGhxO*u#_jEA|CMyuEiHhi(O&Wl&NpIA{ex?iFRu}J{y$ +`+`!}E7N_&RD4i(F6mKKL4|eGT8=+Y>I!q>C+!YS>-OzS$B`5j{M!rau37oLG_gv$+v1zM%M1P~FP +p<)0%L)2fp4t=k6dujf`suUe#k2jFFP`sz^W9$Z;`!dIZ@zi?DoLL2O~veG{OtLQ>5IvC`!Dw#_=u#9 ++ju#fOkeIj`}Wx^iT7u-$*Whdz7yYmE1pmGUreU)i~Seh#gi9_-3CpiTpU{BuvvimL_Zz;?~~(G^eLG +fQa^6_=Rw%o1^8($lJ_lWYA?abKRi1ZeJERa6k3!nXa`R{ozcoOtmkb!gU0>7BYbsH{zc&M@Goyq`-^|#vTDf2~$vAs= +gc<73u0XX8m^2cJfIdu4aA&6S5|?5 +)l|!#3KHv~SJfQ5xo}yb`mpTC2GSzhfHN(+u?JejB ++Ok0gmmS+gyMn4ekil2(?fJ~+A23==U~0yDb<>iI+PY&}SdAW{e&K`*d- +0D*X{hfmDVsFZcAP)#LjAv9`M2A$hf@Z4Aw+6QUqONc`I&tozB=G$+k-@e=jfn=Jzh~wF_{a0d=?C*m +N^I|W4F?l|HwV{||1ggH;+iPL!K`~?R?;&QSNgn@0%J_$r@ee7({``HU4C()i@7X^XHS5FDW2hbZu5a +wYpDWosYI|tbW3v!jJ$~fw!rzSj<$sb4_9Zq`+;wDkx|CzRP}D+d4EPON6fs!dWoQ39o=NYFHiDtoVJ +_mlk}s_A8(>!|8qS3CfL|QN&n>6n%d^*Kuz98*WXm#uHz`Dg{>wxl!$qG#GgMrR!q>3ep$+WQz|d?*Q +C`yI2mPNo+oL69sdf)^GPhL9p2vC-6E?b{@& +vL%drjOY&SIqgOw#s>A9P=&!(d!9SOirN@!MM>F#U2T^-6eSW(8iK_BwA}U0WC6;W@B%+T)zdDRYFs8 +f$L!0k+Hn{1AtKv4N@DIV%9Zded^YF|Bk*E#69jZjL{~$4HX7pTYQ^-0z2O#daUrT=m-aY}PDL3fLlD +q`D|%7pak{$XCjEL2J9%iD_0TkX`K*yO%;~>BFz*NlOBUk!sCRqH0%@}rc#!cm6m2%6l;)L`|A3tan^05v-xJ~1vnhFoaN;M_T> +3gUUoho^#kao4$RIpgqGDe}xhsL6*<3(GRne(K&O&2n}%M7G-3d9uWACY20{-}0Ye+Yv~=i9*%1zIP? +6eSj*iiw!Us6U`ek>&}Aopjn1CI3S{zQ8dinV7401~iO>rxP)BjN)F%2qO;s#@$gyP=Nr6;sG?f)LvXQ0w6Q7`a1|&Sru +R67dn9btkbnSW!U7C#3R|!cnPcwP{MsDGN0*s|BIVvm9H?`uOGTN;uj?C6Vb5-|9lTYi5Rn>kpl^;h+Nt!JdN$puP(Cau=c%PR(Zs?ogv +TW-1_JnLA=^COj12WJ$*AWxRGj`?%tV)7qo%*B;Zh +Ej8V!@rOo_C0CpENObN +w7MtlwVAA3@mRqH_2rT9?ZlTsoXAzB^-*#bpEsgD;c2WO|8v7rchZRh!R-27imu+^UkDna26Wxjxz5w +?6R{@x-`*QcYZ8kpKj&6|>+aX0BxdHb(ezdC|^_t4mUR!jfur2u8U6K@pjisJV1RSq`DJ)udaov%O`4bd~O2 +tY*BjBGY$7Jxqf)Rt|9kLIuop-=xDI8ZUl)dU|pJ-11)UD|qW@tzx!g=ufXLFw_5$*Tx=G!;ztd2nhxqEp&LfDjY}-0(cu4axC^e3UW|jk;0axaCuj$N!gWHw*j(^6Z;}hQKNu^B)WryvJ< +wjX+v|DVH=IABR-9rglOOVY!1|C);%+^ab4&grWELh#ige-&mCuR44eVCC-b2pNi;bN!OLvT;=H;#<% +~6B?<)40X9Vcx5q!Qc;snu&%~=%f!cM@3XYPUOh9mtC%f5+NoFcKZbA!4c|^_S--9(%? +t+w&*AK66cMNZ_?g7;u2GO;s^?5>s8WB`8O2O+wcD=^yTC^%Vk+(2j<%)B?3Gxt2ic(U{+Y4f-#@rk# +d_*3ck~Gz3k!#2dhec(Y`fVBjIaapBXX!OilGgAHh~N`Imq#N-tR5h7g{~HLpp8$fkhf)~x6ZZ`SZe$ +P)lZ#Bcxmog7b)8NwUK}zu%Vy>4xvGAVA@N+tY^EgJgcQ^`%xd$dHv)A`tP4ibnpd6Em7^kkfC@S+7B +#80?lL#$NR;Wl38cxX^fhL)fy157~&W3XE!w +|RS^lIex`#g>VCPWlcP^#c+z1t>ANP!noXr49{(HYzS(J{s#MD7!K7C +$GEo*Lg!cwcHp`wSL4^RJ5XIG)3WHRj;FU2dNAJaJhiRbwUh!x_Lya4=X`|Iw}w_>yHG0T<4i#3q9d>7q2HM{AskxvjWm~(SC%L{lE-H#ZN+qYSaC*V6lRwKwkX`grh-Rel^KFeCRi +CJf3mW=$6++Evy~|;CT8zqP4zc1??MyIXH=o#4q75d8%*t8S}dz(z)e~Bngc_F*>ck_QkT${nS>@98X +)FY6W6W{sJbbZSwg;f@-cI!Al#x9t@Cp;V^ssX!A8icOxwa_fNf_gY6|#|90DsRGc8Rzo<-JY?z-)qE +mKz85aRb|Q%f#-`_9HfdKucC^tn>n^CtoaMQ%Yl*4+#T8#gl~czg7)<)(3saZfH%Bw8EYEh8Zw38yWO +h>cT`B?b`K*K)zZ7?oUX3V_s#vhek-XaPCFpyu($4%wk1ny#J_cM7k +GaWSU4hW;{esy#^T^r`bZGp9yY2{cit}_N1G~WZXt$EyubyHEG`k9L}rj)+yP(C!J()xsqA^2DE|~&H +~Je>rn33ZD)*e>JvL6wDQzPQ{_T9S}OU#n{gf +-lJkp5!!$34P2`;9>H(7$j{dsp{-edj78e2xXwJSQbFi`Junj;=4`9Ihiu!770X=jCFh51_+4wjO&>J +9)l6)xzxgCg>4w)_)66ezXT)+fT#iC@)0Z-2s}X-p|%tFDAZ@_m$~<%31yI@am5xG0^}HOm@#XV +>?OGR~%XI$zG+3f`jehfRvMbMAHxN^$WBeR6m*rAh7w4^ZxYN9q(-c;B6D=^r`On$Kf$s%@0<@^6-6Z +L{^$lvVPJOl0IN0!cR~`3^hd(j{51Ss?8eX3klROrj0>zyt-r{ +Da`LTzww0o|y{EyA0(Jtn!Nm<-^>ZxWgO;yc)>P(H~KR7e$E80a15Uu0-CKMkQ@DqJUef56eg@DYd0Y +bml!@(k5pn!jwu;8buLF*ku`g|!FmPr>F@*QVri>O5a!m8t5*VVmNBONbg09@%skrUV;fMg{%du|2s0R!e%q)H+zXOM2Rf$8N^1AG6tS#I*_NCVS}r1<~PevTZ-$q`5Rg +$fZGxf(9oX^hQbkr?BUm*A-aS-DRig_94%Up$vwaq`s`rMP|74s*%El3uZ>N%(irK=7AwhD&IveU2T|%Qo=^JR0>SoU_AdnalbDwd2GN!Hx^ +F*9%97*TRZj!r*F4|%Oc?j89oc6JQx!p6Q`1m2spsPWLr-;Rq9i9En5T5yjbXl6W}VhAzv0Jmx^j95f +~}2qY7$s@p1l3nT=3dor+RMS##JxT2TgoUUd_fBI&78`mPxRTG6=kp6-(e5GvimFwtSz4%zNHSJys0$ +Ty#Lty8+PEaL0SWaw!NerE+~8EZACE3_ALS9=?`!~JB1vJt&XEqqAq0Nb#3l8{d +Ad-JzW_A!sJI&$j#*r#7ap5cd3}AdC!vtp<-Gg!pW$R%Rsi&@2!o#wvaGX=LmjR9Mlrw_Che%Zzi2#1HY{BQZ9RwW8Wl4gN>^%lg2~0{g_l9O(mU%quswV8H&|pHPV^*Q99r*O5YzP%}41BUFN$KhT$|+(WNL6M!`Eb>4i0lkf3e;J}~avbGvB(X!mH1daFL&$!}&oz7&)19) +yu&$T#-0FZuOHqg$T_A?xYtri2M_n^n-A2&b2!@(YxP*IzIJvyLi5Z2UDntR6p}+dEq|UG}Js=c!v5c +ETMFTbccu6D(4Yi?$9#Swr?oV5YUN@(ulF9BgfxM@9mp1J$cBXC|S$f +sL&eW*j5%jdFUI1?%1{W`b#_Z+@_ZEqNBEL)-`I|FFa$CYT?+@Cp*ib+BbF;$2Fya*^FDtVFzYW9XBw +GKieghYCpDget$Womp5hA6W?6~7NL#(6zRvlv~V<7pPJXinxAH48#iCu#T-My*k@1ZtYsJrtcu3-u1g +RY5%ykgEh;I!IVP@H@}8iWg343{$+EO_l0R*<+k1{%R1!`pFcpM#a27VujB-*HN>?(il6d@9DopyGmS +!iD@oCm2(SDoOBgAoyl?_C4{Pf~k-E^9Ao-Iq^kSV^ub=h2Ul$ +LNB?z!_C5xeSlN{6(?7tqf)Mt&B<|yv<=plEwqS)xdy5=MwqSX`~S2C_5;iOod3UrKt4nmXAkiOM&cK +b%5-QrN%g0)$qA$b9A36|a8GS$L*}2+r&{ExX0_k0gpPQOU+ve19^|BIa(s%9=Vz+AadDSVm}*6FbNOBJw!GJY?a?nKCMZu1^5ka;fEiq0as|8yF1f +^jUMI?3R@5HAJZYSYZlDEK&?98^0Sh6I)T)z)PG98Zfi~9-enUPzcaYK*zl`nLudE<*Nk{~@HMb;ZPsKM=6LLDpq&) +>U&l#dK4egQTUcb(Mb9zM%wW?wrJ?DZ#h+($MS|xsi3Ixj+kMH3o0_lc-A+*yZ4m)#D~w493B +)JwBXZ@9n#+h?yh4iO#Z;)E#s9L(&P96)GMyC>CHXDWiZXyTpf7j?i9Uz9&4XU&_k=!A$l!--6;!MLKcnFF2-370tXva0D~N`>84aA9TUIac?e%Q=yN=-{Q|HPo +%Xyn5QAT*`AJ_tSX2mxwH77@TwJhbe(Z}a^F9Uf{Lv +YR~8D+-V#{<50hP#dVIC(oluOX;uQGi#VbCu&{CSf +lkaZ%n5HC*Q-EJ%|?#e96O&uyNSmoCp~iS-uJA`(!D1XZPZk?^$H7Q^W)vf_z{-Cpprg7GIIU0>o#4; +QTLnTt=v?uSGg&=rKKO`>9EBJBl^AV4g_hDw4S!}2?>N=c^p`lM&$QJX;rta<(e9t#*L`ebVlQfUZ6P!W(*s7or5KG4K9nSWI+V76s`9cS*4xC|Y9>PSaUCaM$)KeP`NJ1*tPk9m30w166HA=c{wfe +o`j8cyzx~sWfT-Z@`Aye@jz?c2?|mM2yRV48-8sNj%Q4Zh#%hAbrv8>!J9)XezlvvyrWV(i?JL=+0_? +K1at7_+VfJ64ryRY7&tgzS5?}@_H8^wC@#LGontvku>ylTWaiGfu4=ksGy=nRa0W|#xd2cio;#OcP?}&sq0{ +q$tVzd{U>dWO?3KhIdC!iOm*Du^kh83ttt1S-4g;l~i-S`tLWc<&{kuko%vUS{pzN|RFrd#|7|&V~jw +^z+pcp*71r1rYTi&y8ItZf0*9JCRH%}Iw9X585Bb8;#U`(Cad3r`g(Cc`=V-y3wX1`xUK2NI9Y{`?gr +#*z$cIPt&ZwCiSLT@Q1S1lOYR!hOjz3`+bB~9Y%@1~sp4f|+-A=@j0VdD!9MEROD)S(OzSSjVa5gNh> +_gIpytu<(Ep)UfdW67T-?z0AQ2RR%gYyIhY|l%=;KTXDi6<=|}yx#zIMTltRgeM*L_G*b3gql +V2m`RRiknn-l55$2uWLEg1EbeMDu@K}R=CD&Bn*ro~f{Kc)Li>ZfsXhewu@-6h@ScvH_a1I#wT*`+pj +2@SjWgdg+_JYaA?yobRz1m2)w)_a>bmnLvz6=n--pm3>=9&|FlZj%V&%v@=>zwc0YclhG7ot;kx`-09 +5+x-orh$PY|f}X=~dZ#YR<05L=cV%EE?|Cg(v#dJn@g>Wdl}jdYDx*?_Nk=r7f9;7`A7I;+~luyN!7>Aq@jV)v&K}-r7=O3_DEH*o#Ju}8+V<$1WlgIa1%EJ{ +Gr?V0TUq~XV@}{<87Js8RD4#upEFgYaSZGb@ZE~>JSfO{BIBfPPhIGP)h>@6aWAK2mk|@q+A_5v5R#p +003*L001Qb003}la4%nWWo~3|axZmqY;0*_GcRLrZf<2`bZKvHaBpvHE^vA6eQ9$WN0#7s{)%cc90W9 +AQL_4QGX|cOCE8{*C2>S*935%}P(UTX8WyVHI!K}2-rv6O$U74t+3s~{XN`7KKvmxP?tJg%qN!KOWU} +bHz7dm2Qmoc>(*cbjmg?t^z37Gd(QaDxwcD(%Qg>NX!B746PGmQYSn +Mru5N$ob5uF-9SFA+c!$8{Pl3rZ#11<~AidGf9YO=YQW%HXWc)G_0(#b4q#bjPrm6+o+RN=|hUoTE4- +@JYGS5b@9E(a?!jh=AA0o2$*HtO;)12u5(@Z9Y21}Pi5h-#SOe+h&!`T)^k{`uAV#NparykzXR})AZa~yx7K~HmbVe@8kR_?HA0ZUJ$omg%V +K?3l##6{S_`Nrc~h^~BDbs1ma5WLQH0(C`kq{O-FnjX@S?QqN$3voWODKL^6cvD?VC~3if*zfN-Pmdv+uJ)x5Y>}<_TSKPyEiYhwoS}9@Fg$D{{ +FtEoe39P)J>9=r3K$Wk?OJq5bfvJuw7K)gbJTbQ+L|f@)S5+?iRT8N~FA~X$o84i4z_RQZuI*?tZ-%) +nJ(9wLmcG45%b9%(ZCdqUw$q>=FjMJWbRYX&u^ +-CQ+hwV&$Mqc2RVPZEH?gpuBt&2Qq#HzjpOi9`w`>YYk3` +LhV$(p(ca6G%X{bQ2lIZ$cnEcJ(Si)(^#(!#!Dn^PCAQzXw!*ayQYuJjym#DE60GZXU+CK7Zn63HHNL +M?1JdHMFuo70z93Ac#o?XH^aY9iPEp-Z2Z^&JqCp$%35LlUY8V&JEN4PYyMQzeW2pHS%ILa8D}KT|*B +pEMBsuKAgvQ9i@3@NBqmcL&QSoDPwM20gZ#uF6`U2=<*t80lXi`%G|vCnTGGKw72cvX2rg+|sa}Cy7% +oTCAI$xDu{YiiR(#?|A{!%E}MlW@Rfrp18X;M;UBj1LZrOCY45LYQz!aU{-Bl34zUYMOG$8sPh+yYMK +?|9`u^JXs>8Een=c7@{KebK+aI{mdJ8mwArkLL0t2C&OrW=zkYc8{ +`}Q9=Wk#BS2_VnBU^c76lGTCXWt!~6M6(hr?+*c8VEj-AsCTWKQk)T26=0_TVDPx;)ExHl$aaDk?FSj3iX!ErbYl8JgY{OBBO +0llsHq;Yg>SnD;5i=f`G4^gUNTryf3q6>rMe^3m6~L1uaY8WlR@PYH@ao)<>?6Ger>BSYCu$>qgunVF +6UFa}r@3>PaS^)*_(%0BaW2yzF5ncQ8=mRT6(d#ptUN1hk}v#cNa>w6KVihDL}_>#~>^UAb|4MLoF?R +vnz_6ohD$YTzkCSKS4b#zNh7!_P5_2<134lsAex0rH-w&j%!k>@ZMy +jw=V&y-${eSG5oWwXZFYPWe`KL!E>obiwv8}n=Y8Z%DoxP|eCJhY|c(#m)g3sF2&>~j05F6Cs30ms8) +c1>40r;R(<{>FD3|%{b5}L;9eTw4!goG_s*KJ>J8FC?4>9F<_nxhR(C7^ls1JkMe=Ds$K$ZuYCq{1h@ +-Qg$0^p(yx= +YW+^SN(VVdq-C&rYt+BI2328hj%`j0Co*?sT(4w!W?{1l1(sbQ-q$Uhqvy4FXu|avD1@^$=HNYeegw# +hd>&bSRtovqNJEjzByXsdHTVfa|Ps0M5)dp`RV!;df&4EUNL^Vp*>VLk49Nwl*W?c*U=N=}qhy79V;iI*6e$@~Av`qUS6POnx3W?$7rc~F;34zc7Rn(6ni)tii9D6G1ZXlNl0c8$Fkzk5`6dx)z@hDSn=hgG)P+<{dH9>ERhBGdLUyDH_GcsMh(=&r4J&a+1&qlll!4*~C~5i1Jkc(&Cd +BGS3CO>JV4_Qu^)e+AG;lz9|FT032%rE4&ZYoMvl@Jn4^NUW+LJE;Z9)|AI*gPcUL7N&4VftRzj|u5Y +au1JssO{0E8WqPnRQD?WNy{Hx$h)99ot-1$-xsP2{<*LJh7499<%x;&5u~Z0taA01{_94;$$mLcr5Wy +VEGP6X69Ifeke#ClrR+7FcCAQX-jL`safzd#M|vUIiE`*<2;$NAV4OI>68TA>6CPK=-04Rf?>P+Rt`= +Z9`LixD2AU)X$AwDahDaHLh~h)w|-4yLfbI9a@ZAp1;^NmQ}=j(s#p_|5j6VYYi!qTFEVemicGg4qXb +?$#0q(^>?$G?l9}7{N|11~e<7<88FG)BKz?)^vXO@b7LVG(km}m@}dK&a@NZO@Drq}!4 +!VM4A?+U2!MPMctq6}x3DPwI9P(Et#c=;*3`3Ixx;a{d=QkvkE=@BA3bah8h~6#DlO0kS>=%I19;+!l +1)#HPTB22Ak0O&AGU9;fJ?bhHh?90dkx&EEJyJ75Kom^@ejI3%(EHi*}@n_(d^WMq=eQcQ)QHZ`VPVd +tRLXj62y_bXyt3$z|Ce*nsn5`V}Or5G1>5${dXV{cf?y{d20yBRrW`QNelxB)@MU83X9BxkNY&gwV5z +T=r+~GuO|`GD(UY%2SXRVOKKAm)X4g8j)HuOMqN5{vbvRmh%&&>`=-GSVxJCJZ1#0C1T&er^5+TqdI3 +Swlb_;x=%BZ$N_!jNQc)qiw+^@PCc%T0tjC*!wvtCC5~tcefkr7kB+>z~#gD5R;wVOp{bOQ}!;msDB%}6qE +1C_UD=tX-0^dsD$qkYXm~I3cM!f2dq;IWqh#Kk> +M|-R4E^5!iB*VY5+R`|$Gax;cbYG!SD^Owb%Vb31Ote{MB#s+koR8pVJ1@Zx^OFXT^%!f4RS#o8*hd& +u$1H&$hN>8H&3MZ;CkYB5MV2nE@lo$vd#gZ)34=r#gie=qr-@&O&7pywV6RFu?Q7(yTMl3P#%b6~s=VJP>x7?9&j(iF>UEzV~82ozR*mE~fTWcmbDIUl#`w9oT7(1Tnz0{D(#OW +ETGc>uqe2*JYTwehyG;Ly_Ak$|`=j+7yNEyuB|Q@>Zfq!07>UX*K^Fla>b7?%ko3NSlQojv-k&(Pbzb +RU>sl`oA^|4LYrfosEkxP4f*=r^WbqcOxcyuC+znDlb!TRv^?j!7{z2bj1M2-ASTpbE|F)jI2nSy2|< +X5_V}Po`Hj9{!d9FHLNW_ZqNiSBd87eRT{CmM2itoH)+oAW^-&RNovAc~c2?(mSY;y-diJEPfhe`4t8 +Db;dR-@)u9CdDjD)ZRDXdH2WV?HD)g&+eMljAz=eFE`{3;jgH)j_#02n`hM3Tp=HeI(bspekHu+td4f +BU3>x(S6|$e4^*}E%yCF&IVPG~vycF!1l+9rC5l+xJi@#u&>?edKvkUS&N}fBE@H%TVkSlnq`{Yan${ +BJa_@2^ltn2$BeP+u*K)cFrgffwDgV}9l(K_6tQzQ>YL#Rb7=ZWQ!zU|EGUw7#Dm_y86r0h%=C)%mY)sQ +Ko`zV?qEf+MbceyDaRNmZI!Eh8`WAa~(^N35+*Y}3^E?53`ga)I`)=@ge~I%S_)lld5QTXI?a)PVqPrh?5dN&eP(^qa1JcOq0^;WPCXe5(@9QgS=?RWCL#s*4o}dj57;g +{bLpPBrkwlVMN?z@tpD&V_dIY64D@PmrCA2?ij5;U4!u8QtVf3K+QADDD)J&jAWV}NWm{{%ELs)?9&S +h*(%43@(^MNkxPGN~R$Fdjrv*PrQo50ksWMKb~rk&M!C +&Ozj*7>!JT};COMUHci38q2xN@K(>f*PIISRMu9>iL4l4Z2++R4(O7nH6?e8m2L_7VblT%!B%nqwK>?N%Bb6K&X6=Q@>pkb|+W&?Q*8>d}_=`GubL=8o!H!f&TRehS$19f6fDBTh;~9*y#ri39%T4GxVu6Y7>Z +p@@;Osb`$IgaghjM(C_C0mvD20u(_f7%Eg0IE$MtcmL)bRd10)Vg6zyW;xfWPE7Cwh?_$0;{dHRg2>c +Rhm^?4!SK;Tz$e&aPd4 +OB5Tv~BIjt;`CPOu8o9M-#=c31Z4&x>9q1#bX4f?0BZRrBy^HOayGMF5?o`+uGtj581kvns$)^T}hz5{fS9VSZqT*Y=L|L=;WDv?0kr#wK2zU7P|TEo4BF;^IYXwN{E{0aTjwi-aRBYk79# +VKE<&psdLX2N7(e8`>j8a!Uf?On}r@)P19bEmA2>EsDVE*oP|1**i+F7ZYS}axQE+r>e4oGKGf(@&J^ +i`P<9m^P=iMd2dcH-o3qgi^e=c?o*6-es_9#dPR#}@p*fVXXem?R~K=uJvlxWO)!&yJt{`8dll0tuA=_Nb_iv~TiJcBEr$kLvc*(TxDXt2~0&$6i-J$T(C5;F%Jk@QDL%np +hQ`J#I@&tSi`DGsDy;r$QQ>e>YZPt?p`s?{zm@9Dr2>Wf>sqHK+EB +)({WkzRB{-F6;UhU{+YR9L##7c9+KOyW<`3>5P^I$lTDj{fdwmX1k?jl>s2j{pMt>sB&YXv>VbMA~#8 +ztbkD{9Z#_mAK=`*9Vbt>`H|g!wt=6=oNw4&`^OvjiTFerAdCYZf;ijC9QBk_wP?D#okQvx97TYhgX) +oenkfZTS7wvcE+!8?US_wa7ZE+&qpwco!yvOI9V4rNIRJI#2!N1KW*cFtc$#H|p)^4eJ9o|4wLuV2Qk +I2cSpnRA!1FX9s%T=&KSr9e{NC@Wt1EBu-#+{T$vt^!C;RY!`fs2AIgEH-voQBKPi^;cOiT(yBt6wz^ +gpaC%%!1IVFiU+!u~BUSqcHgdzBTH(?;kTs4D&X=^xbh2e|ptP%ZdBia{#ck789LNN)=7<=y;S?d8U&j1*@$5PARB_4&J6{+2jcL41i0WLJ+mWd|WE +i6-sfAX~a4>+qxIfG@DmiRJ;fK$NO==4YZ0m(Ohp|y*?l{&)_avRC6mxu~&H``F+Fm1FlRwG +8XWMT&`j*=%6OzWd^at+}BL$3;ME`Pxw2@_%~XGKf0)kX0^S%;)fXHEG%TEJv*xVCZY8I$KpQ?zIi;w +XNOC2)hw4fHpi)=b?T9Qd&^8<}i<sXA7HGGZnm7@qhk~7jwTdaiv1Jr3q+!Hy`3W@tGx7MkTZ&wyvHK~mmjkWp2QLm +{tDg@Po8LbBN{sWa32UiZpes+9P)?ArQ9Sc$JN02q}gWz=$6`|-TqdToU;R|g_OIsqXk8Eg35wn49Y6 +X=W82eQU(}MXwB|mQM#-s?SpKS@6JZ-*X%31TA^AwV)Gq9JP3mgo>QuP6*OU>Qw7B!GRoP_sB?YkK`# +eAy|??R4PaAN-AKVDV*_O*1&T_>I3SHqP2a@B$F#O;l}w2y29|B_QY%-o71N5 +}?2oAzpplVNzQ^P5Y`Z!RhS<6Tn7bwVB=4p`XPmVmsPJ%T!JC08#n&XH$?GGbUiAiY!cgr +O~l*$EXKAqY<0>M`K6IFb;9|O$h`M|hpq90AzJ4#GaY{2$W5-I9P06R(TI~;u;?dn4Y{FPYMO+*Bv-a +Z>YA4kjbham}^4$+i~vX$PC)4Z_zlzYzS?spK_#pw-=PbjAtkjHuhWKoh|OV=zHsM)VHV@SjUuSR?UtDV4+{!a2`lYt)O8 +^D#eK%Js)TLS^x2WDV&sVMr;)eO~+0SH;Si&Z8WviVvmg&B!PZxCv +fxg#u?n*c7kA)82fC;IR+qeJKYRn_25fg+EPn{a*X@9AF)6$Ut$_q=bquLFv*xJwV`5vCl0MhXO2D9s +qFzQy(0x)&Ka{P(|%KsRDysi@USRrHX|op4SLa_<;k;5k;gFEldhY(U!oC+y#xA6=aSAat1TM +Q7FKI^p@fG;+2F46WTIGNjx3ApN6cX}d!{njHLvd~!%^g9Z#m`fh_j7!>Rth(ZnbMKQ`dpjGKN1EZ3` +6+{`iMy$%khjNi@`U#8@3H^zX`HMtaK3>(#L&cKTmxw>^e-zYZ+RxGxG1?b#d9u&E(b)=gU#G-TTf#bz<;>P +J5&HEP8VeCIz+^?oa1Q~f5j^mo36WdFWetoaU8^BMl)lBPc`b=KH`1?JY^hM_Fyob^P9r9OBwV1sOWou;hmO7i$}~aNG`dI*pbA@Sqrwt%=woTAQq`46MnZ#k&D4M`$g0S0CwrNpcF +W-l=U#EOfyagv&|+GtzfA5q<#A-|$zFmL&%0@SOtLUcI2tyh0v(q8U&mXWQuEF%UCG|qksd1n(%aYy`{}630 +oDhCIM=Si0OFheN%UX(TaortJY&w<5exeM#USp0*s&0}}DhQ>HWoqU&Z7FJAdn(N@xr(FmV-2rhF_%- +R@#!3N*#liYl1046Rv=%w80q?aF%MV#$C1g2N{7jK(CPO^dFJT=^w2>^9s@-C*2o=Cb)Y^tjL`4q9V6ss?YYIr++3C%D;OPKQZD?9)6fc% +O{c2_q?@zp2<}2YfjvXJY>~jpmankK6O@-Sq`~Lx9?!MIiE$S)`Q}xg2!>z7zGOTxi4T&eYS(6`otkd +eRcpXe!TQ%pIvwtx!qYi5(Kh2^V_xK4mJ+#Omo26n~qZ2abb^01|HcdWrRdAb8F}p+n;EnV>x7UT^-9 +D-Y}c_4JtWe+-_QQ3z!tuq8cTqOj>j)wGg1*LRv`enH&w-vCjDz!f`zUcCB*?&+lwzU_52 +%M<90<4?J!eCeL0Gu0xO(V^SPUQ5x7(y;QpUluRlpHk6;rpf{%>{YBC3Dg|DO`4`R;d)dtWo*)oNz7B +#tQUsnH8=Yu`|8pKAGm}I)pDUGKB&M?RBJ(K8zAM{GvIONr|=no-(50waIpq0d3Hk1eFu;FO$1>O4D0 +~`6{t;o?vLrZWh1fWZW;C{c{1Y01GPR7=m(NwqKS;iJU2%*hLp_<4@={@9anjp{y+& +l@3!+d^+M-58KfKog=kS7T(6jyd)929)zigtlVzRS2+Sa6=|L)tD$)BG+dpg3z{50-oe@K51|JwrYcs +ba2r&nQE+d=XIW~n&>nf91<=mT1`__BJ`Vp907xQ*m7rixn#urc1xa#4JJK_^9 +H%UYTRnsl))tWwVh5SG% +SE=i)IbFU^kTkH2NI^2}aCLrzG!Ar}zLPfThbX$ebLTa4Q;&5VN9@naG|kqK!dS>26xdx`mXm@oEja3 +xld-WYKhbBQ|uLi)T~Q>6{1c{A|RJt^Aoy@JVZ?BA-kEOSnkemJ=E5&JVDCba=Ug>EKN13h8pgX$gP` +o~-Kp1go)cq~mr>ArDYtp*(?QWSZlFjXjcmkE4;vowHvr8^C>P(X$4qy96puTy}YR?j%gwaDBq=fAQ +~~Rr$)6$5!>Im70&-uXBnhEI$yiZQZPpv_53*kVNe)x9d*kFlR>FuSGK$rXe;HdPJ{b^x~>wtX-m`7i +LBm)wvzSM4PBM!>AE^Hi$42RPmlfi(ANHYFG~+bZ3so!VDHXAiV?d(Nj=o +W@XV{Q{F6gNpiiO$O+f=u8by;(MN!mgOB3Rnn8Qo9(zDVxj248zvpO;eb?g|?^BMurgAu2bon-QIpLueH;Ux|ml9W0q&quYFhV<*#~K@9%&AJbqiRoukE(6!kTY?o* +I;U-hfi##;CQvrNL7BSf+?Tf0ZJ9EWhW!qIKX$F~2HF6Nw@{I0xa7<`~2TTngt%=ZjUw9u-fO6*_@SxBaz(W|)y(S46b3+Z=f{ISO3TtDs(X4`}yCpqFH;(bcXbp?ejkj<`55Wzu +AN!&}SkhzjriS+-Qq$%1R!#SXFOqG$blcGN&-i*iy#PvNj%7vHr4EvBRVsWUS0Zc3u|j6N=qZp$wcxw +N+7xA%zjKT|a_5-w4CZ=Uv>a{3nJpe39`og&{`|}yg`NMDZ86dvTfbmlZoPJgD$n#=I@}M5d))bJvH! +l(y)m`7_K!nLa2M$o2PBt=Ke1;OeE<0{O~TVk+RPU@-+^gd-2(d(uzu;*Dy~pCh25bgKAw(qU +$V&EzRqBi`jZbb&LU(ZHIY!(E}?#>f3B7((7(jZfWwME88QrXpv;1q3!XkYBBao$k2ozxNcyC+@m~-C +SHl+9A&U3+iL((UG0$&Ei@~-cF6B2{a>bo21&-MjG@spN!sZNC_oJNOk4ESeb?&u7QwGyWUZWSYwl4dQ;~zOCrcAVg@jyj2FMAoCFEiRD7s#p +6CMweqx{d$sZ?y8deayUqN=MF_nX@vXa-x$tgCy19+e2!dXVFTTrJLF|%@k7&VMsgWLF61>JPm}q1Ot ++N>)c3d_ga0YL_|E5(@z=Z5wcTjef{;<%DpNEcZY~QNR;Y&2_hO2rNg09xl#FRm4p1@cc)i}qvTK(R5 +19+42`?9Gg@g4>1N4o$q7fvS5LV;l>fG?a}pBh~@9R4(IC5^zb#vNb-VfRu4pD_wRF}reHlDE9{Df$8noxAHq&c9Jx9OS!Fw?qOvh?%iSATf^XN +Ax@qMrDZ9j*RBUaLwkM3u|OAMGG^2@3enhi4~8&lqzhu97+@!5C-~Q$##29Z32EEH;AB0Jaet0vMj*j +hcaFcu%8^g3@>LHf9yMPcbCw;!Mi|!O1}sGsb+)>b#45p(#vxNlQ@HblrfqddUgC2VyHNO4OFkr1^WMk +d7kAfa8b(LpP%0@6aWAK2mk|@q+B +W@5R%sm007`7001EX003}la4%nWWo~3|axZmqY;0*_GcRR$V`Xr3X>V?GE^v9xT5WF|HxmBtU%@IUEC +Y&?YrhmiUEEbsn&4c=knB4gia@4zDT(LZ<(A~i7JRT=aYKtTxtPaKK&hoyVR-$otI2%)VKV;v$ID+vCk+0G{V-8Q0m5Jtf&GW +;>#K47ZRgTbsVppSmR`ZPt>s#n5=|S$wMMaZ{(9Ch*d=B*OQsG9qP*EwgKBSgz746GK=P@%pE8Oy9rm@bYeZhSQv^JDt3{8RN_B=Hi;2Gh2Zte) +IMp^DN^F_&gjA2TU#g4JP|M@N3-10fT3sKi8U}Io&Sn{T|%qQfcNxDdD8(y#zfA#u@s`>4~JNSVAPrL +fZMfZ$!2n(1Ov98wV_Rp*Uj3>NEEGCw8d{;l$$~k`5^h&WS<%VD72mp?}vruS%i&XTw^FW$zIgJdN0+ +U;ETMYb&coS|!4(OR99(yV2|wdk@AaWpbCH*UCzl$_O*87eK64y6}q5$=37vfc0^MgINEw+8I;vdnJr +@{-{0ktUu~i2115gw&oiF$qE%hatj{1nO>N$a7?8$atiwoa~dDxDIfx0!2gH+P`2IvM>_yCJ?M(r?BZ +ZrOu3}sUyB0Qu|#Mqmofo^vnAA9sI-t11!et=H3cmy30GP@Y>yIQ*P_LQS%vwA)J|CA-B;`ymMSe*vf +!CZRR(2*X9j3Cuo#O2mU1u%Ch&aj>=j7nL^5is;lZeBhr@vFl63{hZX|dPp7<<|q*x&cDtfJL_f8}#6 +-OD5S61b4d?v69Ai`K#aC{1ugrK)@;=R7!mZELT#zR&m&y>fu9HVl9wGb+JAs$Nb6+Btahbl> +F1O!=1IvqgHG-@!cn+(zMn +MKhRO=cG<2#hodp)4>GTER#f>yXr`8!ZCVP0(T4R&q#_-<;2D)%^W2x2>o}C_nm)4V0=H&FdW~-X3+V +}PZi>Sx$J?bYd-}i(FyK!d4&I;Sbxj|1bKAKzR^!-y^}AMbgHF)y1MRm& +{Xvg%GmLm7b}q-8}CrZ#e+1Kv_UAc5*A8o2rWuXj{gg}D%ctX95`-Y6cvNusgVP!5DOBp`8oUkP#m;9 +eGQaUPgIFJh_u`Fc<*JN-3dDvP3J+|+R)cB7pk%|=vI0b3}r+6dBSbc0oA9uh0=@vGVdK&NNh>ZQ%@$F +By!=|#-urTJ_Z+{rDBVu@W|8D2-P-a-<5+OIZ^^{xg8YZ9+dLy(yq@YfMQDW<*3Oo4s%3X{hG~%!vh_wcDCiDUW)sj^RwTf$bfwz#_k=2Kq=r10 +9w+lL0%#5+X#@|mSz90PE(M=}@!c<@%IPA +6`9l?ua{ygiB;{bYG3J+IYik1@i*FM+YgFtt%krq&PP9IUk(<$qFw1QYA4t7%goK)F)vWuDyCIRaH$D +*5ND+AWfgk69$$xFL!W;z`+gt&APqR|!fC{#I@ty*PV5mzh+^uRd&%QAHjz`k8Q-&a|7v^=Phh-I)4r +;tH=UF{N>Ih7!F78%3@S}BKKFOoUVz-Z|Ub{Vi5Gmj|LC{)`RlVG>P|G;r|H5I9tgLtitnC7G-5SC0}uEyySgly2S!eb-@oIXJiiDzxLw^Fm{RjX!AR +A4`g!Yg&sO_y3>@Tz|j$?pF^8*devDPNP%;BTN?*dp8?#+#Z7TnsQcn*)9_~3BsSWGM#>!f-*g;ph)myTk~?-7`MUM)nxqfedqc|g!q-2<22`KpSqsK2>^7`Zo>qb +RK|^#nt;N=BR~ty^|sA_wgps?BXWHae?w#hp{Y<+#*eTdi2>kHx$3gmRmLrv`bENUUJ5bDt}kY9Xnv} +SrCe3o<+*fSMKiBdbWnLgkud=)i6Rw6@_cB}Yg++u7IZ2C&PtS)^OV}maN*{!U0ij}rRz%-jbwP{>w% +Xm!`U6TYc7Jp)#G(l+=;XwjpGKavpj{1th#LiyC;qw(^2UZPb-8z9KNua&h$7QTK=rkEeQVL?&`*VPM +C?Vsz9$uz|2}zS&9A`{9$DPg8M$AO90`FmuTAW&NG4}BFTs91TFKCskYO`wLQ~(gvWrSGnEddt9Lo}D!phMkt +BW&{a7S25@d3NiTZInz|0$Zmx6pmpyA>3`8!Qh4?M9=^jjnj@NeB(KdNDSad981E7RRN&vH=LQQiX7D +YOpC(?Y4zb7pBBqOOmpxK&XM3XoO>5Pt_^!$vx`A;soM}4Hr(*{h_|=n`EMm#Y^^Y4lmUZ}1VaP+vmX +1F#XVbF(ZT+cKpFK+b=1+siL%wj#7iR2Q@c11kw*t;NZ)wof50ta(I~pZ9(aZ$XO1s8Xym7awLmMftb +g{!z}d5sV^j~IYkp1{@MsPN9Dj8XQP-F84aE+abH+LMoBE0%*>lti&I-@=TTOw|#Lb~7aqByRWG{U7V +&ns`6`dFhM+R$piX(%Kr0F_$pnpwuf*9;y0>%*bZ^qztqVL8BdlBX!3K9}}UOyQ4Q4Ety8pz298s|3sHGCgHGyu_>t~ZKfA>i!#;w7e)W@lgc*I<9=8QR +L4Qw#0r2H~6q*sJ{@9*fK9%^U2|@U4OOOtvy7)o}sM54j8z7Y2d%u;?Ex-bmuM^=cS_?&~@rPO@slbTZB+FbjZ|d7 +=C?2R}NSfkGsQ3=_gcX1enO!-=g1DeICGWD1y^Dj@5nrhSX>htcO)3BY9RL6TaA|NaUv_0~WN&gWb#iQMX<{=kW@%+?WOFWXdF@*1Z`;Tf|E|Acz@QMdmFO!i0<~ +JyjqQzrcpGf&4GP;JN94$2Op#i0WJmS7e|z7Xo0oFz_ESp)Fg2X_<{iIz$4nMwu_9r(*zirs!jPn^by +0Fc^St1cr$t^325OA0Xqp8Zo@SLETBR$-w`*nw;76L@4F=)mKi{2(XXmGHPr{#%-(H=Pnfex7<-qm2; +^mmkx13eC?aATg)w{PXk^zCIHFqqA`DUFl$+R`&_VZK51jb?B?O-rS*n-?`SXG5_k#m;w5H<7#k42iX +oUYgu=aXN_k44VL1Ssex<8p9DJi1YDLpUhwLQ-=;anlfi%7_x}H6{-oGV9sh1cybb3fSZc&sg%EKk22`fXPO;|4C!^5Kk-#Bhe9% +#0K_ZAMi{qu%pYgUrQCXdmlsGwX2wn;*M*%X|CpU|usBXVgXmS!B@q`koxf)_BSoZW3v?lfl!Nptek* +=vFlDlfmIB~Rl`M$2pq)NHZIaJ?4iiaajUcnOxfTXKS6rD-lWJ@p>w+gehT_u0a6qT$c>?JWHliav1Cf`-ahnG|NzvlC6pd>G4gOW$FBgJRAlGFjsm5{z +1@1HPQqfZWu(-3J{)xN_-C`nIx1`P@x5g#%_}#`H_}6h+0We^{)V5e6xf%+_7_pD4JDJp#D)QU|`NrO7c-$U=_=BB*Kha)%6RTv#-WHEfgJ@7p9o&?>qH#C!YxwRCQDqy)3gH~~xf*AT +U`xLV^C;pX$<*Ar2wsA@UC7Ow{%Bsd-F4@A9ntwObnh) +GiF2?GC+~A@H%x@3nXT5RTtklAt+T?D;6d@-1@aFjP!w=-m<;7d_9x#>AGKoSAGZ2Ih_YV*D_W!(hus +NVphC=WIzIQh*Cgj5lQoNtMh?U<~V`Y%rFQ2Y@^lU;+7AL~%k(nM1&Bo0SQWSC?m#SAmFtQ +FL>YN6}ckl=y_c +n4iibo22=oq~MoLj1^~qJYE>vPt5NB#w3!a=`BJRNs+g|9n=;-QA1LpG+w!}Pq;i3fViJg5-fE#RAg`qd42wDK4?;Rd?3f8A70xNLM3yWjeUYh +GYqVpEHK}%82f@NxS7A*1`65)y;3HN?hlEHsL7`kNPq3e>D7$;ULbS76AAB0_6ceOIeoG-Fi$!C9Qfx +>|r65m2x_n7s#q< +)nz8EUo1`(Hh#t9^e}wK6`6~j%PnxGZrI~EUg$=nlaKS~tG&#!pOgU5clUQ8XlY;Ip%W&A)LK?S=7mN +>Kh+>DK-7yu*78Zv#R+u5-s=gyOe7erRAnl1`Fk2ofOY76S3%bU?^5_lE*>)3J;}{OF!S-~XvFqLwzF +xjgl1KG}P{3yode&nh7h_KNyV>M@CO2&MlBUJsW~_(S~A^5iSCpeDzaRAT?@hCEZu!T +6LD4(NsS@QB^-4;&s?uYq%4wUYkq1XxkAr^|LE_8gsRxsD4I$W_3(9YguteAKb@cXQYStK4k{k)>mQ_T_YWUjAR+NLV+tGmY@FXFY#Rrb6dw^l#(0LT)R`v> +zZzmPsLKiN~(oRbFyx*)5&J|`e**}VN>@QmlRxyk$gdxh`v#m-+vQewZ@sB5B6k~u8Cjh0)4}`tl{pN +srETY1gT%2E=qOsXXsq(mF&|6`;FrScx&OCu(bp~05eWEKMnojFm6>64ZI3>e5Er;XA7kbZ72KembG; +vwLKk?z14Au38=mXWK;iy4hGMX8B;P22EYnJ~eCW0Vx#)!;j +7>1PFjY +U)w~%eXT4cr)V*-9g8gSRfbZ%ubAOCn$X~JabF0&DqwX# +$t%i@tRiWfc~zy>=Krb-hWCh42wK;>ZqGFf%VXr!485@Yh +HF*F&{y_iv^E8gM3Dt#-MD}PxPqz^JS@?N`J1y<6_C^5F0i&6>YMG8v;vY8ph757Q?8&xB6p6~y~YkNEbk9y-ot_S7jl0HFNg3F1VPlD#z40c%R5u=ovVQ_bf3H7Id&n +})}{3v=9*wE;ML4zYGqq$i@AX?zrQP2^iW#i(B;lP!Jfh>-prhuddwRELEEOf9<`kkmv{IBd!7a +1fa3SF%pfkzxAua+W~VTn06TYIGi6Cwrq7{=~3EpqTFG~eu`TL* +)5Y}#s8Mz70&opPP3lxFjZNYlz1gy-P_x6h|KPM=ySplY +9v;p6)rZef6oJy?X^*7tOOVZN9SY1CrW=zg6FYEav+CiZor7LOP^Eb|!-0^lwwV&gM3HYYfA8Ulm=08 +mQ<1QY-O00;mBm!w>YBoqFe0{{S22><{e0001RX>c!Jc4cm4Z*nhna%^mAVlyvhX>4V1Z*z1maCwbY+ +iu)85PjEI43rnCkW>T#ib8=4B#i)FwDq>Dbh|7gpi6O-Pqd%?f^_!zKbbL?=h +d`<>Q+ik^HTPrCTa*mh<^jzn>tM2_ucb-uYk5CQHp4d=zNGZip?n~+Hq3RmI?!nRM4`P8Y#I>4v>=-p +rYsyv6vvarT=i&41v^1uZXB+8$ACd3==F27AFWNwzgooD|Rl+zi4H2FqS@DDdP??>9N5rq{LFJv|b<2 +#TW|m9{n%^CZ1cl>^o~I4V-CoWdp%o1ot7h>S{E04K+g=k^5_dG)B3tX~j{jwD`AIoU`)9WYT1xM=_< +DiLi-mdXhbSgCB6$c7$fA8kS5Of}Jso*UK?Wpbq4*2IutJirl4MKBvVwe5i=cqfHDxq +Wz};ap8hJDDOIb6~Q}B?aOPgAI*P)=)(;rYj2QZEJzKrLZvj*)oeQHMrPZWLDdjn8`IMMv!)6DOO#^sWfbM9;5DTq=dI(f) +oC?bhcwn4EN#TYH*Sz&8-vacA7pI-n=5Q<(>$z0QdcdMi*URL3bnKFrX;<+b;brCQ@hp9!AC6A2a38W +B5_dZVjUUHfXTa}Y)ED6=qk99N&TGx*_Nv>D!l!L(X=uSzu-=x6J;TsBozDD$AGuCDU(%6x5hTkqRlR+sQq4c52~kl5jFZemFn>_=C(=vi>$-HWTqlE@jyiyPuR?om6F$<)y66{969Am8wZMvb +nBS7RD!j{EnaM!ON;Fc`Y;SV_kjT0nBxN)f=+~s`x0K*f$^H&4iwvbsysBbg@g-@>*^*84~$uGp#^17{m8W%G)f0ODF8lmRHucVXM2Mad(4Weivbrnz`A?tTcAk#)qP0|8SkV&xubGmF@+bXV +4{Mveh!7?{|NF<&^z6gQkEiG9hmYrPKDM5u|HAN8er{x`{Np*3#dEch^PB5E3+$E4<}+s$Kib^a-;|paT#6?1_O{In5m^HxsuIW_$cd9nwHrHgmOF>oSnT*e?0yB&m +TU0dj?~fDTX%^AmxP|@(B-@5?HGD00^z@gDk~o-S6otYclf;cAnnK8n@{`+T>-vX*bbV+2`0R3p}s=( +ZB-@5YjxtO>8rz?y7oahshdXrPq~ekOV{I)hFUxxz5_65w|D=VqMi@z9_2Yjmm$Ob8##(QOY|!XPDB+ +TI6L@SF3g@SE8w4J~CReEOJm0Nhqe`-+C`Sc?Ce?;||nADPAT2F-X5X{qFToZ_m@ez6GW~d-GqXa3U} +M^6Kla;4GH~Y(*ds{3v%L&1LTaq1Ac2E##PaY&aa!zpslzkT43M0un%E^;Nq89F%CTGnALMSc!!cz&5 +w}igp5T;5(|E4YSomqPdfBQ5m>bp>tc8?N*R*0@E{k?03Cuc|1* +*#uzU7KW17?}f43XF!(FZ(E1~wI{sqHg7%kT-x&lC?y{I_^tmD0Y@vOP6Y4e!@QmEpgU(WobKsiv$W; +OzoQ6CFz2GBpE&SE_33rA)Kc3RDsRYw)x#0Nn`!y6g@&l1Dp=y)+yh9bn~j|63H=_**T(_q`->HUk#B +2F|s+T_@w_2qNGjVn0R2n4G^o`x}3cP6^e)p(&o4h;GW$84L=P;R%254uzFb8AQ42n*0Qy8|dC&L5s` +g!aHR6&t>nFQ&QGbv>)+TzaJ>>2waJ&?^pDBa(N@0v|@)~8nv`N=r~EaIS53IT2~=6to2-C=^~iA!D%&YJmls;)UQUGZ^DNJ-z>LYkmB>++ +7aF;`l#}q7Jq4NiDNRf`%g{i~0_gP_>398n)1|2{aHot9M4NE|(znsB%G3fBNo3y!z(rzf6FZ%{3`gR +*m3auLRNs^t}{I@VAb0I3#c_n*3I>Mm@ilwFDz4C#-kL{YLSzlu!(IL8A~Q*kcQ0aB*!S45`RkW+i)~ +W*3QgvlhFm6?eJ1Mtqmo8Js9Dw~*J_Z4O#-Vr&n=$_lWoC6Z?eE>E^701KEopOZ!`okKgHYl=+CAbaO +UPxTH3+e?7Zg8zAUEzABsU}geib8DOycs9sUE8=Mj?=IIwp3e;qMCkb(Ney2Bl8V@_DKb#NQ61oV3th +&t3%~aG;JCn}hcmo{;k{=`QQd)vc +V^)Eh2!~&9j&nkjsiA9nIg%sh=YGXoKQ;kpnz0Oos|lX0qBUDr*fK-T`4>v6dX9X(NL>-^xs3pPfr4s +I~+T{fH*^gFa$y*%pTy?r2wvmNSm~to9FMHM$H^{BmYH`H*%v!W1j#bG#iA$Cfl*p6uD|FCDcArWEvV +V7_*H7s@ySPtTGyg>kawnVC(*r=r-NqhY)bTwDiaWVYm1$+p=1?17BGge;5Tq`>4{Fj$_tlxV~J1X9r +9y6!N%+=7uU1qN7HD+Os~dYOMcF3SZ=@vX)=(FWYD$dK;PfkQed1soVsKn=Iok0D@J>~wTUq_HelLVCg8`C|Pg1H7L4#W?1!t +Fyral5AXD9j7?1NZ7qu^F!yIcQKg0d4yf_%V5*)hg_bGLmrUa!Vdfoh@(R{0NNGNgaF5pusl_ov +0F`DthfC;(fbW0C!aDJ_z*afQzK@5LdZcX4*N0r-jV4`DQWU)G0GA0tlBjk&d0fc~@G+WD7`30z+9!O +hj9PW>o^LF(9d75bs}sqgz^F^7FRHmpQB-uKJIEkhGedA)Woro#%P2Ryhek;qpEV-^d?}DySc+uI;ob +`+0LtJHP6ra+8of=2k9D?&S1ywgHPVq+iKn&Mr*FmQqCnyBKM{ZN5z)ATC!ZdN#j}i@SlyqQJ) +nDW4hb!Ovcf2i}>f?F*PexhqZc(eV4z^Pyq*>9c27Rdoecd|7RtY1?e3zI?>gO_mp(>8}n=-(}ZTWfr +zmDP9~EvK-N5+SS-Wej;8D!i-Wc2sZ}FzPu-x4vZHCl_|LXO`4AEib@viiT&n8i~`b`c=6o5wBf!EB* +7QKe_d1^uIeU6x!4Owc_f9Tp}|w_79HHgqODQz3Fcb~h~QS}%YfboQ?f+YtHBLY4%3ap?0B_>GZ-fxp +f}(f7GS27*phm+P-fp{g_6eCislvBv^A9n4shRMHch}5j_I|5$7tf-F$5);3XsPMMUEj1xF_W?C;c5f +&ijtwSe{{S;+brgW73m41xSwV9V)iQ9 +5~Z-B3hJp96J~JaElHI7{o5XqD0=uqF}r2o!3Zy~a;v*Lmj)8(|oec-y)Bi{sk;%!p`^e{AwVFFzEN{bSXDFATS$@E* +lQ`v{wvs{m?oLAJC>D71{=DikKp_>D<$CriMKaC<5-@HY*W|?z2eHt-urvY_?q4{F_!ID_N2W=Tc<;D +|I;}(F4^w#3cM9Y7&^`9yN5q|2Sm|)~Rz8{e(k=Va+Q0O^hd)CR_4|ObJlKg+snOB`GmO#;lt7_jN|J9&b+<44wBv1z`_!a8{#6|p9^|jcxIS*;=u~59tZ>;G*z81bkOsK& +kzKxa6b_#6V+Pl96UJf0i%0C$pqw*qEgaRqom&M@}eO3GFz{4LS7!Pi~Q=^?=k{MbI~@O7_;LS( +%b1V*G$%!r9<5X!NXn+e)QJrTV?(zCm62(!c_)Rdeb|D&wy_Y%u!zt^my +B>GH+$F4oRj;+M^WFRp$PdOtpkaU(Hg%F6svz5y(d!@e?wW)np& +(79UNh1F_wF-nS9+xrKC_)j6pc+CT5aVrUqd*a3@;;CEO%IBJTE~GdV}|Z-f`lX31m)3YomNV+b9>h@CBupM`uRO*k- +EOru=fwMg-QI-Q=nZpffR$D+r{u6Rbpm@+T@{q4*v(D-RY9>WIE>jZd$BKHk^+Rs^y+AQ`Z@YN$xqno +DZVuRNU0oH`a?_rP2yrT*G5h1SklEq@2j!ia-9D4(9|vjDlAL7HhFb4D877O2ksAC@Soo(XxwlGYy7+ +PQ)+<%NRTp)(MHyib(1c61Ojt7s>O)vjgVuTe$_3N`n3~BOQ(jlOi!E!4Sn$1U5)NC~6(MBq?9Zg)i8 +_EFS%n6!XV%UlH`-#I#$t<+%sX05Tbh4$M6=%0${P;Re*meCWyQ?BT+1fpw(cJfE8C*uSzuu)(Y=mwG +C}Yz4$L-r>VVS918Zdcgi`>`+;F?LVBT1(*J{*WrUknluDuZbPLqv7JF-P;b2sE}q9V1=)MgA*A9@z= +KarZaa)kfaS?-ttv@Q%_eJ>*AVeRY(vrC)+>uKn82OI_d2N&k~|4!5us;3f+$ah(xJfT?0rXbu_g`}b +Z~mdeLz%J>mb6#X=$q26s-rd4{MHKI5{Jc!EAeD{=gnL4f86EEs8I{!Spt+eDVep2pCpB^Mv^=q=j1_>@_-&f+?X`}e +0O=T3Li4Z*!(8yjA}YZy;!ck5iIDA!HZ#{8 +>`<4o^5(&Y*Jog3GUM!fDA@qwr-<%YuCuMHqg;w3(~fmCrpCCHP6lYlE0$DW1b!7*)LPp6h`CZN$W8>FZDRw7?SdN7G`{ +v6*`Wjq{sH#On?l~oV)n9|Uh)0dGGafShxHJr%7cf^D*85-!n?vYAIW;oA7 +-S_dmW^`%#8-q8Q$&xK^SI?t+eU~gPtZnY@OO(F-+e==SCXap~hN|6do%z=U?<~>_H%=SrHJ*4LHvlF +p1Jar^P9j)Jlu}GzO2sblMv|>LsdrL!vgxK=li$XYH1P*;*DE-U(x&;bu36iE8~`%=PaljEHc(0ip7- +8v`zGT7`ASSI=K{^BE`RewZ}91zGpH+cz&>JfDa&U9x!b@5xv2zW|J$ITO?_+F9W>5E*NIw8o-Z?TC! +nJ%Vkq7t9S5i3hUmv}GVG$mNX=Da>W4lw2oMzB +L9R^ZJiU+1yq24c(?7MW6dsb&}XzIZZYi>n=*Xzl0YA`92U58DB4Um?DHhIx=GO)MLm9dO1Gi3{ +}-;_Ie?A;IhQUxDa<7qI?qCei?tx4Nb>+zy58_;48(6uYMqM|hxQncLp($&$IqWlGr)aP(_{o!SMgPFjqq(03RyJ2KxJ2K*jI@UmpoeMgL!F~ND{LE +y?GW&cflBLYH2mb$y!ewsxBXA3P!1~d`*-DMc)GT+2i4j~b34ZSDU*@cA=dD0 +T=++TC`Z6Y&u5H}bJ;m&fS+nJhQHQ>R-0o03vHzP@hHDcPVg8Lyt=gx17|)jV+j12^8uZiw4Fi|}>=f_PdY$%yr_Ew0F};3fD(%w!r*cXFPy>aJax%g3 +eT%3E+ium!~?1s!>JPoKJo9g*-HPR^*oa0w-8k&LcIAX^slW<1O$Fy(}nq^2yh_Zzj +0lB#Jl=pipJN`t#UtWz{epm6F~gpC`C6V`C>+li@QI45pc43YL66#=4(ol;pz|!V|F*Y!m4C*4|M<6G +J*xX7mr!v54wcLMD%W<`AXl0)Mz3KYASm5;^o)RhLKBYtmA&)t+e~+;=hZ$Ose{7&&@KP-@jV+B1H4m +W0&$Le|2zj13J3_Uv2*lxP5rO>Rf?)$i+2hr0KoBgU2NMC?Cy@yDaFH`RUYKAW^H1DTbx@* +|aJvHJIp23_j`@mwLbCx>&G}2A2=H_-c9;S?C|F;fDKCEyRU2`UZdw3(E4=?N)47N$5AlTRz8J-tr@9 +;l6I;6N7HpFTH7;rEey +D_hplWaHYu&oXcX&b3HDP**2otDJ=$9}cU}C=H+Z+0tTL+l6=w%S;cQQk3aVL*z>GegJl{(;H7)0`vB +m@6dcU2%X%xN4U^BrMxJ;KH-c-&>5#2C&iV7Om5^Q(OKCxyA}*H=K~wOR=K^lG%)*DGnbj3lyq_*2Rw +$G=@h<)3==0$Dy_jY1INS`T&R)f@i@P)h>@6aWAK2mk|@q+ITV7}!<-003P8000~S003}la4%nWWo~3 +|axZmqY;0*_GcRy?E_8WtWn?AFF$#b%3Dba?Oq_lDH_6n|#H({4y{Z0mZ8X; +v$h5CRgs%pWh9W0fF{t!jfqOr>O9F}>Y#Z=-&-c2}&5VnA2oxOVjP)h>@6aWAK2mk|@q+FuT +3eD6_1cynNqKTxUmtQwE~SmhUEbZLWwy7^Z-3?m@4%9j?X>xDd5$e|7Z?D8!C+=EGniK8Tnq-&WwWfZ +!9e8mMOif>EsC;9o4hRQogMjXT+U|Mn4iffx-sxyg$g^|LO=@3Th#T4^xNYGD< +-OREBY>bHNN<)fV`_H$eoP4=;Y-$M6^p3KuCy~!#rb=x$HWIW5WqEW?uyuN<(DywTKM4kK*iU1Vr@!G +1FS-pT!2X)nRuFS(z^_qO1mCFXJT+xebegNp4$^j?We|>W{IQjAHb>0SvBSge +#!W;W0LRqTlT7jH(haB96uDvdDJ0D~YPGZ1UO8dYA+1#q*2Pzp8@PMB7;SF-s>|b()VGSuozetE-o1R +aI6!;r5h&pM4x>3+gz-$kcD$RG0AZyqv6FmyJaBNjYBtHI8OkkKUeU<8qR5GxEVAD<)YnUj59}!;h&& +Q|i1J1E5*fWS1}&_3T4B%O@wd%i{gZthi}zo##Age)I+~T>^3}hzLhctn-xV0tP^EGuf6#&CZ@2KF&{ +4De_XQsvb-igYm4ap(6fL1qMwyxP=zo%1yOWH81hURupFDZc&yqdz#IRy@5A7JFtj>xa3k!ZnEYje9f +xvU{IuUU>SQmJ3Hf9TG!$P7h}=zh2?RkP9!-=_6o33Fc5%Xu~#G-*Dg9x!+q-94Zqy +ytbxrplmS6i@X^OOk=pZOU6v! +%VG+MX?g>OlxY +dr+*{pVJMkd;s8f(gs0Cr4^R~}rE&hFAx4W$teLro6Dga=qb;T*vRowgVmpoyDSq~BOufKP5t2kxK!W@9~3|n;r-;v} +->G(ZTg~VlFoSwaS`Rw{EKqreo%waR!D~=+oVEsroaO!<}_UhSx4t{=qetqSlGMFf9yaab0J+`6HnZy +WJ3jn!&nqu);q+e^M>kI7vl9#~4uFre+fHwf%zr4C0ygGaJ{OnS1H5b=Eo?Xg^SMapYLg~-XUcS8ed2ssd`WZYtj6wcfL8X;C``-fdYNJrDTjQvpw +m;Cs9%CRNxD3*wk}oKbX7~;trd5@$x~Aj6p`5-)I&Wh=x+hR$UHDL|UYfZJK^4V +-w-oboAV@SX^X*D7X*BG&xj$rolLXQ}^U6jCQMzfV*lkFb$Ht~nChGUp%Xr*@C%nSG2_?;u^@WDHqVwv;bPO>tb=FBdDDvn&Q7JSAK!rMhfd`4^`Q+%%%30z9CCbq&%>5>!*CWC?zWi)bC6CTSBQdYzzGYx?Th3YRPegE7i+Ek!-2?D*&wT(t>ns|sHF%sB1D2Eqa}X6t*yu*-;2H3Se6(!Zh(Us9(~Q&k^}7v +zT9_bJjPbv=9g64(=oOYKNxpB3az8Cr`&|BAt5US15r$I3s!k-m0=J)*NIBg{J<WMswwKN`iOj| +c>7jsu26~~3bTb^B5qW7F0S-Ac2+1220SJ$W7++`qIujs(T+J65AAUAHlpR$u-UlRr0+RJ_=R@!=o5m +^cCQmUtTY!(R}{nV4eef{)4ShC9lJ8M4M{HxDTP|!z+?rVfIz{fQdd5d3M;@=f#K;kPgD?v`mfwiWMR +NHG5%W7tgAb3w0B}Bg|^ci_Eh|5#t$i5*1Z)?^?jmy7drk#OiW~S8mzG5=v7 +;O9vTO8!1w$tdq{ptcoU|E7?k{_|L>}E3SevjsZn_;HZCIaaWmr?LJ!?99E!fuQ3a^&4X1$u+k-OIm< +h_?KPX2KCsBb!UJ{7QEBc_N|fiPN5P!fje`H(S_17e%y%*j*e0kpmlNA|p|5Q1-?4QXJ8q_U$3W;f+%_aDbUZDfo98>i68GL}P` +%?21?E$9%qoeF+VK(B)!DMke6@^5vg_Oma)$}c1}GuLd)!4I8}o@HJHd7h#p) +wbH&sNAGOfc#JWrrdz5qcL^`$v>h$<&FjIil;dYwJ9PXl2hW6=QifKd^Z`kjmEy*8x=#N4?qVQ&S&SW +k(MBgWv72o1N>&Oh8<{S&(Nk7&RC+3{AUp*N)i0m2C}gPW{T54stnhwQexop+yPy;5zwJ$PrVSPIUUk +yhQkB`ML3o`Z^s(i6V(06`6D$dw0cNO{rzO|XA-m{*mPKyM5+d@|k;DgH +ra=)ROpdpL0I29`kh#YQ@BrfblIxm+n>A*{9x?ze}IEWlJz3DU`lW#1}tj$JuMUj1M6fCwaP;Vug9%5 +J7!eJ26c0L7Vm9Q3iJA6T!YSA{VldGr%6h9sCI_`Mm87#TSvm~1^H38WeNl#z3fh6YO$dbk2pXEpE^odA-1-eF*A8;t`2b)pc4ZM2aPl&baI%Me7Fi6k=w~8=NI +VTE}p$P?;)#2L0-B$a2q6UDrZA#g=N1ACb;qWY9f1do2xEbo)A;$0RUf;UjlnEB2Qg53P~5s3Kt^@fp +Z!+6vne(fHpyc@tmZ<(Mq~6%$04R&i@W_=TshCiLZEta0hxUhmvRnG7yWd({3+~viH(U7&ad(cC6ZGi57_pA()Cd8G-Dyen3hGb_E&(962&_TgxtvEg>ekrGf^~B8n9ehoFcxkQ8XG_KmD1q$`m +aeF?;x&y~g}DHN!SwiHXrV|byfGeh~m=sF}}6c&MhFAh4cV-pVC>Jo^pdpMwimSheK0d>xC=9TG5yvM +A!gwlNg5krYREsGK~*J)#$bf;NERx;a5n+43gOo#)WUsxo@qKvBaR22R+%wav@TE+qGtAb7$UP{L;9S +ceh95X0A3Qku|vrnB$;ohwpH)|^f5|AK9pwUd +=+EIUD6d9(0y}b6HTK|-?KNZd%!|`NvSom@&inp~snPTBSeTU%dJkA!fy?(S0*;=YNuc~CX-XDWZD!_ +A{hCEDUo%yJ+7FQYbxVTifaHs`xIrSApD=sNUNMc6k!dI@UHKk_;16acEuWKMOAsD<>DPug_ +jz4^GccE>77Q_^mHGk}C$uV4ZjEVxqxT0P|}E3WB4qtpvkObx2g?T9;?1=a*+E*MqC;XV*Vnol#F89r +SzR(ZM19_Xz*{1OE4&w3A3!gR{%ai_5{u%V$?m4P=QW%*k6kB7Li45P?M{NrLi2_xwTzEgB!hy=_JvZ +4HOfl@2fjsuxPf+knvL2xm4BM~rd^#Mtn^GGE!aS8HkN6>w1a`xZ2w9;!X>K&J9uNjngWSMZwj0S+)V +aM62gS(8L!9?H|>_|pNJ0AU-zR(lo+r#04qhq5X2PTJI@t?r1_K)WUgdUZ2cRK1u}2?;=Yu~hqv-u^tGHDQ%XK?3-eqNm%= +aZOLwx+;^I8;SQ)DAQVFxFxCS3C*)q-43;o9LCkHegD-zgo-;X&eH)yb_23avyyP%u~WXIi3101{t#= +WoXvdADidkGrgE63P)S{4r)JP}#4(=o^^>8x3ibsil$5zQ$b4k()&sH1s3PT5qD8%)_2bhJA=HgxPLn +yjhImKog%L+Hqnb{vaxgcc1(j9-PB0%r78bp#&^U!DDVgvcXPWk6;yA8Tp55(fOmt|F;mD +}aQH#YP-_%FuE8W?IK+Vrhb)>q0HmXb1IMmNW96DftOL|&5=DhNE|mq9O)S`0+XEAwWuSUxX@H^oQ)t +{H=c?9oi)~`BF|UMyAZg)Qv5FJGX$E3x4ioVAjLjIMa +)BB7M8Zx{B-?d|GOT-U05>o5bb~8JwALQuC)EHFP>t?iTdc_!@Ik?q?(TRVP2cEO3LcyA^gOD-yJ@Fv +MX(d`%vfm;lS=-DbVttiZS%1oQuC)UA)$Ic#8kQZcFJB262S0W=BI?I!thKhOjI&&{YYnO9E7|a7Uzb +3|;Dcx&gCNU?K<!u7?UVMy=a=b*MLdW|dl2L+>*R^NHi1{7 +(KnEDb^k_&7;3awtZH}&!1cV)O9VaJSd+52Q$01! +!?HI1Zk8){E@dv!$2`h;{2CTE4|dzcaB6NVDBB&7z^j4eR6md<=8N}Wp&gmevtfZ~@o|_Jx3bd$LVJ|o9E^TGU=#%Fam9nX&r+mt`i6iL$+C%uP-VLPa +`7i0@7ov(;rgAB@onveTXac2*&j(ZAE}Kbt_jy1l-Oy)2V3UM8R&9agNacl2f~S6REEh{g1LIY7iNDQlONuD6wlfr +sv?E$TR`en^yHx>i}kOKDoD=gxcIuozuza)OAjvo49gl4|m%?rk!<9NkKKoW8!H(MT&>6e*`cF2#qCs +;tnJ)Jf#QKA*{QF>zeCGCwT(;-ni540CG}E?e`6^AOgx~IvZj?)O3DIYzBVTnfDyGC>j1k<>NMRK&!_ +Zza%rJ>Da<$^b&R<*fb_aeIws0zm+5Ld$gG^n+W}MFhvmiBQsJ&-XtCI`(Qkw7k=hG+LK;(J`lBm|@!VA47J>h)A|8t+6vE6`D!MvGAsp=yA8>n57!nUlnp<@-GQB{ix&226hba5o!fEC6`!q0W4 +r^Irb|*o&(mW0X#6E8V?t2dB5s)A9Sew3^iWW1V)DS>6#fbu_fn6*y{ZBw +|>f;6FA@XBI;lFg-ko_*$qL$XN@g|f^re;8BpwS>Lq2po?cU(V`M`29st(#obIR+w5>4{C7)YxM{hEk +WXi%WlxF3qWD*W(T}j!L$yPfZGr(zx+1Quz0S?99-IdjQiPp1^O_iF6Zsr-I>^8+zFqL%ir +Z^RZx)IgVgYSp{Vok(sC^nr>Y18dFv+|&3+oUpk%G&4-xumlW^gL~<<(Tb9c0+A~oNk9;f)`ET8a-@kxMt ++yco}xa)7FT?0=k%mN#OttT3pwPQ*FXH2^Uw&mGDh9L?p9Q`rS|@$1`6o9-O%ObYc>T#6C*>Y%K0o$rRz;w{T$vkbWpe +NSZVF9V=Bu>UG>7XamCgJi(#D&6MPYQ74WZ^|gZQ~|^6nSK2z=j>9)A^UWPM|kW+s^n4MrkzW#=Kmh%8-OB%33JL%3H>H$<%(#f81A ++s*mO0=u1iR$L>$JC{z70|8ZY=3cLH$hoaGcY<>3&5rrJfzviW-PLXgHClbJO{DoWD%rI0iKYYIo+EH +WP7lY|yo2BSg3YIez3!ViH4T#wdC<4y*P2|YP8g+E|-?4U3zdgrpeAW|P;;rn|9rfy#L&iToHWs`T@Q +?S#x~bsU;v!C;R2mlU2U&ak1T1RAvi;CKtFGZ2n#Vl{t%0*3QOC1?+xeuPRTRdz)EOz|>BxTFtY)-7D +n}%3yZn>emhvi|#*R(wrcPCyh}yTysfbUq@5`fYMZ^pEZP(>AM-Iv!s=<@` +h$TZ(ByCOUmLdG8^juJ?XVB32#}6UW$TucV6+YP7TjOePE74;D+Z7MCAn2H(3JHpsdZ)3i#&t8@kIgth@(#%5(YVeD#E*?Q; +^?ovm?q0*QYlX3Kan!MrAo^b9|S{a`|wq$U>x><75)49={oJsa@9qc>ulYf{lw^rpX)TT%%><07fowi +FZF;g2p>)g2II>taUK}}7%srV?ulSW%lbMzudm1#e(;o@FgpeH^@gD~vXDCMQ_kZYG?ZH;M&qI@x0oL +EU(c-KQwAONNxM{n*?EDXO=2Sa%L$IT|(h_V(tmq93_7@rA*k!ZW_b~nnV=y!+)4)Pc;guW{)YNc$7R!4inDX +jc~W`lfVJ-CNN}_2*&voEqilJBmng1+0*cBxro5 +SjQP@9oMLL=8>ksIo<-^+r%JriN8+2q9{k&r^NAsCz~<^@B~SE-UBtu^N<|E-iJfk9Ok}{34JqA!H!G +2T8O9LkWhl&Ij^rKNRj`(l)l%F#Q1`;EU~g!o@7dlYa(~U+>um%Pnct@DmH}H8I6F$Vk|w6 +b4OPcZdTG#n}_6ax}7*5gWZPD-O~~rU(xSCb~}q&9^|IgjgRaij`v|$g0mtZb;ayay!-uR7%*p%Q?H1 +)jc{74p%vho +kcNb$Bmg0yb_z~?(<^_J|KaUtjgD+5Ei17YJsHWLdz9W=L4_Eew)^lV@4y;4flP(A=jq`>8RD2Z~aHx +1Fc&=PqU3M-&hzGo*Y`^@V$zqyrl(nW5mv=;^Cnd&Kh)Yn+I(@w`ww-_KG9p%<~7?jrV_T2_fUR9vr&#W!$7g5qa1P8#AwD)XDiGbF;~lxVumjaBTz$RorhfU8Wa? +pJ2U|(u=Sr}EVjcL$`&fGm>x=pXf&rdw{F&w$a5E=^D!HWRx>(Bg`VIcH>{9{ub!O{;`zLFB4Y|ToJQ +an*6ft3-<181otyss^W^CQ@tFd&#&`BC0ZAB^E3SH@utbZJxgt>}&+STU;J|42b>&cGZAnvBp#is}6( +P(YhK)+mL+zvy8Mr;SKEs@LEStlqD&J?tk@!dUyXv1IES^#4O5H9%>4_F9aI8>@$7)N|Uds%{T3OS}* +4D|644g)Dce>~4wkq!m$^|8T&C?Gh2*AXSXx~_PK$eAaY0qaXmm4|!+VPW&UWi8>f`%tK?c{99M{YoH +W-F7SigpUSC0Js4(qTYVv;3V8)6>QNwzTNS|e>a|61o29u!VEgkmq`ULcIYE8}Y6;Y&F_l168eEH)Ae5pa~mu|c +_?L=X;5ru4U|xGiTo6S##W#;4;4V&FApxdtt5rwlGWEINuJLQyRB&+(QqCXZz!U2K?qVCt>anO*L1DGxbpA$p&mE+hk>2Dhv79PBKW*!;7> +l-CYF33f0noHxuqr?3XeJ9B)rR`UI$Wsy;a@LkKl=lT5fs*colJSJ}Er5n5-YKTsBPoM>WirsqyGpF2 +SumGFz~2z{k74wfatLit@-cEnHbtOuXf(^_xbln~P8p@Vm~X3-_LP4mPNYBKQ}HNylKerZUZo4aMoZV +Kr-Hk00OiY30useTsY>X-d0m6%^ziU;|IsdeheCLOyx;FXK79Q6$&-VF#OZ)K>d1>rp5re?Dn51t}IeY)7bq}>~*mgySjjO>!j-TBqv&0jCxoV`Z6$K3AzeJW4+I+X+8wIP>*n +ypz?6^av%=WIcdJ`!)uSG6miXP8s8=FGtCD?k&^N1&ZxFyU0s->YGthIYnHtx`|o(!C}1VyYR5 +#c?PLWpKl&v=sn*kR<6}sxj1~9AfIzly2iZ6hGw8k(`J(u@sic9aQz*7jX1Qmbbp%htgpUovj +Xj+(YDdnzUOAN;~02l7_o$I=1#2M*M_1`{*erU*jZwVbXBwNyfQMS?0l5c}$wTz%wGs)mI +}w|JGIF@eTDCFkAU__Ed(R_!{ODtG7{rZry&yKy6CHjB`X)yrT9@|XZq5Z=bEmgscx!5)X0OKxJf{Em +)KW6Np^1##4&_g{+K!PeX-BB|irf`%W@&>r+waS>tnra}zP!1yF292bi7|Puej-&9N04tziyqdGs-=7 +$i3_}#q^wNckwnSH`iGX!zZkH7F^DOo(#K{}CPMsJ-l5{vbA}}?$VT0yW7`O*Q_%cLuI@kXiNk~bq3B +{KKs*Gou}&BcCH^5fu>bAhlkfJR;Rq;s9l#>1KzJL+u!mwfCSy)1^x#_BOQWDb0Iueo0$U;rfy&@n0v +^tp<^)R9^9!_E#@4vTwi>+RqS-d4vUttk`58*_(`xusw1fxnlN&zuk=lto_%XqqWAam(L~{Q#EWR0ho +K;La%Be{QE>WymB7R1bNehT{GNFt2C{vt}3C;LQb~2FoP7Lweo_A%cBNYO|iCC09fk_8_7l<9<}9s9J`EgCBK1YWGv~M#~wd7oWaJ$^v3`EQbdzcB5QuPhY(h`nK9hxNS%g3ZW~w&1Grog0%_ +90T11+8`aSm_mc`4sAGrJ$8v^;+G+!r3FX@?LG8gyG?RCkF{B}_#Mtjumc=wxW=Idm@~>1>`~64#Cr> +sr1bcH0w~d(V_}6WCSKISC4$xwk399VJ8i__f|E5#_IDTFEJfEd>`GE9lYaEYlT)xEARHI+s$7aYlE)~@H}S)Kd4p{7Vwnk +yo%O9XoS*|^W}#iE&zi_^$dhXKqbpOUp$i(C3P~{-`a?zUwY})FvH~1T!UR30sYe!Zy&=emOF+G}xHe +GR5EeMY?26afO^W%8q=lBftT?NvmF-9cENizZ7lWj*J5m$vp=-?y4(Wyd1hV&Twj5(nSIHH&y1-UBrA +Km-#3jm6r{%8db)jDBh5`w0|iS#qOFe~_ui8u1#HTv9A&&haSG +MPe|`YxumO9T|1xU@m45nsC_3U0MU{R_0n|xl&4YqXSF)zHG|fB#Yf6e-oj0%N$Pl`Qmw;27r +mBd|*;__-G^i(l%yiHSL+6u$mcw&f0TOLpbdk(U{^F5;(pvum>|U0TC7F?K;4FkP8O8W{Vp}aY6LC_qR0g4SVEtIMrXN&$Hu4r9y +?+Cwb1w83V)-UU<4Iw_On*K?%$FSwMAzeu21PY#K_?7R)S`CS@poLI;cZ6n@u#a_G+CR+{qtNPT-F#=quD0TXECXOFjqi)Sj~9A +H~zp_A99%fu#fO(jqiw&MnG)QQnoTWACY%#GKh<-}yRpd7l&Z +)U`xmLAnJ-+P{DM;;S9;Zln+?F4gL01zM}M??FQ0T}(bYQ-!{Zfq3(VL^cXgXm(=W8gfDkG>WH;@Qbd +Mg}#rR-=p#Iv&?_^iAhuz<5Sz#@iyp*2?6acZ9E%h|1wv;NGB$Jg{Py*VtR%RIXcXJZrj`y;UpY#)5y +6jJhN^->>S9stSOM#^%`>g5g1r$ASc~xWs*+R((I+WHn4-7KsXb&DMdcf5cg4W#${;RPd>BuBz}E7$L2T=yC+r>LRZ>Qgqm0bZ_Qn^Hp|R5&8bW@ZmW}IK +zB8$i`{*%y`tPti`70?erK_=ZG8dVO!hM?f1Kszr{YHZJaWG4rHL=u2y#1sTxt!6j`9Yyf)-^%C&0x0`@J7?}jS9+@_T*^HNFo~^rSF5NKv@Kj!b-y>vgv_LGcAmIY(z5iOpnc +3_P^%jQJjVlPnr3DBzLq}EMt0knwOsiO{EV6{&o#y@WHlv~0jXWXA~%DDxuuAlR&r8vRPydSOgV!B20 +m9gAwXkdhk4j^%%OzLRl_N%9QkW~=BU`DE;_bD_HqHDL^iN*m~W#i(DU=EZt$Sv0cJ$XZ}7AQ4TmNzW +GaIw)P1#9Wv+#`N2w9$$a~-A+L2c&L1nwcft_1NJ)?XyRv3ZwtHa0Lki#zvye|{c^v;KXe`KncQRk09 ++5Nq@2c}d!ub0@bE}sJF<&*C&XB+y~DLF;GC55ir16NmoJ3$?ZOn3N?pfhk`3e>dIPOlsM +gtrSIR{rCzp$(k-|*2MP1lm|H;1aZDs+wsW)Q?j|VR?fw9PB`X~C1p~$G{z7unZ-==Yph7uj>xk}H*W`0iTQ8+3GT32E9gqlS#aQ$=JphC +=2P1#QAdKxDugu2T-6`0sf=<8za>Kn3aPblXS%|-AA53Rw_riXF +uU;sQ74e(|n#yF#DFD#>X;~B$lOQ>rHQM*Eczra6doI!6cT46L$g?uH4yKy;&Z?N)|YZe$B&Y3{IFU4w8zJDV=+a%^;X+J5{c#nP@i}dyxn2t +*<pTs&au^{n+qjIZy=p~$KGFYv8^;cF>b>^Fg^L91Y?GVQE~aTzp?gSMZ&q(sb}BGFO;j1U^liB +jK#CsCStWq{3quBYU(NHI+vY0;3d8y$KxSEkmkCVqit7(}C^{)=i!WApX=Hi&Gw$CEx(1mo0pEXV3Gd +#3YRprL#Hs`{5Y?qX@?X_|6-WBEh}_$2n2*Fvppk^M>kLP+p;B^?s6~dme1+Lx>l{zxRSvIAI^2l|*z +X5%Jj7S5H2>ggA9b*HC*CgC_OSPJCVioGMzB9x5#eMt?`*qE-+$Ak3gM~F#!D>SybUbKV1IwQe8~}Nc +Tzy-Ycg0>$ZJbHSGCWl_VsmK+1&K!RKfuFyrQH@j#HB*CK=xajwj>nWLyiR;c@Dw$!ksOZ`~dxaRlFz +ngr|sOFiM;_tkn#Xn_TK*1+XWcK}?y-E^v7R08mQ<1QY-O00;mBm!w?v3 +U11a6#xJxO#lEW0001RX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#Md2euKZgX>NE^v9}JZp2~MsnZz +D<*VO3$966()uCffybDisJd4-=6NC2L=y5cGsz-61lu02R%Lgnx1| +P)NZ$1?_{`&1)Ir~t+FV2V9U+bQY53%TNY$2VB@zVb{|Y1MH2dKJdZNAP&3x>I2EyY3X+`N3qT-R`CP +Cp50WrQLl#H(X^?K%WRhj^WMbxJtL0Lrxd_?la@b|}tDGfr&GLDWv$c5fBv_cr~crTCijPmH%~@%~H7l +flI&xGNKt#m;^5531VvfAlCwT>^j;B1$+QvfqQqAF0jqk^9VI0K&67@mCsWFf{lRbJl?RmNbzwC5U|y +f&4VXo6oeY&(USmxnOGNmr{Zrbm>GhQevvCS4H6>?l+;2oU6vV&7R&$y<@@j@6utXcP9OVyu%&F?YBB +ivXJCeu*8>?uON-OWqr?|O!GM+|3#LG1kP9{yX&%j@DSe)c=_9P%1@hv!)t{}BX@Byct272PeC1DNlB +dzVZ*luk@+-)KM@cTZhMFjSY~;$?8>sfHC +>PUJmdi!-cQKi?lreT0ST&e@kZhO);iW8(7J?OP!PDh3M()6{)xw$HqLYcCc+zdf(W78!@hF`4d=yO#Q8*LO)=?SPVNQ>2(NBJWs_kXG2VEy0_nk|-b}8N@J=BvTdzX%{HLRTYqhK@YH&UR7~uDb^_7F?9AtrpP+dI8^RyR=S( +FG^c$>t(XhsGG`=BkgMD4ey;CGJwBbqynK~;_Oy#Xx;pE~^-VTtU4&k(b_ipq^dWBC9k{b0VLZRwAI1 +|N`cB59=Y-3EN@@JbD5VBaD)kMuXNQ}u~YPT-`-+gQUvwC97HF~7XJ9F$e?)8J-!@e4iZm +SL~1$HS}3v$u`#*Mq@L1^#C6AMb}ZgEw2@3H-~Zrx$0#w|sa3R1hFXd}t4rA7D*0S#b8$XO9$oK6cp? +`pB(v@ZpGGWM1cY+^J)TgwT+GW@-bnAQcoIEo2664~}aHuweH>n6QX4I?w?(#ZPn)0SXL?*E*W-@-?cdYmT^Z*mS +kvIVgjYfJ}O?^|{WnT85W+V5oYC^kI^S*LRw&{7$}hO|8@I)!+W_H^dqw^b&~;arVE$ojdefrw-piHt ++g3wdV|a+a8~c+F5PwuF=TAz296kd>(Q55O}V@#|l%t_PQ>u~RlqSE8~=6NHjyQ%X=1=zB=vA-*W2ic +!V=hUq#;Q?bKHvo5P9yVxa@-S8F8E`m7Q!@L4f-0#wLMFx=3%CzqZu%n|2eLm?gHb_KLq9TGK>&t=GhFa+y`z^+sSJUu=3k0<|5bAzWKiUUm9 +07}N8NNpK&M{&RxCi~7z0&4T|OlcH|G;vMw2*Mf|eEUSzQLK+8Vl7g?fY;mm3#SZvQ39do4I>9&Nu)riTPE>n@gCdTqA=o7FS-S~&p0~DQ9%sHh2T@iCsgAYL|M8 +#*Qz)Ip^`R^4!iL_bzYEOnqMn2yrO&)&jvn)?(Q^IdJChJ=hd;>@^$F@RvIl6>7Y_z&Z*K`)=B2B3JO +vA8&;}D5aW#x2%iVe}D!GJnFt8E6Ua;OJDkyP3OzEa1zYZuEDq%{>TE!6K=B@vcTkq43owI$#QRtKX&N{eu+M28;@g-=n +y-j6SO-!M=0T~HIsvu428_2#_-JBYHuMvrj|~9?ax@9rdD?PjmN%4fZA+Qwz$(Vu~<SrW`zcw;o=be+e%l0l`?Rd^lU&bKJ8>{|9V6C*%odaGuj5q +q9q9BO9NcWsl|konzOR`h>7My(oW?X=Jk?%dzz~2aaMXm%13Id_}w{+7Usj(ETMgzNZJ +9CX`c1Z@MhOPOC_?N +{_aYH#5F>wM$cbDubP~~KRHGd{ZH3F+nel#D;a0IYbxw-*^50ez!7!=LCCBbi<=JW>9CV2!t5AUi>?9 +q}6{3Mm)?Wu{0xGY>R0Sn?@Z;`UK~9qjhZMKQQ{GXLT8?|B0hXxIS6-VfhJg+~QV|epb{b%mP +8D%XRXK#$IXOHNsM7M8E_@q2dcLo}j)E|zXpp_R94U`tsnAi1ag0PZMk-x5#OkVGN2Ak`off>ZmmF+u +mcntLf^_j}0hZ-a+mK7HQRz+BT?{@6^pLqYs>&$fqYD~^$RHWOor@ns74K%~#|vFh9B34R@e+eXC)F& +g5Uw1Z8NL+`1$WABt-`%Fhzx>&^6`mrf;x8ag2U3QNBLcJJml$7C)4ud!vk`Q=ruGgt~W=7w6 +VpL6~x*q2~}cyk^?M+H?e|6S7kxa3>){W1)%?eR4QwGIpU=SNj8;4-kHis7-87y0hzH&vaBHaye^)OW +mtTMO^{XnnaM{_6VzAieovCk|^iAU@;T%tk{TCJGBF^O!3uSa?i#)UO3jUvfw^ce7>gtbGBKQX&kt=kO%!;MUvILVa^Ykq{Du!#TDyC0FOP9S2(g)DEzQb^qY+&f+Z=x?%fhy> +~2ublWU!;Pkcu2T581Uo%tUhlYzbxz2ufEZBQ;Oe5?ke6uX-?z&LrvUS50H*57)ksxV)MB?scgpRM&q +3P|yEy!-NaYQ!*^p`&{u~ifBtBo|pGycai@A&XpSxggZ2Zu +A6GL>j3;1y4n;bc+U3fmi8KOs4v=hohAj5%nd{vBNoKRB=}c#*A1VAn1Q!z3fRG^v+0}7)CmspQtPq* +iY+1X=t1lsX7k_?PTCbl3Aw&=w@Yl>#HE^JdG>F;&E>O7gq3pZlJ)v6%b^c2W +l*%?rg{}Vhy$%EGXfh*mLKTr!+rM-{l9kTr&^BG6~w>`$e?ESy=7tLn;ztU;g{hk$)QyX4?>$6!bgS; +U;X$XxRB>J}#UU005aY%oonB$#hy$*V%z6v7h&O=>3$B47cX3eQo336;6m-TR!gB{5Zd;Nfo@omE2YP +8f&|75GJTW+Im;tyW9j*^ww$I2eRSgg3;J2@5v$!i>MQES2-2s4I0l5C6=t7EH>kMzAzhg +}7D2s_}vdZXL9Jca1Mu!_9`WF_f#v?%Y$N#1VpVu1X4Xxu)x3O(Lk8aLsP5pZ>!ffkC;?8K~4?OIlLN +rtAd-{HdiZe?D!_S->U5yq1Bu!&_EAG@Q`5KO=V7TJA6Cg^i0z)sjblarh5S}UdKPb>~!(J+M=kN9^S;gYeat*=Y+K1&< +!CjidxF=g}LY!a$(w_{O0qts^V1Uaw_fJYqii}qEfCorl1vwTqYJFztqh_ZkcO>N;18R>(dK#1dMgg}-8}W73D+4>#@9 +3mxAr?xN=0 +9)S@xh<3ABJA9ig@l7!WMm1jA|k`2hwtFo_IM7~&Fs3~*4I;R2`!`nhC=jC*q7^+a!C%qgH>$#SO)og +YoWVLLF3E{_Gz@7!)Dc->Ti8}o5$Slsnye?jNS}Rroz*cD4(e$7y1!4FVrV{!NlBzXr^32bByK;dWUX +EqeH_K-5{VnRSp~Nw`qVUT;DmFfg1eff}m*jfH-Mb6Hv31)Z%WdtsQk>M2~EKQ6snC3FRtZm0wy@V=s^l-o7lp7Rl{Fl-N +k&`e6}=0g1Qp$Taj>`#1NM^l?K+(uLRzNuHx58WN;+CscrCXssL!>*_hlO_|6K)8(9Q~EIX}rNkt`T5 +CCZMMziTiV3yv2Rs18T}z)40Ey=9l#i-L5a5ibGQNre_l5sOhmK_DP9a}H0$FwM}7-)$QVpKj^Oixhk +b&!SM2O9}-@D7mdBbI22Q%GS`kCxnN!`JJ^*kX|}!w{GQz8xi<3O&anComqNT++C7EscJr)Rq4Qe93* +Ub-NiqX@gk=?`;q!HFZ3s2FsHk@IDdWg`ZXKrI|;?RZBZQ|c71FCm)s#COaK&V%#8hupN9kID)=auREguaiKzVF@cQ^j(b)R|zhEHqCG#mY)Pq$-sK&zP#qQdXMnWX0Ckul}*d-7l$7Y*)#g +9a6nd3$L!SEZzPXur8iuRfg|kW&eH27QA5MixvgSU~*?SmMg}K#G@aV0413y_!fXtz}VGAtVyL*A6HC +(Tv0L5R`V=lH^;S%KPx8NCD2QGRuj|`76jXD6w+-rD8J%?2M!R{t~4(*kqhtv%4xMnzFiH76))}us%x +!fJHd5b2^Fw+n(<6Yug@g2OditW-U@K!q34~ozSwNgp~nb7ubz>17d$*a4}xH`SvG`|bR)7$V`(LFsR +eueem%u@xu4_9WDF6XW9xE#P@*b$4p{&ZVzzWbO3_ZrsQ;;E*h-D7GPDH}AW +VLESL)t-n0LZS8J77h{dw~)m-2mq(Youtj1Okl-qrk(U0@q{*cw1&Q#S^3^vJfV1QAgt?!~$a;Y%&R+ +V1(l=g+w@0X#&Z!7X{WvAs_)Em>`A&R1T%W&H3A}^2w%p8K$93Kzh5X(^$%564s}6UXpzB54#$_-Vi4$2UpijuXgb*F`ap +QYcjNvF+a6rJF2G(`SAkEpe*ANfa_wia6atxUvk+274F;jJ<^}l7l}07CKW-s4ED+7{cwfE)_(|onsa +B0Z=EAu?kXoE{bzd36lMsCl9=cMRHavelLQ(&a)E=!I?c4Tj1rY`8sl(*;>-yil<6=p7k*V3>`}`Kwz +Pr_jQ^JSySS!Y2(%`*t`h>S321249nkdZ*N{Tt1J4wZWqRkrIgt;^9}5b0C3TpO&3dN)ugOjvG?N8^3 +$3FK-oDjz^#=-K>T0KlB0rVo&^vlM^f@i2`spY(oorK;=>-hV(;-l7}gFHD15_?9O{V}FGJ$3oh-&=Z}dZ5nVJ1X()6#e9((|78q8s|;FbGgsXf7NM_l07!r^+d+NJW=a_Eo??M20nH +zd|LVgL(DBqjO;O4euLg6H786uF;jSoBRaoNVg3c0y~yDF-hvNOjW?iNp|V>+%|#a35w3AZTr$^@J{} +|rOu$T_K!mD9(4&BY7p`7`C>%M7IH5+nR3jolNfliH;fA#k=DyI2-*SxnoiY4+EZyh-6I1tTVmtCuro +^;`C+uaC;7qhJtQ!V%pmH;1ETIX(B?*!v7khbtwk9FW&lHn+s@#mkW35;LIH@5%cR +&d{24rxcDl$br*LiR{8e)6Zi)ITmJUGsekey?&9ip`eg^}17y=-Ss}hqL_y{Bn;|YA@?7VK7w2AdsG@ +gc?-Rw_EfFtr=TV2^c%g01j8j6ZTQygUK@uSO!0-%Zx^1>KVVm1iwo~a{i%suwUWkpjDxiUWrC>BdtIbPbS0#Kr>S%?dAKMDkqt+5AJ1Ql@sj0k7hh#~mmLTl1Ft8L*W +V6393*@AbU4|uZP6LwMw5oUI=N>h_aM;aH$khQokFu~b4a;+vAcVx1q6D26v5dtA{B*-w#Uf4CE}g9y +-VX8fFI8Je$^*bUCQ+o>C?9lLCvEPO>^z~)bwYk)(-Q;Bsd}}>O4XpC>ls%`>%g#H}_Cv5Q%1V`h}PH +uNfiW&)ppA>1i7gf~WCgG=PO2U13;H0H>MS7me-9-u&Q9$6E}^?!Ge*77;VRCp%m(q#jIrEzdf4HIaQq=>E@>dRx`sCiLQel6mpREWO}=p45S*!z+k6tbgNKEzBXk^FNsXvBJ|*Xi??Rmuy>d3e +d6p*rffF-${Hkjk+z&SNFX`GkCUm?5Q*uO2fYO{rhNl{tTTvX)K;1qd~JF!(RikW||D!`WOJYc`s08mQ<1QY-O00;mBm!w>! +Cu>qK0RRAI0{{Rr0001RX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#BZF6ICX>fF9ZZBV7X>MtBUtcb +8d99I6O9L?whVS_m10GbUxp*t+r3jv+u*Hi=*pJydlAQ@jw$guZTGH)qiv`gf0`tzy`^+S*mkx|+``C +Ll2B>r5Bb3Y%%SggOsjNA2+H8;;@w)fcQgyFuVa9q_2W5b)nxm>zy8~!Fs&pduz1@6aWAK2mk| +@q+Bt#&8sa50000Z001-q003}la4%nWWo~3|axZmqY;0*_GcRLrZgg^KVlQQFb7OL8aCBvEFJo_RZe? +S1X>V>WaCzNXZExE+68`RAK{y}IE?hOeT^#ld_;9;vdM$RhDH`{RMNlY=G>V1Dl9!~C__F=)H$#dNDN +#;ZU~#}1Xl#-X9}b7}Mm7`Gmc?;at6D%DvwXX&gkrobE5%h_m2xs^`YLIEsr@c5uP2iuR!d+TrFKzL< +WQ>U&3gU*^ge+dO=VdnSb`L}R8S^+c9*LSE35K3Y-J+y9rjK#62PIb68KD9_Bz-R68+AX?DhA@FGoo} +fZXBw@UBuHfT#P3K}Jy&UvUXB3Rgm+37Z-5`nUI|@lR*3erusa5Q%cq_Ac0aQQhycBg?NBj1ckFK9

EPM^Q9m8K`8_(tUv6YmjDF#N}*q!6cMvEDWM)NhN@9(VT35!`ieg?` +dl>A9^rfUmflZnuFEaC&70+KmlBuMxm2DYYaNl8$Wq-dh+wzcmG;W7=9kJ7kfUgIoQ7Qu5&V(Bn6k!m +Cu`HR!bq{b)jOSURtS6XyU)QxX4TOnXP&Tb}=QppMLh{%PP466<5aKhD;$V`8?4Sjd?8DyQ&2C2b*O@ +#ns#lZYqf*cx1X|q(rH7>#D#-W&R)Nx@1+01Y(}1cuXWly({1Xr!Sb^%O84?2I@;3lF;JK;^cEnGDDX +}_tG(;D=uBX^ycO=z6FtIIiyQ=RaFIQ^))Y~%Q3_l284D**7{<7xLVI}(RW!ovx8=-sbb5u3>c{=Jsv +Vf?7YlX9M5!*Rv;AFqHVPY)pfO}h2k7{-Osw8?a_M?0O5le(XINV6K-_YP4jI9hktna_rJQVPd0`D^} +sH|hyym_O_;Oi|Ip2)r|F0kj6nMG2Xs_0PU;WXxVvI)1kTVB^HM5aCNOJy7tA;u1GGnW93A^C#_5s7x +V=A!W>`r`ada(e=#90Ja@DyDeU4auT~-2^+JL0L7%3#Xf`n6YzXO(56sAgCL-_5FBlP_f+B8UXaB%q#(rc^EL{!ZYFWEsxd|v-{femJvsii!8!y)7n6U*5P;v +tXYkLc&zO_fYqiHeYNI<0N8L7>v^68q9|bpwcWlF3P@5|4Z5iu=Ue8sP?w3wAHMXm7R>u+h1nj1)?$| +Rlz5=*Z&u~>$C1lIF#J%jWzCbR9*&1z|RRULHRYnbmCd&o7@^`2O!Etja48|X(Ds%xRd8S>UDvLeaa& +e=H3a*H#1nJOVg?a<~J6ztj?1b6&Fxmt4#nr76H3p)1^-OU{phMh%l-NC8^?{Og@|GzdH0O|%-v(RzU-|-cfg +wkyF~?CK$I)I0M6#aLvz=`jnQBbf`DLA1r3$gg2;ZZI(5bnj`SoZg)~K-wmaYfyGqU6$z=!b{g!hAImO0RgHO<>3N)Hc&KXU +l1iP+67krdW*pfay%bnub|PuAL-Lw1y_E8q>poigWzN|+kcsu&7E{jfpside|@2+hyRHc7ivoF+f}ge +F)ZCm6#KiCrqk)C4Tcm= +slJfV4U0#xCW;IAJFBvUyd5P>@Z>*|V*N~T&Ze355IY_pxG1g-K)|n}CcjSaKZC9>34{6FS{PoJh4RZ +W-3#1K8LuCLj_o%h}8Uy3ZRLZDB%$n#+^MIuKq(>wS>*niar4y8OlAxPY`s)dtD`_rIokrJmmPSBnv~ +6Op!O`AvcX*G8*hgtdQYx`9sA64YWawOlLJ=xUkVq7EO_U)K4O_wYRCkG{U)SXY;gFV4Mt6-)51x8c< +_F(ooL8IK*lW#v_*^scFe96n87vU7oY1CEZo_4sa8j_jdtuc+It0E +0{r&~4dXE(%Fuo500pz8+J$%8>D3zMSnyT`8|(Mfs`ysk- +lF*~RV0-_D&+j`rd5QOskr$AA1+B4O8C8x`nr=UjUU$DFpytvRt_Sv16;V_7u$V(N{|Nrgl&da}j_rv +$&&pUqlZd4k4$hMd{lKLJQg`YnEw0EJWd1Z(F2Fn@aIBZ3Znn9pBJ4+tI9(29o&c_4I05lS90=UB=#~ +1c--|pcbb#Nd5SddvzNPh)b=_DM}qi+-a&^K5i6d!}2P^^6PeX^#KcpeR-2z|&L{9=_t$BO=hZ>4y;8br(Eg3fq}+%S8gM8lMOti%IU-(wkL!D`_l)s2aSmK_mIOLV8dgZ +Jy|;MqdQ^O>cM=6*4Ia`$A|Yq4#ImqLAVoLx*1OAQ1ZrA8p)g15Z3e92HxupO!FPrPV;+vN7FDxZhzDt5PwuRA?h4G)oySs;d6(?cG%9AHWx2FZluSu~_ikF)7DcS3Pkg)%hgg +N@&KRL2yqs>5HP0W2L-(s1!g%aJyKH<#d+`T6zmB7TOiv8jLJdZIIQDTuX#aOzO((`<=4E(RT|9_<3& +}=$gu;Y1vQ3fc_4{)9jN&gE_O9KQH0000800Wn#TmjVwjkE*+09_6M06_o%0B~t=FJE?LZe(wAFLiQk +Y-wUMFJo_RbaH88FJ*0WV{&P5bY*TYWo>g~a%pgMWo}<)Wpra`Uw3bEYh`jSYICJmS#R4o5PsLMn9Y- +ns%qNqLt(=O($tI1qNxif0Tu{?f|f?MTAA{aR9qwVf8XIDkyb8u*Dt2YxsPwg6)Lz;Of?e5a2EkwT%D +dyE-t?QIXU?_nGNCP>m<0HO#h&(H~MNan@wk5FVD^=)2mCmeCsbKf1ggiT%Juo)AjF3v>QcHMS8NDbI +ep(bFGZy2F}?!9*oQ*#~@qxTA`F|f +kz22x#bxY4L718Mol;{-j;>?ndVHfG^=Wf_61tNje4&}wp;Rs~ss1t*)G}zpLWVT2ISvAe-W1A(*s5j87w{6Y3YiGPNQ +UMv-vR4kWnw=ks$P|uOr@eM$3X&*6W6Y3(2@_bQmo2iyT`jnN1hZVFXa+*mB937#yx)K$+#c3xbB^{G)5gZIMVlFIQo##iMvNLioB +7%cv{u6nKL2SHVzQe7w8KodSG3So(rj?9+^n!cYPytgE$v8Lh2Mohs8IrWbB0BpECEGCG4;uqz_M?yD +oK#2?YgGgFH5L`g7SDb8lL|Fyp#yE9I-y4ec|o-o808VGqWbt(HN^7)&V3c}1e$J;Is5JI5R%zZE3$+l7XT?I24FlND>|07_M(xNkuInwx+FFDWEPo6H`Y| +IHE*}G9H9D)jqBpxs0zh@AdIbVuTO`-1Pd=CeiXt=il5`wCwcg4{z|@P|mcLWyr{lKy$du^Bmv9>!#5Yc +&^Z*}9&%tJizvF&Ub2CLcwGhrB<{ks9RAv8Qkn&+4YIcsrXNI=!*EUawV<-nNRj{IL(KJ34QPUa!wgY ++_5Ax*RCor4vM^wTOOVNp{dsHLcz#gbyLyMJ9vDEfnVJO{@WgK;1=-w4)ApC{*U?peEKxT>>^!6=3kf2&bf6nz9YLzh53-Mn07Kv^Dj_K0|XQR000O8 +1DB*+JidWvW*7hf;9CFyF8}}laA|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~OWo>g~a%pgMWo|EKWpra +`E^vA6Jlk^HMwajViZ19OpqGSXCzHyx-1^)aK@beC*Q-@g)?!hVqN+=oJf!)pSl0DQl=AOuS=E(Db0Ht9S(&bCnMZ@ciCD;um? +e)gf!6V0aJ~@RVqJ=9S!^mY~5m}Xn?bMly6(`4dZSv;hb6z6#@Z_A`k3 +s@;nrkR`%5QJ)SczB!E%k?yx6%U8TEQfd1c*Uc~X*>FGnibQ-ha}App>%R{4o4 +rEb?Mqsm{qN72&2#Rx3Fdk7?4bvsk3jEXlH%mKjEXAzo^hRB}+K53*PT>H%tlXw|Y+)wVCN%|)&Q4;F#=FIO>@R}u@HZK`>no-<&6$XeoQ`o0Ag09`Fy{@z0Wg;_ztb}k(kO^0+5QN2Aa*PXp;cwX@zqDMv9G`M}zBTr +XmNHLP&v4i3`6fr2sPJ*r=%p3(%GXZwWSWEoVhOM+gb6j2U3QPjzYbBy3zSlTyx4$}-u0zg{fhXNWsw! +Y9?PPthroUHl3=Mfg;)X#Wmy3d0aGwT4a5-eImN}syxRD3C39Jh-xXOp+fGE4JjiiDP2Ij{4^ugx8@< +(T#`ifeD2mk?SQ-UW0qUmh`imUZ(CaY?(&VXQQo4CuYDDH8WfEwJyEeJ5Ol8YRakfcm;7? +9HxEFdKGkRT%qp*dw_@LHqBSWJP3rpfFcX=rmkh)4vp+{(IE;wv^wn0TNjfMsD!BBsm($QjTlhxzMuN +$i%^5kdfRxIsDFB|0B5dv +A`$@Z7I2mY9mpharS8@SERSp12~;Osn)uP@2b&Y2mmf@xF^(Z>@Ef!D)S04ssUoHsb~;2;>3+-jb)+au<2H< +U=Hc)$1MY*>`lW*Rq-Gj1xUKK1_g2p1Y75L@aJ=2pwr8%Yq2WjB1>-gp}KL6?B^6E?+i!gv=r5q=>GOvRX;O_dD)6=u->zF%3kMYaq+1c +ff_~6yx?CR?BD!w^?dv^KD4LJv#gA>DjxR^UDi-_|0H2m}Lp*+E}6OtSpN%Y=}5y!p!9YxE_^49E +bD-Kb6cDqvqEGsAT|hf?_NF0ft*HVF~=x_Ic5MRVbTuDc3hxlXBuAqHm0XT|?S%%&}hEZB|nqH!Im4) +CQqleQTT7a9D@Ks6mn0f7s%=Km +p%{OsrIP1hmCeH03>(p~7&JSW4Ye$f@2cpMRAPi{oPokmWi>SUCz$>!6eQy}o&vwdE%ur<8o1k4r +bUrW42~fQa(1cLLsLetm1b$Z<>eX?p>F?yjwVRjwpn%mC0qE01ABNMT7a1D$hNVaeqRpk=UPiPy6j?0 +MYr8znJ!1Q8r>Rd><*dH-kBi>5rAC3Wi1^#>hrgN)(s{e8T&jOcBgDP-(hWaHdsuE1VW^tAMyl+Y1hr +5O_|nv3}O(PQI(YU&mV;VqO(GyMy#^{NfTv=(LB&@aTVBxF5w-$Kk$Pnmz%Il9rRYwGpGJ~aKwK@S8GRAmd<2&G%~g@?9RET)Z=FnG|mUc@`?=xBRBvs5x;5RK6_- +I7TQbhxo5BJ<7enlw31z_9SCr@M&PwdCIq8|e}Se^9Q(%mBg(Q@Yj7$U +1J``N%@U%yJwjz&$jqIfhZ`N}*Okf66$=Ak7ZBLV+~5AvZXw-^Br^$9UFIG|cjd5z=Fi67~gaI`xgVIX4EhO-(|Hm5a0vq!_lN2`w`($%lBA0<73}i4mjRE3hhQq*8}_!8CoBXmUq-+vK?@+% +7~~V6H%f-9h5*mips55HndKZt!tq)?L2Wzn&sFz2`K&)#_=kd-NQK($2Pk~cSV|miMtGgHpvr{*s5ux +yDD(T5FTsLNTJMOQ2^mMSl5g3YolZP4Yd&}RZPyXGW#CBkruP2Wk>ddcUvDvD#{7`0v7it@L`V$8$(+ +KbWTwWguxLSB&!u@JWls8B5!?DLC?{{HXnO9K~G%dZ>!r-KGk +&xA6OQ(f#w#xP#U{w7Y6;k-@@jeU@m0iALIf9dtjG~TvAQ~Ggmp~2WRP^s|#Qb#X&{h#$agoyF2s2c+ +Bt)I()P)GiIY-uKp4+S8#*_eupNr4F~=ucr>RPFr5{>=arEojYax~GZ|vVADzimR+DCPd1z?b_W4{{= +=}~fQK%a=Yw4xqoyX!g3#a!J@kn;<{RqCKxn3hu1ERDBaStgxa8K4h^yx$~n<+oHRG1dTf_gsu*|f3R +Al(K41!^r2KlN=S0_+bDSl02!5FVnPUCe_?Gb=y%Y$#FEkmj)~ip4_bR-CAaHz1;?HUlHhvz`D65Wb= +uVC(S$#XD(1BKXUrZ(e`<=RaA>&+?^V~cC?Y_VYb)(gGb`^(3BX*SFxbk<*67WfjQ +E}wlmZMGnoQ^uK`p`HW5ILVrW238DZv<0@Ts6l#3n-vmB#c`n{vKe(OBJPry(EgLUxb?+?&&XLDmceT +nJcC1vt}oZgB+xBF-7iSMX|dlM9VuYQO8ln`RD7)3!j_# +JQq>LPbrU_usab_J{cXsVN-UYAmE}6ZO;*=y=jAqS^L6eWF~-E216w}s*tQQiZ=Hzt)wZH!Hk7JNlN8Os%Ue>u`QTUSIq&0Q>h9fRe_>i +{}{2MIa#6Y!yaQYSG7Sc^>6IjCxxAo)SESd&IPw4l?ltNN+TOqQIOyFI~fr%f+)T#b+~7}>g(vtgueT*rKIa7W7v{B{f%_D^_={C$>#~%)ldpCcfB +x1(9!916^#3#R|0EfCTMQyF&}T9WyD=(Tc%Ge_H$-CZyuDk7WjFrQ=FwyDG~yhLHzjHPqpNjR$9G7yS +Re2)a%QZwk|$B(kQ2X$j$LbNI8Td5m`4uhJ(W{yEFg=5W<*?nqhOiZW;E}FjCZn52gCYd*G%-Qz;@-w +BwNc))~IKsH^=Mcs^3#F;R6*^VK=(ra*`|z)&4}D3-0|6%X>>feba4|DqSz*5iI0P7Ipw7=UkCn ++D02!bwt5aihQDyj@Rf(CLRCCC@LopD_dDWL-OSi$ZO +?^{c0o^LyCf`>qbuxRq~&L8IWPh6wuzCBwD%mT4$u{BdT4d#Dr>qvvcMaZShXZ+Ag)GQhq-iI6LDt+(B~eMR}usmShysbZt*2=5U}SM+1y! +rwcJCxb}!JIx_r&i_0I*$UToKywha9F?ye+)32?|VY$AM$R?xzMjultP=z4PwJiy5RB|iEWBCbe890! +^dCtb0qM)a+VG;}_P{Z2Mw`kpwgazJQ +Z*m6~>FW8%V+*ygS_qVtf+MKLs!RK_$M#IbH1Sn5w@d5;~+_|1~t7Kt5`QD!4R*06zf`BC3P>TFqek0 +{-$medey={~qe +-C2|eIQxZSeuCt-ZMaxHquhjLX9%O*gxIR)Hi!svfI)>RNm_T9qukPu1+Xuu5Yf+PTm3>J5l7p`z|DP +CiS4H)2D+dA8383I;DJwa;x6l+`Mb=6{^h1MEqCYB1XZ|uRkX~!9mL;5aJzvRkWbtW9vqxoI5M+P{BK +w;nFdTEUF8$sh8aTeRU6x9c#UBEEznh1cg>H4}}-|EQZsU1ZDo1mRL5D*HPe9pXjJVl5LW0#oQ!XsMX +~!Fr;d}wrN>-uExNLXoi01gFv(wj``B1j!4tBWSWWYpW@}-O_J9tc3Q1V$-p=_A_sVD9HxK=d`CK$eD +e}7eNV(!eBDwVV-fjx=`=Df;q$%99rrPHOd3BFV!msx<0*k{s|5NaxH+YM_u2G?hY}Zf{a-$n@c+8pP +7H+@e_E=%kA1&brG7k;w4dzq%#D+NgV$YwIVmTr${Sp_)5+a=tGsYdyI#gEig_Whf@W88M@@ql)k`p{ +-oiixFAT6m@NkvErv42)9K0`EAD>@ej$gn2_Fu;@zjewA_ksAJDeh6P1Tc@P=5+#$L3CT;aIvpqYwqt +(oT~fdcx}GZ+;fr-9KuJ%3j9R7imAz=aSe>Y)cC=WCVC1ZL9vY;rCQyn0t}1rjR+V<=qussB|7XOaZP4f`nr+*x;#obpku~Tmq&0d}>20 +1g#f>(WB5vf~yn}-#Y{I0g+83j=1Ps@Cmfiy)R|%|I%6VGiD>w|3T)}vNuf);O8GLUH975t(JzxTdcf +L+CdYOoRHHmHn^R=evs+vf@rhx)5Xn8E)B&4@BB!_=~{q3u7{`B(OCT0K!30jSaHRI%HDexiC%LEvy4 +j7I=Ek&Bv(^;)Y^1YH*Y2O9R7}#27+WRp68%0zRbYc4e$n*V=-nf@nyG4LB6l3YCVbB-VMIX6Wsx +8gq6y)RJnf%DD@WkVrA6D#qF?Y1Q3Fr_x|&VL+$;plfA&EbNYCel{M&AcduoM91Wi7EsCWI8dU!S*F0 +N=+_$uBMgqo(qRM`b4Hk*39ZBz7%UWNwMLCZfVr+f8+48}0SfSb$JwPo#k(%{w4CAkaP)CVDU+V&mme +8G!?190!7bDYb;N`(h>3p)vwjI*XrN0@jP&g;bH+4fjPJdMOwcVMGl*+CuyYItIACLQ|97AgZmg8+j`>% +(;A_Ox`r>Gf)tSNW)7sy5-R{YNIKDL5i!AS~K5P1?n#vn85Fu=Qa_SwD%<3G`Bayy?1hZx4-U5X(q5ha-w=^+mHhF}%JPt7+kH;}i$YGeNH*qjKM8y +zI0tjH$G7r*3q!UFW?kp+y9>{x?m0K>p +UVE3T?^#os?EDT!3oi|4_L>=(2E#WIYL?X_bVQ*If7?lZEhks%O@ +L2`}hoXT=cXwnpVOT4@&C|t}Bn2R48K9!n-aMSmBVLF(*Vh2tbIaTXx5-m`H^V&pKTt~p1QY-O +00;mBm!w?GQrl=F0RR9t0ssIp0001RX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#BZF6ICX>fF9ZZC3 +Wadl;LbS`jtb&yR<12GVW@A(yTY++qIFH}VAwTkpoiiBx0p@D3&CKI9Jk9U*ZRz*99e9S!We3=+}kkV +w%k)#CM4$g|VM>(F(8bk&vE=kjwrwj9m`JMNJ*kr9tdQH?^IASUJ??}M_ZPjWC# +?IVq8*t03%zAZ+zA-1Cq4$2dIlAx9fD!xDfwqeGqq8ZISNMcY@C2)RRqzn>sr%8uKgf|#Q~aB3H +I28>WH39H1{H^RS`}ei%!u6r0~8l#60+!)-(OkxHMBw{&LUL}OdDLM2J@OFNjC+btK{_NO{j_-lh)vr;JbN +#%UiaawoOx|>xqS-}+6u?L>G{(C##5jKkFK&|RSOZpyv*!MO +2rD3w$(q$pDnpcX6_vQuYePi{R-2Us`WqNUSdGWXFx8KcA2t4f~=?a!lL9>EoS{s2>7u}m_H};_)JUI +ail0|FBWXsg|@Ril$G!?V}mzbQKoP5)pM1OkHnq3>IBsfhYL7X+46E2h<+-YsfIa%{e{U{YE7CwH`?^ +fmdFt>&w|0XLmm40E>Gmj}|AjB28NGr%cYFbqwe`uD8k#Nm6;O|^;m8N4oqUC1!X4?G%!C5V6p0=i*M +>gD(H+4S89fACBOTj>!_)q`7H_kj_7MK;WON^J@K`U>PR%Mx63PMg{P=Nx89yP}D$x+vqJb2T&^kTU8 +fD|?hRPY&$J07@jb{taWrDSWMctdlSb%Pe0BtyeE{<9c}me@B_kKFiRgxYaVe}?rn+}i^F{FisI0BmG +2iw>t?cZi$C2<`XyFQbq#1*}|*g5fno8Bz_0LM?9V#t~@Zt1M??t9G!7f`V=Y#;Q@J)|7cW_N~}LOHw +ekE7x&`92CK71x!0@Xu5Bzx&&jWLl-Te5xu~KoV|41ymv-`xTY4pe^^HFEdiGVD-2jo!Kt*?qtQZr +TjY+l0)WJAdMsvXN2+$KQiNU($qPC=U*<$~`HXY)8sXy9{cIs8X+=kXsmZwu+muKGjq}rC;wHWNI?(n%$!MyoIz0d4A%Q(*^v6&c5(}PEI^75R}NsXN}K+v)pLcd&P3ehQuon;A0=0gS;^9fWQR9 +0CxMB?U|eTZalkAj(bU460h*l8nIa!YsvAbRk$G^IV#|rfEPLkyc_yFt;H-1XqzqufPK7TrcWlhv +QO`ay_L{=>08w9VS$rZ2iKBUY-5Svs)_<>_e-DN;eLD1P@=7p92dn2ORTV(E-CEFyRo|9+iQ}~b)S$M_* +(Bdl(Tx!Y!BIR(+MR5W~~YrFk-WMOf*{Y(`!zJo*>pd^QW|d^jYF1sPpkzIxp|#bh4eI^!_n4 +19Am;;`IRYb+S`ht*3YBVfU7_6=0mHy?COALr^X4J_?} ++WmroR>1AuysqtwV=osmXgVe962U>ct*J^OtyuRRPX;U>CK=j1RincIa*D1JR|;A&`;y|yEE;Jxcp>FW&=BSFA-2@I^-Yfqg}`kiJuA5Y}bg7?2pU{zo +TAB<5!3gWGhj!PIctx&`;!*mtL;M0sVMkgK +jIv~#;oZVFFh0ZY*fFl%O^Nf^G`o}eklJMs#oz@={1Yi+m0MHp?mf7hxxk4i0Bsk*M6yYlvW$q!zO)9 +>3BHa0`(GE_j@G{@w1xO415f*od0TD9}Q>rzypuv`ViGg_uT=CGeOGL&!AT4l;HNWQ;S9_?BaBH5AJP +FEPl9sbM}0Sd@IM#m)Jc%|LXi}^1)i}dGdt3z}qG{fBbmA-zW7ZJ7a4O(Ug?+_A&g#zvt&)eSK;>&NG +-rfwOwys*%~)1iLp>& +-oywHZNkpeu-SRd&kh_40$@xWa3_j_yd7_TY?}PHde#c&VPP>12&I%B(5CqhM9CL^n!s_;c&^dwh>6x +qu3o%xkupFQJ@c@;3>OHg$GdL?FyU(2=E(4ndPSiLSEU}-2`##RbCayM)m|Q_w#CuWI3=lj53Y}s?n(&ejMw_e*v +{(Z%0L>CqG2mc()6VPjr>}ia@V +?c*6Rq7KdmuL)?<(N$-15U0gk8<+<|Ahf7sA{1LIfPv+XbH5j=K45AvAO^<#mwgNgI1Mb;6~a5KzoGl +Dd1mI2Yj61jg@b`vSP*e?aryL@qR&9e9Yc{=v#+9du083TcV|uNs)Zm(1B-(gGP4<7gM=|iA1@Nbx!d +kzz3pYbS^d`J?zHL9|qGR@QTkvA=YgAf#Dm6RIfgcG_sNPjN|BAF5TkdtqkNov`u%{6?9CoL*=#^dMN +0$&mU&H|C8MUjs6!bYEXCaCy~KU2EGg6n)pPxbq&8K&Py3Ul!<~bQ>F#CM>_W48*q3#sODKJMM&5mXIu9>VOn$x<$uR?s$vcp|KuF2xDAIuWfgmRjdMtbsDbW(?K?+o{`pxukz5z?r-Lm||L5N*VUeO;{<%PXyvm-DG+O_W}$gU@!O6%s; +H%wQnncmnS}R+w3p`Yn7B#yUuHOn!pMAdlM?Kv>vuDbfm<$E;nyXc6NmkE2Ny_Dnyc9*SDWjkEW{<>T +m_Mw2>UcnlX7;ak<&XJfP(KZL4jG^N5W23r;ZW&35F(>>jvKvEim%E<#nkLX$Ca)ePHk6^3QQex;M(c +3~uOd-?*zq&HtnBVkBAX*~MAa|~?v*~o>3FVr4foW6M!&g{aqMe?_AKrHg6VlAJ?hkS_2u=gvX^}!AO +j1g2AjJYziYgIkX~n2~MQQ7!_ThVvX1Pu@S#4b5^bQ?N_L!p`NbZ- +S9ec8?)2;VY@}Xu2}6Fa;zI#%yr*-Z$Lxwe&=c)`ucY-_$8`nX%lc1=VYB@S^qvtLr48P0g-z~S8?5G +^<};XQ85(a&Z>s4jJspK1-lLQ!ur3{B+JHmr{2_*-G=;Wk!R6k!{>`~c5A;!WVeItsdU3-R-{-6O)%< +!Hu9_}*SFlU3MSpH15o?d{EA(C{>v0i +S>5()VWGXm1bX1Fx)<0-*Z@ehTS_Va7KgTL5``6ds?2Cr95Oo`f%t4qqI-4PPI=I)Z6Z05>+Gnh|b>~ynBCu|2h1R-^q8`#fP8I +8UA>uFFsVi5bxd|Fq(yl3RAJ-X}BhV5%oU)nXtu93pHZ<|6+?gPbYf}KAz{9??aMeDmEY=Qe99?uGtk +&lbFLiwoF7CE5@TJm#D5x=KvxYteRwrm14%utnLujr@HRY6^nBQ_CyGiEJ}-5uwuIvG6F4tIb8Bc3#kH+`D?AWYVzj)|>QRwomByX>*C*0rL>~9A^blng9!eUPjJ=79a?ysTe~%sHyGnhcM&5*&|>E5;JBhXV(I^MO$49D +aOdUk`p+SSbWviO`Z7`|f51M14cF0{ba3RVX_7Yh3(FP4r@yzUs^vGqvR6Nx&DiTVGY0-hbGysmgv{-G|M2Y +j@iBY-!^xN(fHjTAEKM?y87Ls(vj8XG(R&W>fqxN~G682*ZqNcfe@j5|h;elDJGRXg$t+-&Dni+!Olb +~I3$O~Xh3iDGQSS}H>vaM<-SWthZMoRlDb9I0JA5`KtOxHOAK(ZO@a^bJwEboQ_PM4&2`)j1v@w!mly +aq5c#=n#B7U>@1=Aw#!X`}fOR&EjG#5Y;Z8d@PR=hV5~4-hn42+Ucv;^pFg0HzXF +GO6y_1&mTDg>9H3h_;rfzdZ=$gF8k$|#V$bX!&$w6fW3JDSqbsj1V?USjQ=??m%ChE!z6#4>$fTYcLX +E+<(7GP4p7D8zsRoeKoWR>Mooaa{pQj}O+3^>4z(Ca)lPN5nsWZD|(^9qAb45Cd=x7q+quYP|L1{4oW1_8O#KH00a0yVSV3VSpeB%mR`;z`OEs +jvWH68lYOWN5QlqIn>90^!~U@cUFDsK#jRNbcao?y=dM7jM|ve~wR251*YJ*)rtJ_!VG5nk=4Rh_)!= ++SqMrJ1xCH$t%>>1iTHDVc>Cm^LC6Bj!54u{2(5vsWF})ZHG{eXiVRWtz{xEfoVT5oNp5i7WEtWu|}< +I4FS%Wc$wzP0r_C*EDTP}Vs-^bATMKK|cLS9j)LP*pk9ThHvpMT0DQ%V6)y4%OaVV#2H939nRi +UsJO;a|n!|R+a6RC9IeTJozU1QuV`QvvaP?`9&Mftb`YH>^(9PfhRat6iJcbQwVV$_`S*Q8Rt+Ct?8i +uJ8fLRX1I**8OH$gC8CT7!rLqdT~Ut26zn(iv_9LCaRD67tH;PUiS>j$H`00QH&!_vT|ZC#MNNU^s!Y +89g%fq?So4_S582*bacI5K%M3<^zng04sDbWgD!9vZ4PgmHkt5X=jl&SD4cf)R=k5DQ`qJKFr=~FKYl +{Sk!dsz)!R;GHj6`ZX*MtZh>XLg19j1on=DjzgRn-0Eiux%}MK+8e~zq_wHG;PiqF +z9;n4!9+x|7u(L4Ct;5s$u`obnpZ{t}kr_rI_B@WpD8`by +C~Br!f%FU5XpkQbl=C8q$sP?MBLC8Pvs_7;MPIGwLX%{y^k@_j60w$){Z=JyOXP;1*22Fia?GF$C_njO=iZtgjDKn_ngziOHRjHwj{oev4GVr +ib1!aw50Qgf+VW_phGkermilBYkL5Z)32TvYsua#~qz`uM6gdz(R#xc`xwQbIzHSeY~3%hFPn4)z!=_ +1^MJ#^1W(U6AEM_pTkjA|qD!kh>O_Mv?$;vA+K&7+RG162o7=Vt +h&Y!89hi|GPM+Pzdj7YYjIcfvXoNSrJ(90S*zXJANk51+73OE**tk(czFMEpYC6J#8RxQ5_^hTwZ=w0 +Os>&3kPKe$^hd3w(SW;XosO*AE}Y_@o>njU-R8S4E82+NL*q0D4?1vUeAl$Lw_d04K+JipH#9 +k2%sIG#(oNVfuz22wj``uJenH;$SH>rHLN?X@X-onzUkK&`iHiI-@TGH$lgB7~VXQ-dz!r_IOV)T%eB +YTJp^A#A=e*#cx{8xHcx@XF1Bv6O#rWe%d#yGlK)uGgq)MLO*Y_XZuU<8~BafjEJjAJUUNGWT}|Jfy` +##(X!QN>1m0P)h>@6aWAK2mk|@q+Ee!N;UZd0071d001HY003}la4%nWWo~3|axZmqY;0*_GcRa#bZ{ +~+aB^>AWiD`el~zq}+c*%t>sJu&p*G-pfgBBVfhG;M!7g@#Alr*!2(&b^h{&W%Qg)4Y|NG92X^Hx9o9 +YsW96rvxc{7~Cnw?0~qV~0gG!<&MH`WWOweiv`qg|4OHD6kgxzgJtNwP{hC(=*P&yP2c)@+g}xU!QTi!}v;VWswzsFQeSFK1)D^<52lj8oLm`xZi!O77Iv`-c7EsSxShX!t%t +v`z3{I;em}AH&_8y<{7r@xMV*p<>*n9COobIhPc6fTAG7hAp%cq_&$BsrMT#^ta@}c0wH^J1J$(R!lL +0W9UV(>;dwbinU0C0`=EquXSJUSKJW5w{+o=Tjsm8RcY3(iFV#$e_>!n$@&bs9w{K^7`NUwYzZ*W1uL#nrS#2cFyE1)|e%$9v;kxOz|jxw +Q0tf3u7m<@pgAJ{CV{Q?FMfH^PfKbN#OaN2%oEM#l^$R}*7ofq9c#iIr5)+w0^GLa}sd#QxL`i1JR}B +XEATJ^ZklG4N#(RR>~j$k9T1*tzK}8Zc5$<+Xw77lV6ZS#Wf8s|a)2Ya9_zIAR<&lXC*D*zg|4mddK)p? +Sq@OnUBxNqEw80GHRv|4>T<1QY-O00;mBm!w<-!^_Z~0RRB$0{{Rd0001RX>c!Jc4cm4Z*nhna%^mAV +lyvwbZKlaUtei%X>?y-E^v8mlfiDnFbsz8eTs-(HmTyW^A3zL4Glp>*|(vWD3Mx2!gpGppDh*#QZsQ9-I?07Y$ULI9u +5cvUIu4pWthx}0gIstU6Pg(P8MfRK~Y8grjb_+6v1AvJwpCh)eHy)3qI8zi&m)xwiBW+gu&9FXTora! +@GR~|>z3JsZ5W>mz|CFt8G@PaY2zsh~Y+&5b#Ye=@6-DbX7rE$xaDI}kpWU)@uRY%-nt}2T^wu`wjNE +QlFeIaQQmFF2Dw+J;!DfW+z3&S4Qw~{A>tl8;oFxR+g?c{FhEbD{@oQZ2NDm$V(fW48T&Hnnw$*I1aj?YpzRbw;9Cx%Ycwox +jSb5G)&}+8CpQxN7ZO1M42DXm(mJa{K7+w7tljb@60#Hi>1QY-O00;m +Bm!w>M%N&Ep1^@tD5dZ)t0001RX>c!Jc4cm4Z*nhna%^mAVlyvwbZKlaV{dM5Wn*+{Z*DGdd8JreZ`( +E$e)q2+oQKGPtMsy^gMbc5Q+GAmCPw277>YoqCCcVPivmg6HMaftox_VRwmWQC9->I(xqbZ3g(;NWkT +fl7Q!AFHgl{UT454Ky4K-YrdNA*G@k0rQ +-RI@rF#Y)W2w@aq*($vGFuD0Sz5OK_5cu(7q)Vz2tOq!ghu4q&txg3NC-J2GeJ!u)#jP5SjG#USx<(;p?!W~a3lcdT-A)A?`uZ7j%nhp!C~b@uVpQAvV= +WCYL>@VM^aHmH^jM8%Vsf45pv6eSjV79}N{U=X1F{r*vT&+X> +FBqJLCsys2+ebjU#K7(nIpV3IA+$=kR5E;twQ-?fhK?4C(LdWGWCrxN2Mud3ZYr#T3lH}NvH8LbQ)I`504f-}JCrQhQ_M?bZpN&RC4*E3N* +N#q=yrVahYq%<1!PXg5U^0!RV5%n#;DWkSP8iVx&muxElgt-ys!#gXh6p0o+JoX;<+EMnDIhhW?}V#k +s51(HGk13iE{y?Fl19hwn6EjjyOaX#KG&Jbp=wYZtM^o<_)15q@3nJ=>WxsJ_WQprN%0|E(z*KL+9rN +G}|Kk9MWD0Z6)sR(FAyJ-+XXwL9&0eE&@ZnaTj-C*J3yxW%Q1lbu|1s967QENs#fI6t7_Yap(eNN_oO +ND`(`PVa=8bD8{y+Q6c1x<>`v@w4fU<_R%QRHVD_SZ#FzQ8T5>og(QL*?N!!@y+DTV)(k`xM!S>hiJ- +SwOMbBRMzKt)T#sFKY2E;_r8MiL&UBb5>Mx9N)${C$7c2~1X>eS&QP9$&jdzJ(Kq0jH-X1;Mmm?jw91AM}6&>)7hTq^51#KkPmIAVZ+BEmu}B^3Tz +s;)8y5S`XHjsK0Y`1Z$XLB27mJ;Jt-Jcmgg$k$rSC*;N4Su2AcopbN*yuHB^T^(z7|*%#KE@z3l0;S9cHu#BN}!~UQ=pHpUgP5Lz +QsD^C@OF!%5Q5mofP_qlz0*T95#|kR^CzKMg8)nJF3iYdHxz=>mr(Tu8WZ2`cR +;u;MOQnm+$_R#d)rbVS4-;h-N880$$BR??-w!EP=)igFxWH@sxc1;-6`hy^g~5RPs%##B1Fyj+2w^%838=F;C1n`c!Eae +4LP#R;ipz0z>A!?0tiR+n7snqB?))2o-S|6@<=lj`b3xwlQh_x0za{)WyuA}tQ9^(6d@qVGrrw}Re@A +7p+g#vQr_LqOO-c&zpfZ-+_p0*c(@6aWAK2mk|@q+GbLtW4qo004Xh001EX003}la4%nWWo~3| +axZmqY;0*_GcR>?X>2cWa&LHfE^v8$Q_F7KFc7@!D;CP3HlXMO47eA;ZGsk#ktm0r2-aR%1Y}a>qppE +|e3z?-nMb1wh2`w-%%fI9WYdXQQhFTFC_W!V_>mtN^(mNhY@47QuV&$c5_GXl!`$8I +C4yG`}&e*1Nm0ewSCxi?zlK31Jlch>y5R7N+73TFpw;EE9ze+6aHiPrmG_&^ukg6s7$O%R1uYz}{6Yc +#@|k0L?rx$-J)^B(ws&MVDwh1<7y!WB4gUqhF0`x$;3(+#5XJm>Qf$vf?!wgDm9&|;zjCKco<+|~6Cs +)y}%Q`LmCCLCMFGu<-ddaGVqd4lK1?}<*niC+wxCQV9mQk^dxn9~^nLo`^HJWQu2T_>sK5pCID(xTCc +cO05a)>OreCmumU(1FI^Xs0oa)rmksj6inO+CgLNS=z(g^Q|4QUPB(`JT$aFP3jhF?9{>O&0001RX>c!Jc4cm4Z*nhna%^mAVlyvwbZKlaa%FLKWpi{ca +Cxm+ZFAeW5&o`Ufzlr+UL_`(WHKGi_!`AlE}rvQnzPdO>hVwz30XLigpLHQD5?K@cNgHRBsXcR$wVTt +yIAbYvy1gAQwa-#RiTSa1Ob!DR%M#;G*y~wsnWdHv+txTf93nU{Hga_nLhMZC}zoX@%BwAV)^!sNJA9 +~vnbLcDVHYjyJueezW5x9E$vh;e@Zj4lWD}4v3Red{Upm&X2}aJ-MhvccyfqhHhzCSu`h3d4$SgJq`A=jJBOQ1h27K{FlP-L +;&*{taooze_jVc4<QA#as)g*VEbF*d3e#f#N^HalyNROjnBic+UE-2kg} +w&(Ku<301PqM2?iDlfL9SLf-^M3Q9ylqM{-e0lj8tELDH-5&Q7wz +mW$lgM{^y;m;*7!4+V}Rno4!tnO;0h=rKa8)gCztcd^>rVE-=1EpjYz?SFM+y2GBWXb*JZs2((XH-WB +@z8e?PtaEtpMjujW_N8=$sH@hJtf-pN!C4*2ge3;wkTjN|)Xcq5sfI`zUW@cWuSe{qYjYzLJO|H%_(;K)5?q$z +)*$Ku^5{{(bFLwGn1WQ#z_F;R)e2__=0{+XXvn7{CP3Gxd8#r6T}206-)R=1Qs>=6g3+mwgHd9C?iln#q3|~Mx_F_!mk0*n1l|>gs +uoJmX2zjumcPtpHu;Ss@5(BZv_aMFi;ncgE?A}miuFvr#XUZj=AJEVb=9YRZNgbY$0)BM=9v|m7MpP(y?TH0a+| +EqFpSO^b&-_#^qDETH%{5Bo(;b!xHnNA?KgDhBrKmSl`MhVbw>Zt2xQ|vpu91o)sPhd+h_#SCV-Apfb +=V$*I<1MnioR(EydBbe9<`ZAUZ}t4zbVz{+Z2!5EG8-DT!dO>|KgcK{yG36~y4y!UFOUQ5EWIELuZ>~ +|$okhR=n*-3a!c5B2EA-D^R1OfsC^P_~_+s@N8u$aLLKA^sJ6=i!>upLJ%&I^DPo>$DymW($nv +N)E@*DqfBZ=KeTjdZFbOU1yF3#35&!kto{h!K{modUO6TcLMch&uM*o*8 +keuQFphz1ro=sh(7(xQ;OvNLp??Zai$=%6ko@`@~L{GlYuxTAGV-;>jBW8TkYj+k~x%Gob$U8WY?Jca ++YQilXS@-R0>RbI5me=rej#>{I@pSII=Q`o(i&y?j$Ey?QjD2mukvn2;1CR#Ht)mRrY8md+H*3{FFjB +3fL8n>7ty%KER0WOn|Km7VNK?Q6KN>Ax{;tpA4$i<{;Yfu@qge)4DJZ%&|rT%aC`)eF1 +y#*r`dWQm(uAJD{5<=!xkJZ)DhDw?R5-!DnZSL9c0wB75lNmSFzXeMeI%;VNNCB7zoq{X=XOb=(lXMg +5btv|5{xT`?WmZzHwtL;KNt0=lPMKSKgCT$?+;xPNPz#&=J7-HnqC4zgxKzNLAaqiBHDdB}Q3eX9Di! +X~|(*LTIall?1t4l}kL1ISDqSqq5~6r~3he^$|OEGcXO7X{=7Kx0@`$SI){Ev8yht;(#Rz+HKSb8x^| +QZXsc`sjE|LKXx()gxd)h3Ml4NPx{g&4IViQMW(q-t6(rEm}N5InT+?Q9m4=A+xkpI5<&?2ery5ZEEzPx?Ph__ +P+8&wm~j}(jbLi|J6_=^SnUV~?t?;X+UyX;ltq<E@ZsAs_$o-P$Q#i +}$7&R?(%=Ks%X=nPD`^$Wsc6Oawo|+^4#|3a2-k*8I_?3z4p&ZiVt8^A-D)xw@y@3vk}>ljgym7|gqXDOkl*%=r`|AvFcBigN;>ZD158w +r|q?6-JR(&9m6gK7vO;W7h``--czi=SHimjkGab&+oJaT?j-iC7HD5wz@fE(pg4ob{Ukj7 +;q=z`FgsKB6TzyZBH!Ly}b8I#k#e2z~4<`oN|VVJ)6!5B8i9YUm0t6_SvNBXO~)J6 +S8N0s+Bm=^jLAMh#qmIG8`bpkp#6bmr1IzDv%Z?bg+O>MrrjC~2HuI=!blmeIbloLC8AFK3T?at1~?# +wO~rR85zl@+Q8+N5}1SNxc^qarx$;qbF^T-3m=dJk@}p`F32DyN+jQc6l3jM;$+)U)6=f +6AT?1$gzf=ov6PW497=6fcYV|MBaCIAHTa}N~0TCt;)`I23ISPO{K1*GD(05p3?q+b~X!&Q|sY00jNA2G8&#*WOz*&aha%_Dh3HTC4f#zBmE +7j(LeU3(>0!xr~Rko|V))tG2UjMNG`a@V#nEwcCt?R`I=rbOV{rB4n^Lq=s3SET;1Z?CM6_m2Zc`ffT +S`#b;%xvWC7L=4|cs1bh=eEMfhE7AyKC<4e|KZI3V0aS3fIDep;L|%oGM4C(3UXl)uJ^9e>NOM^tvYp +J(ZOBVeU}Z8ez}AzYdeIK@4tJ~zc)x{t2n0Y;DfijeTxf_8>J0?QF<=aejYZ@KsaaS#HmzReDzS_9N? +T5&fLtpl2;V@dNi9?$teVG%UI +{mV+n}?QPK|=I(2C-!L}yvhFu`n-!R77k^{;4KQaDbZq@Zj$f{$9^BO3lg-bP5$)@M<7Vb5gzn-c39S ++)f_G!23F)e&NdbugaBiX$*IZdLh;T(zMjC*jd9Qjf?u#Sdt$*r2aPPUW~3&pptf80#7$3{+x^utq9P ++vPdIlwDo#fxU4}viZd~XGBi+sB-Ed6g-g~+mY`he3%9;wIq@t#6XjWSl6Evq3*PyoarYPWHaiD7?AGNdKv^YY5GBgAF`BmM+2+hH<=ELG{m~>cMf8j#DpW> +fbqCt29x#PAu(^AnGRr|qAA)WrXuB@B^o6SAHLuWeS4xITI~JWmWbnKk@%^oIv-ROAWu`jl2AQ?7FA) +BJHHitEL1T*wAf874JohaKrd@I8WsM6;EVLYathIFoZra2t3@yA8^q9#?BeWfBVE<4vs^c4u^jtv$@9 +~my?OO2F><51dP2MP$6e~W);mr#2C|4d=g-||(kA}!Wg)MHY)C_vO^DZELsO6hM8uh4jWhI%x2d6n^C +Y_74UxOXBU#dHAT3f$UGpO~4m@rwiRC4H=>-(t^^ZIU!z(5|Ni`Y{HTs}490{_BcfrXsU#jQ@n2-Fte_0(NGs!E@8 +}xjYt0gP)h>@6aWAK2mk|@q+B^*vOmQY001LP001EX003}la4%nWWo~3|axZmqY;0*_GcR>?X>2cYWp +r|RE^v9hJZp0s$C2OhE9R(68IZvhB-u%f3*yieWU(TPDiV$_rPBdRU_frT*v0LG56imWe*KvD&QglYI +hKk9c4m5d`rSRf+E(RGESKB1X)C#0ifp$pt45?nQ8sCll|?-msAqDQX1V^7mzS4WajCynX|XAH=9|=? +nrvr3-|un77I(}VSv6&u*LuSyy_UCESuS}T=1McRsM58(NY~d3csk$-Nh0soa!(lQdBcH#pX0J9FJG0(aWmB%p+<$cEPB{YzUGQhJ-UBjHJsK%I+a}9}p-Y +u!H5?(^DrzK)zrUR?k6+D?|9bM~`zZm^1c2eCylZ4pyN5iN`F3FECCQr43v>2BP(AI~JbepK-T9TmQ_ +uV^t>vr5;;qJiFaX|)ndWeEDVx{uQC7p{vPgFzB%{G#@JPH!n^e?I)vi%=#I~&9e0zW{iw4$-=1Pj4Y +|;(RE4MKCKdr2r8U|7%Mcw9&$O@6dXJA1xSm$Y70~u-BtE_Iy>VBxm^aeKGEZTi8M@%Gud{u6yh=BM- +yeSJwkJ~EmJd?EuR$)B;7uqAm#<&=s~x3vnSuoo;1*53t +)>Zq#lFCH*;Ui*VGWAl4{4F25GhDA^>^fKq2zK#%Mv9o!-MbVi-WN^z=!qp$rE{(?m!Me?srcPM +vUTVCHAs9R7=DVED4ajyaCo{8(EVqx@X7lc>2+2AOBb2Hr7;|G0mP%Mx!{3vO2xUfkzkjVh@6a+Ot}{ +O!Hcw4hIPFmTcju9MlX$|& +=7_v@VI=TUBP#~+R<$JnMt8_;i+klVCr-lX#{3?oecOfgbIJ|LFiZsv5+e9qD%hUpl)LL$2v6dtvqJ- +TmAa7eVbz(_+E^!Co1SkaO-KT=Df(5K)b)#J}{;*)&0?fK@cT!w|@q&0n06WnU0cc#zs}R(_D%T)w?oR(a +wNYY-u^4-F$%SSvLMse#Ji5?CMTicK6n&6Xibm6hu(Jn=(TS0OJL+$<`9P&lz%&UA_MtZ2WI2k(Wg`Av1@uLxWw;hFO(tU7{x{?AR3wi8g5igciH7tWBt!>p +sNJ%U!<-0bFzh{zd@e +qtl3&tH_Go$7PpoE|U2U?IjDS^!f4m^a^s6oCCcK|JefXSvWWPOO)kdp{HqXfACSpuTyK?92>p|HtO0>_kM3Mo +J}T~Vx*yqLc{`tkK*dGz}A=}+?)%OB>8SEnz|Bl?!wIE3;6Pe)L5kVw6R4>fw~SlXIt4_Ya~w=&^f3l +kEafat7^7+_)XGY~11iHsr#Om!WNQ7ok?aHK#YRx1MxMT{3JtMA$@z5GE-<%$EzIs7xBHZe+*)Ti4vF +X6x#%9Y#ga+|Ip5p@ZsMg)%#bM|QRFJyBoWubGt+OZe41Yv{oRQCqXa9093+<-vVWqyMc+d;02#6y_( +=;+L9Lc46i!WlRlh|umqwp2*YF>{?uxkpY-rV#~KCelALICG^;PI36NtV%_5#sof4C1XQLPKXp2kCL{?Fm@PD#uiNm{4uuwOQ5~VX2x2|e5T>HljJ +F40&JOX+hVO1kI-5Xu`FawH1TedOu$!8l4tb$EBgIM_?;xld&6f%okYATjZ6^r<&6{kgZs$K;*tab(m +g}6U3%9itQwdruS0dDn$5vv@mVP=B$5i}uCDBnD0=dbN4%;&8`{msgBw-EaXJ}s#9>||xB@-<3a +Qe35>Wvqcbu&`dSoUGh@9vP@m+~R>by4OVV#qwLz-FWcRg}tDScNIF-t(4^>$(X(Lt(Q@IzR_|n|uJJ +l&Qg#uGi4;G005ma0?x~!*^L&diuw0u#hFLxWqNZphJIQ$8OCfB&q0<$w_V63hSqaS1BdWAa6jIDH>2 +n%vrj#Vhx!U_^(w$z!76*GZA=MZ5#o0wyQuDCFV(GLECuRf8IAnHlI- +E~it4YHXG%m_rf53Xm=2G~eDZW*oS1S-wyb3Ud7kxbzBv2)^62GaezrVc94&r4Uml;nn4hnZ`w$lOx= +K#*6_&N9O^#27gH!ontMIFx>Hybo-6#>wj}LolZoi>Ap$PXu>O<=e@Rc^uvGnTkn% +7e+7iZ{jrC`)R}BUmD&qHTJY?b;n$LIc0c5wLqN*kBQaXjtPi;fJIDTsffvL@W`Q0@U4@O7b5Z?C3&J +j#(wgYdC7a(X2#QVwnh!rW!#L`%#!DuvSWDzAyafiOR$bS^KjD7B)k(^}B;t^P?A7VpEm2w?ERK7xUN +i#T-AKzFnN0zB$K_i?gHS`N4ZyJnEq7M_nPVT@%E$#2!KSuzmN{Q^<JS +j?Z2rUP-{wms#{BGjdHM#Pyf`_VA20goc3hU%nMAT2wLtzV`+Kn +lRz%#L^S{a$Ai5s0|LLQ2M-uVH93a@(^+#5>tVASu(BZT!55@4M9{@$Tbzm4mXm@^lL3(3UAE%3@HXt +O?b=XE1-_-CTY)Kj;FvDC#MRCo_;d*= +xi1Md4h~EkUE$_>j&Wp%y6fs?3~2vlsS|0h_kBU$X^-gH!KXE_|t>Ta~5c0d@``!nF-&*(|J-thxDEV +(<4OdJnLCvI37Ilr|TqTX492QgoNu?R60Q4U%LFIf}D})z{$;Kd{c +Pkheo}cjEEm>sw<|Ah0Dx#WoEq>=ch9c_H8ruqOSOSxp{$qxzoRRp)V_L+NH_)HxheHxHh&_;Z-gGe= +weaZ>Y{)qH<6(1}@0bz=Kj^_xZY)L-N4(k!BI@%f-4vryqe3V8}Oi|O6?Vbe5=D__qlm)yZae}&SpnX +7mq?tQ{N`-BdKaQbv|_6dcKQ=K(s7E!0MqjiC9B;4&XyuNiiLa0cCcO0Z@qv7MnJbQ#8Euxwn|>go>Us~r^@1HTA5Lo#{yV +i|9=|OPSk36qZrbCc#u#L&$791o&bfG3y>KWwX@6j~OWoFaoB4&|~dOU>9VO#7bmtYx?J?7+09f2urAG#nMl}Tv+DwBk_|Iw< ++IE>Z>lk6GOX3t@s?k+Z|f +C%``_$SkJrzI8n0IaIzX6RbO(Z~Zl8gxH_NcQ0RC&)pgGC8qC*8Jm?eHIP$%>7BvK8NDz$ipWVW&9hZ +2R=If=3mbAEeZdDAm?!mR4AJyA470rc&oC@iebkc`Wub(RS(KA*jn&Uj@efMkMo53B4c8$su-b!f>d5 +*4LFo^4brQd(x?+S$z%gDMs@k*s@dgFs_ps@&z?^n)v6QedGajz$~R{T)nbO#!GHf({rKJF@SFEv!iR +r9@GuN4k1l%7(EJYFd1ji7$6m6316^eeK+h)?!nVlfio$-QWdbN +4Cx2n<}FDdc@2A9L<&bm>!!u2$e=x;5=g-FCOqv*OS33O=66(B~^PAwI-zfCn@g7oDs}H?#}5d+`Z +^Ft?Pcr83>c==%6baeSw#%PN*+xv06D|iPxqYjUesE0FQ6rsaacf(ChLvo?BmX;qBzfmfKQPWU5{}z& +;=ngo50^&x9$E3sH(t5iH(HEB_3A2u- +Vawr{0fVcU-JkA+L5SbRxfQgFvm4Yz~HmljIu>P?0VrPpYhVw +d4oDvi-)X2+JT!M5IUWcHS2TsH`qTOSs$42gDv7uvatvsk+h;`m>?0sKfbvKZtXl)pkmp>=e!U)kh3U +XFNr$;?6`VAerD65kVquWXD>OHWfe)L}0}*R-8b*ja+;EBl(&)=9WV-OiP^?ILJ3 +RQ8;22rB5&8ZP(_eHN}<=ylV!nhpCL;s88OwgBOi-OnLZ0ytoqFmuT7TTz`<`wNhiGw!dd +IDxuCpD%}JDxGrz|)nnZHVaM2+ABb~jd>A`RUz3DeGjR3H^ljPbuA?7E;KH!WxNV$wjlK;`CZNf0|A4 +~zcZ_%5H!S_!A-dgSN#E6g8H-*En9=U7fHM>;2bTY}0i|D2Rs@2R=<;X_(42=3Mxs0cpQ2lr>#(mo?XM>R`Ry>`JIxi!dB_U&0A-0wkiZ@55S0 +jkU(^OGWrYgf<=Sx(_z3bqu>fXNQs1w#{?*eZDCl6v>6eS4k42M@+NcK-RhOH<#>a_4phfZjZzZ=VeR +kG*prDAy=0WX^Wry-G>md_1V_80qBc_AVsI)!MTGWmOkSTqj{H%y4sq7Htn?X7>mw(3QlL8FMQVssI-V@-V^}rFwnLu?<2GkwMKO?A#HfdQDjdFP|O^d=QLx +7iYJ4+H0MD^o*{&s$R@=_z6@Rh +ooT+9MoM;*YQ=BRC`^7^a34AOw$|3qQJk1%_Ln=bU7wb>fmnYtc%_CQNge>c(tjYtpoAU +UjxH6cZE4&5cwX^`>nKg@9xFS+X^&S^~=%Q{0X+KxyJNl=1o19A%93sOUh;}v%p#IKx#AF@&%XFw{l#d?oeH#@Ip(O7Ihi51eH;J3p5@Z!xRCZt!-c+7Y!5!zcAP~2hd>{PEG-{w +?DuhO1m%MpzQOZ@03ylE2NTDAbQ(B5cmdo;E#~SufB85%aJfEsL~jOO=yn;u0bUG2m9m>OS1)bvAsW7 +UntTJ2;JvzH{-c}cqrv|HP)h>@6aWAK2mk|@q+D$L&maRB007xd001BW003}la4%nWWo~3|axZmqY;0 +*_GcR>?X>2cZb8KHOaCz-KYjfL1lHd6&rsxkM%M>h$wi9z#xnpQL=0>7;k{l=NazP+C6tMyUEC!UsO7 +h>YyXS!!0Hox)y{fINV=5K_%=Gm1^t&5e=INUG{&G`na_;*qT4!lqupmj&A}FFX5v`WGw+h56j^^fa9 +fbOOD)cvzhIhO$S6lO-*k)03tFIn{Jb_EmTH^ZiC<#OuMSAs3vf__%wA{AjbI;?CA^Mt{2woeqw(4J>dK$YetGK;-@m{7yMHG+rNr9b*O9{uc(F3!&{rv7wzK87J5f>`j@4GW4{)z00B$nJxhg%<}s%uWXnwwA}Lvxr;AMp#{iQfp=RLbK7RN#9r@?O87%*Mi@`@i9vZ}jJ=R_?-n6?t)_Hvd7h)A0)79J8^6KQx+jh6x`m@z) +E%=i8k?`kP>c8&4IXUr{(Ia1UXcait7*0QteCj8`nh%ID^z@$R0&hpjG99owW#y=Bn{EB4hO$3sZ@pH +R9sa=PX&Mh`a=YEWzd>G#=^1ec#0;Kv4o8N4H6u^Dk+}^PoucuLOt +3dvFaiI(ZA-b?}cg_tz0X0ztMH{W3WDS`LfCJgp9}o-52d4mdy>Fn-r1Mw1X=BmFM2kUj7RIq>+Xt9B +q@bFj*{tV0ACNBn_s}IT*i +fMSo(EfYa&*$~k>J4ocp&&fV?aaBqIu5Isw{&jMum{`fAFwiA6yP)g>6KJtxG@3dg +Y)NzU$%+kSN)@t*OErUS9AnssZi7tMUWQ)SM9Vf;2GlA?kWs^eG*Z8;`DgO6wJQlx0B6O{TS +^*K(!WB8A$Y`Kv^lkX5s;(P$!)=9Iv~>CJ&f_m1P2tnWT6vi=A1081#PR71QAaZ^f2SO;>oQ;uP#+TRN{$2a;C!_0*Sq+#HoZ$GBG +*Y)zRAMtnfg8rfl=Ou3(B!}5n880^d*HQtU#oN6!HrX@6M;HGJXHz{hP9N-M+72L8~`ai?N$2MXIH-- +pjtS9Z@(z<{Pm#aqjYIibbW#2^yL72zpyYq=2vw4!2K%nt<=@z4y=NEPR9lo9(2=xXuU~(zK9!-wo@} +`KzaCvj8$$?k^jFwO)kgpd*=2YFS{IcG4rPv_-J+sjy>$9`sjKx`gwe9-zAq^Z++(jfBNbC$MI$P+$M +1IU4L{o8BeXX0Mz8eZ$9a$tLsZ(t}1r0;QdL{&3<{a^bE^;<1tH2zRmkpaTKuY0$o~kG +}&Al7p2k_T=Ktrqz};nXPx<`U>855LyBH8xhWM@t$o3L!5zXw;(VK5@;_ob2%$Y!8GEFRodJ$wcAnJz +P1xcNn5D~0ewuVt>JkhmeJHtOA!WE*@#t*M`l~#O=Loflk}WnxJvN6>B*^)46ElpO(8`7Z1|#tT<)HM +9fDP5uoUhY+X^>@RgLLEpTSLGLVQ?)T!C8nj?v3KqHUPdq28NYieCz8;+cE{HBFzPU_GsBJj+iXlMl^ +rNyMMO3UoBB`fL0`)&~yfL&6P})upx|yfaf{oLUwuF_<<-7ByhvO$+Yg%>I#DiO_R&ZAhoKg8G1A)s1 +EkP>p^fK!mkztsnBWi>u;S)YLQ7#>gbzSCcRu@{p{KMwK80ud@G>R*ud=Lx6houPlYSRTpK6NmfG|)* +3n5U$FIUHmUIU{CBVR6+Pi!&kh1xug^x_O +hW?Jote_ga1z||+X)>k3WikzOig5%=#EPp_=3|&$CaF5!KA$AY~SQNld9z=qhBx$ETP3`@W62#4CoabI!nQ5 +Csr}mYX^DGWR-f0g|KeoGGoIdcpBh``2C;BQWd5Rgqjy1Wf5p~C*c?At@XCZfDziiud18POdeGo?rld +k;TTJKL4j$-N(Q=ov6y@&^zx8tB<5HvHMqNbx*m+g;Ew$(K{Y?B1{5Wl0BKvcJhY|wY``Lk`{8~^DuX +9=1~o`euTLEual65(ar{>fitDh|D#YNo3cP_d8v~ +g?OA;DZro__@Aqp9ScgYj!XBMBtEdt9~0QpJ0mIf*!VF6*#qLVT{h^kTNu>--9o{GeRsNlwhwFylkUm +6NaK5OMsaY?|0y~khOiI_%Yc{x)DIrnA4cPp;jF87E+r(XT!Q>|gS;T~^AO_0q>wVMMS#jwI^#;>GgN +@+3K1Nf{*VWmFH0?k!CtL7cw7q=Kd)r0CLJDm;@|)Tn;7T>YYt!o!Qci1M<@EakwYh1IR;u4MWjmr5k +OUYWw;3WjUajWU89fk3)fQV0S2_rjds3(H$k1TU_Q_JeI&h48rr!^**4wKu0g+rKt*yu7X(X1hjKdrtJ{1qiu56fL&1HO|Mf +!|l1ruQWY#71=_pQBLYw496ME-}R910!Lx?gEUO^6A({sdP9VO9vvwjjA8XG)5YwSH~ZJ+YXjf05IP+ +yj*3d3;Mt-SEO-XWHYg~9ms%fbbkK142VRv{Rqk+TrXCtn0b&?}NqYusEIjr}$bC~ +*wT!wCz{i4#cwWjl$-+5jq`c~AR2a`iLq7c9LIXcj@NsfgFI`AuCAjoAl5IhC+m!4i9A{Ep#XBGVIyw +Jz?q7YH%`Psl$L|kx=~x)kjvvifbsChazzqJp;&MeSS^aYZ%q!gnEB+uc#IJ~iwirk^4W7%5v% +JU3D(b_A4Ifl~4LD8NLww99BvnsG@t*s^7L{B08FL@Z4+#|3^iE9$27I67JJT8rwJu3sLGlg>l6SAf*v`GU=#0>l)e~Qg +OlPP<}zGGz6h^y7HKG)PlybVS7p{+x6*BN3aB#@L{^C4 +mI9M(BgkHZKF)>m?wXIH0?-PXi6vq9E7-2bev}R!2zwOL5&)FiM94*G@RQ((E3of4&*adGFC(283dJ4 +oVBi#_>kftkU-yT4_@zPKTt1ijcMrQah@2$>%I#+NC*E7{$YYbIe9m^S1`pS~P4n&PdxZgv`z$w69}J +#xco*|~9-p4{nt0-cTOp{r#Fhm+Qq6in{19vfq1>Q|by7n$ww6Yu)1${#b(_)(#lm1=U{2{Zka`_ZvDP*wBX%|6E@80a;{(Evi9=cgnFfrgVh09Q)p* +0c`>o0gtj#cR_pnyzV+uS|u{s?)|)5Q%YD`jAvTHpf+qmUVAa?+6I$tA`!+w^peyRwZC0dQY`~u7j;? +5lK?Z4`DL#4FR8l!ZSS%mWc&5-(5hxa^XJo0#s +4794}=RgkZ-(u_|Q0cMTUji>?t1UT5a`e)I(@|Y_{iAo?-K$$Mj5Sxw8d?fZb2JKJDU&_6NJ(Tcz@z^22y>&Bf2 +KWBU>89hMd_NeIS}U|T43*b0!o{>3dj}2=-S?{i0LFGI>RK)w;6W(+diS}4ZwgUkHj73dDAc=g-PCeR +DdC%s8_9E&5f3JOr?ZArxze7^)1xmcy-4?&BCEVv;tJvO+p#xwQSAnS%Y-Qp!wMjo$5^OJasvHk~r}U +iIqy@DKRx^ye=M=*j)y;pd$4f%D~drz!4L6CR?^mTzU8n5wV8WcfKy5Nc~WP-R(@ +2qjs{@zn~qIJ()oT5xDk +?$jl*ehXpt2GAy;dbu)r;W!K)ny>$v@KO!Wx8;TjKFNudE?G^}MOZR1OHJ;8(37ndj2X8uB8&pb1yV3R+QN9ZxP|io*djP$;lRO#>7Wj3sR1Vc`9%gJ23$WBa{2AzC;aOCm+xms%=c^uU +7r(CPC?>>&>ZovVgR?Q{N#ZBW#=6{VAYEEGJ#uDezFSwj2iZnd{D!^ff33 +vdpMy1&~8>J2RHBn>4fKU0|C)hk6|2}mM5VtGSx6$viEG-^eh~D4)P`)X^}=IA9P$o6%X}pD%{&*%u? +};2iQ0zEA!3q(oK&Iu&1h8z4uVh$#uh35GATO*gV!ssmR(?^Ds+TZYt&f3S$~O{u#G(HJzXzZoU7G6y +Un^&A45YAkCtyQsJ=ZVDiAay3QbLXWya +i+5EFIns^PxC-V3lGl;@hmsv-R(L#Sg|e6d$HY~=Kk5K$_EkTmDA2(wY|k^&Lk%o#+PVwG;gI&0e@>cJw~T?L|&86kv?#Xuz6PPrR)ij0QC0Hrb)k0W(o_5%l2fQa*Rlq}K* +Q9CKGzDUO;x{U00m2d%cp#t#Z&eBJHchb<&A~24sZO$}xmx&TM%2hZZB^$d0&z!gm`X*ZCZfP +*s~oEk_fa78vOHf$s1Yc^tx9K{jv(C>CP|@}#8I}Ya>$JD)!{=N=^L~) +aJL-N*b=2fz1NqYqZ`MY?v1K*LoL032kL1&amNDmqoKTK4$YeoW;(v9Ul$O?9U6(u0vTvxwSMCbRq3s +AJ&oTc#HAl%pxMI0)yl`bh-#cVxB6dr@(+it=|&2JE9=6Kish0dO~W+Jpx3_g<7CH5h8#^pZXGvZ`sQ +s&$B4eZ-{)TzvuJ1)w`+!^1e3^H@3RXex$RqsfHoL7*(>v8Cs&WSjo#EjYcz(Wc*7YC9)~XVB3!8^Sr{_yz|{z2 +;-jsnS}$4Jyq-PyRxHtR9$`pxhoIso$G_yZFO#98WRc$oc +z#KRj`gV4fNw)ndew<<}q761S)0001R +X>c!Jc4cm4Z*nhna%^mAVlyvwbZKlab8~E8ZDDj{XkTb=b98QDZDlTSd8Jr?QzJJL{okKLH(L}oF=Cz +FaJ#N!t0?d$uIvE;HmM8YT=I;Jl^tuQBpKt&-FMGxX@1BCb}zLQ1@=hlZgszY-91T?T+bz22$#+$^TI +kU7P8x8v!za*Dm0s!V!$$RQrgF*ff2 +lKRn1h~+tM@Edsnk|7Vf~}D$mq{P+MtV`m0ll&S(oK%${AyG=gQ&1K~|)ehh<)vyMtE;l{h|kiySA$j +x;WcOwE+cm@Al(i{jp^SQPpU*JE~BmW6S=)A1T7liAWOjhsxFTF?R$S{F{x{cWdHJyWH~GK1UK4~(oo +xpfIA1Yym#TGsgD{`GNq)Tb|p)fWh!RVVrNzb;0TlOIMWKaS77A9irv;0tbT-WWCUyDmnf%gM>;@_KS +Px}KblPp&(i$>d%d3u|$MBbFdc{3RbC8l5y3u;fG<2X~~x$&oRI>HaM8W%$?&+DbtNbuu|)lT2Fz!Ng +;t>z6YprW2GDLt(ALx0QtW=(*!en;Hly)#<(CM-LclEJzGeRfM6|@eX;I`sJ)q+^5R +^ok7AB)lh~4G;6LvWG7O=B2;PH^Z=C3;bR0RnKF_tUoW*!lQg99^5>DY_v)P6Wssj6=5EUdh__1_Q*M +4ayFztWG9z=US+MQ&x#_kvv@4gi&pO#tDmeY@69JPfNHxtzHLywhiUz@1PY`9~1UZJ8_AHM@MbR~cZu +1?^J8ldx0^!K&YN^DPE2!U=Q4{#lm! +xd%>;7R(+g!mF6ns4OJ?WA3b9a*a54p*M2C$Ow$PA@w4WC+mbYOQ3f%K3Bbs%O5kLy=(d)=xO0%>*#7 +@tySjd2ceFJ@^>1MjuNa@vxv89BO%d(;$mI`QJ9TctP7=KTMqkmp0(%qoXDX>t~J5XOaeAm +s92Bf(>}Jlc+z<6`abhemMX5;gp@7Uo+vbsq}vJ9KZxC!C2Tu{?3T~!L5c|vYM-O-l>Bg#XFq~BT|Q5 +xOi#ca|7eq#|qO171al0($yB+)YSz6H2N;U?B7*{EoBLYPI+OYUIe;T%;1j``cd9XFk^8$|jFc$i1@y?Gnw^U_m8Uc +N(0>Hb^2A?jkT9rAI^9!!H;`2WrLG0TRa=Wez$hvhUclO!6B~`0s_%U6RrZkA8*e*gXFJ?EG?ca(p%F +bt2xtMji@zjm%zM=bKKYs`RRiN;>Vvj$z!spkzn=i?8k*C4BS%B!w7}vw)8A1*>#O%fsym`ELhB|x=wE8$Z*7UV%jM!_|v}G1w3P7HsD0D +^;9$$D__2$EP^Wd=B&Djm-{FXguC^{V(to6cbtg2vIBrzOH(Lp11DS<9(2j5d)R$aym0Ui7fKON`JH? +H!*q1Po7s|!aZi6w*X>#1c8cU>beGHSuV=_Gb~ +Ps{$8u{7yPF4TcWGCk>7$+)(sjF0BK-OmDq}Pp0#6v6I6K#X5d_hULx$GlV-!(K+K3qV22QKa$A@gINo%K+t@bR`au}nFI0O1yU; +xZzM)g10JWfery{}0IeIs^3Zuz>$r1JgA)*%m}^NZ{8`PuOYI#*%pr;p>y(P_ImfY_OJT*kgGfxL{Zc +A!0nQ5WGxJFHMtLg}vO^?#s^c#A?Qz3=O>H9}K{NOgGtf==>&r9^)P3g5(ve +REVvlaJN$F@1YI6M~*TV)^zS^{3DN0!HS5*kUC!KLfum&WEfmsmD11JN6FCIxZMXuR$}d|jI8SCFR1AnDdY!i;&UPpXjV-FAFFESs?XFnul}h(hLDL*CZZY`t7-m$@UZTrFth^B@6aWAK2mk|@q+GA2$i)>300567001Ze003}la4 +%nWWo~3|axZmqY;0*_GcR>?X>2cZb8K{SVQzD9Z*p`laCyBNU31$u@?F0IRURU>GMnT&H#eU6rm-Wpo +~E%!R+_oJMrA(>TR)ki`e_flT;2}`YowYa;!`GeM5Lm7qt&OwZMG3x@j;q$hl^qbEY==3ng8QvnqGW +Az4+nk{dcDW1|Op4wo~!R3TZ-;x1v}N8n^_+sntk{+Rb!2OE0Fgc{-cUCtZu_+pCNDU@%BO>fDO+a=j +LsomC=zkihS5d9Z?O%?}f{6EutmC`E%ZKkUR$T#ts~_HaBH+}^%R&);2N{BV2q&n +dva{Oe!-_6=~(3T_O8-MQw{pzu!j;c!Ub^Nomh*7T_D{e9zPxac_z6gylfIDAeAtgDMd%+wfcxv29t{98lT(-EF|i0Mxy( +8=(_+Wr6;VYnx|f!F6$9r4j40VBmYCCxuu6IFYNxAbR`UZgPn~z36BRXD}Z^hHaIxC@%1-4DsgXim9E +@E{v1fob=;cgDPfQ5KgUVWhK@uec(mD;#Q;>MWBa;cuUtxr?xO@F7ay=Y@K58Ct#ur_dI4Ne`oKN6wY +~}1MxHCxj~Qg90Rlj%D>asCKDTTs&}yriB8WyNip*1)NJ%iV7XL1D?Tnd&KQ`PtBL%cQLq +i+SF|yKSuAbM#oRz!@BQuh-)(nyb+i=6J)uDMNY*-N+jvJHUN24iv>@bQTiC?2*r4St!Z}z0(G8(h}C +eJpYDOzjTCd40jUclKv>wwtuL_!!mh=5p(G#)g;0RfQPG;PE)ka{M~6NTNW|4!Uju-zXv0g%uSLZ=&u +X34h#0Ig>Kp^$=PfnNbE*bD4nQqAx0#VQqQZBE%zsRBUfy7Zu*iOCBsAl`kJXwnPUs)R)1k5Xwc!Suy +u(n%PNljJf}Tf{vhm4Bqfd46?08pm*|wD+nTE(YvU8j(7dj}VyQ%)vBW^iik+BNi6 +>4*nww9&o!k$uV?H=XgJ7QhVhm20*;bgnGOG0B(ao~m2#C9O6^90+{sF%HBJ<peVLwCRqc&DbVL&gk`>B`QNVkh7ecCraV~8qU+O0wycn?8l4M=*ds8jF=;sSrl0exP0M?ZYsYRG-t)Oeb#Po~M +%A;U-4xysDk)DK^YeE&`9r5-bG7(P +wtZ<29iN5k_Wt)oIIF2_RhttU+;tYF3w4Ag2U#7>6S9wVlLp9f6Klqo>`hSVM5oi4^L1V`|zGxiX>;) +#BUGS#2uhQ4Flm*Mw#3Z3jhfNde)W8&;P#9Os;J;d?3hNSuE;r+7tDWKG?2>y{?M4$o8qaaf3i(K}%G +-P|9&(CuSlgZUJz*Pek6l8k#<-*M*SJ&N5O+C+Stlecrj?Hh0t#@TGnv$F;&^Zc1QAnyd*o1sPpWg({ +uQB|d2B{U>i)v1(Mh}>ZqP9Dylu}A4=(dFBQa}&RAtZMPBCvy_BXCghdcblm6CFLXg)nK(CzN&M4g7W +r{RKaQ5oZOBaAu1`cL(Mhb0h2s17XZwpRr$udWdZ~{#g!x`%FZyhqy!m^ +6-@i1s=FkW3h2fQ%)5j6;TXK2{f^)7>12IcjrH89M10_~CPS0 +q^o?s@iu?}s7Fy3wp7)n^}%GRD3SVjIpwelL|4cU<3};KHJ-Z%r^MXaT)0uzK0Xg~96t5(1pB)gqL-K +JDFguGv0gCoj7ZUmxea5Ghy5+v(+-5AWvb`G?EP=`6*2jc!6`tqke|)VZ&n_}dA#l=Yc~EF$<8PIPH# +EOtbOaW(L%6>Q$>YmPEaM`XAI-{tmYbwLE`pL>C3A8&ZBN5G1FJZTi~aJ4b;3rF(CS)%BR$xdznC_J} +@Q9#TbdDK${;vbeqMl0k|b$rXy5&&FS@4${d9RgF9zN-}PD +~m=xFacgGH$H9Jlt=kicwunlyA8y5P05zKLfl~&My(k3U5lrX_H?3wqJVlYRw*xbGTmuqRi=vHEprc< +kkN)i7D$~0reRRz#@==5^CX3isD>s}Te`pbBOVBGBU@RUZ-pwWcq5OWLT|2k)%Skp@CGCZc^rjvNSz3 +Ulpnq82#~|unw7|)#HS7@SLP}CrH#~4Zldm>;TK;K#5XO?6-)iz|C6spRsi*Gi<*)?& +`3ajY`bpX}M**2@$Uo@&$C_c(;9bx0sNV7ESat*|;TV02~GW!YzS1&1gajA#}L(s(omJ5!c_GMaA)tiwa~WEPTn>lFnbZRi)Y8 +bi|{1x6JM7JmeD%-u?ocUN&BRea%o0Xv*zgz*Jq`m497d^5ao#rr0EUYp_veu_8nGw-{j}^&$mhCfy( +fNby

A)d{8?79LAIKn8u#x^KW)*Pl*(nway)$ZGMNwD(yJ(;UU39wAOb4nvA~Audqn9O*YWN3rTM%qJJ!C2aub@yIm8#(Q?(mD +crJdZxnWrz`8nW-E#W;MK{P{I-&YH9{d+jO9KQH0000800Wn#T+@l=mqrW#0DC9^03!eZ0B~t=FJE?L +Ze(wAFLiQkY-wUMFLiWjY%g?aZDntDbS`jt)mm+D+sG0A?q9LB5u5}lwC~dNTK0Un)Nyh_b8&z;R}_a +pT9GSh8*0gtOFL?M{q3EZeJ3Ty30k1l7fa;M?Cdk|vtG6Jmd)p@UiYn-&zamdb*mXys@7b~T6IT9_L- +Jj;lJ-1sn$m;q!y~*I=V~vZk~2^@m^^6d@Xb-R=lq?a;bZLWL9OF_)v(3HgapP&5Ad$zqoAMx&;YVcE +{}cudgrX7e8KJ{Q1SJ=lKzX4>2;Y9gAmD@#^U4sHk|?u{jYvy?plM?aS*4ia0ftC+vD7J9fjXUa)Rc_ +f^T1xDhQ|3f2IrD4DM9QL;`r;U`mg##VL9I=&Km$8H7dJHa@6_;qGECq#y(<+2kUtoj)@q@xiNCDs7- +jWB|AhJ&u(3&qZXBb>ttKfiwQ)8*CM>)f31m*iycV0H2!BOX9a4=pJyvQSW!`ypH?qm*H$s&_ZFSzaRV9~?!a}PoIIw+{^;%Y$m1+VKD^ck4Z?dx)YXvXQzs=63fqbKN6Vbi~34 +h{>uSGktoX_pwh^Q4E5+QBYiob(4_2l^Z<@NE59pl3;KRp#6__nD;R@B?mnuo}#?l_l7d-iQQE{Ec`{?*}Mu2;L_?OYE6L_uRqx_1ScKK<%>Q%L??q+%a+o@Kat@ +Mo!-Htjs#Gp8ef^qN<>*CoXjpk0E&8x2{(AhMP +umSYKFPr=ba#y`@!_?>5WD*-Qn65vCea2+mTl~`#s1RDe6ZL}8KMrZ7W!snh7L^lOIHe9o1tvBF$j>2 +Jy0&;U6##`945rteyQO+2-DhfFAu{(%RDu}HuDA_M}=iyCL!J;fU!Bb<%WDck}`znVRB`nAY*o@gY1t +Q_HL>Kl%u{H$T@(*$giHbuo1_bJrL2x1!pb8XaH^n_~xpXnfvVnN!8Cg_uAqTP+p~nQ#7lnXhu&b>!_ +MOhYt;-!JBwXNQoRQ=vtIn@foPN^0SyKnMeX4!AB+r_<9X6^bV +J<=R{deJdcB7U=gykC`@#*Whh6gjZARSk3z&;oZvU`jCQCKaCWfc=Nrq>sh5*{@>DWqD4~9VHH9Uhf- +4HdGK*aqdT_Zg|1tZB=~AYUa%1^grsUkt=K$_AhrUE)yOFo`|9i@OEuS}8%&J^TE^zYQY5!V9g^iL5QHLGKHwkAND-`23+(si>$w~(Ew8i%4 +p6dY^!AXrcjHR<5B&ol&NTP3s3wI3q +2G7?ls){OcFYqYv$@Oj=k_-sB1>p*T`}p(RwzL2x8v!61v%V7dVCAS_-9CIyy_q&y#`YHJK7Z*kyg(= +Y!u+xKTU=>kD|QM5LyCg2uTSFFz!48lDu|x{1MZJS(MG^3R38N{;MzCKPHI%rv24c@gD;W^pNDWPw6{ +6ojNlGSzzz^9AoGWG)X0ektHwQ-}1Jk%DjQVwUiZvQ6g~!=l&Rm)eqQ;$pX^+rY`+aZT6U3OAlb$?l` +pu9d(TmyEaW&ZzLO6bfh}mIbYsFbhjJ9-^n2Qt6)t!QOo5vV{2gj8V~hfs|vxlZK& +hiGdmuIT(&dbvb{6`B?l_0tk8i?!yzgJqdLfu1}WR{IB|QBxv=wO13-V}`Pm3S31MVnQ!x&|cCABB4e ++A~+_=TN2aHlV}1-JtA=u+`-FUXtwPkksXhzak+|WQIA8qHbgny?ottn%p4)CGBZjxxdzZl@L6<-FF& +Kf`~f6yC^Q~`S1!@l?di->_MCCw>DU7{LGQ4RJxxz*+L#cm_a59E#dqiIEFW$A>0^;_PfVX@9Stf$I9 +=5KxI>}^kB>$i^vD40(1XX0a)@}~KkV!i*bqKLJ$p6(Uut&jqI(kqQqGOFQ%1NWbtN-jk`z(^Bw~%us +l=^YV5ET_MXY(TOCx-g3&zo(BJ*-b6FF$|peaSAo4HwsLEkN}(_xk^5+>7`9jg^LG@7R##1;NF85ATi +#@(FY$QM@XMX0DvJxh7b?=Mv;p@it;7Rfg9i-mo%SVT20e!|^>#=Td)Dx$eKe%#p5p^l*J$IVli5tt( +wM*JKzVZPWm>dposeGyu8&)g?Ghcsaky~o}2!`Q|7#aiHXRGYd{`ON8TFgr(!EGm#F6pwdWT~ULL3`z +kja{RJCM^_8YODP*6OLNv5b=ytj71bNlf);X*<4>muc+Ijx`<<*~_yd3pC% +-lx!X%g<)nHwJ8Cq{M5320ioSr062U9*@SvL0tINn2ohg3uDUejv01kzplGOfWEVoW#7|;KD=^1ztVO +On@r;mc}q4?6|RJtXEU=IX4Wqo6Z@-wPubvcUSkG3yVIOK1mu=V7EqNXkts63*bAfNGm-3?qHp_r;Bq +{W7>!i@|564a!!0&Gm@YXcHcyp?C$OnFCKA5vaMnFTFGKE9qN1!RnQ{zNbcdhv=@zcDf79D;50@O6>m +_9P^K2b&SEMm5pqn7`6AhMvCma6Eeku!bEB7Ro +ERHMID$i4c46D9H`E%Sq#mFJv?kFKiFu$3u(pLjO%~B$sF!)p9>QOd~b>&^L9h?ID3B?Uv8vRar{ul; +V-#ZQ+JXs_aGQN6%8jUY2*=_K48OnJGsQKbw_X)2H=aa!I=n`O`|NI>L{(eOr_NYDe_2 +(o3Kx1!KN^IR>vlBMtV?qOyAT@wuOc{4D0i*#uRkkY+k|o$-jhBrE_IpXp^!k&WlVt}v4+btLc(sKWE +Bh>Kj8bGhS;FUYk|LQ-9MqD3iiqBB`G?8bEJPiHoy}i+E1KynVmXaw6V)itIxz34n!TaY3V2`PVtKkd +qWqx&d33a+e*;iU0|XQR000O81DB*+RCKs|Jre)`m^%Of9{>OVaA|NaUv_0~WN&gWb#iQMX<{=kb#!T +LFLiQkE^v9JJ9}T-$hH6bQ_PBTEhV-fyf&*_myqBj+!CM$wr#*MvOUHsvgFkR;sE{Z_nb2`(#Vp4{MN +rV*wT5=%z4gEqHx9rgGrjC5g!bgH=Bo1!rUMT6F2d~AZ|3|vxuv2$ztvW*Nw&mk!_oQAMrWCD)hr}M9 +3#@6!UHrg^`3!6VF#bNjQj;sL@zq|KuzT`~|yn1ANSaFq*l(_k*)E@?&=AB~y@yeLg!oF;6WPkEVRaZ +9s(AzBk-tUNGTN%+7m<0y<1V1qsK@qcGqW(j9U(O_I6Y7#tn{R@a^I0=7xF=l|~OF72|Xm1C@IN +;0%Z5kcJ;`Zr~He>#;Gobt6xlEkL;-g;&@UpBTBT==8x^oFDbNr`_J~-T +lmE?7jc6-~IUM^TGf9{qW1t@yS1Wr)THC|MOq}{^|}#V?Mc_djGlcXF)jsBZ`ys_U`-Q$NHO%&8_X7U +*G;_4=&sPHOLF?Xs*LxubJ^+*#8N=z`Xd*R+(@K;62!P2v1Bq^nD9~!6y#B9v^iF2m2bG)s5|kRSUfu +Qd|}v(E1Nc?%#T?q}kiw?|seGyc85NIbREJNe^|t_}tpP>;siv_tW5L58{aKUB6vkT=rKT^z0?puK?+ +6ulK226{fzKYts7{y*_$-aQ5KqGjG0(YQ5g(Jbjq)oWCFJcMlJ~6j&I){N;a|ruFJ|>wi0x+ +<+JdM<0(fpt5WatVHVp;<#f#pawlZYp6wH2=xwA#We)|$9cE+?;Q4HZ|~C=Oy9C68ZE@!1*Aq}FCfG2TdgH%H%+E5g`Gmy`%+j;>nmW +rAgO?LUoOKRDUTK}1)fCi^^6BE5V|kES`Et)d(#lHW#3Jpcu1mjghdhg@QBYN$oPW<=&4c!%MF{I$B^ +>7F_aq-2k?O1x_(MXM9Z0^!N|FqV<9wva^=cq??WhOpgvIbi5raBlxhoLmX$t46rdLPm`Du~Z{)_j?F +Ar8>?KfcFn2TxqcMsF1y1kd2ZrT?o#{hg;8;P87x25mz{J=Jc7amFy9Q?bA_&`QfKSG4fa_=08ToN;D +j}+aR)Ot{MG@?2{F8&=rg{JX<8YK++T4z$H%r>P+TX8(xOFZk)>N?&K6105{7A +I+FN2@yqiZM5K9)>EaS^e`2xr-!wDj(!$322!~?mj&APUXdJgOMnG~i^n5Q_h6j-;J}d;5Cgq}E&))a2m +%5S8Yl;A*eI+Xz7zy%R}jg(hUMSI<C%HfiyI-$zBFL@xzgNC4TAF +m+wJfIsXt~j2#UDDd=9Bu6sEzr4Gv>2yqXN>wj +R&VrhG{OSTuOWX6}L<#Sqr-yE{t!g$VmD27Lwb4PkhPiX`D=z%q%nsho0#V|AX$YME3BSI6^WuG=a~$ +c-=k;1nCQ$QS%-r>Hi{`{-G@?V*5D^}rgBo}N_(X3!7)`;Shypsxizw@F;SdLMYYF10G7-W> +;zG(4QJvVx1i>8(S!EJ|3ny~6ZT~qTsM`1mDagn*V*HfqGEMnO3lx$Ya1AFs8Ue+&;EJX1dGA0=KGg& ++;&6cd1&#_4Go%O{0B?9PUa)zA%s3~ISFdu@<)lm5h};|*M5CxRxE?WPG_yxCgscD|HD%=Ay_hQdWs! +!9gvYjoKZ8>P8pNEVOc-u8m8r%dG^7J!)@Uhd#Uc8;5m+O>f!qS8ip|v~!{vbG#aSjsdk_j<2uv|~1g +?=3C}ZAIJO+w?Obw@OfN00*Fvwd;zB?O^UC2(75meLk$G(O{XKt=Tgqc%y+0rbEIMQfPxD3c9z#v~PA +)slb$)x=j!&;n1QF!ep93zh*JeC&^3SxqFJ5_>rawZU}Qi#n%V^z|Shy#6j5z>t!cVS8yv0dX~)f2hF +H8&yfLWX2!L@ljkhe(75mV3x$F^J&vd=K%`XBO7a1If2>_wnth-n%)9?|!M +Qlf?B1b|XUY2v408tc1M@qrC#*oO1;-hkK?EGTsoP71p`0mx!ETUy0J3Eh}V9THHgR>AZaWV*~%fZKw +KDM2kwh67v)&8ATOM53;#-~=HZ+~@m(!7TVdSiGv)kf@B4r)_*cpVWXvqG98B^JA^L?PiEX +Ym>D1<`qxnT@8%Fea;ze=7G@r8~GOeIZU@9V3wIYeMiAkBH4J5_4i}k+d0i?v(M2-^lkB0FA$zfLkJ@ +^Y>co1V_9E|9W#|#@XR5a%ju1F1Voe{)kkhXX}J^>pPlz^2KDu50)jZ%G*xGT?_%qo8RtW +-cT5N+LRuUV8uEU7)YEVA-RoCfEFUf^0E{2k8z@>=HRL3tB +6m@!B!uA(gh0_7VwKWu;F?tp)bLltE-<@!So}H)TTjLA3`S!XmQ^!gc_;->3u!-V&qWGQfV)X()Q=bn +$7mkVVe&+r_5SuY@l5TA!x#riM-qSzYDG_pS11x7v1jGm>oQkVX1x*z&k~F9|-1_h410|5)zN)T<{MP +_Jcqgd;GqpABAG-F?u{Sec|GC##rBjzb8~^5zK$9=Os_rtc29Z&A)bU-6ugSTcbDKf63WRUgBRN1j*F +=(2R@D_XR|mFbMB>y)KrlqP3>3N^>~wigo*Q`0$#7DWTpH58Fq9-8U;DLbH7blG&N{p@;>4V15>mW^q +g2Py-jW+eF}Rn4MvX(D5FnX|YlEFmnl#OoE3hC?#8W-PT)S`;@&N#`s|(fcRk%|QgLVtQaLt4w4L_K) +`dl-3giFC4JuJxcP}RGl5=4w1gtKhG$vW-gjOS!pP?leN^ZfTMTK6I1-D$l)t{4RQ*|1QsT=I8empfr +uhT=uEl@t)3Plo1Ril?GVuR`2=qP-0IzsxGU$2lKqXgNXEzH- +)FOz@VkIsYq0TuAI@;ZrOqC~^kcw?JN!f1JFWhM7q9|5H8*{1N6o7JD<^u@$f4&{h;YVS)K7q{xF-vO +Y$pc}JnL~GaoGTn6T+v||CwP^|X79nsZ9bWZp0BVo)LoDmiGoPD9528c*yoA3{BE<49{0z>POyn?Jxr +KrXF)xMh7((fMp;B5LaSyIUkvXmZ=#ls@411RG@enaPdI*f?Ty4$6z*fPrOrf5XKLu8Zd2~wdOp-D0i +n}SbByV~7sz3wEUK@rq>q%098A4tl(v#-(XVP6Q^{OwIC*s83bd!>s29S +uY-9RZWiaE!32)hvo58)6xr8oHU6{eG@iI1tO9G_0nPyyB)Ax?G4zIjf_x)W3K|w +$w2YO5ilOOkOHjP`_McEf1m9)jjRs!g4)5U{wbOsG#F2j#niG#5C90UpqN8eBasL-rTOL*6I?l!VQJ8 +UYaCD9cZlFsq7S~?oe@q7LN;EEyB}Z0Vk$Aw>LWK;WS0X4phO<>MJT(|a+X2g@tU)QI6K}yc36+LjVPV&u;u|lh7osf>Lj)GSX$hURiyyB!R +PN8sJphtQ^!iclxo!M#yx&y@*zW7_847Fhx|?9Fm~wZ@6aWAK2mk|@q+FJ$6kmq{004Rf001BW003}la4%nWWo~3|axZmqY;0*_GcR>?X>2cbbZKlZ +aCyB`O>4t2488kTi0+a=+w%x?he5ABjNVEKPO5ZfjU8-dOWF3{r`U172ZN3I5F6=9dha=|tf?W-tCm` +ec@C;>j3tm-8+BZsXMb%gE8C?V~tt_#S<;#+zLWm7kKqfEtgf0=ltINQVg%9wtF`zEZhMU +Fk!f1q<-#BTlvF=7nq%e61Ei&I$RiK>Gj-)Oz>Bb?KhGf4ivMddq58#gREbF3%$DCG3cMSlGS77NC>_qb5}W?rtOqm49`h=9EoN|r2pKA}^9OWsKj9X_ ++nX-TlV=oElHDKWvKxK~+eEQl|DK({2cB|39-R*bZ;GCeH3=1|xB>IAN@=;)CPHLVW?RK&mQ3s6e~1QY-O00;mBm!w=)ltqVM1^@s@5dZ)n0001RX>c!Jc4cm4Z*nhna%^mAVly +vwbZKlacVTICE^v9}SHX_kHW0o0D+uo)-a>J<*Dba|3N&cYAR9CZ_7E%#S{hlbDN!Y<)f&jh_sx*9y{ +;4V&_jR*Ni3V>aOTaMH>29SR;^a`5C>1Il`?Jbd{nyYT-4FHF3e{6w?LN4xc}zLEyY>Q=j)*>qjNS)$ +9wIg(RMalt+cf;d!s(jM{VM&c7EkaSMx$0ei*%pG{2wCW*6!=H>%LM!B%P{#aoo?@@?Ve>;hXpHsncZ +{EMSgao1B&u2!$!zX@vR236`#4S^I)iviPZj%-}3*kDa}`&V*g>cvpTM3{Sd~V53o>*mvTZjLsu1#sEi)w7B6PFwPfQXcJkwaly$ypVh+7k6DdR=a@RH! +wTnxmT{4HVh4Rt-I(ENOBzVZbXemkq0ES_(_`%Mck|*V&z-2V$7u4epxo)+zusOW6;l@mCJR7Td2}_b +l#DJ@GI_UErhub^;ZHpvyRb776}iJeKN%OIc5LIe-M};!+`*jO^laDI|F3#zHk9OC?9j#yRX>Qyhu9! +zp$)9eb&6J9e@%Olxh`r_MZ5DE5iN?nVa=9lN>>Y{E(APU*S_c!yJn2uQSg3&sJcVA%;cR%>G!85`Y( +5VbFae2v*O&%2>rgRhmU4e+cel-~5w`H(o$JA+^WTk=vF$$4!aVUKSUAaQf{mSgQb)$|k%gm!1T%8l3 +&r95D#bCb~poPpz(bcpKxE;cY&ISQP_-n$1=G5bcZ`<^_^vGXQgf^0(+FP;T;`}=`=?&!Kbc#}cla%@ +asWWNgKPpY@t9A#>Bej5;YM=7Ka?)vB+j{BGnsUn%XyHVmLi`Bd-BctvRl?{#q!u@K^1O>SJD{+0P_x +l;L;96o*t-afVMu4F;flFZtajK}!XIFdaO7*drDg5E*>s&F*^ijwH3*NO_Lm?rAui+A<-$nP%EpVl|A +zrK6I^^vO*xnJg@JBJbRL_5wL)Ws|)W~#{O9T}Dk}S)zIG_!}{A1|Y@UPxGznHfJxDa|OO}#sigYN+u ++1SlT&&nsJSRkj8VfMU$)v7|n!%3N +62Yt)f)tgL)dWoi^Gu{gtm#5nmN0Ay>E=5zI}U2HhCq*l<1MQSLOHS0`5NC>yDfmH>imqOC*WDOMv+9 +v$!4(Z8Fd67;p(?^lBQ)KL?&zx#bLzJ|E>1w(4$?Ihr>T=7&y5xk!h&cEqS<-+~hPb-`~D{`{vzOD(1}I+fN^5Sx|QCKh=IU>D-gWrKgQS$#|)@LhK<;i9)ZDIaWmWFSxFl +gfdD4%m}lJwg&PZi1`}iEN8iLE7^aN1A!j9Gi^RC;?xFndF(DG?~XBs-#7f@`{7u)yQ<6U!3^FG<6}>m}gqdkZI)1{le{YUO{*Q +UypKOMsg$@?gXRZwiDS-WO)k{Fi=D8KH!aT5?wbrc;m>?Nzk|Wl(b=MOeTOkx=?AC-PaWxPYhx +a0dP7a{{~;j+DGkxX!@vSzWMh0<-adrh)1FC{>9IF{$|W56cevz+m5tnd4IKgRzlDcQe%J6En)n%f{s +vG>0Rj{Q6aWAK2mk|@q+Bf6Ax8QD003hF000jF0000000000005+c00000aA|NaUtei%X>?y-E^v8JO +928D0~7!N00;mBm!w?f%3;OC0RRAM0{{RI00000000000001_fhPd~0B~t=FJE76VQFq(UoLQYP)h*< +6ay3h000O81DB*+;zX0v)&c+ks|5f66#xJL0000000000q=6U%003}la4%n9aA|NYa&>NQWpZC%E^v8 +JO928D0~7!N00;mBm!w?H$G|nf0000U0RR9D00000000000001_fguI}0B~t=FK~G-ba`-PWKc^10u% +!j0000800Wn#Tn%mUY&Zb`0RI6102u%P00000000000PTSb2LJ$YX>c!JX>N37a&BR4FJE72ZfSI1Uo +LQYP)h*<6ay3h000O81DB*+KNpR^IT!!{msJ1&8UO$Q0000000000q=9+}003}la4%nJZggdGZeeUMV +s&Y3WM5@&b}n#vP)h*<6ay3h000O81DB*+#Uk5%2MhoJX(#{y761SM0000000000q=D-o003}la4%nJ +ZggdGZeeUMV_{=xWiD`eP)h*<6ay3h000O81DB*+@S@g#N)Z46=r{lX9smFU0000000000q=6c!JX>N37a&BR4FKuCIZZ2?nP)h*<6ay3h000O81DB*+kG}tUb +_M_d%Mkzo8UO$Q0000000000q=6h{003}la4%nJZggdGZeeUMaCvZYZ)#;@bS`jtP)h*<6ay3h000O8 +1DB*+swK86T?zmIp&tMMBme*a0000000000q=Cw6003}la4%nJZggdGZeeUMb7gF1UvG7EWMOn=WM5- +wWn*hDaCuNm0Rj{Q6aWAK2mk|@q+Gn|vGX7b001&00015U0000000000005+cX>|YqaA|NaUukZ1WpZ +v|Y%h0cWo2w%Vs&Y3WMy(LaCuNm0Rj{Q6aWAK2mk|@q+F~dDhX%+004sk0012T0000000000005+c#e +V<*aA|NaUukZ1WpZv|Y%gPMX)j-2X>MtBUtcb8c~DCM0u%!j0000800Wn#T*p;4@r?)o02v$r03!eZ0 +0000000000HlFvfB*n+X>c!JX>N37a&BR4FJo+JFJX0bZ)0z5aBO9CX>V>WaCuNm0Rj{Q6aWAK2mk|@ +q+DUvFQYRI003(x001EX0000000000005+cHi-ZLaA|NaUukZ1WpZv|Y%gPMX)j`7b7fy+Z*6U1Ze%W +Sc~DCM0u%!j0000800Wn#T*y%joW>>q0N9cM03QGV00000000000HlGal>h*6X>c!JX>N37a&BR4FJo ++JFJoMd?cwb|0ZEaz0WG--dP)h*<6ay3h000O8 +1DB*+y_v6lnFRmc!JX> +N37a&BR4FJo+JFK}UUb7gWaaCuNm0Rj{Q6aWAK2mk|@q+HQ}-&>Uh003eV001HY0000000000005+cr +{n+taA|NaUukZ1WpZv|Y%gPMX)kbcZ)b94b8}x}VRCaWaCuNm0Rj{Q6aWAK2mk|@q+AUgOc%cp002xx +001BW0000000000005+ceChxIaA|NaUukZ1WpZv|Y%gPMX)khRabII^ZEaz0WG--dP)h*<6ay3h000O +81DB*+vI1y49ti*d!W;kq9RL6T0000000000q=9++003}la4%nJZggdGZeeUMV{BbYEXCaCuNm0Rj{Q6aWAK2mk|@q+I^z6=@m@006cl0018V +0000000000005+cUkU*LaA|NaUukZ1WpZv|Y%gPPZEaz0WOFZLVPj}zE^v8JO928D0~7!N00;mBm!w? +$duma@0ssKS2mk;d00000000000001_fwmL@0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WV`yb#Yc6nkP)h +*<6ay3h000O81DB*+q@AE4t_1)9)e!&yBme*a0000000000q=B;+0RV7ma4%nJZggdGZeeUMV{dJ3VQ +yq|FJo_QaBO9CX>V>WaCuNm0Rj{Q6aWAK2mk|@q+Dj~6XIeE004O>001Wd0000000000005+cqa6VNa +A|NaUukZ1WpZv|Y%gPPZEaz0WOFZLZ*FF3XLWL6bZKvHE^v8JO928D0~7!N00;mBm!w=(6=>3m2mk<& +82|tu00000000000001_fl4U>0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WWMyJ?XD)DgP)h*<6ay3h000O +81DB*+9UUyd%mn}dIurl^A^-pY0000000000q=6AK0RV7ma4%nJZggdGZeeUMV{dJ3VQyq|FJy0bZft +L1WG--dP)h*<6ay3h000O81DB*+{#IW~@B;t<8w>ydAOHXW0000000000q=6kc0RV7ma4%nJZggdGZe +eUMV{dJ3VQyq|FJ^LOWqM^UaCuNm0Rj{Q6aWAK2mk|@q+Bd*5>VO#0055$0015U0000000000005+cO +FRJpaA|NaUukZ1WpZv|Y%gPPZEaz0WOFZQVRL9MaCuNm0Rj{Q6aWAK2mk|@q+GN>pz+`V002}30015U +0000000000005+cVLt%?aA|NaUukZ1WpZv|Y%gPPZEaz0WOFZQWo&RRaCuNm0Rj{Q6aWAK2mk|@q+Ge +~6!C)w004>=0018V0000000000005+ceL(>LaA|NaUukZ1WpZv|Y%gPPZEaz0WOFZRZe(S6E^v8JO92 +8D0~7!N00;mBm!w=QI~U4H1ONbV3;+Nj00000000000001_fjvk80B~t=FJEbHbY*gGVQepBZ*6U1Ze +(*WX>N0HWn*+MaCuNm0Rj{Q6aWAK2mk|@q+HLxsV`F_006~<001EX0000000000005+c#Y_PJaA|NaU +ukZ1WpZv|Y%gPPZEaz0WOFZRZgX^DY-}!Yc~DCM0u%!j0000800Wn#Toc89?4u0;07f+c03HAU00000 +000000HlFeZ~*{tX>c!JX>N37a&BR4FJo_QZDDR?b1!UZb963nc~DCM0u%!j0000800Wn#T>6^W{S^l +Q0E-s@03HAU00000000000HlF7egOb*X>c!JX>N37a&BR4FJo_QZDDR?b1!UfV{0yOc~DCM0u%!j000 +0800Wn#Ty^ON(rO0)0G1X203ZMW00000000000HlG3g#iF?X>c!JX>N37a&BR4FJo_QZDDR?b1!pcVR +B<=E^v8JO928D0~7!N00;mBm!w=!2c?+22><|s9{>Oz00000000000001_fiH~#0B~t=FJEbHbY*gGV +QepBZ*6U1Ze(*Wb7*gOE^v8JO928D0~7!N00;mBm!w=U&KKa_1ONaW4*&oo00000000000001_fhU&% +0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*Wb#7^Hb97;BY%XwlP)h*<6ay3h000O81DB*+Zi^@^xCQ_K_!a; +F9{>OV0000000000q=7}80RV7ma4%nJZggdGZeeUMV{dJ3VQyq|FL!8VWo#~Rc~DCM0u%!j0000800W +n#T+?+8E;|7L09pe804D$d00000000000HlFBqX7VLX>c!JX>N37a&BR4FJx(RbaH88b#!TOZgVeRUu +kY>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+F(}p8M4T001Tj001KZ0000000000005+cx}*UBaA|NaUukZ1W +pZv|Y%gSKb98cPVs&(BZ*FrhVqtS-E^v8JO928D0~7!N00;mBm!w?wK{v9T0RRA@0{{Rh0000000000 +0001_fzYP`0B~t=FJEbHbY*gGVQepCX>)XPX<~JBX>V?GFKKRbbYX04Wn?aJc~DCM0u%!j0000800Wn +#TwSQ54yOhH0OJ_|03-ka00000000000HlGksR00RX>c!JX>N37a&BR4FJx(RbaH88b#!TOZgVelWNC +ABE^v8JO928D0~7!N00;mBm!w>JtDV9+0ssJ11pojf00000000000001_ft#=a0B~t=FJEbHbY*gGVQ +epCX>)XPX<~JBX>V?GFL!8VWo#~Rc~DCM0u%!j0000800Wn#TyTSebsqo#0384T03QGV00000000000 +HlEzvjG5bX>c!JX>N37a&BR4FKKRMWq2=NUukY>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+DZ#v|nx$000m_ +001BW0000000000005+cbF%>eaA|NaUukZ1WpZv|Y%ghUWMz0SV{dG1Wn*-2axQRrP)h*<6ay3h000O +81DB*+XgMp@;3fb7gP{NbB>(^b0000000000q=6sD0RV7ma4%nJZggdGZeeUMX>Md?crS2aV{2h&WnX +4#Ze(S0E^v8JO928D0~7!N00;mBm!w?Zz}3a-2LJ%SApig#00000000000001_fkN&90B~t=FJEbHbY +*gGVQepHZe(S6FLQ5oa${w4E^v8JO928D0~7!N00;mBm!w=h9piha5C8ziHUI!400000000000001_f +oS#t0B~t=FJEbHbY*gGVQepKZ)0I}X>V?GFJE72ZfSI1UoLQYP)h*<6ay3h000O81DB*+@MJ@%-3R~x +R~G;PB>(^b0000000000q=8Te0swGna4%nJZggdGZeeUMY;R*>bZKvHb1z?HX>)XSbZKmJE^v8JO928 +D0~7!N00;mBm!w=hdaxM#2><|N9smF(00000000000001_fp8E40B~t=FJEbHbY*gGVQepKZ)0I}X>V +?GFJE(cb7OCAW@%?GaCuNm0Rj{Q6aWAK2mk|@q+AY>Ai#J8008z00018V0000000000005+ct{MUWaA +|NaUukZ1WpZv|Y%gqYV_|e@Z*FrhVqtS-E^v8JO928D0~7!N00;mBm!w>wnmd{v2LJ%T761Su000000 +00000001_fny&60B~t=FJEbHbY*gGVQepLWprU=VRT_HUtei%X>?y-E^v8JO928D0~7!N00;mBm!w?s +a&Ce80{{S*3IG5f00000000000001_fx#vM0B~t=FJEbHbY*gGVQepLWprU=VRT_HUutu2ZZ2?nP)h* +<6ay3h000O81DB*+wVq`iB^m$#Ok)559smFU0000000000q=EP<0swGna4%nJZggdGZeeUMZDn*}WMO +n+FJfVHWiD`eP)h*<6ay3h000O81DB*+nQSPd&kFzmFev~4CjbBd0000000000q=8vQ0swGna4%nJZg +gdGZeeUMZDn*}WMOn+FK}yTUvg!0Z*_8GWpgfYc~DCM0u%!j0000800Wn#TzNrgu3-QG0EYko04x9i0 +0000000000HlF!Q33#PX>c!JX>N37a&BR4FKuOXVPs)+VJ~TIaBp&SY-wUIUtei%X>?y-E^v8JO928D +0~7!N00;mBm!w>NU#A6o1ONc^3IG5r00000000000001_ff!N(0B~t=FJEbHbY*gGVQepLWprU=VRT_ +HX>D+Ca&&BIVlQ7~Z*6d4bS`jtP)h*<6ay3h000O81DB*+)>30ETM7UG2O<{{{d6)f4~#DF6Tf0000000000q=A270swGna4%nJZggdGZeeUMZDn*}WMOn+FKKOXZ*p{OX<{#5W +o~wJE^v8JO928D0~7!N00;mBm!w>uQj4QH0000!0000W00000000000001_fyHP70B~t=FJEbHbY*gG +VQepLZ)9a`b1z?CX>MtBUtcb8c~DCM0u%!j0000800Wn#TyjNTcsKz70MG&e03iSX00000000000HlF +EX#xOnX>c!JX>N37a&BR4FKusRWo&aVV_|M&X=Gt^WiD`eP)h*<6ay3h000O81DB*+gNOD?rvU%}umb +=9A^-pY0000000000q=B?*0swGna4%nJZggdGZeeUMZEs{{Y;!MUX>w&_bYFFHY%XwlP)h*<6ay3h00 +0O81DB*+|0GbUQUd@0rwIT6CIA2c0000000000q=B1k0swGna4%nJZggdGZeeUMZEs{{Y;!MWZ*py6b +YEj{Zgg^QY%XwlP)h*<6ay3h000O81DB*+-fJt-VW1ONaY3jhEs00000000000001 +_fi7|a0B~t=FJEbHbY*gGVQepLZ)9a`b1!Lbb97;BY+-b1Z*E_5WpHnDbS`jtP)h*<6ay3h000O81DB +*+sfyj|=NSM1=v4p!8~^|S0000000000q=CP70swGna4%nJZggdGZeeUMZEs{{Y;!McX>MySaCuNm0R +j{Q6aWAK2mk|@q+BTlmnh5x001Qo001Wd0000000000005+c;E)0UaA|NaUukZ1WpZv|Y%gtZWMyn~F +LGsUWnpt=Ut@1>baHQOE^v8JO928D0~7!N00;mBm!w?ux6Cd>0RR9l0ssIW00000000000001_f$^0B +0B~t=FJEbHbY*gGVQepLZ)9a`b1!paXk~3>E^v8JO928D0~7!N00;mBm!w<=d-IG*1^@tU5dZ)r0000 +0000000001_fpC`s0B~t=FJEbHbY*gGVQepLZ)9a`b1!pcVRB<=Uvpz`aAhuVc~DCM0u%!j0000800W +n#T$sBG9)JP>0N(`w04D$d00000000000HlHYodN)GX>c!JX>N37a&BR4FKusRWo&aVb7gF0V{~b6Ze +MV6WoC0OaCuNm0Rj{Q6aWAK2mk|@q+BMNWcMBg005H^001Qb0000000000005+cz@P#EaA|NaUukZ1W +pZv|Y%gtZWMyn~FLYsYXJvF>aCvlSZ*DGdc~DCM0u%!j0000800Wn#T$Fc8$l3z{0B8#U0384T00000 +000000HlE-rUC$PX>c!JX>N37a&BR4FKusRWo&aVcW7m0Y%XwlP)h*<6ay3h000O81DB*+V-Vv3F#rG +nF#rGnApigX0000000000q=7c70swGna4%nJZggdGZeeUMZe?_LZ*prdUtei%X>?y-E^v8JO928D0~7 +!N00;mBm!w?U>zqvQ6#xKkQ2+oP00000000000001_fu^bg0B~t=FJEbHbY*gGVQepMWpsCMa%(SPb# +!PhaCuNm0Rj{Q6aWAK2mk|@q+Eew^N@lD0090H0015U0000000000005+c(7*x!aA|NaUukZ1WpZv|Y +%gwQba!uZYcFGAV`ybAaCuNm0Rj{Q6aWAK2mk|@q+ALLAMF|s002=j001EX0000000000005+cj>iH3 +aA|NaUukZ1WpZv|Y%gwQba!uZYcFJPcW!KNVPr0Fc~DCM0u%!j0000800Wn#TvH!YAKeK60Nxz{03!e +Z00000000000HlHE)&c-c!JX>N37a&BR4FK%UYcW-iQFKl6Yd0%&EWo2wGaCuNm0Rj{Q6aWAK2mk +|@q+A2Bg6n%2003i5001BW0000000000005+c1>ph!aA|NaUukZ1WpZv|Y%gwQba!uZYcF$Ub8~5LZZ +2?nP)h*<6ay3h000O81DB*+YN+!_&;OV0000000000q=Cx+0swGn +a4%nJZggdGZeeUMZe?_LZ*prdcx`NQaAPiTc~DCM0u%!j0000800Wn#TmS$700IC20000003-ka0000 +0000000HlG?0s{bWX>c!JX>N37a&BR4FK=*Va$$67Z*FrhUtei%X>?y-E^v8JO928D0~7!N00;mBm!w +>a6NV?GFJ^LOWqM^UaCuNm0Rj{Q6aWAK2mk|@q+FPnCG(pd004Gz001KZ0000000000005+cMHK@8 +aA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFK}{YaA9&~E^v8JO928D0~7!N00;mBm!w<(00002000000000 +g00000000000001_fgv*k0B~t=FJEbHbY*gGVQepNaAk5~bZKvHb1!0bX>4RKUtei%X>?y-E^v8JO92 +8D0~7!N00;mBm!w>)Ztbv+1^@t~5&!@%00000000000001_fon4Z0B~t=FJEbHbY*gGVQepNaAk5~bZ +KvHb1!0bX>4RKVs&Y3WM6c0VPk7$axQRrP)h*<6ay3h000O81DB*+)&*O!T>=0AjRgPzDgXcg000000 +0000q=7~{0|0Poa4%nJZggdGZeeUMZ*XODVRUJ4ZgVeUb!lv5FKuOXVPs)+VJ>iaP)h*<6ay3h000O8 +1DB*+n+DBsdjbFe?&?Y-KKRc~DCM0u%!j0000800Wn#T<}1O{qX?+0B{5V04D$d00000000000Hl +GpKLY@8X>c!JX>N37a&BR4FK=*Va$$67Z*FrhVs&Y3WG{DUWo2wGaCuNm0Rj{Q6aWAK2mk|@q+Fhcow +P&(0071X001xm0000000000005+c?Lh+oaA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJg6RY-BHYXk}$=U +u9%zbYWs_WiD`eP)h*<6ay3h000O81DB*+%@D8pGynhqG5`PoEC2ui0000000000q=A1#0|0Poa4%nJ +ZggdGZeeUMZ*XODVRUJ4ZgVebZgX^DY-}%IUukY>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+Ei!6)LzP000w +h001cf0000000000005+c{X_!*aA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFKKRbbYX04FL!8VWo#~Rc~D +CM0u%!j0000800Wn#T+hc?edq%K0O1P&0384T00000000000HlHZW&;3lX>c!JX>N37a&BR4FLGsZFJ +E72ZfSI1UoLQYP)h*<6ay3h000O81DB*+)bd+XS{DEShFJgrApigX0000000000q=6r60|0Poa4%nJZ +ggdGZeeUMa%FKZV{dMAbaHiLbZ>HVE^v8JO928D0~7!N00;mBm!w?nn)tDD0ssKo1ONaV0000000000 +0001_fw+PL0B~t=FJEbHbY*gGVQepQWpOWXWpFn#GcIs>P)h*<6ay3h000O81DB*+7oU4UKaCuNm0Rj{Q6aWAK2mk|@q+CD1`tg7v003ot001BW0000000000005+cprHc*aA|NaUukZ1W +pZv|Y%g+UaW8UZabIa}b97;BY%XwlP)h*<6ay3h000O81DB*+lv))~I0FCx3=04N8~^|S0000000000 +q=8<;0|0Poa4%nJZggdGZeeUMa%FKZa%FK}b7gccaCuNm0Rj{Q6aWAK2mk|@q+Hl^P(bh+001Li001H +Y0000000000005+c(8dD*aA|NaUukZ1WpZv|Y%g+UaW8UZabIN0LVQg$JaCuNm0Rj{Q6aWAK2mk +|@q+9?10006200000001Na0000000000005+c0OA7xaA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFJE72Zf +SI1UoLQYP)h*<6ay3h000O81DB*+c@e${`~Uy|K>`2(AOHXW0000000000q=7`@0|0Poa4%nJZggdGZ +eeUMa%FRGY;|;LZ*DJQVRL0JaCuNm0Rj{Q6aWAK2mk|@q+9?10006200000001ih0000000000005+c +e&YiGaA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFKlIJVPknOUtei%X>?y-E^v8JO928D0~7!N00;mBm!w= +~%yStF8UO(OT>tMtBUtcb8c~DCM0u%!j0000800Wn#T*Dy$-RlJa0 +1p=c04o3h00000000000HlFz{sRDTX>c!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#8VRL0J +aCuNm0Rj{Q6aWAK2mk|@q+Crn{)Oce006L2001!n0000000000005+cpacW}aA|NaUukZ1WpZv|Y%g+ +Ub8l>QbZKvHFLGsbZ)|pDY-wUIV_|M&X=Gt^WpgfYc~DCM0u%!j0000800Wn#T;yIOOot-?0Hcop04@ +Lk00000000000HlG`7z6-tX>c!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#CVPkY}a(OOrc~ +DCM0u%!j0000800Wn#Tt4Wxf8_=M0D>0)05<>t00000000000HlGZJOlu6X>c!JX>N37a&BR4FLGsbZ +)|mRX>V>Xa%FRGY<6XAX<{#CZ*^{DUt?izWNBn!bY*icaCuNm0Rj{Q6aWAK2mk|@q+B`Gxb#C0004F` +001ul0000000000005+c;X?!faA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFLGsbZ)|pDY-wUIaB^>UX=G( +`E^v8JO928D0~7!N00;mBm!w=n*BF(@1ONa|4*&o!00000000000001_fpJp=0B~t=FJEbHbY*gGVQe +pQWpi(Ab#!TOZZC3Wb8l>RWo&6;FLGsYZ*p{HaxQRrP)h*<6ay3h000O81DB*+ceJ6Np#}f|FCYK_GX +MYp0000000000q=AK41ORYpa4%nJZggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7VlQ%Kadl~OWo>0{b +aO6nc~DCM0u%!j0000800Wn#T*AU$fXWa60DUw7051Rl00000000000HlF;UjzVfX>c!JX>N37a&BR4 +FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#OWpi(Ac4cxdaCuNm0Rj{Q6aWAK2mk|@q+9?100062000000018 +V0000000000005+cj&KA3aA|NaUukZ1WpZv|Y%g_mX>4;ZUtei%X>?y-E^v8JO928D0~7!N00;mBm!w +>TX?fAt1pojR4FCWm00000000000001_fz5CP0B~t=FJEbHbY*gGVQepTbZKmJFJEe5a$#d{Uvy=7bS +`jtP)h*<6ay3h000O81DB*+N_aUx)&T$j_X7X`8vpc!J +X>N37a&BR4FLiWjY;!MRaByU4a&sc!JX>N37a&BR4FLiWjY;!MTZ*6d4bS`jtP)h*<6ay3h000O81DB*+2plza^#%X{<{1 +D0DF6Tf0000000000q=CwS1ORYpa4%nJZggdGZeeUMb#!TLb1!3WZE#_9X<}(?X>@sCbYW+6E^v8JO9 +28D0~7!N00;mBm!w>{)5@2q0RRAG0{{RY00000000000001_fd+^K0B~t=FJEbHbY*gGVQepTbZKmJF +JxhKWprt6WiD`eP)h*<6ay3h000O81DB*+re7wQ8U_FW-w*%*A^-pY0000000000q=D;+1ORYpa4%nJ +ZggdGZeeUMb#!TLb1!6NaB^j1VRUJ4ZZ2?nP)h*<6ay3h000O81DB*+3I~5P5(EGMBMkrmDF6Tf0000 +000000q=7|{1ORYpa4%nJZggdGZeeUMb#!TLb1!6Ra%E$5Uv+Y9Uub1)aAk6HE^v8JO928D0~7!N00; +mBm!w<;SX{=40{{S<2><{e00000000000001_fu58E0B~t=FJEbHbY*gGVQepTbZKmJFJ)(EUuc!JX>N37a&BR4FLiWjY;!MXY-wU+E^v8JO9 +28D0~7!N00;mBm!w=r8HQi*1^@uC6951m00000000000001_f!wbI0B~t=FJEbHbY*gGVQepTbZKmJF +KA(NXk~LQaCuNm0Rj{Q6aWAK2mk|@q+Dc^ebKBB003q*0015U0000000000005+c2e$+OaA|NaUukZ1 +WpZv|Y%g_mX>4;ZY;R|0X>MmOaCuNm0Rj{Q6aWAK2mk|@q+IN$#9-+i005X=000{R0000000000005+ +c@5TfGaA|NaUukZ1WpZv|Y%g_mX>4;ZZE163E^v8JO928D0~7!N00;mBm!w>jQ=vu30ssI(1^@sc000 +00000000001_ff3~d0B~t=FJEbHbY*gGVQepTbZKmJFK}UFYhh<;Zf7oVc~DCM0u%!j0000800Wn#T; +LQnY4ivH0FER80384T00000000000HlEz=mY?8X>c!JX>N37a&BR4FLiWjY;!Mgd2DZEYc6nkP)h*<6 +ay3h000O81DB*+Mw)ccbpikYwFLkG8~^|S0000000000q=8291ORYpa4%nJZggdGZeeUMb#!TLb1!mb +baHtvaCuNm0Rj{Q6aWAK2mk|@q+F3d{w8n>000*w001EX0000000000005+c_45P(aA|NaUukZ1WpZv +|Y%g_mX>4;Zb9G{Ha&Kd0b8{|mc~DCM0u%!j0000800Wn#TvEKr;jIe*09zyg03QGV00000000000Hl +GW{{#SVX>c!JX>N37a&BR4FLiWjY;!MkWo>X@WNC6PaCuNm0Rj{Q6aWAK2mk|@q+IIyV{a=D007}M00 +1BW0000000000005+cjtd04;Zb#8EBV{2({XD)DgP)h*<6ay3h000O81 +DB*+aFJBA^a20?K?VQ-8vpc!JX>N37a&BR4FLiWjY;!M +mX>xRRVQgh?b}n#vP)h*<6ay3h000O81DB*+X2+rgJO%&&bP)gm8~^|S0000000000q=A4V1pshqa4% +nJZggdGZeeUMb#!TLb1!#jWo2wGaCuNm0Rj{Q6aWAK2mk|@q+Bnp-o-Bg002}10012T000000000000 +5+c_9+DbaA|NaUukZ1WpZv|Y%g|Wb1z?CX>MtBUtcb8c~DCM0u%!j0000800Wn#Tz9M6U(5sm0G18_0 +2=@R00000000000HlFnD+K^>X>c!JX>N37a&BR4FLq;dFJfVOVPSGEaCuNm0Rj{Q6aWAK2mk|@q+FZ- +qMpJQ0078J000;O0000000000005+cWiSN*aA|NaUukZ1WpZv|Y%g|Wb1!FUbS`jtP)h*<6ay3h000O +81DB*+D?VvoECv7o#}xno9smFU0000000000q=8*W1pshqa4%nJZggdGZeeUMc4KodZDn#}b#iH8Y%X +wlP)h*<6ay3h000O81DB*+9MU-WZVmtd3oZZv9{>OV0000000000q=Cgv1pshqa4%nJZggdGZeeUMc4 +Kodb9G{NWpZc!JX>N37a&BR4FLq;dFLq^eb7^mGV{dMBa&K%daCuNm0Rj{Q6aWAK2mk|@q+Civ`PSVI000Ig000&M +0000000000005+c^K=COaA|NaUv_0~WN&gWQbj>TO+_wpb97Kk0Rj{Q6aWAK2mk|@q+9}$5PE3_001i +!000*N0000000000005+c1cU_uaA|NaUv_0~WN&gWUtei%X>?y-E^v8JO928D0~7!N00;mBm!w>Pt+h +VU0000y0RR9N00000000000001_fuf290B~t=FJE?LZe(wAFLq^aWN&gVba-@7O928D0~7!N00;mBm! +w?A+(2Dr0RR9l0ssIc00000000000001_fv1ZF0B~t=FJE?LZe(wAFJob2Xk}w>Zgg^QY%fenLq$$gM +J{xBbWlqH0u%!j0000800Wn#TrEp^6o&x-05k&t03-ka00000000000HlFVjRgR3X>c!Jc4cm4Z*nhV +VPj}zV{dMBa&K%eUtei%X>?y-E^v8JO928D0~7!N00;mBm!w?zZ%<9R0ssKX1^@sc00000000000001 +_fftVj0B~t=FJE?LZe(wAFJob2Xk}w>Zgg^QY%gD9ZDcNRc~DCM0u%!j0000800Wn#T)^1=w6g~Q0J< +3f03!eZ00000000000HlEqk_7;8X>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eVPs)&bY*fbaCuNm0Rj{Q6a +WAK2mk|@q+E>g72ewd005x}001EX0000000000005+c0-6N?aA|NaUv_0~WN&gWV_{=xWn*t{baHQOF +Job2Xk{*Nc~DCM0u%!j0000800Wn#TsNi>fO`}G0G>(!044wc00000000000HlE&odp1JX>c!Jc4cm4 +Z*nhVVPj}zV{dMBa&K%eV{dMBa&K&GWpXZXc~DCM0u%!j0000800Wn#T*>!#*8m3q00I#J04D$d0000 +0000000HlH2u>}BdX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eW@&6?cXDBHaAk5XaCuNm0Rj{Q6aWAK2mk +|@q+BcRq|USk000pa001Tc0000000000005+cAh`tqaA|NaUv_0~WN&gWV_{=xWn*t{baHQOFKA_Ta% +ppPX=8IPaCuNm0Rj{Q6aWAK2mk|@q+9?10006200000001EX0000000000005+c7{CPpaA|NaUv_0~W +N&gWV_{=xWn*t{baHQOFK~G-ba`-PWKc^10u%!j0000800Wn#T&?L~zwZVB04o##03`qb0000000000 +0HlFgzy$zsX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eb7gXAVQgu7WiD`eP)h*<6ay3h000O81DB*+*gSt +_{IdW6051Um04o3h00000000000HlGj$prv#X>c!Jc4cm4Z*nhVVPj}zV{ +dMBa&K%eV_{=xWpgiIUukY>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+G!IfRL#L000#b001oj00000000000 +05+ct;z)eaA|NaUv_0~WN&gWV_{=xWn*t{baHQOFJob2Xk~LRW@&6?Ut?ioXk{*Nc~DCM0u%!j00008 +00Wn#T)g%7w?+a00BQvQ04@Lk00000000000HlGT&;c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eV_{= +xWpgibWn^h{Ut?ioXk{*Nc~DCM0u%!j0000800Wn#ToZ&VGCl$T0Nn!s02=@R00000000000HlF4(** +!c!Jc4cm4Z*nhVWpZ?BW@#@>Nkc_WQ$?y-E^v8JO928D0~7!N00;mBm!w=TAg$q^0 +00300000V00000000000001_fjHI$0B~t=FJE?LZe(wAFJonLbZKU3FJE76VQFq(UoLQYP)h*<6ay3h +000O81DB*+DK4J*Ohy6#IVc1G9smFU0000000000q=6IH1pshqa4%nWWo~3|axY_La&&2CX)j}8V`Xx +5E^uXSP)h*<6ay3h000O81DB*+o%{pWkpln#at#0g8vp +c!Jc4cm4Z*nhVWpZ?BW@#^Qc`kH$aAjmrO928D0~7!N00;mBm!w>+57eEk5C8zfH~;`200000000000 +001_fuSJ?0B~t=FJE?LZe(wAFJx(RbZlv2FHA{8MNU&iE_8TwP)h*<6ay3h000O81DB*+aKqc3WdQ&H +aRLAU9{>OV0000000000q=AYu2mo+ta4%nWWo~3|axY|Qb98KJVlQ7`X>MtBUtcb8c~DCM0u%!j0000 +800Wn#TwO`!FEc9u0Q;c;0384T00000000000HlE|Gzb82X>c!Jc4cm4Z*nhWX>)XJX<{#9Z*6d4bS` +jtP)h*<6ay3h000O81DB*+oxRn7unPbHL@EFPAOHXW0000000000q=A}W2mo+ta4%nWWo~3|axY|Qb9 +8KJVlQ%Kb8mHWV`XzLaCuNm0Rj{Q6aWAK2mk|@q+B7~xaS5J006W|0015U0000000000005+ch-(M{a +A|NaUv_0~WN&gWWNCABY-wUIb7OL8aCCDnaCuNm0Rj{Q6aWAK2mk|@q+Enbc@pZp0001f0RS5S00000 +00000005+c%7O?0aA|NaUv_0~WN&gWWNCABY-wUIbTcw8Wq4&!O928D0~7!N00;mBm!w>r2zmidJ^=s +#$^rl%00000000000001_f$cvD0B~t=FJE?LZe(wAFJx(RbZlv2FLX9EEn#wPE@gOSP)h*<6ay3h000 +O81DB*+TxA0plgt1B0Hy%|8vpc!Jc4cm4Z*nhWX>)XJX +<{#RbZKlZaCuNm0Rj{Q6aWAK2mk|@q+FGhZeS*~0001H0RS5S0000000000005+c-jfReaA|NaUv_0~ +WN&gWWNCABY-wUIcQZ0BWq4&!O928D0~7!N00;mBm!w=RL<`#WEdc-kk^%r900000000000001_fjvk +J0B~t=FJE?LZe(wAFJx(RbZlv2FLyRHEn#wPE@gOSP)h*<6ay3h000O81DB*+{_vtMPQ?HK0FD6w8vp +c!Jc4cm4Z*nhWX>)XPZ!b(qLq$$gMNmrt0u%!j000080 +0Wn#T>D^f+#>-10M!Ek03HAU00000000000HlGIOAY{VX>c!Jc4cm4Z*nhWX>)XPZ!ce8X>MtBUtcb8 +c~DCM0u%!j0000800Wn#Tpd)rX*>V`06+i$03HAU00000000000HlHSOb!5WX>c!Jc4cm4Z*nhWX>)X +PZ!ce8ZDDC{Utcb8c~DCM0u%!j0000800Wn#TuM4^Yc4GS02aXj02}}S00000000000HlF!O%4EXX>c +!Jc4cm4Z*nhWX>)XPZ!ctNb98cVE^v8JO928D0~7!N00;mBm!w<(00002000000000R000000000000 +01_fz^5r0B~t=FJE?LZe(wAFJx(RbaHPmaCt6td2nT9P)h*<6ay3h000O81DB*+^GNyrD+2%k1qJ{B8 +vpNkc_WQ$;RqWKc^10u%!j0000800Wn#Tmu*J +yB`4n0AvFI02}}S00000000000HlF*ehvU|X>c!Jc4cm4Z*nhbWNu+EUtei%X>?y-E^v8JO928D0~7! +N00;mBm!w=Y(-mMx0{{SS4FCWc00000000000001_fz5vo0B~t=FJE?LZe(wAFKJ|MVJ~BEWMyM6aCu +Nm0Rj{Q6aWAK2mk|@q+GpY2c!Jc4cm4Z*nhbWNu+EaA9L>VP|DuWMOn+E^v8JO928D0~7!N00 +;mBm!w<(00002000000000P00000000000001_fojhV0B~t=FJE?LZe(wAFKJ|MVJ~obE_8WtWn@rG0 +Rj{Q6aWAK2mk|@q+IQ4xg`;;000fR0{|TW0000000000005+cqt6ZiaA|NaUv_0~WN&gWX=H9;FLiWt +G&W>mbYU)Vc~DCM0u%!j0000800Wn#Tv)XzI*0)P0A>OJ02=@R00000000000HlHMd=CI{X>c!Jc4cm +4Z*nhfb7yd2V{0!%Pf%G&PDfBn0Rj{Q6aWAK2mk|@q+BWpI56S?003140018V0000000000005+cuzn +8!aA|NaUv_0~WN&gWZF6UEVPk7AUtei%X>?y-E^v8JO928D0~7!N00;mBm!w=fJDt<50RR9w1ONab00 +000000000001_fzN;s0B~t=FJE?LZe(wAFKu&YaA9L>FJ*XRWpH$9Z*FrgaCuNm0Rj{Q6aWAK2mk|@q ++BK7NB4OK003SV000^Q0000000000005+cyMhk@aA|NaUv_0~WN&gWZF6UEVPk7AWq5QhaCuNm0Rj{Q +6aWAK2mk|@q+BE%!DTiZ004%50018V0000000000005+cY>5v5aA|NaUv_0~WN&gWZF6UEVPk7AW?^h +>Vqs%zE^v8JO928D0~7!N00;mBm!w?Z?$W$}0002R0000T00000000000001_f#0ML0B~t=FJE?LZe( +wAFK}UFYhh<;Zf7q{Nkc_WQ$VP|P>XD>`iLq$$gMJ_>5K|@GIP)h*<6ay3h000O81DB*+k5CIoy8-|JK +m`B*ApigX0000000000q=Ce<4*+m!a4%nWWo~3|axZXUV{2h&X>MmPOi4pUPE$oLLQ_OgO928D0~7!N +00;mBm!w=0+9?_^0RRB*0RR9Y00000000000001_fxfm60B~t=FJE?LZe(wAFK}UFYhh<;Zf7rFUukY +>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+Gd;(2B1F004^&001EX0000000000005+cEw~Q=aA|NaUv_0~WN& +gWaA9L>VP|P>XD?r6Y-VO@Y-KKRc~DCM0u%!j0000800Wn#To@hN8dD7b09Pdd03!eZ00000000000H +lE%y$=9zX>c!Jc4cm4Z*nhiVPk7yXK8L{FJEn8Zh35JZgqGraCuNm0Rj{Q6aWAK2mk|@q+GE}+Uv*!0 +05H;001KZ0000000000005+cugVVqaA|NaUv_0~WN&gWaA9L>VP|P>XD?rEb#rWNX>N6RE^v8JO928D +0~7!N00;mBm!w=ME|=}N3IG7IEdT%@00000000000001_fw<2P0B~t=FJE?LZe(wAFK}UFYhh<;Zf7r +FaA9(DWpXZXc~DCM0u%!j0000800Wn#T;v$2k`4j@096D403-ka00000000000HlGg+7AG5X>c!Jc4c +m4Z*nhiVPk7yXK8L{FJE(Xa&=>Lb#i5ME^v8JO928D0~7!N00;mBm!w>eM00T_2LJ#M6#xJu0000000 +0000001_f&SbN0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rFbZ={AZfSaDaxQRrP)h*<6ay3h000O81DB*+f +c8zKlnMX<>L&mIDgXcg0000000000q=9AR4*+m!a4%nWWo~3|axZXUV{2h&X>MmPWMyz=Ze(R{V|ia^ +a&L8Tb1rasP)h*<6ay3h000O81DB*+Gkapc4+{VQr78dbBLDyZ0000000000q=7;24*+m!a4%nWWo~3 +|axZXUV{2h&X>MmPWNC6`V{~72a%?Vec~DCM0u%!j0000800Wn#Tq}vauHgd!0C)-j03QGV00000000 +000HlGD`VRnbX>c!Jc4cm4Z*nhiVPk7yXK8L{FJ*FaZ*p@kaCuNm0Rj{Q6aWAK2mk|@q+Bjim`YU?00 +65(001BW0000000000005+cul^4JaA|NaUv_0~WN&gWaA9L>VP|P>XD@AGa%*LBb1rasP)h*<6ay3h0 +00O81DB*+1P9*-DJcK|a+d%AApigX0000000000q=7;c5CCv#a4%nWWo~3|axZXUV{2h&X>MmPZDn*} +WMOn+E^v8JO928D0~7!N00;mBm!w<(00002000000000U00000000000001_fvP+Z0B~t=FJE?LZe(w +AFK}UFYhh<;Zf7rWc`kH$aAjmrO928D0~7!N00;mBm!w>hkL1@M82|ucga7~^00000000000001_f#^ +IC0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rWd2DZEYc6nkP)h*<6ay3h000O81DB*+33?9rCk6ljD-i$yB> +(^b0000000000q=7_M5CCv#a4%nWWo~3|axZXUV{2h&X>MmPa%FLKX>w(4Wo~qHE^v8JO928D0~7!N0 +0;mBm!w?dL_jroJpcfH7Xbhx00000000000001_fv#K-0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rZaAjj@ +W@%+|b1rasP)h*<6ay3h000O81DB*+e&vbjDJ1{^yoCS&9RL6T0000000000q=9Fe5CCv#a4%nWWo~3 +|axZXUV{2h&X>MmPbYW+6E^v8JO928D0~7!N00;mBm!w?TS~vRq3jhFkCIA2)00000000000001_fy= +)T0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rbbZKmJE^v8JO928D0~7!N00;mBm!w>R6M>F)BLD#Tl>h)B00 +000000000001_fdkAC0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rcWpZzD}u0DT+)04e|g00000000000HlGp?+^fRX>c!Jc4cm4Z*nhiVPk7yXK8L{FKlUJWo~n2b1z?C +X>MtBUtcb8c~DCM0u%!j0000800Wn#Tws?B>5?D-0J6sb04D$d00000000000HlGJ`49kbX>c!Jc4cm +4Z*nhiVPk7yXK8L{FKlUJWo~n2b1z?WaAbHcaCuNm0Rj{Q6aWAK2mk|@q+A|TMT$=X00933001EX000 +0000000005+cZW<8)aA|NaUv_0~WN&gWaBF8@a%FRGb#h~6b1zIuLq$$gMNmrt0u%!j0000800Wn#Tz +OM*&Q^i|03+rB03`qb00000000000HlHZ91#F;X>c!Jc4cm4Z*nhiYiD0_Wpi(Ja${w4FJE72ZfSI1U +oLQYP)h*<6ay3h000O81DB*+tkxS{g8~2mK?DE*AOHXW0000000000q=A*65dd&$a4%nWWo~3|axZXf +VRUA1a&2U3a&s?CNkc_WQ$3001KZ0000000000005+cH>(i0B~t=FJE?L +Ze(wAFK}#ObY^dIZDeV3b1z|VX)bViP)h*<6ay3h000O81DB*+v6UPm(F6bhvKRmWApigX000000000 +0q=8eq5dd&$a4%nWWo~3|axZXfVRUA1a&2U3a&s?jVPkJ|E^v8JO928D0~7!N00;mBm!w<(00002000 +000000X00000000000001_fn&cB0B~t=FJE?LZe(wAFK}#ObY^dIZDeV3b1!gtE_8WtWn@rG0Rj{Q6a +WAK2mk|@q+CYKQblMvmuJ^=s#zybgOBLDyZ0000000000q=8$>5dd&$a4%nWWo~3| +axZXfVRUA1a&2U3a&s?sWpZE*}a20D33@03!eZ000000000 +00HlH1$`Jr?X>c!Jc4cm4Z*nhiY+-a}Z*py9X>xNfcWG{9Z+CMpaCuNm0Rj{Q6aWAK2mk|@q+AOCAIr +f4001)u000~S0000000000005+cI@J*XaA|NaUv_0~WN&gWaCv8KWo~qHFHA{8MNU&iP)h*<6ay3h00 +0O81DB*+jgpld^8^3@rwaf8AOHXW0000000000q=7Zq5dd&$a4%nWWo~3|axZXsXKiI}baO9XUukY>b +YEXCaCuNm0Rj{Q6aWAK2mk|@q+D*D#1QHL003bD001BW0000000000005+cX5A40aA|NaUv_0~WN&gW +aCv8KWo~qHFJE76VQFq(UoLQYP)h*<6ay3h000O81DB*+$76gZl>z_&wgvzI9{>OV0000000000q=Am +!5dd&$a4%nWWo~3|axZXsXKiI}baO9bZ*FsMY-KKRc~DCM0u%!j0000800Wn#Tz2tUS^NS30Cooe03H +AU00000000000HlFn;Sm6EX>c!Jc4cm4Z*nhid1q~9Zgg`mW@&76WpXZXc~DCM0u%!j0000800Wn#Tx +B(K<>Lkb045Ot03iSX00000000000HlGKc!Jc4cm4Z*nhid1q~9Zgg`mW^ZzBVRUq5axQRrP +)h*<6ay3h000O81DB*+R|c!Jc4cm4Z*nhid1q~9Zgg`maBOvFX>KlXc~DCM0u%!j0000800Wn#T#cpx15E?~00 +0aC03ZMW00000000000HlFr77_q(X>c!Jc4cm4Z*nhid1q~9Zgg`ma%E>_cyDlYE^v8JO928D0~7!N0 +0;mBm!w>a!VtEA1ONaO3;+Nh00000000000001_f$tg;0B~t=FJE?LZe(wAFK~HhZDnqBb1!paVQy|^ +axQRrP)h*<6ay3h000O81DB*+&Pxrm%?JPhEgt{?ApigX0000000000q=Bp-5&&>%a4%nWWo~3|axZX +sXKiI}baO9raA;|6cx8BWE^v8JO928D0~7!N00;mBm!w?nXLp181^@sQ82|ts00000000000001_fw( +9V0B~t=FJE?LZe(wAFK~HhZDnqBb1!prd2D4aaCuNm0Rj{Q6aWAK2mk|@q+C@a$%TOj002@L0012T00 +00000000005+c?Jp7laA|NaUv_0~WN&gWaCv8KWo~qHFLZBfWo|BTc~DCM0u%!j0000800Wn#Tn`oX* +}zNy0Oc!Jc4cm4Z*nhid1q~9Zgg`mb#7^MbaH8KXD)DgP)h*< +6ay3h000O81DB*++ljQdZw&wdFDC#18~^|S0000000000q=Be}5&&>%a4%nWWo~3|axZXsXKiI}baO9 +tbZKlZaCuNm0Rj{Q6aWAK2mk|@q+B%JESR?+0079H001Ze0000000000005+cQIZk>aA|NaUv_0~WN& +gWaCv8KWo~qHFJ@_MbY*gLFJE72ZfSI1UoLQYP)h*<6ay3h000O81DB*+HQGOr&ISMg2^9bUD*ylh00 +00000000q=8Pd5&&>%a4%nWWo~3|axZXsXKiI}baO9eZ*py6baZ8Mb1z?CX>MtBUtcb8c~DCM0u%!j0 +000800Wn#T#kzU%pe5-08kJB04o3h00000000000HlFsxe@?yX>c!Jc4cm4Z*nhid1q~9Zgg`mW^ZzB +VRUq5a&s?VZDDY5X>MmOaCuNm0Rj{Q6aWAK2mk|@q+9@kTrEcp002`j001Wd0000000000005+c&b|@ +=aA|NaUv_0~WN&gWaCv8KWo~qHFKlIaWpZ;bUtei%X>?y-E^v8JO928D0~7!N00;mBm!w>W%;x_hKL7 +wCF985200000000000001_fm+NG0B~t=FJE?LZe(wAFK~HhZDnqBb1!UVcx7^PFJEn8aByjEXD)DgP) +h*<6ay3h000O81DB*+sE}g^aw`A;UD5ymB>(^b0000000000q=CT;698~&a4%nWWo~3|axZXsXKiI}b +aO9kWq4(Bb1!gtbZBpGE^v8JO928D0~7!N00;mBm!w>RZYH8+0{{T}2LJ#k00000000000001_fp#|& +0B~t=FJE?LZe(wAFK~HhZDnqBb1!prd2D5KFJE72ZfSI1UoLQYP)h*<6ay3h000O81DB*+d;aVl8v_6 +U@C*O|CjbBd0000000000q=6qh698~&a4%nWWo~3|axZXsXKiI}baO9rba`xLb1z?QVQ_G1Zf7oVc~D +CM0u%!j0000800Wn#Tt|zc!Jc4cm4Z*nhid2n)XYG +q?|UubV{YjZD5Nkc_WQ$?y-E^v8JO928D0~7!N00;mBm!w=DWihTY3;+OF +IsgD900000000000001_fx|)*0B~t=FJE?LZe(wAFK~Hqa&Ky7V{~6=Z*OaJFJEbGaBMDcc~DCM0u%! +j0000800Wn#TmS$700IC20000003-ka00000000000HlF8PZI!eX>c!Jc4cm4Z*nhid2n)XYGq?|Uub +V{YjZDfc`kH$aAjmrO928D0~7!N00;mBm!w>>X1_ld0RR9k0ssIr00000000000001_fqPFA0B~t=FJ +E?LZe(wAFK~Hqa&Ky7V{~6=Z*OaJFJEbHUvP47V`X!5FJE72ZfSI1UoLQYP)h*<6ay3h000O81DB*+F +eP(;9Sr~gxGw+zHUIzs0000000000q=Dm5698~&a4%nWWo~3|axZXsaB^>IWn*+-Xm4+8b1z?MZeMV6 +Z)0V1b1z?MZeMV6Z)0V1b1rasP)h*<6ay3h000O81DB*+lIEYw;0*u(o+khR8~^|S0000000000q=8g +k698~&a4%nWWo~3|axZdaadl;LbaO9ENkc_WQ$c!Jc4cm4Z*nhkWpQ<7 +b98erUukZ1WpZv|Y+rSBX>4;YaCuNm0Rj{Q6aWAK2mk|@q+Bc!Jc4cm4Z*nhkWpQ<7b98erVRdw9E^v8JO928D0 +~7!N00;mBm!w?jH2{Vj0RRBH0RR9U00000000000001_f#9PP0B~t=FJE?LZe(wAFLGsZb!BsOb1!3M +a&&VpaCuNm0Rj{Q6aWAK2mk|@q+BA-pMN|90015b0015U0000000000005+cH>DE*aA|NaUv_0~WN&g +Wa%FLKWpi|MFJo_QaA9;VaCuNm0Rj{Q6aWAK2mk|@q+HhC;@HF!005py0018V0000000000005+cuc# +9MaA|NaUv_0~WN&gWa%FLKWpi|MFJo_SYiVV3E^v8JO928D0~7!N00;mBm!w>s@nkxH1polC5C8xo00 +000000000001_fv~(20B~t=FJE?LZe(wAFLGsZb!BsOb1!9hV`Xr3X>V?GE^v8JO928D0~7!N00;mBm +!w?Nl?p$C1ONb>4gdfg00000000000001_fpEeT0B~t=FJE?LZe(wAFLGsZb!BsOb1!IRY;Z1cc~DCM +0u%!j0000800Wn#TzGY&TWA3Q0Nw%s0384T00000000000HlE|#}fc>X>c!Jc4cm4Z*nhkWpQ<7b98e +rXm4+8b1rasP)h*<6ay3h000O81DB*+*UJxd8wGAp`&bAOHXW0000000000q= +6am698~&a4%nWWo~3|axZdaadl;LbaO9oVPk7yXJvCPaCuNm0Rj{Q6aWAK2mk|@q+FSfF|d^(006aj0 +01BW0000000000005+c5b_fMaA|NaUv_0~WN&gWa%FLKWpi|MFLPycb7^mGb1rasP)h*<6ay3h000O8 +1DB*+tVxz-n+5;?;t&7;Bme*a0000000000q=DlT6aa8(a4%nWWo~3|axZdaadl;LbaO9rbYXOLb6;a +`WMy+MaCuNm0Rj{Q6aWAK2mk|@q+C%FOu1VG003YM001HY0000000000005+cz#0?)aA|NaUv_0~WN& +gWa%FLKWpi|MFLQKqbz^jOa%FQaaCuNm0Rj{Q6aWAK2mk|@q+BN|=}6Ql007c}0012T000000000000 +5+cTOSkvaA|NaUv_0~WN&gWa%FLKWpi|MFLiWjY;!Jfc~DCM0u%!j0000800Wn#T*0ZW%i93}0Pg|-0 +3HAU00000000000HlFxNE85YX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlPZdLq$$gMNmrt0u%!j0000800Wn# +TsG9SVblNs038AV03rYY00000000000HlF|N)!NaX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ7`X>MtBUtcb +8c~DCM0u%!j0000800Wn#TzQYmW8?_{0Ma4=03!eZ00000000000HlGHOB4WbX>c!Jc4cm4Z*nhkWpi +(Ac4cg7VlQxVZ+2;9WpZ;aaCuNm0Rj{Q6aWAK2mk|@q+9?100062000000018V0000000000005+cx> +XbaaA|NaUv_0~WN&gWa%FRGY<6XAX<{#Mc`kH$aAjmrO928D0~7!N00;mBm!w=BUcD020ssK@2LJ#g0 +0000000000001_f%#Pw0B~t=FJE?LZe(wAFLGsbZ)|pDY-wUIa%FIDa&%>Kb1rasP)h*<6ay3h000O8 +1DB*+@J09GSqA_B6d3>jApigX0000000000q=5}t6aa8(a4%nWWo~3|axZdab8l>RWo&6;FLQKqbz^j +ME^v8JO928D0~7!N00;mBm!w>=P~v;>0001h0ssIk00000000000001_fu&#+0B~t=FJE?LZe(wAFLG +sbZ)|pDY-wUIa%FRGY<6XGb1z?CX>MtBUtcb8c~DCM0u%!j0000800Wn#TxazeYN!GL00#yD04x9i00 +000000000HlH7VH5yxX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ%Kb8l>RWpZ;bVPbQ1a$#e1E^v8JO928D0 +~7!N00;mBm!w>>3B}>V0ssK$1^@sp00000000000001_fzo6Y0B~t=FJE?LZe(wAFLGsbZ)|pDY-wUI +a%FRGY<6XGb1!3ZX>?_BX>V>WaCuNm0Rj{Q6aWAK2mk|@q+IT4&hSnG008I)001rk0000000000005+ +c;Aa#7aA|NaUv_0~WN&gWa%FRGY<6XAX<{#OWpi(Ac4cyNFJ*XRWpH$9Z*FrgaCuNm0Rj{Q6aWAK2mk +|@q+Bnjaj@eT005L;001rk0000000000005+cdTJB^aA|NaUv_0~WN&gWa%FRGY<6XAX<{#OWpi(Ac4 +cyNFLGsbZ)|mRX>V>WaCuNm0Rj{Q6aWAK2mk|@q+I`&@=9w0001Ba000;O0000000000005+cse%*$a +A|NaUv_0~WN&gWa%p2|FHA{8MNU&iP)h*<6ay3h000O81DB*+VS}l~00;m8$`=3t8~^|S0000000000 +q=8C>6aa8(a4%nWWo~3|axZdeV`wj5UukY>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+HT%V^fI>007t?000~ +S0000000000005+cgpCvcaA|NaUv_0~WN&gWa%p2|FJE76VQFq(UoLQYP)h*<6ay3h000O81DB*+g|_ +&WY6<`V;U@q9AOHXW0000000000q=8476aa8(a4%nWWo~3|axZdeV`wj5V`Xe?Uw3I_bZB!faCuNm0R +j{Q6aWAK2mk|@q+EY4?tmV2XaBN{?WiD`eP)h*<6ay3h000O81DB*+9$M9mHv<3wPzV43A^-pY0000 +000000q=9c26##H)a4%nWWo~3|axZdeV`wj5Wq5FJa&%v2Z*py6bS`jtP)h*<6ay3h000O81DB*+Nz} +L7n*aa+2>}2A9smFU0000000000q=Dud6##H)a4%nWWo~3|axZdeV`wj5Wq5RDZgXjGZZ2?nP)h*<6a +y3h000O81DB*+?ZLwqhXDWp9|HgY8vpc!Jc4cm4Z*nhk +X=7+FUukZ0aAjk3E^v8JO928D0~7!N00;mBm!w=4tL7WG0{{S-3;+Nh00000000000001_ffOkf0B~t +=FJE?LZe(wAFLG&PXfI!EZ)aa}Wo~3;axQRrP)h*<6ay3h000O81DB*+x)16eB>?~c)C2$k82|tP000 +0000000q=5)66##H)a4%nWWo~3|axZdeV`wj5Y;SLHE^v8JO928D0~7!N00;mBm!w?1DATi}0RRAU1p +ojZ00000000000001_fn+Wf0B~t=FJE?LZe(wAFLG&PXfI!Gb!=>3W@&6?E^v8JO928D0~7!N00;mBm +!w=5p;s-11ONb+8vpP0000000000005+c12q)@aA|NaUv_0~WN&gWa%p2|FJEw +JV{0yOc~DCM0u%!j0000800Wn#T+$f4V2=g>0L>Ht02%-Q00000000000HlE%HWdJHX>c!Jc4cm4Z*n +hkX=7+FUvgn|X>TrYc~DCM0u%!j0000800Wn#T*fi2R9_AN0MAVT0384T00000000000HlH9JQV +c!Jc4cm4Z*nhkX=7+FUvqG2Zf<3Ab1rasP)h*<6ay3h000O81DB*+=1~*U+yDRoUjYCB8UO$Q000000 +0000q=9@(6##H)a4%nWWo~3|axZdeV`wj5b97;2Yc6nkP)h*<6ay3h000O81DB*+VA>K~(h~px<5&OyA^-pY0000000000q=BtX6##H)a4%nWWo~3|axZdeV`wj5cWG`jGGAkFZgX#JWiD`eP)h +*<6ay3h000O81DB*+Ocs5dyaE6Kg$Dot8~^|S0000000000q=CO-6##H)a4%nWWo~3|axZdeV`wj5cW +G{9Z+CMpaCuNm0Rj{Q6aWAK2mk|@q+Fy1raj#P007?#001Qb0000000000005+cwPY0laA|NaUv_0~W +N&gWa%p2|FJE_QZe(wFb6;|0Ze(S0WpXZXc~DCM0u%!j0000800Wn#T<7TYCPM`P089-402u%P00000 +000000HlG{XB7Z&X>c!Jc4cm4Z*nhkX=7+FUw3k0a4v9pP)h*<6ay3h000O81DB*+4r@hGjR61vdIJC +e7XSbN0000000000q=8Ru6##H)a4%nWWo~3|axZdeV`wj7Vq-3Fc~DCM0u%!j0000800Wn#TuS@J;(! +PM08}Ud02u%P00000000000HlEtZxsM=X>c!Jc4cm4Z*nhkX=7+FVQgt*aA|NaUv_0~WN&gWa%p2|FJo_PZ*pIBa%pgEWpplZc~DCM0u%!j0000800Wn#T%Jr)@stMu0NWb? +02=@R00000000000HlEes}%rnX>c!Jc4cm4Z*nhkX=7+FV{dGAZEkZeaCuNm0Rj{Q6aWAK2mk|@q+AF +8Tsvu3008lc0RS5S0000000000005+c&$1N&aA|NaUv_0~WN&gWa%p2|FJo_Rb8l>AE^v8JO928D0~7 +!N00;mBm!w>aOwvi-0RR991pojY00000000000001_fpH2J0B~t=FJE?LZe(wAFLG&PXfI=LZgX^UVQ +FqIaCuNm0Rj{Q6aWAK2mk|@q+ATrV|T>`004d!0015U0000000000005+ciVPM2aA|NaUv_0~WN&gWa +%p2|FJo_RbYW?3WpZ;aaCuNm0Rj{Q6aWAK2mk|@q+BAsETP2*0037R000{R0000000000005+cixL(9 +aA|NaUv_0~WN&gWa%p2|FJo_RbaHQOE^v8JO928D0~7!N00;mBm!w=oHd#|A2LJ#;AOHX&000000000 +00001_fr%Ox0B~t=FJE?LZe(wAFLG&PXfI@CW?^+~bYF9Hd2D5KE^v8JO928D0~7!N00;mBm!w=jb~= +{V0RR921ONaW00000000000001_f$$*~0B~t=FJE?LZe(wAFLG&PXfI@GVP|e{b7d}Yc~DCM0u%!j00 +00800Wn#T;T=V0L=pc06z%;02u%P00000000000HlEdBo+X0X>c!Jc4cm4Z*nhkX=7+FWo>V2X)bViP +)h*<6ay3h000O81DB*+B1j?A?EnA(f&u^l8UO$Q0000000000q=5w}765Q*a4%nWWo~3|axZdeV`wjB +a&m8Sb1rasP)h*<6ay3h000O81DB*+YTj=YjRF7wlLi0)9smFU0000000000q=70a765Q*a4%nWWo~3 +|axZdeV`wjCX>4U*aB^>Wc`k5yP)h*<6ay3h000O81DB*+rn^1YIRpRzv4V4X?kTYaCuNm0Rj{Q6aWAK2mk|@q+HXxi%mld0043&0018V00 +00000000005+cW-t~2aA|NaUv_0~WN&gWa%p2|FKB6JXl!X`Xmn+AE^v8JO928D0~7!N00;mBm!w?aO +}vIG1pol26951h00000000000001_f#y3F0B~t=FJE?LZe(wAFLG&PXfJAWZ*DGdc~DCM0u%!j00008 +00Wn#TsXm4$cqF30JIDM02=@R00000000000HlFNK^6dTX>c!Jc4cm4Z*nhkX=7+FYISgVbY*fbaCuN +m0Rj{Q6aWAK2mk|@q+EIu*B|Z;006W$000^Q0000000000005+c3Pu(HaA|NaUv_0~WN&gWa%p2|FKl +6XZ*_DoaCuNm0Rj{Q6aWAK2mk|@q+Hn`#m=b@002xo000;O0000000000005+cFjN)*aA|NaUv_0~WN +&gWa%p2|FKlUcWiD`eP)h*<6ay3h000O81DB*+0gQ8P>H`1(!3_Wa9{>OV0000000000q=64)765Q*a +4%nWWo~3|axZdeV`wjIX?A5_a%FC0WpXZXc~DCM0u%!j0000800Wn#T&93IE@}<{0JJaw02=@R00000 +000000HlF7Xcho)X>c!Jc4cm4Z*nhkX=7+FY;R|0X>MmOaCuNm0Rj{Q6aWAK2mk|@q+H%ovqw(~0009 +a000^Q0000000000005+c*>)BHaA|NaUv_0~WN&gWa%p2|FKuCRYjtogaCuNm0Rj{Q6aWAK2mk|@q+I +{37zAtu006lZ000{R0000000000005+cV1X6@aA|NaUv_0~WN&gWa%p2|FKuOEb9HiME^v8JO928D0~ +7!N00;mBm!w?(XHTTo1pojn6951k00000000000001_fdz*a0B~t=FJE?LZe(wAFLG&PXfJSKWMpY>X +D)DgP)h*<6ay3h000O81DB*+4#pLNa{&MVJOcm#82|tP0000000000q=6KT765Q*a4%nWWo~3|axZde +V`wjMVP|D>E^v8JO928D0~7!N00;mBm!w=c06t&41ONa;4FCWe00000000000001_fxeCw0B~t=FJE? +LZe(wAFLG&PXfJSKY-MzGWiD`eP)h*<6ay3h000O81DB*+%UGc|M+yJ{l`8-M82|tP0000000000q=B +-N765Q*a4%nWWo~3|axZdeV`wjMVQyt?E^v8JO928D0~7!N00;mBm!w=U^9O+jsO4}0000000 +0000001_fiRvH0B~t=FJE?LZe(wAFLG&PXfJSbWps3TE^v8JO928D0~7!N00;mBm!w=sZsN5RF8~1e> +i_^800000000000001_fz`bh0B~t=FJE?LZe(wAFLG&PXfJSbZ)b94b8{|mc~DCM0u%!j0000800Wn# +T;lA|u?PtO0OB7203ZMW00000000000HlEc!Jc4cm4Z*nhkX=7+FaB^>Fa%FRKUt(c$E^v8 +JO928D0~7!N00;mBm!w>k#QK5X3jhG0FaQ7=00000000000001_fob*@0B~t=FJE?LZe(wAFLG&PXfJ +SbZ*6dNE^v8JO928D0~7!N00;mBm!w=+nETT?0ssJS1pojX00000000000001_fq()R0B~t=FJE?LZe +(wAFLG&PXfJSbZ**^CZ)`4bc~DCM0u%!j0000800Wn#TmS$700IC20000002u%P00000000000HlHQ1 +Q!5sX>c!Jc4cm4Z*nhkX=7+FaCt6td2nT9P)h*<6ay3h000O81DB*+UBa%{bpQYWrT_o{8UO$Q00000 +00000q=7627XWZ+a4%nWWo~3|axZdeV`wjOWoKz`ZZ2?nP)h*<6ay3h000O81DB*+(m50z76kwRPZ0n +B7ytkO0000000000q=DH57XWZ+a4%nWWo~3|axZdeV`wjOWpHvXaCuNm0Rj{Q6aWAK2mk|@q+F6|18q +eG008c!Jc4cm4Z*nhkX=7+Fb97;Jb#pFoc~DCM0u%!j0000800Wn#T%p1%e7zO`0B&gj02u%P0 +0000000000HlF2Hx~eKX>c!Jc4cm4Z*nhkX=7+Fb98xZWiD`eP)h*<6ay3h000O81DB*+@d~C;)d2ti +>I47)8UO$Q0000000000q=6+)7XWZ+a4%nWWo~3|axZdeV`wjPba`xLWG--dP)h*<6ay3h000O81DB* ++;zZfg{vZGV6OI4?8UO$Q0000000000q=7O}7XWZ+a4%nWWo~3|axZdeV`wjPd2V!JcrI{xP)h*<6ay +3h000O81DB*+JO8{DwI2Wgahw1E82|tP0000000000q=9I07XWZ+a4%nWWo~3|axZdeV`wjQVPb4$E^ +v8JO928D0~7!N00;mBm!w=eBh$bB0{{Rj4FCWl00000000000001_fmD$f0B~t=FJE?LZe(wAFLG&PX +fJeSa&2jDVQgP?Xk~3>E^v8JO928D0~7!N00;mBm!w=%nNysfC;$M!xc~qd00000000000001_fs&OM +0B~t=FJE?LZe(wAFLG&PXfJeScyumsc~DCM0u%!j0000800Wn#T%+G49?Ap&0J{zV02u%P000000000 +00HlFuz83&+X>c!Jc4cm4Z*nhkX=7+FbZBL5WiD`eP)h*<6ay3h000O81DB*+QFZoEM*si-W&i*H8UO +$Q0000000000q=9I|7XWZ+a4%nWWo~3|axZdeV`wjQXk~3>b1rasP)h*<6ay3h000O81DB*+D`dvxmm +UBB6^sA?9RL6T0000000000q=Dzd7XWZ+a4%nWWo~3|axZdeV`wjQa$#d-Vqs%zE^v8JO928D0~7!N0 +0;mBm!w>m2QL?-3IG7>Bme*y00000000000001_fw|%r0B~t=FJE?LZe(wAFLG&PXfJefWo0gKc~DCM +0u%!j0000800Wn#TwPdof_DM{05Ajq02u%P00000000000HlGF?H2%WX>c!Jc4cm4Z*nhmZ*6R8FHA{ +8MNU&iP)h*<6ay3h000O81DB*+4%9(m>;M1&IspIx9RL6T0000000000q=7;37XWZ+a4%nWWo~3|axZ +jmZER^TUtei%X>?y-E^v8JO928D0~7!N00;mBm!w=mjhh4m8vp=!W&i*j00000000000001_foSm;0B +~t=FJE?LZe(wAFLZBhY-ulFaA9(DWpXZXc~DCM0u%!j0000800Wn#TzPlZ;SU7>0HX{502lxO000000 +00000HlGX3>W}#X>c!Jc4cm4Z*nhmZ*6R8FJE$HE^v8JO928D0~7!N00;mBm!w>??-FOl0002~0000R +00000000000001_f$9+$0B~t=FJE?LZe(wAFLZBhY-ulFba`-Pb1rasP)h*<6ay3h000O81DB*+D=7f +@8~^|S8UO$Q8UO$Q0000000000q=D!X7yxi-a4%nWWo~3|axZjmZER^TaCt6td2nT9P)h*<6ay3h000 +O81DB*+U08L3cLD$aFa!Vq8vpc!Jc4cm4Z*nhmZ*6R8U +w1EGUukY>bYEXCaCuNm0Rj{Q6aWAK2mk|@q+FX+8NM?K001!?0015U0000000000005+cw-y)xaA|Na +Uv_0~WN&gWbZ>2JX2JXHHFHA{8MNU&iP)h*<6ay3h000O81D +B*+4>fbBSpon6CHHFJE72ZfSI1U +oLQYP)h*<6ay3h000O81DB*+C}GG5Lkj=^l`H@N9smFU0000000000q=C*Q7yxi-a4%nWWo~3|axZjp +b#rucbZ>HHFJEDBX)bViP)h*<6ay3h000O81DB*+-Z!^SnG*m27f=8IAOHXW0000000000q=8K_7yxi +-a4%nWWo~3|axZjpb#rucbZ>HHFJEn8V{daVaCuNm0Rj{Q6aWAK2mk|@q+Fd&hL9Kp003+W001HY000 +0000000005+cBt;kiaA|NaUv_0~WN&gWbaHibbaQlXa%C@HZ*XO9b8~DiaCuNm0Rj{Q6aWAK2mk|@q+ +DshT+hV;003$P001Ze0000000000005+cd`TDpaA|NaUv_0~WN&gWbaHibbaQlXa%C@Hb8~E8V{dMAb +YX6Eb1rasP)h*<6ay3h000O81DB*+QT`2v01yBGNk#wwA^-pY0000000000q=AP^7yxi-a4%nWWo~3| +axZjpb#rucbZ>HHFJE_QZe(wFb1rasP)h*<6ay3h000O81DB*+000000ssI2000009{>OV000000000 +0q=Cm<7yxi-a4%nWWo~3|axZjpb#rucbZ>HHFK~G-ba`-PWKc^10u%!j0000800Wn#Tv6)%sD=Un07V +1<03QGV00000000000HlEiTo?dwX>c!Jc4cm4Z*nhna%^mAVlyvHNkc_WQ$;Rxcyv%p0Rj{Q6aWAK2m +k|@q+EQ~3x|jb002W90018V0000000000005+c$zB)$aA|NaUv_0~WN&gWb#iQMX<{=kUtei%X>?y-E +^v8JO928D0~7!N00;mBm!w<<^35^S1polR6#xJy00000000000001_fsSby0B~t=FJE?LZe(wAFLiQk +Y-wUMFJEF|b7fy+Z*Fd7V{~b6ZZ2?nP)h*<6ay3h000O81DB*+L_9wSh!X$+yF>s0BLDyZ000000000 +0q=Bbz7yxi-a4%nWWo~3|axZmqY;0*_GcR9bZ)|L3V{~b6ZgVbhc~DCM0u%!j0000800Wn#Tt4l*+rS +C{0Lvx-04D$d00000000000HlF%gBSpCX>c!Jc4cm4Z*nhna%^mAVlyvaa%FLKWpi|2ZDn+5Z)9^WaC +uNm0Rj{Q6aWAK2mk|@q+El}#Nj>x006)O0018V0000000000005+cb&ePSaA|NaUv_0~WN&gWb#iQMX +<{=kUv_13b7^mGE^v8JO928D0~7!N00;mBm!w?L(?MJnEC2v7rvLyU00000000000001_f$)zQ0B~t= +FJE?LZe(wAFLiQkY-wUMFJo_RZe?S1X>V>WaCuNm0Rj{Q6aWAK2mk|@q+A_5v5R#p003*L001Qb0000 +000000005+cM7$UPaA|NaUv_0~WN&gWb#iQMX<{=kV{dM5Wn*+{Z*FjJZ)`4bc~DCM0u%!j0000800W +n#Tq+_ElGh6W0N^G703iSX00000000000HlHZ=NJHRX>c!Jc4cm4Z*nhna%^mAVlyvgcw=R7bZKvHb1 +rasP)h*<6ay3h000O81DB*+LvH{za0>tcO)3BY9RL6T0000000000q=6Fj7yxi-a4%nWWo~3|axZmqY +;0*_GcRUoWo%?~E^v8JO928D0~7!N00;mBm!w>YBoqFe0{{S22><{e00000000000001_fxZ720B~t= +FJE?LZe(wAFLiQkY-wUMFJ@_MWpHnEbS`jtP)h*<6ay3h000O81DB*+$mQ4a9vT1uC0zgjA^-pY0000 +000000q=A+L831r;a4%nWWo~3|axZmqY;0*_GcRy&Z)|O0ZeeF-axQRrP)h*<6ay3h000O81DB*+?t~ +cFRsaA1T>t<88~^|S0000000000q=EDu831r;a4%nWWo~3|axZmqY;0*_GcRy?E_8WtWn@rG0Rj{Q6a +WAK2mk|@q+FCQSeUC;$Ke0000 +000000q=6|=831r;a4%nWWo~3|axZmqY;0*_GcRLrZgg^KVlQxcZ*XO9b8~DiaCuNm0Rj{Q6aWAK2mk +|@q+I=*rLYMJ004U(001Na0000000000005+c`ehjaaA|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~Ob8 +lm7b1rasP)h*<6ay3h000O81DB*+r6+4rF984mW&;2KG5`Po0000000000q=7|m831r;a4%nWWo~3|a +xZmqY;0*_GcRLrZgg^KVlQQFb7OL8aCBvEFJE72ZfSI1UoLQYP)h*<6ay3h000O81DB*+F}KaDEeQYs +03!eZGynhq0000000000q=Ce6831r;a4%nWWo~3|axZmqY;0*_GcRLrZgg^KVlQQFb7OL8aCBvEFJo_ +RZe?S1X>V>WaCuNm0Rj{Q6aWAK2mk|@q+9{j2aU7@003PM002P%0000000000005+cLwXqiaA|NaUv_ +0~WN&gWb#iQMX<{=kV{dMBa%o~OWo>g~a%pgMWo|EJZF6ICX>fF9ZeM0)bYo~=cW-iQWpXZRb5KhG0u +%!j0000800Wn#Ts*#kXJ!}x0N`5y051Rl00000000000HlFde;EL9X>c!Jc4cm4Z*nhna%^mAVlyveZ +*FvQX<{#BZF6ICX>fF9ZZBqKbYo~PaCuNm0Rj{Q6aWAK2mk|@q+HBW+h`*J001@u001!n0000000000 +005+c378oGaA|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~OWo>g~a%pgMWo|EWWpQ<7b963nc~DCM0u%! +j0000800Wn#T&+hiGAIiG03#&;05Sjo00000000000HlF?nHd0ZX>c!Jc4cm4Z*nhna%^mAVlyveZ*F +vQX<{#BZF6ICX>fF9ZZC3Wb8v5Nb7d}Yc~DCM0u%!j0000800Wn#T$FWG5Lp5M0L=yf03`qb0000000 +0000HlHQq!|EkX>c!Jc4cm4Z*nhna%^mAVlyvjbaZesFJE72ZfSI1UoLQYP)h*<6ay3h000O81DB*+- +Jp&jBn|)oA~65}CjbBd0000000000q=Ap8831r;a4%nWWo~3|axZmqY;0*_GcRa#bZ{~+V{dM5Wn*+{ +Z*DGdc~DCM0u%!j0000800Wn#T!CgvHTeSo0LBXd03rYY00000000000HlHVwHW|#X>c!Jc4cm4Z*nh +na%^mAVlyvjbaZesFK}{iVr4FHc~DCM0u%!j0000800Wn#Tm-|*(4GMR0Oc!Jc4cm4Z*nhna%^mAVlyvwbZKlaUtei%X>?y-E^v8JO928D0~7!N00;mBm!w>M%N&Ep1^ +@tD5dZ)t00000000000001_ff2kJ0B~t=FJE?LZe(wAFLiQkY-wUMFLiWjY%gPPZf<2`bZKvHE^v8JO +928D0~7!N00;mBm!w>{u&hkt0RRAe1ONab00000000000001_fgHmb0B~t=FJE?LZe(wAFLiQkY-wUM +FLiWjY%g$fZ+LkwaCuNm0Rj{Q6aWAK2mk|@q+EJjmcV5T005RB001KZ0000000000005+cJ;fOSaA|N +aUv_0~WN&gWb#iQMX<{=kb#!TLFLGsZb!BsOE^v8JO928D0~7!N00;mBm!w>BAaf@t1pojp4FCWn000 +00000000001_f#c8_0B~t=FJE?LZe(wAFLiQkY-wUMFLiWjY%g+Ub8v5Nb7d}Yc~DCM0u%!j0000800 +Wn#TsdH}KgAUQ03%BP03iSX00000000000HlFT))@eBX>c!Jc4cm4Z*nhna%^mAVlyvwbZKlaa%FUKc +`k5yP)h*<6ay3h000O81DB*+Z2Zq40~i1R*-ZcdAOHXW0000000000q=8WE831r;a4%nWWo~3|axZmq +Y;0*_GcR>?X>2cZb8KHOaCuNm0Rj{Q6aWAK2mk|@q+IVav5^xA007k%001rk0000000000005+ckpvn +5aA|NaUv_0~WN&gWb#iQMX<{=kb#!TLFLQHjUu|J@V`yJ!Z*z2RVQpnDaCuNm0Rj{Q6aWAK2mk|@q+G +A2$i)>300567001Ze0000000000005+c@C_OOaA|NaUv_0~WN&gWb#iQMX<{=kb#!TLFLQHjbaG*Cb8 +v5RbS`jtP)h*<6ay3h000O81DB*+(~0GmMhpM|dnf<^BLDyZ0000000000q=8Eq8US!?X>2caX>Db1b#yLpc~DCM0u%!j0000800Wn#TvT+pdp#2X0GK-f03QGV0000000000 +0HlG^BpLv4X>c!Jc4cm4Z*nhna%^mAVlyvwbZKlab#iPjaCuNm0Rj{Q6aWAK2mk|@q+FJ$6kmq{004R +f001BW0000000000005+cOgI_?X>2cdVQ +F+OaCuNm1qJ{B006fEw*iob006E)8UO$Q +""" + + +if __name__ == "__main__": + main() diff --git a/python/libffi-8.dll b/python/libffi-8.dll new file mode 100644 index 0000000000000000000000000000000000000000..8ebbbe8d5f3be43c2c27a2454e76d809954185fd Binary files /dev/null and b/python/libffi-8.dll differ diff --git a/python/python3.dll b/python/python3.dll new file mode 100644 index 0000000000000000000000000000000000000000..8cae713dea5f1a7261519635c2508c3987b05817 Binary files /dev/null and b/python/python3.dll differ diff --git a/python/python313._pth b/python/python313._pth new file mode 100644 index 0000000000000000000000000000000000000000..4b5ab01cdd5462a5782a98577ff1171e39e3710a --- /dev/null +++ b/python/python313._pth @@ -0,0 +1,5 @@ +python313.zip +. + +# Uncomment to run site.main() automatically +import site diff --git a/python/select.pyd b/python/select.pyd new file mode 100644 index 0000000000000000000000000000000000000000..e8e283c7440f95decfb803bd9b3b878930047c9c Binary files /dev/null and b/python/select.pyd differ diff --git a/sqlite_gui/bearer/qgenericbearer.dll b/sqlite_gui/bearer/qgenericbearer.dll new file mode 100644 index 0000000000000000000000000000000000000000..56305142b86ae0110bafb9467e5f2b5e04566e4a Binary files /dev/null and b/sqlite_gui/bearer/qgenericbearer.dll differ diff --git a/sqlite_gui/extensions/formats.dll b/sqlite_gui/extensions/formats.dll new file mode 100644 index 0000000000000000000000000000000000000000..66f4b6c3144723f779d013d704484fc837e0e3dd Binary files /dev/null and b/sqlite_gui/extensions/formats.dll differ diff --git a/sqlite_gui/extensions/math.dll b/sqlite_gui/extensions/math.dll new file mode 100644 index 0000000000000000000000000000000000000000..25a9fac07128a102db53c76b0dd84f2f4ab0bb29 Binary files /dev/null and b/sqlite_gui/extensions/math.dll differ diff --git a/svn/Licenses/APR License.txt b/svn/Licenses/APR License.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd9828b24279466bdd7a15518daf872afea7194b --- /dev/null +++ b/svn/Licenses/APR License.txt @@ -0,0 +1,297 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +APACHE PORTABLE RUNTIME SUBCOMPONENTS: + +The Apache Portable Runtime includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. + +From strings/apr_fnmatch.c, include/apr_fnmatch.h, misc/unix/getopt.c, +file_io/unix/mktemp.c, strings/apr_strings.c: + +/* + * Copyright (c) 1987, 1993, 1994 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. 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. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + +From network_io/unix/inet_ntop.c, network_io/unix/inet_pton.c: + +/* Copyright (c) 1996 by Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS + * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE + * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL + * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR + * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS + * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS + * SOFTWARE. + +From dso/aix/dso.c: + + * Based on libdl (dlfcn.c/dlfcn.h) which is + * Copyright (c) 1992,1993,1995,1996,1997,1988 + * Jens-Uwe Mager, Helios Software GmbH, Hannover, Germany. + * + * Not derived from licensed software. + * + * Permission is granted to freely use, copy, modify, and redistribute + * this software, provided that the author is not construed to be liable + * for any results of using the software, alterations are clearly marked + * as such, and this notice is not modified. + +From strings/apr_strnatcmp.c, include/apr_strings.h: + + strnatcmp.c -- Perform 'natural order' comparisons of strings in C. + Copyright (C) 2000 by Martin Pool + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + diff --git a/svn/Licenses/APR Util License.txt b/svn/Licenses/APR Util License.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ec7e560022060feb25a4b78c95f94528dca18d8 --- /dev/null +++ b/svn/Licenses/APR Util License.txt @@ -0,0 +1,404 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + +APACHE PORTABLE RUNTIME SUBCOMPONENTS: + +The Apache Portable Runtime includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. + +For the include\apr_md5.h component: +/* + * This is work is derived from material Copyright RSA Data Security, Inc. + * + * The RSA copyright statement and Licence for that original material is + * included below. This is followed by the Apache copyright statement and + * licence for the modifications made to that material. + */ + +/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All + rights reserved. + + License to copy and use this software is granted provided that it + is identified as the "RSA Data Security, Inc. MD5 Message-Digest + Algorithm" in all material mentioning or referencing this software + or this function. + + License is also granted to make and use derivative works provided + that such works are identified as "derived from the RSA Data + Security, Inc. MD5 Message-Digest Algorithm" in all material + mentioning or referencing the derived work. + + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. + */ + +For the passwd\apr_md5.c component: + +/* + * This is work is derived from material Copyright RSA Data Security, Inc. + * + * The RSA copyright statement and Licence for that original material is + * included below. This is followed by the Apache copyright statement and + * licence for the modifications made to that material. + */ + +/* MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm + */ + +/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All + rights reserved. + + License to copy and use this software is granted provided that it + is identified as the "RSA Data Security, Inc. MD5 Message-Digest + Algorithm" in all material mentioning or referencing this software + or this function. + + License is also granted to make and use derivative works provided + that such works are identified as "derived from the RSA Data + Security, Inc. MD5 Message-Digest Algorithm" in all material + mentioning or referencing the derived work. + + RSA Data Security, Inc. makes no representations concerning either + the merchantability of this software or the suitability of this + software for any particular purpose. It is provided "as is" + without express or implied warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. + */ +/* + * The apr_md5_encode() routine uses much code obtained from the FreeBSD 3.0 + * MD5 crypt() function, which is licenced as follows: + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * wrote this file. As long as you retain this notice you + * can do whatever you want with this stuff. If we meet some day, and you think + * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp + * ---------------------------------------------------------------------------- + */ + +For the crypto\apr_md4.c component: + + * This is derived from material copyright RSA Data Security, Inc. + * Their notice is reproduced below in its entirety. + * + * Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All + * rights reserved. + * + * License to copy and use this software is granted provided that it + * is identified as the "RSA Data Security, Inc. MD4 Message-Digest + * Algorithm" in all material mentioning or referencing this software + * or this function. + * + * License is also granted to make and use derivative works provided + * that such works are identified as "derived from the RSA Data + * Security, Inc. MD4 Message-Digest Algorithm" in all material + * mentioning or referencing the derived work. + * + * RSA Data Security, Inc. makes no representations concerning either + * the merchantability of this software or the suitability of this + * software for any particular purpose. It is provided "as is" + * without express or implied warranty of any kind. + * + * These notices must be retained in any copies of any part of this + * documentation and/or software. + */ + +For the include\apr_md4.h component: + + * + * This is derived from material copyright RSA Data Security, Inc. + * Their notice is reproduced below in its entirety. + * + * Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All + * rights reserved. + * + * License to copy and use this software is granted provided that it + * is identified as the "RSA Data Security, Inc. MD4 Message-Digest + * Algorithm" in all material mentioning or referencing this software + * or this function. + * + * License is also granted to make and use derivative works provided + * that such works are identified as "derived from the RSA Data + * Security, Inc. MD4 Message-Digest Algorithm" in all material + * mentioning or referencing the derived work. + * + * RSA Data Security, Inc. makes no representations concerning either + * the merchantability of this software or the suitability of this + * software for any particular purpose. It is provided "as is" + * without express or implied warranty of any kind. + * + * These notices must be retained in any copies of any part of this + * documentation and/or software. + */ + +For the test\testmd4.c component: + + * + * This is derived from material copyright RSA Data Security, Inc. + * Their notice is reproduced below in its entirety. + * + * Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All + * rights reserved. + * + * RSA Data Security, Inc. makes no representations concerning either + * the merchantability of this software or the suitability of this + * software for any particular purpose. It is provided "as is" + * without express or implied warranty of any kind. + * + * These notices must be retained in any copies of any part of this + * documentation and/or software. + */ + +For the xml\expat\conftools\install-sh component: + +# +# install - install a program, script, or datafile +# This comes from X11R5 (mit/util/scripts/install.sh). +# +# Copyright 1991 by the Massachusetts Institute of Technology +# +# Permission to use, copy, modify, distribute, and sell this software and its +# documentation for any purpose is hereby granted without fee, provided that +# the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation, and that the name of M.I.T. not be used in advertising or +# publicity pertaining to distribution of the software without specific, +# written prior permission. M.I.T. makes no representations about the +# suitability of this software for any purpose. It is provided "as is" +# without express or implied warranty. +# + +For the expat xml parser component: + +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==================================================================== diff --git a/svn/Licenses/OpenSSL License.txt b/svn/Licenses/OpenSSL License.txt new file mode 100644 index 0000000000000000000000000000000000000000..49cc83d2ee29d13453188217f0e4edd70c7f842f --- /dev/null +++ b/svn/Licenses/OpenSSL License.txt @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/svn/Licenses/Subversion License.txt b/svn/Licenses/Subversion License.txt new file mode 100644 index 0000000000000000000000000000000000000000..51bd39c73aad65bceae0db2e06299a0ba9652713 --- /dev/null +++ b/svn/Licenses/Subversion License.txt @@ -0,0 +1,262 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +SUBVERSION SUBCOMPONENTS: + +Subversion includes a number of subcomponents with separate copyright +notices and license terms. Your use of the source code for the these +subcomponents is subject to the terms and conditions of the following +licenses. + +For portions of the Python bindings test suite at +subversion/bindings/swig/python/tests/trac/: + + I. Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + + II. Copyright (C) 2003, 2004, 2005 Edgewall Software + Copyright (C) 2003, 2004, 2005 Jonas Borgstrรถm + Copyright (C) 2005 Christopher Lenz + + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + the documentation and/or other materials provided with the + distribution. + 3. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. diff --git a/svn/Licenses/ZLib License.txt b/svn/Licenses/ZLib License.txt new file mode 100644 index 0000000000000000000000000000000000000000..b33868b0647b4a34c0f5af5e0b6dcafc23c3857a --- /dev/null +++ b/svn/Licenses/ZLib License.txt @@ -0,0 +1,33 @@ +Copyright notice: + + (C) 1995-2004 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +If you use the zlib library in a product, we would appreciate *not* +receiving lengthy legal documents to sign. The sources are provided +for free but without warranty of any kind. The library has been +entirely written by Jean-loup Gailly and Mark Adler; it does not +include third-party code. + +If you redistribute modified sources, we would appreciate that you include +in the file ChangeLog history information documenting your changes. Please +read the FAQ for more information on the distribution of modified source +versions. diff --git a/svn/bin/libsvn_diff-1.dll b/svn/bin/libsvn_diff-1.dll new file mode 100644 index 0000000000000000000000000000000000000000..29acb174bc04837a9a6fee9294456755827ef168 Binary files /dev/null and b/svn/bin/libsvn_diff-1.dll differ diff --git a/svn/bin/libsvn_fs-1.dll b/svn/bin/libsvn_fs-1.dll new file mode 100644 index 0000000000000000000000000000000000000000..5807e45cfbdfd29863a7240e28d97ff7b00cbbf0 Binary files /dev/null and b/svn/bin/libsvn_fs-1.dll differ diff --git a/svn/bin/libsvn_fs_util-1.dll b/svn/bin/libsvn_fs_util-1.dll new file mode 100644 index 0000000000000000000000000000000000000000..3e87b3dcb86040d20287a0745b7b8ded3ea2e4c0 Binary files /dev/null and b/svn/bin/libsvn_fs_util-1.dll differ diff --git a/svn/bin/svnadmin.exe b/svn/bin/svnadmin.exe new file mode 100644 index 0000000000000000000000000000000000000000..c64485afb0be899d5aaed43148a22e5a24b98188 Binary files /dev/null and b/svn/bin/svnadmin.exe differ diff --git a/svn/bin/svnbench.exe b/svn/bin/svnbench.exe new file mode 100644 index 0000000000000000000000000000000000000000..6b719d5d10aba340f7c57bea41a96ef0f0c6f790 Binary files /dev/null and b/svn/bin/svnbench.exe differ diff --git a/svn/bin/svndumpfilter.exe b/svn/bin/svndumpfilter.exe new file mode 100644 index 0000000000000000000000000000000000000000..bb4c1734f92716ccf3607bd520e667399d4f2fd0 Binary files /dev/null and b/svn/bin/svndumpfilter.exe differ diff --git a/svn/bin/svnfsfs.exe b/svn/bin/svnfsfs.exe new file mode 100644 index 0000000000000000000000000000000000000000..e1641784c7a338821b3d0cc14a157330c4a57f50 Binary files /dev/null and b/svn/bin/svnfsfs.exe differ diff --git a/svn/bin/svnlook.exe b/svn/bin/svnlook.exe new file mode 100644 index 0000000000000000000000000000000000000000..84ece13b5cedf294ef652a8838a85b959228b02e Binary files /dev/null and b/svn/bin/svnlook.exe differ diff --git a/svn/bin/svnmucc.exe b/svn/bin/svnmucc.exe new file mode 100644 index 0000000000000000000000000000000000000000..474db46ef938b368ecf2c17519ac6c145c658e21 Binary files /dev/null and b/svn/bin/svnmucc.exe differ diff --git a/svn/bin/svnrdump.exe b/svn/bin/svnrdump.exe new file mode 100644 index 0000000000000000000000000000000000000000..6b3a7f39b00e8b4db5f7fc687231a83089f2501f Binary files /dev/null and b/svn/bin/svnrdump.exe differ diff --git a/svn/bin/svnsync.exe b/svn/bin/svnsync.exe new file mode 100644 index 0000000000000000000000000000000000000000..9b3195572f81965372479dd633730751301008fb Binary files /dev/null and b/svn/bin/svnsync.exe differ diff --git a/svn/bin/svnversion.exe b/svn/bin/svnversion.exe new file mode 100644 index 0000000000000000000000000000000000000000..ede4696204361fed85d50719e51904d66d2d9edc Binary files /dev/null and b/svn/bin/svnversion.exe differ diff --git a/svn/bin/vcruntime140_1.dll b/svn/bin/vcruntime140_1.dll new file mode 100644 index 0000000000000000000000000000000000000000..2071f2814bbc6dac9a18b32c77ca86da09d579c3 Binary files /dev/null and b/svn/bin/vcruntime140_1.dll differ diff --git a/tensorrt/doc/Acknowledgements.txt b/tensorrt/doc/Acknowledgements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5670601408785b3763ca6c37d9e076448e849bce --- /dev/null +++ b/tensorrt/doc/Acknowledgements.txt @@ -0,0 +1,5717 @@ +SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +SPDX-License-Identifier: LicenseRef-NvidiaProprietary +NVIDIA CORPORATION, its affiliates and licensors retain all intellectual +property and proprietary rights in and to this material, related +documentation and any modifications thereto. Any use, reproduction, +disclosure or distribution of this material and related documentation +without an express license agreement from NVIDIA CORPORATION or +its affiliates is strictly prohibited. + +This project will download and install additional third-party open source software projects. +Review the license terms of these open source projects before use. + +TensorRT uses elements from the following software, whose licenses are reproduced below. + +Abseil C++ Common Libraries +--------------------------- + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +Google Protobuf +--------------- +Copyright 2008 Google Inc. 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. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +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 +OWNER 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. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. + +Google Flatbuffers +------------------ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2014 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +BVLC caffe +---------- +COPYRIGHT + +All contributions by the University of California: +Copyright (c) 2014, 2015, The Regents of the University of California (Regents) +All rights reserved. + +All other contributions: +Copyright (c) 2014, 2015, the respective contributors +All rights reserved. + +Caffe uses a shared copyright model: each contributor holds copyright over +their contributions to Caffe. The project versioning records all such +contribution and copyright details. If a contributor wants to further mark +their specific copyright on a particular contribution, they should indicate +their copyright solely in the commit message of the change when it is +committed. + +LICENSE + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. 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 OWNER 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. + +CONTRIBUTION AGREEMENT + +By contributing to the BVLC/caffe repository through pull-request, comment, +or otherwise, the contributor releases their content to the +license and copyright terms herein. + +half.h +------ +Copyright (c) 2012-2017 Christian Rau + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +jQuery.js +--------- +jQuery.js is generated automatically under doxygen. +In all cases TensorRT uses the functions under the MIT license. + +CRC +--- +TensorRT includes CRC routines from FreeBSD. + +# $FreeBSD: head/COPYRIGHT 260125 2013-12-31 12:18:10Z gjb $ +# @(#)COPYRIGHT 8.2 (Berkeley) 3/21/94 + +The compilation of software known as FreeBSD is distributed under the +following terms: + +Copyright (c) 1992-2014 The FreeBSD Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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 AUTHOR 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 AUTHOR 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. + +The 4.4BSD and 4.4BSD-Lite software is distributed under the following +terms: + +All of the documentation and software included in the 4.4BSD and 4.4BSD-Lite +Releases is copyrighted by The Regents of the University of California. + +Copyright 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 +The Regents of the University of California. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: +This product includes software developed by the University of +California, Berkeley and its contributors. +4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + +The Institute of Electrical and Electronics Engineers and the American +National Standards Committee X3, on Information Processing Systems have +given us permission to reprint portions of their documentation. + +In the following statement, the phrase ``this text'' refers to portions +of the system documentation. + +Portions of this text are reprinted and reproduced in electronic form in +the second BSD Networking Software Release, from IEEE Std 1003.1-1988, IEEE +Standard Portable Operating System Interface for Computer Environments +(POSIX), copyright C 1988 by the Institute of Electrical and Electronics +Engineers, Inc. In the event of any discrepancy between these versions +and the original IEEE Standard, the original IEEE Standard is the referee +document. + +In the following statement, the phrase ``This material'' refers to portions +of the system documentation. + +This material is reproduced with permission from American National +Standards Committee X3, on Information Processing Systems. Computer and +Business Equipment Manufacturers Association (CBEMA), 311 First St., NW, +Suite 500, Washington, DC 20001-2178. The developmental work of +Programming Language C was completed by the X3J11 Technical Committee. + +The views and conclusions contained in the software and documentation are +those of the authors and should not be interpreted as representing official +policies, either expressed or implied, of the Regents of the University +of California. + +NOTE: The copyright of UC Berkeley's Berkeley Software Distribution ("BSD") +source has been updated. The copyright addendum may be found at +ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change and is +included below. + +July 22, 1999 + +To All Licensees, Distributors of Any Version of BSD: + +As you know, certain of the Berkeley Software Distribution ("BSD") source +code files require that further distributions of products containing all or +portions of the software, acknowledge within their advertising materials +that such products contain software developed by UC Berkeley and its +contributors. + +Specifically, the provision reads: + +" * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors." + +Effective immediately, licensees and distributors are no longer required to +include the acknowledgement within advertising materials. Accordingly, the +foregoing paragraph of those BSD Unix files containing it is hereby deleted +in its entirety. + +William Hoskins +Director, Office of Technology Licensing +University of California, Berkeley + +getopt.c +-------- +$OpenBSD: getopt_long.c,v 1.23 2007/10/31 12:34:57 chl Exp $ +$NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ + +Copyright (c) 2002 Todd C. Miller + +Permission to use, copy, modify, and distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Sponsored in part by the Defense Advanced Research Projects +Agency (DARPA) and Air Force Research Laboratory, Air Force +Materiel Command, USAF, under agreement number F39502-99-1-0512. + +Copyright (c) 2000 The NetBSD Foundation, Inc. +All rights reserved. + +This code is derived from software contributed to The NetBSD Foundation +by Dieter Baron and Thomas Klausner. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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. + +ONNX Model Zoo +-------------- +MIT License + +Copyright (c) ONNX Project Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE + +RESNET-50 Caffe models +---------------------- +The MIT License (MIT) + +Copyright (c) 2016 Shaoqing Ren + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +OpenSSL +------- +Apache License Version 2.0 + +Copyright (c) OpenSSL Project Contributors + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +Boost Beast +----------- +Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com) + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +thread-pool +----------- +MIT License + +Copyright (c) 2023 Barak Shoshany + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +docs +---- + +https://pypi.org/pypi/docs +Unknown License + +Notices Text Not Available + +efficientnet +---- +Apache License Version 2.0 + +https://github.com/qubvel/efficientnet + +Copyright 2019 The TensorFlow Authors, Pavel Yakubovskiy. All rights reserved. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2017, The TensorFlow Authors. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +giza +---- +Apache License Version 2.0 + +https://github.com/mongodb/docs-tools + + + Copyright 2014 MongoDB, Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +onnx +---- +Apache License 2.0 + +https://github.com/onnx/onnx + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +packaging +--------- +Apache License Version 2.0 + +https://github.com/pypa/packaging + +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made +under the terms of *both* these licenses. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright (c) Donald Stufft and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. 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. + +pybind11 +-------- +BSD + +https://github.com/pybind/pybind11 + +Copyright (c) 2016 Wenzel Jakob , All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. 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. + +3. Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +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. + +You are under no obligation whatsoever to provide any bug fixes, patches, or +upgrades to the features, functionality or performance of the source code +("Enhancements") to anyone; however, if you choose to make your Enhancements +available either publicly, or directly to the author of this software, without +imposing a separate written license agreement for such Enhancements, then you +hereby grant the following license: a non-exclusive, royalty-free perpetual +license to install, use, modify, prepare derivative works, incorporate into +other computer software, distribute, and sublicense such enhancements or +derivative works thereof, in binary and source code form. + +python +------ +PSL + +https://docs.python.org/3 + +Pythonยฎ is a registered trademark of the Python Software Foundation + +1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and + the Individual or Organization ("Licensee") accessing and otherwise using Python + 3.12.4 software in source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby + grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, + analyze, test, perform and/or display publicly, prepare derivative works, + distribute, and otherwise use Python 3.12.4 alone or in any derivative + version, provided, however, that PSF's License Agreement and PSF's notice of + copyright, i.e., "Copyright ยฉ 2001-2023 Python Software Foundation; All Rights + Reserved" are retained in Python 3.12.4 alone or in any derivative version + prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on or + incorporates Python 3.12.4 or any part thereof, and wants to make the + derivative work available to others as provided herein, then Licensee hereby + agrees to include in any such work a brief summary of the changes made to Python + 3.12.4. + +4. PSF is making Python 3.12.4 available to Licensee on an "AS IS" basis. + PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF + EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR + WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE + USE OF PYTHON 3.12.4 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 3.12.4 + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF + MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 3.12.4, OR ANY DERIVATIVE + THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material breach of + its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any relationship + of agency, partnership, or joint venture between PSF and Licensee. This License + Agreement does not grant permission to use PSF trademarks or trade name in a + trademark sense to endorse or promote products or services of Licensee, or any + third party. + +8. By copying, installing or otherwise using Python 3.12.4, Licensee agrees + to be bound by the terms and conditions of this License Agreement. +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at + 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization + ("Licensee") accessing and otherwise using this software in source or binary + form and its associated documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License Agreement, + BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license + to reproduce, analyze, test, perform and/or display publicly, prepare derivative + works, distribute, and otherwise use the Software alone or in any derivative + version, provided, however, that the BeOpen Python License is retained in the + Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" basis. + BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF + EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR + WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE + USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR + ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, + MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF + ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material breach of + its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all respects + by the law of the State of California, excluding conflict of law provisions. + Nothing in this License Agreement shall be deemed to create any relationship of + agency, partnership, or joint venture between BeOpen and Licensee. This License + Agreement does not grant permission to use BeOpen trademarks or trade names in a + trademark sense to endorse or promote products or services of Licensee, or any + third party. As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according to the permissions + granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee agrees to be + bound by the terms and conditions of this License Agreement. + +scope +----- +MIT License + +https://pypi.org/pypi/scope + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +tidy +---- +GNU GENERAL PUBLIC LICENSE + +https://pypi.org/pypi/Tidy + +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright ร‚ยฉ 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +รขโ‚ฌล“This Licenseรขโ‚ฌย refers to version 3 of the GNU General Public License. + +รขโ‚ฌล“Copyrightรขโ‚ฌย also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +รขโ‚ฌล“The Programรขโ‚ฌย refers to any copyrightable work licensed under this License. Each licensee is addressed as รขโ‚ฌล“youรขโ‚ฌย. รขโ‚ฌล“Licenseesรขโ‚ฌย and รขโ‚ฌล“recipientsรขโ‚ฌย may be individuals or organizations. + +To รขโ‚ฌล“modifyรขโ‚ฌย a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a รขโ‚ฌล“modified versionรขโ‚ฌย of the earlier work or a work รขโ‚ฌล“based onรขโ‚ฌย the earlier work. + +A รขโ‚ฌล“covered workรขโ‚ฌย means either the unmodified Program or a work based on the Program. + +To รขโ‚ฌล“propagateรขโ‚ฌย a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To รขโ‚ฌล“conveyรขโ‚ฌย a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays รขโ‚ฌล“Appropriate Legal Noticesรขโ‚ฌย to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The รขโ‚ฌล“source codeรขโ‚ฌย for a work means the preferred form of the work for making modifications to it. รขโ‚ฌล“Object codeรขโ‚ฌย means any non-source form of a work. + +A รขโ‚ฌล“Standard Interfaceรขโ‚ฌย means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The รขโ‚ฌล“System Librariesรขโ‚ฌย of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A รขโ‚ฌล“Major Componentรขโ‚ฌย, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The รขโ‚ฌล“Corresponding Sourceรขโ‚ฌย for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to รขโ‚ฌล“keep intact all noticesรขโ‚ฌย. + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an รขโ‚ฌล“aggregateรขโ‚ฌย if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A รขโ‚ฌล“User Productรขโ‚ฌย is either (1) a รขโ‚ฌล“consumer productรขโ‚ฌย, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, รขโ‚ฌล“normally usedรขโ‚ฌย refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +รขโ‚ฌล“Installation Informationรขโ‚ฌย for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +รขโ‚ฌล“Additional permissionsรขโ‚ฌย are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered รขโ‚ฌล“further restrictionsรขโ‚ฌย within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An รขโ‚ฌล“entity transactionรขโ‚ฌย is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. +A รขโ‚ฌล“contributorรขโ‚ฌย is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's รขโ‚ฌล“contributor versionรขโ‚ฌย. + +A contributor's รขโ‚ฌล“essential patent claimsรขโ‚ฌย are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, รขโ‚ฌล“controlรขโ‚ฌย includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a รขโ‚ฌล“patent licenseรขโ‚ฌย is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To รขโ‚ฌล“grantรขโ‚ฌย such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. รขโ‚ฌล“Knowingly relyingรขโ‚ฌย means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is รขโ‚ฌล“discriminatoryรขโ‚ฌย if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +14. Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License รขโ‚ฌล“or any later versionรขโ‚ฌย applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM รขโ‚ฌล“AS ISรขโ‚ฌย WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the รขโ‚ฌล“copyrightรขโ‚ฌย line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an รขโ‚ฌล“about boxรขโ‚ฌย. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a รขโ‚ฌล“copyright disclaimerรขโ‚ฌย for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . + +compiledb +--------- +GNU GENERAL PUBLIC LICENSE + +GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +bashlex +------- +GNU General Public License v3.0 + +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + + Preamble + +The GNU General Public License is a free, copyleft license for +software and other kinds of works. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + +Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + +Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and +modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +1. Source Code. + +The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + +The Corresponding Source for a work in source code form is that +same work. + +2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + +4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified +it, and giving a relevant date. + +b) The work must carry prominent notices stating that it is +released under this License and any conditions added under section +7. This requirement modifies the requirement in section 4 to +"keep intact all notices". + +c) You must license the entire work, as a whole, under this +License to anyone who comes into possession of a copy. This +License will therefore apply, along with any applicable section 7 +additional terms, to the whole of the work, and all its parts, +regardless of how they are packaged. This License gives no +permission to license the work in any other way, but it does not +invalidate such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display +Appropriate Legal Notices; however, if the Program has interactive +interfaces that do not display Appropriate Legal Notices, your +work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + +a) Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by the +Corresponding Source fixed on a durable physical medium +customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by a +written offer, valid for at least three years and valid for as +long as you offer spare parts or customer support for that product +model, to give anyone who possesses the object code either (1) a +copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical +medium customarily used for software interchange, for a price no +more than your reasonable cost of physically performing this +conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the +written offer to provide the Corresponding Source. This +alternative is allowed only occasionally and noncommercially, and +only if you received the object code with such an offer, in accord +with subsection 6b. + +d) Convey the object code by offering access from a designated +place (gratis or for a charge), and offer equivalent access to the +Corresponding Source in the same way through the same place at no +further charge. You need not require recipients to copy the +Corresponding Source along with the object code. If the place to +copy the object code is a network server, the Corresponding Source +may be on a different server (operated by you or a third party) +that supports equivalent copying facilities, provided you maintain +clear directions next to the object code saying where to find the +Corresponding Source. Regardless of what server hosts the +Corresponding Source, you remain obligated to ensure that it is +available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided +you inform other peers where the object code and Corresponding +Source of the work are being offered to the general public at no +charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the +terms of sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or +author attributions in that material or in the Appropriate Legal +Notices displayed by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or +requiring that modified versions of such material be marked in +reasonable ways as different from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or +authors of the material; or + +e) Declining to grant rights under trademark law for use of some +trade names, trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that +material by anyone who conveys the material (or modified versions of +it) with contractual assumptions of liability to the recipient, for +any liability that these contractual assumptions directly impose on +those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + +Copyright (C) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) +This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +This is free software, and you are welcome to redistribute it +under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + +The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +pyyaml-include +-------------- +GNU General Public License v3.0 + +https://pypi.org/project/pyyaml-include + +An extending constructor of PyYAML: include other YAML files into current YAML document. + +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + + Preamble + +The GNU General Public License is a free, copyleft license for +software and other kinds of works. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + +Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + +Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and +modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +1. Source Code. + +The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + +The Corresponding Source for a work in source code form is that +same work. + +2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + +4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified +it, and giving a relevant date. + +b) The work must carry prominent notices stating that it is +released under this License and any conditions added under section +7. This requirement modifies the requirement in section 4 to +"keep intact all notices". + +c) You must license the entire work, as a whole, under this +License to anyone who comes into possession of a copy. This +License will therefore apply, along with any applicable section 7 +additional terms, to the whole of the work, and all its parts, +regardless of how they are packaged. This License gives no +permission to license the work in any other way, but it does not +invalidate such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display +Appropriate Legal Notices; however, if the Program has interactive +interfaces that do not display Appropriate Legal Notices, your +work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + +a) Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by the +Corresponding Source fixed on a durable physical medium +customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by a +written offer, valid for at least three years and valid for as +long as you offer spare parts or customer support for that product +model, to give anyone who possesses the object code either (1) a +copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical +medium customarily used for software interchange, for a price no +more than your reasonable cost of physically performing this +conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the +written offer to provide the Corresponding Source. This +alternative is allowed only occasionally and noncommercially, and +only if you received the object code with such an offer, in accord +with subsection 6b. + +d) Convey the object code by offering access from a designated +place (gratis or for a charge), and offer equivalent access to the +Corresponding Source in the same way through the same place at no +further charge. You need not require recipients to copy the +Corresponding Source along with the object code. If the place to +copy the object code is a network server, the Corresponding Source +may be on a different server (operated by you or a third party) +that supports equivalent copying facilities, provided you maintain +clear directions next to the object code saying where to find the +Corresponding Source. Regardless of what server hosts the +Corresponding Source, you remain obligated to ensure that it is +available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided +you inform other peers where the object code and Corresponding +Source of the work are being offered to the general public at no +charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the +terms of sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or +author attributions in that material or in the Appropriate Legal +Notices displayed by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or +requiring that modified versions of such material be marked in +reasonable ways as different from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or +authors of the material; or + +e) Declining to grant rights under trademark law for use of some +trade names, trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that +material by anyone who conveys the material (or modified versions of +it) with contractual assumptions of liability to the recipient, for +any liability that these contractual assumptions directly impose on +those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + +Copyright (C) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) +This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +This is free software, and you are welcome to redistribute it +under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + +The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +yaml-cpp +-------- + +Copyright (c) 2008-2015 Jesse Beder. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +pytorch_scatter +--------------- +Copyright (c) 2020 Matthias Fey + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +onnxruntime +----------- +MIT License + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Deformable-DETR +--------------- +Copyright (c) 2020 SenseTime. All Rights Reserved. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2020 SenseTime + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +DETR + +Copyright 2020 - present, Facebook, Inc + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +PyTorch +------- +From PyTorch: + +Copyright (c) 2016- Facebook, Inc (Adam Paszke) +Copyright (c) 2014- Facebook, Inc (Soumith Chintala) +Copyright (c) 2011-2014 Idiap Research Institute (Ronan Collobert) +Copyright (c) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) +Copyright (c) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) +Copyright (c) 2011-2013 NYU (Clement Farabet) +Copyright (c) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) +Copyright (c) 2006 Idiap Research Institute (Samy Bengio) +Copyright (c) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) + +From Caffe2: + +Copyright (c) 2016-present, Facebook Inc. All rights reserved. + +All contributions by Facebook: +Copyright (c) 2016 Facebook Inc. + +All contributions by Google: +Copyright (c) 2015 Google Inc. +All rights reserved. + +All contributions by Yangqing Jia: +Copyright (c) 2015 Yangqing Jia +All rights reserved. + +All contributions by Kakao Brain: +Copyright 2019-2020 Kakao Brain + +All contributions by Cruise LLC: +Copyright (c) 2022 Cruise LLC. +All rights reserved. + +All contributions by Tri Dao: +Copyright (c) 2024 Tri Dao. +All rights reserved. + +All contributions by Arm: +Copyright (c) 2021, 2023-2024 Arm Limited and/or its affiliates + +All contributions from Caffe: +Copyright(c) 2013, 2014, 2015, the respective contributors +All rights reserved. + +All other contributions: +Copyright(c) 2015, 2016 the respective contributors +All rights reserved. + +Caffe2 uses a copyright model similar to Caffe: each contributor holds +copyright over their contributions to Caffe2. The project versioning records +all such contribution and copyright details. If a contributor wants to further +mark their specific copyright on a particular contribution, they should +indicate their copyright solely in the commit message of the change when it is +committed. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. 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. + +3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America + and IDIAP Research Institute nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +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 OWNER 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. + +mmcv +---- +Copyright (c) OpenMMLab. All rights reserved + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2020 Open-MMLab. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +GPUSorting +---------- +MIT license + +Copyright (c) 2024 Thomas Smith + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +json-schema-validator +--------------------- +Modern C++ JSON schema validator is licensed under the MIT License +: + +Copyright (c) 2016 Patrick Boettcher + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +nlohmann/json +------------- +MIT License + +Copyright (c) 2013-2025 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +openssh +------- +GNU General Public License v3.0 + +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + + Preamble + +The GNU General Public License is a free, copyleft license for +software and other kinds of works. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + +Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + +Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and +modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +1. Source Code. + +The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + +The Corresponding Source for a work in source code form is that +same work. + +2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + +4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified +it, and giving a relevant date. + +b) The work must carry prominent notices stating that it is +released under this License and any conditions added under section +7. This requirement modifies the requirement in section 4 to +"keep intact all notices". + +c) You must license the entire work, as a whole, under this +License to anyone who comes into possession of a copy. This +License will therefore apply, along with any applicable section 7 +additional terms, to the whole of the work, and all its parts, +regardless of how they are packaged. This License gives no +permission to license the work in any other way, but it does not +invalidate such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display +Appropriate Legal Notices; however, if the Program has interactive +interfaces that do not display Appropriate Legal Notices, your +work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + +a) Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by the +Corresponding Source fixed on a durable physical medium +customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product +(including a physical distribution medium), accompanied by a +written offer, valid for at least three years and valid for as +long as you offer spare parts or customer support for that product +model, to give anyone who possesses the object code either (1) a +copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical +medium customarily used for software interchange, for a price no +more than your reasonable cost of physically performing this +conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the +written offer to provide the Corresponding Source. This +alternative is allowed only occasionally and noncommercially, and +only if you received the object code with such an offer, in accord +with subsection 6b. + +d) Convey the object code by offering access from a designated +place (gratis or for a charge), and offer equivalent access to the +Corresponding Source in the same way through the same place at no +further charge. You need not require recipients to copy the +Corresponding Source along with the object code. If the place to +copy the object code is a network server, the Corresponding Source +may be on a different server (operated by you or a third party) +that supports equivalent copying facilities, provided you maintain +clear directions next to the object code saying where to find the +Corresponding Source. Regardless of what server hosts the +Corresponding Source, you remain obligated to ensure that it is +available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided +you inform other peers where the object code and Corresponding +Source of the work are being offered to the general public at no +charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the +terms of sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or +author attributions in that material or in the Appropriate Legal +Notices displayed by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or +requiring that modified versions of such material be marked in +reasonable ways as different from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or +authors of the material; or + +e) Declining to grant rights under trademark law for use of some +trade names, trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that +material by anyone who conveys the material (or modified versions of +it) with contractual assumptions of liability to the recipient, for +any liability that these contractual assumptions directly impose on +those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + +Copyright (C) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) +This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +This is free software, and you are welcome to redistribute it +under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + +The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +LLVM Project +------------- +Apache License v2.0 with LLVM Exceptions + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + END OF TERMS AND CONDITIONS + APPENDIX: How to apply the Apache License to your work. + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + Copyright [yyyy] [name of copyright owner] + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +---- LLVM Exceptions to the Apache 2.0 License ---- +As an exception, if, as a result of your compiling your source code, portions +of this Software are embedded into an Object form of such source code, you +may redistribute such embedded portions in such Object form without complying +with the conditions of Sections 4(a), 4(b) and 4(d) of the License. +In addition, if you combine or link compiled forms of this Software with +software that is licensed under the GPLv2 ("Combined Software") and if a +court of competent jurisdiction determines that the patent provision (Section +3), the indemnity provision (Section 9) or other Section of the License +conflicts with the conditions of the GPLv2, you may retroactively and +prospectively choose to deem waived or otherwise exclude such Section(s) of +the License, but only in their entirety and only with respect to the Combined +Software. +============================================================================== +Software from third parties included in the LLVM Project: +============================================================================== +The LLVM Project contains third party software which is under different license +terms. All such code will be identified clearly using at least one of two +mechanisms: +1) It will be in a separate directory tree with its own `LICENSE.txt` or + `LICENSE` file at the top containing the specific license and restrictions + which apply to that software, or +2) It will contain specific license and restriction terms at the top of every + file. +============================================================================== +Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy): +============================================================================== +University of Illinois/NCSA +Open Source License +Copyright (c) 2003-2019 University of Illinois at Urbana-Champaign. +All rights reserved. +Developed by: + LLVM Team + University of Illinois at Urbana-Champaign + http://llvm.org +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +cxxopts +------------- +MIT License + +Copyright (c) 2014 Jarryd Beck +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Z3 +------------- +MIT License + +Copyright (c) Microsoft Corporation +All rights reserved. +MIT License +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Valijson +-------- +BSD 2-Clause "Simplified" License + +Copyright (c) 2016, Tristan Penman +Copyright (c) 2016, Akamai Technologies, Inc. +All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. 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 OWNER 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. diff --git a/tensorrt/doc/README.txt b/tensorrt/doc/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4c413cfe6e032e659a71300c79e71108ee767fa --- /dev/null +++ b/tensorrt/doc/README.txt @@ -0,0 +1,31 @@ +=== NVIDIA TensorRT === + +NVIDIAยฎ TensorRTโ„ข is a C++ library that facilitates high-performance inference +on NVIDIA GPUs. TensorRT takes a trained network, which consists of a network +definition and a set of trained parameters, and produces a highly optimized +runtime engine that performs inference for that network. TensorRT provides APIs +using C++ and Python that help to express deep learning models using the Network +Definition API or load a pre-defined model using the parsers that allow TensorRT +to optimize and run them on an NVIDIA GPU. TensorRT applies graph optimizations, +layer fusion, among other optimizations, while also finding the fastest +implementation of that model leveraging a diverse collection of highly optimized +kernels. TensorRT also supplies a runtime that you can use to execute this +network on NVIDIAโ€™s GPUs. + +For more information about TensorRT, visit https://developer.nvidia.com/tensorrt. + +In previous TensorRT releases, PDF documentation was included inside the TensorRT +package. The PDF documentation has been removed from the package in favor of +online documentation, which is updated regularly. Online documentation can be +found at https://docs.nvidia.com/deeplearning/tensorrt/latest/index.html. + +For details on TensorRT's license agreement, visit https://docs.nvidia.com/deeplearning/tensorrt/latest/reference/sla.html. + +=== References === + +Quick Start Guide: https://docs.nvidia.com/deeplearning/tensorrt/latest/getting-started/quick-start-guide.html +Release Notes: https://docs.nvidia.com/deeplearning/tensorrt/latest/getting-started/release-notes.html +Support Matrix: https://docs.nvidia.com/deeplearning/tensorrt/latest/getting-started/support-matrix.html +Installation Guide: https://docs.nvidia.com/deeplearning/tensorrt/latest/installing-tensorrt/overview.html +C++ API: https://docs.nvidia.com/deeplearning/tensorrt/latest/inference-library/c-api-docs.html +Python API: https://docs.nvidia.com/deeplearning/tensorrt/latest/inference-library/python-api-docs.html diff --git a/tensorrt/include/NvInfer.h b/tensorrt/include/NvInfer.h new file mode 100644 index 0000000000000000000000000000000000000000..da2928ad70705c41cfbbdabf7df2a89e128f003f --- /dev/null +++ b/tensorrt/include/NvInfer.h @@ -0,0 +1,12559 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_H +#define NV_INFER_H + +#include "NvInferLegacyDims.h" +#include "NvInferRuntime.h" // IWYU pragma: export + +//! +//! \mainpage +//! +//! This is the API documentation for the NVIDIA TensorRT library. It provides information on individual +//! functions, classes and methods. Use the index on the left to navigate the documentation. +//! +//! Please see the accompanying user guide and samples for higher-level information and general advice on +//! using TensorRT. +//! +//! TensorRT Versioning follows Semantic Versioning Guidelines specified here: https://semver.org/ +//! + +//! +//! \file NvInfer.h +//! +//! This is the top-level API file for TensorRT. +//! + +//! +//! \namespace nvinfer1 +//! +//! \brief The TensorRT API version 1 namespace. +//! +namespace nvinfer1 +{ + +//! +//! \enum LayerType +//! +//! \brief The type values of layer classes. +//! +//! \see ILayer::getType() +//! +enum class LayerType : int32_t +{ + kCONVOLUTION = 0, //!< Convolution layer. + kCAST = 1, //!< Cast layer + kACTIVATION = 2, //!< Activation layer. + kPOOLING = 3, //!< Pooling layer. + kLRN = 4, //!< LRN layer. + kSCALE = 5, //!< Scale layer. + kSOFTMAX = 6, //!< SoftMax layer. + kDECONVOLUTION = 7, //!< Deconvolution layer. + kCONCATENATION = 8, //!< Concatenation layer. + kELEMENTWISE = 9, //!< Elementwise layer. + kPLUGIN = 10, //!< Plugin layer. + kUNARY = 11, //!< UnaryOp operation Layer. + kPADDING = 12, //!< Padding layer. + kSHUFFLE = 13, //!< Shuffle layer. + kREDUCE = 14, //!< Reduce layer. + kTOPK = 15, //!< TopK layer. + kGATHER = 16, //!< Gather layer. + kMATRIX_MULTIPLY = 17, //!< Matrix multiply layer. + kRAGGED_SOFTMAX = 18, //!< Ragged softmax layer. + kCONSTANT = 19, //!< Constant layer. + kIDENTITY = 20, //!< Identity layer. + kPLUGIN_V2 = 21, //!< PluginV2 layer. + kSLICE = 22, //!< Slice layer. + kSHAPE = 23, //!< Shape layer. + kPARAMETRIC_RELU = 24, //!< Parametric ReLU layer. + kRESIZE = 25, //!< Resize Layer. + kTRIP_LIMIT = 26, //!< Loop Trip limit layer + kRECURRENCE = 27, //!< Loop Recurrence layer + kITERATOR = 28, //!< Loop Iterator layer + kLOOP_OUTPUT = 29, //!< Loop output layer + kSELECT = 30, //!< Select layer. + kFILL = 31, //!< Fill layer + kQUANTIZE = 32, //!< Quantize layer + kDEQUANTIZE = 33, //!< Dequantize layer + kCONDITION = 34, //!< Condition layer + kCONDITIONAL_INPUT = 35, //!< Conditional Input layer + kCONDITIONAL_OUTPUT = 36, //!< Conditional Output layer + kSCATTER = 37, //!< Scatter layer + kEINSUM = 38, //!< Einsum layer + kASSERTION = 39, //!< Assertion layer + kONE_HOT = 40, //!< OneHot layer + kNON_ZERO = 41, //!< NonZero layer + kGRID_SAMPLE = 42, //!< Grid sample layer + kNMS = 43, //!< NMS layer + kREVERSE_SEQUENCE = 44, //!< Reverse sequence layer + kNORMALIZATION = 45, //!< Normalization layer + kPLUGIN_V3 = 46, //!< PluginV3 layer. + kSQUEEZE = 47, //!< Squeeze Layer. + kUNSQUEEZE = 48, //!< Unsqueeze Layer. + kCUMULATIVE = 49, //!< Cumulative layer. + kDYNAMIC_QUANTIZE = 50, //!< Dynamic Quantize layer. + kATTENTION_INPUT = 51, //!< Attention Input. + kATTENTION_OUTPUT = 52, //!< Attention Output. + kROTARY_EMBEDDING = 53, //!< Rotary Embedding layer. + kKVCACHE_UPDATE = 54, //!< KV Cache Update layer. + kMOE = 55, //!< MoE layer. + kDIST_COLLECTIVE = 56, //!< DistCollective layer. +}; + +//! +//! Maximum number of elements in LayerType enum. +//! +//! \see LayerType +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 57; +} + +//! +//! \brief It is capable of representing one or more TensorFormat by binary OR +//! operations, e.g., 1U << TensorFormat::kCHW4 | 1U << TensorFormat::kCHW32. +//! +//! \see ITensor::getAllowedFormats(), ITensor::setAllowedFormats(), +//! +using TensorFormats = uint32_t; + +//! +//! \enum ActivationType +//! +//! \brief Enumerates the types of activation to perform in an activation layer. +//! +enum class ActivationType : int32_t +{ + kRELU = 0, //!< Rectified linear activation. + kSIGMOID = 1, //!< Sigmoid activation. + kTANH = 2, //!< TanH activation. + kLEAKY_RELU = 3, //!< LeakyRelu activation: x>=0 ? x : alpha * x. + kELU = 4, //!< Elu activation: x>=0 ? x : alpha * (exp(x) - 1). + kSELU = 5, //!< Selu activation: x>0 ? beta * x : beta * (alpha*exp(x) - alpha) + kSOFTSIGN = 6, //!< Softsign activation: x / (1+|x|) + kSOFTPLUS = 7, //!< Parametric softplus activation: alpha*log(exp(beta*x)+1) + kCLIP = 8, //!< Clip activation: max(alpha, min(beta, x)) + kHARD_SIGMOID = 9, //!< Hard sigmoid activation: max(0, min(1, alpha*x+beta)) + kSCALED_TANH = 10, //!< Scaled tanh activation: alpha*tanh(beta*x) + kTHRESHOLDED_RELU = 11, //!< Thresholded ReLU activation: x>alpha ? x : 0 + kGELU_ERF = 12, //!< GELU erf activation: 0.5 * x * (1 + erf(sqrt(0.5) * x)) + kGELU_TANH = 13 //!< GELU tanh activation: 0.5 * x * (1 + tanh(sqrt(2/pi) * (0.044715F * pow(x, 3) + x))) +}; + +namespace impl +{ +//! +//! Maximum number of elements in ActivationType enum. +//! +//! \see ActivationType +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 14; +}; +} // namespace impl + +//! +//! \class ITensor +//! +//! \brief A tensor in a network definition. +//! +//! To remove a tensor from a network definition, use INetworkDefinition::removeTensor(). +//! +//! When using the DLA, the cumulative size of all Tensors that are not marked as Network Input or Output tensors, +//! must be less than 1GB in size to fit into a single subgraph. If the build option kGPU_FALLBACK is specified, then +//! multiple subgraphs can be created, with each subgraph limited to less than 1GB of internal tensors data. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and +//! ABI. +//! +class ITensor : public INoCopy +{ +public: + //! + //! \brief Set the tensor name. + //! + //! For a network input, the name is assigned by the application. For tensors which are layer outputs, + //! a default name is assigned consisting of the layer name followed by the index of the output in brackets. + //! Each input and output tensor must have a unique name. + //! + //! This method copies the name string. + //! + //! \param name The name. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getName() + //! + void setName(char const* name) noexcept + { + mImpl->setName(name); + } + + //! + //! \brief Get the tensor name. + //! + //! \return The name as a null-terminated C-style string. + //! + //! \see setName() + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + + //! + //! \brief Set the dimensions of a tensor. + //! + //! For a network input, the dimensions are assigned by the application. For a network output, the dimensions are + //! computed based on the layer parameters and the inputs to the layer. If a tensor size or a parameter is modified + //! in the network, the dimensions of all dependent tensors will be recomputed. + //! + //! This call is only legal for network input tensors, since the dimensions of layer output tensors are inferred + //! based on layer inputs and parameters. + //! + //! \param dimensions The dimensions of the tensor. + //! + //! \see getDimensions() + //! + void setDimensions(Dims const& dimensions) noexcept + { + mImpl->setDimensions(dimensions); + } + + //! + //! \brief Get the dimensions of a tensor. + //! + //! \return The dimensions of the tensor. + //! + //! \warning getDimensions() returns a -1 for dimensions that are derived from a wildcard dimension. + //! + //! \see setDimensions() + //! + Dims getDimensions() const noexcept + { + return mImpl->getDimensions(); + } + + //! + //! \brief Set the data type of a tensor. + //! + //! \param type The data type of the tensor when the type is not inferred. + //! + //! For strongly typed networks, this method should be used only for network inputs, + //! since the types of all other tensors are inferred. Setting the type of a network + //! output is tolerated if the type equals the inferred type, otherwise an error occurs + //! and the type is not updated. + //! + //! For weakly typed networks, this method can be used for network outputs too, but + //! the type merely has to be implicitly convertible from the inferred type to the + //! specified type. In this case it does not matter whether the type is set first + //! or the tensor is marked as an output first (via `INetworkDefinition::markOutput` + //! or `INetworkDefinition::markOutputForShapes`). + //! + //! However, marking it first has two advantages: + //! + //! * It avoids warnings that the tensor is not yet a network I/O tensor. + //! * It causes method `getType()` to return the type that was set instead of the inferred type. + //! + //! \see getType() + //! + //! \note This function does more than just set the type, so `t.setType(t.getType())` is not necessarily a no-op, + //! particularly for input and output tensors! + //! + //! \note Repeated consecutive applications of `t.setType(t.getType())` + //! would be idempotent, provided the state of the `ITensor` isn't changed between calls. + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED void setType(DataType type) noexcept + { + mImpl->setType(type); + } + + //! + //! \brief Get the data type of a tensor. + //! + //! \return The data type of the tensor. + //! + //! The type is the type set by `setType` if the tensor is a network input or output. + //! Otherwise the type is the inferred type. + //! + //! \see setType() + //! + DataType getType() const noexcept + { + return mImpl->getType(); + } + + //! + //! \brief Set dynamic range for the tensor + //! + //! Currently, only symmetric ranges are supported. + //! Therefore, the larger of the absolute values of the provided bounds is used. + //! + //! \return Whether the dynamic range was set successfully. + //! + //! Requires that min and max be finite, and min <= max. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED bool setDynamicRange(float min, float max) noexcept + { + return mImpl->setDynamicRange(min, max); + } + + //! + //! \brief Whether the tensor is a network input. + //! + bool isNetworkInput() const noexcept + { + return mImpl->isNetworkInput(); + } + + //! + //! \brief Whether the tensor is a network output. + //! + bool isNetworkOutput() const noexcept + { + return mImpl->isNetworkOutput(); + } + + //! + //! \brief Set whether to enable broadcast of tensor across the implicit batch dimension. + //! + //! \warning This method has no effect other than issuing a warning. + //! + //! \param broadcastAcrossBatch Whether to broadcast the tensor across the implicit + //! batch dimension that was a feature of TensorRT 9.x and prior. + //! + //! \see getBroadcastAcrossBatch() + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch is not supported since TensorRT 10.0. + //! + TRT_DEPRECATED void setBroadcastAcrossBatch(bool broadcastAcrossBatch) noexcept + { + mImpl->setBroadcastAcrossBatch(broadcastAcrossBatch); + } + + //! + //! \brief Check if tensor is broadcast across the implicit batch dimension. + //! + //! \return Always false since TensorRT 10.0 does not support an implicit batch dimension. + //! + //! \see setBroadcastAcrossBatch() + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch is not supported since TensorRT 10.0. + //! + TRT_DEPRECATED bool getBroadcastAcrossBatch() const noexcept + { + return mImpl->getBroadcastAcrossBatch(); + } + + //! + //! \brief Get the storage location of a tensor. + //! + //! \return The location of tensor data. + //! + //! \see setLocation() + //! + TensorLocation getLocation() const noexcept + { + return mImpl->getLocation(); + } + + //! + //! \brief Set the storage location of a tensor + //! + //! \param location the location of tensor data + //! + //! Only network input tensors for storing sequence lengths for RNNv2 are supported. + //! Using host storage for layers that do not support it will generate + //! errors at build time. + //! + //! \see getLocation() + //! + //! \deprecated Deprecated in TensorRT 10.0. RNNv2 is not supported and the location must + //! always be TensorLocation::kDEVICE since TensorRT 10.0. + //! + TRT_DEPRECATED void setLocation(TensorLocation location) noexcept + { + mImpl->setLocation(location); + } + + //! + //! \brief Query whether dynamic range is set. + //! + //! \return True if dynamic range is set, false otherwise. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED bool dynamicRangeIsSet() const noexcept + { + return mImpl->dynamicRangeIsSet(); + } + + //! + //! \brief Undo effect of setDynamicRange. + //! + void resetDynamicRange() noexcept + { + mImpl->resetDynamicRange(); + } + + //! + //! \brief Get minimum of dynamic range. + //! + //! \return Minimum of dynamic range, or quiet NaN if range was not set. + //! + float getDynamicRangeMin() const noexcept + { + return mImpl->getDynamicRangeMin(); + } + + //! + //! \brief Get maximum of dynamic range. + //! + //! \return Maximum of dynamic range, or quiet NaN if range was not set. + //! + float getDynamicRangeMax() const noexcept + { + return mImpl->getDynamicRangeMax(); + } + + //! + //! \brief Set allowed formats for an input or output tensor. By default all formats are allowed. + //! Shape tensors (for which isShapeTensor() returns true) may only have row-major linear format. + //! + //! When running network on DLA and the build option kGPU_FALLBACK is not specified, if DLA format(kCHW4 with Int8, + //! kCHW4 with FP16, kCHW16 with FP16, kCHW32 with Int8) is set, the input format is treated as native DLA format + //! with line stride requirement. Input/output binding with these format should have correct layout during + //! inference. + //! + //! Tensor formats are determined at build time by TensorRT for tensors not marked as input or output. + //! + //! \param formats A bitmask of TensorFormat values that are supported for this tensor. + //! + //! \see ITensor::getAllowedFormats() + //! + //! \see TensorFormats + //! + void setAllowedFormats(TensorFormats formats) noexcept + { + mImpl->setAllowedFormats(formats); + } + + //! + //! \brief Get a bitmask of TensorFormat values that the tensor supports. + //! For a shape tensor, only row-major linear format is allowed. + //! + //! \return The value specified by setAllowedFormats or all possible formats. + //! + //! \see ITensor::setAllowedFormats() + //! + TensorFormats getAllowedFormats() const noexcept + { + return mImpl->getAllowedFormats(); + } + + //! + //! \brief Whether the tensor is a shape tensor. + //! + //! A shape tensor is a tensor that is related to shape calculations. + //! It must have type Int32, Int64, Bool, or Float, and its shape must be determinable at build time. + //! Furthermore, it must be needed as a shape tensor, either marked as a network shape + //! output via markOutputForShapes(), or as a layer input that is required to be a shape + //! tensor, such as the second input to IShuffleLayer. Some layers are "polymorphic" in + //! this respect. For example, the inputs to IElementWiseLayer must be shape tensors + //! if the output is a shape tensor. + //! + //! The TensorRT Developer Guide gives the formal rules for what tensors are shape tensors. + //! + //! The result of isShapeTensor() is reliable only when network construction is complete. + //! For example, if a partially built network sums two tensors T1 and T2 to create + //! tensor T3, and none are yet needed as shape tensors, isShapeTensor() returns false + //! for all three tensors. Setting the second input of IShuffleLayer to be T3 would + //! cause all three tensors to be shape tensors, because IShuffleLayer requires that its + //! second optional input be a shape tensor, and IElementWiseLayer is "polymorphic". + //! + //! It is possible for a tensor to be both a shape tensor and an execution tensor. + //! + //! \return True if tensor is a shape tensor, false otherwise. + //! + //! \see INetworkDefinition::markOutputForShapes() + //! + bool isShapeTensor() const noexcept + { + return mImpl->isShapeTensor(); + } + + //! + //! \brief Whether the tensor is an execution tensor. + //! + //! Tensors are usually execution tensors. The exceptions are tensors used + //! solely for shape calculations or whose contents are not needed to compute the outputs. + //! + //! The result of isExecutionTensor() is reliable only when network construction is complete. + //! For example, if a partially built network has no path from a tensor to a network output, + //! isExecutionTensor() returns false. Completing the path would cause it to become true. + //! + //! + //! A tensor with isShapeTensor() == false and isExecutionTensor() == false + //! can still show up as an input to the engine if its dimensions are required. + //! In that case, only its dimensions need to be set at runtime and a nullptr + //! can be passed instead of a pointer to its contents. + //! + bool isExecutionTensor() const noexcept + { + return mImpl->isExecutionTensor(); + } + + //! + //! \brief Name a dimension of an input tensor. + //! + //! Associate a runtime dimension of an input tensor with a symbolic name. + //! Dimensions with the same non-empty name must be equal at runtime. + //! Knowing this equality for runtime dimensions may help the TensorRT optimizer. + //! Both runtime and build-time dimensions can be named. + //! + //! For example, setDimensionName(0, "n") associates the symbolic name "n" with the leading dimension. + //! + //! This method copies the name string. + //! If the function is called again, with the same index, it will overwrite the previous name. + //! If nullptr is passed as name, it will clear the name of the dimension. + //! + //! \param index index of the dimension + //! \param name of the dimension, as a pointer to a null-terminated character sequence. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getDimensionName() + //! + void setDimensionName(int32_t index, char const* name) noexcept + { + mImpl->setDimensionName(index, name); + } + + //! + //! \brief Get the name of an input dimension. + //! + //! \param index index of the dimension + //! + //! \return The name of the input dimension, or nullptr if the dimension has no name. + //! The name is a pointer to a null-terminated character sequence. + //! + //! \see setDimensionName() + //! + char const* getDimensionName(int32_t index) const noexcept + { + return mImpl->getDimensionName(index); + } + +protected: + apiv::VTensor* mImpl; + virtual ~ITensor() noexcept = default; +}; + +//! +//! \class ILayer +//! +//! \brief Base class for all layer classes in a network definition. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ILayer : public INoCopy +{ +public: + //! + //! \brief Return the type of a layer. + //! + //! \see LayerType + //! + LayerType getType() const noexcept + { + return mLayer->getType(); + } + + //! + //! \brief Set the name of a layer. + //! + //! This method copies the name string. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getName() + //! + void setName(char const* name) noexcept + { + mLayer->setName(name); + } + + //! + //! \brief Return the name of a layer. + //! + //! \see setName() + //! + char const* getName() const noexcept + { + return mLayer->getName(); + } + + //! + //! \brief Get the number of inputs of a layer. + //! + int32_t getNbInputs() const noexcept + { + return mLayer->getNbInputs(); + } + + //! + //! \brief Get the layer input corresponding to the given index. + //! + //! \param index The index of the input tensor. + //! + //! \return The input tensor, or nullptr if the index is out of range or the tensor is optional + //! (\ref ISliceLayer). + //! + ITensor* getInput(int32_t index) const noexcept + { + return mLayer->getInput(index); + } + + //! + //! \brief Get the number of outputs of a layer. + //! + int32_t getNbOutputs() const noexcept + { + return mLayer->getNbOutputs(); + } + + //! + //! \brief Get the layer output corresponding to the given index. + //! + //! \return The indexed output tensor, or nullptr if the index is out of range or the tensor is optional. + //! + ITensor* getOutput(int32_t index) const noexcept + { + return mLayer->getOutput(index); + } + + //! + //! \brief Replace an input of this layer with a specific tensor. + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! Except for IFillLayer, ILoopOutputLayer, INMSLayer, IResizeLayer, IShuffleLayer, and ISliceLayer, + //! this method cannot change the number of inputs to a layer. The index argument must be + //! less than the value of getNbInputs(). + //! + //! See comments for overloads of setInput() for layers with special behavior. + //! + void setInput(int32_t index, ITensor& tensor) noexcept + { + return mLayer->setInput(index, tensor); + } + + //! + //! \brief Set the preferred or required computational precision of this layer in a weakly-typed network. + //! + //! Setting the precision directs TensorRT to choose an implementation that runs at this computational precision. + //! TensorRT could still choose a non-conforming fastest implementation that ignores the requested precision. + //! To force choosing an implementation with the requested precision, set exactly one of the following flags, + //! which differ in what happens if no such implementation exists: + //! + //! * BuilderFlag::kOBEY_PRECISION_CONSTRAINTS - build fails with an error message. + //! + //! * BuilderFlag::kPREFER_PRECISION_CONSTRAINTS - TensorRT falls back to an + //! implementation without the requested precision. + //! + //! If precision is not set, or falling back, TensorRT will select the layer computational precision + //! and layer input type based on global performance considerations and the flags specified to the builder. + //! + //! For a IIdentityLayer: If it casts to/from float/half/int8/uint8, the precision must be one of those types, + //! otherwise it must be either the input or output type. + //! + //! Strongly-typed networks reject calls to method setPrecision. In strongly-typed networks, the computation + //! precision is typically controlled by casting the input tensors to the desired type. + //! + //! \param dataType the computational precision. + //! + //! \see getPrecision() precisionIsSet() resetPrecision() + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED void setPrecision(DataType dataType) noexcept + { + mLayer->setPrecision(dataType); + } + + //! + //! \brief get the computational precision of this layer + //! + //! \return the computational precision + //! + //! \see setPrecision() precisionIsSet() resetPrecision() + //! + DataType getPrecision() const noexcept + { + return mLayer->getPrecision(); + } + + //! + //! \brief whether the computational precision has been set for this layer + //! + //! \return whether the computational precision has been explicitly set + //! + //! \see setPrecision() getPrecision() resetPrecision() + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED bool precisionIsSet() const noexcept + { + return mLayer->precisionIsSet(); + } + + //! + //! \brief reset the computational precision for this layer + //! + //! \see setPrecision() getPrecision() precisionIsSet() + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED void resetPrecision() noexcept + { + mLayer->resetPrecision(); + } + + //! + //! \brief Set the output type of this layer in a weakly-typed network. + //! + //! Setting the output type constrains TensorRT to choose implementations which generate output data with the + //! given type. If it is not set, TensorRT will select output type based on layer computational precision. TensorRT + //! could still choose non-conforming output type based on fastest implementation. To force choosing the requested + //! output type, set exactly one of the following flags, which differ in what happens if no such implementation + //! exists: + //! + //! * BuilderFlag::kOBEY_PRECISION_CONSTRAINTS - build fails with an error message. + //! + //! * BuilderFlag::kPREFER_PRECISION_CONSTRAINTS - TensorRT falls back to an + //! implementation with a non-conforming output type. + //! + //! In case layer precision is not specified, or falling back, the output type depends on the + //! chosen implementation, based on performance considerations and the flags specified to the builder. + //! + //! This method cannot be used to set the data type of the second output tensor of the TopK layer. The data type of + //! the second output tensor of the topK layer is always Int32. Also the output type of all layers that are shape + //! operations must be DataType::kINT32, and all attempts to set the output type to some other data type will be + //! ignored except for issuing an error message. + //! + //! Note that the layer output type is generally not identical to the data type of the output tensor, as TensorRT + //! may insert implicit reformatting operations to convert the former to the latter. Calling layer->setOutputType(i, + //! type) has no effect on the data type of the i-th output tensor of layer, and users need to call + //! layer->getOutput(i)->setType(type) to change the tensor data type. This is particularly relevant if the tensor + //! is marked as a network output, since only setType() [but not setOutputType()] will affect the data + //! representation in the corresponding output binding. + //! + //! Strongly-typed networks reject calls to method setOutputType. Instead, the output type can be set + //! only for layers that define method setToType(). Those layers are: + //! + //! * ICastLayer + //! * IDequantizeLayer + //! * IDynamicQuantizeLayer + //! * IFillLayer + //! * IQuantizeLayer + //! + //! \param index the index of the output to set + //! \param dataType the type of the output + //! + //! \see getOutputType() outputTypeIsSet() resetOutputType() + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED void setOutputType(int32_t index, DataType dataType) noexcept + { + mLayer->setOutputType(index, dataType); + } + + //! + //! \brief get the output type of this layer + //! + //! \param index the index of the output + //! + //! \return the output precision. If no precision has been set, DataType::kFLOAT will be returned, + //! unless the output type is inherently DataType::kINT32. + //! + //! \see getOutputType() outputTypeIsSet() resetOutputType() + //! + DataType getOutputType(int32_t index) const noexcept + { + return mLayer->getOutputType(index); + } + + //! + //! \brief whether the output type has been set for this layer + //! + //! \param index the index of the output + //! + //! \return whether the output type has been explicitly set + //! + //! \see setOutputType() getOutputType() resetOutputType() + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED bool outputTypeIsSet(int32_t index) const noexcept + { + return mLayer->outputTypeIsSet(index); + } + + //! + //! \brief reset the output type for this layer + //! + //! \param index the index of the output + //! + //! \see setOutputType() getOutputType() outputTypeIsSet() + //! + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + //! + TRT_DEPRECATED void resetOutputType(int32_t index) noexcept + { + return mLayer->resetOutputType(index); + } + + //! + //! \brief Set the metadata for this layer. + //! + //! The metadata is emitted in the JSON returned by IEngineInspector with + //! ProfilingVerbosity set to kDETAILED. + //! + //! \param metadata The per-layer metadata. + //! + //! \warning The string name must be null-terminated and be at most 4096 bytes including the terminator. + //! + //! \see getMetadata() + //! \see getLayerInformation() + //! + void setMetadata(char const* metadata) noexcept + { + mLayer->setMetadata(metadata); + } + + //! + //! \brief Get the metadata of the layer. + //! + //! \return The metadata as a null-terminated C-style string. If setMetadata() has not been called, + //! an empty string "" will be returned as a default value. + //! + //! \see setMetadata() + //! + char const* getMetadata() const noexcept + { + return mLayer->getMetadata(); + } + + //! + //! \brief Set the number of ranks for multi-device execution. + //! + //! Setting nbRanks > 1 is only allowed for specific layer types that support multi-device execution: + //! - IDistCollectiveLayer: Determines output shape for kALL_GATHER and kREDUCE_SCATTER operations. + //! + //! For attention layers, use IAttention::setNbRanks() instead. + //! For all other layer types, nbRanks must be 1. + //! + //! \param nbRanks The number of ranks for multi-device execution. Must be >= 1. + //! + //! \return true if successful, false if the layer type does not support the specified nbRanks value. + //! + //! \see getNbRanks() + //! \see IAttention::setNbRanks() + //! + bool setNbRanks(int32_t nbRanks) noexcept + { + return mLayer->setNbRanks(nbRanks); + } + + //! + //! \brief Get the number of ranks for multi-device execution. + //! + //! \return The number of ranks configured for multi-device execution. Default is 1. + //! + //! \see setNbRanks() + //! + int32_t getNbRanks() const noexcept + { + return mLayer->getNbRanks(); + } + +protected: + virtual ~ILayer() noexcept = default; + apiv::VLayer* mLayer; +}; + +//! +//! \enum PaddingMode +//! +//! \brief Enumerates the modes of padding to perform in convolution, deconvolution and pooling layer, +//! padding mode takes precedence if setPaddingMode() and setPrePadding() are also used. +//! +//! There are two padding styles, EXPLICIT and SAME with each style having two variants. +//! The EXPLICIT style determine if the final sampling location is used or not. +//! The SAME style determine if the asymmetry in the padding is on the pre or post padding. +//! +//! \code +//! Shorthand: +//! I = dimensions of input image. +//! B = prePadding, before the image data. +//! A = postPadding, after the image data. +//! P = delta between input and output +//! S = stride +//! F = filter +//! O = output +//! D = dilation +//! M = I + B + A ; The image data plus any padding +//! DK = 1 + D * (F - 1) +//! \endcode +//! +//! Formulas for Convolution: +//! - EXPLICIT_ROUND_DOWN: +//! \code +//! O = floor((M - DK) / S) + 1 +//! \endcode +//! - EXPLICIT_ROUND_UP: +//! \code +//! O = ceil((M - DK) / S) + 1 +//! \endcode +//! - SAME_UPPER: +//! \code +//! O = ceil(I / S) +//! P = floor((I - 1) / S) * S + DK - I; +//! B = floor(P / 2) +//! A = P - B +//! \endcode +//! - SAME_LOWER: +//! \code +//! O = ceil(I / S) +//! P = floor((I - 1) / S) * S + DK - I; +//! A = floor(P / 2) +//! B = P - A +//! \endcode +//! +//! Formulas for Deconvolution: +//! - EXPLICIT_ROUND_DOWN: +//! - EXPLICIT_ROUND_UP: +//! \code +//! O = (I - 1) * S + DK - (B + A) +//! \endcode +//! - SAME_UPPER: +//! \code +//! O = min(I * S, (I - 1) * S + DK) +//! P = max(DK - S, 0) +//! B = floor(P / 2) +//! A = P - B +//! \endcode +//! - SAME_LOWER: +//! \code +//! O = min(I * S, (I - 1) * S + DK) +//! P = max(DK - S, 0) +//! A = floor(P / 2) +//! B = P - A +//! \endcode +//! +//! Formulas for Pooling: +//! - EXPLICIT_ROUND_DOWN: +//! \code +//! O = floor((M - F) / S) + 1 +//! \endcode +//! - EXPLICIT_ROUND_UP: +//! \code +//! O = ceil((M - F) / S) + 1 +//! \endcode +//! - SAME_UPPER: +//! \code +//! O = ceil(I / S) +//! P = floor((I - 1) / S) * S + F - I; +//! B = floor(P / 2) +//! A = P - B +//! \endcode +//! - SAME_LOWER: +//! \code +//! O = ceil(I / S) +//! P = floor((I - 1) / S) * S + F - I; +//! A = floor(P / 2) +//! B = P - A +//! \endcode +//! +//! Pooling Example 1: +//! \code +//! Given I = {6, 6}, B = {3, 3}, A = {2, 2}, S = {2, 2}, F = {3, 3}. What is O? +//! (B, A can be calculated for SAME_UPPER and SAME_LOWER mode) +//! \endcode +//! +//! - EXPLICIT_ROUND_DOWN: +//! \code +//! Computation: +//! M = {6, 6} + {3, 3} + {2, 2} ==> {11, 11} +//! O ==> floor((M - F) / S) + 1 +//! ==> floor(({11, 11} - {3, 3}) / {2, 2}) + {1, 1} +//! ==> floor({8, 8} / {2, 2}) + {1, 1} +//! ==> {5, 5} +//! \endcode +//! - EXPLICIT_ROUND_UP: +//! \code +//! Computation: +//! M = {6, 6} + {3, 3} + {2, 2} ==> {11, 11} +//! O ==> ceil((M - F) / S) + 1 +//! ==> ceil(({11, 11} - {3, 3}) / {2, 2}) + {1, 1} +//! ==> ceil({8, 8} / {2, 2}) + {1, 1} +//! ==> {5, 5} +//! \endcode +//! The sample points are {0, 2, 4, 6, 8} in each dimension. +//! +//! - SAME_UPPER: +//! \code +//! Computation: +//! I = {6, 6} +//! S = {2, 2} +//! O = ceil(I / S) = {3, 3} +//! P = floor((I - 1) / S) * S + F - I +//! ==> floor(({6, 6} - {1, 1}) / {2, 2}) * {2, 2} + {3, 3} - {6, 6} +//! ==> {4, 4} + {3, 3} - {6, 6} +//! ==> {1, 1} +//! B = floor({1, 1} / {2, 2}) +//! ==> {0, 0} +//! A = {1, 1} - {0, 0} +//! ==> {1, 1} +//! \endcode +//! - SAME_LOWER: +//! \code +//! Computation: +//! I = {6, 6} +//! S = {2, 2} +//! O = ceil(I / S) = {3, 3} +//! P = floor((I - 1) / S) * S + F - I +//! ==> {1, 1} +//! A = floor({1, 1} / {2, 2}) +//! ==> {0, 0} +//! B = {1, 1} - {0, 0} +//! ==> {1, 1} +//! \endcode +//! The sample pointers are {0, 2, 4} in each dimension. +//! SAMPLE_UPPER has {O0, O1, O2, pad} in output in each dimension. +//! SAMPLE_LOWER has {pad, O0, O1, O2} in output in each dimension. +//! +//! Pooling Example 2: +//! \code +//! Given I = {6, 6}, B = {3, 3}, A = {3, 3}, S = {2, 2}, F = {3, 3}. What is O? +//! \endcode +//! +enum class PaddingMode : int32_t +{ + kEXPLICIT_ROUND_DOWN = 0, //!< Use explicit padding, rounding output size down. + kEXPLICIT_ROUND_UP = 1, //!< Use explicit padding, rounding output size up. + kSAME_UPPER = 2, //!< Use SAME padding, with prePadding <= postPadding. + kSAME_LOWER = 3, //!< Use SAME padding, with prePadding >= postPadding. +}; + +namespace impl +{ +//! +//! Maximum number of elements in PaddingMode enum. +//! +//! \see PaddingMode +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 4; +}; +} // namespace impl + +//! +//! \class IConvolutionLayer +//! +//! \brief A convolution layer in a network definition. +//! +//! This layer performs a correlation operation between 3 or 4 dimensional filter with a 4 or 5 dimensional tensor to +//! produce another 4 or 5 dimensional tensor. +//! +//! An optional bias argument is supported, which adds a per-channel constant to each value in the output. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IConvolutionLayer : public ILayer +{ +public: + //! + //! \brief Set the number of output maps for the convolution. + //! + //! If executing this layer on DLA, the number of output maps must be in the range [1,8192]. + //! + //! \see getNbOutputMaps() + //! + void setNbOutputMaps(int64_t nbOutputMaps) noexcept + { + mImpl->setNbOutputMaps(nbOutputMaps); + } + + //! + //! \brief Get the number of output maps for the convolution. + //! + //! \see setNbOutputMaps() + //! + int64_t getNbOutputMaps() const noexcept + { + return mImpl->getNbOutputMaps(); + } + + //! + //! \brief Set the number of groups for a convolution. + //! + //! The input tensor channels are divided into \p nbGroups groups, and a convolution is executed for each group, + //! using a filter per group. The results of the group convolutions are concatenated to form the output. + //! + //! \note When using groups in int8 mode, the size of the groups (i.e. the channel count divided by the group + //! count) must be a multiple of 4 for both input and output. + //! + //! Default: 1 + //! + //! If executing this layer on DLA, the max number of groups is 8192. + //! + //! \see getNbGroups() + //! + void setNbGroups(int64_t nbGroups) noexcept + { + mImpl->setNbGroups(nbGroups); + } + + //! + //! \brief Get the number of groups of the convolution. + //! + //! \see setNbGroups() + //! + int64_t getNbGroups() const noexcept + { + return mImpl->getNbGroups(); + } + + //! + //! \brief Set the kernel weights for the convolution. + //! + //! The weights are specified as a contiguous array in \p GKCRS order, where \p G is the number of groups, \p K + //! the number of output feature maps, \p C the number of input channels, and \p R and \p S are the height and + //! width of the filter. + //! + //! \see getKernelWeights() + //! + void setKernelWeights(Weights weights) noexcept + { + mImpl->setKernelWeights(weights); + } + + //! + //! \brief Get the kernel weights of the convolution. + //! + //! \see setKernelWeights() + //! + Weights getKernelWeights() const noexcept + { + return mImpl->getKernelWeights(); + } + + //! + //! \brief Set the bias weights for the convolution. + //! + //! Bias is optional. To omit bias, set the count value of the weights structure to zero. + //! + //! The bias is applied per-channel, so the number of weights (if non-zero) must be equal to the number of output + //! feature maps. + //! + //! \see getBiasWeights() + //! + void setBiasWeights(Weights weights) noexcept + { + mImpl->setBiasWeights(weights); + } + + //! + //! \brief Get the bias weights for the convolution. + //! + //! \see setBiasWeights() + //! + Weights getBiasWeights() const noexcept + { + return mImpl->getBiasWeights(); + } + + //! + //! \brief Set the multi-dimension pre-padding of the convolution. + //! + //! The start of the input will be zero-padded by this number of elements in each dimension. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range + //! [0,31], and the padding must be less than the kernel size. + //! + //! \see getPrePadding() + //! + void setPrePadding(Dims const& padding) noexcept + { + mImpl->setPrePadding(padding); + } + + //! + //! \brief Get the pre-padding. + //! + //! \see setPrePadding() + //! + Dims getPrePadding() const noexcept + { + return mImpl->getPrePadding(); + } + + //! + //! \brief Set the multi-dimension post-padding of the convolution. + //! + //! The end of the input will be zero-padded by this number of elements in each dimension. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range + //! [0,31], and the padding must be less than the kernel size. + //! + //! \see getPostPadding() + //! + void setPostPadding(Dims const& padding) noexcept + { + mImpl->setPostPadding(padding); + } + + //! + //! \brief Get the post-padding. + //! + //! \see setPostPadding() + //! + Dims getPostPadding() const noexcept + { + return mImpl->getPostPadding(); + } + + //! + //! \brief Set the padding mode. + //! + //! Padding mode takes precedence if both setPaddingMode and setPre/PostPadding are used. + //! + //! Default: kEXPLICIT_ROUND_DOWN + //! + //! \see getPaddingMode() + //! + void setPaddingMode(PaddingMode paddingMode) noexcept + { + mImpl->setPaddingMode(paddingMode); + } + + //! + //! \brief Get the padding mode. + //! + //! Default: kEXPLICIT_ROUND_DOWN + //! + //! \see setPaddingMode() + //! + PaddingMode getPaddingMode() const noexcept + { + return mImpl->getPaddingMode(); + } + + //! + //! \brief Set the multi-dimension kernel size of the convolution. + //! + //! If executing this layer on DLA, only support 2D kernel size, both height and width of kernel size must be in the + //! range [1,32]. + //! + //! \see getKernelSizeNd() + //! + void setKernelSizeNd(Dims const& kernelSize) noexcept + { + mImpl->setKernelSizeNd(kernelSize); + } + + //! + //! \brief Get the multi-dimension kernel size of the convolution. + //! + //! \see setKernelSizeNd() + //! + Dims getKernelSizeNd() const noexcept + { + return mImpl->getKernelSizeNd(); + } + + //! + //! \brief Set the multi-dimension stride of the convolution. + //! + //! Default: (1, 1, ..., 1) + //! + //! If executing this layer on DLA, only support 2D stride, both height and width of stride must be in the range + //! [1,8]. + //! + //! \see getStrideNd() + //! + void setStrideNd(Dims const& stride) noexcept + { + mImpl->setStrideNd(stride); + } + + //! + //! \brief Get the multi-dimension stride of the convolution. + //! + //! \see setStrideNd() + //! + Dims getStrideNd() const noexcept + { + return mImpl->getStrideNd(); + } + + //! + //! \brief Set the multi-dimension padding of the convolution. + //! + //! The input will be zero-padded by this number of elements in each dimension. + //! Padding is symmetric. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range + //! [0,31], and the padding must be less than the kernel size. + //! + //! \see getPaddingNd() setPadding() getPadding() + //! + void setPaddingNd(Dims const& padding) noexcept + { + mImpl->setPaddingNd(padding); + } + + //! + //! \brief Get the multi-dimension padding of the convolution. + //! + //! If the padding is asymmetric, the pre-padding is returned. + //! + //! \see setPaddingNd() + //! + Dims getPaddingNd() const noexcept + { + return mImpl->getPaddingNd(); + } + + //! + //! \brief Set the multi-dimension dilation of the convolution. + //! + //! Default: (1, 1, ..., 1) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width must be in the range [1,32]. + //! + //! \see getDilationNd() + //! + void setDilationNd(Dims const& dilation) noexcept + { + mImpl->setDilationNd(dilation); + } + + //! + //! \brief Get the multi-dimension dilation of the convolution. + //! + //! \see setDilationNd() + //! + Dims getDilationNd() const noexcept + { + return mImpl->getDilationNd(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! The indices are as follows: + //! + //! Input 0 is the input activation tensor. + //! Input 1 is the kernel tensor. If used, the kernel weights parameter must be set to empty weights. + //! Input 2 is the bias tensor. If used, the bias parameter must be set to empty weights. + //! + //! \see getKernelWeights(), setKernelWeights(), getBiasWeights(), setBiasWeights() + //! + using ILayer::setInput; + +protected: + virtual ~IConvolutionLayer() noexcept = default; + apiv::VConvolutionLayer* mImpl; +}; + +//! +//! \class IActivationLayer +//! +//! \brief An Activation layer in a network definition. +//! +//! This layer applies a per-element activation function to its input. +//! +//! The output has the same shape as the input. +//! +//! The input is a shape tensor if the output is a shape tensor. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IActivationLayer : public ILayer +{ +public: + //! + //! \brief Set the type of activation to be performed. + //! + //! On the DLA, the valid activation types are kRELU, kSIGMOID, kTANH, and kCLIP. + //! + //! \see getActivationType(), ActivationType + //! + void setActivationType(ActivationType type) noexcept + { + mImpl->setActivationType(type); + } + + //! + //! \brief Get the type of activation to be performed. + //! + //! \see setActivationType(), ActivationType + //! + ActivationType getActivationType() const noexcept + { + return mImpl->getActivationType(); + } + + //! + //! \brief Set the alpha parameter (must be finite). + //! + //! This parameter is used by the following activations: + //! LeakyRelu, Elu, Selu, Softplus, Clip, HardSigmoid, ScaledTanh, + //! ThresholdedRelu. + //! + //! It is ignored by the other activations. + //! + //! \see getAlpha(), setBeta() + void setAlpha(float alpha) noexcept + { + mImpl->setAlpha(alpha); + } + + //! + //! \brief Set the beta parameter (must be finite). + //! + //! This parameter is used by the following activations: + //! Selu, Softplus, Clip, HardSigmoid, ScaledTanh. + //! + //! It is ignored by the other activations. + //! + //! \see getBeta(), setAlpha() + void setBeta(float beta) noexcept + { + mImpl->setBeta(beta); + } + + //! + //! \brief Get the alpha parameter. + //! + //! \see getBeta(), setAlpha() + float getAlpha() const noexcept + { + return mImpl->getAlpha(); + } + + //! + //! \brief Get the beta parameter. + //! + //! \see getAlpha(), setBeta() + float getBeta() const noexcept + { + return mImpl->getBeta(); + } + +protected: + virtual ~IActivationLayer() noexcept = default; + apiv::VActivationLayer* mImpl; +}; + +//! +//! \enum PoolingType +//! +//! \brief The type of pooling to perform in a pooling layer. +//! +enum class PoolingType : int32_t +{ + kMAX = 0, //!< Maximum over elements + kAVERAGE = 1, //!< Average over elements. If the tensor is padded, the count includes the padding + kMAX_AVERAGE_BLEND = 2 //!< Blending between max and average pooling: (1-blendFactor)*maxPool + blendFactor*avgPool +}; + +namespace impl +{ +//! +//! Maximum number of elements in PoolingType enum. +//! +//! \see PoolingType +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 3; +}; +} // namespace impl + +//! \class IPoolingLayer +//! +//! \brief A Pooling layer in a network definition. +//! +//! The layer applies a reduction operation within a window over the input. +//! +//! \warning When running pooling layer with DeviceType::kDLA in Int8 mode, the dynamic ranges +//! for input and output tensors must be equal. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IPoolingLayer : public ILayer +{ +public: + //! + //! \brief Set the type of activation to be performed. + //! + //! DLA only supports kMAX and kAVERAGE pooling types. + //! + //! \see getPoolingType(), PoolingType + //! + void setPoolingType(PoolingType type) noexcept + { + mImpl->setPoolingType(type); + } + + //! + //! \brief Get the type of activation to be performed. + //! + //! \see setPoolingType(), PoolingType + //! + PoolingType getPoolingType() const noexcept + { + return mImpl->getPoolingType(); + } + + //! + //! \brief Set the blending factor for the max_average_blend mode: + //! max_average_blendPool = (1-blendFactor)*maxPool + blendFactor*avgPool + //! blendFactor is a user value in [0,1] with the default value of 0.0 + //! This value only applies for the kMAX_AVERAGE_BLEND mode. + //! + //! Since DLA does not support kMAX_AVERAGE_BLEND, blendFactor is ignored on the DLA. + //! + //! \see getBlendFactor() + //! + void setBlendFactor(float blendFactor) noexcept + { + mImpl->setBlendFactor(blendFactor); + } + + //! + //! \brief Get the blending factor for the max_average_blend mode: + //! max_average_blendPool = (1-blendFactor)*maxPool + blendFactor*avgPool + //! blendFactor is a user value in [0,1] with the default value of 0.0 + //! In modes other than kMAX_AVERAGE_BLEND, blendFactor is ignored. + //! + //! \see setBlendFactor() + //! + float getBlendFactor() const noexcept + { + return mImpl->getBlendFactor(); + } + + //! + //! \brief Set whether average pooling uses as a denominator the overlap area between the window + //! and the unpadded input. + //! If this is not set, the denominator is the overlap between the pooling window and the padded input. + //! + //! Default: true + //! + //! \see getAverageCountExcludesPadding() + //! + void setAverageCountExcludesPadding(bool exclusive) noexcept + { + mImpl->setAverageCountExcludesPadding(exclusive); + } + + //! + //! \brief Get whether average pooling uses as a denominator the overlap area between the window + //! and the unpadded input. + //! + //! \see setAverageCountExcludesPadding() + //! + bool getAverageCountExcludesPadding() const noexcept + { + return mImpl->getAverageCountExcludesPadding(); + } + + //! + //! \brief Set the multi-dimension pre-padding for pooling. + //! + //! The start of the input will be padded by this number of elements in each dimension. + //! Padding value depends on pooling type, -inf is used for max pooling and zero padding for average pooling. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range + //! [0,7]. + //! + //! \see getPrePadding() + //! + void setPrePadding(Dims const& padding) noexcept + { + mImpl->setPrePadding(padding); + } + + //! + //! \brief Get the pre-padding. + //! + //! \see setPrePadding() + //! + Dims getPrePadding() const noexcept + { + return mImpl->getPrePadding(); + } + + //! + //! \brief Set the multi-dimension post-padding for pooling. + //! + //! The end of the input will be padded by this number of elements in each dimension. + //! Padding value depends on pooling type, -inf is used for max pooling and zero padding for average pooling. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range + //! [0,7]. + //! + //! \see getPostPadding() + //! + void setPostPadding(Dims const& padding) noexcept + { + mImpl->setPostPadding(padding); + } + + //! + //! \brief Get the padding. + //! + //! \see setPostPadding() + //! + Dims getPostPadding() const noexcept + { + return mImpl->getPostPadding(); + } + + //! + //! \brief Set the padding mode. + //! + //! Padding mode takes precedence if both setPaddingMode and setPre/PostPadding are used. + //! + //! Default: kEXPLICIT_ROUND_DOWN + //! + //! \see getPaddingMode() + void setPaddingMode(PaddingMode paddingMode) noexcept + { + mImpl->setPaddingMode(paddingMode); + } + + //! + //! \brief Get the padding mode. + //! + //! Default: kEXPLICIT_ROUND_DOWN + //! + //! \see setPaddingMode() + PaddingMode getPaddingMode() const noexcept + { + return mImpl->getPaddingMode(); + } + + //! + //! \brief Set the multi-dimension window size for pooling. + //! + //! If executing this layer on DLA, only support 2D window size, both height and width of window size must be in the + //! range [1,8]. + //! + //! \see getWindowSizeNd() setWindowSize() getWindowSize() + //! + void setWindowSizeNd(Dims const& windowSize) noexcept + { + mImpl->setWindowSizeNd(windowSize); + } + + //! + //! \brief Get the multi-dimension window size for pooling. + //! + //! \see setWindowSizeNd() + //! + Dims getWindowSizeNd() const noexcept + { + return mImpl->getWindowSizeNd(); + } + + //! + //! \brief Set the multi-dimension stride for pooling. + //! + //! Default: (1, 1, ..., 1) + //! + //! If executing this layer on DLA, only support 2D stride, both height and width of stride must be in the range + //! [1,16]. + //! + //! \see getStrideNd() + //! + void setStrideNd(Dims const& stride) noexcept + { + mImpl->setStrideNd(stride); + } + + //! + //! \brief Get the multi-dimension stride for pooling. + //! + //! \see setStrideNd() + //! + Dims getStrideNd() const noexcept + { + return mImpl->getStrideNd(); + } + + //! + //! \brief Set the multi-dimension padding for pooling. + //! + //! The input will be padded by this number of elements in each dimension. + //! Padding is symmetric. + //! Padding value depends on pooling type, -inf is used for max pooling and zero padding for average pooling. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, only support 2D padding, both height and width of padding must be in the range + //! [0,7]. + //! + //! \see getPaddingNd() setPadding() getPadding() + //! + void setPaddingNd(Dims const& padding) noexcept + { + mImpl->setPaddingNd(padding); + } + + //! + //! \brief Get the multi-dimension padding for pooling. + //! + //! If the padding is asymmetric, the pre-padding is returned. + //! + //! \see setPaddingNd() + //! + Dims getPaddingNd() const noexcept + { + return mImpl->getPaddingNd(); + } + +protected: + virtual ~IPoolingLayer() noexcept = default; + apiv::VPoolingLayer* mImpl; +}; + +//! +//! \class ILRNLayer +//! +//! \brief A LRN layer in a network definition. +//! +//! The output size is the same as the input size. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ILRNLayer : public ILayer +{ +public: + //! + //! \brief Set the LRN window size. + //! + //! The window size must be odd and in the range of [1, 15]. + //! + //! If executing this layer on the DLA, only values in the set, [3, 5, 7, 9], are valid. + //! + //! \see setWindowStride() + //! + void setWindowSize(int64_t windowSize) noexcept + { + mImpl->setWindowSize(windowSize); + } + + //! + //! \brief Get the LRN window size. + //! + //! \see getWindowStride() + //! + int64_t getWindowSize() const noexcept + { + return mImpl->getWindowSize(); + } + + //! + //! \brief Set the LRN alpha value. + //! + //! The valid range is [-1e20, 1e20]. + //! + //! \see getAlpha() + //! + void setAlpha(float alpha) noexcept + { + mImpl->setAlpha(alpha); + } + + //! + //! \brief Get the LRN alpha value. + //! + //! \see setAlpha() + //! + float getAlpha() const noexcept + { + return mImpl->getAlpha(); + } + + //! + //! \brief Set the LRN beta value. + //! + //! The valid range is [0.01, 1e5f]. + //! + //! \see getBeta() + //! + void setBeta(float beta) noexcept + { + mImpl->setBeta(beta); + } + + //! + //! \brief Get the LRN beta value. + //! + //! \see setBeta() + //! + float getBeta() const noexcept + { + return mImpl->getBeta(); + } + + //! + //! \brief Set the LRN K value. + //! + //! The valid range is [1e-5, 1e10]. + //! + //! \see getK() + //! + void setK(float k) noexcept + { + mImpl->setK(k); + } + + //! + //! \brief Get the LRN K value. + //! + //! \see setK() + //! + float getK() const noexcept + { + return mImpl->getK(); + } + +protected: + virtual ~ILRNLayer() noexcept = default; + apiv::VLRNLayer* mImpl; +}; + +//! +//! \brief Controls how shift, scale and power are applied in a Scale layer. +//! +//! \see IScaleLayer +//! +enum class ScaleMode : int32_t +{ + kUNIFORM = 0, //!< Identical coefficients across all elements of the tensor. + kCHANNEL = 1, //!< Per-channel coefficients. + kELEMENTWISE = 2 //!< Elementwise coefficients. +}; + +//! +//! Maximum number of elements in ScaleMode enum. +//! +//! \see ScaleMode +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class IScaleLayer +//! +//! \brief A Scale layer in a network definition. +//! +//! This layer applies a per-element computation to its input: +//! +//! \p output = (\p input* \p scale + \p shift)^ \p power +//! +//! The coefficients can be applied on a per-tensor, per-channel, or per-element basis. +//! +//! \note If the number of weights is 0, then a default value is used for shift, power, and scale. +//! The default shift is 0, the default power is 1, and the default scale is 1. +//! +//! The output size is the same as the input size. +//! +//! \note The input tensor is required to have at least 4 dimensions. +//! +//! A scale layer may be used as an INT8 quantization node in a graph, if the output is constrained to INT8 and +//! the input to FP32. Quantization rounds ties to even, and clamps to [-128, 127]. +//! +//! \see ScaleMode +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IScaleLayer : public ILayer +{ +public: + //! + //! \brief Set the scale mode. + //! + //! \see getMode() + //! + void setMode(ScaleMode mode) noexcept + { + mImpl->setMode(mode); + } + + //! + //! \brief Get the scale mode. + //! + //! \see setMode() + //! + ScaleMode getMode() const noexcept + { + return mImpl->getMode(); + } + + //! + //! \brief Set the shift value. + //! + //! \see getShift() + //! + void setShift(Weights shift) noexcept + { + mImpl->setShift(shift); + } + + //! + //! \brief Get the shift value. + //! + //! \see setShift() + //! + Weights getShift() const noexcept + { + return mImpl->getShift(); + } + + //! + //! \brief Set the scale value. + //! + //! \see getScale() + //! + void setScale(Weights scale) noexcept + { + mImpl->setScale(scale); + } + + //! + //! \brief Get the scale value. + //! + //! \see setScale() + //! + Weights getScale() const noexcept + { + return mImpl->getScale(); + } + + //! + //! \brief Set the power value. + //! + //! \see getPower() + //! + void setPower(Weights power) noexcept + { + mImpl->setPower(power); + } + + //! + //! \brief Get the power value. + //! + //! \see setPower() + //! + Weights getPower() const noexcept + { + return mImpl->getPower(); + } + + //! + //! \brief Get the channel axis. + //! + //! \return channelAxis parameter passed to addScaleNd() or set by setChannelAxis() + //! + //! The value is the index of the channel axis in the input tensor's dimensions. + //! Scaling happens along the channel axis when ScaleMode::kCHANNEL is enabled. + //! + //! \see addScaleNd() + //! + int32_t getChannelAxis() const noexcept + { + return mImpl->getChannelAxis(); + } + + //! + //! \brief Set the channel axis. + //! + //! The value is the index of the channel axis in the input tensor's dimensions. + //! + //! For ScaleMode::kCHANNEL, there can be distinct scale, shift, and power weights for each channel coordinate. + //! For ScaleMode::kELEMENTWISE, there can be distinct scale, shift, and power weights for each combination of + //! coordinates from the channel axis and axes after it. + //! + //! For example, suppose the input tensor has dimensions [10,20,30,40] and the channel axis is 1. + //! Let [n,c,h,w] denote an input coordinate. + //! For ScaleMode::kCHANNEL, the scale, shift, and power weights are indexed by c. + //! For ScaleMode::kELEMENTWISE, the scale, shift, and power weights are indexed by [c,h,w]. + //! + //! \see addScaleNd() + //! + void setChannelAxis(int32_t channelAxis) noexcept + { + mImpl->setChannelAxis(channelAxis); + } + +protected: + virtual ~IScaleLayer() noexcept = default; + apiv::VScaleLayer* mImpl; +}; + +//! +//! \class ISoftMaxLayer +//! +//! \brief A Softmax layer in a network definition. +//! +//! This layer applies a per-channel softmax to its input. +//! +//! The output size is the same as the input size. +//! +//! The following constraints must be satisfied to execute this layer on DLA: +//! * Axis must be one of the channel or spatial dimensions. +//! * There are two classes of supported input sizes: +//! 1. Non-axis, non-batch dimensions are all 1 and the axis dimension is at most 8192. +//! This is the recommended case for using softmax since it is the most accurate. +//! 2. At least one non-axis, non-batch dimension greater than 1 and the axis dimension is at most 1024. +//! Note that in this case, there may be some approximation error as the axis dimension size approaches +//! the upper bound. See the TensorRT Developer Guide for more details on the approximation error. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ISoftMaxLayer : public ILayer +{ +public: + //! + //! \brief Set the axis along which softmax is computed. Currently, only one axis can be set. + //! + //! The axis is specified by setting the bit corresponding to the axis to 1. + //! For example, consider an NCHW tensor as input. + //! + //! Bit 0 corresponds to the N dimension boolean. + //! Bit 1 corresponds to the C dimension boolean. + //! Bit 2 corresponds to the H dimension boolean. + //! Bit 3 corresponds to the W dimension boolean. + //! By default, softmax is performed on the axis which is the number of axes minus three. It is 0 if + //! there are fewer than 3 axes. For example, if the input is NCHW, the default axis is C. If the input + //! is NHW, then the default axis is N. + //! + //! For example, to perform softmax on axis R of a NPQRCHW input, set bit 3. + //! + //! \param axes The axis along which softmax is computed. + //! Here axes is a bitmap. For example, when doing softmax along axis 0, bit 0 is set to 1, axes = 1 << axis + //! = 1. + //! + void setAxes(uint32_t axes) noexcept + { + mImpl->setAxes(axes); + } + + //! + //! \brief Get the axis along which softmax occurs. + //! + //! \see setAxes() + //! + uint32_t getAxes() const noexcept + { + return mImpl->getAxes(); + } + +protected: + virtual ~ISoftMaxLayer() noexcept = default; + apiv::VSoftMaxLayer* mImpl; +}; + +//! +//! \class IConcatenationLayer +//! +//! \brief A concatenation layer in a network definition. +//! +//! The output dimension along the concatenation axis is the sum of the corresponding input dimensions. +//! Every other output dimension is the same as the corresponding dimension of the inputs. +//! +//! \warning All tensors must have the same dimensions except along the concatenation axis. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IConcatenationLayer : public ILayer +{ +public: + //! + //! \brief Set the axis along which concatenation occurs. + //! + //! The default axis is the number of tensor dimensions minus three, or zero if the tensor has fewer than three + //! dimensions. For example, for a tensor with dimensions NCHW, it is C. + //! + //! When running this layer on the DLA, the concatenation axis must be the third to last axis, e.g. C if tensor + //! dimensions are NCHW. + //! + //! \param axis The axis along which concatenation occurs. + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Get the axis along which concatenation occurs. + //! + //! \see setAxis() + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + +protected: + virtual ~IConcatenationLayer() noexcept = default; + apiv::VConcatenationLayer* mImpl; +}; + +//! +//! \class IDeconvolutionLayer +//! +//! \brief A deconvolution layer in a network definition. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IDeconvolutionLayer : public ILayer +{ +public: + //! + //! \brief Set the number of output feature maps for the deconvolution. + //! + //! If executing this layer on DLA, the number of output maps must be in the range [1,8192]. + //! + //! \see getNbOutputMaps() + //! + void setNbOutputMaps(int64_t nbOutputMaps) noexcept + { + mImpl->setNbOutputMaps(nbOutputMaps); + } + + //! + //! \brief Get the number of output feature maps for the deconvolution. + //! + //! \see setNbOutputMaps() + //! + int64_t getNbOutputMaps() const noexcept + { + return mImpl->getNbOutputMaps(); + } + + //! + //! \brief Set the number of groups for a deconvolution. + //! + //! The input tensor channels are divided into \p nbGroups groups, and a deconvolution is executed for each group, + //! using a filter per group. The results of the group convolutions are concatenated to form the output. + //! + //! If executing this layer on DLA, nbGroups must be one + //! + //! \note When using groups in int8 mode, the size of the groups (i.e. the channel count divided by the group count) + //! must be a multiple of 4 for both input and output. + //! + //! Default: 1 + //! + //! \see getNbGroups() + //! + void setNbGroups(int64_t nbGroups) noexcept + { + mImpl->setNbGroups(nbGroups); + } + + //! + //! \brief Get the number of groups for a deconvolution. + //! + //! \see setNbGroups() + //! + int64_t getNbGroups() const noexcept + { + return mImpl->getNbGroups(); + } + + //! + //! \brief Set the kernel weights for the deconvolution. + //! + //! The weights are specified as a contiguous array in \p CKRS order, where \p C the number of + //! input channels, \p K the number of output feature maps, and \p R and \p S are the height and width + //! of the filter. + //! + //! \see getWeights() + //! + void setKernelWeights(Weights weights) noexcept + { + mImpl->setKernelWeights(weights); + } + + //! + //! \brief Get the kernel weights for the deconvolution. + //! + //! \see setNbGroups() + //! + Weights getKernelWeights() const noexcept + { + return mImpl->getKernelWeights(); + } + + //! + //! \brief Set the bias weights for the deconvolution. + //! + //! Bias is optional. To omit bias, set the count value of the weights structure to zero. + //! + //! The bias is applied per-feature-map, so the number of weights (if non-zero) must be equal to the number of + //! output feature maps. + //! + //! \see getBiasWeights() + //! + void setBiasWeights(Weights weights) noexcept + { + mImpl->setBiasWeights(weights); + } + + //! + //! \brief Get the bias weights for the deconvolution. + //! + //! \see getBiasWeights() + //! + Weights getBiasWeights() const noexcept + { + return mImpl->getBiasWeights(); + } + + //! + //! \brief Set the multi-dimension pre-padding of the deconvolution. + //! + //! The output will be trimmed by this number of elements on the start of every dimension. + //! In other words, it resembles the inverse of a convolution layer with this padding size. + //! Negative padding is not supported. + //! + //! Default: (0, 0, ..., 0) + //! + //! + //! \see getPrePadding() + //! + void setPrePadding(Dims const& padding) noexcept + { + mImpl->setPrePadding(padding); + } + + //! + //! \brief Get the pre-padding. + //! + //! \see setPrePadding() + //! + Dims getPrePadding() const noexcept + { + return mImpl->getPrePadding(); + } + + //! + //! \brief Set the multi-dimension post-padding of the deconvolution. + //! + //! The output will be trimmed by this number of elements on the end of every dimension. + //! In other words, it resembles the inverse of a convolution layer with this padding size. + //! Negative padding is not supported. + //! + //! Default: (0, 0, ..., 0) + //! + //! + //! \see getPostPadding() + //! + void setPostPadding(Dims const& padding) noexcept + { + mImpl->setPostPadding(padding); + } + + //! + //! \brief Get the padding. + //! + //! \see setPostPadding() + //! + Dims getPostPadding() const noexcept + { + return mImpl->getPostPadding(); + } + + //! + //! \brief Set the padding mode. + //! + //! Padding mode takes precedence if both setPaddingMode and setPre/PostPadding are used. + //! + //! Default: kEXPLICIT_ROUND_DOWN + //! + //! \see getPaddingMode() + //! + void setPaddingMode(PaddingMode paddingMode) noexcept + { + mImpl->setPaddingMode(paddingMode); + } + + //! + //! \brief Get the padding mode. + //! + //! Default: kEXPLICIT_ROUND_DOWN + //! + //! \see setPaddingMode() + //! + PaddingMode getPaddingMode() const noexcept + { + return mImpl->getPaddingMode(); + } + + //! + //! \brief Set the multi-dimension kernel size of the deconvolution. + //! + //! If executing this layer on DLA, there are two restrictions: + //! 1) Only 2D Kernel is supported. + //! 2) Kernel height and width must be in the range [1,32] or the combinations of [64, 96, 128] in one + //! dimension and 1 in the other dimensions, i.e. [1x64] or [64x1] are valid, but not [64x64]. + //! + //! \see getKernelSizeNd() + //! + void setKernelSizeNd(Dims const& kernelSize) noexcept + { + mImpl->setKernelSizeNd(kernelSize); + } + + //! + //! \brief Get the multi-dimension kernel size of the deconvolution. + //! + //! \see setKernelSizeNd() + //! + Dims getKernelSizeNd() const noexcept + { + return mImpl->getKernelSizeNd(); + } + + //! + //! \brief Set the multi-dimension stride of the deconvolution. + //! + //! Default: (1, 1, ..., 1) + //! + //! If executing this layer on DLA, there are two restrictions: + //! 1) Only 2D Stride is supported. + //! 2) Stride height and width must be in the range [1,32] or the combinations of [64, 96, 128] in one + //! dimension and 1 in the other dimensions, i.e. [1x64] or [64x1] are valid, but not [64x64]. + //! + //! \see getStrideNd() + //! + void setStrideNd(Dims const& stride) noexcept + { + mImpl->setStrideNd(stride); + } + + //! + //! \brief Get the multi-dimension stride of the deconvolution. + //! + //! \see setStrideNd() + //! + Dims getStrideNd() const noexcept + { + return mImpl->getStrideNd(); + } + + //! + //! \brief Set the multi-dimension padding of the deconvolution. + //! + //! The output will be trimmed by this number of elements on both sides of every dimension. + //! In other words, it resembles the inverse of a convolution layer with this padding size. + //! Padding is symmetric, and negative padding is not supported. + //! + //! Default: (0, 0, ..., 0) + //! + //! If executing this layer on DLA, padding must be 0. + //! + //! \see getPaddingNd() setPadding() getPadding() + //! + void setPaddingNd(Dims const& padding) noexcept + { + mImpl->setPaddingNd(padding); + } + + //! + //! \brief Get the multi-dimension padding of the deconvolution. + //! + //! If the padding is asymmetric, the pre-padding is returned. + //! + //! \see setPaddingNd() + //! + Dims getPaddingNd() const noexcept + { + return mImpl->getPaddingNd(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! Input 0 is the input activation tensor. + //! Input 1 is the kernel tensor. If used, the kernel weights parameter must be set to empty weights. + //! Input 2 is the bias tensor. If used, the bias parameter must be set to empty weights. + //! + //! \see getKernelWeights(), setKernelWeights(), getBiasWeights(), setBiasWeights() + //! + using ILayer::setInput; + + //! + //! \brief Set the multi-dimension dilation of the deconvolution. + //! + //! Default: (1, 1, ..., 1) + //! + //! \see getDilationNd() + //! + void setDilationNd(Dims const& dilation) noexcept + { + mImpl->setDilationNd(dilation); + } + + //! + //! \brief Get the multi-dimension dilation of the deconvolution. + //! + //! \see setDilationNd() + //! + Dims getDilationNd() const noexcept + { + return mImpl->getDilationNd(); + } + +protected: + virtual ~IDeconvolutionLayer() noexcept = default; + apiv::VDeconvolutionLayer* mImpl; +}; + +//! +//! \enum ElementWiseOperation +//! +//! \brief Enumerates the binary operations that may be performed by an ElementWise layer. +//! +//! Operations kAND, kOR, and kXOR must have inputs of DataType::kBOOL. +//! +//! All other operations must have inputs of floating-point type, DataType::kINT8, DataType::kINT32, or +//! DataType::kINT64. +//! +//! \see IElementWiseLayer +//! +enum class ElementWiseOperation : int32_t +{ + kSUM = 0, //!< Sum of the two elements. + kPROD = 1, //!< Product of the two elements. + kMAX = 2, //!< Maximum of the two elements. + kMIN = 3, //!< Minimum of the two elements. + kSUB = 4, //!< Subtract the second element from the first. + kDIV = 5, //!< Divide the first element by the second. + kPOW = 6, //!< The first element to the power of the second element. + kFLOOR_DIV = 7, //!< Floor division of the first element by the second. + kAND = 8, //!< Logical AND of two elements. + kOR = 9, //!< Logical OR of two elements. + kXOR = 10, //!< Logical XOR of two elements. + kEQUAL = 11, //!< Check if two elements are equal. + kGREATER = 12, //!< Check if element in first tensor is greater than corresponding element in second tensor. + kLESS = 13 //!< Check if element in first tensor is less than corresponding element in second tensor. +}; + +namespace impl +{ +//! +//! Maximum number of elements in ElementWiseOperation enum. +//! +//! \see ElementWiseOperation +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 14; +}; +} // namespace impl + +//! +//! \class IElementWiseLayer +//! +//! \brief A elementwise layer in a network definition. +//! +//! This layer applies a per-element binary operation between corresponding elements of two tensors. +//! +//! The input tensors must have the same rank. For each dimension, their lengths must +//! match, or one of them must be one. In the latter case, the tensor is broadcast along that axis. +//! +//! The output tensor has the same rank as the inputs. For each output dimension, +//! its length is equal to the lengths of the corresponding input dimensions if they match, +//! otherwise it is equal to the length that is not one. +//! +//! \warning When running this layer on the DLA with Int8 data type, the dynamic ranges of two input tensors shall be +//! equal. If the dynamic ranges are generated using calibrator, the largest value shall be used. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IElementWiseLayer : public ILayer +{ +public: + //! + //! \brief Set the binary operation for the layer. + //! + //! DLA supports only kSUM, kPROD, kMAX, kMIN, and kSUB. + //! + //! \see getOperation(), ElementWiseOperation + //! + //! \see getBiasWeights() + //! + void setOperation(ElementWiseOperation op) noexcept + { + return mImpl->setOperation(op); + } + + //! + //! \brief Get the binary operation for the layer. + //! + //! \see setOperation(), ElementWiseOperation + //! + //! \see setBiasWeights() + //! + ElementWiseOperation getOperation() const noexcept + { + return mImpl->getOperation(); + } + +protected: + apiv::VElementWiseLayer* mImpl; + virtual ~IElementWiseLayer() noexcept = default; +}; + +//! +//! \brief Control form of IGatherLayer +//! +//! \see IGatherLayer +//! +enum class GatherMode : int32_t +{ + kDEFAULT = 0, //!< Similar to ONNX Gather + kELEMENT = 1, //!< Similar to ONNX GatherElements + kND = 2 //!< Similar to ONNX GatherND +}; + +//! +//! Maximum number of elements in GatherMode enum. +//! +//! \see GatherMode +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class IGatherLayer +//! +//! \brief A Gather layer in a network definition. Supports several kinds of gathering. +//! +//! The Gather layer has two input tensors, Data and Indices, and an output tensor Output. +//! Additionally, there are three parameters: mode, nbElementwiseDims, and axis that control +//! how the indices are interpreted. +//! +//! * Data is a tensor of rank r >= 1 that stores the values to be gathered in Output. +//! * Indices is a tensor of rank q that determines which locations in Data to gather. +//! * GatherMode::kDEFAULT: q >= 0 +//! * GatherMode::kND: q >= 1 and the last dimension of Indices must be a build time constant. +//! * GatherMode::kELEMENT: q = r +//! * Output stores the gathered results. Its rank s depends on the mode: +//! * GatherMode::kDEFAULT: s = q + r - 1 - nbElementwiseDims +//! * GatherMode::kND: s = q + r - indices.d[q-1] - 1 - nbElementwiseDims +//! * GatherMode::kELEMENT: s = q = r. +//! +//! The dimensions of the output likewise depends on the mode: +//! +//! GatherMode::kDEFAULT: +//! +//! First nbElementwiseDims of output are computed by applying broadcast rules to +//! first nbElementwiseDims of indices and data. Note that nbElementwiseDims <= 1. +//! Rest of dimensions are computed by copying dimensions of Data, and replacing +//! the dimension for axis gatherAxis with the dimensions of indices. +//! +//! GatherMode::kND: +//! If indices.d[q-1] = r - nbElementwiseDims +//! output.d = [indices.d[0], ... , indices.d[q-2]] +//! Else if indices.d[q-1] < r - nbElementwiseDims +//! output.d = [indices.d[0], ... , indices.d[q-1], data.d[nbElementwiseDims + indices.d[q-1] + q], +//! data.d[r-1]] +//! Else +//! This is build time error +//! +//! GatherMode::kELEMENT: +//! The output dimensions match the dimensions of the indices tensor. +//! +//! The types of Data and Output must be the same, and Indices shall be DataType::kINT32 or DataType::kINT64. +//! +//! How the elements of Data are gathered depends on the mode: +//! +//! GatherMode::kDEFAULT: +//! Each index in indices is used to index Data along axis gatherAxis. +//! +//! GatherMode::kND: +//! Indices is a rank q integer tensor, best thought of as a rank (q-1) tensor of +//! indices into data, where each element defines a slice of data +//! The operation can be formulated as output[i_1, ..., i_{q-1}] = data[indices[i_1, ..., i_{q-1}]] +//! +//! GatherMode::kELEMENT: +//! +//! Here "axis" denotes the result of getGatherAxis(). +//! For each element X of indices: +//! Let J denote a sequence for the subscripts of X +//! Let K = sequence J with element [axis] replaced by X +//! output[J] = data[K] +//! +//! The handling of nbElementWiseDims depends on the mode: +//! * GatherMode::kDEFAULT: nbElementWiseDims <= 1. Broadcast is supported across the elementwise dimension if +//! present. +//! * GatherMode::kND: 0 <= nbElementWiseDims < rank(Data)-1. Broadcast is not supported across the elementwise +//! dimensions. +//! * GatherMode::kELEMENT: nbElementWiseDims = 0 +//! +//! Notes: +//! * For modes GatherMode::kND and GatherMode::kELEMENT, the first nbElementWiseDims dimensions of data and index must +//! be equal. If not, an error will be reported at build time or run time. +//! * If an axis of Data has dynamic length, using a negative index for it has undefined behavior. +//! * No DLA support +//! * Zero will be stored for OOB access +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IGatherLayer : public ILayer +{ +public: + //! + //! \brief Set the axis used by GatherMode::kELEMENTS and GatherMode::kDEFAULT + //! The axis must be less than the number of dimensions in the data input. + //! The axis defaults to 0. + //! + //! \warning Undefined behavior when used with GatherMode::kND. + //! + //! \see getGatherAxis() + //! + void setGatherAxis(int32_t axis) noexcept + { + mImpl->setGatherAxis(axis); + } + + //! + //! \brief Get the axis to gather on. + //! + //! \warning Undefined behavior when used with GatherMode::kND. + //! + //! \see setGatherAxis() + //! + int32_t getGatherAxis() const noexcept + { + return mImpl->getGatherAxis(); + } + + //! + //! \brief Set the number of leading dimensions of indices tensor to be handled elementwise. + //! + //! The gathering of indexing starts from the dimension of data[NbElementWiseDims:]. + //! The NbElementWiseDims must be less than the Rank of the data input. + //! + //! \param elementWiseDims number of dims to be handled as elementwise. + //! + //! Default: 0 + //! + //! The value of nbElementWiseDims and GatherMode are checked during network validation: + //! + //! GatherMode::kDEFAULT: nbElementWiseDims can be 0 or 1. + //! GatherMode::kND: nbElementWiseDims can be between 0 and one less than rank(data). + //! GatherMode::kELEMENT: nbElementWiseDims must be 0 + //! + //! \see getNbElementWiseDims() + //! + void setNbElementWiseDims(int32_t elementWiseDims) noexcept + { + mImpl->setNbElementWiseDims(elementWiseDims); + } + + //! + //! \brief Get the number of leading dimensions of indices tensor to be handled elementwise. + //! + //! \see setNbElementWiseDims() + //! + int32_t getNbElementWiseDims() const noexcept + { + return mImpl->getNbElementWiseDims(); + } + + //! + //! \brief Set the gather mode. + //! + //! \see getMode() + //! + void setMode(GatherMode mode) noexcept + { + mImpl->setMode(mode); + } + + //! + //! \brief Get the gather mode. + //! + //! \see setMode() + //! + GatherMode getMode() const noexcept + { + return mImpl->getMode(); + } + +protected: + apiv::VGatherLayer* mImpl; + virtual ~IGatherLayer() noexcept = default; +}; + +//! +//! \class IPluginV2Layer +//! +//! \brief Layer type for pluginV2 +//! +//! \see IPluginV2 +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \deprecated Deprecated in TensorRT 10.8. Superseded by IPluginV3Layer. +//! +class TRT_DEPRECATED IPluginV2Layer : public ILayer +{ +public: + //! + //! \brief Get the plugin for the layer. + //! + //! \see IPluginV2 + //! + IPluginV2& getPlugin() noexcept + { + return mImpl->getPlugin(); + } + +protected: + apiv::VPluginV2Layer* mImpl; + virtual ~IPluginV2Layer() noexcept = default; +}; + +//! +//! \class IPluginV3Layer +//! +//! \brief Layer type for V3 plugins +//! +//! \see IPluginV3 +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IPluginV3Layer : public ILayer +{ +public: + //! + //! \brief Get the plugin for the layer. + //! + //! \see IPluginV3 + //! + IPluginV3& getPlugin() noexcept + { + return mImpl->getPlugin(); + } + +protected: + apiv::VPluginV3Layer* mImpl; + virtual ~IPluginV3Layer() noexcept = default; +}; + +//! +//! \enum UnaryOperation +//! +//! \brief Enumerates the unary operations that may be performed by a Unary layer. +//! +//! Operations kNOT must have inputs of DataType::kBOOL. +//! +//! Operation kSIGN and kABS must have inputs of floating-point type, DataType::kINT8, DataType::kINT32 or +//! DataType::kINT64. +//! +//! Operation kISINF must have inputs of floating-point type. +//! +//! All other operations must have inputs of floating-point type. +//! +//! \see IUnaryLayer +//! +enum class UnaryOperation : int32_t +{ + kEXP = 0, //!< Exponentiation. + kLOG = 1, //!< Log (base e). + kSQRT = 2, //!< Square root. + kRECIP = 3, //!< Reciprocal. + kABS = 4, //!< Absolute value. + kNEG = 5, //!< Negation. + kSIN = 6, //!< Sine. + kCOS = 7, //!< Cosine. + kTAN = 8, //!< Tangent. + kSINH = 9, //!< Hyperbolic sine. + kCOSH = 10, //!< Hyperbolic cosine. + kASIN = 11, //!< Inverse sine. + kACOS = 12, //!< Inverse cosine. + kATAN = 13, //!< Inverse tangent. + kASINH = 14, //!< Inverse hyperbolic sine. + kACOSH = 15, //!< Inverse hyperbolic cosine. + kATANH = 16, //!< Inverse hyperbolic tangent. + kCEIL = 17, //!< Ceiling. + kFLOOR = 18, //!< Floor. + kERF = 19, //!< Gauss error function. + kNOT = 20, //!< Logical NOT. + kSIGN = 21, //!< Sign, If input > 0, output 1; if input < 0, output -1; if input == 0, output 0. + kROUND = 22, //!< Round to nearest even for floating-point data type. + kISINF = 23, //!< Return true if input value equals +/- infinity for floating-point data type. + kISNAN = 24, //!< Return true if input value is a NaN for floating-point data type. +}; + +//! +//! Maximum number of elements in UnaryOperation enum. +//! +//! \see UnaryOperation +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 25; +} + +//! +//! \class IUnaryLayer +//! +//! \brief Layer that represents an unary operation. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IUnaryLayer : public ILayer +{ +public: + //! + //! \brief Set the unary operation for the layer. + //! + //! When running this layer on DLA, only UnaryOperation::kABS is supported. + //! + //! \see getOperation(), UnaryOperation + //! + void setOperation(UnaryOperation op) noexcept + { + mImpl->setOperation(op); + } + + //! + //! \brief Get the unary operation for the layer. + //! + //! \see setOperation(), UnaryOperation + //! + UnaryOperation getOperation() const noexcept + { + return mImpl->getOperation(); + } + +protected: + apiv::VUnaryLayer* mImpl; + virtual ~IUnaryLayer() noexcept = default; +}; + +//! +//! \enum ReduceOperation +//! +//! \brief Enumerates the reduce operations that may be performed by a Reduce layer. +//! +//! The table shows the result of reducing across an empty volume of a given type. +//! +//! Operation | kFLOAT and kHALF | kINT32 | kINT8 +//! --------- | ----------------- | ------- | ----- +//! kSUM | 0 | 0 | 0 +//! kPROD | 1 | 1 | 1 +//! kMAX | negative infinity | INT_MIN | -128 +//! kMIN | positive infinity | INT_MAX | 127 +//! kAVG | NaN | 0 | -128 +//! kNONE | Undefined | Undefined | Undefined +//! +//! The current version of TensorRT usually performs reduction for kINT8 via kFLOAT or kHALF. +//! The kINT8 values show the quantized representations of the floating-point values. +//! \note kNONE is a reduce operation which does not modify the input tensor. +//! This is applicable to Multi-Device mode only, +//! as a reduce operation is not mandatory for certain collective operations. +//! See \ref INetworkDefinition::addDistCollective for more details. +//! +enum class ReduceOperation : int32_t +{ + kSUM = 0, //!< Sum of the elements. + kPROD = 1, //!< Product of the elements. + kMAX = 2, //!< Maximum of the elements. + kMIN = 3, //!< Minimum of the elements. + kAVG = 4, //!< Average of the elements. + kNONE = 5, //!< No reduction. +}; + +//! +//! Maximum number of elements in ReduceOperation enum. +//! +//! \see ReduceOperation +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 6; +} + +//! +//! \enum CollectiveOperation +//! +//! \brief Enumerates the collective operations that may be performed by a DistCollective layer. +//! +//! \see IDistCollectiveLayer +//! +enum class CollectiveOperation : int32_t +{ + kALL_REDUCE = 0, //!< All reduce. + kALL_GATHER = 1, //!< All gather. + kBROADCAST = 2, //!< Broadcast. + kREDUCE = 3, //!< Reduce. + kREDUCE_SCATTER = 4, //!< Reduce scatter. +}; + +//! +//! Maximum number of elements in CollectiveOperation enum. +//! +//! \see CollectiveOperation +//! +template <> +struct impl::EnumMaxImpl +{ + static constexpr int32_t kVALUE = 5; +}; + +//! +//! \class IReduceLayer +//! +//! \brief Layer that represents a reduction across a non-bool tensor. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IReduceLayer : public ILayer +{ +public: + //! + //! \brief Set the reduce operation for the layer. + //! + //! \see getOperation(), ReduceOperation + //! + void setOperation(ReduceOperation op) noexcept + { + mImpl->setOperation(op); + } + + //! + //! \brief Get the reduce operation for the layer. + //! + //! \see setOperation(), ReduceOperation + //! + ReduceOperation getOperation() const noexcept + { + return mImpl->getOperation(); + } + + //! + //! \brief Set the axes over which to reduce. + //! + //! \see getReduceAxes + //! + void setReduceAxes(uint32_t reduceAxes) noexcept + { + mImpl->setReduceAxes(reduceAxes); + } + + //! + //! \brief Get the axes over which to reduce for the layer. + //! + //! \see setReduceAxes + //! + uint32_t getReduceAxes() const noexcept + { + return mImpl->getReduceAxes(); + } + + //! + //! \brief Set the boolean that specifies whether or not to keep the reduced dimensions for the layer. + //! + //! \see getKeepDimensions + //! + void setKeepDimensions(bool keepDimensions) noexcept + { + mImpl->setKeepDimensions(keepDimensions); + } + + //! + //! \brief Get the boolean that specifies whether or not to keep the reduced dimensions for the layer. + //! + //! \see setKeepDimensions + //! + bool getKeepDimensions() const noexcept + { + return mImpl->getKeepDimensions(); + } + +protected: + apiv::VReduceLayer* mImpl; + virtual ~IReduceLayer() noexcept = default; +}; + +//! +//! \class IPaddingLayer +//! +//! \brief Layer that represents a padding operation. +//! +//! The padding layer adds zero-padding at the start and end of the input tensor. It supports padding +//! only the last two dimensions. Applying negative padding results in cropping of the input. +//! +//! To pad across any subset of dimensions, use ISliceLayer with SampleMode::kFILL. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IPaddingLayer : public ILayer +{ +public: + //! + //! \brief Set the padding that is applied at the start of the tensor. + //! + //! Negative padding results in trimming the edge by the specified amount. + //! + //! \warning Only 2 dimensional padding is currently supported. + //! + //! \see getPrePaddingNd + //! + void setPrePaddingNd(Dims const& padding) noexcept + { + mImpl->setPrePaddingNd(padding); + } + + //! + //! \brief Get the padding that is applied at the start of the tensor. + //! + //! \warning Only 2 dimensional padding is currently supported. + //! + //! \see setPrePaddingNd + //! + Dims getPrePaddingNd() const noexcept + { + return mImpl->getPrePaddingNd(); + } + + //! + //! \brief Set the padding that is applied at the end of the tensor. + //! + //! Negative padding results in trimming the edge by the specified amount + //! + //! \warning Only 2 dimensional padding is currently supported. + //! + //! \see getPostPaddingNd + //! + void setPostPaddingNd(Dims const& padding) noexcept + { + mImpl->setPostPaddingNd(padding); + } + + //! + //! \brief Get the padding that is applied at the end of the tensor. + //! + //! \warning Only 2 dimensional padding is currently supported. + //! + //! \see setPostPaddingNd + //! + Dims getPostPaddingNd() const noexcept + { + return mImpl->getPostPaddingNd(); + } + +protected: + apiv::VPaddingLayer* mImpl; + virtual ~IPaddingLayer() noexcept = default; +}; + +//! +//! \struct Permutation +//! +//! \brief Represents a permutation of dimensions. +//! +struct Permutation +{ + //! + //! The elements of the permutation. + //! The permutation is applied as outputDimensionIndex = permutation.order[inputDimensionIndex], so to + //! permute from CHW order to HWC order, the required permutation is [1, 2, 0], and to permute + //! from HWC to CHW, the required permutation is [2, 0, 1]. + //! + int32_t order[Dims::MAX_DIMS]; +}; + +//! \class IShuffleLayer +//! +//! \brief Layer type for shuffling data. +//! +//! This layer shuffles data by applying in sequence: a transpose operation, a reshape operation +//! and a second transpose operation. The dimension types of the output are those of the reshape dimension. +//! +//! The layer has an optional second input. If present, it must be a 1D tensor of type Int32 or Int64, +//! and the reshape dimensions are taken from it. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IShuffleLayer : public ILayer +{ +public: + //! + //! \brief Set the permutation applied by the first transpose operation. + //! + //! \param permutation The dimension permutation applied before the reshape. + //! + //! The default is the identity permutation. + //! + //! \see getFirstTranspose + //! + void setFirstTranspose(Permutation permutation) noexcept + { + mImpl->setFirstTranspose(permutation); + } + + //! + //! \brief Get the permutation applied by the first transpose operation. + //! + //! \return The dimension permutation applied before the reshape. + //! + //! \see setFirstTranspose + //! + Permutation getFirstTranspose() const noexcept + { + return mImpl->getFirstTranspose(); + } + + //! + //! \brief Set the reshaped dimensions. + //! + //! \param dimensions The reshaped dimensions. + //! + //! Two special values can be used as dimensions. + //! + //! Value 0 copies the corresponding dimension from input. This special value + //! can be used more than once in the dimensions. If number of reshape + //! dimensions is less than input, 0s are resolved by aligning the most + //! significant dimensions of input. + //! + //! Value -1 infers that particular dimension by looking at input and rest + //! of the reshape dimensions. Note that only a maximum of one dimension is + //! permitted to be specified as -1. + //! Avoid using -1 if the input can have zero volume and any of the other + //! reshape dimensions can be zero (after resolving special treatment of 0), + //! because the solution for the -1 becomes indeterminate and TensorRT will report an error. + //! + //! The product of the new dimensions must be equal to the product of the old. + //! + //! If a second input had been used to create this layer, that input is reset to null by this method. + //! + void setReshapeDimensions(Dims const& dimensions) noexcept + { + mImpl->setReshapeDimensions(dimensions); + } + + //! + //! \brief Get the reshaped dimensions. + //! + //! \return The reshaped dimensions. + //! + //! If a second input is present and non-null, or setReshapeDimensions has + //! not yet been called, this function returns Dims with nbDims == -1. + //! + Dims getReshapeDimensions() const noexcept + { + return mImpl->getReshapeDimensions(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + // + //! Sets the input tensor for the given index. The index must be 0 for a static shuffle layer. + //! A static shuffle layer is converted to a dynamic shuffle layer by calling setInput with an index 1. + //! A dynamic shuffle layer cannot be converted back to a static shuffle layer. + //! + //! For a dynamic shuffle layer, the values 0 and 1 are valid. + //! The indices in the dynamic case are as follows: + //! + //! - 0: Data or Shape tensor to be shuffled. + //! - 1: The dimensions for the reshape operation, as a 1D tensor of type Int32 or Int64. + //! + //! If this function is called with the value 1, then the function getNbInputs() changes + //! from returning 1 to 2. + //! + //! The reshape dimensions are treated identically to how they are treated if set statically + //! via setReshapeDimensions. In particular, a -1 is treated as a wildcard even if dynamically + //! supplied at runtime, and a 0 is treated as a placeholder if getZeroIsPlaceholder() = true, + //! which is the default. If the placeholder interpretation of 0 is unwanted because the + //! runtime dimension should be 0 when the reshape dimension is 0, be sure to call + //! setZeroIsPlacholder(false) on the IShuffleLayer. + //! + //! \see setReshapeDimensions. + //! + using ILayer::setInput; + + //! + //! \brief Set the permutation applied by the second transpose operation. + //! + //! \param permutation The dimension permutation applied after the reshape. + //! + //! The default is the identity permutation. + //! + //! The permutation is applied as outputDimensionIndex = permutation.order[inputDimensionIndex], so to + //! permute from CHW order to HWC order, the required permutation is [1, 2, 0]. + //! + //! \see getSecondTranspose + //! + void setSecondTranspose(Permutation permutation) noexcept + { + mImpl->setSecondTranspose(permutation); + } + + //! + //! \brief Get the permutation applied by the second transpose operation. + //! + //! \return The dimension permutation applied after the reshape. + //! + //! \see setSecondTranspose + //! + Permutation getSecondTranspose() const noexcept + { + return mImpl->getSecondTranspose(); + } + + //! + //! \brief Set meaning of 0 in reshape dimensions. + //! + //! If true, then a 0 in the reshape dimensions denotes copying the corresponding + //! dimension from the first input tensor. If false, then a 0 in the reshape + //! dimensions denotes a zero-length dimension. + //! + //! Default: true + //! + //! \see getZeroIsPlaceholder(); + //! + void setZeroIsPlaceholder(bool zeroIsPlaceholder) noexcept + { + return mImpl->setZeroIsPlaceholder(zeroIsPlaceholder); + } + + //! + //! \brief Get meaning of 0 in reshape dimensions. + //! + //! \return true if 0 is placeholder for corresponding input dimension, + //! false if 0 denotes a zero-length dimension. + //! + //! \see setZeroIsPlaceholder + //! + bool getZeroIsPlaceholder() const noexcept + { + return mImpl->getZeroIsPlaceholder(); + } + +protected: + apiv::VShuffleLayer* mImpl; + virtual ~IShuffleLayer() noexcept = default; +}; + +//! +//! \brief Controls how ISliceLayer and IGridSample handle out-of-bounds coordinates. +//! +//! \see ISliceLayer and IGridSample +//! +enum class SampleMode : int32_t +{ + kSTRICT_BOUNDS = 0, //!< Fail with error when the coordinates are out of bounds. + kWRAP = 1, //!< Coordinates wrap around periodically. + kCLAMP = 2, //!< Out of bounds indices are clamped to bounds. + kFILL = 3, //!< Use fill input value when coordinates are out of bounds. + kREFLECT = 4, //!< Coordinates reflect. The axis of reflection is the middle of the perimeter pixel and the + //!< reflections are repeated indefinitely within the padded regions. Repeats values for a single + //!< pixel and throws error for zero pixels. +}; + +//! +//! Maximum number of elements in SampleMode enum. +//! +//! \see SampleMode +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 5; +} + +//! +//! \brief Slices an input tensor into an output tensor based on the offset and strides. +//! +//! The slice layer has two variants, static and dynamic. Static slice specifies the start, size, and stride +//! dimensions at layer creation time via Dims and can use the get/set accessor functions of the ISliceLayer. +//! Static slice layers can also optionally specify axes through the get/set accessor functions of the ISliceLayer. +//! Dynamic slice specifies one or more of start, size, stride, or axes as ITensors, by using ILayer::setInput to add +//! a second, third, fourth, or sixth input respectively. The corresponding Dims are used if an input +//! is missing or null. +//! +//! An application can determine if the ISliceLayer has a dynamic output shape based on whether +//! the size or axes input is present and non-null. +//! +//! The slice layer selects for each dimension a start location from within the input tensor, and +//! copies elements to the output tensor using the specified stride across the input tensor. +//! Start, size, and stride tensors must be 1D tensors of type Int32 or Int64 if not specified via Dims. +//! +//! An example of using slice on a tensor: +//! input = {{0, 2, 4}, {1, 3, 5}} +//! start = {1, 0} +//! size = {1, 2} +//! stride = {1, 2} +//! output = {{1, 5}} +//! +//! If axes are provided then starts, ends, and strides must have the same length as axes +//! and specifies a subset of dimensions to slice. If axes are not provided, starts, ends, and strides +//! must be of the same length as the rank of the input tensor. +//! +//! An example of using slice on a tensor with axes specified: +//! input = {{0, 2, 4}, {1, 3, 5}} +//! start = {1} +//! size = {2} +//! stride = {1} +//! axes = {1} +//! output = {{2, 4}, {3, 5}} +//! +//! When the sampleMode is kCLAMP or kREFLECT, for each input dimension, if its size is 0 then the corresponding output +//! dimension must be 0 too. +//! +//! When the sampleMode is kFILL, the fifth input to the slice layer is used to determine the value to fill in out-of-bound +//! indices. It is an error to specify the fifth input in any other sampleMode. +//! +//! A slice layer can produce a shape tensor if the following conditions are met: +//! +//! * start, size, and stride are build time constants, either as static Dims or as constant input tensors. +//! * axes, if provided, are build time constants, either as static Dims or as a constant input tensor. +//! * The number of elements in the output tensor does not exceed 2 * Dims::MAX_DIMS. +//! +//! The input tensor is a shape tensor if the output is a shape tensor. +//! +//! The following constraints must be satisfied to execute this layer on DLA: +//! * start, size, and stride are build time constants, either as static Dims or as constant input tensors. +//! * axes, if provided, are build time constants, either as static Dims or as a constant input tensor. +//! * sampleMode is kDEFAULT, kWRAP, or kFILL. +//! * Strides are 1 for all dimensions. +//! * Slicing is not performed on the first dimension. +//! * The input tensor has four dimensions. +//! * For kFILL sliceMode, the fill value input is a scalar output of an IConstantLayer with value 0 that is not +//! consumed by any other layer. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ISliceLayer : public ILayer +{ +public: + //! + //! \brief Set the start offset that the slice layer uses to create the output slice. + //! + //! \param start The start offset to read data from the input tensor. + //! + //! If a second input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getStart + //! + void setStart(Dims const& start) noexcept + { + mImpl->setStart(start); + } + + //! + //! \brief Get the start offset for the slice layer. + //! + //! \return The start offset, or an invalid Dims structure. + //! + //! If the second input is present and non-null, + //! this function returns a Dims with nbDims = -1. + //! + //! \see setStart + //! + Dims getStart() const noexcept + { + return mImpl->getStart(); + } + + //! + //! \brief Set the dimensions of the output slice. + //! + //! \param size The dimensions of the output slice. + //! + //! If a third input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getSize + //! + void setSize(Dims const& size) noexcept + { + return mImpl->setSize(size); + } + + //! + //! \brief Get dimensions of the output slice. + //! + //! \return The output dimension, or an invalid Dims structure. + //! + //! If the third input is present and non-null, + //! this function returns a Dims with nbDims = -1. + //! + //! \see setSize + //! + Dims getSize() const noexcept + { + return mImpl->getSize(); + } + + //! + //! \brief Set the stride for computing the output slice data. + //! + //! \param stride The dimensions of the stride to compute the values to store in the output slice. + //! + //! If a fourth input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getStride + //! + void setStride(Dims const& stride) noexcept + { + mImpl->setStride(stride); + } + + //! + //! \brief Get the stride for the output slice. + //! + //! \return The slicing stride, or an invalid Dims structure. + //! + //! If the fourth input is present and non-null, + //! this function returns a Dims with nbDims = -1. + //! + //! \see setStride + //! + Dims getStride() const noexcept + { + return mImpl->getStride(); + } + + //! + //! \brief Set the slice mode. + //! + //! \see getMode() + //! + void setMode(SampleMode mode) noexcept + { + mImpl->setMode(mode); + } + + //! + //! \brief Get the slice mode. + //! + //! \see setMode() + //! + SampleMode getMode() const noexcept + { + return mImpl->getMode(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! For a slice layer, the values 0-5 are valid. + //! The indices are as follows: + //! + //! - 0: Tensor to be sliced. + //! - 1: The start tensor to begin slicing, as a 1D tensor of type Int32 or Int64. + //! - 2: The size tensor of the resulting slice, as a 1D tensor of type Int32 or Int64. + //! - 3: The stride of the slicing operation, as a 1D tensor of type Int32 or Int64. + //! - 4: Value for the kFILL slice mode. The fill value data type should either be the same + //! or be implicitly convertible to the input data type. + //! Implicit data type conversion is supported among kFLOAT, kHALF, kINT8, and kFP8 data types. + //! This input is disallowed for other modes. + //! - 5: The axes tensor indicating the corresponding axes that start, size, and stride + //! should apply to, as a 1D tensor or type Int32 or Int64. Negative values for axes + //! indicate indexing from the back of the input tensor. Values must be unique and be + //! within the interval of [-rank(input), rank(input)-1]. + //! + //! Using the corresponding setter resets the input to null. + //! + //! If this function is called with a value greater than 0, then the function getNbInputs() changes + //! from returning 1 to index + 1. + //! + using ILayer::setInput; + + //! + //! \brief Set the axes for this ISliceLayer. + //! + //! \param axes The axes on which the starts, ends, and strides parameters of the slice apply to. + //! + //! If a sixth input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getAxes + //! + void setAxes(Dims const& axes) noexcept + { + mImpl->setAxes(axes); + } + + //! + //! \brief Get the axes for this ISliceLayer. + //! + //! \return The axes on which the starts, ends, and strides parameters of this slice apply to. + //! + //! If the sixth input is present and non-null, + //! this function returns a Dims with nbDims = -1. + //! + //! \see setAxes + //! + Dims getAxes() const noexcept + { + return mImpl->getAxes(); + } + +protected: + apiv::VSliceLayer* mImpl; + virtual ~ISliceLayer() noexcept = default; +}; + +//! \class IShapeLayer +//! +//! \brief Layer type for getting shape of a tensor. +//! +//! This layer sets the output to a 1D tensor of type Int64 with the dimensions of the input tensor. +//! +//! For example, if the input is a four-dimensional tensor (of any type) with +//! dimensions [2,3,5,7], the output tensor is a one-dimensional Int64 tensor +//! of length 4 containing the sequence 2, 3, 5, 7. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IShapeLayer : public ILayer +{ +protected: + apiv::VShapeLayer* mImpl; + virtual ~IShapeLayer() noexcept = default; +}; + +//! +//! \enum TopKOperation +//! +//! \brief Enumerates the operations that may be performed by a TopK layer. +//! +enum class TopKOperation : int32_t +{ + kMAX = 0, //!< Maximum of the elements. + kMIN = 1, //!< Minimum of the elements. +}; + +//! +//! Maximum number of elements in TopKOperation enum. +//! +//! \see TopKOperation +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \class ITopKLayer +//! +//! \brief Layer that represents a TopK reduction. +//! +//! This layer can accept both static and dynamic k. Static k can be set through the addTopK() API function, +//! or accessed using the getK() and setK() functions after layer creation. For dynamic k, use the setInput() +//! method to pass in k as a tensor with index 1, which overrides the static k value in calculations. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ITopKLayer : public ILayer +{ +public: + //! + //! \brief Set the operation for the layer. + //! + //! \see getOperation(), TopKOperation + //! + void setOperation(TopKOperation op) noexcept + { + mImpl->setOperation(op); + } + + //! + //! \brief Get the operation for the layer. + //! + //! \see setOperation(), TopKOperation + //! + TopKOperation getOperation() const noexcept + { + return mImpl->getOperation(); + } + + //! + //! \brief Set the static k value for the layer. + //! + //! Currently only values up to 3840 are supported. + //! + //! If a second input to this layer has been set, it will be reset to null by this method. + //! + //! \see getK() + //! + void setK(int32_t k) noexcept + { + mImpl->setK(k); + } + + //! + //! \brief Get the k value for the layer. + //! + //! This function will return the static k value passed into addTopK(), or the value passed into setK(). + //! + //! If a second layer input is present and non-null, this function returns -1. + //! + //! \see setK() + //! + int32_t getK() const noexcept + { + return mImpl->getK(); + } + + //! + //! \brief Set which axes to reduce for the layer. + //! + //! \see getReduceAxes() + //! + void setReduceAxes(uint32_t reduceAxes) noexcept + { + mImpl->setReduceAxes(reduceAxes); + } + + //! + //! \brief Get the axes to reduce for the layer. + //! + //! \see setReduceAxes() + //! + uint32_t getReduceAxes() const noexcept + { + return mImpl->getReduceAxes(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index The index of the input to modify. + //! \param tensor The new input tensor. + //! + //! For a TopK layer, the values 0-1 are valid. + //! The indices are as follows: + //! + //! - 0: Input data tensor. + //! - 1: A scalar Int32 tensor containing a positive value corresponding to the number of top + //! elements to retrieve. Values larger than 3840 will result in a runtime error. If provided, + //! this will override the static k value in calculations. + //! + using ILayer::setInput; + + //! + //! \brief Set the indices type for the layer. + //! + //! \param type The DataType of the indices tensor. + //! + //! \return true if set successfully, false otherwise. + //! + //! Set the indices (the second output) type of the TopK layer. Valid values are DataType::kINT32 and + //! DataType::kINT64, otherwise an error occurs and the type is not updated. + //! + bool setIndicesType(DataType type) noexcept + { + return mImpl->setIndicesType(type); + } + + //! + //! \brief Return the TopK layer indices type. + //! + //! \return indices type set during layer creation or by setIndicesType(). + //! The return value is the indices type of the TopK layer. + //! The default value is DataType::kINT32. + //! + DataType getIndicesType() const noexcept + { + return mImpl->getIndicesType(); + } + +protected: + apiv::VTopKLayer* mImpl; + virtual ~ITopKLayer() noexcept = default; +}; + +//! +//! \enum MatrixOperation +//! +//! \brief Enumerates the operations that may be performed on a tensor +//! by IMatrixMultiplyLayer before multiplication. +//! +enum class MatrixOperation : int32_t +{ + //! Treat x as a matrix if it has two dimensions, or as a collection of + //! matrices if x has more than two dimensions, where the last two dimensions + //! are the matrix dimensions. x must have at least two dimensions. + kNONE = 0, + + //! Like kNONE, but transpose the matrix dimensions. + kTRANSPOSE = 1, + + //! Treat x as a vector if it has one dimension, or as a collection of + //! vectors if x has more than one dimension. x must have at least one dimension. + //! + //! The first input tensor with dimensions [M,K] used with MatrixOperation::kVECTOR is equivalent to a tensor + //! with dimensions [M, 1, K] with MatrixOperation::kNONE, i.e. is treated as M row vectors of length K, + //! or dimensions [M, K, 1] with MatrixOperation::kTRANSPOSE. + //! + //! The second input tensor with dimensions [M,K] used with MatrixOperation::kVECTOR is equivalent to a tensor + //! with dimensions [M, K, 1] with MatrixOperation::kNONE, i.e. is treated as M column vectors of length K, + //! or dimensions [M, 1, K] with MatrixOperation::kTRANSPOSE. + kVECTOR = 2, +}; + +//! +//! Maximum number of elements in MatrixOperation enum. +//! +//! \see DataType +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class IMatrixMultiplyLayer +//! +//! \brief Layer that represents a Matrix Multiplication. +//! +//! Let A be op(getInput(0)) and B be op(getInput(1)) where +//! op(x) denotes the corresponding MatrixOperation. +//! +//! When A and B are matrices or vectors, computes the inner product A * B: +//! +//! matrix * matrix -> matrix +//! matrix * vector -> vector +//! vector * matrix -> vector +//! vector * vector -> scalar +//! +//! Inputs of higher rank are treated as collections of matrices or vectors. +//! The output will be a corresponding collection of matrices, vectors, or scalars. +//! +//! For a dimension that is not one of the matrix or vector dimensions: +//! If the dimension is 1 for one of the tensors but not the other tensor, +//! the former tensor is broadcast along that dimension to match the dimension of the latter tensor. +//! The number of these extra dimensions for A and B must match. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IMatrixMultiplyLayer : public ILayer +{ +public: + //! + //! \brief Set the operation for an input tensor. + //! + //! \param index Input tensor number (0 or 1). + //! \param op New operation. + //! + //! \see getOperation() + //! + void setOperation(int32_t index, MatrixOperation op) noexcept + { + mImpl->setOperation(index, op); + } + + //! + //! \brief Get the operation for an input tensor. + //! + //! \param index Input tensor number (0 or 1). + //! + //! \see setOperation() + //! + MatrixOperation getOperation(int32_t index) const noexcept + { + return mImpl->getOperation(index); + } + +protected: + apiv::VMatrixMultiplyLayer* mImpl; + virtual ~IMatrixMultiplyLayer() noexcept = default; +}; + +//! \class INonZero +//! +//! \brief A NonZero layer in a network. +//! +//! This layer gets the positions of elements that are non-zero in the input. +//! For boolean input, "non-zero" means "true". Semantics are similar to ONNX NonZero. +//! +//! The input may have type kFLOAT, kHALF, kINT32, or kBOOL. +//! +//! The output is a matrix of type kINT32 or kINT64. +//! For an input with dimensions [L1, L2, ..., Lm], the output has dimensions [m,n], +//! where n is the number of non-zero elements. I.e., each column denotes a m-D position. +//! +//! The columns are lexically ordered. +//! E.g., a column with [3,2,4,7] precedes a column with [3,2,5,6]. +//! +//! Tip: "compress" can be implemented with INonZero+IShuffle+Gather. +//! For example, to compress a tensor x over axis k using mask vector v, +//! use nonzero(v) to compute the subscripts, shuffle with reshape dimensions = [-1] +//! to make the subscripts 1D, and then gather with the subscripts. +//! +class INonZeroLayer : public ILayer +{ +public: + //! + //! \brief Set the indices type for the layer. + //! + //! \param type The DataType of the indices tensor. + //! + //! \return true if set successfully, false otherwise. + //! + //! Set the indices (the first output) type of the NonZero layer. Valid values are DataType::kINT32 and + //! DataType::kINT64, otherwise an error occurs and the type is not updated. + //! + bool setIndicesType(DataType type) noexcept + { + return mImpl->setIndicesType(type); + } + + //! + //! \brief Return the NonZero layer indices type. + //! + //! \return indices type set during layer creation or by setIndicesType(). + //! The return value is the indices type of the NonZero layer. + //! The default value is DataType::kINT32. + //! + DataType getIndicesType() const noexcept + { + return mImpl->getIndicesType(); + } + +protected: + virtual ~INonZeroLayer() noexcept = default; + apiv::VNonZeroLayer* mImpl; +}; + +//! +//! \class IRaggedSoftMaxLayer +//! +//! \brief A RaggedSoftmax layer in a network definition. +//! +//! This layer takes a ZxS input tensor and an additional Zx1 bounds tensor +//! holding the lengths of the Z sequences. +//! +//! This layer computes a softmax across each of the Z sequences. +//! +//! The output tensor is of the same size as the input tensor. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IRaggedSoftMaxLayer : public ILayer +{ +protected: + apiv::VRaggedSoftMaxLayer* mImpl; + virtual ~IRaggedSoftMaxLayer() noexcept = default; +}; + +//! \class IIdentityLayer +//! +//! \brief A layer that represents the identity function. +//! +//! For a strongly typed network, the layer is an identity function, i.e. the output +//! tensor elements are identical to the input tensor elements, possibly with a change +//! in layout. For example, if a network consists of a single IIdentityLayer, the network +//! input and output must have the same type, but the input can have NCHW layout and +//! the output can have NHWC layout. +//! +//! If the network is weakly typed, the layer is additionally permitted some type conversions +//! as described below. +//! +//! If the output type is explicitly specified via setOutputType, IIdentityLayer can be +//! used to convert from one type to another. Other than conversions between the same +//! type (kFLOAT -> kFLOAT for example), the only valid conversions are: +//! +//! (kFLOAT | kHALF | kINT32 | kBOOL) -> (kFLOAT | kHALF | kINT32 | kBOOL) +//! +//! (kFLOAT | kHALF) -> kUINT8 +//! +//! kUINT8 -> (kFLOAT | kHALF) +//! +//! Conversion also happens implicitly, without calling setOutputType, if the output +//! tensor is a network output. +//! +//! Two types are compatible if they are identical, or are both in {kFLOAT, kHALF}. +//! Implicit conversion between incompatible types, i.e. without using setOutputType, +//! was recognized as incorrect as of TensorRT 8.4, but was retained for API compatibility +//! within TensorRT 8.x releases. In TensorRT 10.0 onwards it is an error if the network +//! output tensor type is incompatible with the layer output type. E.g., implicit conversion +//! from kFLOAT to kINT32 is not allowed. +//! +//! To explicitly convert kFLOAT to kINT32: +//! +//! * Preferred: use ICastLayer. +//! +//! * Legacy alternative: use IIdentityLayer and setOutputType(DataType::kINT32). +//! +//! Similar advice applies for explicit conversion in the other direction. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IIdentityLayer : public ILayer +{ +protected: + apiv::VIdentityLayer* mImpl; + virtual ~IIdentityLayer() noexcept = default; +}; + +//! \class ICastLayer +//! +//! \brief A cast layer in a network. +//! +//! This layer casts a given tensor to the datatype specified by \p toType. +//! +class ICastLayer : public ILayer +{ +public: + //! + //! \brief Set cast layer output type. + //! + //! \param toType The DataType of the output tensor. + //! + //! Set the output type of the cast layer. + //! + void setToType(DataType toType) noexcept + { + mImpl->setToType(toType); + } + + //! + //! \brief Return cast layer output type. + //! + //! \return toType parameter set during layer creation or by setToType(). + //! The return value is the output type of the cast layer. + //! + DataType getToType() const noexcept + { + return mImpl->getToType(); + } + +protected: + apiv::VCastLayer* mImpl; + virtual ~ICastLayer() noexcept = default; +}; + +//! \class IConstantLayer +//! +//! \brief Layer that represents a constant value. +//! +//! \note This layer does not support boolean types. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IConstantLayer : public ILayer +{ +public: + //! + //! \brief Set the weights for the layer. + //! + //! The output type is weights.type. If the network is weakly typed and the weights have a real type, + //! the output type might be different per TensorRT's type conversion rules. + //! + //! \see getWeights() + //! + void setWeights(Weights weights) noexcept + { + mImpl->setWeights(weights); + } + + //! + //! \brief Get the weights for the layer. + //! + //! \see setWeights + //! + Weights getWeights() const noexcept + { + return mImpl->getWeights(); + } + + //! + //! \brief Set the dimensions for the layer. + //! + //! \param dimensions The dimensions of the layer + //! + //! \see setDimensions + //! + void setDimensions(Dims const& dimensions) noexcept + { + mImpl->setDimensions(dimensions); + } + + //! + //! \brief Get the dimensions for the layer. + //! + //! \return the dimensions for the layer + //! + //! \see getDimensions + //! + Dims getDimensions() const noexcept + { + return mImpl->getDimensions(); + } + +protected: + apiv::VConstantLayer* mImpl; + virtual ~IConstantLayer() noexcept = default; +}; + +//! +//! \class IParametricReLULayer +//! +//! \brief Layer that represents a parametric ReLU operation. +//! +//! When running this layer on DLA, the slopes input must be a build-time constant. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IParametricReLULayer : public ILayer +{ +protected: + apiv::VParametricReLULayer* mImpl; + virtual ~IParametricReLULayer() noexcept = default; +}; + +//! \enum InterpolationMode +//! +//! \brief Enumerates various modes of interpolation +//! +//! +enum class InterpolationMode : int32_t +{ + kNEAREST = 0, //!< ND (0 < N <= 8) nearest neighbor resizing. + kLINEAR = 1, //!< Supports linear (1D), bilinear (2D), and trilinear (3D) interpolation + kCUBIC = 2 //!< Supports bicubic (2D) interpolation +}; + +namespace impl +{ +//! +//! Maximum number of elements in InterpolationMode enum. +//! +//! \see InterpolationMode +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 3; +}; +} // namespace impl + +//! +//! \enum ResizeCoordinateTransformation +//! +//! \brief The resize coordinate transformation function. +//! +//! \see IResizeLayer::setCoordinateTransformation() +//! +enum class ResizeCoordinateTransformation : int32_t +{ + //! Think of each value in the tensor as a unit volume, and the coordinate is a point inside this volume. + //! The coordinate point is drawn as a star `(*)` in the below diagram, and multiple values range has a length. + //! Define `x_origin` as the coordinate of axis x in the input tensor, `x_resized` as the coordinate of axis x in + //! the output tensor, `length_origin` as length of the input tensor in axis x, and `length_resize` as length of the + //! output tensor in axis x. + //! + //! |<--------------length---------->| + //! | 0 | 1 | 2 | 3 | + //! * * * * + //! + //! x_origin = x_resized * (length_origin - 1) / (length_resize - 1) + //! + kALIGN_CORNERS = 0, + + //! |<--------------length--------------------->| + //! | 0 | 1 | 2 | 3 | + //! * * * * + //! + //! x_origin = x_resized * (length_origin / length_resize) + //! + kASYMMETRIC = 1, + + //! |<--------------length--------------------->| + //! | 0 | 1 | 2 | 3 | + //! * * * * + //! + //! x_origin = (x_resized + 0.5) * (length_origin / length_resize) - 0.5 + //! + kHALF_PIXEL = 2, +}; + +namespace impl +{ +//! +//! Maximum number of elements in ResizeCoordinateTransformation enum. +//! +//! \see ResizeCoordinateTransformation +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 3; +}; +} // namespace impl + +//! +//! \enum ResizeSelector +//! +//! \brief The coordinate selector when resize to single pixel output. +//! +//! \see IResizeLayer::setSelectorForSinglePixel() +//! +enum class ResizeSelector : int32_t +{ + //! Use formula to map the original index. + kFORMULA = 0, + + //! Select the upper left pixel. + kUPPER = 1, +}; + +namespace impl +{ +//! +//! Maximum number of elements in ResizeSelector enum. +//! +//! \see ResizeSelector +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 2; +}; +} // namespace impl + +//! +//! \enum ResizeRoundMode +//! +//! \brief The rounding mode for nearest neighbor resize. +//! +//! \see IResizeLayer::setNearestRounding() +//! +enum class ResizeRoundMode : int32_t +{ + //! Round half up. + kHALF_UP = 0, + + //! Round half down. + kHALF_DOWN = 1, + + //! Round to floor. + kFLOOR = 2, + + //! Round to ceil. + kCEIL = 3, +}; + +namespace impl +{ +//! +//! Maximum number of elements in ResizeRoundMode enum. +//! +//! \see ResizeRoundMode +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 4; +}; +} // namespace impl + +//! \class IResizeLayer +//! +//! \brief A resize layer in a network definition. +//! +//! Resize layer can be used for resizing a N-D tensor. +//! +//! Resize layer currently supports the following configurations: +//! - InterpolationMode::kNEAREST - resizes last `m` dimensions of N-D, where 0 < m <= min(8, N) and N > 0 +//! - InterpolationMode::kLINEAR - resizes last `m` dimensions of N-D, where 0 < m <= min(3, N) and N > 0 +//! +//! Default resize mode is InterpolationMode::kNEAREST. +//! +//! The coordinates in the output tensor are mapped to coordinates in the input tensor using a function set by calling +//! setCoordinateTransformation(). The default for all InterpolationMode settings (nearest, linear, bilinear, etc.) is +//! ResizeCoordinateTransformation::kASYMMETRIC. +//! +//! The resize layer provides two ways to resize tensor dimensions. +//! - Set output dimensions directly. It can be done for static as well as dynamic resize layer. +//! Static resize layer requires output dimensions to be known at build-time. +//! Dynamic resize layer requires output dimensions to be set as one of the input tensors. +//! - Set scales for resize. Each output dimension is calculated as floor(input dimension * scale). +//! Only static resize layer allows setting scales where the scales are known at build-time. +//! +//! If executing this layer on DLA, the following combinations of parameters are supported: +//! +//! - In kNEAREST mode: +//! * (ResizeCoordinateTransformation::kASYMMETRIC, ResizeSelector::kFORMULA, ResizeRoundMode::kFLOOR) +//! * (ResizeCoordinateTransformation::kHALF_PIXEL, ResizeSelector::kFORMULA, ResizeRoundMode::kHALF_DOWN) +//! * (ResizeCoordinateTransformation::kHALF_PIXEL, ResizeSelector::kFORMULA, ResizeRoundMode::kHALF_UP) +//! +//! - In kLINEAR mode: +//! * (ResizeCoordinateTransformation::kHALF_PIXEL, ResizeSelector::kFORMULA) +//! * (ResizeCoordinateTransformation::kHALF_PIXEL, ResizeSelector::kUPPER) +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IResizeLayer : public ILayer +{ +public: + //! + //! \brief Set the output dimensions. + //! + //! \param dimensions The output dimensions. Number of output dimensions must be the same as the number of input + //! dimensions. + //! + //! If executing this layer on DLA, setOutputDimensions() is not supported. + //! + //! If there is a second input, i.e. resize layer is dynamic, + //! calling setOutputDimensions() is an error and does not update the + //! dimensions. + //! + //! Output dimensions can be specified directly, or via scale factors relative to input dimensions. + //! Scales for resize can be provided using setScales(). + //! + //! \see setScales + //! \see getOutputDimensions + //! + void setOutputDimensions(Dims const& dimensions) noexcept + { + return mImpl->setOutputDimensions(dimensions); + } + + //! + //! \brief Get the output dimensions. + //! + //! \return The output dimensions. + //! + Dims getOutputDimensions() const noexcept + { + return mImpl->getOutputDimensions(); + } + + //! + //! \brief Set the resize scales. + //! + //! \param scales An array of resize scales. + //! \param nbScales Number of scales. Number of scales must be equal to the number of input dimensions. + //! + //! If executing this layer on DLA, there are three restrictions: + //! 1) nbScales has to be exactly 4. + //! 2) the first two elements in scales need to be exactly 1 (for unchanged batch and channel dimensions). + //! 3) The last two elements in scales, representing the scale values along height and width dimensions, + //! respectively, need to be integer values in the range of [1, 32] for kNEAREST mode and [1, 4] for kLINEAR. + //! Example of DLA-supported scales: {1, 1, 2, 2}. + //! + //! If there is a second input, i.e. resize layer is dynamic, + //! calling setScales() is an error and does not update the scales. + //! + //! Output dimensions are calculated as follows: + //! outputDims[i] = floor(inputDims[i] * scales[i]) + //! + //! Output dimensions can be specified directly, or via scale factors relative to input dimensions. + //! Output dimensions can be provided directly using setOutputDimensions(). + //! + //! \see setOutputDimensions + //! \see getScales + //! + void setScales(float const* scales, int32_t nbScales) noexcept + { + mImpl->setScales(scales, nbScales); + } + + //! + //! \brief Copies resize scales to scales[0, ..., nbScales-1], where nbScales is the number of scales that were set. + //! + //! \param size The number of scales to get. If size != nbScales, no scales will be copied. + //! + //! \param scales Pointer to where to copy the scales. Scales will be copied only if + //! size == nbScales and scales != nullptr. + //! + //! In case the size is not known consider using size = 0 and scales = nullptr. This method will return + //! the number of resize scales. + //! + //! \return The number of resize scales i.e. nbScales if scales were set. + //! Return -1 in case no scales were set or resize layer is used in dynamic mode. + //! + int32_t getScales(int32_t size, float* scales) const noexcept + { + return mImpl->getScales(size, scales); + } + + //! + //! \brief Set resize mode for an input tensor. + //! + //! Supported resize modes are Nearest Neighbor and Linear. + //! + //! \see InterpolationMode + //! + void setResizeMode(InterpolationMode interpolationMode) noexcept + { + mImpl->setResizeMode(interpolationMode); + } + + //! + //! \brief Get resize mode for an input tensor. + //! + //! \return The resize mode. + //! + InterpolationMode getResizeMode() const noexcept + { + return mImpl->getResizeMode(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor. + //! + //! Sets the input tensor for the given index. The index must be 0 for a static resize layer. + //! A static resize layer is converted to a dynamic resize layer by calling setInput with an index 1. + //! A dynamic resize layer cannot be converted back to a static resize layer. + //! + //! For a dynamic resize layer, the values 0 and 1 are valid. + //! The indices in the dynamic case are as follows: + //! + //! - 0: Execution tensor to be resized. + //! - 1: The output dimensions, as a 1D tensor of type Int32 or Int64. + //! + //! If this function is called with the value 1, then the function getNbInputs() changes + //! from returning 1 to 2. + //! + using ILayer::setInput; + + //! + //! \brief Set coordinate transformation function. + //! + //! The function maps a coordinate in the output tensor to a coordinate in the input tensor. + //! + //! Default function is ResizeCoordinateTransformation::kASYMMETRIC. + //! + //! \see ResizeCoordinateTransformation + //! + void setCoordinateTransformation(ResizeCoordinateTransformation coordTransform) noexcept + { + mImpl->setCoordinateTransformation(coordTransform); + } + + //! + //! \brief Get coordinate transformation function. + //! + //! \return The coordinate transformation function. + //! + ResizeCoordinateTransformation getCoordinateTransformation() const noexcept + { + return mImpl->getCoordinateTransformation(); + } + + //! + //! \brief Set coordinate selector function when resized to single pixel. + //! + //! When resize to single pixel image, use this function to decide how to map the coordinate in the original + //! image. + //! + //! Default is ResizeSelector::kFORMULA. + //! + //! \see ResizeSelector + //! + void setSelectorForSinglePixel(ResizeSelector selector) noexcept + { + mImpl->setSelectorForSinglePixel(selector); + } + + //! + //! \brief Get the coordinate selector function when resized to single pixel. + //! + //! \return The selector function. + //! + ResizeSelector getSelectorForSinglePixel() const noexcept + { + return mImpl->getSelectorForSinglePixel(); + } + + //! + //! \brief Set rounding mode for nearest neighbor resize. + //! + //! This value is used for nearest neighbor interpolation rounding. It is applied after coordinate transformation. + //! + //! Default is kFLOOR. + //! + //! \see ResizeRoundMode + //! + void setNearestRounding(ResizeRoundMode value) noexcept + { + mImpl->setNearestRounding(value); + } + + //! + //! \brief Get rounding mode for nearest neighbor resize. + //! + //! \return The rounding mode. + //! + ResizeRoundMode getNearestRounding() const noexcept + { + return mImpl->getNearestRounding(); + } + + //! + //! \brief Set the coefficient 'A' used in cubic interpolation. + //! + //! Cubic uses the coefficient 'A' to calculate the weight of input pixels: + //! + //!

+    //! x := The relative distance between the sampled pixels and the input coordinates.
+    //!
+    //! weight(x) := for |x| <= 1, ((A + 2) * x - (A + 3)) * x * x + 1,
+    //!              for 1 < |x| < 2, ((A * x - 5 * A) * x + 8 * A) * x - 4 * A,
+    //!              others 0;
+    //! 
+ //! + //! This attribute is valid only if "resize mode" is "cubic". + //! + //! The default value is -0.75. + //! + void setCubicCoeff(float A) noexcept + { + mImpl->setCubicCoeff(A); + } + + //! + //! \brief Get the coefficient 'A' used in cubic interpolation. + //! + //! \see setCubicCoeff() + //! + float getCubicCoeff() const noexcept + { + return mImpl->getCubicCoeff(); + } + + //! + //! \brief Set the state for excluding outside pixels. + //! + //! If set to true, the weight of sampling locations outside the input tensor will be set to false, and the weight + //! will be renormalized so that their sum is 1.0. + //! + //! The default value is false. + //! + void setExcludeOutside(bool excludeFlag) noexcept + { + mImpl->setExcludeOutside(excludeFlag); + } + + //! + //! \brief Get the state for excluding outside pixels. + //! + //! \see setExcludeOutside() + //! + bool getExcludeOutside() const noexcept + { + return mImpl->getExcludeOutside(); + } + +protected: + virtual ~IResizeLayer() noexcept = default; + apiv::VResizeLayer* mImpl; +}; + +//! +//! \enum LoopOutput +//! +//! \brief Enum that describes kinds of loop outputs. +//! +enum class LoopOutput : int32_t +{ + //! Output value is value of tensor for last iteration. + kLAST_VALUE = 0, + + //! Output value is concatenation of values of tensor for each iteration, in forward order. + kCONCATENATE = 1, + + //! Output value is concatenation of values of tensor for each iteration, in reverse order. + kREVERSE = 2 +}; + +//! +//! Maximum number of elements in LoopOutput enum. +//! +//! \see DataType +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \enum TripLimit +//! +//! \brief Enum that describes kinds of trip limits. +//! +enum class TripLimit : int32_t +{ + + kCOUNT = 0, //!< Tensor is a scalar of type kINT32 or kINT64 that contains the trip count. + kWHILE = 1 //!< Tensor is a scalar of type kBOOL. Loop terminates when value is false. +}; + +//! +//! Maximum number of elements in TripLimit enum. +//! +//! \see DataType +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +class ILoop; + +//! +//! \class ILoopBoundaryLayer +//! +//! \brief This is a base class for Loop boundary layers. +//! +//! The loop boundary layers are used to define loops within a network, enabling the implementation +//! of recurrences. The boundary layers for a loop are created by class ILoop. +//! +//! There are four kinds of boundary layers. +//! * ITripLimitLayer: controls the number of loop iterations. +//! * IIterationLayer: iterates over an input tensor. +//! * IRecurrenceLayer: returns an initial value or value from the previous loop iteration. +//! * ILoopOutputLayer: generates an output tensor from the loop iterations. +class ILoopBoundaryLayer : public ILayer +{ +public: + //! + //! \brief Get a pointer to ILoop associated with this boundary layer. + //! + ILoop* getLoop() const noexcept + { + return mBoundary->getLoop(); + } + +protected: + virtual ~ILoopBoundaryLayer() noexcept = default; + apiv::VLoopBoundaryLayer* mBoundary; +}; + +//! +//! \class IIfConditionalBoundaryLayer +//! +//! \brief This is a base class for Conditional boundary layers. +//! +//! Boundary layers are used to demarcate the boundaries of Conditionals. +//! +class IIfConditionalBoundaryLayer : public ILayer +{ +public: + //! + //! \brief Get a pointer to the IIfConditional associated with this boundary layer. + //! + IIfConditional* getConditional() const noexcept + { + return mBoundary->getConditional(); + } + +protected: + virtual ~IIfConditionalBoundaryLayer() noexcept = default; + apiv::VConditionalBoundaryLayer* mBoundary; +}; + +//! +//! \class IConditionLayer +//! +//! \brief This layer represents a condition input to an IIfConditional. +//! +class IConditionLayer : public IIfConditionalBoundaryLayer +{ +public: +protected: + virtual ~IConditionLayer() noexcept = default; + apiv::VConditionLayer* mImpl; +}; + +//! +//! \class IIfConditionalOutputLayer +//! +//! \brief This layer represents an output of an IIfConditional. +//! +//! An IIfConditionalOutputLayer has two inputs and one output. +//! +//! \see IIfConditional::addOutput +//! +class IIfConditionalOutputLayer : public IIfConditionalBoundaryLayer +{ +public: +protected: + virtual ~IIfConditionalOutputLayer() noexcept = default; + apiv::VConditionalOutputLayer* mImpl; +}; + +//! +//! \class IIfConditionalInputLayer +//! +//! \brief This layer represents an input to an IIfConditional. +//! +class IIfConditionalInputLayer : public IIfConditionalBoundaryLayer +{ +public: +protected: + virtual ~IIfConditionalInputLayer() noexcept = default; + apiv::VConditionalInputLayer* mImpl; +}; + +//! +//! \class IIfConditional +//! +//! \brief Helper for constructing conditionally-executed subgraphs. +//! +//! An If-conditional conditionally executes part of the network according +//! to the following pseudo-code: +//! +//! If condition is true then: +//! output = trueSubgraph(trueInputs); +//! Else +//! output = falseSubgraph(falseInputs); +//! Emit output +//! +//! Condition is a 0D boolean tensor (representing a scalar). +//! trueSubgraph represents a network subgraph that is executed when condition evaluates to True. +//! falseSubgraph represents a network subgraph that is executed when condition evaluates to False. +//! +//! The following constraints apply to If-conditionals: +//! - Both the trueSubgraph and falseSubgraph must be defined. +//! - The number of output tensors in both subgraphs is the same. +//! - Corresponding output tensors from the true/false subgraphs have the same type and rank. +//! +//! The subgraphs may directly use tensors defined outside of the IIfConditional. +class IIfConditional : public INoCopy +{ +public: + //! + //! \brief Set the condition tensor for this If-Conditional construct. + //! + //! \param condition The condition tensor that will determine which subgraph to execute. + //! + //! \p condition tensor must be a 0D execution tensor (scalar) with type DataType::kBOOL. + //! + //! \see IConditionLayer + //! + IConditionLayer* setCondition(ITensor& condition) noexcept + { + return mImpl->setCondition(condition); + } + + //! + //! \brief Add an If-conditional output. + //! + //! \param trueSubgraphOutput The output of the subgraph executed when the conditional evaluates to true. + //! \param falseSubgraphOutput The output of the subgraph executed when the conditional evaluates to false. + //! + //! Each output layer of an IIfConditional represents a single output of either the true-subgraph or the + //! false-subgraph of an IIfConditional, depending on which subgraph was executed. + //! + //! The ranks of the two tensors must be equal unless the condition is a build-time constant. + //! + //! \see IIfConditionalOutputLayer + //! + IIfConditionalOutputLayer* addOutput(ITensor& trueSubgraphOutput, ITensor& falseSubgraphOutput) noexcept + { + return mImpl->addOutput(trueSubgraphOutput, falseSubgraphOutput); + } + + //! + //! \brief Add an If-conditional input. + //! + //! \param input An input to the conditional that can be used by either or both of the conditional's subgraphs. + //! + //! \see IIfConditionalInputLayer + //! + IIfConditionalInputLayer* addInput(ITensor& input) noexcept + { + return mImpl->addInput(input); + } + + //! + //! \brief Set the name of the conditional. + //! + //! The name is used in error diagnostics. + //! This method copies the name string. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getName() + //! + void setName(char const* name) noexcept + { + mImpl->setName(name); + } + + //! + //! \brief Return the name of the conditional. + //! + //! \see setName() + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + +protected: + virtual ~IIfConditional() noexcept = default; + apiv::VIfConditional* mImpl; +}; + +//! +//! \class IRecurrenceLayer +//! +//! \brief A recurrence layer in a network definition. +//! +//! The recurrence layer allows a loop iteration to compute a result from a value computed in the previous iteration. +//! +class IRecurrenceLayer : public ILoopBoundaryLayer +{ +public: + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + // + //! Sets the input tensor for the given index. + //! + //! For a recurrence layer, the values 0 and 1 are valid. + //! The indices are as follows: + //! + //! - 0: The initial value of the output tensor. The value must come from outside the loop. + //! - 1: The next value of the output tensor. The value usually comes from inside the loop, and must have the same + //! dimensions as input 0. + //! + //! If this function is called with the value 1, then the function getNbInputs() changes + //! from returning 1 to 2. + //! + using ILayer::setInput; + +protected: + virtual ~IRecurrenceLayer() noexcept = default; + apiv::VRecurrenceLayer* mImpl; +}; + +//! +//! \class ILoopOutputLayer +//! +//! \brief An ILoopOutputLayer is the sole way to get output from a loop. +//! +//! The first input tensor must be defined inside the loop; the output tensor is outside the loop. +//! The second input tensor, if present, must be defined outside the loop. +//! +//! If getLoopOutput() is kLAST_VALUE, a single input must be provided, +//! and that input must be from an IRecurrenceLayer in the same loop. +//! +//! If getLoopOutput() is kCONCATENATE or kREVERSE, a second input must be provided. +//! The second input must be a 0D shape tensor, defined before the loop commences, +//! that specifies the concatenation length of the output. +//! +//! The output tensor has j more dimensions than the input tensor, where +//! j == 0 if getLoopOutput() is kLAST_VALUE +//! j == 1 if getLoopOutput() is kCONCATENATE or kREVERSE. +//! +class ILoopOutputLayer : public ILoopBoundaryLayer +{ +public: + //! + //! \brief Get which kind a loop output has. + //! + LoopOutput getLoopOutput() const noexcept + { + return mImpl->getLoopOutput(); + } + + //! + //! \brief Set where to insert the contenation axis. Ignored if getLoopOutput() is kLAST_VALUE. + //! + //! For example, if the input tensor has dimensions [b,c,d], + //! and getLoopOutput() is kCONCATENATE, the output has four dimensions. + //! Let a be the value of the second input. + //! setAxis(0) causes the output to have dimensions [a,b,c,d]. + //! setAxis(1) causes the output to have dimensions [b,a,c,d]. + //! setAxis(2) causes the output to have dimensions [b,c,a,d]. + //! setAxis(3) causes the output to have dimensions [b,c,d,a]. + //! Default is axis is 0. + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Get axis being concatenated over. + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + // + //! Sets the input tensor for the given index. The index must be 0 for a kLAST_VALUE loop output layer. + //! Loop output layer is converted to a kCONCATENATE or kREVERSE loop output layer by calling setInput with an + //! index 1. A kCONCATENATE or kREVERSE loop output layer cannot be converted back to a kLAST_VALUE loop output + //! layer. + //! + //! For a kCONCATENATE or kREVERSE loop output layer, the values 0 and 1 are valid. + //! The indices in the kCONCATENATE or kREVERSE cases are as follows: + //! + //! - 0: Contribution to the output tensor. The contribution must come from inside the loop. + //! - 1: The concatenation length scalar value, must come from outside the loop, as a 0D shape tensor of type Int32 or Int64. + //! + //! If this function is called with the value 1, then the function getNbInputs() changes + //! from returning 1 to 2. + //! + using ILayer::setInput; + +protected: + virtual ~ILoopOutputLayer() noexcept = default; + apiv::VLoopOutputLayer* mImpl; +}; + +//! +//! \class ITripLimitLayer +//! +//! \brief A layer that represents a trip-count limiter. +//! +//! The trip limit layer sets the execution condition for loops, using kCOUNT to define the number of iterations or +//! kWHILE for a conditional loop. A loop can have one of each kind of limit, in which case the loop exits when +//! the trip count is reached or the condition becomes false. +//! +//! See INetworkDefinition::addTripLimit(). +//! +class ITripLimitLayer : public ILoopBoundaryLayer +{ +public: + //! + //! \brief Get a trip limiter type. + //! + TripLimit getTripLimit() const noexcept + { + return mImpl->getTripLimit(); + } + +protected: + virtual ~ITripLimitLayer() noexcept = default; + apiv::VTripLimitLayer* mImpl; +}; + +//! +//! \class IIteratorLayer +//! +//! \brief A layer to do iterations. +//! +//! The iterator layer iterates over a tensor along the given axis and in the given direction. +//! It enables each loop iteration to inspect a different slice of the tensor. +//! +//! \see ILoop::addIterator() +//! +class IIteratorLayer : public ILoopBoundaryLayer +{ +public: + //! + //! \brief Set axis to iterate over. + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Get axis being iterated over. + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + + //! + //! \brief Set iteration order to be reverse. + //! + //! For reverse=false, the layer is equivalent to addGather(tensor, I, 0) where I is a + //! scalar tensor containing the loop iteration number. + //! For reverse=true, the layer is equivalent to addGather(tensor, M-1-I, 0) where M is the trip count + //! computed from TripLimits of kind kCOUNT. + //! The default is reverse=false. + //! + void setReverse(bool reverse) noexcept + { + mImpl->setReverse(reverse); + } + + //! + //! \brief Check if the iteration order is reverse. + //! + //! \return True if and only if reversing input. + //! + bool getReverse() const noexcept + { + return mImpl->getReverse(); + } + +protected: + virtual ~IIteratorLayer() noexcept = default; + apiv::VIteratorLayer* mImpl; +}; + +//! +//! \class ILoop +//! +//! \brief Helper for creating a recurrent subgraph. +//! +//! An ILoop defines a loop within a network. It supports the implementation of recurrences, +//! which are crucial for iterative computations, such as RNNs for natural language processing and +//! time-series analysis. +//! +//! The subgraph may directly use tensors defined outside of the ILoop. +class ILoop : public INoCopy +{ +public: + //! + //! \brief Create a recurrence layer for this loop with initialValue as its first input. + //! + //! IRecurrenceLayer requires exactly two inputs. The 2nd input must be added, via method + //! IRecurrenceLayer::setInput(1,...) before an Engine can be built. + //! + IRecurrenceLayer* addRecurrence(ITensor& initialValue) noexcept + { + return mImpl->addRecurrence(initialValue); + } + + //! + //! \brief Add a trip-count limiter, based on the given tensor. + //! + //! There may be at most one kCOUNT and one kWHILE limiter for a loop. + //! When both trip limits exist, the loop exits when the + //! count is reached or condition is falsified. + //! It is an error to not add at least one trip limiter. + //! + //! For kCOUNT, the input tensor must be available before the loop starts. + //! + //! For kWHILE, the input tensor must be the output of a subgraph that contains + //! only layers that are not ITripLimitLayer, IIteratorLayer or ILoopOutputLayer. + //! Any IRecurrenceLayers in the subgraph must belong to the same loop as the + //! ITripLimitLayer. A trivial example of this rule is that the input to the kWHILE + //! is the output of an IRecurrenceLayer for the same loop. + //! + ITripLimitLayer* addTripLimit(ITensor& tensor, TripLimit limit) noexcept + { + return mImpl->addTripLimit(tensor, limit); + } + + //! + //! \brief Return layer that subscripts tensor by loop iteration. + //! + //! For reverse=false, this is equivalent to addGather(tensor, I, 0) where I is a + //! scalar tensor containing the loop iteration number. + //! For reverse=true, this is equivalent to addGather(tensor, M-1-I, 0) where M is the trip count + //! computed from TripLimits of kind kCOUNT. + //! + IIteratorLayer* addIterator(ITensor& tensor, int32_t axis = 0, bool reverse = false) noexcept + { + return mImpl->addIterator(tensor, axis, reverse); + } + + //! + //! \brief Make an output for this loop, based on the given tensor. + //! + //! axis is the axis for concatenation (if using outputKind of kCONCATENATE or kREVERSE). + //! + //! If outputKind is kCONCATENATE or kREVERSE, a second input specifying the + //! concatenation dimension must be added via method ILoopOutputLayer::setInput. + //! + ILoopOutputLayer* addLoopOutput(ITensor& tensor, LoopOutput outputKind, int32_t axis = 0) noexcept + { + return mImpl->addLoopOutput(tensor, outputKind, axis); + } + + //! + //! \brief Set the name of the loop. + //! + //! The name is used in error diagnostics. + //! This method copies the name string. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getName() + //! + void setName(char const* name) noexcept + { + mImpl->setName(name); + } + + //! + //! \brief Return the name of the loop. + //! + //! \see setName() + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + +protected: + virtual ~ILoop() noexcept = default; + apiv::VLoop* mImpl; +}; + +//! +//! \class ISelectLayer +//! +//! \brief Select elements from two data tensors based on a condition tensor. +//! +//! The select layer makes elementwise selections from two data tensors based on a condition tensor, +//! behaving similarly to the `numpy.where` function with three parameters. +//! The three input tensors must share the same rank. Multidirectional broadcasting is supported. +//! The output tensor has the dimensions of the inputs AFTER applying the broadcast rule. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ISelectLayer : public ILayer +{ +protected: + virtual ~ISelectLayer() noexcept = default; + apiv::VSelectLayer* mImpl; +}; + +//! +//! \class IAssertionLayer +//! +//! \brief An assertion layer in a network +//! +//! The layer has a single input and no output. The input must be a boolean shape tensor. +//! If any element of the input is provably false at build time, the network is rejected. +//! If any element of the input is false at runtime for the supplied runtime dimensions, +//! an error occurs, much the same as if any other runtime error (e.g. using IShuffleLayer +//! to change the volume of a tensor) is handled. +//! +//! Asserting equality of input dimensions may help the optimizer. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IAssertionLayer : public ILayer +{ +public: + //! + //! \brief Set the message to print if the assertion fails. + //! + //! The name is used in error diagnostics. + //! This method copies the message string. + //! + //! \see getMessage() + //! + void setMessage(char const* message) noexcept + { + mImpl->setMessage(message); + } + + //! + //! \brief Return the assertion message. + //! + //! \see setMessage() + //! + char const* getMessage() const noexcept + { + return mImpl->getMessage(); + } + +protected: + virtual ~IAssertionLayer() noexcept = default; + + apiv::VAssertionLayer* mImpl; +}; + +//! +//! \enum FillOperation +//! +//! \brief Enumerates the tensor fill operations that may performed by a fill layer. +//! +//! \see IFillLayer +//! +enum class FillOperation : int32_t +{ + //! Compute each value via an affine function of its indices. + //! For example, suppose the parameters for the IFillLayer are: + //! + //! * Dimensions = [3,4] + //! * Alpha = 1 + //! * Beta = [100,10] + //! + //! Element [i,j] of the output is Alpha + Beta[0]*i + Beta[1]*j. + //! Thus the output matrix is: + //! + //! 1 11 21 31 + //! 101 111 121 131 + //! 201 211 221 231 + //! + //! A static beta b is implicitly a 1D tensor, i.e. Beta = [b]. + //! Output type must be INT32, INT64, or FLOAT. + kLINSPACE = 0, + + //! Randomly draw values from a uniform distribution. + //! Output type must be FLOAT or HALF. + kRANDOM_UNIFORM = 1, + + //! Randomly draw values from a normal distribution. + //! Output type must be FLOAT or HALF. + kRANDOM_NORMAL = 2 +}; + +//! +//! Maximum number of elements in FillOperation enum. +//! +//! \see FillOperation +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class IFillLayer +//! +//! \brief Generate a tensor according to a specified mode. +//! +//! The fill layer generates a tensor with values that are drawn from a random distribution +//! or an affine function of their indices, as specified by the FillMode. +//! +//! When an IFillLayer is initially added to a network, all of its parameters are static. +//! Each parameter may be changed to dynamic by setting a corresponding input. +//! A parameter is considered dynamic even if that input is the output of an IConstantLayer. +//! The inputs for each parameter are: +//! +//! - 0: Dimensions +//! - 1: Alpha +//! - 2: Beta +//! +//! The parameter Dimensions describes the shape of the output. If the Dimensions input is provided, +//! it must be a 1D tensor of type Int32 or Int64 whose length is computable by constant folding. +//! +//! The meanings of Alpha and Beta depend on the mode, as described in IFillLayer::setAlpha(), +//! IFillLayer::setBeta(), and IFillLayer::setInput(). Parameters Alpha and Beta must both be static +//! or both be dynamic. +//! +//! An IFillLayer can produce a shape tensor if the following restrictions are met: +//! +//! * The FillOperation is kLINSPACE. +//! * The output has type Int32, Int64, or Float. +//! * The volume of the output is within the volume limit imposed on shape tensors. +//! * If input 0 exists, the values of input 0 must be computable by constant folding. +//! +//! \see FillOperation +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IFillLayer : public ILayer +{ +public: + //! + //! \brief Set the output tensor's dimensions. + //! + //! \param dimensions The output tensor's dimensions. + //! + //! If the first input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getDimensions + // + void setDimensions(Dims const& dimensions) noexcept + { + mImpl->setDimensions(dimensions); + } + + //! + //! \brief Get the output tensor's dimensions. + //! + //! \return The output tensor's dimensions, or an invalid Dims structure. + //! + //! If the first input is present and non-null, + //! this function returns a Dims with nbDims = -1. + //! + //! \see setDimensions + //! + Dims getDimensions() const noexcept + { + return mImpl->getDimensions(); + } + + //! + //! \brief Set the fill operation for the layer. + //! + //! \see getOperation(), FillOperation + //! + void setOperation(FillOperation op) noexcept + { + mImpl->setOperation(op); + } + + //! + //! \brief Get the fill operation for the layer. + //! + //! \see setOperation(), FillOperation + //! + FillOperation getOperation() const noexcept + { + return mImpl->getOperation(); + } + + //! + //! \brief Set the alpha parameter. + //! + //! \param alpha has different meanings for each operator: + //! + //! Operation | Usage + //! kLINSPACE | the start value, defaults to 0.0; + //! kRANDOM_UNIFORM | the minimum value, defaults to 0.0; + //! kRANDOM_NORMAL | the mean of the normal distribution, default is 0.0; + //! + //! If input 1 exists, it is reset to null by this method. + //! + //! \see getAlpha, setAlphaInt64 + // + void setAlpha(double alpha) noexcept + { + mImpl->setAlpha(alpha); + } + + //! + //! \brief Get the value of alpha parameter. + //! + //! \return A double value of alpha. + //! + //! If the second input is present and non-null, + //! this function returns -1.0. + //! + //! \see setAlpha + //! + double getAlpha() const noexcept + { + return mImpl->getAlpha(); + } + + //! + //! \brief Set the beta parameter. + //! + //! \param beta has different meanings for each operator: + //! + //! Operation | Usage + //! kLINSPACE | the delta value, defaults to 1.0; + //! kRANDOM_UNIFORM | the maximal value, defaults to 1.0; + //! kRANDOM_NORMAL | the standard deviation of the normal distribution, default is 1.0; + //! + //! If input 2 exists, it is reset to null by this method. + //! + //! \see getBeta + //! + void setBeta(double beta) noexcept + { + mImpl->setBeta(beta); + } + + //! + //! \brief Get the value of beta parameter. + //! + //! \return A double value of beta. + //! + //! If the third input is present and non-null, + //! this function returns -1.0. + //! + //! \see setBeta, setBetaInt64 + //! + double getBeta() const noexcept + { + return mImpl->getBeta(); + } + + //! + //! \brief Replace an input of this layer with a specific tensor. + //! + //! \param index the index of the input to set. + //! \param tensor the new input tensor + //! + //! The three inputs correspond to these setters of IFillLayer: + //! + //! - 0: setDimensions + //! - 1: setAlpha + //! - 2: setBeta + //! + //! The following descriptions give more intuitive names for the inputs. + //! + //! Indices for kLINSPACE are: + //! + //! - 0: Shape, a 1D shape tensor, specifies the output tensor's dimensions. + //! - 1: Start, a scalar, specifies the start value. + //! - 2: Delta, a 1D tensor, specifies the delta value for each dimension. + //! + //! Indices for kRANDOM_UNIFORM are: + //! + //! - 0: Shape, a 1D shape tensor, specifies the output tensor's dimensions. + //! - 1: Minimum, a scalar, specifies the minimum random value. + //! - 2: Maximum, a scalar, specifies the maximal random value. + //! + //! Indices for kRANDOM_NORMAL are: + //! + //! - 0: Shape, a 1D shape tensor, specifies the output tensor's dimensions. + //! - 1: Mean, a scalar, specifies the mean of the normal distribution,. + //! - 2: Scale, a scalar, specifies the standard deviation of the normal distribution. + //! + //! Using the corresponding setter resets the input to null. + //! + //! If either inputs 1 or 2 is non-null, then both must be non-null and have the same data type. + //! + //! If this function is called for an index greater or equal to getNbInputs(), + //! then afterwards getNbInputs() returns index + 1, and any missing intervening + //! inputs are set to null. + //! + using ILayer::setInput; + + //! + //! \brief Set the alpha parameter with int64 datatype. + //! + //! \param alpha has different meanings for each operator: + //! + //! Operation | Usage + //! kLINSPACE | the start value, defaults to 0; + //! kRANDOM_UNIFORM | the minimum value, defaults to 0; + //! kRANDOM_NORMAL | the mean of the normal distribution, default is 0; + //! + //! If a third input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getAlphaInt64 + // + void setAlphaInt64(int64_t alpha) noexcept + { + mImpl->setAlphaInt64(alpha); + } + + //! + //! \brief Get the value of alpha parameter with int64 datatype. + //! + //! \return A int64 value of alpha. + //! + //! If the second input is present and non-null, + //! this function returns -1. + //! + //! \see setAlphaInt64 + //! + int64_t getAlphaInt64() const noexcept + { + return mImpl->getAlphaInt64(); + } + + //! + //! \brief Set the beta parameter with int64 datatype. + //! + //! \param beta has different meanings for each operator: + //! + //! Operation | Usage + //! kLINSPACE | the delta value, defaults to 1; + //! kRANDOM_UNIFORM | the maximal value, defaults to 1; + //! kRANDOM_NORMAL | the standard deviation of the normal distribution, default is 1; + //! + //! If a third input had been used to create this layer, that input is reset to null by this method. + //! + //! \see getBetaInt64 + //! + void setBetaInt64(int64_t beta) noexcept + { + mImpl->setBetaInt64(beta); + } + + //! + //! \brief Get the value of beta parameter with int64 datatype. + //! + //! \return A int64 value of beta. + //! + //! If the third input is present and non-null, + //! this function returns -1.0. + //! + //! \see setBetaInt64 + //! + int64_t getBetaInt64() const noexcept + { + return mImpl->getBetaInt64(); + } + + //! + //! \brief Return true if alpha/beta have type int64, false if they have type double. + //! + bool isAlphaBetaInt64() const noexcept + { + return mImpl->isAlphaBetaInt64(); + } + + //! + //! \brief Set the fill layer output type. + //! + //! \param toType The DataType of the output tensor. + //! + //! Set the output type of the fill layer. Valid values are DataType::kFLOAT, DataType::kHALF, DataType::kINT32, + //! and DataType::kINT64. + //! If the network is strongly typed, setToType must be used to set the output type, and use of setOutputType + //! is an error. Otherwise, types passed to setOutputType and setToType must be the same. + //! + //! \see NetworkDefinitionCreationFlag::kSTRONGLY_TYPED + //! + //! \see FillOperation for more information on which types are supported for each mode. + void setToType(DataType toType) noexcept + { + mImpl->setToType(toType); + } + + //! + //! \brief Get the fill layer output type. + //! + //! \return toType parameter set during layer creation or by setToType(). + //! The return value is the output type of the fill layer. + //! The default value is DataType::kFLOAT. + //! + DataType getToType() const noexcept + { + return mImpl->getToType(); + } + +protected: + virtual ~IFillLayer() noexcept = default; + apiv::VFillLayer* mImpl; +}; + +//! +//! \class IQuantizeLayer +//! +//! \brief A Quantize layer in a network definition. +//! +//! This layer accepts a floating-point data input tensor, and uses the scale and zeroPt inputs to +//! quantize the data according to: +//! \p output = clamp(round(\p input / \p scale) + \p zeroPt) +//! +//! Rounding type is rounding-to-nearest ties-to-even (https://en.wikipedia.org/wiki/Rounding#Round_half_to_even). +//! Clamping range according to data type: +//! - FP8: [-448, 448] +//! - INT4: [-8, 7] +//! - INT8: [-128, 127] +//! +//! The first input (index 0) is the tensor to be quantized. +//! The second (index 1) and third (index 2) are the scale and zero point respectively. +//! \p scale and \p zeroPt should have identical dimensions, and rank lower or equal to 2. +//! +//! The \p zeroPt tensor is optional, and if not set, will be assumed to be zero. Its data type must match the +//! output data type. \p zeroPt must only contain zero-valued coefficients, because only symmetric quantization is +//! supported. +//! The \p scale value must be a scalar for per-tensor quantization, a 1D tensor for per-channel quantization, or the +//! same rank as the input tensor for block quantization. All \p scale coefficients must have strictly positive values. +//! The size of the 1D \p scale tensor must match the size of the quantization axis. For block quantization, the shape +//! of \p scale tensor must match the shape of the input, except for the blocking dimension (the last or second to last +//! dimension). The size of \p zeroPt must match the size of \p scale. +//! +//! The subgraph which terminates with the \p zeroPt tensor must be a build-time constant containing only zeros. +//! The output type, if constrained, must be constrained to DataType::kINT8, DataType::kFP8, DataType::kINT4 or +//! DataType::kFP4. The input type, if constrained, must be constrained to DataType::kFLOAT, DataType::kHALF, or +//! DataType::kBF16. The output size is the same as the input size. The quantization axis is in reference to the input +//! tensor's dimensions. +//! +//! IQuantizeLayer supports DataType::kFLOAT, DataType::kHALF, or DataType::kBF16 precision and will default to +//! DataType::kFLOAT precision during instantiation. For strongly typed networks, if the scale data type is +//! DataType::kHALF or DataType::kBF16, it must match the input data type. For MXFP8 quantization, the \p scale +//! data type must be DataType::kE8M0. +//! +//! IQuantizeLayer supports DataType::kINT8, DataType::kFP8, DataType::kINT4 or DataType::kFP4 output. +//! +//! As an example of the operation of this layer, imagine a 4D NCHW activation input which can be quantized using a +//! single scale coefficient (referred to as per-tensor quantization): +//! For each n in N: +//! For each c in C: +//! For each h in H: +//! For each w in W: +//! output[n,c,h,w] = clamp(round(\p input[n,c,h,w] / \p scale) + \p zeroPt) +//! +//! Per-channel quantization is supported only for weight inputs. Thus, Activations cannot be quantized per-channel. +//! As an example of per-channel operation, imagine a 4D KCRS weights input and K (dimension 0) as the quantization +//! axis. The scale is an array of coefficients, and must have the same size as the quantization axis. +//! For each k in K: +//! For each c in C: +//! For each r in R: +//! For each s in S: +//! output[k,c,r,s] = clamp(round(\p input[k,c,r,s] / \p scale[k]) + \p zeroPt[k]) +//! +//! Block quantization is supported for input types DataType::kFP4, DataType::kFP8 and DataType::kINT4. +//! As an example of blocked operation, imagine a 2D RS input with R (dimension 0) as the blocking axis and B as the +//! block size. The scale is a 2D array of coefficients, with dimensions (R//B, S). +//! For each r in R: +//! For each s in S: +//! output[r,s] = clamp(round(\p input[r,s] / \p scale[r//B, s]) + \p zeroPt[r//B, s]) +//! +//! \note Only symmetric quantization is supported. +//! \note Currently the only allowed build-time constant \p zeroPt subgraphs are: +//! 1. Constant -> Quantize +//! 2. Constant -> Cast -> Quantize +//! +//! \note The input tensor for this layer must not be a scalar. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IQuantizeLayer : public ILayer +{ +public: + //! + //! \brief Get the quantization axis. + //! + //! \return axis parameter set by setAxis(). + //! The return value is the index of the quantization axis in the input tensor's dimensions. + //! A value of -1 indicates per-tensor quantization. + //! The default value is -1. + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + //! + //! \brief Set the quantization axis. + //! + //! Set the index of the quantization axis (with reference to the input tensor's dimensions). + //! The axis must be a valid axis if the scale tensor has more than one coefficient. + //! The axis value is used only for per-axis (per-channel) quantization. + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Set the shape of the quantization block. + //! + //! \see getBlockShape() + //! Allowed values are positive values and -1 which denotes a fully blocked dimension. + //! Returns true if the block shape was set successfully, false if the block shape is invalid. + //! The default value is empty Dims. + //! + bool setBlockShape(Dims const& blockShape) noexcept + { + return mImpl->setBlockShape(blockShape); + } + + //! + //! \brief Get the shape of the quantization block. + //! + //! The default value is empty Dims. + //! \see setBlockShape() + //! + TRT_NODISCARD Dims getBlockShape() const noexcept + { + return mImpl->getBlockShape(); + } + + //! + //! \brief Set the Quantize layer output type. + //! + //! \param toType The DataType of the output tensor. + //! + //! Set the output type of the quantize layer. Valid values are DataType::kINT8, DataType::kFP8, DataType::kINT4 and + //! DataType::kFP4. If the network is strongly typed, setToType must be used to set the output type, and use of + //! setOutputType is an error. Otherwise, types passed to setOutputType and setToType must be the same. + //! + //! \see NetworkDefinitionCreationFlag::kSTRONGLY_TYPED + //! + void setToType(DataType toType) noexcept + { + mImpl->setToType(toType); + } + + //! + //! \brief Return the Quantize layer output type. + //! + //! \return toType parameter set during layer creation or by setToType(). + //! The return value is the output type of the quantize layer. + //! The default value is DataType::kINT8. + //! + DataType getToType() const noexcept + { + return mImpl->getToType(); + } + +protected: + virtual ~IQuantizeLayer() noexcept = default; + apiv::VQuantizeLayer* mImpl; +}; + +//! +//! \class IDequantizeLayer +//! +//! \brief A Dequantize layer in a network definition. +//! +//! This layer accepts a quantized type input tensor, and uses the configured scale and zeroPt inputs to +//! dequantize the input according to: +//! \p output = (\p input - \p zeroPt) * \p scale +//! +//! The first input (index 0) is the tensor to be dequantized. +//! The second (index 1) and third (index 2) are the scale and zero point respectively. +//! \p scale and \p zeroPt should have identical dimensions, and a rank that is lower or equal to 2. +//! +//! The \p zeroPt tensor is optional, and if not set, will be assumed to be zero. Its data type must be identical to +//! the input's data type. \p zeroPt must only contain zero-valued coefficients, because only symmetric quantization is +//! supported. +//! The \p scale value must be a scalar for per-tensor quantization, a 1D tensor for per-channel quantization, or the +//! same rank as the input tensor for block quantization. All \p scale coefficients must have strictly positive values. +//! The size of the 1D \p scale tensor must match the size of the quantization axis. For block quantization, the shape +//! of \p scale tensor must match the shape of the input, except for one dimension (the last or second to last +//! dimension) in which blocking occurs. The size of \p zeroPt must match the size of \p scale. +//! +//! The subgraph which terminates with the \p zeroPt tensor must be a build-time constant containing only zeros. +//! The output type, if constrained, must be constrained to DataType::kFLOAT, DataType::kHALF, or DataType::kBF16. The +//! input type, if constrained, must be constrained to DataType::kINT8, DataType::kFP8, DataType::kINT4 or +//! DataType::kFP4. The output size is the same as the input size. The quantization axis is in reference to the input +//! tensor's dimensions. +//! +//! IDequantizeLayer supports DataType::kINT8 (default), DataType::kFP8, DataType::kINT4 or DataType::kFP4. For strongly +//! typed networks, \p input data type must be the same as \p zeroPt data type. +//! +//! IDequantizeLayer supports DataType::kFLOAT, DataType::kHALF, or DataType::kBF16 output. The output data type must +//! be configured explicitly using \p setToType. +//! +//! As an example of the operation of this layer, imagine a 4D NCHW activation input which can be quantized using a +//! single scale coefficient (referred to as per-tensor quantization): +//! For each n in N: +//! For each c in C: +//! For each h in H: +//! For each w in W: +//! output[n,c,h,w] = (\p input[n,c,h,w] - \p zeroPt) * \p scale +//! +//! Per-channel dequantization is supported only for input that is rooted at an IConstantLayer (i.e. weights). +//! Activations cannot be quantized per-channel. As an example of per-channel operation, imagine a 4D KCRS weights input +//! and K (dimension 0) as the quantization axis. The scale is an array of coefficients, which is the same size as the +//! quantization axis. +//! For each k in K: +//! For each c in C: +//! For each r in R: +//! For each s in S: +//! output[k,c,r,s] = (\p input[k,c,r,s] - \p zeroPt[k]) * \p scale[k] +//! +//! Block dequantization is supported for input types DataType::kFP4, DataType::kFP8 and DataType::kINT4. +//! As an example of blocked operation, imagine a 2D RS input with R (dimension 0) as the blocking axis and B as the +//! block size. The scale is a 2D array of coefficients, with dimensions (R//B, S). +//! For each r in R: +//! For each s in S: +//! output[r,s] = (\p input[r,s] - \p zeroPt[r//B, s]) * \p scale[r//B, s] +//! +//! \note Only symmetric quantization is supported. +//! \note Currently the only allowed build-time constant \p zeroPt subgraphs are: +//! 1. Constant -> Quantize +//! 2. Constant -> Cast -> Quantize +//! +//! \note The input tensor for this layer must not be a scalar. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IDequantizeLayer : public ILayer +{ +public: + //! + //! \brief Get the quantization axis. + //! + //! \return axis parameter set by setAxis(). + //! The return value is the index of the quantization axis in the input tensor's dimensions. + //! A value of -1 indicates per-tensor quantization. + //! The default value is -1. + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + //! + //! \brief Set the quantization axis. + //! + //! Set the index of the quantization axis (with reference to the input tensor's dimensions). + //! The axis must be a valid axis if the scale tensor has more than one coefficient. + //! The axis value will be ignored if the scale tensor has exactly one coefficient (per-tensor quantization). + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Set the shape of the quantization block. + //! + //! \param blockShape The shape of the quantization block. + //! + //! Set the shape of the quantization block. + //! Allowed values are positive values and -1 which denotes a fully blocked dimension. + //! Returns true if the block shape was set successfully, false if the block shape is invalid. + //! The default value is empty Dims. + //! + //! \see getBlockShape() + //! + bool setBlockShape(Dims const& blockShape) noexcept + { + return mImpl->setBlockShape(blockShape); + } + + //! + //! \brief Get the shape of the quantization block. + //! + //! The default value is empty Dims. + //! \see setBlockShape() + //! + TRT_NODISCARD Dims getBlockShape() const noexcept + { + return mImpl->getBlockShape(); + } + + //! + //! \brief Set the Dequantize layer output type. + //! + //! \param toType The DataType of the output tensor. + //! + //! Set the output type of the dequantize layer. Valid values are DataType::kFLOAT, DataType::kHALF and + //! DataType::kBF16. If the network is strongly typed, setToType must be used to set the output type, and use of + //! setOutputType is an error. Otherwise, types passed to setOutputType and setToType must be the same. + //! + //! \see NetworkDefinitionCreationFlag::kSTRONGLY_TYPED + //! + void setToType(DataType toType) noexcept + { + mImpl->setToType(toType); + } + + //! + //! \brief Return the Dequantize layer output type. + //! + //! \return toType parameter set during layer creation or by setToType(). + //! The return value is the output type of the quantize layer. + //! The default value is DataType::kFLOAT. + //! + DataType getToType() const noexcept + { + return mImpl->getToType(); + } + +protected: + virtual ~IDequantizeLayer() noexcept = default; + apiv::VDequantizeLayer* mImpl; +}; + +//! +//! \class IDynamicQuantizeLayer +//! +//! \brief A network layer to perform dynamic quantization. +//! +//! This layer accepts a floating-point input tensor and computes the block scale factors needed to +//! quantize the input's data. It outputs the quantized tensor as its first output and +//! the scale factors as its second output. +//! +//! Use ILayer::setInput to add an input for the double-quantization scale factor. +//! +//! \note Only symmetric quantization is supported. +//! \note The input tensor for this layer must not be a scalar. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the +//! API and ABI. +//! +class IDynamicQuantizeLayer : public ILayer +{ +public: + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! Input 0 is the input activation tensor. + //! Input 1 is the double-quantization scale factor. This scale is used to quantize the + //! dynamically computed high-precision scale factors that are used to quantize the + //! activation data. Currently this input must be a positive scalar (a 0D tensor). + //! + using ILayer::setInput; + + //! + //! \brief Set DynamicQuantizeLayer's quantized output type. + //! + //! \param toType The data type of the quantized output tensor. + //! + //! Set the type of the dynamic quantization layer's quantized output.If the network is strongly typed, setToType + //! must be used to set the output type, and use of setOutputType is an error. Otherwise, types passed to + //! setOutputType and setToType must be the same. + //! Valid values for \p toType are DataType::kFP4 (NVFP4 quantization) and DataType::kFP8 (MXFP8 quantization). + //! + //! \see NetworkDefinitionCreationFlag::kSTRONGLY_TYPED + //! + void setToType(DataType toType) noexcept + { + mImpl->setToType(toType); + } + + //! + //! \brief Return DynamicQuantizeLayer's quantized output type. + //! + //! \return toType parameter set during layer creation or by setToType(). + //! + //! The return value is the type of the quantized output tensor. + //! The default value is DataType::kFP4. + //! + DataType getToType() const noexcept + { + return mImpl->getToType(); + } + + //! + //! \brief Set the data type of the scale factors used to quantize the data. + //! + //! \param scaleType The scale factors data type. + //! + //! Set the scale-factors type. + //! Valid values are DataType::kFP8, DataType::kE8M0 or DataType::kFLOAT. + //! + void setScaleType(DataType scaleType) noexcept + { + mImpl->setScaleType(scaleType); + } + + //! + //! \brief Return the scale factors data type. + //! + //! \return scaleType parameter set during layer creation or by setScaleType(). + //! + //! The return value is the type of the scale factors used to quantize the dynamic data. + //! The default value is DataType::kFP8. + //! + DataType getScaleType() const noexcept + { + return mImpl->getScaleType(); + } + + //! + //! \brief Set the axis along which block quantization occurs. + //! + //! The axis must be the last dimension or second to last dimension. + //! The input's shape along the axis must be constant. + //! + //! \see getAxis() + //! + TRT_DEPRECATED void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Get the axis along which blocking occurs. + //! + //! \see setAxis() + //! + TRT_DEPRECATED int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + + //! + //! \brief Set the size of the quantization block. + //! + //! Note: The block size must divide the input in the blocked axis without remainder. + //! Valid values are 16 (NVFP4 quantization) and 32 (MXFP8 quantization). + //! + //! \see getBlockSize() + //! + TRT_DEPRECATED void setBlockSize(int32_t size) noexcept + { + mImpl->setBlockSize(size); + } + + //! + //! \brief Get the size of the quantization block. + //! + //! \see setBlockSize() + //! + TRT_DEPRECATED int32_t getBlockSize() const noexcept + { + return mImpl->getBlockSize(); + } + + //! + //! \brief Set the shape of the quantization block. + //! + //! Note: The block shape rank must match the input rank. + //! The default value is empty Dims. + //! + //! \see getBlockShape() + //! + void setBlockShape(Dims const& blockShape) noexcept + { + mImpl->setBlockShape(blockShape); + } + + //! + //! \brief Get the shape of the quantization block. + //! + //! The default value is empty Dims. + //! + //! \see setBlockShape() + //! + Dims getBlockShape() const noexcept + { + return mImpl->getBlockShape(); + } + +protected: + virtual ~IDynamicQuantizeLayer() noexcept = default; + apiv::VDynamicQuantizeLayer* mImpl; +}; + +//! +//! \class IEinsumLayer +//! +//! \brief An Einsum layer in a network +//! +//! This layer implements a summation over the elements of the inputs along dimensions specified by the equation +//! parameter, based on the Einstein summation convention. +//! The layer can have one or more inputs of rank >= 0. All the inputs must have type DataType::kFLOAT +//! or DataType::kHALF, not necessarily the same. There is one output of type DataType::kFLOAT. +//! The shape of the output tensor is determined by the equation. +//! +//! The equation specifies ASCII lower-case letters for each dimension in the inputs in the same order as the +//! dimensions, separated by comma for each input. The dimensions labeled with the same subscript must match or be +//! broadcastable. Repeated subscript labels in one input take the diagonal. Repeating a label across multiple inputs +//! means that those axes will be multiplied. Omitting a label from the output means values along those axes will be +//! summed. In implicit mode, the indices which appear once in the expression will be part of the output in increasing +//! alphabetical order. In explicit mode, the output can be controlled by specifying output subscript labels by adding +//! an arrow ('->') followed by subscripts for the output. +//! For example, "ij,jk->ik" is equivalent to "ij,jk". +//! Ellipsis ('...') can be used in place of subscripts to broadcast the dimensions. +//! See the TensorRT Developer Guide for more details on equation syntax. +//! +//! Many common operations can be expressed using the Einsum equation. +//! For example: +//! Matrix Transpose: ij->ji +//! Sum: ij-> +//! Matrix-Matrix Multiplication: ik,kj->ij +//! Dot Product: i,i-> +//! Matrix-Vector Multiplication: ik,k->i +//! Batch Matrix Multiplication: ijk,ikl->ijl +//! Batch Diagonal: ...ii->...i +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IEinsumLayer : public ILayer +{ +public: + //! + //! \brief Set the equation. + //! The equation is a comma-separated list of subscript labels, where each label refers to a + //! dimension of the corresponding tensor. + //! + //! \return true if the equation was syntactically valid and set successfully, false otherwise. + //! + //! \see setEquation() + //! + bool setEquation(char const* equation) noexcept + { + return mImpl->setEquation(equation); + } + + //! + //! \brief Return the equation. + //! + //! \see setEquation() + //! + char const* getEquation() const noexcept + { + return mImpl->getEquation(); + } + +protected: + virtual ~IEinsumLayer() noexcept = default; + apiv::VEinsumLayer* mImpl; +}; + +//! +//! \enum ScatterMode +//! +//! \brief Control form of IScatterLayer +//! +//! \see IScatterLayer +//! +enum class ScatterMode : int32_t +{ + kELEMENT = 0, //!< Similar to ONNX ScatterElements + kND = 1, //!< Similar to ONNX ScatterND +}; + +//! +//! Maximum number of elements in ScatterMode enum. +//! +//! \see ScatterMode +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \class IScatterLayer +//! +//! \brief A scatter layer in a network definition. Supports several kinds of scattering. +//! +//! The Scatter layer has three input tensors: Data, Indices, and Updates, one output tensor +//! Output, and a scatter mode. When kELEMENT mode is used an optional axis parameter is available. +//! * Data is a tensor of rank r >= 1 that stores the values to be duplicated in Output. +//! * Indices is a tensor of rank q that determines which locations in Output to write new +//! values to. Constraints on the rank q depend on the mode: +//! ScatterMode::kND: q >= 1 +//! ScatterMode::kELEMENT: q must be the same as r +//! * Updates is a tensor of rank s >= 1 that provides the data +//! to write to Output specified by its corresponding location in Indices. +//! Constraints on the rank of Updates depend on the mode: +//! ScatterMode::kND: s = r + q - shape(Indices)[-1] - 1 +//! Scattermode::kELEMENT: s = q = r +//! * Output is a tensor with the same dimensions as Data that stores the resulting values of the +//! transformation. It must not be a shape tensor. +//! The types of Data, Update, and Output shall be the same, and Indices shall be of type DataType::kINT32 or +//! DataType::kINT64. +//! +//! The output is computed by copying the data, and then updating elements of it based on indices. +//! How Indices are interpreted depends upon the ScatterMode. +//! +//! ScatterMode::kND +//! +//! The indices are interpreted as a tensor of rank q-1 of indexing tuples. +//! The axis parameter is ignored. +//! +//! Given that data dims are {d_0,...,d_{r-1}} and indices dims are {i_0,...,i_{q-1}}, +//! define k = indices[q-1], it follows that updates dims are {i_0,...,i_{q-2},d_k,...,d_{r-1}} +//! The updating can be computed by: +//! foreach slice in indices[i_0,...,i_{q-2}] +//! output[indices[slice]] = updates[slice] +//! +//! ScatterMode::kELEMENT +//! +//! Here "axis" denotes the result of getAxis(). +//! +//! For each element X of indices: +//! Let J denote a sequence for the subscripts of X +//! Let K = sequence J with element [axis] replaced by X +//! output[K] = updates[J] +//! +//! For example, if indices has dimensions [N,C,H,W] and axis is 2, then the updates happen as: +//! +//! for n in [0,n) +//! for c in [0,n) +//! for h in [0,n) +//! for w in [0,n) +//! output[n,c,indices[n,c,h,w],w] = updates[n,c,h,w] +//! +//! Writes to the same output element cause undefined behavior. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IScatterLayer : public ILayer +{ +public: + //! + //! \brief Set the scatter mode. + //! + //! \see getMode() + //! + void setMode(ScatterMode mode) noexcept + { + mImpl->setMode(mode); + } + + //! + //! \brief Get the scatter mode. + //! + //! \see setMode() + //! + ScatterMode getMode() const noexcept + { + return mImpl->getMode(); + } + + //! + //! \brief Set the axis used by ScatterMode::kELEMENTS. + //! + //! The axis defaults to 0. + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Get the axis. + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + +protected: + apiv::VScatterLayer* mImpl; + virtual ~IScatterLayer() noexcept = default; +}; // class IScatterLayer + +//! +//! \class IOneHotLayer +//! +//! \brief A OneHot layer in a network definition. +//! +//! The OneHot layer has three input tensors: Indices, Values, and Depth, one output tensor: +//! Output, and an axis attribute. +//! * Indices is an Int32 tensor that determines which locations in Output to set as on_value. +//! * Values is a two-element (rank=1) tensor that consists of [off_value, on_value] +//! * Depth is an 0D tensor of type Int32 or Int64, which contains the depth (number of classes) of the one-hot encoding. +//! The depth tensor must be a positive build-time constant. +//! * Output is a tensor with rank = rank(indices)+1, where the added dimension contains the one-hot encoding. +//! The data types of Output is equal to the Values data type. +//! * Axis is a scalar specifying to which dimension of the output one-hot encoding is added. +//! Valid range for axis is -rank(indices)-1 <= axis <= rank(indices). +//! +//! The output is computed by copying off_values to all output elements, then setting on_value on the indices +//! specified by the indices tensor. +//! when axis = 0: +//! output[indices[i, j, k], i, j, k] = on_value for all i, j, k and off_value otherwise. +//! +//! when axis = -1: +//! output[i, j, k, indices[i, j, k]] = on_value for all i, j, k and off_value otherwise. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IOneHotLayer : public ILayer +{ +public: + //! + //! \brief Set the axis parameter. + //! + //! \see IOneHotLayer + //! + void setAxis(int32_t axis) noexcept + { + mImpl->setAxis(axis); + } + + //! + //! \brief Get the value of the axis parameter. + //! + int32_t getAxis() const noexcept + { + return mImpl->getAxis(); + } + +protected: + apiv::VOneHotLayer* mImpl; + virtual ~IOneHotLayer() noexcept = default; +}; + +//! +//! \class IGridSampleLayer +//! +//! \brief A GridSample layer in a network definition. +//! +//! This layer uses an input tensor and a grid tensor to produce an interpolated output tensor. +//! The input and grid tensors must be shape tensors of rank 4. The only supported SampleMode +//! values are SampleMode::kCLAMP, SampleMode::kFILL, and SampleMode::kREFLECT. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IGridSampleLayer : public ILayer +{ +public: + //! + //! \brief Set the grid sample interpolation mode. + //! + //! \see getInterpolationMode() + //! + void setInterpolationMode(InterpolationMode mode) noexcept + { + mImpl->setInterpolationMode(mode); + } + + //! + //! \brief Get the grid sample interpolation mode. + //! + //! \see setInterpolationMode() + //! + //! \return The value specified by setInterpolationMode, or InterpolationMode::kLINEAR otherwise. + //! + InterpolationMode getInterpolationMode() const noexcept + { + return mImpl->getInterpolationMode(); + } + + //! + //! \brief Set the align corners mode. + //! + //! \see getAlignCorners() + //! + void setAlignCorners(bool alignCorners) noexcept + { + mImpl->setAlignCorners(alignCorners); + } + + //! + //! \brief Get the align corners mode. + //! + //! \see setAlignCorners() + //! + //! \return The value specified by setAlignCorners(), or false otherwise. + //! + bool getAlignCorners() const noexcept + { + return mImpl->getAlignCorners(); + } + + //! + //! \brief Set the sample mode. + //! + //! \see getSampleMode() + //! + //! \return true if layer's sample mode was set to mode, false otherwise. + //! + bool setSampleMode(SampleMode mode) noexcept + { + return mImpl->setSampleMode(mode); + } + + //! + //! \brief Get the sample mode. + //! + //! \see setSampleMode() + //! + //! \returns the value specified by a successful call to setSampleMode(), or SampleMode::kFILL otherwise. + //! + SampleMode getSampleMode() const noexcept + { + return mImpl->getSampleMode(); + } + +protected: + apiv::VGridSampleLayer* mImpl; + virtual ~IGridSampleLayer() noexcept = default; +}; // class IGridSampleLayer + +//! +//! \enum BoundingBoxFormat +//! +//! \brief Representation of bounding box data used for the Boxes input tensor in INMSLayer +//! +//! \see INMSLayer +//! +enum class BoundingBoxFormat : int32_t +{ + //! (x1, y1, x2, y2) where (x1, y1) and (x2, y2) are any pair of diagonal corners + kCORNER_PAIRS = 0, + //! (x_center, y_center, width, height) where (x_center, y_center) is the center point of the box + kCENTER_SIZES = 1 +}; + +//! +//! Maximum number of elements in BoundingBoxFormat enum. +//! +//! \see BoundingBoxFormat +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \class INMSLayer +//! +//! \brief A non-maximum suppression layer in a network definition. +//! +//! The NMS algorithm iterates through a set of bounding boxes and their confidence scores, in decreasing +//! order of score. Boxes are selected if their score is above a given threshold, and their +//! intersection-over-union (IoU) with previously selected boxes is less than or equal to a given threshold. +//! This layer implements NMS per batch item and per class. +//! +//! Per batch item, boxes are initially sorted by their scores without regard to class. Only boxes up to a maximum of +//! the TopK limit are considered for selection (per batch). During selection, only overlapping boxes of the same class +//! are compared, so that overlapping boxes of different classes do not suppress each other. +//! +//! For each batch item, the ordering of candidate bounding boxes with the same score is unspecified, but the ordering +//! will be consistent across different runs for the same inputs. +//! +//! The layer has the following inputs, in order of input index: +//! +//! * Boxes contains the input bounding boxes. It is a linear tensor of type kFLOAT or kHALF. It has +//! shape [batchSize, numInputBoundingBoxes, numClasses, 4] if the boxes are per class, or +//! [batchSize, numInputBoundingBoxes, 4] if the same boxes are to be used for each class. +//! * Scores contains the per-box scores. It is a linear tensor of the same type as Boxes. It has shape +//! [batchSize, numInputBoundingBoxes, numClasses]. +//! * MaxOutputBoxesPerClass is the maximum number of output boxes per batch item per class. +//! It is a scalar (0D tensor) of type kINT32. +//! * IoUThreshold is the maximum IoU for selected boxes. It is a scalar (0D tensor) of type kFLOAT in the range +//! [0.0f, 1.0f]. It is an optional input with default 0.0f. +//! * ScoreThreshold is the value that a box score must exceed in order to be selected. It is a scalar (0D tensor) of +//! type kFLOAT. It is an optional +//! input with default 0.0f. +//! +//! The layer has the following outputs, in order of output index: +//! +//! * SelectedIndices contains the indices of the selected boxes. It is a linear tensor of type kINT32 or kINT64. It has +//! shape +//! [NumOutputBoxes, 3]. Each row contains a (batchIndex, classIndex, boxIndex) tuple. +//! The output boxes are sorted in order of increasing batchIndex and then in order of decreasing score within each +//! batchIndex. For each batchIndex, the ordering of output boxes with the same score is unspecified. If +//! MaxOutputBoxesPerClass is a constant input, the maximum number of output boxes is batchSize * numClasses * +//! min(numInputBoundingBoxes, MaxOutputBoxesPerClass). Otherwise, the maximum number of output boxes is batchSize * +//! numClasses * numInputBoundingBoxes. The maximum number of output boxes is used to determine the upper-bound on +//! allocated memory for this output tensor. +//! * NumOutputBoxes is the number of output boxes in SelectedIndices. It is a scalar (0D tensor) of type kINT32. +//! +//! \warning There is a hardware-dependent limit K such that only the K highest scoring boxes in each batch item +//! will be considered for selection. The value of K is 2000 for SM 5.3 and 6.2 devices, and 5000 otherwise. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class INMSLayer : public ILayer +{ +public: + //! + //! \brief Set the bounding box format parameter for the layer. + //! + //! The default value for the bounding box format parameter is kCORNER_PAIRS. + //! + //! \see BoundingBoxFormat + //! + //! \see getBoundingBoxFormat() + //! + void setBoundingBoxFormat(BoundingBoxFormat fmt) noexcept + { + mImpl->setBoundingBoxFormat(fmt); + } + + //! + //! \brief Get the bounding box format parameter for the layer. + //! + //! \see BoundingBoxFormat + //! + //! \see setBoundingBoxFormat() + //! + BoundingBoxFormat getBoundingBoxFormat() const noexcept + { + return mImpl->getBoundingBoxFormat(); + } + + //! + //! \brief Set the TopK box limit parameter for the layer. + //! + //! The TopK box limit is the maximum number of filtered boxes considered for selection per batch item. + //! The default value for the TopK box limit parameter is 2000 for SM 5.3 and 6.2 devices, and 5000 otherwise. + //! The TopK box limit must be less than or equal to {2000 for SM 5.3 and 6.2 devices, 5000 otherwise}. + //! + //! \see getTopKBoxLimit() + //! + void setTopKBoxLimit(int32_t limit) noexcept + { + mImpl->setTopKBoxLimit(limit); + } + + //! + //! \brief Get the TopK box limit parameter for the layer. + //! + //! \see setTopKBoxLimit() + //! + int32_t getTopKBoxLimit() const noexcept + { + return mImpl->getTopKBoxLimit(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! The indices are as follows: + //! + //! - 0: The required Boxes tensor. + //! - 1: The required Scores tensor. + //! - 2: The required MaxOutputBoxesPerClass tensor. + //! - 3: The optional IoUThreshold tensor. + //! - 4: The optional ScoreThreshold tensor. + //! + //! If this function is called for an index greater or equal to getNbInputs(), + //! then afterwards getNbInputs() returns index + 1, and any missing intervening + //! inputs are set to null. Note that only optional inputs can be missing. + //! + using ILayer::setInput; + + //! + //! \brief Set the indices type for the layer. + //! + //! \param type The DataType of the indices tensor. + //! + //! \return true if set successfully, false otherwise. + //! + //! Set the indices (the first output) type of the NMS layer. Valid values are DataType::kINT32 and + //! DataType::kINT64, otherwise an error occurs and the type is not updated. + //! + bool setIndicesType(DataType type) noexcept + { + return mImpl->setIndicesType(type); + } + + //! + //! \brief Return the NMS layer indices type. + //! + //! \return indices type set during layer creation or by setIndicesType(). + //! The return value is the indices type of the NMS layer. + //! The default value is DataType::kINT32. + //! + DataType getIndicesType() const noexcept + { + return mImpl->getIndicesType(); + } + +protected: + apiv::VNMSLayer* mImpl; + virtual ~INMSLayer() noexcept = default; +}; // class INMSLayer + +//! +//! \class IReverseSequenceLayer +//! +//! \brief A ReverseSequence layer in a network definition. +//! +//! This layer performs batch-wise reversal, which slices the input tensor along the axis batchAxis. For the +//! i-th slice, the operation reverses the first N elements, specified by the corresponding i-th value in +//! sequenceLens, along sequenceAxis and keeps the remaining elements unchanged. The output tensor will have +//! the same shape as the input tensor. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IReverseSequenceLayer : public ILayer +{ +public: + //! + //! \brief Set the batch axis. Default is 1. + //! + //! batchAxis should be between zero (inclusive) and the rank of input (exclusive), and different from + //! sequenceAxis. Otherwise, ErrorCode::kINVALID_ARGUMENT will be triggered. + //! + //! \see setBatchAxis() + //! + void setBatchAxis(int32_t batchAxis) noexcept + { + mImpl->setBatchAxis(batchAxis); + } + + //! + //! \brief Return the batch axis. Return 1 if no batch axis was set. + //! + //! \see getBatchAxis() + //! + int32_t getBatchAxis() const noexcept + { + return mImpl->getBatchAxis(); + } + + //! + //! \brief Set the sequence axis. Default is 0. + //! + //! sequenceAxis should be between zero (inclusive) and the rank of input (exclusive), and different from + //! batchAxis. Otherwise, ErrorCode::kINVALID_ARGUMENT will be triggered. + //! + //! \see setSequenceAxis() + //! + void setSequenceAxis(int32_t sequenceAxis) noexcept + { + mImpl->setSequenceAxis(sequenceAxis); + } + + //! + //! \brief Return the sequence axis. Return 0 if no sequence axis was set. + //! + //! \see getSequenceAxis() + //! + int32_t getSequenceAxis() const noexcept + { + return mImpl->getSequenceAxis(); + } + +protected: + apiv::VReverseSequenceLayer* mImpl; + virtual ~IReverseSequenceLayer() noexcept = default; +}; // class IReverseSequenceLayer + +//! +//! \class INormalizationLayer +//! +//! \brief A normalization layer in a network definition. +//! +//! The normalization layer performs the following operation: +//! +//! X - input Tensor +//! Y - output Tensor +//! S - scale Tensor +//! B - bias Tensor +//! +//! Y = (X - Mean(X, axes)) / Sqrt(Variance(X) + epsilon) * S + B +//! +//! Where Mean(X, axes) is a reduction over a set of axes, and Variance(X) = Mean((X - Mean(X, axes)) ^ 2, axes). +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class INormalizationLayer : public ILayer +{ +public: + //! + //! \brief Set the epsilon value used for the normalization calculation. + //! + //! The default value of \p eps is 1e-5F. + //! + //! \param eps The epsilon value used for the normalization calculation. + //! + void setEpsilon(float eps) noexcept + { + return mImpl->setEpsilon(eps); + } + + //! + //! \brief Get the epsilon value used for the normalization calculation. + //! + //! \return The epsilon value used for the normalization calculation. + //! + float getEpsilon() const noexcept + { + return mImpl->getEpsilon(); + } + + //! + //! \brief Set the reduction axes for the normalization calculation. + //! + //! \param axesMask The axes used for the normalization calculation. + //! + void setAxes(uint32_t axesMask) noexcept + { + return mImpl->setAxes(axesMask); + } + + //! + //! \brief Get the axes value used for the normalization calculation. + //! + //! \return The axes used for the normalization calculation. + //! + uint32_t getAxes() const noexcept + { + return mImpl->getAxes(); + } + + //! + //! \brief Set the number of groups used to split the channels in the normalization calculation. + //! + //! The input tensor channels are divided into \p nbGroups groups, and normalization is performed per group. + //! The channel dimension is considered to be the second dimension in a [N, C, H, W, ...] formatted tensor. + //! + //! The default \p nbGroups is 1. + //! + //! \warning It is an error to set \p nbGroups to a value that does not evenly divide into the number of channels + //! of the input tensor. + //! + //! \warning When \p nbGroups is != 1, it is expected that the provided axesMask will have all bits corresponding + //! to dimensions after the channel dimension set to 1, with all other bits set to 0. + //! + //! \param nbGroups The number of groups to split the channels into for the normalization calculation. + //! + void setNbGroups(int64_t nbGroups) noexcept + { + return mImpl->setNbGroups(nbGroups); + } + + //! + //! \brief Get the number of groups used to split the channels for the normalization calculation. + //! + //! \return The number of groups used to split the channel used for the normalization calculation. + //! + int64_t getNbGroups() const noexcept + { + return mImpl->getNbGroups(); + } + + //! + //! \brief Set the compute precision of this layer. + //! + //! \param type The datatype used for the compute precision of this layer. + //! + //! The method is used to avoid overflow errors by controlling the normalization computation in + //! mixed precision mode. The compute precision defaults to DataType::kFLOAT32. + //! To override this default, use this method to set the desired compute precision. + //! + //! For a weakly typed network: + //! + //! * Method setOutputType() can still be called to control the output data type. + //! + //! * Method setPrecision() can still be called. The input data is cast to that precision before + //! being cast to the compute precision. + //! + //! Strongly typed network rejects calls to this method since the compute precision is typically + //! controlled by casting the input tensors to the desired type. + //! + //! Only DataType::kFLOAT32 and DataType::kHALF are valid types for \p type. + //! + //! \deprecated Deprecated in TensorRT 10.16. Superseded by strong typing. + //! + TRT_DEPRECATED void setComputePrecision(DataType type) noexcept + { + return mImpl->setComputePrecision(type); + } + + //! + //! \brief Get the compute precision of this layer. + //! + //! \return The datatype used for the compute precision of this layer. + //! + //! \deprecated Deprecated in TensorRT 10.16. Superseded by strong typing. + //! + TRT_DEPRECATED DataType getComputePrecision() const noexcept + { + return mImpl->getComputePrecision(); + } + + //! + //! \brief Returns true if this layer was created through addNormalizationV2(). + //! + //! \return Whether the layer was created through addNormalizationV2(). + //! + TRT_NODISCARD bool isV2() const noexcept + { + return mImpl->isV2(); + } + +protected: + apiv::VNormalizationLayer* mImpl; + virtual ~INormalizationLayer() noexcept = default; +}; + + +//! +//! \class ISqueezeLayer +//! +//! \brief Layer that represents a squeeze operation, removing unit dimensions of the first input tensor +//! on a set of axes specified by the second input tensor. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ISqueezeLayer : public ILayer +{ +public: + //! + //! \brief Append or replace an input of this layer with a specific tensor. + //! + //! \param index The index of the input to modify. + //! \param tensor The new input tensor. + //! + //! For a Squeeze layer, the values 0-1 are valid for index. + //! The indices are as follows: + //! + //! - 0: Input data tensor. + //! - 1: The axes to remove. Must resolve to a constant Int32 or Int64 1D shape tensor. + //! + using ILayer::setInput; + +protected: + apiv::VSqueezeLayer* mImpl; + virtual ~ISqueezeLayer() noexcept = default; +}; + +//! +//! \class IUnsqueezeLayer +//! +//! \brief Layer that represents an unsqueeze operation, which reshapes the first input tensor by inserting unit-length +//! dimensions to the output at the axes specified by the second input tensor. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IUnsqueezeLayer : public ILayer +{ +public: + //! + //! \brief Append or replace an input of this layer with a specific tensor. + //! + //! \param index The index of the input to modify. + //! \param tensor The new input tensor. + //! + //! For an Unsqueeze layer, the values 0-1 are valid for index. + //! The indices are as follows: + //! + //! - 0: Input data tensor. + //! - 1: The output axes at which unit-length dimensions are inserted. Must resolve to a constant Int32 or + //! Int64 1D shape tensor. + //! + using ILayer::setInput; + +protected: + apiv::VUnsqueezeLayer* mImpl; + virtual ~IUnsqueezeLayer() noexcept = default; +}; + +//! +//! \enum CumulativeOperation +//! +//! \brief Enumerates the cumulative operations that may be performed by a Cumulative layer. +//! +//! The table shows the initial value of each Cumulative operation. +//! +//! Operation | kFLOAT, kHALF, kBF16 | kINT32, kINT64 | +//! --------- | -------------------- | -------------- | +//! kSUM | +0.0 | 0 | +//! +enum class CumulativeOperation : int32_t +{ + kSUM = 0, //!< Calculate cumulative sum. +}; + +namespace impl +{ + +//! +//! \brief Maximum number of elements in CumulativeOperation enum. +//! +//! \see CumulativeOperation +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 1; +}; + +} // namespace impl + +//! +//! \class ICumulativeLayer +//! +//! \brief Layer that represents a cumulative operation across a tensor. +//! +//! It computes successive reductions across an axis of a tensor. The output +//! always has the same shape as the input. +//! +//! If the reduction operation is summation, then this is also known as +//! prefix-sum or cumulative sum. +//! +//! The operation has forward vs. reverse variants, and inclusive vs. exclusive variants. +//! +//! For example, let the input be a vector x of length n and the output be vector y. +//! Then y[j] = sum(x[...]) where ... denotes a sequence of indices from this table: +//! +//! | forward | reverse +//! ----------|-----------| --------- +//! inclusive | 0..j | j..n-1 +//! exclusive | 0..j-1 | j+1..n-1 +//! +//! For multidimensional tensors, the reductions apply across a specified axis. For +//! example, given a 2D input, a forward inclusive cumulative operation across axis 0 generates +//! cumulative sums within each column. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ICumulativeLayer : public ILayer +{ +public: + //! + //! \brief Set the cumulative operation for the layer. + //! + //! \param op The reduction operation to be performed + //! + //! \return Whether \p op is valid and the operation successfully set + //! + //! \see getOperation(), CumulativeOperation + //! + bool setOperation(CumulativeOperation op) noexcept + { + return mImpl->setOperation(op); + } + + //! + //! \brief Get the cumulative operation for the layer. + //! + //! \return The reduction operation to be performed + //! + //! \see setOperation(), CumulativeOperation + //! + CumulativeOperation getOperation() const noexcept + { + return mImpl->getOperation(); + } + + //! + //! \brief Set whether it is an exclusive accumulation or inclusive accumulation. + //! + //! \param exclusive Whether the operation will exclude the element at the current index + //! + //! \see getExclusive + //! + void setExclusive(bool exclusive) noexcept + { + mImpl->setExclusive(exclusive); + } + + //! + //! \brief Get whether it is exclusive accumulation or inclusive accumulation. + //! + //! \return Whether the operation will exclude the element at the current index + //! + //! \see setExclusive + //! + bool getExclusive() const noexcept + { + return mImpl->getExclusive(); + } + + //! + //! \brief Specify whether the cumulative operation should be applied backward. + //! + //! \param reverse Whether the cumulative will run in the reverse direction from the last element + //! + //! \see getReverse + //! + void setReverse(bool reverse) noexcept + { + mImpl->setReverse(reverse); + } + + //! + //! \brief Get the boolean that specifies whether the cumulative operation should be applied backward. + //! + //! \return Whether the cumulative will run in the reverse direction from the last element + //! + //! \see setReverse + //! + bool getReverse() const noexcept + { + return mImpl->getReverse(); + } + +protected: + apiv::VCumulativeLayer* mImpl; + virtual ~ICumulativeLayer() noexcept = default; +}; + +//! +//! \enum AttentionNormalizationOp +//! +//! \brief Enumerates the operations that may be performed by the normalization in the attention subgraph. +//! +enum class AttentionNormalizationOp : int32_t +{ + kNONE + = 0, //!< Apply no normalization on the attention scores. Must be used with decomposable=True on pre-Blackwell GPUs + kSOFTMAX = 1, //!< Apply softmax normalization on the attention scores on the `s_kv` dimension. +}; + +namespace impl +{ +//! +//! Maximum number of elements in AttentionNormalizationOp enum. +//! +//! \see AttentionNormalizationOp +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 2; +}; + +} // namespace impl + +//! +//! \class IAttentionBoundaryLayer +//! +//! \brief This is a base class for Attention boundary layers. +//! +//! Boundary layers are used to demarcate the boundaries of IAttention. +//! Typically client code does not deal directly with the boundary layers. +//! However, they are indirectly visible via method `INetworkDefinition::getLayer(int32_t index)`. +//! +class IAttentionBoundaryLayer : public ILayer +{ +public: + //! + //! \brief Get a pointer to the IAttention associated with this boundary layer. + //! + IAttention* getAttention() const noexcept + { + return mBoundary->getAttention(); + } + +protected: + virtual ~IAttentionBoundaryLayer() noexcept = default; + apiv::VAttentionBoundaryLayer* mBoundary; +}; + +//! +//! \class IAttentionInputLayer +//! +//! \brief This layer represents an input to an attention subgraph. +//! +//! This layer is automatically created when an `IAttention` is created. Clients typically do not +//! deal with the layer directly, but instead specify its input via `addAttention` or `IAttention::setInput`. +//! +//! An IAttentionInputLayer has three to four inputs and one output. +//! +class IAttentionInputLayer : public IAttentionBoundaryLayer +{ +public: + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! The indices are as follows: + //! + //! Input 0 is the input query tensor. + //! Input 1 is the input key tensor. + //! Input 2 is the input value tensor. + //! Input 3 is the optional mask tensor. setMask should be used instead of setInput + //! Input 4 is the optional normalizationQuantizeScale tensor. setNormalizationQuantizeScale should be used instead + //! of setInput + //! + using ILayer::setInput; + +protected: + virtual ~IAttentionInputLayer() noexcept = default; + apiv::VAttentionInputLayer* mImpl; +}; + +//! +//! \class IAttentionOutputLayer +//! +//! \brief This layer represents an output of an IAttention. +//! +//! This layer is automatically created when an `IAttention` is created. Clients typically do not +//! deal with the layer directly, but instead getting its output via `IAttention::getOutput`. +//! +//! An IAttentionOutputLayer has one input and one output. +//! +class IAttentionOutputLayer : public IAttentionBoundaryLayer +{ +public: +protected: + virtual ~IAttentionOutputLayer() noexcept = default; + apiv::VAttentionOutputLayer* mImpl; +}; + +//! +//! \class IAttention +//! +//! \brief Helper for constructing an attention that consumes query, key and value tensors. +//! +//! An attention subgraph implicitly includes three main components, two MatrixMultiply layers +//! known as BMM1 and BMM2, and one normalization operation which defaults to be a Softmax. +//! By default, IAttention is not decomposable and TensorRT will try to use a single fused kernel, which may be more +//! efficient than if the subgraph is expressed without IAttention. Setting the IAttention to decomposable=True can +//! allow IAttention to be decomposed to use multiple kernels if no fused kernel support found. +//! +//! Query Key Value Mask (optional) NormalizationQuantizeScale (optional) +//! | | | | | +//! | Transpose | | | +//! | | | | | +//! ----BMM1---- | | | +//! | | | | +//! *--------------------------- | +//! | | | +//! Normalization | | +//! | | | +//! *------------------------------------------------ +//! | | +//! -------BMM2------ +//! | +//! Output +//! +//! The attention has the following inputs, in order of input index: +//! +//! * Query contains the input query. It is a tensor of type kFLOAT, kHALF or kBF16 with +//! shape [batchSize, numHeadsQuery, sequenceLengthQuery, dimHead] +//! * Key contains the input key. It is a tensor of type kFLOAT, kHALF or kBF16 with +//! shape [batchSize, numHeadsKeyValue, sequenceLengthKeyValue, dimHead] +//! * Value contains the input value. It is a tensor of type kFLOAT, kHALF or kBF16 with +//! shape [batchSize, numHeadsKeyValue, sequenceLengthKeyValue, dimHead] +//! * Mask (optional) contains the mask value. It is a tensor of type kBOOL or the same data type of +//! BMM1 output with shape [batchSize, numHeadsQuery, sequenceLengthQuery, sequenceLengthKeyValue] +//! with batchSize and numHeadsQuery broadcastable. For a kBOOL mask, a True value indicates that the corresponding +//! position is allowed to attend. For other data types, the mask values will be added to the BMM1 output, known +//! as an add mask. +//! * NormalizationQuantizeScale (optional) contains the quantization scale for the attention normalization output. +//! It is a tensor of type kFLOAT, kHALF or kBF16 with dimension 0 or 1. +//! +//! \see +//! https://docs.nvidia.com/deeplearning/tensorrt/latest/inference-library/work-with-transformers.html#multi-head-attention-fusion +//! for the complete matrix of fused kernel support. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IAttention : public INoCopy +{ +public: + //! + //! \brief Set the normalization operation for the attention. + //! + //! \see getNormalizationOperation(), AttentionNormalizationOp + //! + //! \return True if the normalization operation is set successfully, false otherwise. + //! + bool setNormalizationOperation(AttentionNormalizationOp op) noexcept + { + return mImpl->setNormalizationOperation(op); + } + + //! + //! \brief Get the normalization operation for the attention. + //! + //! \see setNormalizationOperation(), AttentionNormalizationOp + //! + //! \return The normalization operation for the attention. Default is kSOFTMAX. + //! + AttentionNormalizationOp getNormalizationOperation() const noexcept + { + return mImpl->getNormalizationOperation(); + } + + //! + //! \brief Set whether a mask will be used for the normalization operation. + //! + //! \param mask the mask tensor of type kBOOL or the same data type of BMM1 output with 4d shape broadcastable to + //! [batchSize, numHeadsQuery, sequenceLengthQuery, sequenceLengthKeyValue]. For a kBOOL mask, a True value + //! indicates that the corresponding position is allowed to attend. For other data types, the mask values will be + //! added to the BMM1 output, known as an add mask. + //! + //! \see getMask + //! + //! \return True if the mask is set successfully, false otherwise. + //! + bool setMask(ITensor& mask) noexcept + { + return mImpl->setMask(mask); + } + + //! + //! \brief Get the optional mask in attention. + //! + //! \see setMask + //! + //! \return The optional mask in attention, nullptr if no mask is set. + //! + ITensor* getMask() noexcept + { + return mImpl->getMask(); + } + + //! + //! \brief Set whether the attention will run a causal inference. + //! Cannot be used together with setMask(). + //! + //! \see getCausal + //! + //! \return True if the causal inference is set successfully, false otherwise. + //! + bool setCausal(bool isCausal) noexcept + { + return mImpl->setCausal(isCausal); + } + + //! + //! \brief Get whether the attention will run a causal inference. + //! + //! \see setCausal + //! + //! \return True if the attention will run a causal inference, false otherwise. Default is false. + //! + bool getCausal() const noexcept + { + return mImpl->getCausal(); + } + + //! + //! \brief Set whether the attention can be decomposed to use multiple kernels if no fused kernel support found. + //! + //! \see getDecomposable + //! + //! \return True if the decomposable attention is set successfully, false otherwise. + //! + bool setDecomposable(bool decomposable) noexcept + { + return mImpl->setDecomposable(decomposable); + } + + //! + //! \brief Get whether the attention can be decomposed to use multiple kernels if no fused kernel support found. + //! + //! \return True if the attention can be decomposed to use multiple kernels by the compiler, + //! false otherwise. Default is false. + //! + //! \see setDecomposable + //! + bool getDecomposable() const noexcept + { + return mImpl->getDecomposable(); + } + + //! + //! \brief Append or replace an input of this layer with a specific tensor. + //! + //! \param index the index of the input to modify. + //! \param input the new input tensor. + //! + //! The indices are as follows: + //! + //! Input 0 is the input query tensor. + //! Input 1 is the input key tensor. + //! Input 2 is the input value tensor. + //! + //! \return True if the input tensor is set successfully, false otherwise. + //! + bool setInput(int32_t index, ITensor& input) noexcept + { + return mImpl->setInput(index, input); + } + + //! + //! \brief Get the number of inputs of IAttention. IAttention has three inputs. + //! + //! \return The number of inputs of IAttention. + int32_t getNbInputs() const noexcept + { + return mImpl->getNbInputs(); + } + + //! + //! \brief Get the IAttention input corresponding to the given index. + //! + //! \param index The index of the input tensor. + //! + //! \return The input tensor, or nullptr if the index is out of range. + //! + ITensor* getInput(int32_t index) const noexcept + { + return mImpl->getInput(index); + } + + //! + //! \brief Get the number of outputs of a layer. IAttention has one output. + //! + int32_t getNbOutputs() const noexcept + { + return mImpl->getNbOutputs(); + } + + //! + //! \brief Get the IAttention output corresponding to the given index. IAttention has only one output. + //! + //! \param index The index of the output tensor. + //! + //! \return The indexed output tensor, or nullptr if the index is out of range. + //! + ITensor* getOutput(int32_t index) const noexcept + { + return mImpl->getOutput(index); + } + + //! + //! \brief Set the name of the attention. + //! + //! The name is used in error diagnostics. + //! This method copies the name string. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getName() + //! + //! \return True if the name is set successfully, false otherwise. + //! + bool setName(char const* name) noexcept + { + return mImpl->setName(name); + } + + //! + //! \brief Return the name of the attention. + //! + //! \see setName() + //! + //! \return The name of the attention. + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + + //! + //! \brief Set the quantization scale for the attention normalization output. + //! + //! \param tensor for quantization scale. Data type must be DataType::kFLOAT, DataType::kHALF or DataType::kBF16. + //! Must be a 0-d or 1-d. + //! + //! \return True if the quantization scale is set successfully, false otherwise. + //! + //! \warning Must be used together with setNormalizationQuantizeToType to set normalization output datatype to + //! DataType::kFP8 or DataType::kINT8. + //! + bool setNormalizationQuantizeScale(ITensor& tensor) noexcept + { + return mImpl->setNormalizationQuantizeScale(tensor); + } + + //! + //! \brief Get the quantization scale for the attention normalization output. + //! + //! \return The quantization scale for the attention normalization output or nullptr if no quantization scale is + //! set. + //! + ITensor* getNormalizationQuantizeScale() const noexcept + { + return mImpl->getNormalizationQuantizeScale(); + } + + //! + //! \brief Set the datatype the attention normalization is quantized to. + //! + //! \param type the datatype the attention normalization is quantized to. Must be one of DataType::kFP8, + //! DataType::kINT8. + //! + //! \return True if the quantization to type is set successfully, false otherwise. + //! + bool setNormalizationQuantizeToType(DataType type) noexcept + { + return mImpl->setNormalizationQuantizeToType(type); + } + + //! + //! \brief Get the datatype the attention normalization is quantized to. + //! + //! \return The datatype the attention normalization is quantized to. + //! The default value is DataType::kFLOAT. + //! + //! \warning Must be used after normalization quantization to type is set by setNormalizationQuantizeToType. + DataType getNormalizationQuantizeToType() const noexcept + { + return mImpl->getNormalizationQuantizeToType(); + } + + //! + //! \brief Set the metadata for IAttention. + //! + //! The metadata is emitted in the JSON returned by IEngineInspector with + //! ProfilingVerbosity set to kDETAILED. + //! + //! \param metadata The per-layer metadata. + //! + //! \warning The string name must be null-terminated and be at most 4096 bytes including the terminator. + //! + //! \see getMetadata() + //! \see getLayerInformation() + //! + //! \return True if the metadata is set successfully, false otherwise. + //! + bool setMetadata(char const* metadata) noexcept + { + return mImpl->setMetadata(metadata); + } + + //! + //! \brief Get the metadata of IAttention. + //! + //! \return The metadata as a null-terminated C-style string. If setMetadata() has not been called, + //! an empty string "" will be returned as a default value. + //! + //! \see setMetadata() + //! + char const* getMetadata() const noexcept + { + return mImpl->getMetadata(); + } + + //! + //! \brief Set the number of ranks for multi-device attention execution. + //! + //! When nbRanks > 1, this hints attention to perform multi-device attention. + //! + //! \param nbRanks The number of ranks. Must be >= 1. + //! + //! \return True if successful, false otherwise. + //! + //! \see getNbRanks() + //! + bool setNbRanks(int32_t nbRanks) noexcept + { + return mImpl->setNbRanks(nbRanks); + } + + //! + //! \brief Get the number of ranks for multi-device execution. + //! + //! \return The number of ranks configured for multi-device attention. Default is 1. + //! + //! \see setNbRanks() + //! + int32_t getNbRanks() const noexcept + { + return mImpl->getNbRanks(); + } + +protected: + apiv::VAttention* mImpl; + virtual ~IAttention() noexcept = default; +}; + +//! \class IRotaryEmbeddingLayer +//! +//! \brief Layer that implements Rotary Position Embedding (RoPE) (https://arxiv.org/abs/2104.09864). +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IRotaryEmbeddingLayer : public ILayer +{ +public: + //! + //! \brief Set whether the input is in interleaved format, i.e., whether the 2-d vectors rotated are taken from adjacent 2 elements in the hidden dimension. The default value is false. + //! + //! \see getInterleaved + //! + void setInterleaved(bool interleaved) noexcept + { + mImpl->setInterleaved(interleaved); + } + + + //! + //! \brief Get whether the input is in interleaved format. The default value is false. + //! + //! \see setInterleaved + //! + TRT_NODISCARD bool getInterleaved() const noexcept + { + return mImpl->getInterleaved(); + } + + + //! + //! \brief Set the number of hidden dimensions participating in RoPE. The default value is 0, representing H, i.e., all hidden dimensions in each head. Must be non-negative and even. + //! + //! \see getRotaryEmbeddingDim + //! + TRT_NODISCARD bool setRotaryEmbeddingDim(int32_t rotaryEmbeddingDim) noexcept + { + return mImpl->setRotaryEmbeddingDim(rotaryEmbeddingDim); + } + + + //! + //! \brief Get the number of hidden dimensions participating in RoPE. The default value is 0, representing H, i.e., all hidden dimensions in each head. + //! + //! \see setRotaryEmbeddingDim + //! + TRT_NODISCARD int32_t getRotaryEmbeddingDim() const noexcept + { + return mImpl->getRotaryEmbeddingDim(); + } + + + //! + //! \brief Append or replace an input of this layer with a specific tensor + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! The indices are as follows: + //! + //! Input 0 is the input activation tensor. + //! Input 1 is the cosine cache tensor. + //! Input 2 is the sine cache tensor. + //! Input 3 (optional) is the positionIds tensor, which is used for indexing into the cosine and sine caches. + //! + using ILayer::setInput; + + +protected: + apiv::VRotaryEmbeddingLayer* mImpl; + virtual ~IRotaryEmbeddingLayer() noexcept = default; +}; + +//! +//! \enum KVCacheMode +//! +//! \brief Enumerates the KVCache modes that may be performed by a KVCacheUpdate layer. +//! +enum class KVCacheMode : int32_t +{ + kLINEAR = 0, //!< Linear mode. +}; + +namespace impl +{ +//! +//! Maximum number of elements in KVCacheMode enum. +//! +//! \see KVCacheMode +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 1; +}; + +} // namespace impl + +//! \class IKVCacheUpdateLayer +//! +//! \brief Layer that represents a KVCacheUpdate operation. +//! +//! The KVCacheUpdate layer is used to cache the key or value tensors for the attention mechanism. +//! K and V use separate KVCacheUpdate layers. +//! +//! An IKVCacheUpdateLayer has three inputs (`cache`, `update`, `writeIndices`) and one output. +//! In `kLINEAR` mode, for each batch element i, the layer copies the update tensor into the cache starting at +//! position `writeIndices[i]`. Assuming no out-of-bounds writes occur, the operation for each sequence position +//! s in [0, sequenceLength) is: +//! \code +//! output[i, :, writeIndices[i] + s, :] = update[i, :, s, :] +//! \endcode +//! +//! The output performs in-place updates on the cache tensor, so they must share the same device memory address. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IKVCacheUpdateLayer : public ILayer +{ +public: + //! + //! \brief Append or replace an input of this layer with a specific tensor. + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor. + //! + //! The indices are as follows: + //! + //! Input 0 is the input cache tensor. + //! Input 1 is the input update tensor. + //! Input 2 is the input writeIndices tensor. + //! + using ILayer::setInput; + + //! + //! \brief Set the mode of the KVCacheUpdate layer. + //! + //! \param cacheMode The mode of the KVCacheUpdate layer. For TensorRT 10.15, only `kLINEAR` mode is supported. + //! + //! \return True if cache mode is set successfully, false otherwise. + //! + bool setCacheMode(KVCacheMode cacheMode) noexcept + { + return mImpl->setCacheMode(cacheMode); + } + + //! + //! \brief Get the mode of the KVCacheUpdate layer. + //! + //! \return The mode of the KVCacheUpdate layer. + //! + KVCacheMode getCacheMode() const noexcept + { + return mImpl->getCacheMode(); + } + +protected: + apiv::VKVCacheUpdateLayer* mImpl; + virtual ~IKVCacheUpdateLayer() noexcept = default; +}; + +//! +//! \enum MoEActType +//! +//! \brief Enumerates the activation type for the MoE layer. +//! +enum class MoEActType : int32_t +{ + kNONE = 0, + kSILU = 1, +}; + +namespace impl +{ + +//! +//! Maximum number of elements in MoEActType enum. +//! +//! \see MoEActType +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 2; +}; + +} // namespace impl + +//! โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” +//! โ”‚ hiddenStates โ”‚โ”‚selectedExpertsForTokensโ”‚โ”‚scoresForSelectedExpertsโ”‚ +//! โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +//! โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ +//! โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” +//! โ”‚ โ”‚ +//! โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ +//! โ”‚ โ”‚ โ”‚ Expert 0 โ”‚ โ”‚ MOE โ”‚ โ”‚ Expert i โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ fcGate โ”‚ โ”‚ fcUp โ”‚โ”‚ โ”‚ โ”‚ fcGate โ”‚ โ”‚ fcUp โ”‚โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚โ”‚ โ”‚ +//! โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”˜โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”˜โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚activationโ”‚ โ”‚ โ”‚ โ”‚ โ”‚activationโ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ ....... โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ mul โ”‚ โ”‚ โ”‚ โ”‚ mul โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ fcDown โ”‚ โ”‚ โ”‚ โ”‚ fcDown โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ” โ”‚ โ”‚ +//! โ”‚ โ”‚ โ”‚output 0โ”‚ โ”‚ โ”‚ โ”‚output iโ”‚ โ”‚ โ”‚ +//! โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ””โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”˜ โ”‚ โ”‚ +//! โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ +//! โ”‚ โ”‚ โ”‚ โ”‚ +//! โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ +//! โ”‚ โ”‚ โ”‚ +//! โ”‚ โ–ผ โ”‚ +//! โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ +//! โ”‚ โ”‚ weightedSum โ”‚ โ”‚ +//! โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ +//! โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”‚โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +//! โ–ผ +//! โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” +//! โ”‚ moeOutput โ”‚ +//! โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ +//! \class IMoELayer +//! +//! \brief A MoE layer in a network definition. +//! Mixture of Experts (MoE) is a collection of experts with each expert specializing in processing different subsets of input data. +//! The key innovation lies in using a Router that selectively activates only the specific experts needed for a given input, rather than engaging the entire neural network for every task. +//! +//! Definition in the MoE layer: +//! \p fcDown, \p fcGate, \p fcUp are three linear layers. +//! fc(x) = x * w + b, where x is the input, w is the weight, b is the bias, * is the matrix multiplication. +//! \p activation is the activation function. +//! \p mul is the multiplication between the output of fc_up and the output of fc_gate. +//! \p weightedSum is the weighted sum of the output of the experts. +//! \p moeOutput is the output of the MoE layer. +//! +//! MoE is a collection of experts. +//! Each expert is a GLU (gated linear unit), which consists by \p fcGate, \p fcUp, \p fcDown, \p activation, \p mul. +//! +//! Definitions and Abbreviations: +//! \p batchSize: batch size +//! \p seqLen: sequence length +//! \p hiddenSize: the size of the hidden states +//! \p numExperts: the number of experts in the MoE layer +//! \p moeInterSize: the intermediate size of the MoE layer +//! \p topK: the number of experts to select for each token +//! +//! This layer takes several activation inputs: +//! 1. \p hiddenStates: the hidden states of the layer, with shape [batchSize, seqLen, hiddenSize] +//! 2. \p selectedExpertsForTokens: the top K experts selected for each token, with shape [batchSize, seqLen, topK] +//! 3. \p scoresForSelectedExperts: the scales for the selected experts per token, with shape [batchSize, seqLen, topK] +//! The MoE will take the selected experts and the corresponding scales for the selected experts to compute the output. +//! +//! The weights in the MoE layer: +//! 1. \p fcGateWeights with shape [numExperts, hiddenSize, moeInterSize]: the weight matrix for fcGate +//! 2. \p fcUpWeights with shape [numExperts, hiddenSize, moeInterSize]: the weight matrix for fcUp +//! 3. \p fcDownWeights with shape [numExperts, moeInterSize, hiddenSize]: the weight matrix for fcDown +//! +//! Several optional inputs are supported: +//! 1. \p fcGateBias: the bias for the fcGate, with shape [numExperts, moeInterSize] +//! 2. \p fcUpBias: the bias for the fcUp, with shape [numExperts, moeInterSize] +//! 3. \p fcDownBias: the bias for the fcDown, with shape [numExperts, hiddenSize] +//! All the bias are none by default. You must either set all the bias or none of them. +//! +//! 4. \p activation: the activation type for the MoE layer, currently only support SILU. +//! +//! MoE computation process description: +//! For each token, the MoE layer computation process is as follows: +//! +//! 1. Input processing: +//! - Receive \p hiddenStates: +//! - Receive \p selectedExpertsForTokens: +//! - Receive \p scoresForSelectedExperts: +//! +//! 2. Expert computation for each token: +//! - output_i = fcDown(fcUp(hiddenStates) * activation(fcGate(hiddenStates))) +//! +//! 3. Expert output aggregation: +//! For each token, firstly select all the experts that need to be activated to do the computation. +//! - calculate the selected expert's output according to expert id in \p selectedExpertsForTokens for each token +//! - Weighted sum of each expert's output according to weights in \p scoresForSelectedExperts for each token +//! - Final output for the token: moeOutput = ฮฃ(score_i * output_i) +//! The output of MoE has the same shape as the input \p hiddenStates. +//! +//! \warning MoE is only supported on Thor. And performance is limited when seqLen > 16. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IMoELayer : public ILayer +{ +public: + //! + //! \brief Set the weights of the experts when each expert is a GLU (gated linear unit). In each GLU, there are 3 linear layers and 1 activation function, so this function requires 3 weight tensors and 1 activation type. + //! + //! \param fcGateWeights The weights for the gate-projection layer of all experts in MoE. Shape: [numExperts, hiddenSize, moeInterSize]. + //! \param fcUpWeights The weights for the up-projection layer of all experts in MoE. Shape: [numExperts, hiddenSize, moeInterSize]. + //! \param fcDownWeights The weights for the down-projection layer of all experts in MoE. Shape: [numExperts, moeInterSize, hiddenSize]. + //! \param activationType The activation function to use for the MoE layer. Currently only kSILU is supported. + //! + //! \see setActivationType() + //! \see getActivationType() + //! + void setGatedWeights(ITensor& fcGateWeights, ITensor& fcUpWeights, ITensor& fcDownWeights, MoEActType activationType) noexcept + { + mImpl->setGatedWeights(fcGateWeights, fcUpWeights, fcDownWeights, activationType); + } + + //! + //! \brief Set the biases of the experts when each expert is a GLU (gated linear unit). In each GLU, there are 3 linear layers, so this function requires 3 bias tensors. + //! + //! \param fcGateBiases The biases for the gate-projection layer of all experts in MoE. Shape: [numExperts, moeInterSize]. + //! \param fcUpBiases The biases for the up-projection layer of all experts in MoE. Shape: [numExperts, moeInterSize]. + //! \param fcDownBiases The biases for the down-projection layer of all experts in MoE. Shape: [numExperts, hiddenSize]. + //! + void setGatedBiases(ITensor& fcGateBiases, ITensor& fcUpBiases, ITensor& fcDownBiases) noexcept + { + mImpl->setGatedBiases(fcGateBiases, fcUpBiases, fcDownBiases); + } + + //! + //! \brief Set the activation type for the MoE layer. + //! + //! \param activationType: the activation type for the MoE layer. + //! + //! \see getActivationType() + //! + void setActivationType(MoEActType activationType) noexcept + { + mImpl->setActivationType(activationType); + } + + //! + //! \brief Get the activation type for the MoE layer. + //! + //! \see setActivationType() + //! + //! \return the activation type for the MoE layer. + //! + MoEActType getActivationType() const noexcept + { + return mImpl->getActivationType(); + } + + //! + //! \brief Configure static quantization after the mul op. + //! โ”Œโ”€โ”€ fcGate โ”€โ”€ activation โ”€โ”€โ”€โ” + //! โ”‚ โ”‚ + //! hiddenStates โ”€โ”€โ”€โ”ค โ”œโ”€โ”€ mul โ”€โ”€ {Q โ”€โ”€ DQ} โ”€โ”€ fcDown โ”€โ”€ output + //! โ”‚ โ”‚ + //! โ””โ”€โ”€ fcUp โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + //! When using mul output static quantization, the user must provide: + //! \param fcDownActivationScale: the scale tensor. + //! \param dataType: the type that the activation is quantized to. + //! In addition, the user should also insert Q/DQ before the hiddenStates input of the MoE layer. The quantization method must be the same as the quantization method here. + //! + //! If setQuantizationDynamicDblQ is called, then previous calls to this function are overridden. + //! If setQuantizationToType is called, previous parameters set by this function are overridden. + //! + //! \see setQuantizationToType() + //! \see getQuantizationToType() + //! + void setQuantizationStatic(ITensor& fcDownActivationScale, DataType dataType) noexcept + { + mImpl->setQuantizationStatic(fcDownActivationScale, dataType); + } + + //! + //! \brief Configure dynamic quantization (with double quantization) after the mul op. + //! โ”Œโ”€โ”€ fcGate โ”€โ”€ activation โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€ DQ + //! โ”‚ โ”‚ โ”‚ โ”‚ + //! hiddenStates โ”€โ”€โ”€โ”ค โ”œโ”€โ”€ mul โ”€โ”€ {DynQ โ”€โ”€ DQ} โ”€โ”€ fcDown โ”€โ”€ output + //! โ”‚ โ”‚ + //! โ””โ”€โ”€ fcUp โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + //! When using mul output dynamic quantization (with double quantization), the user must provide: + //! \param fcDownActivationDblQScale: the double quantization scale tensor. + //! \param dataType: the type that the activation is quantized to. + //! \param blockShape: the blockShape used in quantization. + //! \param dynQOutputScaleType: the data type of the scale tensor. + //! In addition, the user should also insert DynQ/DQ/DQ before the hiddenStates input of the MoE layer. The quantization method must be the same as the quantization method here. + //! + //! If setQuantizationStatic is called, then previous calls to this function are overridden. + //! If setQuantizationToType, setQuantizationBlockShape or setDynQOutputScaleType is called, previous parameters set by this function are overridden. + //! + //! \see setQuantizationToType() + //! \see getQuantizationToType() + //! \see setQuantizationBlockShape() + //! \see getQuantizationBlockShape() + //! \see setDynQOutputScaleType() + //! \see getDynQOutputScaleType() + //! + void setQuantizationDynamicDblQ(ITensor& fcDownActivationDblQScale, DataType dataType, Dims const& blockShape, DataType dynQOutputScaleType) noexcept + { + mImpl->setQuantizationDynamicDblQ(fcDownActivationDblQScale, dataType, blockShape, dynQOutputScaleType); + } + + //! + //! \brief Set the data type the mul output is quantized to. + //! + //! \param type: the data type the mul output is quantized to. + //! The type must be one of DataType::kFP8, DataType::kFP4. + //! + //! Default: \p DataType::kFLOAT which means the MoE layer is not quantized. + //! + //! \see getQuantizationToType() + //! + void setQuantizationToType(DataType type) noexcept + { + mImpl->setQuantizationToType(type); + } + + //! + //! \brief Get the data type the mul in MoE layer is quantized to. + //! + //! \see setQuantizationToType() + //! + //! \return the data type the mul in MoE layer is quantized to. + //! + DataType getQuantizationToType() const noexcept + { + return mImpl->getQuantizationToType(); + } + + //! + //! \brief Set the block shape for the quantization of the Mul output. + //! + //! \param blockShape: the block shape for the quantization of the Mul output. + //! + //! The shape must have rank 3 and the dimensions representing block sizes for Mul output dimensions (batchSize, seqLen, moeInterSize) respectively. + //! For example, a shape of [1, 1, 16] means block quantization on the last (moeInterSize) axis. + //! -1 means a fully blocked dimension. + //! + //! \see getQuantizationBlockShape() + //! + void setQuantizationBlockShape(Dims const& blockShape) noexcept + { + mImpl->setQuantizationBlockShape(blockShape); + } + + //! + //! \brief Get the block shape for the quantization of the Mul output. + //! + //! \see setQuantizationBlockShape() + //! + //! \return the block shape for the quantization of the Mul output. + //! + Dims getQuantizationBlockShape() const noexcept + { + return mImpl->getQuantizationBlockShape(); + } + + //! + //! \brief Set the dynamic quantization output scale type. + //! + //! \param type: the dynamic quantization output scale type. + //! + //! \see getDynQOutputScaleType() + //! + void setDynQOutputScaleType(DataType type) noexcept + { + mImpl->setDynQOutputScaleType(type); + } + + //! + //! \brief Get the dynamic quantization output scale type. + //! + //! \see setDynQOutputScaleType() + //! + //! \return the dynamic quantization output scale type. + //! + DataType getDynQOutputScaleType() const noexcept + { + return mImpl->getDynQOutputScaleType(); + } + + //! + //! \brief Set the SwiGLU parameters. + //! + //! \param limit the SwiGLU parameter limit. + //! \param alpha the SwiGLU parameter alpha. + //! \param beta the SwiGLU parameter beta. + //! + //! Default: +inf, 1.0, 0.0 + //! + //! \see setSwigluParamLimit() + //! \see getSwigluParamLimit() + //! \see setSwigluParamAlpha() + //! \see getSwigluParamAlpha() + //! \see setSwigluParamBeta() + //! \see getSwigluParamBeta() + //! + void setSwigluParams(float limit, float alpha, float beta) noexcept + { + mImpl->setSwigluParams(limit, alpha, beta); + } + + //! + //! \brief Set the SwiGLU parameter limit. + //! + //! \param limit the SwiGLU parameter limit. + //! + //! Default: +inf + //! + //! \see getSwigluParamLimit() + //! + void setSwigluParamLimit(float limit) noexcept + { + mImpl->setSwigluParamLimit(limit); + } + + //! + //! \brief Get the SwiGLU parameter limit. + //! + //! \see setSwigluParamLimit() + //! + //! \return the SwiGLU parameter limit. + //! + float getSwigluParamLimit() const noexcept + { + return mImpl->getSwigluParamLimit(); + } + + //! + //! \brief Set the SwiGLU parameter alpha. + //! + //! \param alpha the SwiGLU parameter alpha. + //! + //! Default: 1.0 + //! + //! \see getSwigluParamAlpha() + //! + void setSwigluParamAlpha(float alpha) noexcept + { + mImpl->setSwigluParamAlpha(alpha); + } + + //! + //! \brief Get the SwiGLU parameter alpha. + //! + //! \see setSwigluParamAlpha() + //! + //! \return the SwiGLU parameter alpha. + //! + float getSwigluParamAlpha() const noexcept + { + return mImpl->getSwigluParamAlpha(); + } + + //! + //! \brief Set the SwiGLU parameter beta. + //! + //! \param beta the SwiGLU parameter beta. + //! + //! Default: 0.0 + //! + //! \see getSwigluParamBeta() + //! + void setSwigluParamBeta(float beta) noexcept + { + mImpl->setSwigluParamBeta(beta); + } + + //! + //! \brief Get the SwiGLU parameter beta. + //! + //! \see setSwigluParamBeta() + //! + //! \return the SwiGLU parameter beta. + //! + float getSwigluParamBeta() const noexcept + { + return mImpl->getSwigluParamBeta(); + } + + //! + //! \brief Set the input of the MoE layer. + //! + //! \param index the index of the input to modify. + //! \param tensor the new input tensor + //! + //! The indices are as follows: + //! + //! Input 0: hiddenStates: the input activations, with shape [batchSize, seqLen, hiddenSize] + //! Input 1: selectedExpertsForTokens: the selected experts for tokens, with shape [batchSize, seqLen, topK] + //! Input 2: scoresForSelectedExperts: the scores for selected experts, with shape [batchSize, seqLen, topK] + //! + void setInput(int32_t index, ITensor& tensor) noexcept + { + mImpl->setInput(index, tensor); + } + + using ILayer::setInput; + +protected: + virtual ~IMoELayer() noexcept = default; + apiv::VMoELayer* mImpl; +}; + +//! +//! \class IDistCollectiveLayer +//! +//! Implements a distributed collective operation. +//! +//! See \ref INetworkDefinition::addDistCollective for more details. +//! +class IDistCollectiveLayer : public ILayer +{ +protected: + virtual ~IDistCollectiveLayer() noexcept = default; + apiv::VDistCollectiveLayer* mImpl; +}; // class IDistCollectiveLayer + +//! +//! \class INetworkDefinition +//! +//! \brief A network definition for input to the builder. +//! +//! A network definition defines the structure of the network, and combined with a IBuilderConfig, is built +//! into an engine using an IBuilder. An INetworkDefinition can have all dimensions explicit, full dims mode, in the +//! network definition. The former mode, i.e. the implicit batch size mode, has been deprecated. +//! +//! A network with implicit batch dimensions returns the dimensions of a layer without the implicit dimension, +//! and instead the batch is specified at execute/enqueue time. If the network has all dimensions specified, then +//! the first dimension follows elementwise broadcast rules: if it is 1 for some inputs and is some value N for all +//! other inputs, then the first dimension of each output is N, and the inputs with 1 for the first dimension are +//! broadcast. Having divergent batch sizes across inputs to a layer is not supported. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class INetworkDefinition : public INoCopy +{ +public: + virtual ~INetworkDefinition() noexcept = default; + + //! + //! \brief Add an input tensor to the network. + //! + //! Each input and output tensor must have a unique name. + //! + //! For networks with wildcard dimensions, the volume + //! is based on the maxima specified by an IOptimizationProfile.Dimensions are normally non-negative integers. The + //! exception is that in networks with all explicit dimensions, -1 can be used as a wildcard for a dimension to + //! be specified at runtime. Input tensors with such a wildcard must have a corresponding entry in the + //! IOptimizationProfiles indicating the permitted extrema, and the input dimensions must be set by + //! IExecutionContext::setInputShape. Different IExecutionContext instances can have different dimensions. + //! Wildcard dimensions are only supported for EngineCapability::kSTANDARD. They are not + //! supported in safety contexts. DLA does not support Wildcard dimensions. + //! + //! Tensor dimensions are specified independent of format. For example, if a + //! tensor is formatted in "NHWC" or a vectorized format, the dimensions are + //! still specified in the order{N, C, H, W}. For 2D images with a channel + //! dimension, the last three dimensions are always {C,H,W}. For 3D images + //! with a channel dimension, the last four dimensions are always {C,D,H,W}. + //! + //! \param name The name of the tensor. + //! \param type The type of the data held in the tensor. + //! \param dimensions The dimensions of the tensor. + //! + //! \warning It is an error to specify a wildcard value on a dimension that is determined by trained parameters. + //! + //! \warning If run on DLA with explicit dimensions, only leading dimension can be a wildcard. And provided profile + //! must have same minimum, optimum, and maximum dimensions. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see ITensor + //! + //! \return The new tensor or nullptr if there is an error. + //! + ITensor* addInput(char const* name, DataType type, Dims const& dimensions) noexcept + { + return mImpl->addInput(name, type, dimensions); + } + + //! + //! \brief Mark a tensor as a network output. + //! + //! \param tensor The tensor to mark as an output tensor. + //! + //! \warning It is an error to mark a network input as an output. + //! \warning It is an error to mark a tensor inside an ILoop or an + //! IIfConditional as an output. + //! + void markOutput(ITensor& tensor) noexcept + { + mImpl->markOutput(tensor); + } + + //! + //! \brief Mark a tensor as a debug tensor. + //! + //! A debug tensor can be optionally emitted at runtime. + //! Note that tensor names are required to specify debug + //! tensors at runtime. + //! + //! \param tensor Tensor to be marked as debug + //! + //! \return True if tensor successfully marked (or was already marked), false otherwise. + //! + //! \see unmarkDebug(), IExecutionContext::setDebugListener(), ITensor::setName() + //! + bool markDebug(ITensor& tensor) noexcept + { + return mImpl->markDebug(tensor); + } + + //! + //! \brief Unmark a tensor as a debug tensor. + //! + //! Remove the marking of a tensor as a debug tensor. + //! + //! \param tensor Tensor to be unmarked as debug. + //! + //! \return True if tensor successfully unmarked (or was already unmarked), false otherwise. + //! + //! \see markDebug(), IExecutionContext::setDebugListener() + //! + bool unmarkDebug(ITensor& tensor) noexcept + { + return mImpl->unmarkDebug(tensor); + } + + //! + //! \brief Check if a tensor is marked as debug tensor. + //! + //! \return true if tensor is marked as debug tensor, false otherwise. + //! + bool isDebugTensor(ITensor const& tensor) const noexcept + { + return mImpl->isDebugTensor(tensor); + } + + //! + //! \brief Mark unfused tensors as debug tensors. + //! + //! Debug tensors can be optionally emitted at runtime. + //! Tensors that are fused by the optimizer will not be emitted. + //! Tensors marked this way will not prevent fusion like markDebug() does, thus preserving performance. + //! + //! \warning Tensors marked this way cannot be detected by isDebugTensor(). + //! \warning DebugListener can only get internal tensor names instead of the original tensor + //! names in the NetworkDefinition for tensors marked this way. But the names correspond to the + //! names obtained by IEngineInspector. + //! \warning There is no guarantee that all unfused tensors are marked. + //! + //! \return True if tensors were successfully marked (or were already marked), false otherwise. + //! + //! \see unmarkUnfusedTensorsAsDebugTensors(), markDebug(), IExecutionContext::setDebugListener() + //! + bool markUnfusedTensorsAsDebugTensors() noexcept + { + return mImpl->markUnfusedTensorsAsDebugTensors(); + } + + //! + //! \brief Undo the marking of unfused tensors as debug tensors. + //! + //! This has no effect on tensors marked by markDebug(). + //! + //! \return True if tensor successfully unmarked (or was already unmarked), false otherwise. + //! + //! \see markUnfusedTensorsAsDebugTensors(), IExecutionContext::setDebugListener() + //! + bool unmarkUnfusedTensorsAsDebugTensors() noexcept + { + return mImpl->unmarkUnfusedTensorsAsDebugTensors(); + } + + //! + //! \brief Add an activation layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param type The type of activation function to apply. + //! + //! Note that the setAlpha() and setBeta() methods must be used on the + //! output for activations that require these parameters. + //! + //! \see IActivationLayer ActivationType + //! + //! \warning Int32 and Int64 are valid only for activation type kRELU. + //! + //! \return The new activation layer, or nullptr if it could not be created. + //! + IActivationLayer* addActivation(ITensor& input, ActivationType type) noexcept + { + return mImpl->addActivation(input, type); + } + + //! + //! \brief Add a LRN layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param window The size of the window. + //! \param alpha The alpha value for the LRN computation. + //! \param beta The beta value for the LRN computation. + //! \param k The k value for the LRN computation. + //! + //! \see ILRNLayer + //! \warning Int32 tensors are not valid input tensors. + //! + //! \return The new LRN layer, or nullptr if it could not be created. + //! + ILRNLayer* addLRN(ITensor& input, int64_t window, float alpha, float beta, float k) noexcept + { + return mImpl->addLRN(input, window, alpha, beta, k); + } + + //! + //! \brief Add a Scale layer to the network. + //! + //! \param input The input tensor to the layer. + //! This tensor must have at least 4 dimensions. + //! \param mode The scaling mode. + //! \param shift The shift value. + //! \param scale The scale value. + //! \param power The power value. + //! + //! If the weights are available, then the size of weights are dependent on the ScaleMode. + //! For ScaleMode::kUNIFORM, the number of weights equals 1. + //! For ScaleMode::kCHANNEL, the number of weights equals the channel dimension. + //! For ScaleMode::kELEMENTWISE, the number of weights equals the product of the last three dimensions of the input. + //! + //! \see addScaleNd + //! \see IScaleLayer + //! \warning Int32 tensors are not valid input tensors. + //! + //! \return The new Scale layer, or nullptr if it could not be created. + //! + IScaleLayer* addScale(ITensor& input, ScaleMode mode, Weights shift, Weights scale, Weights power) noexcept + { + return mImpl->addScale(input, mode, shift, scale, power); + } + + //! + //! \brief Add a SoftMax layer to the network. + //! + //! \see ISoftMaxLayer + //! \warning Int32 tensors are not valid input tensors. + //! + //! \return The new SoftMax layer, or nullptr if it could not be created. + //! + ISoftMaxLayer* addSoftMax(ITensor& input) noexcept + { + return mImpl->addSoftMax(input); + } + + //! + //! \brief Add a concatenation layer to the network. + //! + //! \param inputs The input tensors to the layer. + //! \param nbInputs The number of input tensors. + //! + //! \see IConcatenationLayer + //! + //! \return The new concatenation layer, or nullptr if it could not be created. + //! + //! \warning All tensors must have the same dimensions except along the concatenation axis. + //! + IConcatenationLayer* addConcatenation(ITensor* const* inputs, int32_t nbInputs) noexcept + { + return mImpl->addConcatenation(inputs, nbInputs); + } + + //! + //! \brief Add an elementwise layer to the network. + //! + //! \param input1 The first input tensor to the layer. + //! \param input2 The second input tensor to the layer. + //! \param op The binary operation that the layer applies. + //! + //! The input tensors must have the same rank and compatible type. + //! Two types are compatible if they are the same type or are both in the set {kFLOAT, kHALF}. + //! For each dimension, their lengths must match, or one of them must be one. + //! In the latter case, the tensor is broadcast along that axis. + //! + //! The output tensor has the same rank as the inputs. + //! For each dimension, its length is the maximum of the lengths of the + //! corresponding input dimension. + //! + //! The inputs are shape tensors if the output is a shape tensor. + //! + //! \see IElementWiseLayer + //! + //! \return The new elementwise layer, or nullptr if it could not be created. + //! + IElementWiseLayer* addElementWise(ITensor& input1, ITensor& input2, ElementWiseOperation op) noexcept + { + return mImpl->addElementWise(input1, input2, op); + } + + //! + //! \brief Add a unary layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param operation The operation to apply. + //! + //! \see IUnaryLayer + //! + //! Generally the input must have a floating-point type (or kINT8 as a quantized float), + //! except for the following operations: + //! * kSIGN accepts a floating-point or Int32 tensor. + //! * kNOT requires a Bool tensor. + //! + //! The input is a shape tensor if the output is a shape tensor. + //! + //! \return The new unary layer, or nullptr if it could not be created + //! + IUnaryLayer* addUnary(ITensor& input, UnaryOperation operation) noexcept + { + return mImpl->addUnary(input, operation); + } + + //! + //! \brief Add a shuffle layer to the network. + //! + //! \param input The input tensor to the layer. + //! + //! \see IShuffleLayer + //! + //! \return The new shuffle layer, or nullptr if it could not be created. + //! + IShuffleLayer* addShuffle(ITensor& input) noexcept + { + return mImpl->addShuffle(input); + } + + //! + //! \brief Add a OneHot layer to the network. + //! + //! \param indices - tensor containing indices where on_value should be set. + //! \param values - a 2-element tensor, consisting of [off_value, on_value]. + //! \param depth - a shape tensor containing the width of the added one-hot dimension. + //! \param axis - the axis to add the one-hot encoding to. + //! + //! \see IOneHotLayer + //! + //! \return The new OneHot layer, or nullptr if it could not be created. + //! + IOneHotLayer* addOneHot(ITensor& indices, ITensor& values, ITensor& depth, int32_t axis) noexcept + { + return mImpl->addOneHot(indices, values, depth, axis); + } + + //! + //! \brief Get the number of layers in the network. + //! + //! \return The number of layers in the network. + //! + //! \see getLayer() + //! + int32_t getNbLayers() const noexcept + { + return mImpl->getNbLayers(); + } + + //! + //! \brief Get the layer specified by the given index. + //! + //! \param index The index of the layer. + //! + //! \return The layer, or nullptr if the index is out of range. + //! + //! \see getNbLayers() + //! + ILayer* getLayer(int32_t index) const noexcept + { + return mImpl->getLayer(index); + } + + //! + //! \brief Get the number of inputs in the network. + //! + //! \return The number of inputs in the network. + //! + //! \see getInput() + //! + int32_t getNbInputs() const noexcept + { + return mImpl->getNbInputs(); + } + + //! + //! \brief Get the input tensor specified by the given index. + //! + //! \param index The index of the input tensor. + //! + //! \return The input tensor, or nullptr if the index is out of range. + //! + //! \note adding inputs invalidates indexing here + //! + //! \see getNbInputs() + //! + ITensor* getInput(int32_t index) const noexcept + { + return mImpl->getInput(index); + } + + //! + //! \brief Get the number of outputs in the network. + //! + //! The outputs include those marked by markOutput or markOutputForShapes. + //! + //! \return The number of outputs in the network. + //! + //! \see getOutput() + //! + int32_t getNbOutputs() const noexcept + { + return mImpl->getNbOutputs(); + } + + //! + //! \brief Get the output tensor specified by the given index. + //! + //! \param index The index of the output tensor. + //! + //! \return The output tensor, or nullptr if the index is out of range. + //! + //! \note adding inputs invalidates indexing here + //! + //! \see getNbOutputs() + //! + ITensor* getOutput(int32_t index) const noexcept + { + return mImpl->getOutput(index); + } + + //! + //! \brief Add a reduce layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param operation The reduction operation to perform. + //! \param reduceAxes The reduction dimensions. + //! The bit in position i of bitmask reduceAxes corresponds to explicit dimension i if result. + //! E.g., the least significant bit corresponds to the first explicit dimension and the next to least + //! significant bit corresponds to the second explicit dimension. + //! \param keepDimensions The boolean that specifies whether or not to keep the reduced dimensions in the + //! output of the layer. + //! + //! The reduce layer works by performing an operation specified by \p operation to reduce the tensor \p input + //! across the axes specified by \p reduceAxes. + //! + //! \see IReduceLayer + //! + //! \warning If output is an Int32 or Int64 shape tensor, ReduceOperation::kAVG is unsupported. + //! + //! \return The new reduce layer, or nullptr if it could not be created. + //! + IReduceLayer* addReduce( + ITensor& input, ReduceOperation operation, uint32_t reduceAxes, bool keepDimensions) noexcept + { + return mImpl->addReduce(input, operation, reduceAxes, keepDimensions); + } + + //! + //! \brief Add a TopK layer to the network. + //! + //! The TopK layer has two outputs of the same dimensions. The first contains data values, + //! the second contains index positions for the values. Output values are sorted, largest first + //! for operation kMAX and smallest first for operation kMIN. + //! + //! Currently only values of K up to 3840 are supported. + //! + //! The default indices tensor (the second output) data type is DataType::kINT32. + //! + //! \param input The input tensor to the layer. + //! + //! \param op Operation to perform. + //! + //! \param k The number of elements to keep. For dynamic k, use the setInput() method to pass in k as a tensor + //! instead, which will override the static k value passed here in calculations. + //! + //! \param reduceAxes The reduction dimensions. + //! The bit in position i of bitmask reduceAxes corresponds to explicit dimension i of the result. + //! E.g., the least significant bit corresponds to the first explicit dimension and the next to least + //! significant bit corresponds to the second explicit dimension. Currently reduceAxes must specify + //! exactly one dimension, and it must be one of the last four dimensions. + //! + //! \see ITopKLayer + //! + //! \return The new TopK layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 10.14. Superseded by five-argument addTopK. + //! + TRT_DEPRECATED ITopKLayer* addTopK(ITensor& input, TopKOperation op, int32_t k, uint32_t reduceAxes) noexcept + { + return mImpl->addTopK(input, op, k, reduceAxes); + } + + //! + //! \brief Add a TopK layer to the network. + //! + //! The TopK layer has two outputs of the same dimensions. The first contains data values, + //! the second contains index positions for the values. Output values are sorted, largest first + //! for operation kMAX and smallest first for operation kMIN. + //! + //! Currently only values of K up to 3840 are supported. + //! + //! \param input The input tensor to the layer. + //! + //! \param op Operation to perform. + //! + //! \param k The number of elements to keep. For dynamic k, use the setInput() method to pass in k as a tensor + //! instead, which will override the static k value passed here in calculations. + //! + //! \param reduceAxes The reduction dimensions. + //! The bit in position i of bitmask reduceAxes corresponds to explicit dimension i of the result. + //! E.g., the least significant bit corresponds to the first explicit dimension and the next to least + //! significant bit corresponds to the second explicit dimension. Currently reduceAxes must specify + //! exactly one dimension, and it must be one of the last four dimensions. + //! + //! \param indicesType Indices tensor (the second output) data type, must be DataType::kINT32 or DataType::kINT64. + //! + //! \see ITopKLayer + //! + //! \return The new TopK layer, or nullptr if it could not be created. + //! + ITopKLayer* addTopK(ITensor& input, TopKOperation op, int32_t k, uint32_t reduceAxes, DataType indicesType) noexcept + { + return mImpl->addTopKV2(input, op, k, reduceAxes, indicesType); + } + + //! + //! \brief Add gather with mode GatherMode::kDEFAULT and specified axis and nbElementWiseDims=0. + //! + //! \param data The tensor to gather values from. + //! \param indices The tensor to get indices from to populate the output tensor. + //! \param axis The axis in the data tensor to gather on. + //! + //! \see IGatherLayer + //! + //! \return The new gather layer, or nullptr if it could not be created. + //! + IGatherLayer* addGather(ITensor& data, ITensor& indices, int32_t axis) noexcept + { + return mImpl->addGather(data, indices, axis); + } + + //! + //! \brief Add gather with specified mode, axis=0 and nbElementWiseDims=0. + //! + //! \param data The tensor to gather values from. + //! \param indices The tensor to get indices from to populate the output tensor. + //! \param mode The gather mode. + //! + //! \see IGatherLayer + //! + //! \return The new gather layer, or nullptr if it could not be created. + //! + IGatherLayer* addGatherV2(ITensor& data, ITensor& indices, GatherMode mode) noexcept + { + return mImpl->addGatherV2(data, indices, mode); + } + + //! + //! \brief Add a RaggedSoftMax layer to the network. + //! + //! \param input The ZxS input tensor. + //! \param bounds The Zx1 bounds tensor. + //! + //! \see IRaggedSoftMaxLayer + //! + //! \warning The bounds tensor cannot have the last dimension be the wildcard character. + //! \warning Int32 tensors are not valid input tensors. + //! \warning The input and bounds tensors should be 3D tensors. + //! + //! \return The new RaggedSoftMax layer, or nullptr if it could not be created. + //! + IRaggedSoftMaxLayer* addRaggedSoftMax(ITensor& input, ITensor& bounds) noexcept + { + return mImpl->addRaggedSoftMax(input, bounds); + } + + //! + //! \brief Add a MatrixMultiply layer to the network. + //! + //! \param input0 The first input tensor (commonly A). + //! \param op0 The operation to apply to input0. + //! \param input1 The second input tensor (commonly B). + //! \param op1 The operation to apply to input1. + //! + //! The inputs are shape tensors if the output is a shape tensor. + //! + //! \see IMatrixMultiplyLayer + //! + //! \warning Int32 tensors are not valid input tensors. + //! + //! \return The new matrix multiply layer, or nullptr if it could not be created. + //! + IMatrixMultiplyLayer* addMatrixMultiply( + ITensor& input0, MatrixOperation op0, ITensor& input1, MatrixOperation op1) noexcept + { + return mImpl->addMatrixMultiply(input0, op0, input1, op1); + } + + //! + //! \brief Add a nonzero layer to the network. + //! + //! The default indices tensor (the first output) data type is DataType::kINT32. + //! + //! \param input The input tensor to the layer. + //! + //! \see INonZeroLayer + //! + //! \return The new nonzero layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 10.14. Superseded by two-argument addNonZero. + //! + TRT_DEPRECATED INonZeroLayer* addNonZero(ITensor& input) noexcept + { + return mImpl->addNonZero(input); + } + + //! + //! \brief Add a nonzero layer to the network. + //! + //! \param input The input tensor to the layer. + //! + //! \param indicesType Indices tensor (the first output) data type, must be DataType::kINT32 or DataType::kINT64. + //! + //! \see INonZeroLayer + //! + //! \return The new nonzero layer, or nullptr if it could not be created. + //! + INonZeroLayer* addNonZero(ITensor& input, DataType indicesType) noexcept + { + return mImpl->addNonZeroV2(input, indicesType); + } + + //! + //! \brief Add a constant layer to the network. + //! + //! \param dimensions The dimensions of the constant. + //! \param weights The constant value, represented as weights. + //! + //! \see IConstantLayer + //! + //! \return The new constant layer, or nullptr if it could not be created. + //! + //! If weights.type is DataType::kINT32, the output is a tensor of 32-bit indices. + //! Otherwise the output is a tensor of real values and the output type will be + //! follow TensorRT's normal precision rules. + //! + //! If a wildcard dimension is used, the volume of the runtime dimensions must equal + //! the number of weights specified. + //! + //! \warning DataType::kUINT8 not supported. + //! + IConstantLayer* addConstant(Dims const& dimensions, Weights weights) noexcept + { + return mImpl->addConstant(dimensions, weights); + } + + //! + //! \brief Add an identity layer. + //! + //! \param input The input tensor to the layer. + //! + //! \see IIdentityLayer + //! + //! \return The new identity layer, or nullptr if it could not be created. + //! + IIdentityLayer* addIdentity(ITensor& input) noexcept + { + return mImpl->addIdentity(input); + } + + //! + //! \brief Add a cast layer. + //! + //! \param input The input tensor to the layer. + //! \param toType The DataType of the output tensor + //! + //! \see ICastLayer + //! + //! \return The new cast layer, or nullptr if it could not be created. + //! + ICastLayer* addCast(ITensor& input, DataType toType) noexcept + { + return mImpl->addCast(input, toType); + } + + //! + //! \brief remove a tensor from the network definition. + //! + //! \param tensor the tensor to remove + //! + //! It is illegal to remove a tensor that is the input or output of a layer. + //! if this method is called with such a tensor, a warning will be emitted on the log + //! and the call will be ignored. Its intended use is to remove detached tensors after + //! e.g. concatenating two networks with Layer::setInput(). + //! + void removeTensor(ITensor& tensor) noexcept + { + mImpl->removeTensor(tensor); + } + + //! + //! \brief unmark a tensor as a network output. + //! + //! \param tensor The tensor to unmark as an output tensor. + //! + //! see markOutput() + //! + void unmarkOutput(ITensor& tensor) noexcept + { + mImpl->unmarkOutput(tensor); + } + + //! + //! \brief Add a plugin layer to the network using the IPluginV2 interface. + //! + //! \param inputs The input tensors to the layer. + //! \param nbInputs The number of input tensors. + //! \param plugin The layer plugin. + //! + //! \see IPluginV2Layer + //! + //! \warning Dimension wildcard are only supported with IPluginV2DynamicExt or IPluginV2IOExt plugins. + //! \warning Int32 tensors are not valid input tensors. + //! + //! \return The new plugin layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 10.8. Superseded by addPluginV3. + //! + TRT_DEPRECATED IPluginV2Layer* addPluginV2(ITensor* const* inputs, int32_t nbInputs, IPluginV2& plugin) noexcept + { + return mImpl->addPluginV2(inputs, nbInputs, plugin); + } + + //! + //! \brief Add a plugin layer implementing the IPluginV3 interface to the network. + //! + //! \param inputs The input tensors to the layer. + //! \param nbInputs The number of input tensors. + //! \param shapeInputs Shape tensor inputs to the layer. + //! \param nbShapeInputs The number of shape tensor inputs. + //! \param plugin The layer plugin. + //! + //! \see IPluginV3Layer + //! + //! \return The new plugin layer, or nullptr if it could not be created. + //! + IPluginV3Layer* addPluginV3(ITensor* const* inputs, int32_t nbInputs, ITensor* const* shapeInputs, + int32_t nbShapeInputs, IPluginV3& plugin) noexcept + { + return mImpl->addPluginV3(inputs, nbInputs, shapeInputs, nbShapeInputs, plugin); + } + + //! + //! \brief Add a slice layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param start The start offset + //! \param size The output dimension + //! \param stride The slicing stride + //! + //! Positive, negative, zero stride values, and combinations of them in different dimensions are allowed. + //! + //! \see ISliceLayer + //! + //! \return The new slice layer, or nullptr if it could not be created. + //! + ISliceLayer* addSlice(ITensor& input, Dims const& start, Dims const& size, Dims const& stride) noexcept + { + return mImpl->addSlice(input, start, size, stride); + } + + //! + //! \brief Sets the name of the network. + //! + //! \param name The name to assign to this network. + //! + //! Set the name of the network so that it can be associated with a built + //! engine. The \p name must be a null-terminated C-style string. + //! TensorRT makes no use of this string except storing it as part of the engine + //! so that it may be retrieved at runtime. + //! A name unique to the builder will be generated by default. + //! + //! This method copies the name string. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see INetworkDefinition::getName(), ISafeCudaEngine::getName() + //! + //! \return none + //! + void setName(char const* name) noexcept + { + mImpl->setName(name); + } + + //! + //! \brief Returns the name associated with the network. + //! + //! The memory pointed to by getName() is owned by the INetworkDefinition object. + //! + //! \see INetworkDefinition::setName() + //! + //! \return A null-terminated C-style string representing the name of the network. + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + + //! + //! \brief Add a shape layer to the network. + //! + //! \param input The input tensor to the layer. + //! + //! \see IShapeLayer + //! + //! \warning addShape is only supported when hasImplicitBatchDimensions is false. + //! + //! \return The new shape layer, or nullptr if it could not be created. + //! + IShapeLayer* addShape(ITensor& input) noexcept + { + return mImpl->addShape(input); + } + + //! + //! \brief Query whether the network was created with an implicit batch dimension. + //! + //! \return Always false since TensorRT 10.0 does not support an implicit batch dimension. + //! + //! \see createNetworkV2 + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch is not supported since TensorRT 10.0. + //! + TRT_DEPRECATED bool hasImplicitBatchDimension() const noexcept + { + return mImpl->hasImplicitBatchDimension(); + } + + //! + //! \brief Get the network definition creation flags for this network definition object. Defaults to 0. + //! + //! \return The network definition creation options as a bitmask. + //! + NetworkDefinitionCreationFlags getFlags() const noexcept + { + return mImpl->getFlags(); + } + + //! + //! \brief Returns true if the network definition creation flag is set + //! + //! \see getFlags() + //! + //! \return True if flag is set, false if unset. + //! + bool getFlag(NetworkDefinitionCreationFlag networkDefinitionCreationFlag) const noexcept + { + return mImpl->getFlag(networkDefinitionCreationFlag); + } + + //! + //! \brief Enable tensor's value to be computed by IExecutionContext::getShapeBinding. + //! + //! \return True if successful, false if tensor is already marked as an output. + //! + //! The tensor must be of type DataType::kINT32 and have no more than one dimension. + //! + //! \warning The tensor must have dimensions that can be determined to be constants at build time. + //! + //! \warning It is an error to mark a network input as a shape output. + //! + //! + bool markOutputForShapes(ITensor& tensor) noexcept + { + return mImpl->markOutputForShapes(tensor); + } + + //! + //! \brief Undo markOutputForShapes. + //! + //! \warning inputs to addShape cannot contain wildcard dimension values. + //! + //! \return True if successful, false if tensor is not marked as an output. + //! + bool unmarkOutputForShapes(ITensor& tensor) noexcept + { + return mImpl->unmarkOutputForShapes(tensor); + } + + //! + //! \brief Add a parametric ReLU layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param slope The slope tensor to the layer. This tensor should be unidirectionally broadcastable + //! to the input tensor. + //! + //! \see IParametricReLULayer + //! + //! \warning Tensors of type Int32, Int64, Bool, or UInt8 are not allowed as inputs. + //! + //! \return The new parametric ReLU layer, or nullptr if it could not be created. + //! + IParametricReLULayer* addParametricReLU(ITensor& input, ITensor& slope) noexcept + { + return mImpl->addParametricReLU(input, slope); + } + + //! + //! \brief Add a multi-dimension convolution layer to the network. + //! + //! \param input The input tensor to the convolution. + //! \param nbOutputMaps The number of output feature maps for the convolution. + //! \param kernelSize The multi-dimensions of the convolution kernel. + //! \param kernelWeights The kernel weights for the convolution. + //! \param biasWeights The bias weights for the convolution. Weights{} represents no bias. + //! + //! \see IConvolutionLayer + //! + //! \warning It is an error to specify a wildcard value for the 'C' dimension of the input tensor. + //! \warning Int32 tensors are not valid input tensors. + //! \warning Only 2D or 3D convolution is supported. + //! + //! \return The new convolution layer, or nullptr if it could not be created. + //! + IConvolutionLayer* addConvolutionNd( + ITensor& input, int64_t nbOutputMaps, Dims const& kernelSize, Weights kernelWeights, Weights biasWeights) noexcept + { + return mImpl->addConvolutionNd(input, nbOutputMaps, kernelSize, kernelWeights, biasWeights); + } + + //! + //! \brief Add a multi-dimension pooling layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param type The type of pooling to apply. + //! \param windowSize The size of the pooling window. + //! + //! \see IPoolingLayer PoolingType + //! + //! \warning Int32 tensors are not valid input tensors. + //! \warning Only 2D or 3D pooling is supported. + //! + //! \return The new pooling layer, or nullptr if it could not be created. + //! + IPoolingLayer* addPoolingNd(ITensor& input, PoolingType type, Dims const& windowSize) noexcept + { + return mImpl->addPoolingNd(input, type, windowSize); + } + + //! + //! \brief Add a multi-dimension deconvolution layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param nbOutputMaps The number of output feature maps. + //! \param kernelSize The multi-dimensions of the deconvolution kernel. + //! \param kernelWeights The kernel weights for the deconvolution. + //! \param biasWeights The bias weights for the deconvolution. Weights{} represents no bias. + //! + //! \see IDeconvolutionLayer + //! + //! \warning It is an error to specify a wildcard value for the 'C' dimension of the input tensor. + //! \warning Int32 tensors are not valid input tensors. + //! \warning Only 2D or 3D deconvolution is supported. + // + //! \return The new deconvolution layer, or nullptr if it could not be created. + //! + IDeconvolutionLayer* addDeconvolutionNd( + ITensor& input, int64_t nbOutputMaps, Dims kernelSize, Weights kernelWeights, Weights biasWeights) noexcept + { + return mImpl->addDeconvolutionNd(input, nbOutputMaps, kernelSize, kernelWeights, biasWeights); + } + + //! + //! \brief Add a multi-dimension scale layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param mode The scaling mode. + //! \param shift The shift value. + //! \param scale The scale value. + //! \param power The power value. + //! \param channelAxis The channel axis. + //! + //! If the weights are available, then the size of weights are dependent on the ScaleMode. + //! For ScaleMode::kUNIFORM, the number of weights equals 1. + //! For ScaleMode::kCHANNEL, the number of weights equals the channel dimension. + //! For ScaleMode::kELEMENTWISE, the number of weights equals the product of all input dimensions at channelAxis and + //! beyond. + //! + //! For example, if the inputs dimensions are [A,B,C,D,E,F], and channelAxis=2: + //! For ScaleMode::kUNIFORM, the number of weights is equal to 1. + //! For ScaleMode::kCHANNEL, the number of weights is C. + //! For ScaleMode::kELEMENTWISE, the number of weights is C*D*E*F. + //! + //! channelAxis can also be set explicitly using setChannelAxis(). + //! + //! \see IScaleLayer + //! \see setChannelAxis() + //! + //! \warning Int32 tensors are not valid input tensors. + //! \warning Only 2D or 3D scale is supported. + //! + //! \return The new Scale layer, or nullptr if it could not be created. + //! + IScaleLayer* addScaleNd( + ITensor& input, ScaleMode mode, Weights shift, Weights scale, Weights power, int32_t channelAxis) noexcept + { + return mImpl->addScaleNd(input, mode, shift, scale, power, channelAxis); + } + + //! + //! \brief Add a resize layer to the network. + //! + //! \param input The input tensor to the layer. + //! + //! \see IResizeLayer + //! + //! \warning Int32 tensors are not valid input tensors. + //! + //! \return The new resize layer, or nullptr if it could not be created. + //! + IResizeLayer* addResize(ITensor& input) noexcept + { + return mImpl->addResize(input); + } + + //! + //! \brief Add a loop to the network. + //! + //! An ILoop provides a way to specify a recurrent subgraph. + //! + //! \return Pointer to ILoop that can be used to add loop-boundary layers for the loop. + //! + //! \see ILoop + //! + ILoop* addLoop() noexcept + { + return mImpl->addLoop(); + } + + //! + //! \brief Add an if-then-else to the network. + //! + //! An IIfConditional provides a way to conditionally execute parts of the network. + //! + //! \return Pointer to the IIfConditional that can be used to add conditional-boundary layers + //! for the if-then-else. + //! + //! \see IIfConditional + //! + IIfConditional* addIfConditional() noexcept + { + return mImpl->addIfConditional(); + } + + //! + //! \brief Add a select layer to the network. + //! + //! \param condition The condition tensor to the layer. Must have type DataType::kBOOL. + //! \param thenInput The "then" input tensor to the layer. + //! \param elseInput The "else" input tensor to the layer. + //! + //! All three input tensors must have the same rank, and along each axis + //! must have the same length or a length of one. If the length is one, the tensor + //! is broadcast along that axis. The output tensor has the dimensions of the inputs AFTER + //! the broadcast rule is applied. For example, given: + //! + //! dimensions of condition: [1,1,5,9] + //! dimensions of thenInput: [1,1,5,9] + //! dimensions of elseInput: [1,3,1,9] + //! + //! the output dimensions are [1,3,5,9], and the output contents are defined by: + //! + //! output[0,i,j,k] = condition[0,0,j,k] ? thenInput[0,0,j,k] : elseInput[0,i,0,k] + //! + //! The output dimensions are not necessarily the max of the input dimensions if any input + //! is an empty tensor. For example, if in the preceding example, 5 is changed to 0: + //! + //! dimensions of condition: [1,1,0,9] + //! dimensions of thenInput: [1,1,0,9] + //! dimensions of elseInput: [1,3,1,9] + //! + //! then the output dimensions are [1,3,0,9]. + //! + //! The inputs are shape tensors if the output is a shape tensor. + //! + //! \see ISelectLayer + //! + //! \return The new select layer, or nullptr if it could not be created. + ISelectLayer* addSelect(ITensor& condition, ITensor& thenInput, ITensor& elseInput) noexcept + { + return mImpl->addSelect(condition, thenInput, elseInput); + } + + //! + //! \brief Add an assertion layer to the network. + //! + //! \param condition The input tensor to the layer. + //! \param message A message to print if the assertion fails. + //! + //! \see IAssertionLayer + //! + //! \return The new assertion layer, or nullptr if it could not be created. + //! + //! The input tensor must be a boolean shape tensor. + //! + IAssertionLayer* addAssertion(ITensor& condition, char const* message) noexcept + { + return mImpl->addAssertion(condition, message); + } + + //! + //! \brief Add a fill layer to the network. + //! + //! \param dimensions The output tensor dimensions if input 0 is missing. + //! \param op The fill operation that the layer applies. + //! + //! \warning For FillOperation::kLINSPACE, dimensions.nbDims must be 1 for static start/delta. If delta is provided + //! as a 1D tensor, the length of delta must match dimensions.nbDims. + //! + //! This layer is non-deterministic across subsequent calls as the same inputs will produce different + //! output tensors if \p op is either FillOperation::kRANDOM_UNIFORM or FillOperation::kRANDOM_NORMAL + //! due to random state being shared across calls. The output tensors generated are determinstic when + //! starting from the same initial state. + //! + //! \see IFillLayer + //! + //! \return The new fill layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 9.0. Superseded by three-argument addFill. + //! + TRT_DEPRECATED IFillLayer* addFill(Dims const& dimensions, FillOperation op) noexcept + { + return mImpl->addFill(dimensions, op); + } + + //! + //! \brief Add a fill layer to the network. + //! + //! \param dimensions The output tensor dimensions if input 0 is missing. + //! \param op The fill operation that the layer applies. + //! \param outputType Optional output tensor data type, must be DataType::kFLOAT, DataType::kHALF, DataType::kINT32, + //! or DataType::kINT64. This parameter is only used for static alpha/beta. Future calls to set output type using + //! setToType or setOutputType must be consistent. + //! + //! \warning For FillOperation::kLINSPACE, dimensions.nbDims must be 1 for static start/delta. If delta is provided + //! as a 1D tensor, the length of delta must match dimensions.nbDims. + //! + //! This layer is non-deterministic across subsequent calls as the same inputs will produce different + //! output tensors if \p op is either FillOperation::kRANDOM_UNIFORM or FillOperation::kRANDOM_NORMAL + //! due to random state being shared across calls. The output tensors generated are deterministic when + //! starting from the same initial state. + //! + //! \see IFillLayer + //! + //! \return The new fill layer, or nullptr if it could not be created. + //! + IFillLayer* addFill(Dims const& dimensions, FillOperation op, DataType outputType) noexcept + { + return mImpl->addFillV2(dimensions, op, outputType); + } + + //! + //! \brief Add a padding layer to the network. Only 2D padding is currently supported. + //! + //! \param input The input tensor to the layer. + //! \param prePadding The padding to apply to the start of the tensor. + //! \param postPadding The padding to apply to the end of the tensor. + //! + //! \see IPaddingLayer + //! + //! \return The new padding layer, or nullptr if it could not be created. + //! + IPaddingLayer* addPaddingNd(ITensor& input, Dims const& prePadding, Dims const& postPadding) noexcept + { + return mImpl->addPaddingNd(input, prePadding, postPadding); + } + + //! + //! \brief Associate a name with all current uses of the given weights. + //! + //! The name must be set after the Weights are used in the network. + //! Lookup is associative. The name applies to all Weights with matching + //! type, value pointer, and count. If Weights with a matching value + //! pointer, but different type or count exists in the network, an + //! error message is issued, the name is rejected, and return false. + //! If the name has already been used for other weights, + //! return false. A nullptr causes the weights to become unnamed, + //! i.e. clears any previous name. + //! + //! \param weights The weights to be named. + //! \param name The name to associate with the weights. + //! + //! \return true on success. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool setWeightsName(Weights weights, char const* name) noexcept + { + return mImpl->setWeightsName(weights, name); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + // + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. + //! A nullptr will be returned if setErrorRecorder has not been called. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + + //! + //! \brief Add a dequantization layer to the network. + //! + //! \param input The input tensor to be quantized. + //! \param scale A tensor with the scale value. + //! + //! \see IDequantizeLayer + //! + //! \p input tensor data type must be DataType::kINT8 or DataType::kFP8. + //! \p scale tensor data type must be DataType::kFLOAT. The subgraph which terminates with the \p scale tensor must + //! be a build-time constant. + //! + //! \return The new quantization layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 9.0. Superseded by three-argument addDequantize. + //! + TRT_DEPRECATED IDequantizeLayer* addDequantize(ITensor& input, ITensor& scale) noexcept + { + return mImpl->addDequantize(input, scale); + } + + //! + //! \brief Add a dequantization layer to the network. + //! + //! \param input The input tensor to be dequantized. + //! \param scale A tensor with the scale value. + //! \param outputType Output tensor data type. + //! + //! \see IDequantizeLayer + //! + //! \p input tensor data type must be DataType::kINT8, DataType::kFP8, DataType::kINT4 or DataType::kFP4. + //! \p scale tensor data type must be one of the following: DataType::kFLOAT (default), DataType::kHALF, + //! DataType::kBF16 or DataType::kE8M0 (for MXFP8 quantization). + //! \p outputType output tensor data type must be DataType::kFLOAT (default), DataType::kHALF or DataType::kBF16. + //! Future calls to set output type using setToType or setOutputType must be consistent. For strongly typed + //! networks, if the scale type is DataType::kHALF or DataType::kBF16 the output type must match. + //! + //! \return The new quantization layer, or nullptr if it could not be created. + //! + IDequantizeLayer* addDequantize(ITensor& input, ITensor& scale, DataType outputType) noexcept + { + return mImpl->addDequantizeV2(input, scale, outputType); + } + + //! + //! \brief Add a Scatter layer to the network with specified mode and axis=0. + //! + //! \param data The input tensor to be updated with additional values. + //! \param indices indices of the elements to be updated. + //! \param updates values to be used for updates. + //! \param mode scatter mode. + //! + //! \see IScatterLayer + //! + //! \p indices tensor data type must be DataType::kINT32. + //! \p updates tensor data type must be the same as \p data + //! + //! \return The new Scatter layer, or nullptr if it could not be created. + //! + IScatterLayer* addScatter(ITensor& data, ITensor& indices, ITensor& updates, ScatterMode mode) noexcept + { + return mImpl->addScatter(data, indices, updates, mode); + } + + //! + //! \brief Add a quantization layer to the network. + //! + //! \param input The input tensor to be quantized. + //! \param scale A tensor with the scale value. + //! + //! \see IQuantizeLayer + //! + //! \p input tensor data type must be DataType::kFLOAT or DataType::kHALF. + //! \p scale tensor data type must be DataType::kFLOAT. The subgraph which terminates with the \p scale tensor must + //! be a build-time constant. + //! + //! \return The new quantization layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 9.0. Superseded by three-argument addQuantize. + //! + TRT_DEPRECATED IQuantizeLayer* addQuantize(ITensor& input, ITensor& scale) noexcept + { + return mImpl->addQuantize(input, scale); + } + + //! + //! \brief Add a quantization layer to the network. + //! + //! \param input The input tensor to be quantized. + //! \param scale A tensor with the scale value. + //! \param outputType Output tensor data type. + //! + //! \see IQuantizeLayer + //! + //! \p input tensor data type must be DataType::kFLOAT, DataType::kHALF or DataType::kBF16. + //! \p scale tensor data type must be one of the following: DataType::kFLOAT (default), DataType::kHALF, + //! DataType::kBF16 or DataType::kE8M0 (for MXFP8 quantization). + //! \p outputType output tensor data type must be DataType::kINT8 (default), DataType::kFP8, DataType::kINT4 or + //! DataType::kFP4. + //! Future calls to set output type using setToType or setOutputType must be consistent. For strongly typed + //! networks, if the scale type is DataType::kHALF or DataType::kBF16 the output type must match. + //! + //! \return The new quantization layer, or nullptr if it could not be created. + //! + IQuantizeLayer* addQuantize(ITensor& input, ITensor& scale, DataType outputType) noexcept + { + return mImpl->addQuantizeV2(input, scale, outputType); + } + + //! + //! \brief Add a dynamic quantization layer to the network. + //! + //! This layer performs dynamic block quantization of its input tensor and outputs the + //! quantized data and the computed block scale-factors. + //! The blocked axis dimension size must be divisible by the block size. + //! + //! \param input The input tensor to be quantized. Its data type must be one of DataType::kFLOAT, + //! DataType::kHALF, or DataType::kBF16. Currently only 2D and 3D inputs are supported. + //! \param axis The axis that is sliced into blocks. The axis must be the last or second to last dimension. + //! \param blockSize The number of elements that are quantized using a shared scale factor. + //! Valid values are 16 (NVFP4 quantization) and 32 (MXFP8 quantization). + //! \param outputType The data type of the quantized output tensor, must be DataType::kFP4 (NVFP4 quantization) or + //! DataType::kFP8 (MXFP8 quantization). Future calls to set output type using setToType or setOutputType must be + //! consistent. + //! \param scaleType The data type of the scale factor used for quantizing the input data, must be DataType::kFP8 + //! (NVFP4 quantization) or DataType::kE8M0 (MXFP8 quantization). + //! + //! \return The new dynamic quantization layer, or nullptr if it could not be created. + //! + //! \see IDynamicQuantizeLayer + //! + TRT_DEPRECATED IDynamicQuantizeLayer* addDynamicQuantize( + ITensor& input, int32_t axis, int32_t blockSize, DataType outputType, DataType scaleType) noexcept + { + return mImpl->addDynamicQuantize(input, axis, blockSize, outputType, scaleType); + } + + //! + //! \brief Add a dynamic quantization layer to the network. + //! + //! This layer performs dynamic block quantization of its input tensor and outputs the + //! quantized data and the computed block scale factors. + //! + //! \param input The input tensor to be quantized. Its data type must be one of DataType::kFLOAT, + //! DataType::kHALF, or DataType::kBF16. + //! \param blockShape Defines the block shape for the quantization. Must match the input tensor rank. + //! \param outputType The data type of the quantized output tensor, must be DataType::kFP4, DataType::kFP8 or + //! DataType::kINT8. Future calls to set output type using setToType or setOutputType must be consistent. + //! \param scaleType The data type of the scale factor used for quantizing the input data, must be DataType::kFP8, + //! DataType::kE8M0 or DataType::kFLOAT. + //! + //! \return The new dynamic quantization layer, or nullptr if it could not be created. + //! + //! \see IDynamicQuantizeLayer + //! + IDynamicQuantizeLayer* addDynamicQuantizeV2( + ITensor& input, Dims const& blockShape, DataType outputType, DataType scaleType) noexcept + { + return mImpl->addDynamicQuantizeV2(input, blockShape, outputType, scaleType); + } + + //! + //! \brief Add an Einsum layer to the network. + //! + //! \param inputs The input tensors to the layer. + //! \param nbInputs The number of input tensors. + //! \param equation The equation of the layer + //! \see IEinsumLayer + //! + //! \return The new Einsum layer, or nullptr if it could not be created. + //! + IEinsumLayer* addEinsum(ITensor* const* inputs, int32_t nbInputs, char const* equation) noexcept + { + return mImpl->addEinsum(inputs, nbInputs, equation); + } + + //! + //! \brief Add a GridSample layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param grid The grid tensor to the layer. + //! + //! \see IGridSampleLayer + //! + //! Creates a GridSample layer with a InterpolationMode::kLINEAR, unaligned corners, + //! and SampleMode::kFILL for 4d-shape input tensors. + //! + //! \return The new GridSample layer, or nullptr if it could not be created. + //! + IGridSampleLayer* addGridSample(ITensor& input, ITensor& grid) noexcept + { + return mImpl->addGridSample(input, grid); + } + + //! + //! \brief Add a non-maximum suppression layer to the network. + //! + //! The default indices tensor (the first output) data type is DataType::kINT32. + //! + //! \param boxes The input boxes tensor to the layer. + //! + //! \param scores The input scores tensor to the layer. + //! + //! \param maxOutputBoxesPerClass The input maxOutputBoxesPerClass tensor to the layer. + //! + //! \see INMSLayer + //! + //! \return The new NMS layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 10.14. Superseded by four-argument addNMS. + //! + TRT_DEPRECATED INMSLayer* addNMS(ITensor& boxes, ITensor& scores, ITensor& maxOutputBoxesPerClass) noexcept + { + return mImpl->addNMS(boxes, scores, maxOutputBoxesPerClass); + } + + //! + //! \brief Add a non-maximum suppression layer to the network. + //! + //! \param boxes The input boxes tensor to the layer. + //! + //! \param scores The input scores tensor to the layer. + //! + //! \param maxOutputBoxesPerClass The input maxOutputBoxesPerClass tensor to the layer. + //! + //! \param indicesType Indices tensor (the first output) data type, must be DataType::kINT32 or DataType::kINT64. + //! + //! \see INMSLayer + //! + //! \return The new NMS layer, or nullptr if it could not be created. + //! + INMSLayer* addNMS(ITensor& boxes, ITensor& scores, ITensor& maxOutputBoxesPerClass, DataType indicesType) noexcept + { + return mImpl->addNMSV2(boxes, scores, maxOutputBoxesPerClass, indicesType); + } + + //! + //! \brief Add a ReverseSequence layer to the network. + //! + //! \param input The input tensor to the layer. Must have rank >= 2. + //! + //! \param sequenceLens 1D tensor specifying lengths of sequences to reverse in a batch. The length of the + //! sequenceLens tensor must be equal to the size of the dimension in input tensor specified by batchAxis. + //! + //! \see IReverseSequenceLayer + //! + //! \return The new ReverseSequence layer, or nullptr if it could not be created. + //! + IReverseSequenceLayer* addReverseSequence(ITensor& input, ITensor& sequenceLens) noexcept + { + return mImpl->addReverseSequence(input, sequenceLens); + } + + //! + //! \brief Add a normalization layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param scale The scale tensor used to scale the normalized output. + //! \param bias The bias tensor used to scale the normalized output. + //! \param axesMask The axes on which to perform mean calculations. + //! The bit in position i of bitmask axesMask corresponds to explicit dimension i of the result. + //! E.g., the least significant bit corresponds to the first explicit dimension and the next to least + //! significant bit corresponds to the second explicit dimension. + //! + //! The normalization layer works by performing normalization of the tensor \p input on the specified \p axesMask. + //! The result is then scaled by multiplying with \p scale and adding \p bias. + //! + //! The shapes of \p scale and \p bias must be the same, and must have the same rank and be + //! unidirectionally broadcastable to the shape of \p input. Given a 4D NCHW input tensor, the expected shapes + //! for \p scale and \p bias are: + //! * [1, C, 1, 1] for InstanceNormalization + //! * [1, G, 1, 1] for GroupNormalization. Use addNormalizationV2() instead if [1, C, 1, 1] shapes for \p scale + //! and \p bias are required. + //! + //! \see INormalizationLayer + //! + //! \return The new normalization layer, or nullptr if it could not be created. + //! + //! \deprecated Deprecated in TensorRT 10.15. Superseded by addNormalizationV2(). + //! + TRT_DEPRECATED INormalizationLayer* addNormalization(ITensor& input, ITensor& scale, ITensor& bias, uint32_t axesMask) noexcept + { + return mImpl->addNormalization(input, scale, bias, axesMask); + } + + //! + //! \brief Add a cumulative layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param axis The axis tensor to apply the cumulative operation on. Currently, it must be a build-time constant 0D + //! shape tensor and must be in the range [-rank(input), rank(input)-1]. Negative value means counting dimensions + //! from the back. \param operation The reduction operation to perform. \param exclusive The boolean that specifies + //! whether it is an exclusive cumulative or inclusive cumulative. \param reverse The boolean that specifies whether + //! the cumulative operation should be applied backward. + //! + //! The cumulative layer works by performing the specified cumulative \p operation to the tensor \p input + //! on the axis specified by \p axis. + //! + //! \see ICumulativeLayer + //! + //! \return The new cumulative layer, or nullptr if it could not be created. + //! + ICumulativeLayer* addCumulative(ITensor& input, ITensor& axis, CumulativeOperation operation, bool exclusive, bool reverse) noexcept + { + return mImpl->addCumulative(input, axis, operation, exclusive, reverse); + } + + //! + //! \brief Add an attention to the network. + //! + //! \param query A 4d input query tensor to the layer. + //! \param key A 4d input key tensor to the layer. + //! \param value A 4d input value tensor to the layer. + //! \param normOp The normalization operation to perform. + //! \param causal Use causual inference or not. + //! + //! query must have shape [batchSize, numHeadsQuery, sequenceLengthQuery, dimHead]. + //! key and value must have shape [batchSize, numHeadsKeyValue, sequenceLengthKeyValue, dimHead]. + //! pastKey and pastValue must have shape [batchSize, numHeadsKeyValue, sequenceLengthKeyValue, dimHead]. + //! normOp defaults to kSOFTMAX isCausal defaults to false. + //! + //! By default, IAttention is not decomposable and TensorRT will try to use a single fused kernel, which may be more + //! efficient than if the subgraph is expressed without IAttention. Setting the IAttention to decomposable=True can + //! allow IAttention to be to use multiple kernels if no fused kernel support found. + //! + //! \see IAttention + //! + //! \return The new attention, or nullptr if it could not be created. + //! + IAttention* addAttention( + ITensor& query, ITensor& key, ITensor& value, AttentionNormalizationOp normOp, bool causal) noexcept + { + return mImpl->addAttention(query, key, value, normOp, causal); + } + + //! \brief Add a Rotary Position Embedding (RoPE) layer to the network. + //! + //! \param input The input activation tensor to the layer. The shape must be (batchSize, numHeads, sequenceLength, headSize). + //! \param cosCache The cosine cache tensor for use in RoPE computation. See the following explanation for the shape requirement. + //! \param sinCache The sine cache tensor for use in RoPE computation. See the following explanation for the shape requirement. + //! \param interleaved Whether the \p input is in interleaved format, i.e., whether the 2-d vectors rotated are taken from adjacent 2 elements in the hidden dimension. + //! \param rotaryEmbeddingDim The hidden dimension that participates in RoPE. + //! + //! The RotaryEmbedding layer applies RoPE to the \p input, using \p cosCache and \p sinCache. + //! An optional input, positionIds, can be provided using setInput with index 3. If provided, it is used to index into \p cosCache and \p sinCache. + //! + //! If \p positionIds is not provided, \p cosCache and \p sinCache must have shape (batchSize, sequenceLength, headSize / 2) if \p rotaryEmbeddingDim is 0, or (batchSize, sequenceLength, rotaryEmbeddingDim / 2) otherwise. + //! If \p positionIds is provided, \p cosCache and \p sinCache must have shape (maxPositionId+1, headSize / 2) if \p rotaryEmbeddingDim is 0, or (maxPositionId+1, rotaryEmbeddingDim / 2) otherwise. + //! \p positionIds, if provided, must have shape (batchSize, sequenceLength). + //! + //! \see IRotaryEmbeddingLayer + //! + //! \return The new RotaryEmbedding layer, or nullptr if it could not be created. + //! + IRotaryEmbeddingLayer* addRotaryEmbedding(ITensor& input, ITensor& cosCache, ITensor& sinCache, bool interleaved, int32_t rotaryEmbeddingDim) noexcept + { + return mImpl->addRotaryEmbedding(input, cosCache, sinCache, interleaved, rotaryEmbeddingDim); + } + + //! + //! \brief Add a KVCacheUpdate layer to the network. + //! + //! \param cache The key/value cache tensor for the layer. The user is responsible for properly allocating + //! and binding the tensor memory. + //! \param update The newly updated key/value tensor for the layer. + //! \param writeIndices The write indices tensor for key/value cache updates. + //! \param cacheMode The mode of the KVCacheUpdate layer. For TensorRT 10.15, only `kLINEAR` mode is supported. + //! + //! The expected tensor shapes are as follows: + //! - `cache`: [batchSize, numHeads, maxSequenceLength, headSize] + //! - `update`: [batchSize, numHeads, sequenceLength, headSize] + //! - `writeIndices`: [batchSize] + //! + //! The `cache` and `update` tensors must have the same data type, which can be DataType::kFLOAT, + //! DataType::kHALF, or DataType::kBF16. Quantized data types are not supported. + //! The `writeIndices` tensor must be DataType::kINT32 or DataType::kINT64. + //! + //! The layer performs in-place updates on the cache tensor. Therefore, the user must ensure that + //! the `cache` tensor and the corresponding output tensor share the same device memory address + //! before execution. + //! + //! \warning In `kLINEAR` mode, each update must satisfy the condition + //! `writeIndices[i] + sequenceLength <= maxSequenceLength`. Out-of-bound updates will be ignored silently. + //! + //! \see IKVCacheUpdateLayer + //! + //! \return The new KVCacheUpdate layer, or nullptr if it could not be created. + //! + IKVCacheUpdateLayer* addKVCacheUpdate( + ITensor& cache, ITensor& update, ITensor& writeIndices, KVCacheMode cacheMode) noexcept + { + return mImpl->addKVCacheUpdate(cache, update, writeIndices, cacheMode); + } + + //! \brief Add a MoE (Mixture of Experts) layer to the network. + //! + //! \param hiddenStates The hidden states tensor input to the MoE layer. Shape: [batchSize, seqLen, hiddenSize]. + //! \param selectedExpertsForTokens The tensor containing expert indices selected for each token. Shape: [batchSize, seqLen, topK]. + //! \param scoresForSelectedExperts The tensor containing scores computed for the selected experts. Shape: [batchSize, seqLen, topK]. + //! + //! \see IMoELayer + //! + //! \warning MoE is only supported on Thor. And performance is limited when seqLen > 16. + //! + //! \warning The number of selected experts per token could be inferred from the input \p selectedExpertsForTokens and should be consistent with the topK in the \p scoresForSelectedExperts. + //! + //! \return The new MoE layer, or nullptr if it could not be created. + //! + IMoELayer* addMoE(ITensor& hiddenStates, ITensor& selectedExpertsForTokens, ITensor& scoresForSelectedExperts) noexcept + { + return mImpl->addMoE(hiddenStates, selectedExpertsForTokens, scoresForSelectedExperts); + } + + //! + //! \brief Add a DistCollective layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param distCollectiveOp The collective operation to perform. See \ref CollectiveOperation for valid values. + //! \param reduceOp The reduction operation to perform, in case the collective operation is reduction type: kREDUCE, + //! kREDUCE_SCATTER or kALL_REDUCE. See \ref ReduceOperation for valid values. Use ReduceOperation::kNONE for a + //! CollectiveOperation which does not need a ReduceOperation + //! \param root The root rank of the collective operation. + //! Some CollectiveOperations, such as kBROADCAST and kREDUCE require specifying a root rank, with the following + //! semantics: + //! - kBROADCAST: the root rank sends, all other ranks receive data + //! - kREDUCE: the root rank receives reduced data, the other ranks send data + //! \param groups Pointer to a flat array of rank IDs in the communicator that defines a single group for this + //! layer. The DistCollective runner treats this array as the ordered list of participating ranks; only those ranks + //! take part in the collective, and the order defines the group-local rank (used to remap the root for root-based + //! ops). + //! \param groupSize The number of elements in the groups array. If groupSize is 0, all ranks participate and + //! groups can be nullptr. + //! \see IDistCollectiveLayer + //! + //! \return The new DistCollective layer, or nullptr if it could not be created. + //! + TRT_NODISCARD IDistCollectiveLayer* addDistCollective(ITensor& input, CollectiveOperation distCollectiveOp, + ReduceOperation reduceOp, int64_t root, int64_t* groups, int64_t groupSize) noexcept + { + return mImpl->addDistCollective(input, distCollectiveOp, reduceOp, root, groups, groupSize); + } + + //! + //! \brief Return the builder from which this INetworkDefinition was created. + //! + //! \see IBuilder::createNetworkV2 + //! + //! \return the builder + virtual IBuilder& getBuilder() const noexcept + { + return mImpl->getBuilder(); + } + + //! + //! \brief Mark weights as refittable when the builder flag kREFIT_INDIVIDUAL is set. + //! + //! \param name The name of the weights. + //! + //! \return True if the weights were successfully marked as refittable, false if the weights do not exist or cannot + //! be refitted. + //! + bool markWeightsRefittable(char const* name) noexcept + { + return mImpl->markWeightsRefittable(name); + } + + //! + //! \brief Unmark weights as refittable when the builder flag kREFIT_INDIVIDUAL is set. + //! + //! \param name The name of the weights. + //! + //! \return True if the weights were successfully marked as unrefittable, false if the weights do not exist. + //! + bool unmarkWeightsRefittable(char const* name) noexcept + { + return mImpl->unmarkWeightsRefittable(name); + } + + //! + //! \brief Whether the weight has been marked as refittable. + //! + //! \param name The name of the weights to check. + //! + //! \return True if the weights are marked as refittable, false if the weights do not exist or are marked as + //! non-refittable. + //! + bool areWeightsMarkedRefittable(char const* name) const noexcept + { + return mImpl->areWeightsMarkedRefittable(name); + } + + //! + //! \brief Add a squeeze layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param axes The axes to remove unit dimensions on. + //! + //! \see ISqueezeLayer + //! + //! Axes must be resolvable to a constant Int32 or Int64 1D shape tensor. + //! Values in axes must be unique and in the range of [-r, r-1], where r is the rank of the input tensor. + //! For each axis value, the corresponding dimension in the input tensor must be one. + //! + //! \return The new Squeeze layer, or nullptr if it could not be created. + //! + ISqueezeLayer* addSqueeze(ITensor& input, ITensor& axes) noexcept + { + return mImpl->addSqueeze(input, axes); + } + + //! + //! \brief Add an unsqueeze layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param axes The axes to add unit dimensions. + //! + //! \see IUnsqueezeLayer + //! + //! Axes must be resolvable to a constant Int32 or Int64 shape tensor. + //! Values in axes must be unique and in the range of [-r_final, r_final-1], where r_final + //! is the sum of rank(input) and len(axes). + //! + //! r_final must be less than Dims::MAX_DIMS. + //! + //! \return The new Unsqueeze layer, or nullptr if it could not be created + //! + IUnsqueezeLayer* addUnsqueeze(ITensor& input, ITensor& axes) noexcept + { + return mImpl->addUnsqueeze(input, axes); + } + + //! \brief Add a normalization layer to the network. + //! + //! \param input The input tensor to the layer. + //! \param scale The scale tensor used to scale the normalized output. + //! \param bias The bias tensor used to scale the normalized output. + //! \param axesMask The axes on which to perform mean calculations. + //! The bit in position i of bitmask axesMask corresponds to explicit dimension i of the result. + //! E.g., the least significant bit corresponds to the first explicit dimension and the next to least + //! significant bit corresponds to the second explicit dimension. + //! + //! The normalization layer works by performing normalization of the tensor \p input on the specified \p axesMask. + //! The result is then scaled by multiplying with \p scale and adding \p bias. + //! + //! The shapes of \p scale and \p bias are expected the be the same, and must have the same rank and be + //! unidirectionally broadcastable to the shape of \p input. In the case of InstanceNorm or GroupNorm, + //! the shapes of \p scale and \p bias are expected to be [1, C, 1, 1] in the case of a 4D NCHW input tensor. + //! + //! \see INormalizationLayer + //! + //! \return The new normalization layer, or nullptr if it could not be created. + //! + TRT_NODISCARD INormalizationLayer* addNormalizationV2(ITensor& input, ITensor& scale, ITensor& bias, uint32_t axesMask) noexcept + { + return mImpl->addNormalizationV2(input, scale, bias, axesMask); + } + +protected: + apiv::VNetworkDefinition* mImpl; +}; + +//! +//! \enum CalibrationAlgoType +//! +//! \brief Version of calibration algorithm to use. +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +enum class CalibrationAlgoType : int32_t +{ + kLEGACY_CALIBRATION TRT_DEPRECATED_ENUM = 0, //!< Legacy calibration + kENTROPY_CALIBRATION TRT_DEPRECATED_ENUM = 1, //!< Legacy entropy calibration + kENTROPY_CALIBRATION_2 TRT_DEPRECATED_ENUM = 2, //!< Entropy calibration + kMINMAX_CALIBRATION TRT_DEPRECATED_ENUM = 3, //!< Minmax calibration +}; + +//! +//! Maximum number of elements in CalibrationAlgoType enum. +//! +//! \see DataType +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 4; +} + +//! +//! \class IInt8Calibrator +//! +//! \brief Application-implemented interface for calibration. +//! +//! Calibration is a step performed by the builder when deciding suitable scale factors for 8-bit inference. +//! +//! It must also provide a method for retrieving representative images which the calibration process can use to examine +//! the distribution of activations. It may optionally implement a method for caching the calibration result for reuse +//! on subsequent runs. +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +class TRT_DEPRECATED IInt8Calibrator : public IVersionedInterface +{ +public: + //! + //! \brief Get the batch size used for calibration batches. + //! + //! \return The batch size. + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch support is removed in TensorRT 10.0. + //! + TRT_DEPRECATED virtual int32_t getBatchSize() const noexcept = 0; + + //! + //! \brief Get a batch of input for calibration. + //! + //! The batch size of the input must match the batch size returned by getBatchSize(). + //! + //! \param bindings An array of pointers to device memory that must be updated to point to device memory + //! containing each network input data. + //! \param names The names of the network input for each pointer in the binding array. + //! \param nbBindings The number of pointers in the bindings array. + //! + //! \return False if there are no more batches for calibration. + //! + //! \see getBatchSize() + //! + virtual bool getBatch(void* bindings[], char const* names[], int32_t nbBindings) noexcept = 0; + + //! + //! \brief Load a calibration cache. + //! + //! Calibration is potentially expensive, so it can be useful to generate the calibration data once, then use it on + //! subsequent builds of the network. The cache includes the regression cutoff and quantile values used to generate + //! it, and will not be used if these do not batch the settings of the current calibrator. However, the network + //! should also be recalibrated if its structure changes, or the input data set changes, and it is the + //! responsibility of the application to ensure this. + //! + //! \param length The length of the cached data, that should be set by the called function. If there is no data, + //! this should be zero. + //! + //! \return A pointer to the cache, or nullptr if there is no data. + //! + virtual void const* readCalibrationCache(std::size_t& length) noexcept = 0; + + //! + //! \brief Save a calibration cache. + //! + //! \param ptr A pointer to the data to cache. + //! \param length The length in bytes of the data to cache. + //! + //! \see readCalibrationCache() + //! + virtual void writeCalibrationCache(void const* ptr, std::size_t length) noexcept = 0; + + //! + //! \brief Get the algorithm used by this calibrator. + //! + //! \return The algorithm used by the calibrator. + //! + virtual CalibrationAlgoType getAlgorithm() noexcept = 0; + + ~IInt8Calibrator() noexcept override = default; +}; + +namespace v_1_0 +{ +class TRT_DEPRECATED IInt8EntropyCalibrator : public IInt8Calibrator +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IInt8EntropyCalibrator", 1, 0}; + } + + //! + //! Signal that this is the entropy calibrator. + //! + CalibrationAlgoType getAlgorithm() noexcept override + { + return CalibrationAlgoType::kENTROPY_CALIBRATION; + } + + ~IInt8EntropyCalibrator() noexcept override = default; +}; +} // namespace v_1_0 + +//! +//! \class IInt8EntropyCalibrator +//! +//! \brief Entropy calibrator. +//! +//! This is the Legacy Entropy calibrator. It is less complicated than the legacy calibrator and +//! produces better results. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IEntropyCalibrator, not +//! v_1_0::IEntropyCalibrator +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +using IInt8EntropyCalibrator = v_1_0::IInt8EntropyCalibrator; + +namespace v_1_0 +{ +class TRT_DEPRECATED IInt8EntropyCalibrator2 : public IInt8Calibrator +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IInt8EntropyCalibrator2", 1, 0}; + } + + //! + //! Signal that this is the entropy calibrator 2. + //! + CalibrationAlgoType getAlgorithm() noexcept override + { + return CalibrationAlgoType::kENTROPY_CALIBRATION_2; + } + + ~IInt8EntropyCalibrator2() noexcept override = default; +}; +} // namespace v_1_0 + +//! +//! \class IInt8EntropyCalibrator2 +//! +//! \brief Entropy calibrator 2. +//! +//! This is the preferred calibrator. This is the required calibrator for DLA, as it supports per +//! activation tensor scaling. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IEntropyCalibrator2, not +//! v_1_0::IEntropyCalibrator2 +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +using IInt8EntropyCalibrator2 = v_1_0::IInt8EntropyCalibrator2; + +namespace v_1_0 +{ +class TRT_DEPRECATED IInt8MinMaxCalibrator : public IInt8Calibrator +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IInt8MinMaxCalibrator", 1, 0}; + } + + //! + //! Signal that this is the MinMax Calibrator. + //! + CalibrationAlgoType getAlgorithm() noexcept override + { + return CalibrationAlgoType::kMINMAX_CALIBRATION; + } + + ~IInt8MinMaxCalibrator() noexcept override = default; +}; +} // namespace v_1_0 + +//! +//! \class IInt8MinMaxCalibrator +//! +//! \brief MinMax Calibrator. +//! +//! It supports per activation tensor scaling. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IMinMaxCalibrator>, not +//! v_1_0::IMinMaxCalibrator +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +using IInt8MinMaxCalibrator = v_1_0::IInt8MinMaxCalibrator; + +namespace v_1_0 +{ +class TRT_DEPRECATED IInt8LegacyCalibrator : public IInt8Calibrator +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IInt8Calibrator", 1, 0}; + } + + //! + //! Signal that this is the legacy calibrator. + //! + CalibrationAlgoType getAlgorithm() noexcept override + { + return CalibrationAlgoType::kLEGACY_CALIBRATION; + } + + //! + //! \brief The quantile (between 0 and 1) that will be used to select the region maximum when the quantile method + //! is in use. + //! + //! See the user guide for more details on how the quantile is used. + //! + virtual double getQuantile() const noexcept = 0; + + //! + //! \brief The fraction (between 0 and 1) of the maximum used to define the regression cutoff when using regression + //! to determine the region maximum. + //! + //! See the user guide for more details on how the regression cutoff is used + //! + virtual double getRegressionCutoff() const noexcept = 0; + + //! + //! \brief Load a histogram. + //! + //! Histogram generation is potentially expensive, so it can be useful to generate the histograms once, then use + //! them when exploring the space of calibrations. The histograms should be regenerated if the network structure + //! changes, or the input data set changes, and it is the responsibility of the application to ensure this. + //! + //! \param length The length of the cached data, that should be set by the called function. If there is no data, + //! this should be zero. + //! + //! \return A pointer to the cache, or nullptr if there is no data. + //! + virtual void const* readHistogramCache(std::size_t& length) noexcept = 0; + + //! + //! \brief Save a histogram cache. + //! + //! \param ptr A pointer to the data to cache. + //! \param length The length in bytes of the data to cache. + //! + //! \see readHistogramCache() + //! + virtual void writeHistogramCache(void const* ptr, std::size_t length) noexcept = 0; + + ~IInt8LegacyCalibrator() noexcept override = default; +}; +} // namespace v_1_0 + +//! +//! \class IInt8LegacyCalibrator +//! +//! \brief Legacy calibrator. +//! +//! This calibrator requires user parameterization, +//! and is provided as a fallback option if the other calibrators yield poor results. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use ILegacyCalibrator, not +//! v_1_0::ILegacyCalibrator +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +using IInt8LegacyCalibrator = v_1_0::IInt8LegacyCalibrator; + +//! +//! \class IAlgorithmIOInfo +//! +//! \brief Carries information about input or output of the algorithm. +//! IAlgorithmIOInfo for all the input and output along with IAlgorithmVariant denotes the variation of algorithm +//! and can be used to select or reproduce an algorithm using IAlgorithmSelector::selectAlgorithms(). +//! \see IAlgorithmVariant, IAlgorithm, IAlgorithmSelector::selectAlgorithms() +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. +//! +class TRT_DEPRECATED IAlgorithmIOInfo : public INoCopy +{ +public: + //! + //! \brief Return DataType of the input/output of algorithm. + //! + //! \return the data type. + //! + DataType getDataType() const noexcept + { + return mImpl->getDataType(); + } + + //! + //! \brief Return strides of the input/output tensor of algorithm. + //! For vectorized formats, strides are given in units of vectors. + //! + //! \return the strides of the tensor. + //! + Dims getStrides() const noexcept + { + return mImpl->getStrides(); + } + + //! + //! \brief Return the index of the vectorized dimension or -1 for non-vectorized formats. + //! + //! \return the index of the vectorized dimension. + //! + int64_t getVectorizedDim() const noexcept + { + return mImpl->getVectorizedDim(); + } + + //! + //! \brief Return the number of components per element. + //! This is always 1 for non-vectorized formats. + //! + //! \return the number of components per element. + //! + int64_t getComponentsPerElement() const noexcept + { + return mImpl->getComponentsPerElement(); + } + +protected: + virtual ~IAlgorithmIOInfo() noexcept = default; + apiv::VAlgorithmIOInfo* mImpl; +}; + +//! +//! \class IAlgorithmVariant +//! +//! \brief provides a unique 128-bit identifier, which along with the input and output information +//! denotes the variation of algorithm and can be used to select or reproduce an algorithm, +//! using IAlgorithmSelector::selectAlgorithms() +//! \see IAlgorithmIOInfo, IAlgorithm, IAlgorithmSelector::selectAlgorithms() +//! \note A single implementation can have multiple tactics. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. +//! +class TRT_DEPRECATED IAlgorithmVariant : public INoCopy +{ +public: + //! + //! \brief Return implementation of the algorithm. + //! + int64_t getImplementation() const noexcept + { + return mImpl->getImplementation(); + } + + //! + //! \brief Return tactic of the algorithm. + //! + int64_t getTactic() const noexcept + { + return mImpl->getTactic(); + } + +protected: + virtual ~IAlgorithmVariant() noexcept = default; + apiv::VAlgorithmVariant* mImpl; +}; + +//! +//! \class IAlgorithmContext +//! +//! \brief Describes the context and requirements, that could be fulfilled by one or more instances of IAlgorithm. +//! \see IAlgorithm +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. +//! +class TRT_DEPRECATED IAlgorithmContext : public INoCopy +{ +public: + //! + //! \brief Return name of the algorithm node. + //! + //! This is a unique identifier for the IAlgorithmContext. + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + + //! + //! \brief Get the minimum / optimum / maximum dimensions for input or output tensor. + //! + //! \param index Index of the input or output of the algorithm. Incremental numbers assigned to indices of inputs + //! and the outputs. + //! \param select Which of the minimum, optimum, or maximum dimensions to be queried. + //! + Dims getDimensions(int32_t index, OptProfileSelector select) const noexcept + { + return mImpl->getDimensions(index, select); + } + + //! + //! \brief Return number of inputs of the algorithm. + //! + int32_t getNbInputs() const noexcept + { + return mImpl->getNbInputs(); + } + + //! + //! \brief Return number of outputs of the algorithm. + //! + int32_t getNbOutputs() const noexcept + { + return mImpl->getNbOutputs(); + } + +protected: + virtual ~IAlgorithmContext() noexcept = default; + apiv::VAlgorithmContext* mImpl; +}; + +//! +//! \class IAlgorithm +//! +//! \brief Describes a variation of execution of a layer. +//! An algorithm is represented by IAlgorithmVariant and the IAlgorithmIOInfo for each of its inputs and outputs. +//! An algorithm can be selected or reproduced using AlgorithmSelector::selectAlgorithms(). +//! +//! \see IAlgorithmIOInfo, IAlgorithmVariant, IAlgorithmSelector::selectAlgorithms() +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. +//! +class TRT_DEPRECATED IAlgorithm : public INoCopy +{ +public: + //! + //! \brief Returns the algorithm variant. + //! + IAlgorithmVariant const& getAlgorithmVariant() const noexcept + { + return mImpl->getAlgorithmVariant(); + } + + //! + //! \brief The time in milliseconds to execute the algorithm. + //! + float getTimingMSec() const noexcept + { + return mImpl->getTimingMSec(); + } + + //! + //! \brief The size of the GPU temporary memory in bytes which the algorithm uses at execution time. + //! + std::size_t getWorkspaceSize() const noexcept + { + return mImpl->getWorkspaceSize(); + } + + //! + //! \brief Returns the format of an Algorithm input or output. Algorithm inputs are incrementally numbered first, + //! followed by algorithm outputs. + //! + //! \param index Index of the input or output of the algorithm. Incremental numbers assigned to indices of inputs + //! and the outputs. + //! + //! \return a pointer to a IAlgorithmIOInfo interface or nullptr if index is out of range. + //! + IAlgorithmIOInfo const* getAlgorithmIOInfoByIndex(int32_t index) const noexcept + { + return mImpl->getAlgorithmIOInfoByIndex(index); + } + +protected: + virtual ~IAlgorithm() noexcept = default; + apiv::VAlgorithm* mImpl; +}; // IAlgorithm + +namespace v_1_0 +{ +class TRT_DEPRECATED IAlgorithmSelector : public IVersionedInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IAlgorithmSelector", 1, 0}; + } + //! + //! \brief Select Algorithms for a layer from the given list of algorithm choices. + //! + //! \return The number of choices selected from [0, nbChoices-1]. + //! \param context The context for which the algorithm choices are valid. + //! \param choices The list of algorithm choices to select for implementation of this layer. + //! \param nbChoices Number of algorithm choices. + //! \param selection The user writes indices of selected choices in to selection buffer which is of size nbChoices. + //! + //! \note TensorRT uses its default algorithm selection to choose from the list provided. + //! If return value is 0, TensorRT's default algorithm selection is used unless + //! BuilderFlag::kREJECT_EMPTY_ALGORITHMS is set. + //! The list of choices is valid only for this specific algorithm context. + //! + virtual int32_t selectAlgorithms(IAlgorithmContext const& context, IAlgorithm const* const* choices, + int32_t nbChoices, int32_t* selection) noexcept = 0; + + //! + //! \brief Called by TensorRT to report choices it made. + //! + //! \note For a given optimization profile, this call comes after all calls to selectAlgorithms. + //! algoChoices[i] is the choice that TensorRT made for algoContexts[i], for i in [0, nbAlgorithms-1] + //! + //! \param algoContexts The list of all algorithm contexts. + //! \param algoChoices The list of algorithm choices made by TensorRT + //! \param nbAlgorithms The size of algoContexts as well as algoChoices. + //! + virtual void reportAlgorithms(IAlgorithmContext const* const* algoContexts, IAlgorithm const* const* algoChoices, + int32_t nbAlgorithms) noexcept = 0; + + virtual ~IAlgorithmSelector() noexcept = default; +}; +} // namespace v_1_0 + +//! +//! \class IAlgorithmSelector +//! +//! \brief Interface implemented by application for selecting and reporting algorithms of a layer provided by the +//! builder. +//! \note A layer in context of algorithm selection may be different from ILayer in INetworkDefinition. +//! For example, an algorithm might be implementing a conglomeration of multiple ILayers in INetworkDefinition. +//! \note To ensure compatibility of source code with future versions of TensorRT, use IAlgorithmSelector, not +//! v_1_0::IAlgorithmSelector +//! +//! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. +//! +using IAlgorithmSelector = v_1_0::IAlgorithmSelector; + +//! +//! \brief Represents one or more QuantizationFlag values using binary OR +//! operations. +//! +//! \see IBuilderConfig::getQuantizationFlags(), IBuilderConfig::setQuantizationFlags() +//! +using QuantizationFlags = uint32_t; + +//! +//! \enum QuantizationFlag +//! +//! \brief List of valid flags for quantizing the network to int8 +//! +//! \see IBuilderConfig::setQuantizationFlag(), IBuilderConfig::getQuantizationFlag() +//! +//! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. +//! +enum class QuantizationFlag : int32_t +{ + //! Run int8 calibration pass before layer fusion. Only valid for IInt8LegacyCalibrator and + //! IInt8EntropyCalibrator. The builder always runs the int8 calibration pass before layer fusion for + //! IInt8MinMaxCalibrator and IInt8EntropyCalibrator2. Disabled by default. + kCALIBRATE_BEFORE_FUSION TRT_DEPRECATED_ENUM = 0 +}; + +//! +//! Maximum number of quantization flags in QuantizationFlag enum. +//! +//! \see QuantizationFlag +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 1; +} + +//! +//! \enum RuntimePlatform +//! +//! \brief Describes the intended runtime platform (operating system and CPU architecture) for the execution of the +//! TensorRT engine. TensorRT provides support for cross-platform engine compatibility when the target runtime +//! platform is different from the build platform. +//! +//! \note The cross-platform engine will not be able to run on the host platform it was built on. +//! +//! \note When building a cross-platform engine that also requires version forward compatibility, +//! kEXCLUDE_LEAN_RUNTIME must be set to exclude the target platform lean runtime. +//! +//! \note The cross-platform engine might have performance differences compared to the natively built engine on the +//! target platform. +//! +//! \see IBuilderConfig::setRuntimePlatform(), IBuilderConfig::getRuntimePlatform() +//! +enum class RuntimePlatform : int32_t +{ + //! No requirement for cross-platform compatibility. The engine constructed by TensorRT can only run on the + //! identical platform it was built on. + kSAME_AS_BUILD = 0, + + //! Designates the target platform for engine execution as Windows AMD64 system. Currently this flag can only be + //! enabled when building engines on Linux AMD64 platforms. + kWINDOWS_AMD64 = 1, + + +}; + +namespace impl +{ +//! +//! Maximum number of elements in RuntimePlatform enum. +//! +//! \see RuntimePlatform +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 2; +}; +} // namespace impl + +//! +//! \brief Represents one or more BuilderFlag values using binary OR +//! operations, e.g., 1U << BuilderFlag::kFP16 | 1U << BuilderFlag::kDEBUG. +//! +//! \see IBuilderConfig::setFlags(), IBuilderConfig::getFlags() +//! +using BuilderFlags = uint32_t; + +//! +//! \enum BuilderFlag +//! +//! \brief List of valid modes that the builder can enable when creating an engine from a network definition. +//! +//! \see IBuilderConfig::setFlags(), IBuilderConfig::getFlags() +//! +enum class BuilderFlag : int32_t +{ + //! Enable FP16 layer selection, with FP32 fallback. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kFP16 TRT_DEPRECATED_ENUM = 0, + + //! Enable Int8 layer selection, with FP32 fallback with FP16 fallback if kFP16 also specified. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kINT8 TRT_DEPRECATED_ENUM = 1, + + //! Enable debugging of layers via synchronizing after every layer. + kDEBUG = 2, + + //! Enable layers marked to execute on GPU if layer cannot execute on DLA. + kGPU_FALLBACK = 3, + + //! Enable building a refittable engine. + kREFIT = 4, + + //! Disable reuse of timing information across identical layers. + kDISABLE_TIMING_CACHE = 5, + + //! Allow (but not require) computations on tensors of type DataType::kFLOAT to use TF32. + //! TF32 computes inner products by rounding the inputs to 10-bit mantissas before + //! multiplying, but accumulates the sum using 23-bit mantissas. Enabled by default. + kTF32 = 6, + + //! Allow the builder to examine weights and use optimized functions when weights have suitable sparsity. + kSPARSE_WEIGHTS = 7, + + //! Change the allowed parameters in the EngineCapability::kSTANDARD flow to + //! match the restrictions that EngineCapability::kSAFETY check against for DeviceType::kGPU + //! and EngineCapability::kDLA_STANDALONE check against the DeviceType::kDLA case. This flag + //! is forced to true if EngineCapability::kSAFETY at build time if it is unset. + //! + //! This flag is only supported in NVIDIA Drive(R) products. + //! + //! \deprecated Deprecated in TensorRT 10.16. + //! In EngineCapability::kSTANDARD flow, safety restrictions are no longer supported. + //! In EngineCapability::kSAFETY and EngineCapability::kDLA_STANDALONE flows, restrictions are enforced natively. + //! This flag is retained for API compatibility but is ignored. + kSAFETY_SCOPE TRT_DEPRECATED_ENUM = 8, + + //! Require that layers execute in specified precisions. Build fails otherwise. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kOBEY_PRECISION_CONSTRAINTS TRT_DEPRECATED_ENUM = 9, + + //! Prefer that layers execute in specified precisions. + //! Fall back (with warning) to another precision if build would otherwise fail. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kPREFER_PRECISION_CONSTRAINTS TRT_DEPRECATED_ENUM = 10, + + //! Require that no reformats be inserted between a layer and a network I/O tensor + //! for which ITensor::setAllowedFormats was called. + //! Build fails if a reformat is required for functional correctness. + //! \deprecated Deprecated in TensorRT 10.7. Unneeded API. + kDIRECT_IO TRT_DEPRECATED_ENUM = 11, + + //! Fail if IAlgorithmSelector::selectAlgorithms returns an empty set of algorithms. + //! \deprecated Deprecated in TensorRT 10.10. Unneeded API due to IAlgorithmSelector deprecation. + kREJECT_EMPTY_ALGORITHMS TRT_DEPRECATED_ENUM = 12, + + //! Restrict to lean runtime operators to provide version forward compatibility + //! for the plan. + //! + //! This flag is only supported by NVIDIA Volta and later GPUs. + //! This flag is not supported in NVIDIA Drive(R) products. + kVERSION_COMPATIBLE = 13, + + //! Exclude lean runtime from the plan when version forward compatability is enabled. + //! By default, this flag is unset, so the lean runtime will be included in the plan. + //! + //! If BuilderFlag::kVERSION_COMPATIBLE is not set then the value of this flag will be ignored. + kEXCLUDE_LEAN_RUNTIME = 14, + + //! Enable plugins with FP8 input/output. + //! This flag is not supported when HardwareCompatibilityLevel::kAMPERE_PLUS is enabled. + //! \see HardwareCompatibilityLevel + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kFP8 TRT_DEPRECATED_ENUM = 15, + + //! Emit error when a tactic being timed is not present in the timing cache. + //! This flag has an effect only when IBuilderConfig has an associated ITimingCache. + kERROR_ON_TIMING_CACHE_MISS = 16, + + //! Enable DataType::kBF16 layer selection, with FP32 fallback. + //! This flag is only supported by NVIDIA Ampere and later GPUs. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kBF16 TRT_DEPRECATED_ENUM = 17, + + //! Disable caching of JIT-compilation results during engine build. + //! By default, JIT-compiled code will be serialized as part of the timing cache, which may significantly increase + //! the cache size. Setting this flag prevents the code from being serialized. This flag has an effect only when + //! BuilderFlag::DISABLE_TIMING_CACHE is not set. + kDISABLE_COMPILATION_CACHE = 18, + + //! Strip the refittable weights from the engine plan file. + kSTRIP_PLAN = 19, + + //! \deprecated Deprecated in TensorRT 10.0. Superseded by kSTRIP_PLAN. + kWEIGHTLESS TRT_DEPRECATED_ENUM = kSTRIP_PLAN, + + //! Create a refittable engine under the assumption that the refit weights will be identical to those provided at + //! build time. The resulting engine will have the same performance as a non-refittable one. All refittable weights + //! can be refitted through the refit API, but if the refit weights are not identical to the build-time weights, + //! behavior is undefined. When used alongside 'kSTRIP_PLAN', this flag will result in a small plan file for which + //! weights are later supplied via refitting. This enables use of a single set of weights with different inference + //! backends, or with TensorRT plans for multiple GPU architectures. + kREFIT_IDENTICAL = 20, + + //! + //! \brief Enable weight streaming for the current engine. + //! + //! Weight streaming from the host enables execution of models that do not fit + //! in GPU memory by allowing TensorRT to intelligently stream network weights + //! from the CPU DRAM. Please see ICudaEngine::getMinimumWeightStreamingBudget + //! for the default memory budget when this flag is enabled. + //! + //! Enabling this feature changes the behavior of + //! IRuntime::deserializeCudaEngine to allocate the entire network's weights + //! on the CPU DRAM instead of GPU memory. Then, + //! ICudaEngine::createExecutionContext will determine the optimal split of + //! weights between the CPU and GPU and place weights accordingly. + //! + //! Future TensorRT versions may enable this flag by default. + //! + //! \warning Enabling this flag may marginally increase build time. + //! + //! \warning Enabling this feature will significantly increase the latency of + //! ICudaEngine::createExecutionContext. + //! + //! \see IRuntime::deserializeCudaEngine, + //! ICudaEngine::getMinimumWeightStreamingBudget, + //! ICudaEngine::setWeightStreamingBudget + //! + kWEIGHT_STREAMING = 21, + + //! Enable plugins with INT4 input/output. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kINT4 TRT_DEPRECATED_ENUM = 22, + + //! Enable building a refittable engine and provide fine-grained control. This allows + //! control over which weights are refittable or not using INetworkDefinition::markWeightsRefittable and + //! INetworkDefinition::unmarkWeightsRefittable. By default, all weights are non-refittable when this flag is + //! enabled. This flag cannot be used together with kREFIT or kREFIT_IDENTICAL. + kREFIT_INDIVIDUAL = 23, + + //! Disable floating-point optimizations: 0*x => 0, x-x => 0, or x/x => 1. These identities are + //! not true when x is a NaN or Inf, and thus might hide propagation or generation of NaNs. This flag is typically + //! used in combination with kSPARSE_WEIGHTS. + //! There are three valid sparsity configurations. + //! 1. Disable all sparsity. Both kSPARSE_WEIGHTS and kSTRICT_NANS are unset + //! 2. Enable sparsity only where it does not affect propagation/generation of NaNs. Both kSPARSE_WEIGHTS and + //! kSTRICT_NANS are set + //! 3. Enable all sparsity. kSPARSE_WEIGHTS is set and kSTRICT_NANS is unset + kSTRICT_NANS = 24, + + //! Enable memory monitor during build time. + kMONITOR_MEMORY = 25, + + //! Enable plugins with FP4 input/output. + //! \deprecated Deprecated in TensorRT 10.12. Superseded by strong typing. + kFP4 TRT_DEPRECATED_ENUM = 26, + + //! Enable editable timing cache. + kEDITABLE_TIMING_CACHE = 27, + + //! Enable distributive independence. + //! When BuilderFlag::kDISTRIBUTIVE_INDEPENDENCE is set and a layer documents axis i of an output as a distributive + //! axis, then the layer behaves exactly as if each evaluation across axis i was done using identical operations. + //! The definition of distributive axis is as follows: + //! For IMatrixMultiplyLayer: + //! All axes that are not one of the vector or matrix dimensions are distributive axes. + //! For layers that perform reduction: + //! All non-reduction axes are distributive axes. + //! For layers that perform einsum: + //! Let n be the leftmost reduction axis. The axes to the left of n are distributive axes. + kDISTRIBUTIVE_INDEPENDENCE = 28, + +#if ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + //! Build an engine that requires user allocation when creating an execution context. + //! This means that runtime allocation will not be enabled even when the tensor dimensions + //! exceed the limits for static allocation, and ensures that inference will support graph + //! capture unless the network includes operations such as data-dependent dynamic shapes + //! (INonZeroLayer, ITripLimitLayer, etc.) that require runtime allocation. If such operations + //! are present, the engine build will fail with an error message. + kREQUIRE_USER_ALLOCATION = 29, +#endif // ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + +}; + +//! +//! Maximum number of builder flags in BuilderFlag enum. +//! +//! \see BuilderFlag +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ +#if ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + return 30; +#else + return 29; +#endif // ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION +} + +namespace v_1_0 +{ +//! +//! \struct TimingCacheKey +//! +//! \brief The key to retrieve timing cache entries. +//! +//! TimingCacheKey has two types of representation: binary and string. The conversion rule from binary to string is: +//! 1) Convert each uint8_t element in binary key into two hexadecimal ascii chars, e.g. 0xab -> "ab" +//! 2) Concat the ascii chars of all elements in sequence. The result should have exact 32 chars +//! 3) Add prefix "0x" to the string produced in step 2. +//! +//! \see ITimingCache::query(), ITimingCache::update() +//! +struct TimingCacheKey +{ + uint8_t data[16]; +}; + +//! +//! \struct Value +//! +//! \brief The values in the cache entry. +//! +//! \see ITimingCache::query(), ITimingCache::update() +//! +struct TimingCacheValue +{ + //! Hash of the selected tactic. + uint64_t tacticHash; + //! Timing of this tactic in milliseconds. Negative numbers and NaN are invalid values. + float timingMSec; + //! UINT64_MAX represents the invalid tactic hash. + static constexpr uint64_t kINVALID_TACTIC_HASH = UINT64_MAX; +}; +} // namespace v_1_0 + +//! +//! \class ITimingCache +//! +//! \brief Class to handle tactic timing info collected from builder. +//! +//! The timing cache is created or initialized by IBuilderConfig. It can be shared across builder instances +//! to reduce the builder wallclock time. +//! +//! \warning Rebuilding the same engine multiple times using the same timing cache will always yield a correct +//! engine but the selected tactics and formats may vary between generated engine instances, if weak typing is used. +//! +//! \see IBuilderConfig +//! +class ITimingCache : public INoCopy +{ +public: + virtual ~ITimingCache() noexcept = default; + + //! + //! \brief Serialize a timing cache to IHostMemory object. + //! + //! This function allows serialization of current timing cache. + //! + //! \return A pointer to a IHostMemory object that contains a serialized timing cache. + //! + //! \see IHostMemory + //! + nvinfer1::IHostMemory* serialize() const noexcept + { + return mImpl->serialize(); + } + + //! + //! \brief Combine input timing cache into local instance. + //! + //! This function allows combining entries in the input timing cache to local cache object. + //! + //! \param inputCache The input timing cache. + //! \param ignoreMismatch Whether or not to allow cache verification header mismatch. + //! + //! \return True if combined successfully, false otherwise. + //! + //! Append entries in input cache to local cache. Conflicting entries will be skipped + //! The input cache must be generated by a TensorRT build of exact same version, otherwise + //! combine will be skipped and return false. + //! ignoreMismatch must be set to true if combining a timing cache created from a + //! different device. + //! + //! \warning Combining caches generated from devices with different device properties may + //! lead to functional/performance bugs! + //! + bool combine(ITimingCache const& inputCache, bool ignoreMismatch) noexcept + { + return mImpl->combine(inputCache, ignoreMismatch); + } + + //! + //! \brief Empty the timing cache + //! + //! \return True if reset successfully, false otherwise. + //! + bool reset() noexcept + { + return mImpl->reset(); + } + + //! + //! \brief Query cache keys from Timing Cache. + //! + //! This function queries the entry count and writes the keys out. + //! + //! \param keyBuffer The buffer to store keys. + //! \param capacity The capacity of the buffer. + //! + //! \return The count of entries in the cache and fill keys if keyBuffer is non-null. + //! If an error occurs, -1 will be returned. + //! + //! Query the count of entries in the cache and write out cache keys if keyBuffer is provided. + //! Any key entries exceeding the capacity of the keyBuffer will not be copied. + //! + int64_t queryKeys(TimingCacheKey* keyBuffer, int64_t capacity) const noexcept + { + return mImpl->queryKeys(keyBuffer, capacity); + } + + //! + //! \brief Query value in a cache entry. + //! + //! The function queries the value in a specific cache entry. + //! + //! \param key The query key. + //! + //! \return Cache value if the key exists, otherwise an invalid value. + //! + //! Query the value of the given cache key. If the key exists, write the value out, + //! otherwise return an invalid value. + //! + TimingCacheValue query(TimingCacheKey const& key) const noexcept + { + return mImpl->query(key); + } + + //! + //! \brief Update values in a cache entry. + //! + //! The function updates the value in a specific cache entry. + //! + //! \param key The key to the entry to be updated. + //! \param value New cache value. + //! + //! \return True if update succeeds, otherwise false. + //! + //! Update the value of the given cache key. If the key does not exist, return false. + //! If the key exists and the new tactic timing is NaN, delete the cache entry and + //! return true. If tactic timing is not NaN and the new value is valid, override the + //! cache value and return true. False is returned when the new value is invalid. + //! If this layer cannot use the new tactic, build errors will be reported when + //! building the next engine. + //! + bool update(TimingCacheKey const& key, TimingCacheValue const& value) noexcept + { + return mImpl->update(key, value); + } + +protected: + apiv::VTimingCache* mImpl; +}; + +//! +//! \enum MemoryPoolType +//! +//! \brief The type for memory pools used by TensorRT. +//! +//! \see IBuilderConfig::setMemoryPoolLimit, IBuilderConfig::getMemoryPoolLimit +//! +enum class MemoryPoolType : int32_t +{ + //! + //! kWORKSPACE is used by TensorRT to store intermediate buffers within an operation. + //! This defaults to max device memory. Set to a smaller value to restrict tactics that use over the + //! threshold en masse. For more targeted removal of tactics use the IAlgorithmSelector + //! interface. + //! + kWORKSPACE = 0, + + //! + //! kDLA_MANAGED_SRAM is a fast software managed RAM used by DLA to communicate within a layer. + //! The size of this pool must be at least 4 KiB and must be a power of 2. + //! This defaults to 1 MiB. + //! Orin has capacity of 1 MiB per core. + //! + kDLA_MANAGED_SRAM = 1, + + //! + //! kDLA_LOCAL_DRAM is host RAM used by DLA to share intermediate tensor data across operations. + //! The size of this pool must be at least 4 KiB and must be a power of 2. + //! This defaults to 1 GiB. + //! + kDLA_LOCAL_DRAM = 2, + + //! + //! kDLA_GLOBAL_DRAM is host RAM used by DLA to store weights and metadata for execution. + //! The size of this pool must be at least 4 KiB and must be a power of 2. + //! This defaults to 512 MiB. + //! + kDLA_GLOBAL_DRAM = 3, + + //! + //! kTACTIC_DRAM is the device DRAM used by the optimizer to + //! run tactics. On embedded devices, where host and device memory are unified, this includes all host + //! memory required by TensorRT to build the network up to the point of each memory allocation. + //! This defaults to 75% of totalGlobalMem as reported by cudaGetDeviceProperties when + //! cudaGetDeviceProperties.embedded is true, and 100% otherwise. + //! + kTACTIC_DRAM = 4, + + //! + //! kTACTIC_SHARED_MEMORY defines the maximum sum of shared memory reserved by the driver and + //! used for executing CUDA kernels. Adjust this value to restrict tactics that exceed the + //! specified threshold en masse. The default value is device max capability. This value must + //! be less than 1GiB. + //! + //! The driver reserved shared memory can be queried from cuDeviceGetAttribute(&reservedShmem, + //! CU_DEVICE_ATTRIBUTE_RESERVED_SHARED_MEMORY_PER_BLOCK). + //! + //! Updating this flag will override the shared memory limit set by \ref HardwareCompatibilityLevel, + //! which defaults to 48KiB - reservedShmem. + //! + kTACTIC_SHARED_MEMORY = 5, +}; + +//! +//! Maximum number of memory pool types in the MemoryPoolType enum. +//! +//! \see MemoryPoolType +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 6; +} + +//! +//! \enum PreviewFeature +//! +//! \brief Define preview features +//! +//! Preview Features have been fully tested but are not yet as stable as other features in TensorRT. +//! They are provided as opt-in features for at least one release. +//! +enum class PreviewFeature : int32_t +{ + //! + //! Allows optimization profiles to be shared across execution contexts. + //! + //! \deprecated Deprecated in TensorRT 10.0. The default value for this flag is on and can not be changed. + //! + kPROFILE_SHARING_0806 TRT_DEPRECATED_ENUM = 0, + + //! + //! Allows plugin I/O to be aliased when using IPluginV3OneBuildV2 + //! + kALIASED_PLUGIN_IO_10_03 = 1, + + //! + //! Allows IExecutionContext::updateDeviceMemorySizeForShapes to resize runner internal activation memory. + //! Using this feature can reduce runtime memory requirement when the actual input tensor shapes are smaller than + //! the maximum input tensor dimensions. + //! + kRUNTIME_ACTIVATION_RESIZE_10_10 = 2, + + //! + //! Enabling multi-device mode in TRT. + //! Allows building an engine that contains multi-device enabled nodes, + //! such as IDistCollective. + //! + //! \note: The preview flag must be set if there are any layers in the + //! INetworkDefinition that need multi-device capabilities. Otherwise, an engine cannot be built. + kMULTIDEVICE_RUNTIME_10_16 = 3 +}; + +namespace impl +{ +//! +//! Maximum number of elements in PreviewFeature enum. +//! +//! \see PreviewFeature +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 4; +}; +} // namespace impl + +//! +//! \enum HardwareCompatibilityLevel +//! +//! \brief Describes requirements of compatibility with GPU architectures other than that of the GPU on which the engine +//! was built. +//! +//! \warning Note that compatibility with future hardware depends on CUDA forward compatibility support. +//! +enum class HardwareCompatibilityLevel : int32_t +{ + //! Do not require hardware compatibility with GPU architectures other than that of the GPU on which the engine was + //! built. + kNONE = 0, + + //! Require that the engine is compatible with Ampere and newer GPUs. This will limit the combined usage of driver + //! reserved and backend kernel max shared memory to 48KiB, may reduce the number of available tactics for each + //! layer, and may prevent some fusions from occurring. Thus this can decrease the performance, especially for tf32 + //! models. + //! This option will disable cuDNN, cuBLAS, and cuBLASLt as tactic sources. + //! + //! This option is only supported for engines built on NVIDIA Ampere and later GPUs. + //! + //! The driver reserved shared memory can be queried from cuDeviceGetAttribute(&reservedShmem, + //! CU_DEVICE_ATTRIBUTE_RESERVED_SHARED_MEMORY_PER_BLOCK). + //! + kAMPERE_PLUS = 1, + + //! Require that the engine is compatible with GPUs that have the same Compute Capability + //! (https://developer.nvidia.com/cuda-gpus) as the one it was built on. This may decrease the performance compared + //! to an engine with no compatibility. + //! + //! This option will disable cuDNN, cuBLAS, and cuBLASLt as tactic sources. + //! + //! This option is only supported for engines built on NVIDIA Turing and later GPUs. + //! + kSAME_COMPUTE_CAPABILITY = 2, +}; + +namespace impl +{ +//! +//! Maximum number of elements in HardwareCompatibilityLevel enum. +//! +//! \see HardwareCompatibilityLevel +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 3; +}; +} // namespace impl + + +//! +//! \enum TilingOptimizationLevel +//! +//! \brief Define the optimization levels for Tiling +//! +//! TensorRT will try tiling optimization for on-chip caching if non-zero level is set. +//! This level determines how much effort TensorRT would take to find a better solution for performance. +//! +enum class TilingOptimizationLevel : int32_t +{ + //! Do not apply any tiling strategy. + kNONE = 0, + + //! Use a fast algorithm and heuristic based strategy. Slightly increases engine build time. + kFAST = 1, + + //! Increase search space and use a mixed heuristic/profiling strategy. + //! Moderately increases engine build time. + kMODERATE = 2, + + //! Increase search space even wider. Significantly increases engine build time. + kFULL = 3 + +}; + +namespace impl +{ +//! +//! Maximum number of elements in TilingOptimizationLevel enum. +//! +//! \see TilingOptimizationLevel +//! +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 4; +}; +} // namespace impl + +namespace v_1_0 +{ +class IProgressMonitor : public IVersionedInterface +{ +public: + IProgressMonitor() = default; + virtual ~IProgressMonitor() noexcept = default; + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IProgressMonitor", 1, 0}; + } + + //! + //! \brief Signal that a phase of the optimizer has started. + //! + //! \param phaseName The name of this phase for tracking purposes. + //! \param parentPhase The parent phase that this phase belongs to, or nullptr if there is no parent. + //! \param nbSteps The number of steps that are involved in this phase. + //! + //! The phaseStart function signals to the application that the current phase is beginning, and that it has a + //! certain number of steps to perform. If \p phaseParent is nullptr, then the phaseStart is beginning an + //! independent phase, and if \p phaseParent is specified, then the current phase, specified by \p phaseName, is + //! within the scope of the parent phase. \p nbSteps will always be a positive number. The phaseStart function + //! implies that the first step is being executed. TensorRT will signal when each step is complete. + //! + //! Phase names are human readable English strings which are unique within a single phase hierarchy but which can be + //! reused once the previous instance has completed. Phase names and their hierarchies may change between versions + //! of TensorRT. + //! + //! \see phaseFinish + //! + virtual void phaseStart(char const* phaseName, char const* parentPhase, int32_t nbSteps) noexcept = 0; + + //! + //! \brief Signal that a step of an optimizer phase has finished. + //! + //! \param phaseName The name of the innermost phase being executed. + //! \param step The step number that was completed. + //! + //! The stepComplete function signals to the application that TensorRT has finished the current \p step for the + //! phase \p phaseName, and will move onto the next step if there is one. The application can return false for + //! TensorRT to exit the build early. The step value will increase on subsequent calls in the range [0, nbSteps). + //! + //! \return true to continue to the next step or false to stop the build. + //! + virtual bool stepComplete(char const* phaseName, int32_t step) noexcept = 0; + + //! + //! \brief Signal that a phase of the optimizer has finished. + //! + //! \param phaseName The name of the phase that has finished. + //! + //! The phaseFinish function signals to the application that the phase is complete. This function may be called + //! before all steps in the range [0, nbSteps) have been reported to stepComplete. This scenario can be triggered by + //! error handling, internal optimizations, or when stepComplete returns false to request cancellation of the build. + //! + //! \see phaseStart + //! + virtual void phaseFinish(char const* phaseName) noexcept = 0; + +}; // class IProgressMonitor +} // namespace v_1_0 + +//! +//! \class IProgressMonitor +//! +//! \brief Application-implemented progress reporting interface for TensorRT. +//! +//! The IProgressMonitor is a user-defined object that TensorRT uses to report back when an internal algorithm has +//! started or finished a phase to help provide feedback on the progress of the optimizer. +//! +//! The IProgressMonitor will trigger its start function when a phase is entered and will trigger its finish function +//! when that phase is exited. Each phase consists of one or more steps. When each step is completed, the stepComplete +//! function is triggered. This will allow an application using the builder to communicate progress relative to when the +//! optimization step is expected to complete. +//! +//! The implementation of IProgressMonitor must be thread-safe so that it can be called from multiple internal threads. +//! The lifetime of the IProgressMonitor must exceed the lifetime of all TensorRT objects that use it. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IProgressMonitor, not +//! v_1_0::IProgressMonitor +//! +using IProgressMonitor = v_1_0::IProgressMonitor; + +//! +//! \class IBuilderConfig +//! +//! \brief Holds properties for configuring a builder to produce an engine. +//! +//! \see BuilderFlags +//! +class IBuilderConfig : public INoCopy +{ +public: + virtual ~IBuilderConfig() noexcept = default; + + //! + //! \brief Set the number of averaging iterations used when timing layers. + //! + //! When timing layers, the builder minimizes over a set of average times for layer execution. This parameter + //! controls the number of iterations used in averaging. + //! + //! \see getAvgTimingIterations() + //! + virtual void setAvgTimingIterations(int32_t avgTiming) noexcept + { + mImpl->setAvgTimingIterations(avgTiming); + } + + //! + //! \brief Query the number of averaging iterations. + //! + //! By default the number of averaging iterations is 1. + //! + //! \see setAvgTimingIterations() + //! + int32_t getAvgTimingIterations() const noexcept + { + return mImpl->getAvgTimingIterations(); + } + + //! + //! \brief Configure the builder to target specified EngineCapability flow. + //! + //! The flow means a sequence of API calls that allow an application to set up a runtime, engine, + //! and execution context in order to run inference. + //! + //! The supported flows are specified in the EngineCapability enum. + //! + void setEngineCapability(EngineCapability capability) noexcept + { + mImpl->setEngineCapability(capability); + } + + //! + //! \brief Query EngineCapability flow configured for the builder. + //! + //! By default it returns EngineCapability::kSTANDARD. + //! + //! \see setEngineCapability() + //! + EngineCapability getEngineCapability() const noexcept + { + return mImpl->getEngineCapability(); + } + + //! + //! \brief Set Int8 Calibration interface. + //! + //! The calibrator is to minimize the information loss during the INT8 quantization process. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED void setInt8Calibrator(IInt8Calibrator* calibrator) noexcept + { + mImpl->setInt8Calibrator(calibrator); + } + + //! + //! \brief Get Int8 Calibration interface. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED IInt8Calibrator* getInt8Calibrator() const noexcept + { + return mImpl->getInt8Calibrator(); + } + + //! + //! \brief Set the build mode flags to turn on builder options for this network. + //! + //! The flags are listed in the BuilderFlags enum. + //! The flags set configuration options to build the network. + //! + //! \param builderFlags The build option for an engine. + //! + //! \note This function will override the previous set flags, rather than bitwise ORing the new flag. + //! + //! \see getFlags() + //! + void setFlags(BuilderFlags builderFlags) noexcept + { + mImpl->setFlags(builderFlags); + } + + //! + //! \brief Get the build mode flags for this builder config. Defaults to 0. + //! + //! \return The build options as a bitmask. + //! + //! \see setFlags() + //! + BuilderFlags getFlags() const noexcept + { + return mImpl->getFlags(); + } + + //! + //! \brief clear a single build mode flag. + //! + //! clears the builder mode flag from the enabled flags. + //! + //! \see setFlags() + //! + void clearFlag(BuilderFlag builderFlag) noexcept + { + mImpl->clearFlag(builderFlag); + } + + //! + //! \brief Set a single build mode flag. + //! + //! Add the input builder mode flag to the already enabled flags. + //! + //! \see setFlags() + //! + void setFlag(BuilderFlag builderFlag) noexcept + { + mImpl->setFlag(builderFlag); + } + + //! + //! \brief Returns true if the build mode flag is set + //! + //! \see getFlags() + //! + //! \return True if flag is set, false if unset. + //! + bool getFlag(BuilderFlag builderFlag) const noexcept + { + return mImpl->getFlag(builderFlag); + } + + //! + //! \brief Set the device that this layer must execute on. + //! + //! \param layer which layer to execute. + //! \param deviceType that this layer must execute on. + //! If DeviceType is not set or is reset, TensorRT will use the default DeviceType set in the builder. + //! + //! \note The device type for a layer must be compatible with the safety flow (if specified). + //! For example a layer cannot be marked for DLA execution while the builder is configured for kSAFETY. + //! + //! \see getDeviceType() + //! + void setDeviceType(ILayer const* layer, DeviceType deviceType) noexcept + { + mImpl->setDeviceType(layer, deviceType); + } + + //! + //! \brief Get the device that this layer executes on. + //! + //! \return Returns DeviceType of the layer. + //! + DeviceType getDeviceType(ILayer const* layer) const noexcept + { + return mImpl->getDeviceType(layer); + } + + //! + //! \brief whether the DeviceType has been explicitly set for this layer + //! + //! \return true if device type is not default + //! + //! \see setDeviceType() getDeviceType() resetDeviceType() + //! + bool isDeviceTypeSet(ILayer const* layer) const noexcept + { + return mImpl->isDeviceTypeSet(layer); + } + + //! + //! \brief reset the DeviceType for this layer + //! + //! \see setDeviceType() getDeviceType() isDeviceTypeSet() + //! + void resetDeviceType(ILayer const* layer) noexcept + { + mImpl->resetDeviceType(layer); + } + + //! + //! \brief Checks if a layer can run on DLA. + //! + //! \return status true if the layer can on DLA else returns false. + //! + bool canRunOnDLA(ILayer const* layer) const noexcept + { + return mImpl->canRunOnDLA(layer); + } + + //! + //! \brief Sets the DLA core used by the network. Defaults to -1. + //! + //! \param dlaCore The DLA core to execute the engine on, in the range [0,getNbDlaCores()). + //! + //! This function is used to specify which DLA core to use via indexing, if multiple DLA cores are available. + //! + //! \warning if getNbDLACores() returns 0, then this function does nothing. + //! + //! \see IRuntime::setDLACore() getDLACore() + //! + void setDLACore(int32_t dlaCore) noexcept + { + mImpl->setDLACore(dlaCore); + } + + //! + //! \brief Get the DLA core that the engine executes on. + //! + //! \return assigned DLA core or -1 for DLA not present or unset. + //! + int32_t getDLACore() const noexcept + { + return mImpl->getDLACore(); + } + + //! + //! \brief Sets the default DeviceType to be used by the builder. It ensures that all the layers that can run on + //! this device will run on it, unless setDeviceType is used to override the default DeviceType for a layer. + //! + //! \see getDefaultDeviceType() + //! + void setDefaultDeviceType(DeviceType deviceType) noexcept + { + mImpl->setDefaultDeviceType(deviceType); + } + + //! + //! \brief Get the default DeviceType which was set by setDefaultDeviceType. + //! + //! By default it returns DeviceType::kGPU. + //! + DeviceType getDefaultDeviceType() const noexcept + { + return mImpl->getDefaultDeviceType(); + } + + //! + //! \brief Resets the builder configuration to defaults. + //! + //! Useful for initializing a builder config object to its original state. + //! + void reset() noexcept + { + mImpl->reset(); + } + + //! + //! \brief Set the CUDA stream that is used to profile this network. + //! + //! \param stream The CUDA stream used for profiling by the builder. + //! + //! \see getProfileStream() + //! + void setProfileStream(const cudaStream_t stream) noexcept + { + return mImpl->setProfileStream(stream); + } + + //! + //! \brief Get the CUDA stream that is used to profile this network. + //! + //! \return The CUDA stream set by setProfileStream, nullptr if setProfileStream has not been called. + //! + //! \see setProfileStream() + //! + cudaStream_t getProfileStream() const noexcept + { + return mImpl->getProfileStream(); + } + + //! + //! \brief Add an optimization profile. + //! + //! This function must be called at least once if the network has dynamic or shape input tensors. + //! This function may be called at most once when building a refittable engine, as more than + //! a single optimization profile are not supported for refittable engines. + //! + //! \param profile The new optimization profile, which must satisfy profile->isValid() == true + //! + //! \return The index of the optimization profile (starting from 0) if the input is valid, or -1 if the input is + //! not valid. + //! + int32_t addOptimizationProfile(IOptimizationProfile const* profile) noexcept + { + return mImpl->addOptimizationProfile(profile); + } + + //! + //! \brief Get number of optimization profiles. + //! + //! This is one higher than the index of the last optimization profile that has be defined (or + //! zero, if none has been defined yet). + //! + //! \return The number of the optimization profiles. + //! + int32_t getNbOptimizationProfiles() const noexcept + { + return mImpl->getNbOptimizationProfiles(); + } + + //! + //! \brief Set verbosity level of layer information exposed in NVTX annotations and IEngineInspector. + //! + //! Control how much layer information will be exposed in NVTX annotations and IEngineInspector. + //! + //! \see ProfilingVerbosity, getProfilingVerbosity(), IEngineInspector + //! + void setProfilingVerbosity(ProfilingVerbosity verbosity) noexcept + { + mImpl->setProfilingVerbosity(verbosity); + } + + //! + //! \brief Get verbosity level of layer information exposed in NVTX annotations and IEngineInspector. + //! + //! Get the current setting of verbosity level of layer information exposed in + //! NVTX annotations and IEngineInspector. Default value is ProfilingVerbosity::kLAYER_NAMES_ONLY. + //! + //! \see ProfilingVerbosity, setProfilingVerbosity(), IEngineInspector + //! + ProfilingVerbosity getProfilingVerbosity() const noexcept + { + return mImpl->getProfilingVerbosity(); + } + + //! + //! \brief Set Algorithm Selector. + //! + //! \param selector The algorithm selector to be set in the build config. + //! + //! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. + //! + TRT_DEPRECATED void setAlgorithmSelector(IAlgorithmSelector* selector) noexcept + { + mImpl->setAlgorithmSelector(selector); + } + + //! + //! \brief Get Algorithm Selector. + //! + //! \deprecated Deprecated in TensorRT 10.8. Please use editable mode in ITimingCache instead. + //! + TRT_DEPRECATED IAlgorithmSelector* getAlgorithmSelector() const noexcept + { + return mImpl->getAlgorithmSelector(); + } + + //! + //! \brief Add a calibration profile. + //! + //! Calibration optimization profile must be set if int8 calibration is used to set scales for a network with + //! runtime dimensions. + //! + //! \param profile The new calibration profile, which must satisfy profile->isValid() == true or be nullptr. + //! MIN and MAX values will be overwritten by kOPT. + //! + //! \return True if the calibration profile was set correctly. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED bool setCalibrationProfile(IOptimizationProfile const* profile) noexcept + { + return mImpl->setCalibrationProfile(profile); + } + + //! + //! \brief Get the current calibration profile. + //! + //! \return A pointer to the current calibration profile or nullptr if calibration profile is unset. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED IOptimizationProfile const* getCalibrationProfile() noexcept + { + return mImpl->getCalibrationProfile(); + } + + //! + //! \brief Set the quantization flags. + //! + //! The flags are listed in the QuantizationFlag enum. + //! The flags set configuration options to quantize the network in int8. + //! + //! \param flags The quantization flags. + //! + //! \note This function will override the previous set flags, rather than bitwise ORing the new flag. + //! + //! \see getQuantizationFlags() + //! + //! \deprecated Deprecated in TensorRT 10.10. Superseded by explicit quantization. + //! + TRT_DEPRECATED void setQuantizationFlags(QuantizationFlags flags) noexcept + { + mImpl->setQuantizationFlags(flags); + } + + //! + //! \brief Get the quantization flags. + //! + //! \return The quantization flags as a bitmask. + //! + //! \see setQuantizationFlag() + //! + //! \deprecated Deprecated in TensorRT 10.10. Superseded by explicit quantization. + //! + TRT_DEPRECATED QuantizationFlags getQuantizationFlags() const noexcept + { + return mImpl->getQuantizationFlags(); + } + + //! + //! \brief clear a quantization flag. + //! + //! Clears the quantization flag from the enabled quantization flags. + //! + //! \see setQuantizationFlags() + //! + //! \deprecated Deprecated in TensorRT 10.10. Superseded by explicit quantization. + //! + TRT_DEPRECATED void clearQuantizationFlag(QuantizationFlag flag) noexcept + { + mImpl->clearQuantizationFlag(flag); + } + + //! + //! \brief Set a single quantization flag. + //! + //! Add the input quantization flag to the already enabled quantization flags. + //! + //! \see setQuantizationFlags() + //! + //! \deprecated Deprecated in TensorRT 10.10. Superseded by explicit quantization. + //! + TRT_DEPRECATED void setQuantizationFlag(QuantizationFlag flag) noexcept + { + mImpl->setQuantizationFlag(flag); + } + + //! + //! \brief Returns true if the quantization flag is set. + //! + //! \see getQuantizationFlags() + //! + //! \return True if quantization flag is set, false if unset. + //! + //! \deprecated Deprecated in TensorRT 10.10. Superseded by explicit quantization. + //! + TRT_DEPRECATED bool getQuantizationFlag(QuantizationFlag flag) const noexcept + { + return mImpl->getQuantizationFlag(flag); + } + + //! + //! \brief Set tactic sources. + //! + //! This bitset controls which tactic sources TensorRT is allowed to use for tactic + //! selection. + //! + //! Multiple tactic sources may be combined with a bitwise OR operation. For example, + //! to enable cublas and cublasLt as tactic sources, use a value of: + //! + //! 1U << static_cast(TacticSource::kCUBLAS) | 1U << + //! static_cast(TacticSource::kCUBLAS_LT) + //! + //! \see getTacticSources + //! + //! \return true if the tactic sources in the build configuration were updated. + //! The tactic sources in the build configuration will not be updated if the provided value is invalid. + //! + bool setTacticSources(TacticSources tacticSources) noexcept + { + return mImpl->setTacticSources(tacticSources); + } + + //! + //! \brief Get tactic sources. + //! + //! Get the tactic sources currently set in the engine build + //! configuration. + //! + //! \see setTacticSources() + //! + //! \return tactic sources + //! + TacticSources getTacticSources() const noexcept + { + return mImpl->getTacticSources(); + } + + //! + //! \brief Create timing cache + //! + //! Create ITimingCache instance from serialized raw data. The created timing cache doesn't belong to + //! a specific IBuilderConfig. It can be shared by multiple builder instances. Call setTimingCache() + //! before launching a builder to attach cache to builder instance. + //! The lifetime of the ITimingCache must exceed the lifetime of all builders that use it. + //! + //! \param blob A pointer to the raw data that contains serialized timing cache + //! \param size The size in bytes of the serialized timing cache. Size 0 means create a new cache from scratch + //! + //! \see setTimingCache + //! + //! \return the pointer to ITimingCache created + //! + nvinfer1::ITimingCache* createTimingCache(void const* blob, std::size_t size) const noexcept + { + return mImpl->createTimingCache(blob, size); + } + + //! + //! \brief Attach a timing cache to IBuilderConfig + //! + //! The timing cache has verification header to make sure the provided cache can be used in current environment. + //! A failure will be reported if the CUDA device property in the provided cache is different from current + //! environment. ignoreMismatch = true skips strict verification and allows loading cache created from a different + //! device. + //! + //! The cache must not be destroyed until after the engine is built. + //! + //! \param cache the timing cache to be used + //! \param ignoreMismatch whether or not allow using a cache that contains different CUDA device property + //! + //! \return true if set successfully, false otherwise + //! + //! \warning Using cache generated from devices with different CUDA device properties may lead to + //! functional/performance bugs. + //! + bool setTimingCache(ITimingCache const& cache, bool ignoreMismatch) noexcept + { + return mImpl->setTimingCache(cache, ignoreMismatch); + } + + //! + //! \brief Get the pointer to the timing cache from current IBuilderConfig + //! + //! \return pointer to the timing cache used in current IBuilderConfig + //! + nvinfer1::ITimingCache const* getTimingCache() const noexcept + { + return mImpl->getTimingCache(); + } + + //! + //! \brief Set the memory size for the memory pool. + //! + //! TensorRT layers access different memory pools depending on the operation. + //! This function sets in the IBuilderConfig the size limit, specified by \p poolSize, + //! for the corresponding memory pool, specified by \p pool. + //! TensorRT will build a plan file that is constrained by these limits or report + //! which constraint caused the failure. + //! + //! If the size of the pool, specified by \p poolSize, fails to meet the size requirements + //! for the pool, this function does nothing and emits the recoverable error, + //! ErrorCode::kINVALID_ARGUMENT, to the registered IErrorRecorder. + //! + //! If the size of the pool is larger than the maximum possible value for the + //! configuration, this function does nothing and emits ErrorCode::kUNSUPPORTED_STATE. + //! + //! If the pool does not exist on the requested device type when building + //! the network, a warning is emitted to the logger, and the memory pool + //! value is ignored. + //! + //! Refer to MemoryPoolType to see the size requirements for each pool. + //! + //! \param pool The memory pool to limit the available memory for. + //! \param poolSize The size of the pool in bytes. + //! + //! \see getMemoryPoolLimit, MemoryPoolType + //! + void setMemoryPoolLimit(MemoryPoolType pool, std::size_t poolSize) noexcept + { + mImpl->setMemoryPoolLimit(pool, poolSize); + } + + //! + //! \brief Get the memory size limit of the memory pool. + //! + //! Retrieve the memory size limit of the corresponding pool in bytes. + //! If setMemoryPoolLimit for the pool has not been called, this returns the default + //! value used by TensorRT. This default value is not necessarily the maximum possible + //! value for that configuration. + //! + //! \param pool The memory pool to get the limit for. + //! + //! \returns The size of the memory limit, in bytes, for the corresponding pool. + //! + //! \see setMemoryPoolLimit + //! + std::size_t getMemoryPoolLimit(MemoryPoolType pool) const noexcept + { + return mImpl->getMemoryPoolLimit(pool); + } + + //! + //! \brief Enable or disable a specific preview feature + //! + //! Allows enabling or disabling experimental features, which are not enabled by default in the + //! current release. + //! + //! Refer to PreviewFeature for additional information, and a list of the available features. + //! + //! \param feature the feature to enable / disable + //! \param enable true for enable, false for disable + //! + //! \see PreviewFeature, getPreviewFeature + //! + void setPreviewFeature(PreviewFeature feature, bool enable) noexcept + { + mImpl->setPreviewFeature(feature, enable); + } + + //! + //! \brief Get status of preview feature + //! + //! \param feature the feature to query + //! + //! \returns true if the \p feature is enabled, false otherwise + //! + //! \see PreviewFeature, setPreviewFeature + //! + bool getPreviewFeature(PreviewFeature feature) const noexcept + { + return mImpl->getPreviewFeature(feature); + } + + //! + //! \brief Set builder optimization level + //! + //! Set the builder optimization level. Setting a higher optimization + //! level allows the optimizer to spend more time searching for optimization opportunities. The + //! resulting engine may have better performance compared to an engine built with a lower optimization level. + //! + //! The default optimization level is 3. Valid values include integers from 0 to the maximum optimization level, + //! which is currently 5. Setting it to greater than the maximum level results in behavior identical to the + //! maximum level. + //! + //! Below are the descriptions about each builder optimization level: + //! + //! - Level 0: This enables the fastest compilation by disabling dynamic kernel generation and selecting the first + //! tactic that succeeds in execution. This will also not respect a timing cache. + //! - Level 1: Available tactics are sorted by heuristics, but only the top are tested to select the best. If a + //! dynamic kernel is generated its compile optimization is low. + //! - Level 2: Available tactics are sorted by heuristics, but only the fastest tactics are tested to select the + //! best. + //! - Level 3: Apply heuristics to see if a static precompiled kernel is applicable or if a new one has to be + //! compiled dynamically. + //! - Level 4: Always compiles a dynamic kernel. + //! - Level 5: Always compiles a dynamic kernel and compares it to static kernels. + //! + //! \param level The optimization level to set to. Must be non-negative. + //! + //! \see getBuilderOptimizationLevel + //! + void setBuilderOptimizationLevel(int32_t level) noexcept + { + mImpl->setBuilderOptimizationLevel(level); + } + + //! + //! \brief Get builder optimization level + //! + //! \returns the current builder optimization level + //! + //! \see setBuilderOptimizationLevel + //! + int32_t getBuilderOptimizationLevel() noexcept + { + return mImpl->getBuilderOptimizationLevel(); + } + + //! + //! \brief Set the hardware compatibility level. + //! + //! Hardware compatibility allows an engine to run on GPU + //! architectures other than that of the GPU where the engine was + //! built. + //! + //! The default hardware compatibility level is HardwareCompatibilityLevel::kNONE. + //! + //! \param hardwareCompatibilityLevel The level of hardware + //! compatibility. + //! + void setHardwareCompatibilityLevel(HardwareCompatibilityLevel hardwareCompatibilityLevel) noexcept + { + mImpl->setHardwareCompatibilityLevel(hardwareCompatibilityLevel); + } + + //! + //! \brief Get the hardware compatibility level. + //! + //! \return hardwareCompatibilityLevel The level of hardware + //! compatibility. + //! + //! \see setHardwareCompatibilityLevel() + //! + HardwareCompatibilityLevel getHardwareCompatibilityLevel() const noexcept + { + return mImpl->getHardwareCompatibilityLevel(); + } + + //! + //! \brief Set the plugin libraries to be serialized with version-compatible engines. + //! + //! Each entry in the list of libraries must be unique. + //! + //! \param paths The paths of plugin libraries. + //! \param nbPaths The number of paths. + //! + void setPluginsToSerialize(char const* const* paths, int32_t nbPaths) noexcept + { + mImpl->setPluginsToSerialize(paths, nbPaths); + } + + //! + //! \brief Get the plugin library path to be serialized with version-compatible engines. + //! + //! \param index Index of the plugin library path in the list. Should be in the range `[0, + //! getNbPluginsToSerialize())`. + //! + //! \return The path to the plugin library. + //! + char const* getPluginToSerialize(int32_t index) const noexcept + { + return mImpl->getPluginToSerialize(index); + } + + //! + //! \brief Get the number of plugin library paths to be serialized with version-compatible engines. + //! + //! \return The number of paths. + //! + int32_t getNbPluginsToSerialize() const noexcept + { + return mImpl->getNbPluginsToSerialize(); + } + + //! + //! \brief Set the maximum number of auxiliary streams that TRT is allowed to use. + //! + //! If the network contains operators that can run in parallel, TRT can execute them using auxiliary streams + //! in addition to the one provided to the IExecutionContext::enqueueV3() call. + //! + //! The default maximum number of auxiliary streams is determined by the heuristics in TensorRT on whether enabling + //! multi-stream would improve the performance. This behavior can be overridden by calling this API to set the + //! maximum number of auxiliary streams explicitly. Set this to 0 to enforce single-stream inference. + //! + //! The resulting engine may use fewer auxiliary streams than the maximum if the network does not contain enough + //! parallelism or if TensorRT determines that using more auxiliary streams does not help improve the performance. + //! + //! \note Allowing more auxiliary streams does not always give better performance since there will be + //! synchronizations overhead between streams. Using CUDA graphs at runtime can help reduce the overhead caused by + //! cross-stream synchronizations. + //! + //! \note Using more auxiliary leads to more memory usage at runtime since some activation memory blocks will not + //! be able to be reused. + //! + //! \param nbStreams The maximum number of auxiliary streams that TRT is allowed to use. + //! + //! \see getMaxAuxStreams(), ICudaEngine::getNbAuxStreams(), IExecutionContext::setAuxStreams() + //! + void setMaxAuxStreams(int32_t nbStreams) noexcept + { + mImpl->setMaxAuxStreams(nbStreams); + } + + //! + //! \brief Get the maximum number of auxiliary streams that TRT is allowed to use. + //! + //! \see setMaxAuxStreams() + //! + int32_t getMaxAuxStreams() const noexcept + { + return mImpl->getMaxAuxStreams(); + } + + //! + //! \brief Sets the progress monitor for building a network. + //! + //! \param monitor The progress monitor to assign to the IBuilderConfig. + //! + //! The progress monitor signals to the application when different phases of + //! the compiler are being executed. Setting to nullptr unsets the monitor so + //! that the application is not signaled. + //! + //! \see IBuilderConfig::getProgressMonitor + //! + void setProgressMonitor(IProgressMonitor* monitor) noexcept + { + return mImpl->setProgressMonitor(monitor); + } + + //! + //! \return The progress monitor set by the application or nullptr. + //! + //! \see IBuilderConfig::setProgressMonitor + //! + IProgressMonitor* getProgressMonitor() const noexcept + { + return mImpl->getProgressMonitor(); + } + + //! + //! \brief Set the target platform for runtime execution. + //! + //! Cross-platform compatibility allows an engine to be built and executed on different platforms. + //! + //! The default cross-platform target is RuntimePlatform::kSAME_AS_BUILD. + //! + //! \param runtimePlatform The target platform for runtime execution. + //! + //! \see IBuilderConfig::getRuntimePlatform() + //! + void setRuntimePlatform(RuntimePlatform runtimePlatform) noexcept + { + mImpl->setRuntimePlatform(runtimePlatform); + } + + //! + //! \brief Get the target platform for runtime execution. + //! + //! \return The target platform for runtime execution. + //! + //! \see IBuilderConfig::setRuntimePlatform() + //! + RuntimePlatform getRuntimePlatform() const noexcept + { + return mImpl->getRuntimePlatform(); + } + + //! + //! \brief Set the maximum number of tactics to time when there is a choice of tactics. + //! + //! This function controls the number of tactics timed when there are multiple tactics to choose from. + //! + //! \see getMaxNbTactics() + //! + void setMaxNbTactics(int32_t maxNbTactics) noexcept + { + mImpl->setMaxNbTactics(maxNbTactics); + } + + //! + //! \brief Query the maximum number of tactics timed when there is a choice. + //! + //! By default the value is -1, indicating TensorRT can determine the number of tactics based on its own heuristic. + //! + //! \see setMaxNbTactics() + //! + int32_t getMaxNbTactics() const noexcept + { + return mImpl->getMaxNbTactics(); + } + + //! + //! \brief Set the Tiling optimization level. + //! + //! Tiling allows TensorRT to try an on-chip caching strategy. + //! + //! The default getTilingOptimizationLevel is TilingOptimizationLevel::kNONE. + //! + //! \param level The level of Tiling optimization. + //! + //! \return True if successful, false otherwise + //! + bool setTilingOptimizationLevel(TilingOptimizationLevel level) noexcept + { + return mImpl->setTilingOptimizationLevel(level); + } + + //! + //! \brief Get the Tiling optimization level. + //! + //! \return TilingOptimizationLevel The level of Tiling optimization. + //! + //! \see setTilingOptimizationLevel() + //! + TilingOptimizationLevel getTilingOptimizationLevel() const noexcept + { + return mImpl->getTilingOptimizationLevel(); + } + + //! + //! \brief Set the L2 cache usage limit for Tiling optimization. + //! + //! Parameter for tiling optimization. This API only takes effect when TilingOptimizationLevel is not kNONE. + //! \note If setL2LimitForTiling() has not been called, TensorRT would choose a default value between 0 and L2 + //! capacity size. + //! + //! \param size The size of the L2 cache usage limit for Tiling optimization. + //! + //! \return True if successful, false otherwise + //! + bool setL2LimitForTiling(int64_t size) noexcept + { + return mImpl->setL2LimitForTiling(size); + } + + //! + //! \brief Get the L2 cache usage limit for tiling optimization. + //! + //! \return L2 cache usage limit for tiling optimization. + //! + //! \see setL2LimitForTiling() + //! + int64_t getL2LimitForTiling() const noexcept + { + return mImpl->getL2LimitForTiling(); + } + + //! + //! \brief Set a config string for remote auto tuning. + //! + //! Remote auto-tuning is supported only for engines built with EngineCapability::kSAFETY. + //! + //! \param config The config string to be used during remote auto tuning. + //! + //! \return True if successful, false otherwise + //! + bool setRemoteAutoTuningConfig(char const* config) noexcept + { + return mImpl->setRemoteAutoTuningConfig(config); + } + + //! + //! \brief Get a config string for remote auto tuning. + //! + //! \return The current string for remote auto tuning, or nullptr if not set. + //! + char const* getRemoteAutoTuningConfig() const noexcept + { + return mImpl->getRemoteAutoTuningConfig(); + } + +protected: + apiv::VBuilderConfig* mImpl; +}; + +//! +//! \brief Represents one or more NetworkDefinitionCreationFlag flags +//! using binary OR operations. +//! e.g., 1U << NetworkDefinitionCreationFlag::kSTRONGLY_TYPED +//! +//! \see IBuilder::createNetworkV2 +//! +using NetworkDefinitionCreationFlags = uint32_t; + +//! +//! \enum NetworkDefinitionCreationFlag +//! +//! \brief List of immutable network properties expressed at network creation time. +//! NetworkDefinitionCreationFlag is used with createNetworkV2() to specify immutable properties of the network. +//! +//! \see IBuilder::createNetworkV2 +//! +enum class NetworkDefinitionCreationFlag : int32_t +{ + //! Ignored because networks are always "explicit batch" in TensorRT 10.0. + //! + //! \deprecated Deprecated in TensorRT 10.0. + kEXPLICIT_BATCH TRT_DEPRECATED_ENUM = 0, + + //! Mark the network to be strongly typed. + //! Every tensor in the network has a data type defined in the network following only type inference rules and the + //! inputs/operator annotations. Setting layer precision and layer output types is not allowed, and the network + //! output types will be inferred based on the input types and the type inference rules. + kSTRONGLY_TYPED = 1, + //! If set, for a Python plugin with both AOT and JIT implementations, the JIT implementation will be used. + //! Any plugin-specific JIT/AOT specification may override this. + //! Cannot be used in conjunction with NetworkDefinitionCreationFlag::kPREFER_AOT_PYTHON_PLUGINS. + kPREFER_JIT_PYTHON_PLUGINS = 2, + + //! If set, for a Python plugin with both AOT and JIT implementations, the AOT implementation will be used. + //! Any plugin-specific JIT/AOT specification may override this. + //! Cannot be used in conjunction with NetworkDefinitionCreationFlag::kPREFER_JIT_PYTHON_PLUGINS. + kPREFER_AOT_PYTHON_PLUGINS = 3, +}; + +//! +//! Maximum number of elements in NetworkDefinitionCreationFlag enum. +//! +//! \see NetworkDefinitionCreationFlag +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 4; +} + +//! +//! \class IBuilder +//! +//! \brief Builds an engine from a network definition. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IBuilder : public INoCopy +{ +public: + virtual ~IBuilder() noexcept = default; + + //! + //! \brief Determine whether the platform has fast native fp16. + //! + //! \deprecated Deprecated in TensorRT 10.5. Please query data type support from CUDA directly. + //! + TRT_DEPRECATED bool platformHasFastFp16() const noexcept + { + return mImpl->platformHasFastFp16(); + } + + //! + //! \brief Determine whether the platform has fast native int8. + //! + //! \deprecated Deprecated in TensorRT 10.5. Please query data type support from CUDA directly. + //! + TRT_DEPRECATED bool platformHasFastInt8() const noexcept + { + return mImpl->platformHasFastInt8(); + } + + //! + //! \brief Get the maximum batch size DLA can support. + //! For any tensor the total volume of index dimensions combined(dimensions other than CHW) with the requested + //! batch size should not exceed the value returned by this function. + //! + //! \warning getMaxDLABatchSize does not work with dynamic shapes. + //! + int32_t getMaxDLABatchSize() const noexcept + { + return mImpl->getMaxDLABatchSize(); + } + + //! + //! \brief Return the number of DLA engines available to this builder. + //! + int32_t getNbDLACores() const noexcept + { + return mImpl->getNbDLACores(); + } + + //! + //! \brief Set the GPU allocator. + //! + //! \param allocator Set the GPU allocator to be used by the builder. All GPU memory acquired will use this + //! allocator. If NULL is passed, the default allocator will be used. + //! + //! Default: allocateAsync uses cudaMallocAsync if cudaDevAttrMemoryPoolsSupported returns true, otherwise falls + //! back to cudaMalloc. allocate always uses cudaMalloc. + //! + //! \note This allocator will be passed to any engines created via the builder; thus the lifetime of the allocator + //! must span the lifetime of those engines as + //! well as that of the builder. If nullptr is passed, the default allocator will be used. + //! + void setGpuAllocator(IGpuAllocator* allocator) noexcept + { + mImpl->setGpuAllocator(allocator); + } + + //! + //! \brief Create a builder configuration object. + //! + //! The caller owns the new IBuilderConfig, which must be destroyed with operator delete + //! before this IBuilder is destroyed. Destroying this IBuilder before destroying the + //! IBuilderConfig causes undefined behavior. + //! + //! \see IBuilderConfig + //! + nvinfer1::IBuilderConfig* createBuilderConfig() noexcept + { + return mImpl->createBuilderConfig(); + } + + //! + //! \brief Create a network definition object + //! + //! Creates a network definition object with immutable properties specified using the flags parameter. + //! + //! createNetworkV2 supports creating network with properties from NetworkDefinitionCreationFlags. + //! + //! CreateNetworkV2 supports dynamic shapes and explicit batch dimensions by default. + //! + //! createNetworkV2 with NetworkDefinitionCreationFlag::kSTRONGLY_TYPED flag supports creating a strongly typed plan + //! where tensor data types are inferred from network input types and operator type specification. + //! + //! The caller owns the new INetworkDefinition, which must be destroyed with operator delete + //! before this IBuilder is destroyed. Destroying this IBuilder before destroying the + //! INetworkDefinition causes undefined behavior. + //! + //! \param flags Bitset of NetworkDefinitionCreationFlags specifying network properties combined with bitwise OR, + //! e.g., 1U << NetworkDefinitionCreationFlag::kSTRONGLY_TYPED. + //! + //! \see INetworkDefinition, NetworkDefinitionCreationFlags + //! + nvinfer1::INetworkDefinition* createNetworkV2(NetworkDefinitionCreationFlags flags) noexcept + { + return mImpl->createNetworkV2(flags); + } + + //! + //! \brief Create a new optimization profile. + //! + //! If the network has any dynamic input tensors, the appropriate calls to setDimensions() must be made. + //! Likewise, if there are any shape input tensors, the appropriate calls to setShapeValues() are required. + //! The builder retains ownership of the created optimization profile and returns a raw pointer, i.e. the users + //! must not attempt to delete the returned pointer. + //! + //! \see IOptimizationProfile + //! + nvinfer1::IOptimizationProfile* createOptimizationProfile() noexcept + { + return mImpl->createOptimizationProfile(); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + //! + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. + //! A nullptr will be returned if setErrorRecorder has not been called. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + + //! + //! \brief Resets the builder state to default values. + //! + void reset() noexcept + { + mImpl->reset(); + } + + //! + //! \brief Determine whether the platform has TF32 support. + //! + //! \deprecated Deprecated in TensorRT 10.5. Please query data type support from CUDA directly. + //! + TRT_DEPRECATED bool platformHasTf32() const noexcept + { + return mImpl->platformHasTf32(); + } + + //! + //! \brief Builds and serializes a network for the given INetworkDefinition and IBuilderConfig. + //! + //! This function allows building and serialization of a network without creating an engine. + //! + //! \param network Network definition. + //! \param config Builder configuration. + //! + //! \return A pointer to a IHostMemory object that contains a serialized network. + //! + //! \note This function will synchronize the CUDA stream returned by \p config.getProfileStream() before returning. + //! + //! \see INetworkDefinition, IBuilderConfig, IHostMemory + //! + nvinfer1::IHostMemory* buildSerializedNetwork(INetworkDefinition& network, IBuilderConfig& config) noexcept + { + return mImpl->buildSerializedNetwork(network, config); + } + + //! + //! \brief Builds and serializes a network into stream for the given INetworkDefinition and IBuilderConfig. + //! + //! This function allows building and serialization of a network without creating an engine. The engine is + //! finally serialized into the writer stream. + //! + //! \param network Network definition. + //! \param config Builder configuration. + //! \param writer Output writer stream. + //! + //! \return true if build succeed, otherwise false. + //! + //! \note This function will synchronize the CUDA stream returned by \p config.getProfileStream() before returning. + //! + //! \see INetworkDefinition, IBuilderConfig, IStreamWriter + //! + bool buildSerializedNetworkToStream( + INetworkDefinition& network, IBuilderConfig& config, IStreamWriter& writer) noexcept + { + return mImpl->buildSerializedNetworkToStream(network, config, writer); + } + + //! + //! \brief Extended form of buildSerializedNetwork that optionally permits getting the kernelText. + //! + //! Similar to two-argument form, except that if an engine with safe capability is successfully built + //! and there are kernels, sets kernelText to ..... Otherwise sets kernelText=nullptr. + //! + //! This function allows building and serialization of a network without creating an engine. + //! + //! \param network Network definition. + //! \param config Builder configuration. + //! \param kernelText A reference to a pointer to a IHostMemory object that will be set to the kernel CPP code text + //! + //! \return A pointer to a IHostMemory object that contains a serialized network. + //! + //! \note This function will synchronize the CUDA stream returned by \p config.getProfileStream() before returning. + //! + //! \see INetworkDefinition, IBuilderConfig, IHostMemory + //! + nvinfer1::IHostMemory* buildSerializedNetwork( + INetworkDefinition& network, IBuilderConfig& config, IHostMemory*& kernelText) noexcept + { + return mImpl->buildSerializedNetworkWithKernelText(network, config, kernelText); + } + + //! + //! \brief Builds a network for the given INetworkDefinition and IBuilderConfig. + //! + //! \param network Network definition. + //! \param config Builder configuration. + //! + //! \return A pointer to a ICudaEngine object that contains an engine. + //! + //! \note This function will synchronize the CUDA stream returned by \p config.getProfileStream() before returning. + //! + //! \note This function does not support \p BuilderFlag::kVERSION_COMPATIBLE. + //! Please use \p buildSerializedNetwork to get a version compatible engine. + //! + //! \see INetworkDefinition, IBuilderConfig, ICudaEngine + //! + nvinfer1::ICudaEngine* buildEngineWithConfig(INetworkDefinition& network, IBuilderConfig& config) noexcept + { + return mImpl->buildEngineWithConfig(network, config); + } + + //! + //! \brief Checks that a network is within the scope of the IBuilderConfig settings. + //! + //! \param network The network definition to check for configuration compliance. + //! \param config The configuration of the builder to use when checking \p network. + //! + //! Given an INetworkDefinition, \p network, and an IBuilderConfig, \p config, check if + //! the network falls within the constraints of the builder configuration based on the + //! EngineCapability, BuilderFlag, and DeviceType. If the network is within the constraints, + //! then the function returns true, and false if a violation occurs. This function reports + //! the conditions that are violated to the registered ErrorRecorder. + //! + //! \return True if network is within the scope of the restrictions specified by the builder config, + //! false otherwise. + //! + //! \note A `true` return value does not guarantee that engine building will succeed, as backends may reject it for + //! reasons not detectable with this fast validation. To definitively check whether a network can be built with a + //! given config, use \p buildEngineWithConfig or \p buildSerializedNetwork (depending on the engine capability). + //! + //! \note This function will synchronize the CUDA stream returned by \p config.getProfileStream() before returning. + //! + bool isNetworkSupported(INetworkDefinition const& network, IBuilderConfig const& config) const noexcept + { + return mImpl->isNetworkSupported(network, config); + } + + //! + //! \brief get the logger with which the builder was created + //! + //! \return the logger + //! + ILogger* getLogger() const noexcept + { + return mImpl->getLogger(); + } + + //! + //! \brief Set the maximum number of threads. + //! + //! \param maxThreads The maximum number of threads that can be used by the builder. + //! + //! \return True if successful, false otherwise. + //! + //! The default value is 1 and includes the current thread. + //! A value greater than 1 permits TensorRT to use multi-threaded algorithms. + //! A value less than 1 triggers a kINVALID_ARGUMENT error. + //! + bool setMaxThreads(int32_t maxThreads) noexcept + { + return mImpl->setMaxThreads(maxThreads); + } + + //! + //! \brief get the maximum number of threads that can be used by the builder. + //! + //! Retrieves the maximum number of threads that can be used by the builder. + //! + //! \return The maximum number of threads that can be used by the builder. + //! + //! \see setMaxThreads() + //! + int32_t getMaxThreads() const noexcept + { + return mImpl->getMaxThreads(); + } + + //! + //! \brief get the local plugin registry that can be used by the builder. + //! + //! \return The local plugin registry that can be used by the builder. + //! + IPluginRegistry& getPluginRegistry() noexcept + { + return mImpl->getPluginRegistry(); + } + +protected: + apiv::VBuilder* mImpl; +}; + +} // namespace nvinfer1 + +//! +//! Internal C entry point for creating IBuilder. +//! @private +//! +extern "C" TENSORRTAPI void* createInferBuilder_INTERNAL(void* logger, int32_t version) noexcept; + +namespace nvinfer1 +{ +namespace +{ + +//! +//! \brief Create an instance of an IBuilder class. +//! +//! \param logger The logging class for the builder. +//! +//! unnamed namespace avoids linkage surprises when linking objects built with different versions of this header. +//! +inline IBuilder* createInferBuilder(ILogger& logger) noexcept +{ + return static_cast(createInferBuilder_INTERNAL(&logger, NV_TENSORRT_VERSION)); +} + +} // namespace + +//! +//! \brief Return the plugin registry for building a Standard engine, or nullptr if no registry exists. +//! +//! Also return nullptr if the input argument is not EngineCapability::kSTANDARD. +//! Engine capabilities EngineCapability::kSTANDARD and EngineCapability::kSAFETY have distinct plugin registries. +//! Use IPluginRegistry::registerCreator from the registry to register plugins. +//! Plugins registered in a registry associated with a specific engine capability are only available when +//! building engines with that engine capability. +//! +//! There is no plugin registry for EngineCapability::kDLA_STANDALONE. +//! +extern "C" TENSORRTAPI nvinfer1::IPluginRegistry* getBuilderPluginRegistry( + nvinfer1::EngineCapability capability) noexcept; + +//! +//! \brief Set a custom directory path for loading internal TensorRT libraries when building engines. +//! +//! \param path The path to prepend to internal library names. +//! \return true if the path was successfully set, updated, or reset (by passing empty string). +//! false if it could not be set due to null pointer or an invalid path. +//! +//! This API take effect globally for all engines built by the current process. +//! +extern "C" TENSORRTAPI bool setInternalLibraryPath(AsciiChar const* path) noexcept; + +namespace safe +{ +//! Forward declaration +class IPluginRegistry; +} // namespace safe + +//! +//! \brief Return the plugin registry for building a Safety engine, or nullptr if no registry exists. +//! +//! Also return nullptr if the input argument is not EngineCapability::kSAFETY. +//! When building a Standard engine, use nvinfer1::getBuilderPluginRegistry(). +//! Use safe::IPluginRegistry::registerCreator from the registry to register plugins. +//! +extern "C" TRT_DEPRECATED_API nvinfer1::safe::IPluginRegistry* getBuilderSafePluginRegistry( + nvinfer1::EngineCapability capability) noexcept; + +} // namespace nvinfer1 + +#endif // NV_INFER_H diff --git a/tensorrt/include/NvInferImpl.h b/tensorrt/include/NvInferImpl.h new file mode 100644 index 0000000000000000000000000000000000000000..dc971415c267bb702579284024e15c2aa34e2ef7 --- /dev/null +++ b/tensorrt/include/NvInferImpl.h @@ -0,0 +1,1469 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_IMPL_H +#define NV_INFER_IMPL_H + +#include "NvInferLegacyDims.h" +#include "NvInferRuntimeCommon.h" + +// @cond SuppressDoxyWarnings + +namespace nvinfer1 +{ + +class ILogger; + +namespace v_1_0 +{ +class IProgressMonitor; +} // namespace v_1_0 +using IProgressMonitor = v_1_0::IProgressMonitor; + +namespace v_1_0 +{ +class IAlgorithmSelector; +} // namespace v_1_0 +using IAlgorithmSelector = v_1_0::IAlgorithmSelector; + +namespace v_1_0 +{ +class IProfiler; +} // namespace v_1_0 +using IProfiler = v_1_0::IProfiler; + +namespace v_1_0 +{ +class IOutputAllocator; +} // namespace v_1_0 +using IOutputAllocator = v_1_0::IOutputAllocator; + +namespace v_1_0 +{ +class IDebugListener; +} // namespace v_1_0 +using IDebugListener = v_1_0::IDebugListener; + +class IActivationLayer; +class IAlgorithm; +class IAlgorithmContext; +class IAlgorithmIOInfo; +class IAlgorithmVariant; +class IAssertionLayer; +class IAttention; +class IBuilder; +class IBuilderConfig; +class IConcatenationLayer; +class IConditionLayer; +class IConstantLayer; +class IConvolutionLayer; +class ICudaEngine; +class ICumulativeLayer; +class IDeconvolutionLayer; +class IDequantizeLayer; +class IDimensionExpr; +class IDynamicQuantizeLayer; +class IEinsumLayer; +class IElementWiseLayer; +class IEngineInspector; +class IExecutionContext; +class IFillLayer; +class IGatherLayer; +class IGridSampleLayer; +class IHostMemory; +class IIdentityLayer; +class ICastLayer; +class IIfConditional; +class IIfConditionalInputLayer; +class IIfConditionalOutputLayer; +class IInt8Calibrator; +class IIteratorLayer; +class IKVCacheUpdateLayer; +class ILayer; +class ILoop; +class ILoopOutputLayer; +class ILRNLayer; +class IMatrixMultiplyLayer; +class IMoELayer; +class IDistCollectiveLayer; +class INetworkDefinition; +class INormalizationLayer; +class INMSLayer; +class INonZeroLayer; +class IOneHotLayer; +class IOptimizationProfile; +class IPaddingLayer; +class IParametricReLULayer; +class IPlugin; +class IPluginExt; +class IPluginFactory; +class IPluginLayer; +class IPluginRegistry; +class IPluginV2Layer; +class IRotaryEmbeddingLayer; +class IRuntimeConfig; + +namespace v_1_0 +{ +class IPluginV3; +} // namespace v_1_0 +using IPluginV3 = v_1_0::IPluginV3; + +namespace v_1_0 +{ +class IStreamReader; +class IStreamWriter; +} // namespace v_1_0 +using IStreamReader = v_1_0::IStreamReader; +using IStreamWriter = v_1_0::IStreamWriter; +namespace v_1_0 +{ +class IStreamReaderV2; +} // namespace v_1_0 +using IStreamReaderV2 = v_1_0::IStreamReaderV2; + +class IPluginV3Layer; +class IPoolingLayer; +class IQuantizeLayer; +class IRaggedSoftMaxLayer; +class IRecurrenceLayer; +class IReduceLayer; +class IRefitter; +class IResizeLayer; +class IReverseSequenceLayer; +class IRuntime; +class IScaleLayer; +class IScatterLayer; +class ISelectLayer; +class ISerializationConfig; +class IShapeLayer; +class IShuffleLayer; +class ISliceLayer; +class ISoftMaxLayer; +class ISqueezeLayer; +class ITensor; + +namespace v_1_0 +{ +struct TimingCacheKey; +struct TimingCacheValue; +} // namespace v_1_0 +using TimingCacheKey = v_1_0::TimingCacheKey; +using TimingCacheValue = v_1_0::TimingCacheValue; + +class ITimingCache; +class ITopKLayer; +class ITripLimitLayer; +class IUnaryLayer; +class IUnsqueezeLayer; +struct Permutation; +class Weights; + +enum class ActivationType : int32_t; +enum class AttentionNormalizationOp : int32_t; +enum class BoundingBoxFormat : int32_t; +enum class BuilderFlag : int32_t; +enum class CalibrationAlgoType : int32_t; +enum class CumulativeOperation : int32_t; +enum class DeviceType : int32_t; +enum class DimensionOperation : int32_t; +enum class ElementWiseOperation : int32_t; +enum class EngineCapability : int32_t; +enum class FillOperation : int32_t; +enum class GatherMode : int32_t; +enum class KVCacheMode : int32_t; +enum class LayerInformationFormat : int32_t; +enum class LayerType : int32_t; +enum class LoopOutput : int32_t; +enum class MatrixOperation : int32_t; +enum class MemoryPoolType : int32_t; +enum class MoEActType : int32_t; +enum class NetworkDefinitionCreationFlag : int32_t; +enum class OptProfileSelector : int32_t; +enum class PaddingMode : int32_t; +enum class PoolingType : int32_t; +enum class ProfilingVerbosity : int32_t; +enum class QuantizationFlag : int32_t; +enum class ReduceOperation : int32_t; +enum class CollectiveOperation : int32_t; +enum class ResizeCoordinateTransformation : int32_t; +enum class InterpolationMode : int32_t; +enum class ResizeRoundMode : int32_t; +enum class ResizeSelector : int32_t; +enum class ScaleMode : int32_t; +enum class ScatterMode : int32_t; +enum class SampleMode : int32_t; +enum class SerializationFlag : int32_t; +enum class TensorIOMode : int32_t; +enum class TensorLocation : int32_t; +enum class TopKOperation : int32_t; +enum class TripLimit : int32_t; +enum class UnaryOperation : int32_t; +enum class WeightsRole : int32_t; +enum class PreviewFeature : int32_t; +enum class HardwareCompatibilityLevel : int32_t; +enum class ExecutionContextAllocationStrategy : int32_t; +enum class RuntimePlatform : int32_t; +enum class TilingOptimizationLevel : int32_t; +enum class EngineStat : int32_t; + + +using TacticSources = uint32_t; +using TensorFormats = uint32_t; +using BuilderFlags = uint32_t; +using NetworkDefinitionCreationFlags = uint32_t; +using QuantizationFlags = uint32_t; +using TempfileControlFlags = uint32_t; +using SerializationFlags = uint32_t; + +//! +//! \file NvInferImpl.h +//! +//! This file contains definitions for API methods that cross the shared library boundary. These +//! methods must not be called directly by applications; they should only be called through the +//! API classes. +//! + +namespace apiv +{ + +class VRoot +{ +public: + virtual ~VRoot() noexcept = default; +}; + +class VHostMemory : public VRoot +{ +public: + virtual void* data() const noexcept = 0; + virtual std::size_t size() const noexcept = 0; + virtual DataType type() const noexcept = 0; +}; + +class VDimensionExpr : public VRoot +{ +public: + virtual bool isConstant() const = 0; + virtual int64_t getConstantValue() const = 0; + virtual bool isSizeTensor() const = 0; +}; + +class VExprBuilder : public VRoot +{ +public: + virtual IDimensionExpr const* constant(int64_t value) = 0; + virtual IDimensionExpr const* operation( + DimensionOperation op, IDimensionExpr const& first, IDimensionExpr const& second) + = 0; + virtual IDimensionExpr const* declareSizeTensor( + int32_t outputIndex, IDimensionExpr const& opt, IDimensionExpr const& upper) + = 0; +}; + +class VRuntime : public VRoot +{ +public: + virtual IRuntime* getPImpl() noexcept = 0; + virtual nvinfer1::ICudaEngine* deserializeCudaEngine(void const* blob, std::size_t size) noexcept = 0; + virtual nvinfer1::ICudaEngine* deserializeCudaEngine(IStreamReader& streamReader) noexcept = 0; + virtual void setDLACore(int32_t dlaCore) noexcept = 0; + virtual int32_t getDLACore() const noexcept = 0; + virtual int32_t getNbDLACores() const noexcept = 0; + virtual void setGpuAllocator(IGpuAllocator* allocator) noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual ILogger* getLogger() const noexcept = 0; + virtual bool setMaxThreads(int32_t maxThreads) noexcept = 0; + virtual int32_t getMaxThreads() const noexcept = 0; + virtual void setTemporaryDirectory(char const*) noexcept = 0; + virtual char const* getTemporaryDirectory() const noexcept = 0; + virtual void setTempfileControlFlags(TempfileControlFlags) noexcept = 0; + virtual TempfileControlFlags getTempfileControlFlags() const noexcept = 0; + virtual IPluginRegistry& getPluginRegistry() noexcept = 0; + virtual void setPluginRegistryParent(IPluginRegistry* parent) noexcept = 0; + virtual IRuntime* loadRuntime(char const* path) noexcept = 0; + virtual void setEngineHostCodeAllowed(bool allowed) noexcept = 0; + virtual bool getEngineHostCodeAllowed() const noexcept = 0; + // Added in TensorRT version 10.7 + virtual nvinfer1::ICudaEngine* deserializeCudaEngineV2(IStreamReaderV2& streamReader) noexcept = 0; +}; + +class VRefitter : public VRoot +{ +public: + virtual IRefitter* getPImpl() noexcept = 0; + virtual bool setWeights(char const* layerName, WeightsRole role, const Weights weights) noexcept = 0; + virtual bool refitCudaEngine() noexcept = 0; + virtual int32_t getMissing(int32_t size, char const** layerNames, WeightsRole* roles) noexcept = 0; + virtual int32_t getAll(int32_t size, char const** layerNames, WeightsRole* roles) noexcept = 0; + virtual bool setDynamicRange(char const* tensorName, float min, float max) noexcept = 0; + virtual float getDynamicRangeMin(char const* tensorName) const noexcept = 0; + virtual float getDynamicRangeMax(char const* tensorName) const noexcept = 0; + virtual int32_t getTensorsWithDynamicRange(int32_t size, char const** tensorNames) const noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual bool setNamedWeights(char const* name, Weights weights) noexcept = 0; + virtual int32_t getMissingWeights(int32_t size, char const** weightsNames) noexcept = 0; + virtual int32_t getAllWeights(int32_t size, char const** weightsNames) noexcept = 0; + virtual ILogger* getLogger() const noexcept = 0; + virtual bool setMaxThreads(int32_t maxThreads) noexcept = 0; + virtual int32_t getMaxThreads() const noexcept = 0; + virtual bool setNamedWeightsWithLocation(char const* name, Weights weights, TensorLocation location) noexcept = 0; + virtual Weights getNamedWeights(char const* weightsName) const noexcept = 0; + virtual TensorLocation getWeightsLocation(char const* weightsName) const noexcept = 0; + virtual bool unsetNamedWeights(char const* weightsName) noexcept = 0; + virtual void setWeightsValidation(bool weightsValidation) noexcept = 0; + virtual bool getWeightsValidation() const noexcept = 0; + virtual bool refitCudaEngineAsync(cudaStream_t stream) noexcept = 0; + virtual Weights getWeightsPrototype(char const* weightsName) const noexcept = 0; +}; + +class VOptimizationProfile : public VRoot +{ +public: + virtual bool setDimensions(char const* inputName, OptProfileSelector select, Dims const& dims) noexcept = 0; + virtual Dims getDimensions(char const* inputName, OptProfileSelector select) const noexcept = 0; + virtual bool setShapeValues( + char const* inputName, OptProfileSelector select, int32_t const* values, int32_t nbValues) noexcept = 0; + virtual int32_t getNbShapeValues(char const* inputName) const noexcept = 0; + virtual int32_t const* getShapeValues(char const* inputName, OptProfileSelector select) const noexcept = 0; + virtual bool setExtraMemoryTarget(float target) noexcept = 0; + virtual float getExtraMemoryTarget() const noexcept = 0; + virtual bool isValid() const noexcept = 0; + // Added in TensorRT 10.11 + TRT_NODISCARD virtual bool setShapeValuesV2( + char const* inputName, OptProfileSelector select, int64_t const* values, int32_t nbValues) noexcept = 0; + TRT_NODISCARD virtual int64_t const* getShapeValuesV2( + char const* inputName, OptProfileSelector select) const noexcept = 0; +}; + +class VCudaEngine : public VRoot +{ +public: + virtual ICudaEngine* getPImpl() noexcept = 0; + virtual int32_t getNbLayers() const noexcept = 0; + virtual IHostMemory* serialize() const noexcept = 0; + virtual IExecutionContext* createExecutionContext(ExecutionContextAllocationStrategy strategy) noexcept = 0; + virtual IExecutionContext* createExecutionContextWithoutDeviceMemory() noexcept = 0; + virtual size_t getDeviceMemorySize() const noexcept = 0; + virtual bool isRefittable() const noexcept = 0; + virtual char const* getName() const noexcept = 0; + virtual int32_t getNbOptimizationProfiles() const noexcept = 0; + virtual int32_t const* getProfileTensorValues( + char const* tensorName, int32_t profileIndex, OptProfileSelector select) const noexcept = 0; + virtual EngineCapability getEngineCapability() const noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual bool hasImplicitBatchDimension() const noexcept = 0; + virtual TacticSources getTacticSources() const noexcept = 0; + virtual ProfilingVerbosity getProfilingVerbosity() const noexcept = 0; + virtual IEngineInspector* createEngineInspector() const noexcept = 0; + virtual Dims getTensorShape(char const* tensorName) const noexcept = 0; + virtual DataType getTensorDataType(char const* tensorName) const noexcept = 0; + virtual TensorLocation getTensorLocation(char const* tensorName) const noexcept = 0; + virtual bool isShapeInferenceIO(char const* tensorName) const noexcept = 0; + virtual TensorIOMode getTensorIOMode(char const* tensorName) const noexcept = 0; + virtual int32_t getTensorBytesPerComponent(char const* tensorName) const noexcept = 0; + virtual int32_t getTensorComponentsPerElement(char const* tensorName) const noexcept = 0; + virtual TensorFormat getTensorFormat(char const* tensorName) const noexcept = 0; + virtual char const* getTensorFormatDesc(char const* tensorName) const noexcept = 0; + virtual int32_t getTensorVectorizedDim(char const* tensorName) const noexcept = 0; + virtual Dims getProfileShape( + char const* tensorName, int32_t profileIndex, OptProfileSelector select) const noexcept = 0; + virtual int32_t getNbIOTensors() const noexcept = 0; + virtual char const* getIOTensorName(int32_t index) const noexcept = 0; + virtual HardwareCompatibilityLevel getHardwareCompatibilityLevel() const noexcept = 0; + virtual int32_t getNbAuxStreams() const noexcept = 0; + + virtual int32_t getTensorBytesPerComponentV2(char const* tensorName, int32_t profileIndex) const noexcept = 0; + virtual int32_t getTensorComponentsPerElementV2(char const* tensorName, int32_t profileIndex) const noexcept = 0; + virtual TensorFormat getTensorFormatV2(char const* tensorName, int32_t profileIndex) const noexcept = 0; + virtual char const* getTensorFormatDescV2(char const* tensorName, int32_t profileIndex) const noexcept = 0; + virtual int32_t getTensorVectorizedDimV2(char const* tensorName, int32_t profileIndex) const noexcept = 0; + + virtual ISerializationConfig* createSerializationConfig() noexcept = 0; + virtual IHostMemory* serializeWithConfig(ISerializationConfig& config) const noexcept = 0; + + virtual size_t getDeviceMemorySizeForProfile(int32_t profileIndex) const noexcept = 0; + virtual IRefitter* createRefitter(ILogger& logger) noexcept = 0; + + virtual bool setWeightStreamingBudget(int64_t gpuMemoryBudget) noexcept = 0; + virtual int64_t getWeightStreamingBudget() const noexcept = 0; + virtual int64_t getMinimumWeightStreamingBudget() const noexcept = 0; + virtual int64_t getStreamableWeightsSize() const noexcept = 0; + + virtual bool isDebugTensor(char const* name) const noexcept = 0; + + // Added in TensorRT 10.1 + virtual bool setWeightStreamingBudgetV2(int64_t gpuMemoryBudget) noexcept = 0; + virtual int64_t getWeightStreamingBudgetV2() const noexcept = 0; + virtual int64_t getWeightStreamingAutomaticBudget() const noexcept = 0; + virtual int64_t getWeightStreamingScratchMemorySize() const noexcept = 0; + virtual int64_t getDeviceMemorySizeV2() const noexcept = 0; + virtual int64_t getDeviceMemorySizeForProfileV2(int32_t profileIndex) const noexcept = 0; + // Added in TensorRT 10.11 + TRT_NODISCARD virtual int64_t const* getProfileTensorValuesV2( + char const* tensorName, int32_t profileIndex, OptProfileSelector select) const noexcept = 0; + TRT_NODISCARD virtual IExecutionContext* createExecutionContextWithRuntimeConfig( + IRuntimeConfig* runtimeConfig) noexcept = 0; + TRT_NODISCARD virtual IRuntimeConfig* createRuntimeConfig() noexcept = 0; + TRT_NODISCARD virtual int64_t getEngineStat(EngineStat stat) const noexcept = 0; + // Added in TensorRT 10.15 + TRT_NODISCARD virtual char const* getAliasedInputTensor(char const* tensorName) const noexcept = 0; +}; + +class VExecutionContext : public VRoot +{ +public: + virtual IExecutionContext* getPImpl() noexcept = 0; + virtual void setDebugSync(bool sync) noexcept = 0; + virtual bool getDebugSync() const noexcept = 0; + virtual void setProfiler(IProfiler*) noexcept = 0; + virtual IProfiler* getProfiler() const noexcept = 0; + virtual ICudaEngine const& getEngine() const noexcept = 0; + virtual void setName(char const* name) noexcept = 0; + virtual char const* getName() const noexcept = 0; + virtual void setDeviceMemory(void* memory) noexcept = 0; + virtual int32_t getOptimizationProfile() const noexcept = 0; + virtual bool allInputDimensionsSpecified() const noexcept = 0; + virtual bool allInputShapesSpecified() const noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual bool executeV2(void* const* bindings) noexcept = 0; + virtual bool setOptimizationProfileAsync(int32_t profileIndex, cudaStream_t stream) noexcept = 0; + virtual void setEnqueueEmitsProfile(bool enqueueEmitsProfile) noexcept = 0; + virtual bool getEnqueueEmitsProfile() const noexcept = 0; + virtual bool reportToProfiler() const noexcept = 0; + virtual bool setInputShape(char const* tensorName, Dims const& dims) noexcept = 0; + virtual Dims getTensorShape(char const* tensorName) const noexcept = 0; + virtual Dims getTensorStrides(char const* tensorName) const noexcept = 0; + virtual bool setTensorAddress(char const* tensorName, void* data) noexcept = 0; + virtual void const* getTensorAddress(char const* tensorName) const noexcept = 0; + virtual bool setInputTensorAddress(char const* tensorName, void const* data) noexcept = 0; + virtual bool setOutputTensorAddress(char const* tensorName, void* data) noexcept = 0; + virtual int32_t inferShapes(int32_t nbMaxNames, char const** tensorNames) noexcept = 0; + virtual bool setInputConsumedEvent(cudaEvent_t event) noexcept = 0; + virtual cudaEvent_t getInputConsumedEvent() const noexcept = 0; + virtual void* getOutputTensorAddress(char const* tensorName) const noexcept = 0; + virtual bool setOutputAllocator(char const* tensorName, IOutputAllocator* outputAllocator) noexcept = 0; + virtual IOutputAllocator* getOutputAllocator(char const* name) noexcept = 0; + virtual int64_t getMaxOutputSize(char const* tensorName) const noexcept = 0; + virtual bool setTemporaryStorageAllocator(IGpuAllocator* allocator) noexcept = 0; + virtual IGpuAllocator* getTemporaryStorageAllocator() const noexcept = 0; + virtual bool enqueueV3(cudaStream_t stream) noexcept = 0; + virtual void setPersistentCacheLimit(size_t size) noexcept = 0; + virtual size_t getPersistentCacheLimit() const noexcept = 0; + virtual bool setNvtxVerbosity(ProfilingVerbosity verbosity) noexcept = 0; + virtual ProfilingVerbosity getNvtxVerbosity() const noexcept = 0; + virtual void setAuxStreams(cudaStream_t* auxStreams, int32_t nbStreams) noexcept = 0; + virtual bool setDebugListener(IDebugListener* listener) noexcept = 0; + virtual IDebugListener* getDebugListener() noexcept = 0; + virtual bool setTensorDebugState(char const* name, bool flag) noexcept = 0; + virtual bool getDebugState(char const* name) const noexcept = 0; + virtual bool setAllTensorsDebugState(bool flag) noexcept = 0; + virtual size_t updateDeviceMemorySizeForShapes() noexcept = 0; + virtual void setDeviceMemoryV2(void* memory, int64_t size) noexcept = 0; + TRT_NODISCARD virtual IRuntimeConfig* getRuntimeConfig() const noexcept = 0; + virtual bool setUnfusedTensorsDebugState(bool flag) noexcept = 0; + virtual bool getUnfusedTensorsDebugState() const noexcept = 0; +#if ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + virtual bool isStreamCapturable(cudaStream_t stream) const noexcept = 0; +#endif // ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + virtual bool setCommunicator(void* communicator) noexcept = 0; +}; + +class VEngineInspector : public VRoot +{ +public: + virtual IEngineInspector* getPImpl() noexcept = 0; + virtual bool setExecutionContext(IExecutionContext const* context) noexcept = 0; + virtual IExecutionContext const* getExecutionContext() const noexcept = 0; + virtual char const* getLayerInformation(int32_t layerIndex, LayerInformationFormat format) const noexcept = 0; + virtual char const* getEngineInformation(LayerInformationFormat format) const noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; +}; + +class VTensor : public VRoot +{ +public: + virtual void setName(char const* name) noexcept = 0; + virtual char const* getName() const noexcept = 0; + virtual void setDimensions(Dims const& dimensions) noexcept = 0; + virtual Dims getDimensions() const noexcept = 0; + virtual void setType(DataType type) noexcept = 0; + virtual DataType getType() const noexcept = 0; + virtual bool setDynamicRange(float min, float max) noexcept = 0; + virtual bool isNetworkInput() const noexcept = 0; + virtual bool isNetworkOutput() const noexcept = 0; + virtual void setBroadcastAcrossBatch(bool broadcastAcrossBatch) noexcept = 0; + virtual bool getBroadcastAcrossBatch() const noexcept = 0; + virtual TensorLocation getLocation() const noexcept = 0; + virtual void setLocation(TensorLocation location) noexcept = 0; + virtual bool dynamicRangeIsSet() const noexcept = 0; + virtual void resetDynamicRange() noexcept = 0; + virtual float getDynamicRangeMin() const noexcept = 0; + virtual float getDynamicRangeMax() const noexcept = 0; + virtual void setAllowedFormats(TensorFormats formats) noexcept = 0; + virtual TensorFormats getAllowedFormats() const noexcept = 0; + virtual bool isShapeTensor() const noexcept = 0; + virtual bool isExecutionTensor() const noexcept = 0; + virtual void setDimensionName(int32_t index, char const* name) noexcept = 0; + virtual char const* getDimensionName(int32_t index) const noexcept = 0; +}; + +class VLayer : public VRoot +{ +public: + virtual LayerType getType() const noexcept = 0; + virtual void setName(char const* name) noexcept = 0; + virtual char const* getName() const noexcept = 0; + virtual int32_t getNbInputs() const noexcept = 0; + virtual ITensor* getInput(int32_t index) const noexcept = 0; + virtual int32_t getNbOutputs() const noexcept = 0; + virtual ITensor* getOutput(int32_t index) const noexcept = 0; + virtual void setInput(int32_t index, ITensor& tensor) noexcept = 0; + virtual void setPrecision(DataType dataType) noexcept = 0; + virtual DataType getPrecision() const noexcept = 0; + virtual bool precisionIsSet() const noexcept = 0; + virtual void resetPrecision() noexcept = 0; + virtual void setOutputType(int32_t index, DataType dataType) noexcept = 0; + virtual DataType getOutputType(int32_t index) const noexcept = 0; + virtual bool outputTypeIsSet(int32_t index) const noexcept = 0; + virtual void resetOutputType(int32_t index) noexcept = 0; + virtual void setMetadata(char const* docString) noexcept = 0; + virtual char const* getMetadata() const noexcept = 0; + virtual bool setNbRanks(int32_t nbRanks) noexcept = 0; + virtual int32_t getNbRanks() const noexcept = 0; +}; + +class VConvolutionLayer : public VRoot +{ +public: + virtual void setNbOutputMaps(int64_t nbOutputMaps) noexcept = 0; + virtual int64_t getNbOutputMaps() const noexcept = 0; + virtual void setNbGroups(int64_t nbGroups) noexcept = 0; + virtual int64_t getNbGroups() const noexcept = 0; + virtual void setKernelWeights(Weights weights) noexcept = 0; + virtual Weights getKernelWeights() const noexcept = 0; + virtual void setBiasWeights(Weights weights) noexcept = 0; + virtual Weights getBiasWeights() const noexcept = 0; + virtual void setPrePadding(Dims const& padding) noexcept = 0; + virtual Dims getPrePadding() const noexcept = 0; + virtual void setPostPadding(Dims const& padding) noexcept = 0; + virtual Dims getPostPadding() const noexcept = 0; + virtual void setPaddingMode(PaddingMode paddingMode) noexcept = 0; + virtual PaddingMode getPaddingMode() const noexcept = 0; + virtual void setKernelSizeNd(Dims const& kernelSize) noexcept = 0; + virtual Dims getKernelSizeNd() const noexcept = 0; + virtual void setStrideNd(Dims const& stride) noexcept = 0; + virtual Dims getStrideNd() const noexcept = 0; + virtual void setPaddingNd(Dims const& padding) noexcept = 0; + virtual Dims getPaddingNd() const noexcept = 0; + virtual void setDilationNd(Dims const& dilation) noexcept = 0; + virtual Dims getDilationNd() const noexcept = 0; +}; + +class VActivationLayer : public VRoot +{ +public: + virtual void setActivationType(ActivationType type) noexcept = 0; + virtual ActivationType getActivationType() const noexcept = 0; + virtual void setAlpha(float alpha) noexcept = 0; + virtual void setBeta(float beta) noexcept = 0; + virtual float getAlpha() const noexcept = 0; + virtual float getBeta() const noexcept = 0; +}; + +class VPoolingLayer : public VRoot +{ +public: + virtual void setPoolingType(PoolingType type) noexcept = 0; + virtual PoolingType getPoolingType() const noexcept = 0; + virtual void setBlendFactor(float blendFactor) noexcept = 0; + virtual float getBlendFactor() const noexcept = 0; + virtual void setAverageCountExcludesPadding(bool exclusive) noexcept = 0; + virtual bool getAverageCountExcludesPadding() const noexcept = 0; + virtual void setPrePadding(Dims const& padding) noexcept = 0; + virtual Dims getPrePadding() const noexcept = 0; + virtual void setPostPadding(Dims const& padding) noexcept = 0; + virtual Dims getPostPadding() const noexcept = 0; + virtual void setPaddingMode(PaddingMode paddingMode) noexcept = 0; + virtual PaddingMode getPaddingMode() const noexcept = 0; + virtual void setWindowSizeNd(Dims const& windowSize) noexcept = 0; + virtual Dims getWindowSizeNd() const noexcept = 0; + virtual void setStrideNd(Dims const& stride) noexcept = 0; + virtual Dims getStrideNd() const noexcept = 0; + virtual void setPaddingNd(Dims const& padding) noexcept = 0; + virtual Dims getPaddingNd() const noexcept = 0; +}; + +class VLRNLayer : public VRoot +{ +public: + virtual void setWindowSize(int64_t windowSize) noexcept = 0; + virtual int64_t getWindowSize() const noexcept = 0; + virtual void setAlpha(float alpha) noexcept = 0; + virtual float getAlpha() const noexcept = 0; + virtual void setBeta(float beta) noexcept = 0; + virtual float getBeta() const noexcept = 0; + virtual void setK(float k) noexcept = 0; + virtual float getK() const noexcept = 0; +}; + +class VScaleLayer : public VRoot +{ +public: + virtual void setMode(ScaleMode mode) noexcept = 0; + virtual ScaleMode getMode() const noexcept = 0; + virtual void setShift(Weights shift) noexcept = 0; + virtual Weights getShift() const noexcept = 0; + virtual void setScale(Weights scale) noexcept = 0; + virtual Weights getScale() const noexcept = 0; + virtual void setPower(Weights power) noexcept = 0; + virtual Weights getPower() const noexcept = 0; + virtual int32_t getChannelAxis() const noexcept = 0; + virtual void setChannelAxis(int32_t channelAxis) noexcept = 0; +}; + +class VSoftMaxLayer : public VRoot +{ +public: + virtual void setAxes(uint32_t axes) noexcept = 0; + virtual uint32_t getAxes() const noexcept = 0; +}; + +class VConcatenationLayer : public VRoot +{ +public: + virtual void setAxis(int32_t axis) noexcept = 0; + virtual int32_t getAxis() const noexcept = 0; +}; + +class VDeconvolutionLayer : public VRoot +{ +public: + virtual void setNbOutputMaps(int64_t nbOutputMaps) noexcept = 0; + virtual int64_t getNbOutputMaps() const noexcept = 0; + virtual void setNbGroups(int64_t nbGroups) noexcept = 0; + virtual int64_t getNbGroups() const noexcept = 0; + virtual void setKernelWeights(Weights weights) noexcept = 0; + virtual Weights getKernelWeights() const noexcept = 0; + virtual void setBiasWeights(Weights weights) noexcept = 0; + virtual Weights getBiasWeights() const noexcept = 0; + virtual void setPrePadding(Dims const& padding) noexcept = 0; + virtual Dims getPrePadding() const noexcept = 0; + virtual void setPostPadding(Dims const& padding) noexcept = 0; + virtual Dims getPostPadding() const noexcept = 0; + virtual void setPaddingMode(PaddingMode paddingMode) noexcept = 0; + virtual PaddingMode getPaddingMode() const noexcept = 0; + virtual void setKernelSizeNd(Dims const& kernelSize) noexcept = 0; + virtual Dims getKernelSizeNd() const noexcept = 0; + virtual void setStrideNd(Dims const& stride) noexcept = 0; + virtual Dims getStrideNd() const noexcept = 0; + virtual void setPaddingNd(Dims const& padding) noexcept = 0; + virtual Dims getPaddingNd() const noexcept = 0; + virtual void setDilationNd(Dims const& dilation) noexcept = 0; + virtual Dims getDilationNd() const noexcept = 0; +}; + +class VElementWiseLayer : public VRoot +{ +public: + virtual void setOperation(ElementWiseOperation op) noexcept = 0; + virtual ElementWiseOperation getOperation() const noexcept = 0; +}; + +class VGatherLayer : public VRoot +{ +public: + virtual void setGatherAxis(int32_t axis) noexcept = 0; + virtual int32_t getGatherAxis() const noexcept = 0; + virtual void setNbElementWiseDims(int32_t k) noexcept = 0; + virtual int32_t getNbElementWiseDims() const noexcept = 0; + virtual void setMode(GatherMode mode) noexcept = 0; + virtual GatherMode getMode() const noexcept = 0; +}; + +class VPluginLayer : public VRoot +{ +public: + virtual IPlugin& getPlugin() noexcept = 0; +}; + +class VPluginV2Layer : public VRoot +{ +public: + virtual IPluginV2& getPlugin() noexcept = 0; +}; + +class VPluginV3Layer : public VRoot +{ +public: + virtual IPluginV3& getPlugin() noexcept = 0; +}; + +class VUnaryLayer : public VRoot +{ +public: + virtual void setOperation(UnaryOperation op) noexcept = 0; + virtual UnaryOperation getOperation() const noexcept = 0; +}; + +class VReduceLayer : public VRoot +{ +public: + virtual void setOperation(ReduceOperation op) noexcept = 0; + virtual ReduceOperation getOperation() const noexcept = 0; + virtual void setReduceAxes(uint32_t reduceAxes) noexcept = 0; + virtual uint32_t getReduceAxes() const noexcept = 0; + virtual void setKeepDimensions(bool keepDimensions) noexcept = 0; + virtual bool getKeepDimensions() const noexcept = 0; +}; + +class VPaddingLayer : public VRoot +{ +public: + virtual void setPrePaddingNd(Dims const& padding) noexcept = 0; + virtual Dims getPrePaddingNd() const noexcept = 0; + virtual void setPostPaddingNd(Dims const& padding) noexcept = 0; + virtual Dims getPostPaddingNd() const noexcept = 0; +}; + +class VShuffleLayer : public VRoot +{ +public: + virtual void setFirstTranspose(Permutation const& permutation) noexcept = 0; + virtual Permutation const& getFirstTranspose() const noexcept = 0; + virtual void setReshapeDimensions(Dims const& dimensions) noexcept = 0; + virtual Dims getReshapeDimensions() const noexcept = 0; + virtual void setSecondTranspose(Permutation const& permutation) noexcept = 0; + virtual Permutation const& getSecondTranspose() const noexcept = 0; + virtual void setZeroIsPlaceholder(bool zeroIsPlaceholder) noexcept = 0; + virtual bool getZeroIsPlaceholder() const noexcept = 0; +}; + +class VSliceLayer : public VRoot +{ +public: + virtual void setStart(Dims const& start) noexcept = 0; + virtual Dims getStart() const noexcept = 0; + virtual void setSize(Dims const& size) noexcept = 0; + virtual Dims getSize() const noexcept = 0; + virtual void setStride(Dims const& stride) noexcept = 0; + virtual Dims getStride() const noexcept = 0; + virtual void setMode(SampleMode mode) noexcept = 0; + virtual SampleMode getMode() const noexcept = 0; + virtual void setAxes(Dims const& axes) noexcept = 0; + virtual Dims getAxes() const noexcept = 0; +}; + +class VShapeLayer : public VRoot +{ +public: +}; + +class VTopKLayer : public VRoot +{ +public: + virtual void setOperation(TopKOperation op) noexcept = 0; + virtual TopKOperation getOperation() const noexcept = 0; + virtual void setK(int32_t k) noexcept = 0; + virtual int32_t getK() const noexcept = 0; + virtual void setReduceAxes(uint32_t reduceAxes) noexcept = 0; + virtual uint32_t getReduceAxes() const noexcept = 0; + virtual bool setIndicesType(DataType type) noexcept = 0; + virtual DataType getIndicesType() const noexcept = 0; +}; + +class VMatrixMultiplyLayer : public VRoot +{ +public: + virtual void setOperation(int32_t index, MatrixOperation op) noexcept = 0; + virtual MatrixOperation getOperation(int32_t index) const noexcept = 0; +}; + +class VNonZeroLayer : public VRoot +{ +public: + virtual bool setIndicesType(DataType type) noexcept = 0; + virtual DataType getIndicesType() const noexcept = 0; +}; + +class VRaggedSoftMaxLayer : public VRoot +{ +public: +}; + +class VIdentityLayer : public VRoot +{ +public: +}; + +class VCastLayer : public VRoot +{ +public: + virtual void setToType(DataType toType) noexcept = 0; + virtual DataType getToType() const noexcept = 0; +}; + +class VConstantLayer : public VRoot +{ +public: + virtual void setWeights(Weights weights) noexcept = 0; + virtual Weights getWeights() const noexcept = 0; + virtual void setDimensions(Dims const& dimensions) noexcept = 0; + virtual Dims getDimensions() const noexcept = 0; +}; + +class VParametricReLULayer : public VRoot +{ +public: +}; + +class VResizeLayer : public VRoot +{ +public: + virtual void setOutputDimensions(Dims const& dimensions) noexcept = 0; + virtual Dims getOutputDimensions() const noexcept = 0; + virtual void setScales(float const* scales, int32_t nbScales) noexcept = 0; + virtual int32_t getScales(int32_t size, float* scales) const noexcept = 0; + virtual void setResizeMode(InterpolationMode interpolationMode) noexcept = 0; + virtual InterpolationMode getResizeMode() const noexcept = 0; + virtual void setCoordinateTransformation(ResizeCoordinateTransformation coordTransform) noexcept = 0; + virtual ResizeCoordinateTransformation getCoordinateTransformation() const noexcept = 0; + virtual void setSelectorForSinglePixel(ResizeSelector selector) noexcept = 0; + virtual ResizeSelector getSelectorForSinglePixel() const noexcept = 0; + virtual void setNearestRounding(ResizeRoundMode value) noexcept = 0; + virtual ResizeRoundMode getNearestRounding() const noexcept = 0; + virtual void setCubicCoeff(float value) noexcept = 0; + virtual float getCubicCoeff() const noexcept = 0; + virtual void setExcludeOutside(bool value) noexcept = 0; + virtual bool getExcludeOutside() const noexcept = 0; +}; + +class VLoopBoundaryLayer : public VRoot +{ +public: + virtual ILoop* getLoop() const noexcept = 0; +}; + +class VRecurrenceLayer : public VRoot +{ +public: +}; + +class VLoopOutputLayer : public VRoot +{ +public: + virtual LoopOutput getLoopOutput() const noexcept = 0; + virtual void setAxis(int32_t axis) noexcept = 0; + virtual int32_t getAxis() const noexcept = 0; +}; + +class VTripLimitLayer : public VRoot +{ +public: + virtual TripLimit getTripLimit() const noexcept = 0; +}; + +class VIteratorLayer : public VRoot +{ +public: + virtual void setAxis(int32_t axis) noexcept = 0; + virtual int32_t getAxis() const noexcept = 0; + virtual void setReverse(bool reverse) noexcept = 0; + virtual bool getReverse() const noexcept = 0; +}; +class VLoop : public VRoot +{ +public: + virtual IRecurrenceLayer* addRecurrence(ITensor& initialValue) noexcept = 0; + virtual ITripLimitLayer* addTripLimit(ITensor& tensor, TripLimit limit) noexcept = 0; + virtual IIteratorLayer* addIterator(ITensor& tensor, int32_t axis = 0, bool reverse = false) noexcept = 0; + virtual ILoopOutputLayer* addLoopOutput(ITensor& tensor, LoopOutput outputKind, int32_t axis = 0) noexcept = 0; + virtual void setName(char const* name) noexcept = 0; + virtual char const* getName() const noexcept = 0; +}; + +class VConditionalBoundaryLayer : public VRoot +{ +public: + virtual IIfConditional* getConditional() const noexcept = 0; +}; + +class VConditionLayer : public VRoot +{ +public: +}; + +class VConditionalInputLayer : public VRoot +{ +public: +}; + +class VConditionalOutputLayer : public VRoot +{ +public: +}; + +class VIfConditional : public VRoot +{ +public: + virtual IConditionLayer* setCondition(ITensor& tensor) noexcept = 0; + virtual IIfConditionalInputLayer* addInput(ITensor& tensor) noexcept = 0; + virtual IIfConditionalOutputLayer* addOutput(ITensor& trueTensor, ITensor& falseTensor) noexcept = 0; + virtual void setName(char const* name) noexcept = 0; + virtual char const* getName() const noexcept = 0; +}; + +class VAttentionBoundaryLayer : public VRoot +{ +public: + virtual IAttention* getAttention() const noexcept = 0; +}; + +class VAttentionInputLayer : public VRoot +{ +public: +}; + +class VAttentionOutputLayer : public VRoot +{ +public: +}; + +class VAttention : public VRoot +{ +public: + TRT_NODISCARD virtual bool setInput(int32_t index, ITensor& input) noexcept = 0; + TRT_NODISCARD virtual int32_t getNbInputs() const noexcept = 0; + TRT_NODISCARD virtual ITensor* getInput(int32_t index) const noexcept = 0; + TRT_NODISCARD virtual int32_t getNbOutputs() const noexcept = 0; + TRT_NODISCARD virtual ITensor* getOutput(int32_t index) const noexcept = 0; + TRT_NODISCARD virtual bool setName(char const* name) noexcept = 0; + TRT_NODISCARD virtual char const* getName() const noexcept = 0; + TRT_NODISCARD virtual bool setNormalizationOperation(AttentionNormalizationOp op) noexcept = 0; + TRT_NODISCARD virtual AttentionNormalizationOp getNormalizationOperation() const noexcept = 0; + TRT_NODISCARD virtual bool setCausal(bool isCausal) noexcept = 0; + TRT_NODISCARD virtual bool getCausal() const noexcept = 0; + TRT_NODISCARD virtual bool setMask(ITensor& mask) noexcept = 0; + TRT_NODISCARD virtual ITensor* getMask() const noexcept = 0; + TRT_NODISCARD virtual bool setDecomposable(bool decomposable) noexcept = 0; + TRT_NODISCARD virtual bool getDecomposable() const noexcept = 0; + TRT_NODISCARD virtual bool setNormalizationQuantizeScale(ITensor& tensor) noexcept = 0; + TRT_NODISCARD virtual ITensor* getNormalizationQuantizeScale() const noexcept = 0; + TRT_NODISCARD virtual bool setNormalizationQuantizeToType(DataType type) noexcept = 0; + TRT_NODISCARD virtual DataType getNormalizationQuantizeToType() const noexcept = 0; + TRT_NODISCARD virtual bool setMetadata(char const* docString) noexcept = 0; + TRT_NODISCARD virtual char const* getMetadata() const noexcept = 0; + TRT_NODISCARD virtual bool setNbRanks(int32_t nbRanks) noexcept = 0; + TRT_NODISCARD virtual int32_t getNbRanks() const noexcept = 0; +}; // class VAttention + +class VSelectLayer : public VRoot +{ +}; + +class VAssertionLayer : public VRoot +{ +public: + virtual void setMessage(char const* message) noexcept = 0; + virtual char const* getMessage() const noexcept = 0; +}; + +class VFillLayer : public VRoot +{ +public: + virtual void setDimensions(Dims const& dimensions) noexcept = 0; + virtual Dims getDimensions() const noexcept = 0; + virtual void setOperation(FillOperation op) noexcept = 0; + virtual FillOperation getOperation() const noexcept = 0; + virtual void setAlpha(double alpha) noexcept = 0; + virtual double getAlpha() const noexcept = 0; + virtual void setBeta(double beta) noexcept = 0; + virtual double getBeta() const noexcept = 0; + virtual void setAlphaInt64(int64_t alpha) noexcept = 0; + virtual int64_t getAlphaInt64() const noexcept = 0; + virtual void setBetaInt64(int64_t beta) noexcept = 0; + virtual int64_t getBetaInt64() const noexcept = 0; + virtual bool isAlphaBetaInt64() const noexcept = 0; + virtual DataType getToType() const noexcept = 0; + virtual void setToType(DataType toType) noexcept = 0; +}; + +class VQuantizeLayer : public VRoot +{ +public: + virtual int32_t getAxis() const noexcept = 0; + virtual void setAxis(int32_t axis) noexcept = 0; + virtual DataType getToType() const noexcept = 0; + virtual void setToType(DataType toType) noexcept = 0; + virtual Dims getBlockShape() const noexcept = 0; + virtual bool setBlockShape(Dims const& blockShape) noexcept = 0; +}; + +class VDequantizeLayer : public VRoot +{ +public: + virtual int32_t getAxis() const noexcept = 0; + virtual void setAxis(int32_t axis) noexcept = 0; + virtual DataType getToType() const noexcept = 0; + virtual void setToType(DataType toType) noexcept = 0; + virtual Dims getBlockShape() const noexcept = 0; + virtual bool setBlockShape(Dims const& blockShape) noexcept = 0; +}; + +class VDynamicQuantizeLayer : public VRoot +{ +public: + TRT_DEPRECATED virtual int32_t getAxis() const noexcept = 0; + TRT_DEPRECATED virtual void setAxis(int32_t axis) noexcept = 0; + TRT_DEPRECATED virtual int32_t getBlockSize() const noexcept = 0; + TRT_DEPRECATED virtual void setBlockSize(int32_t axis) noexcept = 0; + virtual DataType getScaleType() const noexcept = 0; + virtual void setScaleType(DataType axis) noexcept = 0; + virtual DataType getToType() const noexcept = 0; + virtual void setToType(DataType toType) noexcept = 0; + virtual Dims getBlockShape() const noexcept = 0; + virtual void setBlockShape(Dims const& blockShape) noexcept = 0; +}; + +class VScatterLayer : public VRoot +{ +public: + virtual void setMode(ScatterMode mode) noexcept = 0; + virtual ScatterMode getMode() const noexcept = 0; + virtual void setAxis(int32_t axis) noexcept = 0; + virtual int32_t getAxis() const noexcept = 0; +}; // class VScatterLayer + +class VEinsumLayer : public VRoot +{ +public: + virtual bool setEquation(char const* equation) noexcept = 0; + virtual char const* getEquation() const noexcept = 0; +}; + +class VOneHotLayer : public VRoot +{ +public: + virtual int32_t getAxis() const noexcept = 0; + virtual void setAxis(int32_t axis) noexcept = 0; +}; // class VOneHotLayer + +class VGridSampleLayer : public VRoot +{ +public: + virtual void setInterpolationMode(InterpolationMode mode) noexcept = 0; + virtual InterpolationMode getInterpolationMode() const noexcept = 0; + virtual void setAlignCorners(bool alignCorners) noexcept = 0; + virtual bool getAlignCorners() const noexcept = 0; + virtual bool setSampleMode(SampleMode mode) noexcept = 0; + virtual SampleMode getSampleMode() const noexcept = 0; +}; // class VGridSampleLayer + +class VNMSLayer : public VRoot +{ +public: + virtual void setBoundingBoxFormat(BoundingBoxFormat fmt) noexcept = 0; + virtual BoundingBoxFormat getBoundingBoxFormat() const noexcept = 0; + virtual void setTopKBoxLimit(int32_t limit) noexcept = 0; + virtual int32_t getTopKBoxLimit() const noexcept = 0; + virtual bool setIndicesType(DataType type) noexcept = 0; + virtual DataType getIndicesType() const noexcept = 0; +}; // class VNMSLayer + +class VReverseSequenceLayer : public VRoot +{ +public: + virtual void setBatchAxis(int32_t batchAxis) noexcept = 0; + virtual int32_t getBatchAxis() const noexcept = 0; + + virtual void setSequenceAxis(int32_t sequenceAxis) noexcept = 0; + virtual int32_t getSequenceAxis() const noexcept = 0; +}; // class VReverseSequenceLayer + +class VNormalizationLayer : public VRoot +{ +public: + virtual void setEpsilon(float eps) noexcept = 0; + virtual float getEpsilon() const noexcept = 0; + virtual void setAxes(uint32_t axesMask) noexcept = 0; + virtual uint32_t getAxes() const noexcept = 0; + virtual void setNbGroups(int64_t nbGroups) noexcept = 0; + virtual int64_t getNbGroups() const noexcept = 0; + virtual void setComputePrecision(DataType type) noexcept = 0; + virtual DataType getComputePrecision() const noexcept = 0; + virtual bool isV2() const noexcept = 0; +}; // class VNormalizationLayer + +class VSqueezeLayer : public VRoot +{ +}; + +class VUnsqueezeLayer : public VRoot +{ +}; + +class VCumulativeLayer : public VRoot +{ +public: + virtual bool setOperation(CumulativeOperation op) noexcept = 0; + virtual CumulativeOperation getOperation() const noexcept = 0; + virtual void setExclusive(bool exclusive) noexcept = 0; + virtual bool getExclusive() const noexcept = 0; + virtual void setReverse(bool reverse) noexcept = 0; + virtual bool getReverse() const noexcept = 0; +}; // class VCumulativeLayer + +class VRotaryEmbeddingLayer : public VRoot +{ +public: + virtual void setInterleaved(bool interleaved) noexcept = 0; + virtual bool getInterleaved() const noexcept = 0; + virtual bool setRotaryEmbeddingDim(int32_t rotaryEmbeddingDim) noexcept = 0; + virtual int32_t getRotaryEmbeddingDim() const noexcept = 0; + virtual void setInput(int32_t index, ITensor& input) noexcept = 0; +}; // class VRotaryEmbeddingLayer + +class VKVCacheUpdateLayer : public VRoot +{ +public: + TRT_NODISCARD virtual bool setCacheMode(KVCacheMode cacheMode) noexcept = 0; + TRT_NODISCARD virtual KVCacheMode getCacheMode() const noexcept = 0; +}; // class VKVCacheUpdateLayer + +class VMoELayer : public VRoot +{ +public: + virtual void setGatedWeights(ITensor& fcGateWeights, ITensor& fcUpWeights, ITensor& fcDownWeights, MoEActType activationType) noexcept = 0; + virtual void setGatedBiases(ITensor& fcGateBiases, ITensor& fcUpBiases, ITensor& fcDownBiases) noexcept = 0; + virtual void setActivationType(MoEActType activationType) noexcept = 0; + virtual MoEActType getActivationType() const noexcept = 0; + virtual void setQuantizationStatic(ITensor& fcDownActivationScale, DataType dataType) noexcept = 0; + virtual void setQuantizationDynamicDblQ(ITensor& fcDownActivationDblQScale, DataType dataType, Dims const& blockShape, DataType dynQOutputScaleType) noexcept = 0; + virtual void setQuantizationToType(DataType type) noexcept = 0; + virtual DataType getQuantizationToType() const noexcept = 0; + virtual void setQuantizationBlockShape(Dims const& blockShape) noexcept = 0; + virtual Dims getQuantizationBlockShape() const noexcept = 0; + virtual void setDynQOutputScaleType(DataType type) noexcept = 0; + virtual DataType getDynQOutputScaleType() const noexcept = 0; + virtual void setSwigluParams(float limit, float alpha, float beta) noexcept = 0; + virtual void setSwigluParamLimit(float limit) noexcept = 0; + virtual float getSwigluParamLimit() const noexcept = 0; + virtual void setSwigluParamAlpha(float alpha) noexcept = 0; + virtual float getSwigluParamAlpha() const noexcept = 0; + virtual void setSwigluParamBeta(float beta) noexcept = 0; + virtual float getSwigluParamBeta() const noexcept = 0; + virtual void setInput(int32_t index, ITensor& tensor) noexcept = 0; +}; // class VMoELayer + + +class VNetworkDefinition : public VRoot +{ +public: + virtual ITensor* addInput(char const* name, DataType type, Dims const& dimensions) noexcept = 0; + virtual void markOutput(ITensor& tensor) noexcept = 0; + virtual IActivationLayer* addActivation(ITensor& input, ActivationType type) noexcept = 0; + virtual ILRNLayer* addLRN(ITensor& input, int64_t window, float alpha, float beta, float k) noexcept = 0; + virtual IScaleLayer* addScale( + ITensor& input, ScaleMode mode, Weights shift, Weights scale, Weights power) noexcept = 0; + virtual ISoftMaxLayer* addSoftMax(ITensor& input) noexcept = 0; + virtual IConcatenationLayer* addConcatenation(ITensor* const* inputs, int32_t nbInputs) noexcept = 0; + virtual IElementWiseLayer* addElementWise(ITensor& input1, ITensor& input2, ElementWiseOperation op) noexcept = 0; + virtual IUnaryLayer* addUnary(ITensor& input, UnaryOperation operation) noexcept = 0; + virtual IShuffleLayer* addShuffle(ITensor& input) noexcept = 0; + virtual int32_t getNbLayers() const noexcept = 0; + virtual ILayer* getLayer(int32_t index) const noexcept = 0; + virtual int32_t getNbInputs() const noexcept = 0; + virtual ITensor* getInput(int32_t index) const noexcept = 0; + virtual int32_t getNbOutputs() const noexcept = 0; + virtual ITensor* getOutput(int32_t index) const noexcept = 0; + virtual IReduceLayer* addReduce( + ITensor& input, ReduceOperation operation, uint32_t reduceAxes, bool keepDimensions) noexcept + = 0; + virtual ITopKLayer* addTopK(ITensor& input, TopKOperation op, int32_t k, uint32_t reduceAxes) noexcept = 0; + virtual IGatherLayer* addGather(ITensor& data, ITensor& indices, int32_t axis) noexcept = 0; + virtual IRaggedSoftMaxLayer* addRaggedSoftMax(ITensor& input, ITensor& bounds) noexcept = 0; + virtual IMatrixMultiplyLayer* addMatrixMultiply( + ITensor& input0, MatrixOperation op0, ITensor& input1, MatrixOperation op1) noexcept = 0; + virtual IConstantLayer* addConstant(Dims const& dimensions, Weights weights) noexcept = 0; + virtual IIdentityLayer* addIdentity(ITensor& input) noexcept = 0; + virtual void removeTensor(ITensor& tensor) noexcept = 0; + virtual void unmarkOutput(ITensor& tensor) noexcept = 0; + virtual IPluginV2Layer* addPluginV2(ITensor* const* inputs, int32_t nbInputs, IPluginV2& plugin) noexcept = 0; + virtual IPluginV3Layer* addPluginV3(ITensor* const* inputs, int32_t nbInputs, ITensor* const* shapeInputs, + int32_t nbShapeInputs, IPluginV3& plugin) noexcept = 0; + virtual ISliceLayer* addSlice(ITensor& input, Dims const& start, Dims const& size, Dims const& stride) noexcept = 0; + virtual void setName(char const* name) noexcept = 0; + virtual char const* getName() const noexcept = 0; + virtual IShapeLayer* addShape(ITensor& input) noexcept = 0; + virtual bool hasImplicitBatchDimension() const noexcept = 0; + virtual bool markOutputForShapes(ITensor& tensor) noexcept = 0; + virtual bool unmarkOutputForShapes(ITensor& tensor) noexcept = 0; + virtual IParametricReLULayer* addParametricReLU(ITensor& input, ITensor& slope) noexcept = 0; + virtual IConvolutionLayer* addConvolutionNd( + ITensor& input, int64_t nbOutputMaps, Dims const& kernelSize, Weights kernelWeights, Weights biasWeights) noexcept + = 0; + virtual IPoolingLayer* addPoolingNd(ITensor& input, PoolingType type, Dims const& windowSize) noexcept = 0; + virtual IDeconvolutionLayer* addDeconvolutionNd( + ITensor& input, int64_t nbOutputMaps, Dims const& kernelSize, Weights kernelWeights, Weights biasWeights) noexcept + = 0; + virtual IScaleLayer* addScaleNd( + ITensor& input, ScaleMode mode, Weights shift, Weights scale, Weights power, int32_t channelAxis) noexcept = 0; + virtual IResizeLayer* addResize(ITensor& input) noexcept = 0; + virtual ILoop* addLoop() noexcept = 0; + virtual ISelectLayer* addSelect(ITensor& condition, ITensor& thenInput, ITensor& elseInput) noexcept = 0; + virtual IFillLayer* addFill(Dims const& dimensions, FillOperation op) noexcept = 0; + virtual IPaddingLayer* addPaddingNd(ITensor& input, Dims const& prePadding, Dims const& postPadding) noexcept = 0; + virtual bool setWeightsName(Weights weights, char const* name) noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual IDequantizeLayer* addDequantize(ITensor& input, ITensor& scale) noexcept = 0; + virtual IQuantizeLayer* addQuantize(ITensor& input, ITensor& scale) noexcept = 0; + virtual IGatherLayer* addGatherV2(ITensor& data, ITensor& indices, GatherMode mode) noexcept = 0; + virtual IIfConditional* addIfConditional() noexcept = 0; + virtual IScatterLayer* addScatter(ITensor& data, ITensor& indices, ITensor& updates, ScatterMode mode) noexcept = 0; + virtual IEinsumLayer* addEinsum(ITensor* const* inputs, int32_t nbInputs, char const* equation) noexcept = 0; + virtual IAssertionLayer* addAssertion(ITensor& condition, char const* message) noexcept = 0; + virtual IOneHotLayer* addOneHot(ITensor& indices, ITensor& values, ITensor& depth, int32_t axis) noexcept = 0; + virtual INonZeroLayer* addNonZero(ITensor& input) noexcept = 0; + virtual IGridSampleLayer* addGridSample(ITensor& input, ITensor& grid) noexcept = 0; + virtual INMSLayer* addNMS(ITensor& boxes, ITensor& scores, ITensor& maxOutputBoxesPerClass) noexcept = 0; + virtual IReverseSequenceLayer* addReverseSequence(ITensor& input, ITensor& sequenceLens) noexcept = 0; + virtual INormalizationLayer* addNormalization( + ITensor& input, ITensor& scale, ITensor& bias, uint32_t axesMask) noexcept = 0; + virtual ICastLayer* addCast(ITensor& input, DataType toType) noexcept = 0; + virtual IBuilder& getBuilder() const noexcept = 0; + virtual NetworkDefinitionCreationFlags getFlags() const noexcept = 0; + virtual bool getFlag(NetworkDefinitionCreationFlag networkDefinitionCreationFlag) const noexcept = 0; + virtual IQuantizeLayer* addQuantizeV2(ITensor& input, ITensor& scale, DataType outputType) noexcept = 0; + virtual IDequantizeLayer* addDequantizeV2(ITensor& input, ITensor& scale, DataType outputType) noexcept = 0; + virtual IFillLayer* addFillV2(Dims const& dimensions, FillOperation op, DataType outputType) noexcept = 0; + virtual bool markDebug(ITensor& tensor) noexcept = 0; + virtual bool unmarkDebug(ITensor& tensor) noexcept = 0; + virtual bool isDebugTensor(ITensor const& tensor) const noexcept = 0; + virtual bool markWeightsRefittable(char const* name) noexcept = 0; + virtual bool unmarkWeightsRefittable(char const* name) noexcept = 0; + virtual bool areWeightsMarkedRefittable(char const* name) const noexcept = 0; + virtual ISqueezeLayer* addSqueeze(ITensor& input, ITensor& axes) noexcept = 0; + virtual IUnsqueezeLayer* addUnsqueeze(ITensor& input, ITensor& axes) noexcept = 0; + virtual IDynamicQuantizeLayer* addDynamicQuantize( + ITensor& input, int32_t axis, int32_t blockSize, DataType toType, DataType scaleType) noexcept = 0; + virtual ICumulativeLayer* addCumulative( + ITensor& input, ITensor& axis, CumulativeOperation operation, bool exclusive, bool reverse) noexcept = 0; + virtual bool markUnfusedTensorsAsDebugTensors() noexcept = 0; + virtual bool unmarkUnfusedTensorsAsDebugTensors() noexcept = 0; + virtual ITopKLayer* addTopKV2( + ITensor& input, TopKOperation op, int32_t k, uint32_t reduceAxes, DataType indicesType) noexcept = 0; + virtual INonZeroLayer* addNonZeroV2(ITensor& input, DataType indicesType) noexcept = 0; + virtual INMSLayer* addNMSV2( + ITensor& boxes, ITensor& scores, ITensor& maxOutputBoxesPerClass, DataType indicesType) noexcept = 0; + virtual IAttention* addAttention( + ITensor& query, ITensor& key, ITensor& value, AttentionNormalizationOp normOp, bool isCausal) noexcept = 0; + virtual IRotaryEmbeddingLayer* addRotaryEmbedding(ITensor& input, ITensor& cosCache, ITensor& sinCache, + bool interleaved, int32_t rotaryEmbeddingDim) noexcept = 0; + virtual IDynamicQuantizeLayer* addDynamicQuantizeV2( + ITensor& input, Dims const& blockShape, DataType toType, DataType scaleType) noexcept = 0; + virtual IKVCacheUpdateLayer* addKVCacheUpdate( + ITensor& cache, ITensor& update, ITensor& writeIndices, KVCacheMode cacheMode) noexcept = 0; + virtual INormalizationLayer* addNormalizationV2( + ITensor& input, ITensor& scale, ITensor& bias, uint32_t axesMask) noexcept = 0; + virtual IMoELayer* addMoE( + ITensor& hiddenStates, ITensor& selectedExpertsForTokens, ITensor& scoresForSelectedExperts) noexcept = 0; + virtual IDistCollectiveLayer* addDistCollective(ITensor& input, CollectiveOperation distCollectiveOp, + ReduceOperation reduceOp, int64_t root, int64_t* groups, int64_t groupSize) noexcept = 0; +}; + +class VAlgorithmIOInfo : public VRoot +{ +public: + virtual DataType getDataType() const noexcept = 0; + virtual Dims getStrides() const noexcept = 0; + virtual int64_t getVectorizedDim() const noexcept = 0; + virtual int64_t getComponentsPerElement() const noexcept = 0; +}; + +class VAlgorithmVariant : public VRoot +{ +public: + virtual int64_t getImplementation() const noexcept = 0; + virtual int64_t getTactic() const noexcept = 0; +}; + +class VAlgorithmContext : public VRoot +{ +public: + virtual char const* getName() const noexcept = 0; + virtual Dims getDimensions(int32_t index, OptProfileSelector select) const noexcept = 0; + virtual int32_t getNbInputs() const noexcept = 0; + virtual int32_t getNbOutputs() const noexcept = 0; +}; + +class VAlgorithm : public VRoot +{ +public: + virtual IAlgorithmVariant const& getAlgorithmVariant() const noexcept = 0; + virtual float getTimingMSec() const noexcept = 0; + virtual std::size_t getWorkspaceSize() const noexcept = 0; + virtual IAlgorithmIOInfo const* getAlgorithmIOInfoByIndex(int32_t index) const noexcept = 0; +}; + + +class VTimingCache : public VRoot +{ +public: + virtual nvinfer1::IHostMemory* serialize() const noexcept = 0; + virtual bool combine(ITimingCache const& inputCache, bool ignoreMismatch) noexcept = 0; + virtual bool reset() noexcept = 0; + virtual int64_t queryKeys(TimingCacheKey* keyBuffer, int64_t capacity) const noexcept = 0; + virtual TimingCacheValue query(TimingCacheKey const& key) const noexcept = 0; + virtual bool update(TimingCacheKey const& key, TimingCacheValue const& value) noexcept = 0; +}; + +class VBuilderConfig : public VRoot +{ +public: + virtual void setAvgTimingIterations(int32_t avgTiming) noexcept = 0; + virtual int32_t getAvgTimingIterations() const noexcept = 0; + virtual void setEngineCapability(EngineCapability capability) noexcept = 0; + virtual EngineCapability getEngineCapability() const noexcept = 0; + virtual void setInt8Calibrator(IInt8Calibrator* calibrator) noexcept = 0; + virtual IInt8Calibrator* getInt8Calibrator() const noexcept = 0; + virtual void setFlags(BuilderFlags builderFlags) noexcept = 0; + virtual BuilderFlags getFlags() const noexcept = 0; + virtual void clearFlag(BuilderFlag builderFlag) noexcept = 0; + virtual void setFlag(BuilderFlag builderFlag) noexcept = 0; + virtual bool getFlag(BuilderFlag builderFlag) const noexcept = 0; + virtual void setDeviceType(ILayer const* layer, DeviceType deviceType) noexcept = 0; + virtual DeviceType getDeviceType(ILayer const* layer) const noexcept = 0; + virtual bool isDeviceTypeSet(ILayer const* layer) const noexcept = 0; + virtual void resetDeviceType(ILayer const* layer) noexcept = 0; + virtual bool canRunOnDLA(ILayer const* layer) const noexcept = 0; + virtual void setDLACore(int32_t dlaCore) noexcept = 0; + virtual int32_t getDLACore() const noexcept = 0; + virtual void setDefaultDeviceType(DeviceType deviceType) noexcept = 0; + virtual DeviceType getDefaultDeviceType() const noexcept = 0; + virtual void reset() noexcept = 0; + virtual void setProfileStream(const cudaStream_t stream) noexcept = 0; + virtual cudaStream_t getProfileStream() const noexcept = 0; + virtual int32_t addOptimizationProfile(IOptimizationProfile const* profile) noexcept = 0; + virtual int32_t getNbOptimizationProfiles() const noexcept = 0; + virtual void setProfilingVerbosity(ProfilingVerbosity verbosity) noexcept = 0; + virtual ProfilingVerbosity getProfilingVerbosity() const noexcept = 0; + virtual void setAlgorithmSelector(IAlgorithmSelector* selector) noexcept = 0; + virtual IAlgorithmSelector* getAlgorithmSelector() const noexcept = 0; + virtual bool setCalibrationProfile(IOptimizationProfile const* profile) noexcept = 0; + virtual IOptimizationProfile const* getCalibrationProfile() noexcept = 0; + virtual void setQuantizationFlags(QuantizationFlags flags) noexcept = 0; + virtual QuantizationFlags getQuantizationFlags() const noexcept = 0; + virtual void clearQuantizationFlag(QuantizationFlag flag) noexcept = 0; + virtual void setQuantizationFlag(QuantizationFlag flag) noexcept = 0; + virtual bool getQuantizationFlag(QuantizationFlag flag) const noexcept = 0; + virtual bool setTacticSources(TacticSources tacticSources) noexcept = 0; + virtual TacticSources getTacticSources() const noexcept = 0; + virtual nvinfer1::ITimingCache* createTimingCache(void const* blob, std::size_t size) const noexcept = 0; + virtual bool setTimingCache(ITimingCache const& cache, bool ignoreMismatch) noexcept = 0; + virtual nvinfer1::ITimingCache const* getTimingCache() const noexcept = 0; + virtual void setMemoryPoolLimit(MemoryPoolType pool, std::size_t poolSize) noexcept = 0; + virtual std::size_t getMemoryPoolLimit(MemoryPoolType pool) const noexcept = 0; + virtual void setPreviewFeature(PreviewFeature feature, bool enable) noexcept = 0; + virtual bool getPreviewFeature(PreviewFeature feature) const noexcept = 0; + virtual void setBuilderOptimizationLevel(int32_t level) noexcept = 0; + virtual int32_t getBuilderOptimizationLevel() const noexcept = 0; + virtual void setHardwareCompatibilityLevel(HardwareCompatibilityLevel hardwareCompatibilityLevel) noexcept = 0; + virtual HardwareCompatibilityLevel getHardwareCompatibilityLevel() const noexcept = 0; + virtual void setPluginsToSerialize(char const* const* paths, int32_t nbPaths) noexcept = 0; + virtual char const* getPluginToSerialize(int32_t index) const noexcept = 0; + virtual int32_t getNbPluginsToSerialize() const noexcept = 0; + virtual void setMaxAuxStreams(int32_t nbStreams) noexcept = 0; + virtual int32_t getMaxAuxStreams() const noexcept = 0; + virtual void setProgressMonitor(IProgressMonitor* monitor) noexcept = 0; + virtual IProgressMonitor* getProgressMonitor() const noexcept = 0; + virtual void setRuntimePlatform(RuntimePlatform runtimePlatform) noexcept = 0; + virtual RuntimePlatform getRuntimePlatform() const noexcept = 0; + virtual void setMaxNbTactics(int32_t maxTactics) noexcept = 0; + virtual int32_t getMaxNbTactics() const noexcept = 0; + virtual bool setTilingOptimizationLevel(TilingOptimizationLevel level) noexcept = 0; + virtual TilingOptimizationLevel getTilingOptimizationLevel() const noexcept = 0; + virtual bool setL2LimitForTiling(int64_t size) noexcept = 0; + virtual int64_t getL2LimitForTiling() const noexcept = 0; + virtual bool setRemoteAutoTuningConfig(char const* config) noexcept = 0; + virtual char const* getRemoteAutoTuningConfig() const noexcept = 0; +}; + +class VSerializationConfig : public VRoot +{ +public: + virtual bool setFlags(SerializationFlags serializationFlags) noexcept = 0; + virtual SerializationFlags getFlags() const noexcept = 0; + virtual bool clearFlag(SerializationFlag serializationFlag) noexcept = 0; + virtual bool setFlag(SerializationFlag serializationFlag) noexcept = 0; + virtual bool getFlag(SerializationFlag serializationFlag) const noexcept = 0; +}; + +class VBuilder : public VRoot +{ +public: + virtual bool platformHasFastFp16() const noexcept = 0; + virtual bool platformHasFastInt8() const noexcept = 0; + virtual int32_t getMaxDLABatchSize() const noexcept = 0; + virtual int32_t getNbDLACores() const noexcept = 0; + virtual void setGpuAllocator(IGpuAllocator* allocator) noexcept = 0; + virtual nvinfer1::IBuilderConfig* createBuilderConfig() noexcept = 0; + virtual nvinfer1::INetworkDefinition* createNetworkV2(NetworkDefinitionCreationFlags flags) noexcept = 0; + virtual nvinfer1::IOptimizationProfile* createOptimizationProfile() noexcept = 0; + virtual void setErrorRecorder(IErrorRecorder* recorder) noexcept = 0; + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual void reset() noexcept = 0; + virtual bool platformHasTf32() const noexcept = 0; + virtual nvinfer1::IHostMemory* buildSerializedNetwork( + INetworkDefinition& network, IBuilderConfig& config) noexcept = 0; + virtual bool isNetworkSupported(INetworkDefinition const& network, IBuilderConfig const& config) const noexcept = 0; + virtual ILogger* getLogger() const noexcept = 0; + virtual bool setMaxThreads(int32_t maxThreads) noexcept = 0; + virtual int32_t getMaxThreads() const noexcept = 0; + virtual IPluginRegistry& getPluginRegistry() noexcept = 0; + virtual ICudaEngine* buildEngineWithConfig(INetworkDefinition& network, IBuilderConfig& config) noexcept = 0; + virtual bool buildSerializedNetworkToStream( + INetworkDefinition& network, IBuilderConfig& config, IStreamWriter& writer) noexcept = 0; + virtual nvinfer1::IHostMemory* buildSerializedNetworkWithKernelText( + INetworkDefinition& network, IBuilderConfig& config, IHostMemory*& kernelText) noexcept + = 0; +}; + +class VRuntimeConfig : public VRoot +{ +public: + virtual IRuntimeConfig* getPImpl() noexcept = 0; + virtual void setExecutionContextAllocationStrategy(ExecutionContextAllocationStrategy strategy) noexcept = 0; + virtual ExecutionContextAllocationStrategy getExecutionContextAllocationStrategy() const noexcept = 0; +}; + + +class VDistCollectiveLayer : public VRoot +{ +}; // VDistCollectiveLayer + +} // namespace apiv +} // namespace nvinfer1 + +// @endcond + +#endif // NV_INFER_RUNTIME_IMPL_H diff --git a/tensorrt/include/NvInferLegacyDims.h b/tensorrt/include/NvInferLegacyDims.h new file mode 100644 index 0000000000000000000000000000000000000000..098fcb9a1f27514cd0b297b6e57c2d88f1545744 --- /dev/null +++ b/tensorrt/include/NvInferLegacyDims.h @@ -0,0 +1,206 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_LEGACY_DIMS_H +#define NV_INFER_LEGACY_DIMS_H + +#define NV_INFER_INTERNAL_INCLUDE 1 +#include "NvInferRuntimeBase.h" // IWYU pragma: exports +#undef NV_INFER_INTERNAL_INCLUDE + +//! +//! \file NvInferLegacyDims.h +//! +//! This file contains declarations of legacy dimensions types which use channel +//! semantics in their names, and declarations on which those types rely. +//! + +//! +//! \namespace nvinfer1 +//! +//! \brief The TensorRT API version 1 namespace. +//! +namespace nvinfer1 +{ +//! +//! \class Dims2 +//! +//! \brief Descriptor for two-dimensional data. +//! +class Dims2 : public Dims +{ +public: + //! + //! \brief Construct an empty Dims2 object. + //! + Dims2() + : Dims2(0, 0) + { + } + + //! + //! \brief Construct a Dims2 from 2 elements. + //! + //! \param d0 The first element. + //! \param d1 The second element. + //! + Dims2(int64_t d0, int64_t d1) + { + nbDims = 2; + d[0] = d0; + d[1] = d1; + for (int64_t i{nbDims}; i < Dims::MAX_DIMS; ++i) + { + d[i] = 0; + } + } +}; + +//! +//! \class DimsHW +//! +//! \brief Descriptor for two-dimensional spatial data. +//! +class DimsHW : public Dims2 +{ +public: + //! + //! \brief Construct an empty DimsHW object. + //! + DimsHW() + : Dims2() + { + } + + //! + //! \brief Construct a DimsHW given height and width. + //! + //! \param height the height of the data + //! \param width the width of the data + //! + DimsHW(int64_t height, int64_t width) + : Dims2(height, width) + { + } + + //! + //! \brief Get the height. + //! + //! \return The height. + //! + int64_t& h() + { + return d[0]; + } + + //! + //! \brief Get the height. + //! + //! \return The height. + //! + int64_t h() const + { + return d[0]; + } + + //! + //! \brief Get the width. + //! + //! \return The width. + //! + int64_t& w() + { + return d[1]; + } + + //! + //! \brief Get the width. + //! + //! \return The width. + //! + int64_t w() const + { + return d[1]; + } +}; + +//! +//! \class Dims3 +//! +//! \brief Descriptor for three-dimensional data. +//! +class Dims3 : public Dims2 +{ +public: + //! + //! \brief Construct an empty Dims3 object. + //! + Dims3() + : Dims3(0, 0, 0) + { + } + + //! + //! \brief Construct a Dims3 from 3 elements. + //! + //! \param d0 The first element. + //! \param d1 The second element. + //! \param d2 The third element. + //! + Dims3(int64_t d0, int64_t d1, int64_t d2) + : Dims2(d0, d1) + { + nbDims = 3; + d[2] = d2; + } +}; + +//! +//! \class Dims4 +//! +//! \brief Descriptor for four-dimensional data. +//! +class Dims4 : public Dims3 +{ +public: + //! + //! \brief Construct an empty Dims4 object. + //! + Dims4() + : Dims4(0, 0, 0, 0) + { + } + + //! + //! \brief Construct a Dims4 from 4 elements. + //! + //! \param d0 The first element. + //! \param d1 The second element. + //! \param d2 The third element. + //! \param d3 The fourth element. + //! + Dims4(int64_t d0, int64_t d1, int64_t d2, int64_t d3) + : Dims3(d0, d1, d2) + { + nbDims = 4; + d[3] = d3; + } +}; + +} // namespace nvinfer1 + +#endif // NV_INFER_LEGCY_DIMS_H diff --git a/tensorrt/include/NvInferPlugin.h b/tensorrt/include/NvInferPlugin.h new file mode 100644 index 0000000000000000000000000000000000000000..c391483f742e0951dc0e3f71fbc3f5a8d61a47cc --- /dev/null +++ b/tensorrt/include/NvInferPlugin.h @@ -0,0 +1,42 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_PLUGIN_H +#define NV_INFER_PLUGIN_H + +#include "NvInfer.h" +#include "NvInferPluginUtils.h" +//! +//! \file NvInferPlugin.h +//! +//! This is the API for the Nvidia provided TensorRT plugins. +//! + +extern "C" +{ + //! + //! \brief Initialize and register all the existing TensorRT plugins to the Plugin Registry with an optional + //! namespace. The plugin library author should ensure that this function name is unique to the library. This + //! function should be called once before accessing the Plugin Registry. + //! \param logger Logger object to print plugin registration information + //! \param libNamespace Namespace used to register all the plugins in this library + //! + TENSORRTAPI bool initLibNvInferPlugins(void* logger, char const* libNamespace); + +} // extern "C" + +#endif // NV_INFER_PLUGIN_H diff --git a/tensorrt/include/NvInferPluginBase.h b/tensorrt/include/NvInferPluginBase.h new file mode 100644 index 0000000000000000000000000000000000000000..2add45a73826a1fe9844be3b375f4682a3803cc1 --- /dev/null +++ b/tensorrt/include/NvInferPluginBase.h @@ -0,0 +1,291 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_PLUGIN_BASE_H +#define NV_INFER_PLUGIN_BASE_H + +#if !defined(NV_INFER_INTERNAL_INCLUDE) +static_assert(false, "Do not directly include this file. Include NvInferRuntime.h or NvInferPluginUtils.h"); +#endif + +#define NV_INFER_INTERNAL_INCLUDE 1 +#include "NvInferRuntimeBase.h" // IWYU pragma: exports +#undef NV_INFER_INTERNAL_INCLUDE +namespace nvinfer1 +{ + +//! +//! \enum PluginFieldType +//! +//! \brief The possible field types for custom layer. +//! +enum class PluginFieldType : int32_t +{ + //! FP16 field type. + kFLOAT16 = 0, + //! FP32 field type. + kFLOAT32 = 1, + //! FP64 field type. + kFLOAT64 = 2, + //! INT8 field type. + kINT8 = 3, + //! INT16 field type. + kINT16 = 4, + //! INT32 field type. + kINT32 = 5, + //! char field type. + kCHAR = 6, + //! nvinfer1::Dims field type. + kDIMS = 7, + //! Unknown field type. + kUNKNOWN = 8, + //! BF16 field type. + kBF16 = 9, + //! INT64 field type. + kINT64 = 10, + //! FP8 field type. + kFP8 = 11, + //! INT4 field type. + kINT4 = 12, + //! FP4 field type. + kFP4 = 13, +}; + +//! +//! \class PluginField +//! +//! \brief Structure containing plugin attribute field names and associated data +//! This information can be parsed to decode necessary plugin metadata +//! +//! +class PluginField +{ +public: + //! Plugin field attribute name + AsciiChar const* name; + //! Plugin field attribute data + void const* data; + //! Plugin field attribute type + PluginFieldType type; + //! Number of data entries in the Plugin attribute + int32_t length; + + PluginField(AsciiChar const* const name_ = nullptr, void const* const data_ = nullptr, + PluginFieldType const type_ = PluginFieldType::kUNKNOWN, int32_t const length_ = 0) noexcept + : name(name_) + , data(data_) + , type(type_) + , length(length_) + { + } +}; + +//! +//! \struct PluginFieldCollection +//! +//! \brief Plugin field collection struct. +//! +struct PluginFieldCollection +{ + //! Number of PluginField entries. + int32_t nbFields{}; + //! Pointer to PluginField entries. + PluginField const* fields{}; +}; + +//! +//! \enum TensorRTPhase +//! +//! \brief Indicates a phase of operation of TensorRT +//! +enum class TensorRTPhase : int32_t +{ + //! Build phase of TensorRT + kBUILD = 0, + //! Execution phase of TensorRT + kRUNTIME = 1 +}; + +//! +//! \enum PluginCapabilityType +//! +//! \brief Enumerates the different capability types a IPluginV3 object may have +//! +enum class PluginCapabilityType : int32_t +{ + //! Core capability. Every IPluginV3 object must have this. + kCORE = 0, + //! Build capability. IPluginV3 objects provided to TensorRT build phase must have this. + kBUILD = 1, + //! Runtime capability. IPluginV3 objects provided to TensorRT build and execution phases must have this. + kRUNTIME = 2 +}; + +namespace v_1_0 +{ +class IPluginCapability : public IVersionedInterface +{ +}; + +class IPluginResource : public IVersionedInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IPluginResource", 1, 0}; + } + //! + //! \brief Free the underlying resource + //! + //! This will only be called for IPluginResource objects that were produced from IPluginResource::clone() + //! + //! The IPluginResource object on which release() is called must still be in a clone-able state + //! after release() returns + //! + //! \return 0 for success, else non-zero + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: No; this method is not required to be thread-safe + //! + virtual int32_t release() noexcept = 0; + + //! + //! \brief Clone the resource object + //! + //! \note Resource initialization (if any) may be skipped for non-cloned objects since only clones will be + //! registered by TensorRT + //! + //! \return Pointer to cloned object. nullptr if there was an issue. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes; this method is required to be thread-safe and may be called from multiple threads. + //! + virtual IPluginResource* clone() noexcept = 0; + + ~IPluginResource() noexcept override = default; + + IPluginResource() = default; + IPluginResource(IPluginResource const&) = default; + IPluginResource(IPluginResource&&) = default; + IPluginResource& operator=(IPluginResource const&) & = default; + IPluginResource& operator=(IPluginResource&&) & = default; +}; // class IPluginResource + +class IPluginCreatorInterface : public IVersionedInterface +{ +public: + ~IPluginCreatorInterface() noexcept override = default; + +protected: + IPluginCreatorInterface() = default; + IPluginCreatorInterface(IPluginCreatorInterface const&) = default; + IPluginCreatorInterface(IPluginCreatorInterface&&) = default; + IPluginCreatorInterface& operator=(IPluginCreatorInterface const&) & = default; + IPluginCreatorInterface& operator=(IPluginCreatorInterface&&) & = default; +}; + +class IPluginV3 : public IVersionedInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN", 1, 0}; + } + + //! \brief Return a pointer to plugin object implementing the specified PluginCapabilityType. + //! + //! \note IPluginV3 objects added for the build phase (through addPluginV3()) must return valid objects for + //! PluginCapabilityType::kCORE, PluginCapabilityType::kBUILD and PluginCapabilityType::kRUNTIME. + //! + //! \note IPluginV3 objects added for the runtime phase must return valid objects for + //! PluginCapabilityType::kCORE and PluginCapabilityType::kRUNTIME. + //! + //! \see TensorRTPhase + //! \see IPluginCreatorV3One::createPlugin() + //! + virtual IPluginCapability* getCapabilityInterface(PluginCapabilityType type) noexcept = 0; + + //! + //! \brief Clone the plugin object. This copies over internal plugin parameters and returns a new plugin object with + //! these parameters. The cloned object must be in a fully initialized state. + //! + //! \note The cloned object must return valid objects through getCapabilityInterface() for at least the same + //! PluginCapabilityTypes as the original object. + //! + //! \return A cloned plugin object in an initialized state with the same parameters as the current object. + //! nullptr must be returned if the cloning fails. + //! + virtual IPluginV3* clone() noexcept = 0; +}; +} // namespace v_1_0 + +//! +//! \class IPluginResource +//! +//! \brief Interface for plugins to define custom resources that could be shared through the plugin registry +//! +//! \see IPluginRegistry::acquirePluginResource +//! \see IPluginRegistry::releasePluginResource +//! +using IPluginResource = v_1_0::IPluginResource; + +//! +//! \class IPluginCreatorInterface +//! +//! \brief Base class for all plugin creator versions. +//! +//! \see IPluginCreator and IPluginRegistry +//! +using IPluginCreatorInterface = v_1_0::IPluginCreatorInterface; + +//! +//! \class IPluginV3 +//! +//! \brief Plugin class for the V3 generation of user-implemented layers. +//! +//! IPluginV3 acts as a wrapper around the plugin capability interfaces that define the actual behavior of the plugin. +//! +//! \see IPluginCapability +//! \see IPluginCreatorV3One +//! \see IPluginRegistry +//! +using IPluginV3 = v_1_0::IPluginV3; + +//! +//! \class IPluginCapability +//! +//! \brief Base class for plugin capability interfaces +//! +//! IPluginCapability represents a split in TensorRT V3 plugins to sub-objects that expose different types of +//! capabilites a plugin may have, as opposed to a single interface which defines all capabilities and behaviors of a +//! plugin. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \see PluginCapabilityType +//! +using IPluginCapability = v_1_0::IPluginCapability; +} // namespace nvinfer1 + +#endif /* NV_INFER_PLUGIN_BASE_H */ diff --git a/tensorrt/include/NvInferPluginUtils.h b/tensorrt/include/NvInferPluginUtils.h new file mode 100644 index 0000000000000000000000000000000000000000..a4020ab13b18b78559c92c2e48eea8321e6e38ea --- /dev/null +++ b/tensorrt/include/NvInferPluginUtils.h @@ -0,0 +1,204 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_PLUGIN_UTILS_H +#define NV_INFER_PLUGIN_UTILS_H + +#include "NvInferRuntimeCommon.h" + +//! +//! \file NvInferPluginUtils.h +//! +//! This is the API for the Nvidia provided TensorRT plugin utilities. +//! It lists all the parameters utilized by the TensorRT plugins. +//! + +namespace nvinfer1 +{ +namespace plugin +{ + +//! +//! \struct PriorBoxParameters +//! +//! \brief The PriorBox plugin layer generates the prior boxes of designated sizes and aspect ratios across all +//! dimensions (H x W). +//! +//! PriorBoxParameters defines a set of parameters for creating the PriorBox plugin layer. +//! +struct PriorBoxParameters +{ + float *minSize; //!< Minimum box size in pixels. Can not be nullptr. + float *maxSize; //!< Maximum box size in pixels. Can be nullptr. + float *aspectRatios; //!< Aspect ratios of the boxes. Can be nullptr. + int32_t numMinSize; //!< Number of elements in minSize. Must be larger than 0. + int32_t numMaxSize; //!< Number of elements in maxSize. Can be 0 or same as numMinSize. + int32_t numAspectRatios; //!< Number of elements in aspectRatios. Can be 0. + bool flip; //!< If true, will flip each aspect ratio. For example, + //!< if there is an aspect ratio "r", the aspect ratio "1.0/r" will be generated as well. + bool clip; //!< If true, will clip the prior so that it is within [0,1]. + float variance[4]; //!< Variance for adjusting the prior boxes. + int32_t imgH; //!< Image height. If 0, then the H dimension of the data tensor will be used. + int32_t imgW; //!< Image width. If 0, then the W dimension of the data tensor will be used. + float stepH; //!< Step in H. If 0, then (float)imgH/h will be used where h is the H dimension of the 1st input tensor. + float stepW; //!< Step in W. If 0, then (float)imgW/w will be used where w is the W dimension of the 1st input tensor. + float offset; //!< Offset to the top left corner of each cell. +}; + +//! +//! \struct RPROIParams +//! +//! \brief RPROIParams is used to create the RPROIPlugin instance. +//! +struct RPROIParams +{ + int32_t poolingH; //!< Height of the output in pixels after ROI pooling on feature map. + int32_t poolingW; //!< Width of the output in pixels after ROI pooling on feature map. + int32_t featureStride; //!< Feature stride; ratio of input image size to feature map size. + //!< Assuming that max pooling layers in the neural network use square filters. + int32_t preNmsTop; //!< Number of proposals to keep before applying NMS. + int32_t nmsMaxOut; //!< Number of remaining proposals after applying NMS. + int32_t anchorsRatioCount; //!< Number of anchor box ratios. + int32_t anchorsScaleCount; //!< Number of anchor box scales. + float iouThreshold; //!< IoU (Intersection over Union) threshold used for the NMS step. + float minBoxSize; //!< Minimum allowed bounding box size before scaling, used for anchor box calculation. + float spatialScale; //!< Spatial scale between the input image and the last feature map. +}; + +//! +//! \struct GridAnchorParameters +//! +//! \brief The Anchor Generator plugin layer generates the prior boxes of designated sizes and aspect ratios across all dimensions (H x W). +//! GridAnchorParameters defines a set of parameters for creating the plugin layer for all feature maps. +//! +struct GridAnchorParameters +{ + float minSize; //!< Scale of anchors corresponding to finest resolution. + float maxSize; //!< Scale of anchors corresponding to coarsest resolution. + float* aspectRatios; //!< List of aspect ratios to place on each grid point. + int32_t numAspectRatios; //!< Number of elements in aspectRatios. + int32_t H; //!< Height of feature map to generate anchors for. + int32_t W; //!< Width of feature map to generate anchors for. + float variance[4]; //!< Variance for adjusting the prior boxes. +}; + +//! +//! \enum CodeTypeSSD +//! +//! \brief The type of encoding used for decoding the bounding boxes and loc_data. +//! +//! \deprecated Deprecated in TensorRT 10.0. DetectionOutput plugin is deprecated. +//! +enum class CodeTypeSSD : int32_t +{ + CORNER TRT_DEPRECATED_ENUM = 0, //!< Use box corners. + CENTER_SIZE TRT_DEPRECATED_ENUM = 1, //!< Use box centers and size. + CORNER_SIZE TRT_DEPRECATED_ENUM = 2, //!< Use box centers and size. + TF_CENTER TRT_DEPRECATED_ENUM = 3 //!< Use box centers and size but flip x and y coordinates. +}; + +//! +//! \struct DetectionOutputParameters +//! +//! \brief The DetectionOutput plugin layer generates the detection output +//! based on location and confidence predictions by doing non maximum suppression. +//! +//! This plugin first decodes the bounding boxes based on the anchors generated. +//! It then performs non_max_suppression on the decoded bounding boxes. +//! DetectionOutputParameters defines a set of parameters for creating the DetectionOutput plugin layer. +//! +//! \deprecated Deprecated in TensorRT 10.0. DetectionOutput plugin is deprecated. +//! +struct TRT_DEPRECATED DetectionOutputParameters +{ + bool shareLocation; //!< If true, bounding box are shared among different classes. + bool varianceEncodedInTarget; //!< If true, variance is encoded in target. + //!< Otherwise we need to adjust the predicted offset accordingly. + int32_t backgroundLabelId; //!< Background label ID. If there is no background class, set it as -1. + int32_t numClasses; //!< Number of classes to be predicted. + int32_t topK; //!< Number of boxes per image with top confidence scores that are fed + //!< into the NMS algorithm. + int32_t keepTopK; //!< Number of total bounding boxes to be kept per image after NMS step. + float confidenceThreshold; //!< Only consider detections whose confidences are larger than a threshold. + float nmsThreshold; //!< Threshold to be used in NMS. + CodeTypeSSD codeType; //!< Type of coding method for bbox. + int32_t inputOrder[3]; //!< Specifies the order of inputs {loc_data, conf_data, priorbox_data}. + bool confSigmoid; //!< Set to true to calculate sigmoid of confidence scores. + bool isNormalized; //!< Set to true if bounding box data is normalized by the network. + bool isBatchAgnostic{true}; //!< Defaults to true. Set to false if prior boxes are unique per batch. +}; + +//! +//! \brief When performing yolo9000, softmaxTree is helping to do softmax on confidence scores, +//! for element to get the precise classification through word-tree structured classification definition. +//! +struct softmaxTree +{ + int32_t* leaf; + int32_t n; + int32_t* parent; + int32_t* child; + int32_t* group; + char** name; + int32_t groups; + int32_t* groupSize; + int32_t* groupOffset; +}; + +//! +//! \brief The Region plugin layer performs region proposal calculation. +//! +//! Generate 5 bounding boxes per cell (for yolo9000, generate 3 bounding boxes per cell). +//! For each box, calculating its probabilities of objects detections from 80 pre-defined classifications +//! (yolo9000 has 9418 pre-defined classifications, and these 9418 items are organized as work-tree structure). +//! RegionParameters defines a set of parameters for creating the Region plugin layer. +//! +struct RegionParameters +{ + int32_t num; //!< Number of predicted bounding box for each grid cell. + int32_t coords; //!< Number of coordinates for a bounding box. + int32_t classes; //!< Number of classifications to be predicted. + softmaxTree* smTree; //!< Helping structure to do softmax on confidence scores. +}; + +//! +//! \brief The NMSParameters are used by the BatchedNMSPlugin for performing +//! the non_max_suppression operation over boxes for object detection networks. +//! +//! \deprecated Deprecated in TensorRT 10.0. BatchedNMSPlugin plugin is deprecated. +//! +struct TRT_DEPRECATED NMSParameters +{ + bool shareLocation; //!< If set to true, the boxes inputs are shared across all classes. + //!< If set to false, the boxes input should account for per class box data. + int32_t backgroundLabelId; //!< Label ID for the background class. + //!< If there is no background class, set it as -1 + int32_t numClasses; //!< Number of classes in the network. + int32_t topK; //!< Number of bounding boxes to be fed into the NMS step. + int32_t keepTopK; //!< Number of total bounding boxes to be kept per image after NMS step. + //!< Should be less than or equal to the topK value. + float scoreThreshold; //!< Scalar threshold for score (low scoring boxes are removed). + float iouThreshold; //!< A scalar threshold for IOU (new boxes that have high IOU overlap + //!< with previously selected boxes are removed). + bool isNormalized; //!< Set to false, if the box coordinates are not normalized, + //!< i.e. not in the range [0,1]. Defaults to false. +}; + +} // namespace plugin +} // namespace nvinfer1 + +#endif // NV_INFER_PLUGIN_UTILS_H diff --git a/tensorrt/include/NvInferRuntime.h b/tensorrt/include/NvInferRuntime.h new file mode 100644 index 0000000000000000000000000000000000000000..a863d47ae0a395c8cc69ca187be0bad86090d4b7 --- /dev/null +++ b/tensorrt/include/NvInferRuntime.h @@ -0,0 +1,5786 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_RUNTIME_H +#define NV_INFER_RUNTIME_H + +//! +//! \file NvInferRuntime.h +//! +//! This is the top-level API file for TensorRT extended runtime library. +//! + +#include "NvInferImpl.h" // IWYU pragma: export +#define NV_INFER_INTERNAL_INCLUDE 1 +#include "NvInferPluginBase.h" // IWYU pragma: export +#undef NV_INFER_INTERNAL_INCLUDE +#include "NvInferRuntimeCommon.h" // IWYU pragma: export + +namespace nvinfer1 +{ + +class IExecutionContext; //!< Forward declaration of IExecutionContext for use by other interfaces. +class ICudaEngine; //!< Forward declaration of ICudaEngine for use by other interfaces. +class IPluginFactory; //!< Forward declaration of IPluginFactory for use by other interfaces. +class IEngineInspector; //!< Forward declaration of IEngineInspector for use by other interfaces. + +//! +//! \class INoCopy +//! +//! \brief Base class for all TensorRT interfaces that are implemented by the TensorRT libraries +//! +//! Objects of such classes are not movable or copyable, and should only be manipulated +//! via pointers. +//! + +class INoCopy +{ +protected: + INoCopy() = default; + virtual ~INoCopy() = default; + INoCopy(INoCopy const& other) = delete; + INoCopy& operator=(INoCopy const& other) = delete; + INoCopy(INoCopy&& other) = delete; + INoCopy& operator=(INoCopy&& other) = delete; +}; + +//! +//! \enum EngineCapability +//! +//! \brief List of supported engine capability flows. +//! +//! \details The EngineCapability determines the restrictions of a network during build time and what runtime +//! it targets. EngineCapability::kSTANDARD does not provide any restrictions on functionality and the resulting +//! serialized engine can be executed with TensorRT's standard runtime APIs in the nvinfer1 namespace. +//! EngineCapability::kSAFETY provides a restricted subset of network operations that are safety certified and the +//! resulting serialized engine can be executed with TensorRT's safe runtime APIs in the nvinfer2::safe namespace. +//! EngineCapability::kDLA_STANDALONE provides a restricted subset of network operations that are DLA compatible and the +//! resulting serialized engine can be executed using standalone DLA runtime APIs. See sampleCudla for an example of +//! integrating cuDLA APIs with TensorRT APIs. +//! +enum class EngineCapability : int32_t +{ + //! + //! Standard: TensorRT flow without targeting the safety runtime. + //! This flow supports both DeviceType::kGPU and DeviceType::kDLA. + //! + kSTANDARD = 0, + + //! + //! Safety: TensorRT flow with restrictions targeting the safety runtime. + //! See safety documentation for list of supported layers and formats. + //! This flow supports only DeviceType::kGPU. + //! + //! This flag is only supported in NVIDIA Drive(R) products. + kSAFETY = 1, + + //! + //! DLA Standalone: TensorRT flow with restrictions targeting external, to TensorRT, DLA runtimes. + //! See DLA documentation for list of supported layers and formats. + //! This flow supports only DeviceType::kDLA. + //! + kDLA_STANDALONE = 2, +}; + +namespace impl +{ +//! Maximum number of elements in EngineCapability enum. \see EngineCapability +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 3; +}; +} // namespace impl + +//! +//! \class Weights +//! +//! \brief An array of weights used as a layer parameter. +//! +//! When using the DLA, the cumulative size of all Weights used in a network +//! must be less than 512MB in size. If the build option kGPU_FALLBACK is specified, +//! then multiple DLA sub-networks may be generated from the single original network. +//! +//! The weights are held by reference until the engine has been built. Therefore the data referenced +//! by \p values field should be preserved until the build is complete. +//! +//! The term "empty weights" refers to Weights with weight coefficients ( \p count == 0 and \p values == nullptr). +//! +class Weights +{ +public: + DataType type; //!< The type of the weights. + void const* values; //!< The weight values, in a contiguous array. + int64_t count; //!< The number of weights in the array. +}; + +//! +//! \class IHostMemory +//! +//! \brief Class to handle library allocated memory that is accessible to the user. +//! +//! The memory allocated via the host memory object is owned by the library and will +//! be de-allocated when the destroy method is called. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IHostMemory : public INoCopy +{ +public: + virtual ~IHostMemory() noexcept = default; + + //! A pointer to the raw data that is owned by the library. + void* data() const noexcept + { + return mImpl->data(); + } + + //! The size in bytes of the data that was allocated. + std::size_t size() const noexcept + { + return mImpl->size(); + } + + //! The type of the memory that was allocated. + DataType type() const noexcept + { + return mImpl->type(); + } + +protected: + apiv::VHostMemory* mImpl; +}; + +//! +//! \enum DimensionOperation +//! +//! \brief An operation on two IDimensionExpr, which represent integer expressions used in dimension computations. +//! +//! For example, given two IDimensionExpr x and y and an IExprBuilder& eb, +//! eb.operation(DimensionOperation::kSUM, x, y) creates a representation of x+y. +//! +//! \see IDimensionExpr, IExprBuilder +//! +enum class DimensionOperation : int32_t +{ + kSUM = 0, //!< Sum of the two operands. + kPROD = 1, //!< Product of the two operands. + kMAX = 2, //!< Maximum of the two operands. + kMIN = 3, //!< Minimum of the two operands. + kSUB = 4, //!< Substract the second element from the first. + kEQUAL = 5, //!< 1 if operands are equal, 0 otherwise. + kLESS = 6, //!< 1 if first operand is less than second operand, 0 otherwise. + kFLOOR_DIV = 7, //!< Floor division of the first element by the second. + kCEIL_DIV = 8 //!< Division rounding up +}; + +//! Maximum number of elements in DimensionOperation enum. \see DimensionOperation +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 9; +} + +//! +//! \enum TensorLocation +//! +//! \brief The location for tensor data storage, device or host. +//! +enum class TensorLocation : int32_t +{ + kDEVICE = 0, //!< Data stored on device. + kHOST = 1, //!< Data stored on host. +}; + +namespace impl +{ +//! Maximum number of elements in TensorLocation enum. \see TensorLocation +template <> +struct EnumMaxImpl +{ + static constexpr int32_t kVALUE = 2; +}; +} // namespace impl + +//! +//! \class IDimensionExpr +//! +//! \brief An IDimensionExpr represents an integer expression constructed from constants, +//! input dimensions, and binary operations. These expressions are can be used +//! in overrides of IPluginV2DynamicExt::getOutputDimensions or IPluginV3OneBuild::getOutputShapes() to define output +//! dimensions in terms of input dimensions. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \see DimensionOperation, IPluginV2DynamicExt::getOutputDimensions, IPluginV3OneBuild::getOutputShapes() +//! +class IDimensionExpr : public INoCopy +{ +public: + //! + //! \brief Return true if expression is a build-time constant. + //! + bool isConstant() const noexcept + { + return mImpl->isConstant(); + } + + //! + //! \brief Get the value of the constant. + //! + //! If isConstant(), returns value of the constant. + //! If !isConstant(), return std::numeric_limits::min(). + //! + int64_t getConstantValue() const noexcept + { + return mImpl->getConstantValue(); + } + +protected: + apiv::VDimensionExpr* mImpl; + virtual ~IDimensionExpr() noexcept = default; + +public: + //! + //! \brief Return true if this denotes the value of a size tensor. + //! + //! \return True if this was created with method IExprBuilder::declareSizeTensor, false otherwise + //! + bool isSizeTensor() const noexcept + { + return mImpl->isSizeTensor(); + } +}; + +//! +//! \class IExprBuilder +//! +//! \brief Object for constructing IDimensionExpr. +//! +//! There is no public way to construct an IExprBuilder. It appears as an argument to +//! method IPluginV2DynamicExt::getOutputDimensions() and IPluginV3OneBuild::getOutputShapes(). Overrides of that +//! method can use that IExprBuilder argument to construct expressions that define output dimensions in terms of input +//! dimensions. +//! +//! Clients should assume that any values constructed by the IExprBuilder are destroyed +//! after IPluginV2DynamicExt::getOutputDimensions() or IPluginV3OneBuild::getOutputShapes() returns. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \see IDimensionExpr +//! +class IExprBuilder : public INoCopy +{ +public: + //! + //! \brief Return pointer to IDimensionExpr for given value. + //! + IDimensionExpr const* constant(int64_t value) noexcept + { + return mImpl->constant(value); + } + + //! + //! \brief Get the operation. + //! + //! Return pointer to IDimensionExpr that represents the given operation applied to first and second. + //! Returns nullptr if op is not a valid DimensionOperation. + //! + IDimensionExpr const* operation( + DimensionOperation op, IDimensionExpr const& first, IDimensionExpr const& second) noexcept + { + return mImpl->operation(op, first, second); + } + +protected: + apiv::VExprBuilder* mImpl; + virtual ~IExprBuilder() noexcept = default; + +public: + //! + //! \brief Declare a size tensor at the given output index, with the specified auto-tuning formula and upper bound. + //! + //! A size tensor allows a plugin to have output dimensions that cannot be computed solely from input dimensions. + //! For example, suppose a plugin implements the equivalent of INonZeroLayer for 2D input. The plugin can + //! have one output for the indices of non-zero elements, and a second output containing the number of non-zero + //! elements. Suppose the input has size [M,N] and has K non-zero elements. The plugin can write K to the second + //! output. When telling TensorRT that the first output has shape [2,K], plugin uses IExprBuilder::constant() and + //! IExprBuilder::declareSizeTensor(1,...) to create the IDimensionExpr that respectively denote 2 and K. + //! + //! TensorRT also needs to know the value of K to use for auto-tuning and an upper bound on K so that it can + //! allocate memory for the output tensor. In the example, supposed typically half of the plugin's input elements + //! are non-zero, and all the elements might be nonzero. then using M*N/2 might be a good expression for the opt + //! parameter, and M*N for the upper bound. IDimensionsExpr for these expressions can be constructed from + //! IDimensionsExpr for the input dimensions. + //! + //! \param outputIndex index of a plugin output that is a size tensor. + //! \param opt formula for computing auto-tuning value. Must not depend on a size tensor. + //! \param upper Upper bound on the size tensor. + //! + //! \return IDimensionExpr denoting the value of the size tensor. + //! + //! \see IPluginV3OneBuild::getOutputShapes() + //! + IDimensionExpr const* declareSizeTensor(int32_t outputIndex, IDimensionExpr const& opt, IDimensionExpr const& upper) + { + return mImpl->declareSizeTensor(outputIndex, opt, upper); + } +}; + +//! +//! \class DimsExprs +//! +//! \brief Analog of class Dims with expressions instead of constants for the dimensions. +//! +class DimsExprs +{ +public: + int32_t nbDims; //!< The number of dimensions. + IDimensionExpr const* d[Dims::MAX_DIMS]; //!< The extent of each dimension. +}; + +//! +//! \struct DynamicPluginTensorDesc +//! +//! \brief Summarizes tensors that a plugin might see for an input or output. +//! +struct DynamicPluginTensorDesc +{ + //! Information required to interpret a pointer to tensor data, except that desc.dims has -1 in place of any runtime dimension. + PluginTensorDesc desc; + + //! Lower bounds on tensorโ€™s dimensions + Dims min; + + //! Upper bounds on tensorโ€™s dimensions + Dims max; + + //! Optimum value of tensorโ€™s dimensions specified for auto-tuning + Dims opt; +}; + +//! +//! \class IPluginV2DynamicExt +//! +//! \brief Similar to IPluginV2Ext, but with support for dynamic shapes. +//! +//! Clients should override the public methods, including the following inherited methods: +//! +//! * virtual int32_t getNbOutputs() const noexcept = 0; +//! +//! * virtual DataType getOutputDataType(int32_t index, DataType const* inputTypes, +//! int32_t nbInputs) const noexcept = 0; +//! +//! * virtual size_t getSerializationSize() const noexcept = 0; +//! +//! * virtual void serialize(void* buffer) const noexcept = 0; +//! +//! * virtual void destroy() noexcept = 0; +//! +//! * virtual void setPluginNamespace(char const* pluginNamespace) noexcept = 0; +//! +//! * virtual char const* getPluginNamespace() const noexcept = 0; +//! +//! For weakly typed networks, the inputTypes will always be DataType::kFLOAT or DataType::kINT32, +//! and the returned type is canonicalized to DataType::kFLOAT if it is DataType::kHALF or DataType:kINT8. +//! For strongly typed networks, inputTypes are inferred from previous operations, and getOutputDataType +//! specifies the returned type based on the inputTypes. +//! Details about the floating-point precision are elicited later by method supportsFormatCombination. +//! +//! \deprecated Deprecated in TensorRT 10.0. Please implement IPluginV3 instead. +//! +class TRT_DEPRECATED IPluginV2DynamicExt : public nvinfer1::IPluginV2Ext +{ +public: + IPluginV2DynamicExt* clone() const noexcept override = 0; + + //! + //! \brief Get expressions for computing dimensions of an output tensor from dimensions of the input tensors. + //! + //! \param outputIndex The index of the output tensor + //! \param inputs Expressions for dimensions of the input tensors + //! \param nbInputs The number of input tensors + //! \param exprBuilder Object for generating new expressions + //! + //! This function is called by the implementations of IBuilder during analysis of the network. + //! + //! Example #1: A plugin has a single output that transposes the last two dimensions of the plugin's single input. + //! The body of the override of getOutputDimensions can be: + //! + //! DimsExprs output(inputs[0]); + //! std::swap(output.d[output.nbDims-1], output.d[output.nbDims-2]); + //! return output; + //! + //! Example #2: A plugin concatenates its two inputs along the first dimension. + //! The body of the override of getOutputDimensions can be: + //! + //! DimsExprs output(inputs[0]); + //! output.d[0] = exprBuilder.operation(DimensionOperation::kSUM, *inputs[0].d[0], *inputs[1].d[0]); + //! return output; + //! + virtual DimsExprs getOutputDimensions( + int32_t outputIndex, DimsExprs const* inputs, int32_t nbInputs, IExprBuilder& exprBuilder) noexcept = 0; + + //! + //! \brief Limit on number of format combinations accepted. + //! + static constexpr int32_t kFORMAT_COMBINATION_LIMIT = 100; + + //! + //! \brief Return true if plugin supports the format and datatype for the input/output indexed by pos. + //! + //! For this method inputs are numbered 0..(nbInputs-1) and outputs are numbered nbInputs..(nbInputs+nbOutputs-1). + //! Using this numbering, pos is an index into InOut, where 0 <= pos < nbInputs+nbOutputs. + //! + //! TensorRT invokes this method to ask if the input/output indexed by pos supports the format/datatype specified + //! by inOut[pos].format and inOut[pos].type. The override should return true if that format/datatype at inOut[pos] + //! are supported by the plugin. If support is conditional on other input/output formats/datatypes, the plugin can + //! make its result conditional on the formats/datatypes in inOut[0..pos-1], which will be set to values + //! that the plugin supports. The override should not inspect inOut[pos+1..nbInputs+nbOutputs-1], + //! which will have invalid values. In other words, the decision for pos must be based on inOut[0..pos] only. + //! + //! Some examples: + //! + //! * A definition for a plugin that supports only FP16 NCHW: + //! + //! return inOut[pos].format == TensorFormat::kLINEAR && inOut[pos].type == DataType::kHALF; + //! + //! * A definition for a plugin that supports only FP16 NCHW for its two inputs, + //! and FP32 NCHW for its single output: + //! + //! return inOut[pos].format == TensorFormat::kLINEAR && (inOut[pos].type == (pos < 2 ? DataType::kHALF : + //! DataType::kFLOAT)); + //! + //! * A definition for a "polymorphic" plugin with two inputs and one output that supports + //! any format or type, but the inputs and output must have the same format and type: + //! + //! return pos == 0 || (inOut[pos].format == inOut.format[0] && inOut[pos].type == inOut[0].type); + //! + //! Warning: TensorRT will stop asking for formats once it finds kFORMAT_COMBINATION_LIMIT on combinations. + //! + virtual bool supportsFormatCombination( + int32_t pos, PluginTensorDesc const* inOut, int32_t nbInputs, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Configure the plugin. + //! + //! configurePlugin() can be called multiple times in both the build and execution phases. The build phase happens + //! before initialize() is called and only occurs during creation of an engine by IBuilder. The execution phase + //! happens after initialize() is called and occurs during both creation of an engine by IBuilder and execution + //! of an engine by IExecutionContext. + //! + //! Build phase: + //! IPluginV2DynamicExt->configurePlugin is called when a plugin is being prepared for profiling but not for any + //! specific input size. This provides an opportunity for the plugin to make algorithmic choices on the basis of + //! input and output formats, along with the bound of possible dimensions. The min and max value of the + //! DynamicPluginTensorDesc correspond to the kMIN and kMAX value of the current profile that the plugin is being + //! profiled for, with the desc.dims field corresponding to the dimensions of plugin specified at network creation. + //! Wildcard dimensions will exist during this phase in the desc.dims field. + //! + //! Execution phase: + //! IPluginV2DynamicExt->configurePlugin is called when a plugin is being prepared for executing the plugin for a + //! specific dimensions. This provides an opportunity for the plugin to change algorithmic choices based on the + //! explicit input dimensions stored in desc.dims field. + //! * IBuilder will call this function once per profile, with desc.dims resolved to the values specified by the + //! kOPT + //! field of the current profile. Wildcard dimensions will not exist during this phase. + //! * IExecutionContext will call this during the next subsequent instance enqueue[V2]() or execute[V2]() if: + //! - The batch size is changed from previous call of execute()/enqueue() if hasImplicitBatchDimension() returns + //! true. + //! - The optimization profile is changed via setOptimizationProfileAsync(). + //! - An input execution binding is changed via setInputShape(). + //! \warning The execution phase is timing critical during IExecutionContext but is not part of the timing loop when + //! called from IBuilder. Performance bottlenecks of configurePlugin won't show up during engine building but will + //! be visible during execution after calling functions that trigger layer resource updates. + //! + //! \param in The input tensors attributes that are used for configuration. + //! \param nbInputs Number of input tensors. + //! \param out The output tensors attributes that are used for configuration. + //! \param nbOutputs Number of output tensors. + //! + virtual void configurePlugin(DynamicPluginTensorDesc const* in, int32_t nbInputs, + DynamicPluginTensorDesc const* out, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Find the workspace size required by the layer. + //! + //! This function is called after the plugin is configured, and possibly during execution. + //! The result should be a sufficient workspace size to deal with inputs and outputs of the given size + //! or any smaller problem. + //! + //! \return The workspace size. + //! + virtual size_t getWorkspaceSize(PluginTensorDesc const* inputs, int32_t nbInputs, PluginTensorDesc const* outputs, + int32_t nbOutputs) const noexcept = 0; + + //! + //! \brief Execute the layer. + //! + //! \param inputDesc how to interpret the memory for the input tensors. + //! \param outputDesc how to interpret the memory for the output tensors. + //! \param inputs The memory for the input tensors. + //! \param outputs The memory for the output tensors. + //! \param workspace Workspace for execution. + //! \param stream The stream in which to execute the kernels. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). + //! + virtual int32_t enqueue(PluginTensorDesc const* inputDesc, PluginTensorDesc const* outputDesc, + void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept = 0; + +protected: + //! + //! \brief Return the API version with which this plugin was built. The + //! upper byte reserved by TensorRT and is used to differentiate this from IPluginV2. + //! + //! Do not override this method as it is used by the TensorRT library to maintain backwards-compatibility with + //! plugins. + //! + int32_t getTensorRTVersion() const noexcept override + { + return (static_cast(PluginVersion::kV2_DYNAMICEXT) << 24 | (NV_TENSORRT_VERSION & 0xFFFFFF)); + } + + virtual ~IPluginV2DynamicExt() noexcept {} + +private: + // Following are obsolete base class methods, and must not be implemented or used. + + //! + //! \brief Set plugin configuration + //! + void configurePlugin(Dims const*, int32_t, Dims const*, int32_t, DataType const*, DataType const*, bool const*, + bool const*, PluginFormat, int32_t) noexcept final + { + } + + //! + //! \brief Check if provided data type is supported + //! + bool supportsFormat(DataType, PluginFormat) const noexcept final + { + return false; + } + + //! + //! \brief Get output dimensions. + //! + Dims getOutputDimensions(int32_t, Dims const*, int32_t) noexcept final + { + return Dims{-1, {}}; + } + + //! + //! \brief Is output broadcasted across batch. + //! + //! \warning Expected to return false as implicit batch support was removed in TensorRT 10.0. + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch support is removed in TensorRT 10.0. + //! + TRT_DEPRECATED bool isOutputBroadcastAcrossBatch(int32_t, bool const*, int32_t) const noexcept final + { + return false; + } + + //! + //! \brief Can output broadcasted across batch. + //! + //! \warning Expected to return false as implicit batch support was removed in TensorRT 10.0. + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch support is removed in TensorRT 10.0. + //! + TRT_DEPRECATED bool canBroadcastInputAcrossBatch(int32_t) const noexcept final + { + return true; + } + + //! + //! \brief Get required workspace size in bytes. + //! + size_t getWorkspaceSize(int32_t) const noexcept final + { + return 0; + } + + //! + //! \brief Run inference. + //! + int32_t enqueue(int32_t, void const* const*, void* const*, void*, cudaStream_t) noexcept final + { + return 1; + } +}; + +namespace v_1_0 +{ +class IStreamReader : public IVersionedInterface +{ +public: + //! + //! TensorRT never calls the destructor for an IStreamReader defined by the + //! application. + //! + ~IStreamReader() override = default; + IStreamReader() = default; + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IStreamReader", 1, 0}; + } + + //! + //! \brief Read the next number of bytes in the stream. + //! + //! \param destination The memory to write to + //! \param nbBytes The number of bytes to read + //! + //! \returns The number of bytes read. Negative values will be considered an automatic error. + //! + virtual int64_t read(void* destination, int64_t nbBytes) = 0; + +protected: + IStreamReader(IStreamReader const&) = default; + IStreamReader(IStreamReader&&) = default; + IStreamReader& operator=(IStreamReader const&) & = default; + IStreamReader& operator=(IStreamReader&&) & = default; +}; + +class IStreamWriter : public IVersionedInterface +{ +public: + //! + //! TensorRT never calls the destructor for an IStreamWriter defined by the + //! application. + //! + ~IStreamWriter() override = default; + IStreamWriter() = default; + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept final + { + return InterfaceInfo{"IStreamWriter", 1, 0}; + } + + //! + //! \brief write nbBytes of data into the stream. + //! + //! \param data The data to be written to stream + //! \param nbBytes The number of bytes to write + //! + //! \returns The number of bytes written. A value that is negative or less than nBytes indicates that an error + //! occurred and TensorRT will give up on writing to the stream. + //! + virtual int64_t write(void const* data, int64_t nbBytes) = 0; + +protected: + IStreamWriter(IStreamWriter const&) = default; + IStreamWriter(IStreamWriter&&) = default; + IStreamWriter& operator=(IStreamWriter const&) & = default; + IStreamWriter& operator=(IStreamWriter&&) & = default; +}; +} // namespace v_1_0 + +//! +//! \class IStreamReader +//! +//! \brief Application-implemented class for reading data in a stream-based manner. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IStreamReader, not +//! v_1_0::IStreamReader +//! +using IStreamReader = v_1_0::IStreamReader; + +//! +//! \class IStreamWriter +//! +//! \brief Application-implemented class for writing data in a stream-based manner. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IStreamWriter, not +//! v_1_0::IStreamWriter +//! +using IStreamWriter = v_1_0::IStreamWriter; + +//! +//! \enum SeekPosition +//! \brief Controls the seek mode of IStreamReaderV2. +//! +enum class SeekPosition : int32_t +{ + //! From the beginning of the file. + kSET = 0, + + //! From the current position of the file. + kCUR = 1, + + //! From the tail of the file. + kEND = 2, +}; + +namespace v_1_0 +{ +class IStreamReaderV2 : public IVersionedInterface +{ +public: + //! + //! TensorRT never calls the destructor for an IStreamReaderV2 defined by the + //! application. + //! + ~IStreamReaderV2() override = default; + IStreamReaderV2() = default; + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IStreamReaderV2", 1, 0}; + } + + //! + //! \brief Read the next number of bytes in the stream asynchronously. + //! + //! \param destination The memory to write to, call cudaPointerGetAttributes to get the memory location + //! \param nbBytes The number of bytes to read + //! \param stream The CUDA stream used to do the copy + //! + //! \returns The number of bytes read. Negative values indicate an unrecoverable error. + //! A zero indicates that the end of the stream has been reached. + //! + virtual int64_t read(void* destination, int64_t nbBytes, cudaStream_t stream) noexcept = 0; + + //! + //! \brief Sets the position of the stream to the given offset. + //! + //! \param offset The number of bytes to offset from where. + //! \param where The position from where the offset is added. \see SeekPosition + //! + //! \returns True if the position is updated successfully. + //! + virtual bool seek(int64_t offset, SeekPosition where) noexcept = 0; + +protected: + IStreamReaderV2(IStreamReaderV2 const&) = default; + IStreamReaderV2(IStreamReaderV2&&) = default; + IStreamReaderV2& operator=(IStreamReaderV2 const&) & = default; + IStreamReaderV2& operator=(IStreamReaderV2&&) & = default; +}; +} // namespace v_1_0 + +//! +//! \class IStreamReaderV2 +//! +//! \brief Application-implemented class for reading data in a stream-based manner asynchronously. Intended for use with +//! the GDS API for optimizing load times. +//! +//! \note To ensure compatibility of source code with future versions of TensorRT, use IStreamReaderV2, not +//! v_1_0::IStreamReaderV2 +//! +using IStreamReaderV2 = v_1_0::IStreamReaderV2; + +//! +//! \class IPluginResourceContext +//! +//! \brief Interface for plugins to access per context resources provided by TensorRT +//! +//! There is no public way to construct an IPluginResourceContext. It appears as an argument to +//! IPluginV3OneRuntime::attachToContext(). Overrides of that method can use the IPluginResourceContext object to access +//! any available per context resources. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \see IPluginV3OneRuntime::attachToContext() +//! +class IPluginResourceContext +{ +public: + //! \brief Get the GPU allocator associated with the resource context + //! + //! \see IPluginV3OneRuntime::attachToContext() + //! + virtual IGpuAllocator* getGpuAllocator() const noexcept = 0; + + //! \brief Get the error recorder associated with the resource context + //! + //! \see IPluginV3OneRuntime::attachToContext() + //! + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + virtual ~IPluginResourceContext() noexcept = default; + +protected: + IPluginResourceContext() = default; + IPluginResourceContext(IPluginResourceContext const&) = default; + IPluginResourceContext(IPluginResourceContext&&) = default; + IPluginResourceContext& operator=(IPluginResourceContext const&) & = default; + IPluginResourceContext& operator=(IPluginResourceContext&&) & = default; +}; + +namespace v_1_0 +{ +class IPluginV3OneCore : public IPluginCapability +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3ONE_CORE", 1, 0}; + } + + //! + //! \brief Return the plugin name. Should match the plugin name returned by the corresponding plugin creator. + //! + //! \see IPluginCreatorV3One::getPluginName() + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + virtual AsciiChar const* getPluginName() const noexcept = 0; + + //! + //! \brief Return the plugin version. Should match the plugin version returned by the corresponding plugin creator. + //! + //! \see IPluginCreatorV3One::getPluginVersion() + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + virtual AsciiChar const* getPluginVersion() const noexcept = 0; + + //! + //! \brief Return the namespace of the plugin object. Should match the plugin namespace returned by the + //! corresponding plugin creator. + //! + //! \see IPluginCreatorV3One::getPluginNamespace() + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + virtual AsciiChar const* getPluginNamespace() const noexcept = 0; +}; + +class IPluginV3OneBuild : public IPluginCapability +{ +public: + //! + //! \brief The default maximum number of format combinations that will be timed by TensorRT during the build phase + //! + //! \see getFormatCombinationLimit + //! + static constexpr int32_t kDEFAULT_FORMAT_COMBINATION_LIMIT = 100; + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3ONE_BUILD", 1, 0}; + } + + //! + //! \brief Configure the plugin. + //! + //! configurePlugin() can be called multiple times in the build phase during creation of an engine by IBuilder. + //! + //! configurePlugin() is called when a plugin is being prepared for profiling but not for any + //! specific input size. This provides an opportunity for the plugin to make algorithmic choices on the basis of + //! input and output formats, along with the bound of possible dimensions. The min, opt and max value of the + //! DynamicPluginTensorDesc correspond to the kMIN, kOPT and kMAX value of the current profile that the plugin is + //! being profiled for, with the desc.dims field corresponding to the dimensions of plugin specified at network + //! creation. Wildcard dimensions may exist during this phase in the desc.dims field. + //! + //! \param in The input tensors attributes that are used for configuration. + //! \param nbInputs Number of input tensors. + //! \param out The output tensors attributes that are used for configuration. + //! \param nbOutputs Number of output tensors. + //! + //! \return 0 for success, else non-zero (which will cause engine termination, if invoked by TensorRT). + //! + virtual int32_t configurePlugin(DynamicPluginTensorDesc const* in, int32_t nbInputs, + DynamicPluginTensorDesc const* out, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Provide the data types of the plugin outputs if the input tensors have the data types provided. + //! + //! \param outputTypes Pre-allocated array to which the output data types should be written. + //! \param nbOutputs The number of output tensors. This matches the value returned from getNbOutputs(). + //! \param inputTypes The input data types. + //! \param nbInputs The number of input tensors. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). The returned code will be reported + //! through the error recorder. + //! + //! \note Provide `DataType::kFLOAT`s if the layer has no inputs. The data type for any size tensor outputs must be + //! `DataType::kINT32`. The returned data types must each have a format that is supported by the plugin. + //! + //! \warning DataType:kBOOL and DataType::kUINT8 are not supported. + //! + virtual int32_t getOutputDataTypes( + DataType* outputTypes, int32_t nbOutputs, const DataType* inputTypes, int32_t nbInputs) const noexcept = 0; + + //! + //! \brief Provide expressions for computing dimensions of the output tensors from dimensions of the input tensors. + //! + //! \param inputs Expressions for dimensions of the input tensors + //! \param nbInputs The number of input tensors + //! \param shapeInputs Expressions for values of the shape tensor inputs + //! \param nbShapeInputs The number of shape tensor inputs + //! \param outputs Pre-allocated array to which the output dimensions must be written + //! \param nbOutputs Number of outputs. + //! \param exprBuilder Object for generating new dimension expressions + //! + //! \note Any size tensor outputs must be declared to be 0D. + //! + //! \note The declaration of shapeInputs as DimsExprs is slightly abusive, because the "dimensions" + //! are actually the values of the shape tensor. For example, if the input shape tensor + //! is a 2x3 matrix, the DimsExprs will have six "dimensions": the three values from the first + //! row of the matrix followed by the three values from the second row of the matrix. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). Returned code will be reported + //! through the error recorder. + //! + virtual int32_t getOutputShapes(DimsExprs const* inputs, int32_t nbInputs, DimsExprs const* shapeInputs, + int32_t nbShapeInputs, DimsExprs* outputs, int32_t nbOutputs, IExprBuilder& exprBuilder) noexcept = 0; + + //! + //! \brief Return true if plugin supports the format and datatype for the input/output indexed by pos. + //! + //! For this method inputs are numbered 0.. (nbInputs - 1) and outputs are numbered nbInputs.. (nbInputs + nbOutputs + //! - 1). Using this numbering, pos is an index into InOut, where 0 <= pos < nbInputs + nbOutputs - 1. + //! + //! TensorRT invokes this method to ask if the input/output indexed by pos supports the format/datatype specified + //! by inOut[pos].format and inOut[pos].type. The override should return true if that format/datatype at inOut[pos] + //! are supported by the plugin. If support is conditional on other input/output formats/datatypes, the plugin can + //! make its result conditional on the formats/datatypes in inOut[0.. pos - 1], which will be set to values + //! that the plugin supports. The override should not inspect inOut[pos1.. nbInputs + nbOutputs - 1], + //! which will have invalid values. In other words, the decision for pos must be based on inOut[0..pos] only. + //! + //! Some examples: + //! + //! * A definition for a plugin that supports only FP16 NCHW: + //! + //! return inOut.format[pos] == TensorFormat::kLINEAR && inOut.type[pos] == DataType::kHALF; + //! + //! * A definition for a plugin that supports only FP16 NCHW for its two inputs, + //! and FP32 NCHW for its single output: + //! + //! return inOut.format[pos] == TensorFormat::kLINEAR && (inOut.type[pos] == pos < 2 ? DataType::kHALF : + //! DataType::kFLOAT); + //! + //! * A definition for a "polymorphic" plugin with two inputs and one output that supports + //! any format or type, but the inputs and output must have the same format and type: + //! + //! return pos == 0 || (inOut.format[pos] == inOut.format[0] && inOut.type[pos] == inOut.type[0]); + //! + //! \warning TensorRT will stop querying once it finds getFormatCombinationLimit() of combinations. + //! + //! \see getFormatCombinationLimit + //! + virtual bool supportsFormatCombination( + int32_t pos, DynamicPluginTensorDesc const* inOut, int32_t nbInputs, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Get the number of outputs from the plugin. + //! + //! \return The number of outputs, which must be a positive integer. + //! + virtual int32_t getNbOutputs() const noexcept = 0; + + //! + //! \brief Find the workspace size required by the layer. + //! + //! This function is called after the plugin is configured, and possibly during execution. + //! The result should be a sufficient workspace size to deal with inputs and outputs of the given size + //! or any smaller problem. + //! + //! \return The workspace size. + //! + virtual size_t getWorkspaceSize(DynamicPluginTensorDesc const* inputs, int32_t nbInputs, + DynamicPluginTensorDesc const* outputs, int32_t nbOutputs) const noexcept + { + return 0; + } + + //! + //! \brief Query for any custom tactics that the plugin intends to use + //! + //! This method queries for the set of tactics T(f) supported by the plugin for the format combination f indicated + //! by the immediately preceding call to configurePlugin(). It is guaranteed to be called after configurePlugin(). + //! + //! For each format combination provided through configurePlugin(), up to a maximum of getFormatCombinationLimit(), + //! the plugin will be timed for each tactic advertised through this method for that format combination. i.e. The + //! plugin will be timed \f$N = \sum_{i=0}^{i getFormatCombinationLimit() + //! goto done + //! configurePlugin(...) + //! for each tactic in getValidTactics(...) + //! time tactic + //! done: + //! + //! + //! \param tactics Pre-allocated buffer to which the tactic values should be written + //! \param nbTactics The number of tactics advertised through getNbTactics() + //! + //! \note The provided tactic values must be unique and non-zero. The tactic value 0 is reserved for the default + //! tactic attached to each format combination. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). The returned code will be reported + //! through the error recorder. + //! + virtual int32_t getValidTactics(int32_t* tactics, int32_t nbTactics) noexcept + { + return 0; + } + + //! + //! \brief Query for the number of custom tactics the plugin intends to use + //! + virtual int32_t getNbTactics() noexcept + { + return 0; + } + + //! + //! \brief Called to query the suffix to use for the timing cache ID. May be called anytime after plugin creation. + //! + //! \return Suffix to use for timing cache ID, considering only the creation state of the plugin. + //! Returning nullptr will disable timing caching for the plugin altogether. + //! + //! \note If timing caching is enabled for the plugin (by returning non-null), the I/O shape and format information + //! will be automatically considered to form the prefix of the timing cache ID. Therefore, only other factors + //! determining the creation state of the plugin, such as its attribute values, should be considered to compose the + //! return value. + //! + virtual char const* getTimingCacheID() noexcept + { + return nullptr; + } + + //! + //! \brief Return the maximum number of format combinations that will be timed by TensorRT during the build phase + //! + virtual int32_t getFormatCombinationLimit() noexcept + { + return kDEFAULT_FORMAT_COMBINATION_LIMIT; + } + + //! + //! \brief Query for a string representing the configuration of the plugin. May be called anytime after + //! plugin creation. + //! + //! \return A string representing the plugin's creation state, especially with regard to its attribute values. + //! + virtual char const* getMetadataString() noexcept + { + return nullptr; + } +}; + +class IPluginV3OneRuntime : public IPluginCapability +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3ONE_RUNTIME", 1, 0}; + } + + //! + //! \brief Set the tactic to be used in the subsequent call to enqueue(). If no custom tactics were advertised, this + //! will have a value of 0, which is designated as the default tactic. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). The returned code will be reported + //! through the error recorder. + //! + virtual int32_t setTactic(int32_t tactic) noexcept + { + return 0; + } + + //! + //! \brief Called when a plugin is being prepared for execution for specific dimensions. This could + //! happen multiple times in the execution phase, both during creation of an engine by IBuilder and execution of an + //! engine by IExecutionContext. + //! * IBuilder will call this function once per profile, with `in` resolved to the values specified by the + //! kOPT field of the current profile. + //! * IExecutionContext will call this during the next subsequent instance of enqueueV3() or executeV2() if: + //! - The optimization profile is changed via setOptimizationProfile() or setOptimizationProfileAsync(). + //! - An input binding is changed via setInputTensorAddress() or setTensorAddress() or setInputShape(). + //! \warning The execution phase is timing critical during IExecutionContext but is not part of the timing loop when + //! called from IBuilder. Performance bottlenecks of onShapeChange() will not show up during engine building but + //! will be visible during execution if any triggering functions are called. + //! + //! \param in The input tensors attributes that are used for configuration. + //! \param nbInputs Number of input tensors. + //! \param out The output tensors attributes that are used for configuration. + //! \param nbOutputs Number of output tensors. + //! + virtual int32_t onShapeChange( + PluginTensorDesc const* in, int32_t nbInputs, PluginTensorDesc const* out, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Execute the layer. + //! + //! \param inputDesc how to interpret the memory for the input tensors. + //! \param outputDesc how to interpret the memory for the output tensors. + //! \param inputs The memory for the input tensors. + //! \param outputs The memory for the output tensors. + //! \param workspace Workspace for execution. + //! \param stream The stream in which to execute the kernels. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). The returned code will be reported + //! through the error recorder. + //! + virtual int32_t enqueue(PluginTensorDesc const* inputDesc, PluginTensorDesc const* outputDesc, + void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept = 0; + + //! + //! \brief Clone the plugin, attach the cloned plugin object to a execution context and grant the cloned plugin + //! access to some context resources. + //! + //! This function is called automatically for each plugin when a new execution context is created. The plugin may + //! use resources provided by the IPluginResourceContext until the plugin is deleted by TensorRT. + //! + //! If the plugin needs per-context resources, it can be allocated here. + //! + //! \param context A resource context that exposes methods to get access to execution context specific resources. + //! A different resource context is guaranteed for each different execution context to which the + //! plugin is attached. + //! \see IPluginResourceContext + //! + //! \note This method should clone the entire IPluginV3 object, not just the runtime interface + //! + //! \return A clone of the IPluginV3 object whose runtime interface on which this method is invoked, which has + //! attached to the provided resource context. + //! + virtual IPluginV3* attachToContext(IPluginResourceContext* context) noexcept = 0; + + //! + //! \brief Get the plugin fields which should be serialized. + //! + //! \note The set of plugin fields returned does not necessarily need to match that advertised through + //! getFieldNames() of the corresponding plugin creator. + + //! \note To serialize arbitrary plugin data, use a PluginField of + //! PluginFieldType::kUNKNOWN, with the length of the PluginField set to the correct number of bytes. + //! + virtual PluginFieldCollection const* getFieldsToSerialize() noexcept = 0; +}; +} // namespace v_1_0 + +namespace v_2_0 +{ + +class IPluginV3OneBuild : public v_1_0::IPluginV3OneBuild +{ +public: + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3ONE_BUILD", 2, 0}; + } + + //! + //! \brief Communicates to TensorRT that the output at the specified output index is aliased to the input at the + //! returned index + //! + //! Enables read-modify-write behavior in plugins. TensorRT may insert copies to facilitate this capability. + //! + //! \return An integer denoting the index of the input which is aliased to the output at outputIndex. + //! Returning -1 indicates that the output is not aliased to any input. Otherwise, the valid range for + //! return value is [0, nbInputs - 1]. + //! + //! \note A given plugin input can only be aliased to a single plugin output. + //! + //! \note This API will only be called and have an effect when PreviewFeature::kALIASED_PLUGIN_IO_10_03 is turned + //! on. + //! + //! \warning If an input is not shallow copyable, a copy inserted by TensorRT may not work as intended. Therefore, + //! using this feature with tensors requiring deep copies is not supported. + //! + //! \warning If a given tensor is requested to be aliased by two different plugins, this may result in divergent + //! copies of the tensor after writes from each plugin. e.g. In the below example, t1 and t2 could be divergent. + //! + //! +-----+ +--------+ + //! +->|Copy +--> t* ---->|Plugin0 +--> t1 + //! | +-----+ +--------+ + //! t + //! | +-----+ +--------+ + //! +->|Copy +--> t** --->|Plugin1 +--> t2 + //! +-----+ +--------+ + //! + virtual int32_t getAliasedInput(int32_t outputIndex) noexcept + { + return -1; + } +}; + +} // namespace v_2_0 + +//! +//! \class IPluginV3OneCore +//! +//! \brief A plugin capability interface that enables the core capability (PluginCapabilityType::kCORE). +//! +//! \see IPluginCapability +//! \see PluginCapabilityType +//! \see IPluginV3::getCapabilityInterface() +//! +using IPluginV3OneCore = v_1_0::IPluginV3OneCore; + +//! +//! \class IPluginV3OneBuild +//! +//! \brief A plugin capability interface that enables the build capability (PluginCapabilityType::kBUILD). Exposes +//! methods that allow the expression of the build time properties and behavior of a plugin. +//! +//! \see IPluginCapability +//! \see PluginCapabilityType +//! \see IPluginV3::getCapabilityInterface() +//! +using IPluginV3OneBuild = v_1_0::IPluginV3OneBuild; + +//! +//! \class IPluginV3OneRuntime +//! +//! \brief A plugin capability interface that enables the runtime capability (PluginCapabilityType::kRUNTIME). Exposes +//! methods that allow the expression of the runtime properties and behavior of a plugin. +//! +//! \see IPluginCapability +//! \see PluginCapabilityType +//! \see IPluginV3::getCapabilityInterface() +//! +using IPluginV3OneRuntime = v_1_0::IPluginV3OneRuntime; + +//! +//! \class IPluginV3OneBuildV2 +//! +//! \brief A plugin capability interface that extends IPluginV3OneBuild by providing I/O aliasing functionality. +//! +//! \see IPluginV3OneBuild +//! +using IPluginV3OneBuildV2 = v_2_0::IPluginV3OneBuild; + +namespace v_1_0 +{ +class IProfiler +{ +public: + //! + //! \brief Layer time reporting callback. + //! + //! \param layerName The name of the layer, set when constructing the network definition. If the engine is built + //! with profiling verbosity set to kNONE, the layerName is the decimal index of the layer. + //! \param ms The time in milliseconds to execute the layer. + //! + virtual void reportLayerTime(char const* layerName, float ms) noexcept = 0; + + virtual ~IProfiler() noexcept {} +}; +} // namespace v_1_0 + +//! +//! \class IProfiler +//! +//! \brief Application-implemented interface for profiling. +//! +//! When this class is added to an execution context, the profiler will be called once per layer for each invocation of +//! executeV2()/enqueueV3(). +//! +//! It is not recommended to run inference with profiler enabled when the inference execution time is critical since the +//! profiler may affect execution time negatively. +//! +using IProfiler = v_1_0::IProfiler; + +//! +//! \enum WeightsRole +//! +//! \brief How a layer uses particular Weights. +//! +//! The power weights of an IScaleLayer are omitted. Refitting those is not supported. +//! +enum class WeightsRole : int32_t +{ + kKERNEL = 0, //!< kernel for IConvolutionLayer or IDeconvolutionLayer + kBIAS = 1, //!< bias for IConvolutionLayer or IDeconvolutionLayer + kSHIFT = 2, //!< shift part of IScaleLayer + kSCALE = 3, //!< scale part of IScaleLayer + kCONSTANT = 4, //!< weights for IConstantLayer + kANY = 5, //!< Any other weights role +}; + +//! Maximum number of elements in WeightsRole enum. \see WeightsRole +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 6; +} + +//! +//! \enum DeviceType +//! \brief The device that this layer/network will execute on. +//! +//! +enum class DeviceType : int32_t +{ + kGPU = 0, //!< GPU Device + kDLA = 1, //!< DLA Core +}; + +//! Maximum number of elements in DeviceType enum. \see DeviceType +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \enum TempfileControlFlag +//! +//! \brief Flags used to control TensorRT's behavior when creating executable temporary files. +//! +//! On some platforms the TensorRT runtime may need to create files in a temporary directory or use platform-specific +//! APIs to create files in-memory to load temporary DLLs that implement runtime code. These flags allow the +//! application to explicitly control TensorRT's use of these files. This will preclude the use of certain TensorRT +//! APIs for deserializing and loading lean runtimes. +//! +enum class TempfileControlFlag : int32_t +{ + //! Allow creating and loading files in-memory (or unnamed files). + kALLOW_IN_MEMORY_FILES = 0, + + //! Allow creating and loading named files in a temporary directory on the filesystem. + //! + //! \see IRuntime::setTemporaryDirectory() + kALLOW_TEMPORARY_FILES = 1, +}; + +//! Maximum number of elements in TempfileControlFlag enum. \see TempfileControlFlag +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \brief Represents a collection of one or more TempfileControlFlag values combined using bitwise-OR operations. +//! +//! \see TempfileControlFlag, +//! IRuntime::setTempfileControlFlags(), +//! IRuntime::getTempfileControlFlags() +using TempfileControlFlags = uint32_t; + +//! +//! \enum TensorFormat +//! +//! \brief Format of the input/output tensors. +//! +//! This enum is used by both plugins and network I/O tensors. +//! +//! \see IPluginV2::supportsFormat(), safe::ICudaEngine::getBindingFormat() +//! +//! Many of the formats are **vector-major** or **vector-minor**. These formats specify +//! a vector dimension and scalars per vector. +//! For example, suppose that the tensor has has dimensions [M,N,C,H,W], +//! the vector dimension is C and there are V scalars per vector. +//! +//! * A **vector-major** format splits the vectorized dimension into two axes in the +//! memory layout. The vectorized dimension is replaced by an axis of length ceil(C/V) +//! and a new dimension of length V is appended. For the example tensor, the memory layout +//! is equivalent to an array with dimensions [M][N][ceil(C/V)][H][W][V]. +//! Tensor coordinate (m,n,c,h,w) maps to array location [m][n][c/V][h][w][c\%V]. +//! +//! * A **vector-minor** format moves the vectorized dimension to become the last axis +//! in the memory layout. For the example tensor, the memory layout is equivalent to an +//! array with dimensions [M][N][H][W][ceil(C/V)*V]. Tensor coordinate (m,n,c,h,w) maps +//! array location subscript [m][n][h][w][c]. +//! +//! In interfaces that refer to "components per element", that's the value of V above. +//! +//! For more information about data formats, see the topic "Data Format Description" located in the +//! TensorRT Developer Guide. +//! https://docs.nvidia.com/deeplearning/tensorrt/latest/inference-library/advanced.html#i-o-formats +//! +enum class TensorFormat : int32_t +{ + //! Memory layout is similar to an array in C or C++. + //! The stride of each dimension is the product of the dimensions after it. + //! The last dimension has unit stride. + //! + //! This format supports all TensorRT types. + //! For DLA usage, the tensor sizes are limited to C,H,W in the range [1,8192]. + kLINEAR = 0, + + //! Vector-major format with two scalars per vector. + //! Vector dimension is third to last. + //! + //! This format requires FP16 or BF16 and at least three dimensions. + kCHW2 = 1, + + //! Vector-minor format with eight scalars per vector. + //! Vector dimension is third to last. + //! This format requires FP16 or BF16 and at least three dimensions. + kHWC8 = 2, + + //! Vector-major format with four scalars per vector. + //! Vector dimension is third to last. + //! + //! This format requires INT8 and at least three dimensions. + //! For INT8, the length of the vector dimension must be a build-time constant. + //! + //! Deprecated usage: + //! + //! If running on the DLA, this format can be used for acceleration + //! with the caveat that C must be less than or equal to 4. + //! If used as DLA input and the build option kGPU_FALLBACK is not specified, + //! it needs to meet line stride requirement of DLA format. Column stride in + //! bytes must be a multiple of 64 on Orin. + kCHW4 = 3, + + //! Vector-major format with 16 scalars per vector. + //! Vector dimension is third to last. + //! + //! This format is only supported by DLA and requires FP16 and at least three dimensions. + //! This format maps to the native feature format for FP16, + //! and the tensor sizes are limited to C,H,W in the range [1,8192]. + kCHW16 = 4, + + //! Vector-major format with 32 scalars per vector. + //! Vector dimension is third to last. + //! + //! This format requires INT8, FP32, or FP16 and at least three dimensions. + //! + //! For DLA usage, this format maps to the native feature format for INT8, + //! and the tensor sizes are limited to C,H,W in the range [1,8192]. + kCHW32 = 5, + + //! Vector-minor format with eight scalars per vector. + //! Vector dimension is fourth to last. + //! + //! This format requires FP16 or BF16 and at least four dimensions. + kDHWC8 = 6, + + //! Vector-major format with 32 scalars per vector. + //! Vector dimension is fourth to last. + //! + //! This format requires FP16 or INT8 and at least four dimensions. + kCDHW32 = 7, + + //! Vector-minor format where channel dimension is third to last and unpadded. + //! + //! This format requires either FP32 or UINT8 and at least three dimensions. + kHWC = 8, + + //! DLA planar format. For a tensor with dimension {N, C, H, W}, the W axis + //! always has unit stride. The stride for stepping along the H axis is + //! rounded up to 64 bytes. + //! + //! The memory layout is equivalent to a C array with dimensions + //! [N][C][H][roundUp(W, 64/elementSize)] where elementSize is + //! 2 for FP16 and 1 for Int8, with the tensor coordinates (n, c, h, w) + //! mapping to array subscript [n][c][h][w]. + kDLA_LINEAR = 9, + + //! DLA image format. For a tensor with dimension {N, C, H, W} the C axis + //! always has unit stride. The stride for stepping along the H axis is rounded up + //! to 64 bytes on Orin. C can only be 1, 3 or 4. + //! If C == 1, it will map to grayscale format. + //! If C == 3 or C == 4, it will map to color image format. And if C == 3, + //! the stride for stepping along the W axis needs to be padded to 4 in elements. + //! + //! When C is {1, 3, 4}, then C' is {1, 4, 4} respectively, + //! the memory layout is equivalent to a C array with dimensions + //! [N][H][roundUp(W, 64/C'/elementSize)][C'] on Orin + //! where elementSize is 2 for FP16 + //! and 1 for Int8. The tensor coordinates (n, c, h, w) mapping to array + //! subscript [n][h][w][c]. + kDLA_HWC4 = 10, + + //! Vector-minor format with 16 scalars per vector. + //! Vector dimension is third to last. + //! + //! This requires FP16, INT8 or FP8 and at least three dimensions. + kHWC16 = 11, + + //! Vector-minor format with one scalar per vector. + //! Vector dimension is fourth to last. + //! + //! This format requires FP32 and at least four dimensions. + kDHWC = 12 +}; + +namespace impl +{ +//! Maximum number of elements in TensorFormat enum. \see TensorFormat +template <> +struct EnumMaxImpl +{ + //! Declaration of kVALUE that represents the maximum number of elements in the TensorFormat enum. + static constexpr int32_t kVALUE = 13; +}; +} // namespace impl + +//! +//! \enum AllocatorFlag +//! +//! \brief Allowed type of memory allocation. +//! +enum class AllocatorFlag : int32_t +{ + //! TensorRT may call realloc() on this allocation. + kRESIZABLE = 0, +}; + +namespace impl +{ +//! Maximum number of elements in AllocatorFlag enum. \see AllocatorFlag +template <> +struct EnumMaxImpl +{ + //! Declaration of kVALUE that represents the maximum number of elements in the AllocatorFlag enum. + static constexpr int32_t kVALUE = 1; +}; +} // namespace impl + +using AllocatorFlags = uint32_t; + +//! DO NOT REFER TO namespace v_1_0 IN CODE. ALWAYS USE nvinfer1 INSTEAD. +//! The name v_1_0 may change in future versions of TensorRT. + +//! +//! \class ILogger +//! +//! \brief Application-implemented logging interface for the builder, refitter and runtime. +//! +//! The logger used to create an instance of IBuilder, IRuntime or IRefitter is used for all objects created through +//! that interface. The logger must be valid until all objects created are released. +//! +//! The Logger object implementation must be thread safe. All locking and synchronization is pushed to the +//! interface implementation and TensorRT does not hold any synchronization primitives when calling the interface +//! functions. +//! +class ILogger +{ +public: + //! + //! \enum Severity + //! + //! \brief The severity corresponding to a log message. + //! + enum class Severity : int32_t + { + //! An internal error has occurred. Execution is unrecoverable. + kINTERNAL_ERROR = 0, + //! An application error has occurred. + kERROR = 1, + //! An application error has been discovered, but TensorRT has recovered or fallen back to a default. + kWARNING = 2, + //! Informational messages with instructional information. + kINFO = 3, + //! Verbose messages with debugging information. + kVERBOSE = 4, + }; + + //! + //! \brief A callback implemented by the application to handle logging messages; + //! + //! \param severity The severity of the message. + //! \param msg A null-terminated log message. + //! + //! \warning Loggers used in the safety certified runtime must set a maximum message length and truncate + //! messages exceeding this length. It is up to the implementer of the derived class to define + //! a suitable limit that will prevent buffer overruns, resource exhaustion, and other security + //! vulnerabilities in their implementation. The TensorRT safety certified runtime will never + //! emit messages longer than 1024 bytes. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime, or if the same logger is used + //! for multiple runtimes, builders, or refitters. + //! + virtual void log(Severity severity, AsciiChar const* msg) noexcept = 0; + + ILogger() = default; + virtual ~ILogger() = default; + +protected: + // @cond SuppressDoxyWarnings + ILogger(ILogger const&) = default; + ILogger(ILogger&&) = default; + ILogger& operator=(ILogger const&) & = default; + ILogger& operator=(ILogger&&) & = default; + // @endcond +}; + +namespace impl +{ +//! Maximum number of elements in ILogger::Severity enum. \see ILogger::Severity +template <> +struct EnumMaxImpl +{ + //! Declaration of kVALUE that represents the maximum number of elements in the ILogger::Severity enum. + static constexpr int32_t kVALUE = 5; +}; +} // namespace impl + +namespace v_1_0 +{ + +class IGpuAllocator : public IVersionedInterface +{ +public: + //! + //! \brief A thread-safe callback implemented by the application to handle acquisition of GPU memory. + //! + //! \param size The size of the memory block required (in bytes). + //! \param alignment The required alignment of memory. Alignment will be zero + //! or a power of 2 not exceeding the alignment guaranteed by cudaMalloc. + //! Thus this allocator can be safely implemented with cudaMalloc/cudaFree. + //! An alignment value of zero indicates any alignment is acceptable. + //! \param flags Reserved for future use. In the current release, 0 will be passed. + //! + //! \return If the allocation was successful, the start address of a device memory block of the requested size. + //! If an allocation request of size 0 is made, nullptr must be returned. + //! If an allocation request cannot be satisfied, nullptr must be returned. + //! If a non-null address is returned, it is guaranteed to have the specified alignment. + //! + //! \note The implementation must guarantee thread safety for concurrent allocate/reallocate/deallocate + //! requests. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by allocateAsync + //! + TRT_DEPRECATED virtual void* allocate( + uint64_t const size, uint64_t const alignment, AllocatorFlags const flags) noexcept = 0; + + ~IGpuAllocator() override = default; + IGpuAllocator() = default; + + //! + //! \brief A thread-safe callback implemented by the application to resize an existing allocation. + //! + //! Only allocations which were allocated with AllocatorFlag::kRESIZABLE will be resized. + //! + //! Options are one of: + //! * resize in place leaving min(oldSize, newSize) bytes unchanged and return the original address + //! * move min(oldSize, newSize) bytes to a new location of sufficient size and return its address + //! * return nullptr, to indicate that the request could not be fulfilled. + //! + //! If nullptr is returned, TensorRT will assume that resize() is not implemented, and that the + //! allocation at baseAddr is still valid. + //! + //! This method is made available for use cases where delegating the resize + //! strategy to the application provides an opportunity to improve memory management. + //! One possible implementation is to allocate a large virtual device buffer and + //! progressively commit physical memory with cuMemMap. CU_MEM_ALLOC_GRANULARITY_RECOMMENDED + //! is suggested in this case. + //! + //! TensorRT may call realloc to increase the buffer by relatively small amounts. + //! + //! \param baseAddr the address of the original allocation, which will have been returned by previously calling + //! allocate() or reallocate() on the same object. + //! \param alignment The alignment used by the original allocation. This will be the same value that was previously + //! passed to the allocate() or reallocate() call that returned baseAddr. + //! \param newSize The new memory size required (in bytes). + //! + //! \return The address of the reallocated memory, or nullptr. If a non-null address is returned, it is + //! guaranteed to have the specified alignment. + //! + //! \note The implementation must guarantee thread safety for concurrent allocate/reallocate/deallocate + //! requests. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! + virtual void* reallocate(void* const /*baseAddr*/, uint64_t /*alignment*/, uint64_t /*newSize*/) noexcept + { + return nullptr; + } + + //! + //! \brief A thread-safe callback implemented by the application to handle release of GPU memory. + //! + //! TensorRT may pass a nullptr to this function if it was previously returned by allocate(). + //! + //! \param memory A memory address that was previously returned by an allocate() or reallocate() call of the same + //! allocator object. + //! + //! \return True if the acquired memory is released successfully. + //! + //! \note The implementation must guarantee thread safety for concurrent allocate/reallocate/deallocate + //! requests. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! \deprecated Deprecated in TensorRT 10.0. Superseded by deallocateAsync + //! + TRT_DEPRECATED virtual bool deallocate(void* const memory) noexcept = 0; + + //! + //! \brief A thread-safe callback implemented by the application to handle stream-ordered acquisition of GPU memory. + //! + //! The default behavior is to call method allocate(), which is synchronous and thus loses + //! any performance benefits of asynchronous allocation. If you want the benefits of asynchronous + //! allocation, see discussion of IGpuAsyncAllocator vs. IGpuAllocator in the documentation + //! for nvinfer1::IGpuAllocator. + //! + //! \param size The size of the memory block required (in bytes). + //! \param alignment The required alignment of memory. Alignment will be zero + //! or a power of 2 not exceeding the alignment guaranteed by cudaMalloc. + //! Thus this allocator can be safely implemented with cudaMalloc/cudaFree. + //! An alignment value of zero indicates any alignment is acceptable. + //! \param flags Reserved for future use. In the current release, 0 will be passed. + //! \param stream specifies the cudaStream for asynchronous usage. + //! + //! \return If the allocation was successful, the start address of a device memory block of the requested size. + //! If an allocation request of size 0 is made, nullptr must be returned. + //! If an allocation request cannot be satisfied, nullptr must be returned. + //! If a non-null address is returned, it is guaranteed to have the specified alignment. + //! + //! \note The implementation must guarantee thread safety for concurrent allocate/reallocate/deallocate + //! requests. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! + virtual void* allocateAsync( + uint64_t const size, uint64_t const alignment, AllocatorFlags const flags, cudaStream_t /*stream*/) noexcept + { + return allocate(size, alignment, flags); + } + //! + //! \brief A thread-safe callback implemented by the application to handle stream-ordered release of GPU memory. + //! + //! The default behavior is to call method deallocate(), which is synchronous and thus loses + //! any performance benefits of asynchronous deallocation. If you want the benefits of asynchronous + //! deallocation, see discussion of IGpuAsyncAllocator vs. IGpuAllocator in the documentation + //! for nvinfer1::IGpuAllocator. + //! + //! TensorRT may pass a nullptr to this function if it was previously returned by allocate(). + //! + //! \param memory A memory address that was previously returned by an allocate() or reallocate() call of the same + //! allocator object. + //! \param stream specifies the cudaStream for asynchronous usage. + //! + //! \return True if the acquired memory is released successfully. + //! + //! \note The implementation must guarantee thread safety for concurrent allocate/reallocate/deallocate + //! requests. + //! + //! \note The implementation is not required to be asynchronous. It is permitted to synchronize, + //! albeit doing so will lose the performance advantage of asynchronous deallocation. + //! Either way, it is critical that it not actually free the memory until the current + //! stream position is reached. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! + virtual bool deallocateAsync(void* const memory, cudaStream_t /*stream*/) noexcept + { + return deallocate(memory); + } + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return {"IGpuAllocator", 1, 0}; + } + +protected: + // @cond SuppressDoxyWarnings + IGpuAllocator(IGpuAllocator const&) = default; + IGpuAllocator(IGpuAllocator&&) = default; + IGpuAllocator& operator=(IGpuAllocator const&) & = default; + IGpuAllocator& operator=(IGpuAllocator&&) & = default; + // @endcond +}; + +} // namespace v_1_0 + +//! +//! \class IGpuAllocator +//! +//! \brief Application-implemented class for controlling allocation on the GPU. +//! +//! \warning The lifetime of an IGpuAllocator object must exceed that of all objects that use it. +//! +//! This class is intended as a base class for allocators that implement synchronous allocation. +//! If you want the benefits of asynchronous allocation, you can do either of: +//! +//! * Derive your class from IGpuAllocator and override all four of its virtual methods +//! for allocation/deallocation, including the two deprecated methods. +//! +//! * Derive your class from IGpuAsyncAllocator and override its two pure virtual +//! methods for allocation/deallocation. +//! +//! The latter style is preferred because it does not tie code to deprecated methods. +//! +//! \see IGpuAsyncAllocator. +//! +using IGpuAllocator = v_1_0::IGpuAllocator; + + +//! +//! \class IRuntime +//! +//! \brief Allows a serialized functionally unsafe engine to be deserialized. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IRuntime : public INoCopy +{ +public: + virtual ~IRuntime() noexcept = default; + + //! + //! \brief Sets the DLA core used by the network. Defaults to -1. + //! + //! \param dlaCore The DLA core to execute the engine on, in the range [0,getNbDlaCores()). + //! + //! This function is used to specify which DLA core to use via indexing, if multiple DLA cores are available. + //! + //! \warning if getNbDLACores() returns 0, then this function does nothing. + //! + //! \see getDLACore() + //! + void setDLACore(int32_t dlaCore) noexcept + { + mImpl->setDLACore(dlaCore); + } + + //! + //! \brief Get the DLA core that the engine executes on. + //! + //! \return assigned DLA core or -1 for DLA not present or unset. + //! + int32_t getDLACore() const noexcept + { + return mImpl->getDLACore(); + } + + //! + //! \brief Returns number of DLA hardware cores accessible or 0 if DLA is unavailable. + //! + int32_t getNbDLACores() const noexcept + { + return mImpl->getNbDLACores(); + } + + //! + //! \brief Set the GPU allocator. + //! + //! \param allocator Set the GPU allocator to be used by the runtime. All GPU memory acquired will use this + //! allocator. If NULL is passed, the default allocator will be used. + //! + //! Default: allocateAsync uses cudaMallocAsync if cudaDevAttrMemoryPoolsSupported returns true, otherwise falls + //! back to cudaMalloc. allocate always uses cudaMalloc. + //! + //! If nullptr is passed, the default allocator will be used. + //! + void setGpuAllocator(IGpuAllocator* allocator) noexcept + { + mImpl->setGpuAllocator(allocator); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + // + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. A nullptr will be returned if + //! an error handler has not been set. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + + //! + //! \brief Deserialize an engine from host memory. + //! + //! If an error recorder has been set for the runtime, it will also be passed to the engine. + //! + //! \warning Destroying the IRuntime before destroying all associated ICudaEngine instances results in undefined + //! behavior. + //! + //! \param blob The memory that holds the serialized engine. + //! \param size The size of the memory. + //! + //! \return The engine, or nullptr if it could not be deserialized. + //! + ICudaEngine* deserializeCudaEngine(void const* blob, std::size_t size) noexcept + { + return mImpl->deserializeCudaEngine(blob, size); + } + + //! + //! \brief Deserialize an engine from a stream. + //! + //! If an error recorder has been set for the runtime, it will also be passed to the + //! engine. + //! + //! This deserialization path will reduce host memory usage when weight streaming is enabled. + //! + //! \warning Destroying the IRuntime before destroying all associated ICudaEngine instances results in undefined + //! behavior. + //! + //! \param streamReader a read-only stream from which TensorRT will deserialize a + //! previously serialized engine. + //! + //! \return The engine, or nullptr if it could not be deserialized. + //! + //! \deprecated Deprecated in TensorRT 10.7. Superseded by deserializeCudaEngine that takes an IStreamReaderV2 + //! instead of IStreamReader. + //! + TRT_DEPRECATED ICudaEngine* deserializeCudaEngine(IStreamReader& streamReader) + { + return mImpl->deserializeCudaEngine(streamReader); + } + + //! + //! \brief Deserialize an engine from a stream. IStreamReaderV2 is expected to support reading to both host and + //! device pointers. + //! + //! If an error recorder has been set for the runtime, it will also be passed to the + //! engine. + //! + //! This deserialization path will reduce engine load time when applied with GDS (GPU Direct storage), or when + //! weight streaming is enabled. + //! + //! \warning Destroying the IRuntime before destroying all associated ICudaEngine instances results in undefined + //! behavior. + //! + //! \param streamReader a read-only stream from which TensorRT will deserialize a previously serialized engine. + //! + //! \return The engine, or nullptr if it could not be deserialized. The pointer may not be valid immediately after + //! the function returns. + //! + ICudaEngine* deserializeCudaEngine(IStreamReaderV2& streamReader) + { + return mImpl->deserializeCudaEngineV2(streamReader); + } + + //! + //! \brief get the logger with which the runtime was created + //! + //! \return the logger + //! + ILogger* getLogger() const noexcept + { + return mImpl->getLogger(); + } + + //! + //! \brief Set the maximum number of threads. + //! + //! \param maxThreads The maximum number of threads that can be used by the runtime. + //! \return True if successful, false otherwise. + //! + //! The default value is 1 and includes the current thread. + //! A value greater than 1 permits TensorRT to use multi-threaded algorithms. + //! A value less than 1 triggers a kINVALID_ARGUMENT error. + //! + bool setMaxThreads(int32_t maxThreads) noexcept + { + return mImpl->setMaxThreads(maxThreads); + } + + //! + //! \brief Get the maximum number of threads that can be used by the runtime. + //! + //! Retrieves the maximum number of threads that can be used by the runtime. + //! + //! \return The maximum number of threads that can be used by the runtime. + //! + //! \see setMaxThreads() + //! + int32_t getMaxThreads() const noexcept + { + return mImpl->getMaxThreads(); + } + + //! + //! \brief Set the directory that will be used by this runtime for temporary files. + //! + //! On some platforms the TensorRT runtime may need to create and use temporary files + //! with read/write/execute permissions to implement runtime functionality. + //! + //! \param path Path to the temporary directory for use, or nullptr. + //! + //! If path is nullptr, then TensorRT will use platform-specific heuristics to pick + //! a default temporary directory if required: + //! + //! - On UNIX/Linux platforms, TensorRT will first try the TMPDIR environment variable, then fall back to /tmp + //! - On Windows, TensorRT will try the TEMP environment variable. + //! + //! See the TensorRT Developer Guide for more information. + //! + //! The default value is nullptr. + //! + //! \warning If path is not nullptr, it must be a non-empty string representing a relative + //! or absolute path in the format expected by the host operating system. + //! + //! \warning The string path must be null-terminated, and be at most 4096 bytes including the + //! terminator. Note that the operating system may have stricter path length requirements. + //! + //! \warning The process using TensorRT must have rwx permissions for the temporary directory, + //! and the directory shall be configured to disallow other users from modifying created files + //! (e.g. on Linux, if the directory is shared with other users, the sticky bit must be set). + //! + //! \see getTemporaryDirectory() + //! + void setTemporaryDirectory(char const* path) noexcept + { + return mImpl->setTemporaryDirectory(path); + } + + //! + //! \brief Get the directory that will be used by this runtime for temporary files. + //! + //! \returns A path to the temporary directory in use, or nullptr if no path is specified. + //! + //! \see setTemporaryDirectory() + char const* getTemporaryDirectory() const noexcept + { + return mImpl->getTemporaryDirectory(); + } + + //! + //! \brief Set the tempfile control flags for this runtime. + //! + //! \param flags The flags to set. + //! + //! The default value is all flags set, i.e. + //! + //! (1U << static_cast(kALLOW_IN_MEMORY_FILES)) | (1U << static_cast(kALLOW_TEMPORARY_FILES)) + //! + //! \see TempfileControlFlag, TempfileControlFlags, getTempfileControlFlags() + //! + void setTempfileControlFlags(TempfileControlFlags flags) noexcept + { + return mImpl->setTempfileControlFlags(flags); + } + + //! + //! \brief Get the tempfile control flags for this runtime. + //! + //! \return The flags currently set. + //! + //! \see TempfileControlFlag, TempfileControlFlags, setTempfileControlFlags() + //! + TempfileControlFlags getTempfileControlFlags() const noexcept + { + return mImpl->getTempfileControlFlags(); + } + + //! + //! \brief Get the local plugin registry that can be used by the runtime. + //! + //! \return The local plugin registry that can be used by the runtime. + //! + IPluginRegistry& getPluginRegistry() noexcept + { + return mImpl->getPluginRegistry(); + } + + //! + //! \brief Load IRuntime from the file. + //! + //! This method loads a runtime library from a shared library file. The runtime can then be used to execute + //! a plan file built with BuilderFlag::kVERSION_COMPATIBLE and BuilderFlag::kEXCLUDE_LEAN_RUNTIME both set + //! and built with the same version of TensorRT as the loaded runtime library. + //! + //! \param path Path to the runtime lean library. + //! + //! \return the runtime library, or nullptr if it could not be loaded + //! + //! \warning The path string must be null-terminated, and be at most 4096 bytes including the terminator. + //! + IRuntime* loadRuntime(char const* path) noexcept + { + return mImpl->loadRuntime(path); + } + + //! + //! \brief Set whether the runtime is allowed to deserialize engines with host executable code. + //! + //! \param allowed Whether the runtime is allowed to deserialize engines with host executable code. + //! + //! The default value is false. + //! + void setEngineHostCodeAllowed(bool allowed) noexcept + { + return mImpl->setEngineHostCodeAllowed(allowed); + } + + //! + //! \brief Get whether the runtime is allowed to deserialize engines with host executable code. + //! + //! \return Whether the runtime is allowed to deserialize engines with host executable code. + //! + bool getEngineHostCodeAllowed() const noexcept + { + return mImpl->getEngineHostCodeAllowed(); + } + + +protected: + apiv::VRuntime* mImpl; +}; + +//! +//! \class IRefitter +//! +//! \brief Updates weights in an engine. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IRefitter : public INoCopy +{ +public: + virtual ~IRefitter() noexcept = default; + + //! + //! \brief Specify new weights for a layer of given name. + //! Returns true on success, or false if new weights are rejected. + //! Possible reasons for rejection are: + //! + //! * There is no such layer by that name. + //! * The layer does not have weights with the specified role. + //! * The count of weights is inconsistent with the layerโ€™s original specification. + //! * The type of weights is inconsistent with the layerโ€™s original specification. + //! + //! Modifying the weights before method refitCudaEngine or refitCudaEngineAsync returns will result in undefined + //! behavior. + //! + //! \warning The string layerName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool setWeights(char const* layerName, WeightsRole role, Weights weights) noexcept + { + return mImpl->setWeights(layerName, role, weights); + } + + //! + //! \brief Refits associated engine. + //! + //! \return True on success, or false if new weights validation fails or getMissingWeights() != 0 before the call. + //! If false is returned, a subset of weights may have been refitted. + //! + //! The behavior is undefined if the engine has pending enqueued work. + //! Provided weights on CPU or GPU can be unset and released, or updated after refitCudaEngine returns. + //! + //! IExecutionContexts associated with the engine remain valid for use afterwards. There is no need to set the same + //! weights repeatedly for multiple refit calls as the weights memory can be updated directly instead. + //! + bool refitCudaEngine() noexcept + { + return mImpl->refitCudaEngine(); + } + + //! + //! \brief Get description of missing weights. + //! + //! For example, if some Weights have been set, but the engine was optimized + //! in a way that combines weights, any unsupplied Weights in the combination + //! are considered missing. + //! + //! \param size The number of items that can be safely written to a non-null layerNames or roles. + //! \param layerNames Where to write the layer names. + //! \param roles Where to write the weights roles. + //! + //! \return The number of missing Weights. + //! + //! If layerNames!=nullptr, each written pointer points to a string owned by + //! the engine being refit, and becomes invalid when the engine is destroyed. + //! + int32_t getMissing(int32_t size, char const** layerNames, WeightsRole* roles) noexcept + { + return mImpl->getMissing(size, layerNames, roles); + } + + //! + //! \brief Get description of all weights that could be refit. + //! + //! \param size The number of items that can be safely written to a non-null layerNames or roles. + //! \param layerNames Where to write the layer names. + //! \param roles Where to write the weights roles. + //! + //! \return The number of Weights that could be refit. + //! + //! If layerNames!=nullptr, each written pointer points to a string owned by + //! the engine being refit, and becomes invalid when the engine is destroyed. + //! + int32_t getAll(int32_t size, char const** layerNames, WeightsRole* roles) noexcept + { + return mImpl->getAll(size, layerNames, roles); + } + + //! + //! Update dynamic range for a tensor. + //! + //! \param tensorName The name of an ITensor in the network. + //! \param min The minimum of the dynamic range for the tensor. + //! \param max The maximum of the dynamic range for the tensor. + //! + //! \return True if successful; false otherwise. + //! + //! Returns false if there is no Int8 engine tensor derived from + //! a network tensor of that name. If successful, then getMissing + //! may report that some weights need to be supplied. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED bool setDynamicRange(char const* tensorName, float min, float max) noexcept + { + return mImpl->setDynamicRange(tensorName, min, max); + } + + //! + //! \brief Get minimum of dynamic range. + //! + //! \return Minimum of dynamic range. + //! + //! If the dynamic range was never set, returns the minimum computed during calibration. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED float getDynamicRangeMin(char const* tensorName) const noexcept + { + return mImpl->getDynamicRangeMin(tensorName); + } + + //! + //! \brief Get maximum of dynamic range. + //! + //! \return Maximum of dynamic range. + //! + //! If the dynamic range was never set, returns the maximum computed during calibration. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED float getDynamicRangeMax(char const* tensorName) const noexcept + { + return mImpl->getDynamicRangeMax(tensorName); + } + + //! + //! \brief Get names of all tensors that have refittable dynamic ranges. + //! + //! \param size The number of items that can be safely written to a non-null tensorNames. + //! \param tensorNames Where to write the layer names. + //! + //! \return The number of Weights that could be refit. + //! + //! If tensorNames!=nullptr, each written pointer points to a string owned by + //! the engine being refit, and becomes invalid when the engine is destroyed. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by explicit quantization. + //! + TRT_DEPRECATED int32_t getTensorsWithDynamicRange(int32_t size, char const** tensorNames) const noexcept + { + return mImpl->getTensorsWithDynamicRange(size, tensorNames); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + // + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief Get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. A nullptr will be returned if + //! an error handler has not been set. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + + //! + //! \brief Specify new weights of given name. + //! + //! \param name The name of the weights to be refit. + //! \param weights The new weights to associate with the name. + //! + //! Returns true on success, or false if new weights are rejected. + //! Possible reasons for rejection are: + //! + //! * The name of weights is nullptr or does not correspond to any refittable weights. + //! * The count of the weights is inconsistent with the count returned from calling getWeightsPrototype() with the + //! same name. + //! * The type of the weights is inconsistent with the type returned from calling getWeightsPrototype() with the + //! same name. + //! + //! Modifying the weights before method refitCudaEngine or refitCudaEngineAsync returns will result in undefined + //! behavior. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool setNamedWeights(char const* name, Weights weights) noexcept + { + return mImpl->setNamedWeights(name, weights); + } + + //! + //! \brief Get names of missing weights. + //! + //! For example, if some Weights have been set, but the engine was optimized + //! in a way that combines weights, any unsupplied Weights in the combination + //! are considered missing. + //! + //! \param size The number of weights names that can be safely written to. + //! \param weightsNames The names of the weights to be updated, or nullptr for unnamed weights. + //! + //! \return The number of missing Weights. + //! + //! If layerNames!=nullptr, each written pointer points to a string owned by + //! the engine being refit, and becomes invalid when the engine is destroyed. + //! + int32_t getMissingWeights(int32_t size, char const** weightsNames) noexcept + { + return mImpl->getMissingWeights(size, weightsNames); + } + + //! + //! \brief Get names of all weights that could be refit. + //! + //! \param size The number of weights names that can be safely written to. + //! \param weightsNames The names of the weights to be updated, or nullptr for unnamed weights. + //! + //! \return The number of Weights that could be refit. + //! + //! If layerNames!=nullptr, each written pointer points to a string owned by + //! the engine being refit, and becomes invalid when the engine is destroyed. + //! + int32_t getAllWeights(int32_t size, char const** weightsNames) noexcept + { + return mImpl->getAllWeights(size, weightsNames); + } + + //! + //! \brief get the logger with which the refitter was created + //! + //! \return the logger + //! + ILogger* getLogger() const noexcept + { + return mImpl->getLogger(); + } + + //! + //! \brief Set the maximum number of threads. + //! + //! \param maxThreads The maximum number of threads that can be used by the refitter. + //! + //! \return True if successful, false otherwise. + //! + //! The default value is 1 and includes the current thread. + //! A value greater than 1 permits TensorRT to use multi-threaded algorithms. + //! A value less than 1 triggers a kINVALID_ARGUMENT error. + //! + bool setMaxThreads(int32_t maxThreads) noexcept + { + return mImpl->setMaxThreads(maxThreads); + } + + //! + //! \brief get the maximum number of threads that can be used by the refitter. + //! + //! Retrieves the maximum number of threads that can be used by the refitter. + //! + //! \return The maximum number of threads that can be used by the refitter. + //! + //! \see setMaxThreads() + //! + int32_t getMaxThreads() const noexcept + { + return mImpl->getMaxThreads(); + } + + //! + //! \brief Specify new weights on a specified device of given name. + //! + //! \param name The name of the weights to be refitted. + //! \param weights The new weights on the specified device. + //! \param location The location (host vs. device) of the new weights. + //! + //! \return True on success, or false if new weights are rejected. + //! Possible reasons for rejection are: + //! + //! * The name of the weights is nullptr or does not correspond to any refittable weights. + //! * The count of the weights is inconsistent with the count returned from calling getWeightsPrototype() with the + //! same name. + //! * The type of the weights is inconsistent with the type returned from calling getWeightsPrototype() with the + //! same name. + //! + //! It is allowed to provide some weights on CPU and others on GPU. + //! Modifying the weights before the method refitCudaEngine() or refitCudaEngineAsync() completes will result in + //! undefined behavior. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool setNamedWeights(char const* name, Weights weights, TensorLocation location) noexcept + { + return mImpl->setNamedWeightsWithLocation(name, weights, location); + } + + //! + //! \brief Get weights associated with the given name. + //! + //! \param weightsName The name of the weights to be refitted. + //! + //! \return Weights associated with the given name. + //! + //! If the weights were never set, returns null weights and reports an error to the refitter errorRecorder. + //! + //! \warning The string weightsName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Weights getNamedWeights(char const* weightsName) const noexcept + { + return mImpl->getNamedWeights(weightsName); + } + + //! + //! \brief Get location for the weights associated with the given name. + //! + //! \param weightsName The name of the weights to be refitted. + //! + //! \return Location for the weights associated with the given name. + //! + //! If the weights were never set, returns TensorLocation::kHOST and reports an error to the refitter errorRecorder. + //! + //! \warning The string weightsName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + TensorLocation getWeightsLocation(char const* weightsName) const noexcept + { + return mImpl->getWeightsLocation(weightsName); + } + + //! + //! \brief Unset weights associated with the given name. + //! + //! \param weightsName The name of the weights to be refitted. + //! + //! \return False if the weights were never set, returns true otherwise. + //! + //! Unset weights before releasing them. + //! + //! \warning The string weightsName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool unsetNamedWeights(char const* weightsName) noexcept + { + return mImpl->unsetNamedWeights(weightsName); + } + + //! + //! \brief Set whether to validate weights during refitting. + //! + //! \param weightsValidation Indicate whether to validate weights during refitting. + //! + //! When set to true, TensorRT will validate weights during FP32 to FP16/BF16 weights conversions or + //! sparsifying weights in the refit call. If provided weights are not proper for some weights transformations, + //! TensorRT will issue a warning and continue the transformation for minor issues (such as overflow during + //! narrowing conversion), or issue an error and stop the refitting process for severe issues (such as sparsifying + //! dense weights). By default the flag is true. Set the flag to false for faster refitting performance. + //! + void setWeightsValidation(bool weightsValidation) noexcept + { + return mImpl->setWeightsValidation(weightsValidation); + } + + //! + //! \brief Get whether to validate weights values during refitting. + //! + bool getWeightsValidation() const noexcept + { + return mImpl->getWeightsValidation(); + } + + //! + //! \brief Enqueue weights refitting of the associated engine on the given stream. + //! + //! \param stream The stream to enqueue the weights updating task. + //! + //! \return True on success, or false if new weights validation fails or getMissingWeights() != 0 before the call. + //! If false is returned, a subset of weights may have been refitted. + //! + //! The behavior is undefined if the engine has pending enqueued work on a different stream from the provided one. + //! Provided weights on CPU can be unset and released, or updated after refitCudaEngineAsync returns. + //! Freeing or updating of the provided weights on GPU can be enqueued on the same stream after refitCudaEngineAsync + //! returns. + //! + //! IExecutionContexts associated with the engine remain valid for use afterwards. There is no need to set the same + //! weights repeatedly for multiple refit calls as the weights memory can be updated directly instead. The weights + //! updating task should use the same stream as the one used for the refit call. + //! + bool refitCudaEngineAsync(cudaStream_t stream) noexcept + { + return mImpl->refitCudaEngineAsync(stream); + } + + //! + //! \brief Get the Weights prototype associated with the given name. + //! + //! \param weightsName The name of the weights to be refitted. + //! + //! \return Weights prototype associated with the given name. + //! + //! The type and count of weights prototype is the same as weights used for engine building. The values property + //! is nullptr for weights prototypes. The count of the weights prototype is -1 when the name of the weights is + //! nullptr or does not correspond to any refittable weights. + //! + //! \warning The string weightsName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Weights getWeightsPrototype(char const* weightsName) const noexcept + { + return mImpl->getWeightsPrototype(weightsName); + } + +protected: + apiv::VRefitter* mImpl; +}; + +//! +//! \enum OptProfileSelector +//! +//! \brief When setting or querying optimization profile parameters (such as shape tensor inputs or dynamic dimensions), +//! select whether we are interested in the minimum, optimum, or maximum values for these parameters. +//! The minimum and maximum specify the permitted range that is supported at runtime, while the optimum value +//! is used for the kernel selection. This should be the "typical" value that is expected to occur at runtime. +//! +//! \see IOptimizationProfile::setDimensions(), IOptimizationProfile::setShapeValuesV2(), IOptimizationProfile::setShapeValues() +//! +enum class OptProfileSelector : int32_t +{ + kMIN = 0, //!< This is used to set or get the minimum permitted value for dynamic dimensions etc. + kOPT = 1, //!< This is used to set or get the value that is used in the optimization (kernel selection). + kMAX = 2 //!< This is used to set or get the maximum permitted value for dynamic dimensions etc. +}; + +//! +//! \brief Number of different values of OptProfileSelector enum. +//! +//! \see OptProfileSelector +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class IOptimizationProfile +//! \brief Optimization profile for dynamic input dimensions and shape tensors. +//! +//! When building an ICudaEngine from an INetworkDefinition that has dynamically resizable inputs (at least +//! one input tensor has one or more of its dimensions specified as -1) or shape input tensors, users need to specify +//! at least one optimization profile. Optimization profiles are numbered 0, 1, ... +//! The first optimization profile that has been defined (with index 0) will be used by the ICudaEngine whenever no +//! optimization profile has been selected explicitly. If none of the inputs are dynamic, the default optimization +//! profile will be generated automatically unless it is explicitly provided by the user (this is possible but not +//! required in this case). If more than a single optimization profile is defined, users may set a target how +//! much additional weight space should be maximally allocated to each additional profile (as a fraction of the +//! maximum, unconstrained memory). +//! +//! Users set optimum input tensor dimensions, as well as minimum and maximum input tensor dimensions. The builder +//! selects the kernels that result in the lowest runtime for the optimum input tensor dimensions, and are valid for +//! all input tensor sizes in the valid range between minimum and maximum dimensions. A runtime error will be raised +//! if the input tensor dimensions fall outside the valid range for this profile. Likewise, users provide minimum, +//! optimum, and maximum values for all shape tensor input values. +//! +//! \see IBuilderConfig::addOptimizationProfile() +//! +class IOptimizationProfile : public INoCopy +{ +public: + //! + //! \brief Set the minimum / optimum / maximum dimensions for a dynamic input tensor. + //! + //! This function must be called three times (for the minimum, optimum, and maximum) for any network input tensor + //! that has dynamic dimensions. If minDims, optDims, and maxDims are the minimum, optimum, and maximum dimensions, + //! and networkDims are the dimensions for this input tensor that are provided to the INetworkDefinition object, + //! then the following conditions must all hold: + //! + //! (1) minDims.nbDims == optDims.nbDims == maxDims.nbDims == networkDims.nbDims + //! (2) 0 <= minDims.d[i] <= optDims.d[i] <= maxDims.d[i] for i = 0, ..., networkDims.nbDims-1 + //! (3) if networkDims.d[i] != -1, then minDims.d[i] == optDims.d[i] == maxDims.d[i] == networkDims.d[i] + //! + //! This function may (but need not be) called for an input tensor that does not have dynamic dimensions. In this + //! case, the third argument must always equal networkDims. + //! + //! \param inputName The input tensor name + //! \param select Whether to set the minimum, optimum, or maximum dimensions + //! \param dims The minimum, optimum, or maximum dimensions for this input tensor + //! + //! \return false if an inconsistency was detected (e.g. the rank does not match another dimension that was + //! previously set for the same input), true if no inconsistency was detected. Note that inputs can be + //! validated only partially; a full validation is performed at engine build time. + //! + //! \warning If run on DLA, minimum, optimum, and maximum dimensions must to be the same. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool setDimensions(char const* inputName, OptProfileSelector select, Dims const& dims) noexcept + { + return mImpl->setDimensions(inputName, select, dims); + } + + //! + //! \brief Get the minimum / optimum / maximum dimensions for a dynamic input tensor. + //! + //! If the dimensions have not been previously set via setDimensions(), return an invalid Dims with nbDims == -1. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Dims getDimensions(char const* inputName, OptProfileSelector select) const noexcept + { + return mImpl->getDimensions(inputName, select); + } + + //! + //! \brief Set the minimum / optimum / maximum values for an input shape tensor. + //! + //! This function must be called three times for every input tensor t that is a shape tensor (t.isShape() == true). + //! This implies that the dimensions of t are fixed at network definition time and the volume does not exceed 64. + //! This function must not be called for any input tensor that is not a shape tensor. + //! + //! Each time this function is called for the same input tensor, the same nbValues must be supplied (either 1 + //! if the tensor rank is 0, or dims.d[0] if the rank is 1). Furthermore, if minVals, optVals, maxVals are the + //! minimum, optimum, and maximum values, it must be true that minVals[i] <= optVals[i] <= maxVals[i] for + //! i = 0, ..., nbValues - 1. Execution of the network must be valid for the optVals. + //! + //! Shape tensors are tensors that contribute to shape calculations in some way. While input shape tensors can be + //! type kINT32 or kINT64, the values used to set the minimum, optimum, and maximum values must fit in int32_t. + //! + //! Examples: + //! + //! * A shape tensor used as the second input to IShuffleLayer can contain a -1 wildcard. + //! The corresponding minVal[i] should be -1. + //! + //! * A shape tensor used as the stride input to ISliceLayer can contain any valid strides. + //! The values could be positive, negative, or zero. + //! + //! * A shape tensor subtracted from zero to compute the size input of an ISliceLayer can + //! contain any non-positive values that yield a valid slice operation. + //! + //! Tightening the minVals and maxVals bounds to cover only values that are necessary may help optimization. + //! + //! \param inputName The input tensor name + //! \param select Whether to set the minimum, optimum, or maximum input values. + //! \param values An array of length nbValues containing the minimum, optimum, or maximum shape tensor elements. + //! For multidimensional tensors, the array is in row-major order. + //! \param nbValues The length of the value array, which must equal the number of shape tensor elements (>= 1) + //! + //! \return false if an inconsistency was detected (e.g. nbValues does not match a previous call for the same + //! tensor), else true. As for setDimensions(), a full validation can only be performed at engine build + //! time. + //! + //! \warning If run on DLA, minimum, optimum, and maximum shape values must to be the same. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \warning When setShapeValuesV2 is called after setShapeValues, a following call to getShapeValues will + //! return nullptr. Vice versa, a call to setShapeValues undoes the effects of setShapeValuesV2. + //! + //! \deprecated Deprecated in TensorRT 10.11. Superseded by setShapeValuesV2(). + //! + TRT_DEPRECATED bool setShapeValues( + char const* inputName, OptProfileSelector select, int32_t const* values, int32_t nbValues) noexcept + { + return mImpl->setShapeValues(inputName, select, values, nbValues); + } + + //! + //! \brief Get the number of values for an input shape tensor. + //! + //! This will return the number of shape values if setShapeValues() has been called before for this input tensor. + //! Otherwise, return -1. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + int32_t getNbShapeValues(char const* inputName) const noexcept + { + return mImpl->getNbShapeValues(inputName); + } + + //! + //! \brief Get the minimum / optimum / maximum values for an input shape tensor. + //! + //! If the shape values have not been set previously with setShapeValues(), this returns nullptr. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \deprecated Deprecated in TensorRT 10.11. Superseded by getShapeValuesV2(). + //! + TRT_DEPRECATED int32_t const* getShapeValues(char const* inputName, OptProfileSelector select) const noexcept + { + return mImpl->getShapeValues(inputName, select); + } + + //! + //! \brief Set a target for extra GPU memory that may be used by this profile. + //! + //! \param target Additional memory that the builder should aim to maximally allocate for this profile, as a + //! fraction of the memory it would use if the user did not impose any constraints on memory. This + //! unconstrained case is the default; it corresponds to target == 1.0. If target == 0.0, the builder + //! aims to create the new optimization profile without allocating any additional weight memory. + //! Valid inputs lie between 0.0 and 1.0. This parameter is only a hint, and TensorRT does not guarantee + //! that the target will be reached. This parameter is ignored for the first (default) optimization profile + //! that is defined. + //! + //! \return true if the input is in the valid range (between 0 and 1 inclusive), else false. + //! + bool setExtraMemoryTarget(float target) noexcept + { + return mImpl->setExtraMemoryTarget(target); + } + + //! + //! \brief Get the extra memory target that has been defined for this profile. + //! + //! This defaults to 1.0F. + //! + //! \return the valid value set by setExtraMemoryTarget or 1.0F. + //! + float getExtraMemoryTarget() const noexcept + { + return mImpl->getExtraMemoryTarget(); + } + + //! + //! \brief Check whether the optimization profile can be passed to an IBuilderConfig object. + //! + //! This function performs partial validation, by e.g. checking that whenever one of the minimum, optimum, or + //! maximum dimensions of a tensor have been set, the others have also been set and have the same rank, as + //! well as checking that the optimum dimensions are always as least as large as the minimum dimensions, and + //! that the maximum dimensions are at least as large as the optimum dimensions. Some validation steps require + //! knowledge of the network definition and are deferred to engine build time. + //! + //! + //! \return true if the optimization profile is valid and may be passed to an IBuilderConfig, else false. + //! + bool isValid() const noexcept + { + return mImpl->isValid(); + } + + //! + //! \brief Set the minimum / optimum / maximum values for an input shape tensor. + //! + //! This function must be called three times for every input tensor t that is a shape tensor (t.isShape() == true). + //! This implies that the dimensions of t are fixed at network definition time and the volume does not exceed 64. + //! This function must not be called for any input tensor that is not a shape tensor. + //! + //! Each time this function is called for the same input tensor, the same nbValues must be supplied (either 1 + //! if the tensor rank is 0, or dims.d[0] if the rank is 1). Furthermore, if minVals, optVals, maxVals are the + //! minimum, optimum, and maximum values, it must be true that minVals[i] <= optVals[i] <= maxVals[i] for + //! i = 0, ..., nbValues - 1. Execution of the network must be valid for the optVals. + //! + //! Shape tensors are tensors that contribute to shape calculations in some way. While input shape tensors can be + //! type kINT32 or kINT64, the values used to set the minimum, optimum, and maximum values must fit in int64_t. + //! + //! Examples: + //! + //! * A shape tensor used as the second input to IShuffleLayer can contain a -1 wildcard. + //! The corresponding minVal[i] should be -1. + //! + //! * A shape tensor used as the stride input to ISliceLayer can contain any valid strides. + //! The values could be positive, negative, or zero. + //! + //! * A shape tensor subtracted from zero to compute the size input of an ISliceLayer can + //! contain any non-positive values that yield a valid slice operation. + //! + //! Tightening the minVals and maxVals bounds to cover only values that are necessary may help optimization. + //! + //! \param inputName The input tensor name + //! \param select Whether to set the minimum, optimum, or maximum input values. + //! \param values An array of length nbValues containing the minimum, optimum, or maximum shape tensor elements. + //! For multidimensional tensors, the array is in row-major order. + //! \param nbValues The length of the value array, which must equal the number of shape tensor elements (>= 1) + //! + //! \return false if an inconsistency was detected (e.g. nbValues does not match a previous call for the same + //! tensor), else true. As for setDimensions(), a full validation can only be performed at engine build + //! time. + //! + //! \warning If run on DLA, minimum, optimum, and maximum shape values must to be the same. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \warning When setShapeValues is called after setShapeValuesV2, input shape would be overwritten as 32 bit + //! and getShapeValuesV2 would return nullptr. + //! + bool setShapeValuesV2( + char const* inputName, OptProfileSelector select, int64_t const* values, int32_t nbValues) noexcept + { + return mImpl->setShapeValuesV2(inputName, select, values, nbValues); + } + + //! + //! \brief Get the minimum / optimum / maximum values for an input shape tensor. + //! + //! If the shape values have not been set previously with setShapeValuesV2(), this returns nullptr. + //! + //! \warning The string inputName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + int64_t const* getShapeValuesV2(char const* inputName, OptProfileSelector select) const noexcept + { + return mImpl->getShapeValuesV2(inputName, select); + } + +protected: + apiv::VOptimizationProfile* mImpl; + virtual ~IOptimizationProfile() noexcept = default; +}; + +//! +//! \enum TacticSource +//! +//! \brief List of tactic sources for TensorRT. +//! +//! \see TacticSources, IBuilderConfig::setTacticSources(), IBuilderConfig::getTacticSources() +//! +enum class TacticSource : int32_t +{ + //! cuBLAS tactics. Disabled by default. + //! \note Disabling kCUBLAS will cause the cuBLAS handle passed to plugins in attachToContext to be null. + //! \deprecated Deprecated in TensorRT 10.0. + kCUBLAS TRT_DEPRECATED_ENUM = 0, + + //! cuBLAS LT tactics. Disabled by default. + //! \deprecated Deprecated in TensorRT 9.0. + kCUBLAS_LT TRT_DEPRECATED_ENUM = 1, + + //! cuDNN tactics. Disabled by default. + //! \note Disabling kCUDNN will cause the cuDNN handle passed to plugins in attachToContext to be null. + //! \deprecated Deprecated in TensorRT 10.0. + kCUDNN TRT_DEPRECATED_ENUM = 2, + + //! Enables convolution tactics implemented with edge mask tables. These tactics tradeoff memory for performance by + //! consuming additional memory space proportional to the input size. + //! Enabled by default. + kEDGE_MASK_CONVOLUTIONS = 3, + + //! Enables convolution tactics implemented with source-code JIT fusion. The engine building time may increase + //! when this is enabled. Enabled by default. + kJIT_CONVOLUTIONS = 4, +}; + +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 5; +} //!< Maximum number of tactic sources in TacticSource enum. \see TacticSource + +//! +//! \brief Represents a collection of one or more TacticSource values +//! combine using bitwise-OR operations. +//! +//! \see IBuilderConfig::setTacticSources(), IBuilderConfig::getTacticSources() +//! +using TacticSources = uint32_t; + +//! +//! \enum ProfilingVerbosity +//! +//! \brief List of verbosity levels of layer information exposed in NVTX annotations and in IEngineInspector. +//! +//! \see IBuilderConfig::setProfilingVerbosity(), +//! IBuilderConfig::getProfilingVerbosity(), +//! IEngineInspector +//! +enum class ProfilingVerbosity : int32_t +{ + kLAYER_NAMES_ONLY = 0, //!< Print only the layer names. This is the default setting. + kNONE = 1, //!< Do not print any layer information. + kDETAILED = 2, //!< Print detailed layer information including layer names and layer parameters. +}; + +//! Maximum number of profile verbosity levels in ProfilingVerbosity enum. \see ProfilingVerbosity +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \brief Represents one or more SerializationFlag values using binary OR +//! operations, e.g., 1U << SerializationFlag::kEXCLUDE_LEAN_RUNTIME +//! +//! \see ISerializationConfig::setFlags(), ISerializationConfig::getFlags() +//! +using SerializationFlags = uint32_t; + +//! +//! \enum SerializationFlag +//! +//! \brief List of valid flags that the engine can enable when serializing the bytes. +//! +//! \see ISerializationConfig::setFlags(), ISerializationConfig::getFlags() +//! +enum class SerializationFlag : int32_t +{ + kEXCLUDE_WEIGHTS = 0, //!< Exclude the weights that can be refitted. + kEXCLUDE_LEAN_RUNTIME = 1, //!< Exclude the lean runtime. + kINCLUDE_REFIT = 2, //!< Remain refittable if originally so. +}; + +//! Maximum number of serialization flags in SerializationFlag enum. \see SerializationFlag +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class ISerializationConfig +//! +//! \brief Holds properties for configuring an engine to serialize the binary. +//! +//! \see SerializationFlag +//! +class ISerializationConfig : public INoCopy +{ +public: + virtual ~ISerializationConfig() noexcept = default; + + //! + //! \brief Set the serialization flags to turn on for this config. + //! + //! The flags are listed in the SerializationFlag enum. + //! + //! \param serializationFlags The serialization flags for an engine. + //! + //! \note This function will override the previous set flags, rather than bitwise ORing the new flag. + //! + //! \see getFlags() + //! + bool setFlags(SerializationFlags serializationFlags) noexcept + { + return mImpl->setFlags(serializationFlags); + } + + //! + //! \brief Get the serialization flags for this config. + //! + //! \return The serialization flags as a bitmask. + //! + //! \see setFlags() + //! + SerializationFlags getFlags() const noexcept + { + return mImpl->getFlags(); + } + + //! + //! \brief clear a serialization flag. + //! + //! clears the serialization flag from the config. + //! + //! \see setFlags() + //! + bool clearFlag(SerializationFlag serializationFlag) noexcept + { + return mImpl->clearFlag(serializationFlag); + } + + //! + //! \brief Set a serialization flag. + //! + //! Add the input serialization flag to the already enabled flags. + //! + //! \see setFlags() + //! + bool setFlag(SerializationFlag serializationFlag) noexcept + { + return mImpl->setFlag(serializationFlag); + } + + //! + //! \brief Returns true if the serialization flag is set + //! + //! \see getFlags() + //! + //! \return True if flag is set, false if unset. + //! + bool getFlag(SerializationFlag serializationFlag) const noexcept + { + return mImpl->getFlag(serializationFlag); + } + +protected: + apiv::VSerializationConfig* mImpl; +}; + +//! +//! \enum ExecutionContextAllocationStrategy +//! +//! \brief Different memory allocation behaviors for IExecutionContext. +//! +//! IExecutionContext requires a block of device memory for internal activation tensors during inference. The user can +//! either let the execution context manage the memory in various ways or allocate the memory themselves. +//! +//! \see ICudaEngine::createExecutionContext() +//! \see IExecutionContext::setDeviceMemory() +//! +enum class ExecutionContextAllocationStrategy : int32_t +{ + kSTATIC = 0, //!< Default static allocation with the maximum size across all profiles. + kON_PROFILE_CHANGE = 1, //!< Reallocate for a profile when it's selected. + kUSER_MANAGED = 2, //!< The user supplies custom allocation to the execution context. +}; + +//! +//! \brief Maximum number of memory allocation strategies in ExecutionContextAllocationStrategy enum. +//! +//! \see ExecutionContextAllocationStrategy +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 3; +} + + +//! \class IRuntimeConfig +//! +//! \brief A class for runtime configuration. This class is used during execution context creation. +//! +//! \see IRuntime, IBuilderConfig +//! +class IRuntimeConfig : public INoCopy +{ +public: + virtual ~IRuntimeConfig() noexcept = default; + + //! + //! \brief Set the execution context allocation strategy. Default value is kSTATIC. + //! + //! \param strategy The execution context allocation strategy. + //! + void setExecutionContextAllocationStrategy(ExecutionContextAllocationStrategy strategy) noexcept + { + return mImpl->setExecutionContextAllocationStrategy(strategy); + } + + //! + //! \brief Get the execution context allocation strategy. + //! + //! \return The execution context allocation strategy. + //! + ExecutionContextAllocationStrategy getExecutionContextAllocationStrategy() const noexcept + { + return mImpl->getExecutionContextAllocationStrategy(); + } + + +protected: + apiv::VRuntimeConfig* mImpl; +}; // class IRuntimeConfig + +//! +//! \enum EngineStat +//! +//! \brief The kind of engine statistics that queried from the ICudaEngine. +//! +//! \see ICudaEngine::getEngineStat() +//! \see BuilderFlag::kSTRIP_PLAN +//! +enum class EngineStat : int32_t +{ + //! Return the total weight size in bytes. + kTOTAL_WEIGHTS_SIZE = 0, + + //! Return the stripped weight size in bytes for engines built with BuilderFlag::kSTRIP_PLAN. + kSTRIPPED_WEIGHTS_SIZE = 1, +}; + +//! +//! \brief Maximum number of engine statistic kinds in EngineStat enum. +//! +//! \see EngineStat +//! +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \class ICudaEngine +//! +//! \brief An engine for executing inference on a built network, with functionally unsafe features. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class ICudaEngine : public INoCopy +{ +public: + virtual ~ICudaEngine() noexcept = default; + + //! + //! \brief Get shape of an input or output tensor. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \return shape of the tensor, with -1 in place of each dynamic runtime dimension, + //! or Dims{-1, {}} if the provided name does not map to an input or output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Dims getTensorShape(char const* tensorName) const noexcept + { + return mImpl->getTensorShape(tensorName); + } + + //! + //! \brief Determine the required data type for a buffer from its tensor name. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \return The type of the data in the buffer, or DataType::kFLOAT if the provided name does not map to an input or + //! output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + DataType getTensorDataType(char const* tensorName) const noexcept + { + return mImpl->getTensorDataType(tensorName); + } + + //! + //! \brief Get the number of layers in the network. + //! + //! The number of layers in the network is not necessarily the number in the original network definition, as layers + //! may be combined or eliminated as the engine is optimized. This value can be useful when building per-layer + //! tables, such as when aggregating profiling data over a number of executions. + //! + //! \return The number of layers in the network. + //! + int32_t getNbLayers() const noexcept + { + return mImpl->getNbLayers(); + } + + //! + //! \brief Serialize the network to a stream. + //! + //! \return A IHostMemory object that contains the serialized engine. + //! + //! The network may be deserialized with IRuntime::deserializeCudaEngine(). + //! + //! \see IRuntime::deserializeCudaEngine() + //! + IHostMemory* serialize() const noexcept + { + return mImpl->serialize(); + } + + //! + //! \brief Create an execution context and specify the strategy for allocating internal activation memory. + //! + //! The default value for the allocation strategy is ExecutionContextAllocationStrategy::kSTATIC, which means the + //! context will pre-allocate a block of device memory that is sufficient for all profiles. The newly created + //! execution context will be assigned optimization profile 0. If an error recorder has been set for the engine, it + //! will also be passed to the execution context. + //! + //! \see IExecutionContext + //! \see IExecutionContext::setOptimizationProfileAsync() + //! \see ExecutionContextAllocationStrategy + //! + IExecutionContext* createExecutionContext( + ExecutionContextAllocationStrategy strategy = ExecutionContextAllocationStrategy::kSTATIC) noexcept + { + return mImpl->createExecutionContext(strategy); + } + + //! + //! \brief Get whether an input or output tensor must be on GPU or CPU. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \return TensorLocation::kDEVICE if tensorName must be on GPU, or TensorLocation::kHOST if on CPU, or + //! TensorLocation::kDEVICE if the provided name does not map to an input or output tensor. + //! + //! The location is established at build time. E.g. shape tensors inputs are typically required to be on the CPU. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + TensorLocation getTensorLocation(char const* tensorName) const noexcept + { + return mImpl->getTensorLocation(tensorName); + } + + //! + //! \brief True if tensor is required as input for shape calculations or is output from shape calculations. + //! + //! Return true for either of the following conditions: + //! + //! * The tensor is a network input, and its value is required for IExecutionContext::getTensorShape() + //! to return the shape of a network output. + //! + //! * The tensor is a network output, and inferShape() will compute its values. + //! + //! For example, if a network uses an input tensor "foo" as an addend to an IElementWiseLayer + //! that computes the "reshape dimensions" for IShuffleLayer, then isShapeInferenceIO("foo") == true. + //! If the network copies said input tensor "foo" to an output "bar", then + //! isShapeInferenceIO("bar") == true and IExecutionContext::inferShapes() will write to "bar". + //! + bool isShapeInferenceIO(char const* tensorName) const noexcept + { + return mImpl->isShapeInferenceIO(tensorName); + } + + //! + //! \brief Determine whether a tensor is an input or output tensor. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \return kINPUT if tensorName is an input, kOUTPUT if tensorName is an output, or kNONE if neither. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + TensorIOMode getTensorIOMode(char const* tensorName) const noexcept + { + return mImpl->getTensorIOMode(tensorName); + } + + //! + //! \brief Get the input tensor name that an output tensor should alias with. + //! + //! Some operations (e.g., KVCacheUpdate) require that certain output tensors share memory with input tensors. + //! This method returns the name of the input tensor that a given output tensor should alias with. + //! + //! \param tensorName The name of an output tensor. + //! + //! \return The name of the input tensor to alias with, or nullptr if tensorName is not an output tensor or + //! the output does not alias with any input. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the + //! terminator. + //! + TRT_NODISCARD char const* getAliasedInputTensor(char const* tensorName) const noexcept + { + return mImpl->getAliasedInputTensor(tensorName); + } + + //! + //! \brief create an execution context without any device memory allocated + //! + //! The memory for execution of this device context must be supplied by the application. + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by createExecutionContext() with parameter. + //! + TRT_DEPRECATED IExecutionContext* createExecutionContextWithoutDeviceMemory() noexcept + { + return mImpl->createExecutionContextWithoutDeviceMemory(); + } + + //! + //! \brief Create an execution context with TensorRT JIT runtime config. + //! + //! \param runtimeConfig The runtime config for TensorRT JIT. + //! + //! \see IRuntimeConfig + //! + IExecutionContext* createExecutionContext(IRuntimeConfig* runtimeConfig) noexcept + { + return mImpl->createExecutionContextWithRuntimeConfig(runtimeConfig); + } + + //! + //! \brief Create a runtime config for TensorRT JIT. + //! The caller is responsible for ownership of the returned IRuntimeConfig object. + //! + //! \return A IRuntimeConfig object. + //! + //! \see IRuntimeConfig + //! + IRuntimeConfig* createRuntimeConfig() noexcept + { + return mImpl->createRuntimeConfig(); + } + + //! + //! \brief Return the maximum device memory required by the context over all profiles. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by getDeviceMemorySizeV2(). + //! + //! \see IExecutionContext::setDeviceMemory() + //! + TRT_DEPRECATED size_t getDeviceMemorySize() const noexcept + { + return mImpl->getDeviceMemorySize(); + } + + //! + //! \brief Return the maximum device memory required by the context for a profile. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by getDeviceMemorySizeForProfileV2(int32_t). + //! + //! \see IExecutionContext::setDeviceMemoryV2() + //! + TRT_DEPRECATED size_t getDeviceMemorySizeForProfile(int32_t profileIndex) const noexcept + { + return mImpl->getDeviceMemorySizeForProfile(profileIndex); + } + + //! + //! \brief Return the maximum device memory required by the context over all profiles. + //! + //! This API is stateful, so its call returns different values based on the following calls: + //! * setWeightStreamingBudget() + //! * setWeightStreamingBudgetV2() + //! + //! \see IExecutionContext::setDeviceMemoryV2() + //! \see setWeightStreamingBudget() + //! \see setWeightStreamingBudgetV2() + //! + int64_t getDeviceMemorySizeV2() const noexcept + { + return mImpl->getDeviceMemorySizeV2(); + } + + //! + //! \brief Return the maximum device memory required by the context for a profile. + //! + //! This API is stateful, so its call returns different values based on the following calls: + //! * setWeightStreamingBudget() + //! * setWeightStreamingBudgetV2() + //! + //! \see IExecutionContext::setDeviceMemoryV2() + //! \see setWeightStreamingBudget() + //! \see setWeightStreamingBudgetV2() + //! + int64_t getDeviceMemorySizeForProfileV2(int32_t profileIndex) const noexcept + { + return mImpl->getDeviceMemorySizeForProfileV2(profileIndex); + } + + //! + //! \brief Return true if an engine can be refit. + //! + //! \see nvinfer1::createInferRefitter() + //! + bool isRefittable() const noexcept + { + return mImpl->isRefittable(); + } + + //! + //! \brief Return the number of bytes per component of an element, or -1 if the + //! tensor is not vectorized or provided name does not map to an input or output tensor. + //! + //! The vector component size is returned if getTensorVectorizedDim(tensorName) != -1. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! \warning The function can only return the result of profile 0, and issues a warning message when there are + //! multiple profiles in the engine, use getTensorBytesPerComponent with profileIndex when there are multiple + //! profiles. + //! + //! \see getTensorVectorizedDim() + //! \see getTensorBytesPerComponent(tensorName, profileIndex) + //! + int32_t getTensorBytesPerComponent(char const* tensorName) const noexcept + { + return mImpl->getTensorBytesPerComponent(tensorName); + } + + //! + //! \brief Return the number of bytes per component of an element given of given profile, or -1 if the tensor is not + //! vectorized or provided name does not map to an input or output tensor. + //! + //! The vector component size is returned if getTensorVectorizedDim(tensorName, profileIndex) != -1. + //! + //! \param tensorName The name of an input or output tensor. + //! \param profileIndex The profile index to query + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getTensorVectorizedDim(tensorName, profileIndex) + //! + int32_t getTensorBytesPerComponent(char const* tensorName, int32_t profileIndex) const noexcept + { + return mImpl->getTensorBytesPerComponentV2(tensorName, profileIndex); + } + + //! + //! \brief Return the number of components included in one element, or -1 if tensor is + //! not vectorized or if the provided name does not map to an input or output tensor. + //! + //! The number of elements in the vectors is returned if getTensorVectorizedDim(tensorName) != -1. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! \warning The function can only return the result of profile 0, and issues a warning message when there + //! are multiple profiles in the engine, use getTensorComponentsPerElement with profileIndex when there are + //! multiple profiles. + //! + //! \see getTensorVectorizedDim() + //! \see getTensorComponentsPerElement(tensorName, profileIndex) + //! + int32_t getTensorComponentsPerElement(char const* tensorName) const noexcept + { + return mImpl->getTensorComponentsPerElement(tensorName); + } + + //! + //! \brief Return the number of components included in one element of given profile, or -1 if tensor is not + //! vectorized or the provided name does not map to an input or output tensor. + //! + //! The number of elements in the vectors is returned if getTensorVectorizedDim(tensorName, profileIndex) != -1. + //! + //! \param tensorName The name of an input or output tensor. + //! \param profileIndex The profile index to query + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getTensorVectorizedDim(tensorName, profileIndex) + //! + int32_t getTensorComponentsPerElement(char const* tensorName, int32_t profileIndex) const noexcept + { + return mImpl->getTensorComponentsPerElementV2(tensorName, profileIndex); + } + + //! + //! \brief Return the tensor format, or TensorFormat::kLINEAR if the provided name does not map to an input or + //! output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! \warning This API can only return the tensor format of profile 0, and issues a warning message when there are + //! multiple profiles in the engine, use getTensorFormat with profileIndex when there are multiple profiles. + //! + //! \see getTensorFormat(tensorName, profileIndex) + //! + TensorFormat getTensorFormat(char const* tensorName) const noexcept + { + return mImpl->getTensorFormat(tensorName); + } + + //! + //! \brief Return the tensor format of given profile, or TensorFormat::kLINEAR if the provided name does not map to + //! an input or output tensor. + //! + //! \param tensorName The name of an input or output tensor. + //! \param profileIndex The profile index to query the format for. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + TensorFormat getTensorFormat(char const* tensorName, int32_t profileIndex) const noexcept + { + return mImpl->getTensorFormatV2(tensorName, profileIndex); + } + + //! + //! \brief Return the human readable description of the tensor format, or empty string if the provided name does not + //! map to an input or output tensor. + //! + //! The description includes the order, vectorization, data type, and strides. + //! Examples are shown as follows: + //! Example 1: kCHW + FP32 + //! "Row-major linear FP32 format" + //! Example 2: kCHW2 + FP16 + //! "Two-wide channel vectorized row-major FP16 format" + //! Example 3: kHWC8 + FP16 + Line Stride = 32 + //! "Channel major FP16 format where C % 8 == 0 and H Stride % 32 == 0" + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! \warning The function can only return the result of profile 0, and issues a warning message when there are + //! multiple profiles in the engine, use getTensorFormatDesc with profileIndex when there are multiple profiles. + //! + char const* getTensorFormatDesc(char const* tensorName) const noexcept + { + return mImpl->getTensorFormatDesc(tensorName); + } + + //! + //! \brief Return the human readable description of the tensor format of given profile, or empty string if the + //! provided name does not map to an input or output tensor. + //! + //! The description includes the order, vectorization, data type, and strides. + //! Examples are shown as follows: + //! Example 1: kCHW + FP32 + //! "Row-major linear FP32 format" + //! Example 2: kCHW2 + FP16 + //! "Two-wide channel vectorized row-major FP16 format" + //! Example 3: kHWC8 + FP16 + Line Stride = 32 + //! "Channel major FP16 format where C % 8 == 0 and H Stride % 32 == 0" + //! + //! \param tensorName The name of an input or output tensor. + //! \param profileIndex The profile index to query the format for. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + char const* getTensorFormatDesc(char const* tensorName, int32_t profileIndex) const noexcept + { + return mImpl->getTensorFormatDescV2(tensorName, profileIndex); + } + + //! + //! \brief Return the dimension index that the buffer is vectorized, or -1 if the provided name does not + //! map to an input or output tensor. + //! + //! Specifically -1 is returned if scalars per vector is 1. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! \warning The function can only return the result of profile 0, and issues a warning message when there are + //! multiple profiles in the engine, use getTensorVectorizedDim with profileIndex when there are multiple profiles. + //! + int32_t getTensorVectorizedDim(char const* tensorName) const noexcept + { + return mImpl->getTensorVectorizedDim(tensorName); + } + + //! + //! \brief Return the dimension index that the buffer is vectorized of given profile, or -1 if the provided name + //! does not map to an input or output tensor. + //! + //! Specifically -1 is returned if scalars per vector is 1. + //! + //! \param tensorName The name of an input. + //! \param profileIndex The profile index to query the format for. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + int32_t getTensorVectorizedDim(char const* tensorName, int32_t profileIndex) const noexcept + { + return mImpl->getTensorVectorizedDimV2(tensorName, profileIndex); + } + + //! + //! \brief Returns the name of the network associated with the engine. + //! + //! The name is set during network creation and is retrieved after + //! building or deserialization. + //! + //! \see INetworkDefinition::setName(), INetworkDefinition::getName() + //! + //! \return A null-terminated C-style string representing the name of the network. + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + + //! + //! \brief Get the number of optimization profiles defined for this engine. + //! + //! \return Number of optimization profiles. It is always at least 1. + //! + //! \see IExecutionContext::setOptimizationProfileAsync() + int32_t getNbOptimizationProfiles() const noexcept + { + return mImpl->getNbOptimizationProfiles(); + } + + //! + //! \brief Get the minimum / optimum / maximum dimensions for an input tensor given its name under an optimization + //! profile. + //! + //! \param tensorName The name of an input tensor. + //! + //! \param profileIndex The profile index, which must be between 0 and getNbOptimizationProfiles()-1. + //! + //! \param select Whether to query the minimum, optimum, or maximum dimensions for this input tensor. + //! + //! \return The minimum / optimum / maximum dimensions for an input tensor in this profile. + //! If the profileIndex is invalid or provided name does not map to an input tensor, return Dims{-1, {}} + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Dims getProfileShape(char const* tensorName, int32_t profileIndex, OptProfileSelector select) const noexcept + { + return mImpl->getProfileShape(tensorName, profileIndex, select); + } + + //! + //! \brief Get the minimum / optimum / maximum values (not dimensions) for an input tensor given + //! its name under an optimization profile. These correspond to the values set using + //! IOptimizationProfile::setShapeValues when the engine was built. + //! + //! \param tensorName The name of an input tensor. + //! + //! \param profileIndex The profile index, which must be between 0 and getNbOptimizationProfiles()-1. + //! + //! \param select Whether to query the minimum, optimum, or maximum values for this input tensor. + //! + //! \return The minimum / optimum / maximum values for an input tensor in this profile. If the profileIndex is + //! invalid or the provided name does not map to an input tensor, or the tensor is not a shape binding, return + //! nullptr. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \deprecated Deprecated in TensorRT 10.11. Superseded by getProfileTensorValuesV2(). + //! \warning If input shapes are set with setShapeValuesV2, getProfileTensorValues will return nullptr + //! + TRT_DEPRECATED int32_t const* getProfileTensorValues( + char const* tensorName, int32_t profileIndex, OptProfileSelector select) const noexcept + { + return mImpl->getProfileTensorValues(tensorName, profileIndex, select); + } + + //! + //! \brief Determine what execution capability this engine has. + //! + //! If the engine has EngineCapability::kSTANDARD, then all engine functionality is valid. + //! If the engine has EngineCapability::kSAFETY, then only the functionality in safe engine is valid. + //! If the engine has EngineCapability::kDLA_STANDALONE, then only serialize, destroy, and const-accessor functions + //! are valid. + //! + //! \return The EngineCapability flag that the engine was built for. + //! + EngineCapability getEngineCapability() const noexcept + { + return mImpl->getEngineCapability(); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + //! + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + return mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief Get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. A nullptr will be returned if + //! an error handler has not been set. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + + //! + //! \brief Query whether the engine was built with an implicit batch dimension. + //! + //! \return Always false since TensorRT 10.0 does not support an implicit batch dimension. + //! + //! \see createNetworkV2 + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch is no supported since TensorRT 10.0. + //! + TRT_DEPRECATED bool hasImplicitBatchDimension() const noexcept + { + return mImpl->hasImplicitBatchDimension(); + } + + //! + //! \brief return the tactic sources required by this engine. + //! + //! The value returned is equal to zero or more tactics sources set + //! at build time via setTacticSources() in IBuilderConfig. Sources + //! set by the latter but not returned by \ref ICudaEngine::getTacticSources + //! do not reduce overall engine execution time, and can be removed from + //! future builds to reduce build time. + //! + //! \see IBuilderConfig::setTacticSources() + //! + TacticSources getTacticSources() const noexcept + { + return mImpl->getTacticSources(); + } + + //! + //! \brief Return the \ref ProfilingVerbosity the builder config was set to when the engine was built. + //! + //! \return the profiling verbosity the builder config was set to when the engine was built. + //! + //! \see IBuilderConfig::setProfilingVerbosity() + //! + ProfilingVerbosity getProfilingVerbosity() const noexcept + { + return mImpl->getProfilingVerbosity(); + } + + //! + //! \brief Create a new engine inspector which prints the layer information in an engine or an execution context. + //! + //! \see IEngineInspector. + //! + IEngineInspector* createEngineInspector() const noexcept + { + return mImpl->createEngineInspector(); + } + + //! + //! \brief Return number of IO tensors. + //! + //! It is the number of input and output tensors for the network from which the engine was built. + //! The names of the IO tensors can be discovered by calling getIOTensorName(i) for i in 0 to getNbIOTensors()-1. + //! + //! \see getIOTensorName() + //! + int32_t getNbIOTensors() const noexcept + { + return mImpl->getNbIOTensors(); + } + + //! + //! \brief Return name of an IO tensor. + //! + //! \param index value between 0 and getNbIOTensors()-1 + //! + //! \see getNbIOTensors() + //! + char const* getIOTensorName(int32_t index) const noexcept + { + return mImpl->getIOTensorName(index); + } + + //! + //! \brief Return the hardware compatibility level of this engine. + //! + //! \return hardwareCompatibilityLevel The level of hardware + //! compatibility. + //! + HardwareCompatibilityLevel getHardwareCompatibilityLevel() const noexcept + { + return mImpl->getHardwareCompatibilityLevel(); + } + + //! + //! \brief Return the number of auxiliary streams used by this engine. + //! + //! This number will be less than or equal to the maximum allowed number of auxiliary streams set by + //! IBuilderConfig::setMaxAuxStreams() API call when the engine was built. + //! + //! \return the number of auxiliary streams used by this engine. + //! + //! \see IBuilderConfig::setMaxAuxStreams(), IExecutionContext::setAuxStreams() + //! + int32_t getNbAuxStreams() const noexcept + { + return mImpl->getNbAuxStreams(); + } + + //! + //! \brief Create a serialization configuration object. + //! + //! \see ISerializationConfig + //! + ISerializationConfig* createSerializationConfig() noexcept + { + return mImpl->createSerializationConfig(); + } + + //! + //! \brief Serialize the network to a stream with the provided SerializationConfig. + //! + //! \return An IHostMemory object that contains the serialized engine. + //! + //! The network may be deserialized with IRuntime::deserializeCudaEngine(). + //! Serializing plan file with SerializationFlag::kEXCLUDE_WEIGHTS requires building the engine with kREFIT, + //! kREFIT_IDENTICAL or kREFIT_INDIVIDUAL. + //! + //! The only applicable scenario for SerializationFlag::kINCLUDE_REFIT is when serializing weight-stripping + //! engines without kEXCLUDE_WEIGHTS. By default, the resulting serialized engine is unrefittable. Setting + //! SerializationFlag::kINCLUDE_REFIT ensures that the serialized engine remains refittable. + //! + //! \see IRuntime::deserializeCudaEngine() + //! + IHostMemory* serializeWithConfig(ISerializationConfig& config) const noexcept + { + return mImpl->serializeWithConfig(config); + } + + //! + //! \brief Limit the maximum amount of GPU memory usable for network weights + //! in bytes. + //! + //! \param gpuMemoryBudget This parameter may take on 3 types of values: + //! -1: Allows TensorRT to choose the budget according to the streamable weights size. + //! Free CUDA memory will be queried at createExecutionContext() and accordingly: + //! * If streamable weights all fit: weight streaming is not required and disabled. + //! * Otherwise: Budget is set to getMinimumWeightStreamingBudget + //! 0: (default) Disables weight streaming. The execution may fail if the network is too large for GPU memory. + //! >0: The maximum bytes of GPU memory that weights can occupy. It must be bounded by + //! [getMinimumWeightStreamingBudget, free GPU memory)]. + //! + //! By setting a weight limit, users can expect a GPU memory usage reduction + //! of (total bytes for network weights) - gpuMemoryBudget bytes. Maximum memory savings occur + //! when gpuMemoryBudget is set to getMinimumWeightStreamingBudget(). Creating additional + //! IExecutionContexts will increase memory usage by O(getMinimumStreamingBudget()). + //! + //! Streaming larger amounts of memory will likely result in lower performance + //! except in some boundary cases where streaming weights allows the user to + //! run larger batch sizes. The higher throughput offsets the increased + //! latency in these cases. Tuning the value of the memory limit is + //! recommended for best performance. + //! + //! \warning GPU memory for the weights is allocated in this call and will be deallocated by enabling weight + //! streaming or destroying the ICudaEngine. + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \warning The weights streaming budget cannot be modified while there are active IExecutionContexts. + //! + //! \return true if the memory limit is valid and the call was successful, false otherwise. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by setWeightStreamingBudgetV2(). + //! + //! \see BuilderFlag::kWEIGHT_STREAMING + //! \see getWeightStreamingBudget() + //! \see getMinimumWeightStreamingBudget() + //! \see getStreamableWeightsSize() + //! + TRT_DEPRECATED bool setWeightStreamingBudget(int64_t gpuMemoryBudget) noexcept + { + return mImpl->setWeightStreamingBudget(gpuMemoryBudget); + } + + //! + //! \brief Returns the current weight streaming device memory budget in bytes. + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \returns The weight streaming budget in bytes. Please see setWeightStreamingBudget() for the possible + //! values. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by getWeightStreamingBudgetV2(). + //! + //! \see BuilderFlag::kWEIGHT_STREAMING, + //! \see setWeightStreamingBudget() + //! \see getMinimumWeightStreamingBudget() + //! \see getStreamableWeightsSize() + //! + TRT_DEPRECATED int64_t getWeightStreamingBudget() const noexcept + { + return mImpl->getWeightStreamingBudget(); + } + + //! + //! \brief The minimum number of bytes of GPU memory required by network + //! weights for successful weight streaming. + //! + //! This is a positive integer for engines with streamable weights because a + //! staging buffer on the GPU is required to temporarily hold the streamed + //! weights. The size of the staging buffer is determined by TensorRT and must + //! be at least as large as the size of the largest streamable weight in the + //! network. + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \returns The minimum number of bytes of GPU memory required for streaming. + //! + //! \deprecated Deprecated in TensorRT 10.1. The minimum budget is 0 in the V2 APIs. + //! + //! \see setWeightStreamingBudget() + //! + TRT_DEPRECATED int64_t getMinimumWeightStreamingBudget() const noexcept + { + return mImpl->getMinimumWeightStreamingBudget(); + } + + //! + //! \brief Get the total size in bytes of all streamable weights. + //! + //! The set of streamable weights is a subset of all network weights. The + //! total size may exceed free GPU memory. + //! + //! \returns The total size in bytes of all streamable weights. + //! Returns 0 if BuilderFlag::kWEIGHT_STREAMING is unset during engine building. + //! + //! \see setWeightStreamingBudget() + //! + int64_t getStreamableWeightsSize() const noexcept + { + return mImpl->getStreamableWeightsSize(); + } + + //! + //! \brief Limit the maximum amount of GPU memory usable for network weights in bytes. + //! + //! \param gpuMemoryBudget This parameter must be a non-negative value. + //! 0: Only small amounts of scratch memory will required to run the model. + //! >= getStreamableWeightsSize (default): Disables weight streaming. + //! The execution may fail if the network is too large for GPU memory. + //! + //! By setting a weight limit, users can expect a GPU memory usage reduction on the order + //! of (total bytes for network weights) - gpuMemoryBudget bytes. Maximum memory savings occur + //! when gpuMemoryBudget is set to 0. Each IExecutionContext will require getWeightStreamingScratchMemorySize() + //! bytes of additional device memory if the engine is streaming its weights (budget < getStreamableWeightsSize()). + //! + //! Streaming larger amounts of memory will likely result in lower performance + //! except in some boundary cases where streaming weights allows the user to + //! run larger batch sizes. The higher throughput offsets the increased + //! latency in these cases. Tuning the value of the memory limit is + //! recommended for best performance. + //! + //! \warning GPU memory for the weights is allocated in this call and will be deallocated by enabling weight + //! streaming or destroying the ICudaEngine. + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \warning The weights streaming budget cannot be modified while there are active IExecutionContexts. + //! + //! \warning Using the V2 weight streaming APIs with V1 APIs (setWeightStreamingBudget(), + //! getWeightStreamingBudget(), getWeightStreamingMinimumBudget()) leads to undefined behavior. + //! + //! \return true if the memory limit is valid and the call was successful, false otherwise. + //! + //! \see BuilderFlag::kWEIGHT_STREAMING + //! \see getWeightStreamingBudgetV2() + //! \see getWeightStreamingScratchMemorySize() + //! \see getWeightStreamingAutomaticBudget() + //! \see getStreamableWeightsSize() + //! + bool setWeightStreamingBudgetV2(int64_t gpuMemoryBudget) noexcept + { + return mImpl->setWeightStreamingBudgetV2(gpuMemoryBudget); + } + + //! + //! \brief Returns the current weight streaming device memory budget in bytes. + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \returns The weight streaming budget in bytes. Please see setWeightStreamingBudgetV2() for the possible + //! return values. Returns getStreamableWeightsSize() if weight streaming is disabled. + //! + //! \see BuilderFlag::kWEIGHT_STREAMING + //! \see setWeightStreamingBudget() + //! \see getMinimumWeightStreamingBudget() + //! \see getStreamableWeightsSize() + //! + int64_t getWeightStreamingBudgetV2() const noexcept + { + return mImpl->getWeightStreamingBudgetV2(); + } + + //! + //! \brief TensorRT automatically determines a device memory budget for the model to run. The budget is close to the + //! current free memory size, leaving some space for other memory needs in the user's application. If the budget + //! exceeds the size obtained from getStreamableWeightsSize(), it is capped to that size, effectively disabling + //! weight streaming. Since TensorRT lacks information about the user's allocations, the remaining memory size might + //! be larger than required, leading to wasted memory, or smaller than required, causing an out-of-memory error. For + //! optimal memory allocation, it is recommended to manually calculate and set the budget. + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \warning The return value may change between TensorRT minor versions. + //! + //! \warning Setting the returned budget with V1 APIs (setWeightStreamingBudget()) will lead to undefined behavior. + //! Please use V2 APIs. + //! + //! \returns The weight streaming budget in bytes. Please set with setWeightStreamingBudgetV2(). + //! + //! \see BuilderFlag::kWEIGHT_STREAMING + //! \see setWeightStreamingBudgetV2() + //! + int64_t getWeightStreamingAutomaticBudget() const noexcept + { + return mImpl->getWeightStreamingAutomaticBudget(); + } + + //! + //! \brief Returns the size of the scratch memory required by the current weight streaming budget. + //! + //! Weight streaming requires small amounts of scratch memory on the GPU to stage CPU weights right before + //! execution. This value is typically much smaller than the total streamable weights size. Each IExecutionContext + //! will then allocate this additional memory or the user can provide the additional memory through + //! getDeviceMemorySizeV2() and IExecutionContext::setDeviceMemoryV2(). + //! + //! The return value of this call depends on + //! 1. setWeightStreamingBudget() + //! 2. setWeightStreamingBudgetV2() + //! + //! \warning BuilderFlag::kWEIGHT_STREAMING must be set during engine building. + //! + //! \returns The weight streaming scratch memory in bytes. Returns 0 if weight streaming is disabled. + //! + //! \see BuilderFlag::kWEIGHT_STREAMING + //! \see setWeightStreamingBudgetV2() + //! \see getStreamableWeightsSize() + //! \see getDeviceMemorySizeV2() + //! \see getDeviceMemorySizeForProfileV2() + //! \see IExecutionContext::setDeviceMemoryV2() + //! + int64_t getWeightStreamingScratchMemorySize() const noexcept + { + return mImpl->getWeightStreamingScratchMemorySize(); + } + + //! + //! \brief Check if a tensor is marked as a debug tensor. + //! + //! Determine whether the given name corresponds to a debug tensor. + //! + //! \returns True if tensor is a debug tensor, false otherwise. + //! + //! \see INetworkDefinition::markDebug + //! + bool isDebugTensor(char const* name) const noexcept + { + return mImpl->isDebugTensor(name); + } + + //! + //! \brief Get the minimum / optimum / maximum values (not dimensions) for an input tensor given + //! its name under an optimization profile. These correspond to the values set using + //! IOptimizationProfile::setShapeValuesV2 when the engine was built. + //! + //! \param tensorName The name of an input tensor. + //! + //! \param profileIndex The profile index, which must be between 0 and getNbOptimizationProfiles()-1. + //! + //! \param select Whether to query the minimum, optimum, or maximum values for this input tensor. + //! + //! \return The minimum / optimum / maximum values for an input tensor in this profile. If the profileIndex is + //! invalid or the provided name does not map to an input tensor, or the tensor is not a shape binding, return + //! nullptr. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \warning If input shapes are set with setShapeValues, getProfileTensorValuesV2 will return nullptr + //! + int64_t const* getProfileTensorValuesV2( + char const* tensorName, int32_t profileIndex, OptProfileSelector select) const noexcept + { + return mImpl->getProfileTensorValuesV2(tensorName, profileIndex, select); + } + + //! + //! \brief Get engine statistics according to the given enum value. + //! + //! \param stat The kind of statistics to query. + //! + //! If stat is kTOTAL_WEIGHTS_SIZE, the return value is the total weights size in bytes in the engine. + //! If stat is kSTRIPPED_WEIGHTS_SIZE, the return value is the stripped weight size in bytes for engines + //! built with BuilderFlag::kSTRIP_PLAN. + //! + //! When the BuilderFlag::kWEIGHT_STREAMING flag is enabled, engine weights may not be fully copied to the device. + //! The reported total weight size reflects the sum of all weights utilized by the engine, + //! which does not necessarily correspond to the actual GPU memory allocated. + //! + //! \return The kind of statistics specified by EngineStat. + //! + //! \warning if kSTRIPPED_WEIGHTS_SIZE is passed to query a normal engine, this function will + //! return -1 to indicate invalid enum value. + //! + //! \see EngineStat + //! \see BuilderFlag::kWEIGHT_STREAMING + //! \see setWeightStreamingBudget() + //! \see getStreamableWeightsSize() + //! + int64_t getEngineStat(EngineStat stat) const noexcept + { + return mImpl->getEngineStat(stat); + } + +protected: + apiv::VCudaEngine* mImpl; +}; + +namespace v_1_0 +{ +class IOutputAllocator : public IVersionedInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return {"IOutputAllocator", 1, 0}; + } + + //! + //! \brief Return a pointer to memory for an output tensor, or nullptr if memory cannot be allocated. + //! If the requested memory size exceeds the currentMemory size, the currentMemory can be freed as well. + //! If currentMemory is known to be big enough, one option is to return currentMemory. + //! + //! \param tensorName name of the output tensor. + //! \param currentMemory points to the address set by IExecutionContext::setTensorAddress. + //! \param size number of bytes required. Always positive, even for an empty tensor. + //! \param alignment required alignment of the allocation. + //! + //! \return A pointer to memory to use for the output tensor or nullptr. + //! + //! + //! To preallocate memory and have the engine fail if the preallocation is not big enough, + //! use IExecutionContext::setTensorAddress to set a pointer to the preallocated memory, + //! and have reallocateOutput return nullptr if that memory is not big enough. + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by reallocateOutputAsync with cudaStream_t argument + //! + TRT_DEPRECATED virtual void* reallocateOutput( + char const* tensorName, void* currentMemory, uint64_t size, uint64_t alignment) noexcept + { + return nullptr; + } + + //! + //! \brief Return a pointer to memory for an output tensor, or nullptr if memory cannot be allocated. + //! If the requested memory size exceeds the currentMemory size, the currentMemory can be freed as well. + //! If currentMemory is known to be big enough, one option is to return currentMemory. + //! + //! \param tensorName name of the output tensor. + //! \param currentMemory points to the address set by IExecutionContext::setTensorAddress. + //! \param size number of bytes required. Always positive, even for an empty tensor. + //! \param alignment required alignment of the allocation. + //! \param stream The stream in which to execute the kernels. + //! + //! \return A pointer to memory to use for the output tensor or nullptr. + //! + //! To preallocate memory and have the engine fail if the preallocation is not big enough, + //! use IExecutionContext::setTensorAddress to set a pointer to the preallocated memory, + //! and have reallocateOutputAsync return nullptr if that memory is not big enough. + //! + //! The default definition exists for sake of backward compatibility with earlier versions of TensorRT. + //! Eventually this method will become a pure virtual method that requires an override, and method + //! reallocateOutput() will disappear. Code moving away from TensorRT 9.x should override method + //! reallocateOutputAsync() and NOT override method reallocateOutput(). + //! + virtual void* reallocateOutputAsync( + char const* tensorName, void* currentMemory, uint64_t size, uint64_t alignment, cudaStream_t /*stream*/) + { + return reallocateOutput(tensorName, currentMemory, size, alignment); + } + + //! + //! \brief Called by TensorRT when the shape of the output tensor is known. + //! + //! Called by TensorRT sometime between when it calls reallocateOutput and enqueueV3 returns. + //! + //! \param dims dimensions of the output + //! \param tensorName name of the tensor + //! + virtual void notifyShape(char const* tensorName, Dims const& dims) noexcept = 0; +}; +} // namespace v_1_0 + +//! +//! \class IOutputAllocator +//! +//! \brief Callback from ExecutionContext::enqueueV3() +//! +//! \see IExecutionContext::enqueueV3() +//! +using IOutputAllocator = v_1_0::IOutputAllocator; + +namespace v_1_0 +{ +class IDebugListener : public IVersionedInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return {"IDebugListener", 1, 0}; + } + + //! + //! \brief Callback function that is called when a debug tensorโ€™s value is updated and the debug state of the tensor + //! is set to true. Content in the given address is only guaranteed to be valid for the duration of the callback. + //! + //! \param location TensorLocation of the tensor. + //! \param addr pointer to buffer. + //! \param type data Type of the tensor. + //! \param shape shape of the tensor. + //! \param name name of the tensor. + //! \param stream CUDA stream object. + //! + //! \return True on success, false otherwise. + //! + virtual bool processDebugTensor(void const* addr, TensorLocation location, DataType type, Dims const& shape, + char const* name, cudaStream_t stream) + = 0; + + ~IDebugListener() override = default; +}; +} // namespace v_1_0 + +//! +//! \class IDebugListener +//! +//! \brief User-implemented callback for notification when value of a debug tensor is updated. +//! +using IDebugListener = v_1_0::IDebugListener; + +//! +//! \class IExecutionContext +//! +//! \brief Context for executing inference using an engine, with functionally unsafe features. +//! +//! Multiple execution contexts may exist for one ICudaEngine instance, allowing the same +//! engine to be used for the execution of multiple batches simultaneously. If the engine supports +//! dynamic shapes, each execution context in concurrent use must use a separate optimization profile. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +class IExecutionContext : public INoCopy +{ +public: + virtual ~IExecutionContext() noexcept = default; + + //! + //! \brief Set the debug sync flag. + //! + //! If this flag is set to true, the engine will log the successful execution for each kernel during executeV2(). It + //! has no effect when using enqueueV3(). + //! + //! \see getDebugSync() + //! + void setDebugSync(bool sync) noexcept + { + mImpl->setDebugSync(sync); + } + + //! + //! \brief Get the debug sync flag. + //! + //! \see setDebugSync() + //! + bool getDebugSync() const noexcept + { + return mImpl->getDebugSync(); + } + + //! + //! \brief Set the profiler. + //! + //! \see IProfiler getProfiler() + //! + void setProfiler(IProfiler* profiler) noexcept + { + mImpl->setProfiler(profiler); + } + + //! + //! \brief Get the profiler. + //! + //! \see IProfiler setProfiler() + //! + IProfiler* getProfiler() const noexcept + { + return mImpl->getProfiler(); + } + + //! + //! \brief Get the associated engine. + //! + //! \see ICudaEngine + //! + ICudaEngine const& getEngine() const noexcept + { + return mImpl->getEngine(); + } + + //! + //! \brief Set the name of the execution context. + //! + //! This method copies the name string. + //! + //! \warning The string name must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getName() + //! + void setName(char const* name) noexcept + { + mImpl->setName(name); + } + + //! + //! \brief Return the name of the execution context. + //! + //! \see setName() + //! + char const* getName() const noexcept + { + return mImpl->getName(); + } + + //! + //! \brief Set the device memory for use by this execution context. + //! + //! The memory must be aligned with CUDA memory alignment property (using cudaGetDeviceProperties()), and its size + //! must be large enough for performing inference with the given network inputs. getDeviceMemorySize() and + //! getDeviceMemorySizeForProfile() report upper bounds of the size. Setting memory to nullptr is acceptable if the + //! reported size is 0. If using enqueueV3() to run the network, the memory is in use from the invocation of + //! enqueueV3() until network execution is complete. If using executeV2(), it is in use until executeV2() returns. + //! Releasing or otherwise using the memory for other purposes, including using it in another execution context + //! running in parallel, during this time will result in undefined behavior. + //! + //! \deprecated Deprecated in TensorRT 10.1. Superseded by setDeviceMemoryV2(). + //! + //! \warning Weight streaming related scratch memory will be allocated by TensorRT if the memory is set by this API. + //! Please use setDeviceMemoryV2() instead. + //! + //! \see ICudaEngine::getDeviceMemorySize() + //! \see ICudaEngine::getDeviceMemorySizeForProfile() + //! \see ExecutionContextAllocationStrategy + //! \see ICudaEngine::createExecutionContext() + //! \see ICudaEngine::createExecutionContextWithoutDeviceMemory() + //! + void setDeviceMemory(void* memory) noexcept + { + mImpl->setDeviceMemory(memory); + } + + //! + //! \brief Set the device memory and its corresponding size for use by this execution context. + //! + //! The memory must be aligned with CUDA memory alignment property (using cudaGetDeviceProperties()), and its size + //! must be large enough for performing inference with the given network inputs. getDeviceMemorySize() and + //! getDeviceMemorySizeForProfile() report upper bounds of the size. Setting memory to nullptr is acceptable if the + //! reported size is 0. If using enqueueV3() to run the network, the memory is in use from the invocation of + //! enqueueV3() until network execution is complete. If using executeV2(), it is in use until executeV2() returns. + //! Releasing or otherwise using the memory for other purposes, including using it in another execution context + //! running in parallel, during this time will result in undefined behavior. + //! + //! \see ICudaEngine::getDeviceMemorySizeV2() + //! \see ICudaEngine::getDeviceMemorySizeForProfileV2() + //! \see ExecutionContextAllocationStrategy + //! \see ICudaEngine::createExecutionContext() + //! \see ICudaEngine::createExecutionContextWithoutDeviceMemory() + //! + void setDeviceMemoryV2(void* memory, int64_t size) noexcept + { + return mImpl->setDeviceMemoryV2(memory, size); + } + + //! + //! \brief Return the strides of the buffer for the given tensor name. + //! + //! The strides are in units of elements, not components or bytes. + //! For example, for TensorFormat::kHWC8, a stride of one spans 8 scalars. + //! + //! Note that strides can be different for different execution contexts + //! with dynamic shapes. + //! + //! If the provided name does not map to an input or output tensor, or there are dynamic dimensions that have not + //! been set yet, return Dims{-1, {}} + //! + //! \param tensorName The name of an input or output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Dims getTensorStrides(char const* tensorName) const noexcept + { + return mImpl->getTensorStrides(tensorName); + } + +public: + //! + //! \brief Get the index of the currently selected optimization profile. + //! + //! If the profile index has not been set yet (implicitly to 0 if no other execution context has been set to + //! profile 0, or explicitly for all subsequent contexts), an invalid value of -1 will be returned + //! and all calls to enqueueV3()/executeV2() will fail until a valid profile index has been set. + //! This behavior is deprecated in TensorRT 8.6, all profiles will default to optimization + //! profile 0 and -1 will no longer be returned. + //! + int32_t getOptimizationProfile() const noexcept + { + return mImpl->getOptimizationProfile(); + } + + //! + //! \brief Set shape of given input. + //! + //! \param tensorName The name of an input tensor. + //! \param dims The shape of an input tensor. + //! + //! \return True on success, false if the provided name does not map to an input tensor, or if some other error + //! occurred. + //! + //! Each dimension must agree with the network dimension unless the latter was -1. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + bool setInputShape(char const* tensorName, Dims const& dims) noexcept + { + return mImpl->setInputShape(tensorName, dims); + } + + //! + //! \brief Return the shape of the given input or output. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! Return Dims{-1, {}} if the provided name does not map to an input or output tensor. + //! Otherwise return the shape of the input or output tensor. + //! + //! A dimension in an input tensor will have a -1 wildcard value if all the following are true: + //! * setInputShape() has not yet been called for this tensor + //! * The dimension is a runtime dimension that is not implicitly constrained to be a single value. + //! + //! A dimension in an output tensor will have a -1 wildcard value if the dimension depends + //! on values of execution tensors OR if all the following are true: + //! * It is a runtime dimension. + //! * setInputShape() has NOT been called for some input tensor(s) with a runtime shape. + //! * setTensorAddress() has NOT been called for some input tensor(s) with isShapeInferenceIO() = true. + //! + //! An output tensor may also have -1 wildcard dimensions if its shape depends on values of tensors supplied to + //! enqueueV3(). + //! + //! If the request is for the shape of an output tensor with runtime dimensions, + //! all input tensors with isShapeInferenceIO() = true should have their value already set, + //! since these values might be needed to compute the output shape. + //! + //! Examples of an input dimension that is implicitly constrained to a single value: + //! * The optimization profile specifies equal min and max values. + //! * The dimension is named and only one value meets the optimization profile requirements + //! for dimensions with that name. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + Dims getTensorShape(char const* tensorName) const noexcept + { + return mImpl->getTensorShape(tensorName); + } + + //! + //! \brief Whether all dynamic dimensions of input tensors have been specified + //! + //! \return True if all dynamic dimensions of input tensors have been specified + //! by calling setInputShape(). + //! + //! Trivially true if network has no dynamically shaped input tensors. + //! + //! Does not work with name-base interfaces eg. IExecutionContext::setInputShape(). Use + //! IExecutionContext::inferShapes() instead. + //! + bool allInputDimensionsSpecified() const noexcept + { + return mImpl->allInputDimensionsSpecified(); + } + + //! + //! \brief Whether all input shape bindings have been specified + //! + //! \return True if all input shape bindings have been specified by setInputShapeBinding(). + //! + //! Trivially true if network has no input shape bindings. + //! + //! Does not work with name-base interfaces eg. IExecutionContext::setInputShape(). Use + //! IExecutionContext::inferShapes() instead. + //! + //! \deprecated Deprecated in TensorRT 10.0. setInputShapeBinding() is removed since TensorRT 10.0. + //! + TRT_DEPRECATED bool allInputShapesSpecified() const noexcept + { + return mImpl->allInputShapesSpecified(); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + //! + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief Get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. A nullptr will be returned if + //! an error handler has not been set. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + + //! + //! \brief Synchronously execute a network. + //! + //! This method requires an array of input and output buffers. The mapping + //! from indices to tensor names can be queried using ICudaEngine::getIOTensorName(). + //! + //! \param bindings An array of pointers to input and output buffers for the network. + //! + //! \return True if execution succeeded. + //! + //! \see ICudaEngine::getIOTensorName() + //! + bool executeV2(void* const* bindings) noexcept + { + return mImpl->executeV2(bindings); + } + + //! + //! \brief Select an optimization profile for the current context with async + //! semantics. + //! + //! \param profileIndex Index of the profile. The value must lie between 0 and + //! getEngine().getNbOptimizationProfiles() - 1 + //! + //! \param stream A CUDA stream on which the cudaMemcpyAsyncs may be + //! enqueued + //! + //! When an optimization profile is switched via this API, TensorRT may + //! require that data is copied via cudaMemcpyAsync. It is the + //! applicationโ€™s responsibility to guarantee that synchronization between + //! the profile sync stream and the enqueue stream occurs. + //! + //! The selected profile will be used in subsequent calls to executeV2()/enqueueV3(). + //! If the associated CUDA engine has inputs with dynamic shapes, the optimization profile must + //! be set with its corresponding profileIndex before calling execute or enqueue. The newly created execution + //! context will be assigned optimization profile 0. + //! + //! If the associated CUDA engine does not have inputs with dynamic shapes, + //! this method need not be called, in which case the default profile index + //! of 0 will be used. + //! + //! setOptimizationProfileAsync() must be called before calling + //! setInputShape() for all dynamic input + //! tensors or input shape tensors, which in turn must be called before + //! executeV2()/enqueueV3(). + //! + //! \warning This function will trigger layer resource updates on the next call of + //! executeV2()/enqueueV3(), possibly resulting in performance bottlenecks. + //! + //! \warning Not synchronizing the stream used at enqueue with the stream + //! used to set optimization profile asynchronously using this API will + //! result in undefined behavior. + //! + //! \return true if the call succeeded, else false (e.g. input out of range) + //! + //! \see ICudaEngine::getNbOptimizationProfiles() + bool setOptimizationProfileAsync(int32_t profileIndex, cudaStream_t stream) noexcept + { + return mImpl->setOptimizationProfileAsync(profileIndex, stream); + } + + //! + //! \brief Set whether enqueue emits layer timing to the profiler + //! + //! If set to true (default), enqueue is synchronous and does layer timing profiling implicitly if + //! there is a profiler attached. + //! If set to false, enqueue will be asynchronous if there is a profiler attached. An extra method + //! reportToProfiler() needs to be called to obtain the profiling data and report to the profiler attached. + //! + //! \see IExecutionContext::getEnqueueEmitsProfile() + //! \see IExecutionContext::reportToProfiler() + //! + void setEnqueueEmitsProfile(bool enqueueEmitsProfile) noexcept + { + mImpl->setEnqueueEmitsProfile(enqueueEmitsProfile); + } + + //! + //! \brief Get the enqueueEmitsProfile state. + //! + //! \return The enqueueEmitsProfile state. + //! + //! \see IExecutionContext::setEnqueueEmitsProfile() + //! + bool getEnqueueEmitsProfile() const noexcept + { + return mImpl->getEnqueueEmitsProfile(); + } + + //! + //! \brief Calculate layer timing info for the current optimization profile in IExecutionContext + //! and update the profiler after one iteration of inference launch. + //! + //! If IExecutionContext::getEnqueueEmitsProfile() returns true, the enqueue function will calculate layer timing + //! implicitly if a profiler is provided. This function returns true and does nothing. + //! + //! If IExecutionContext::getEnqueueEmitsProfile() returns false, the enqueue function will record the CUDA event + //! timers if a profiler is provided. But it will not perform the layer timing calculation. + //! IExecutionContext::reportToProfiler() needs to be called explicitly to calculate layer timing for the previous + //! inference launch. + //! + //! In the CUDA graph launch scenario, it will record the same set of CUDA events + //! as in regular enqueue functions if the graph is captured from an IExecutionContext with profiler enabled. + //! This function needs to be called after graph launch to report the layer timing info to the profiler. + //! + //! \warning profiling CUDA graphs is only available from CUDA 11.1 onwards. + //! \warning reportToProfiler uses the stream of the previous enqueue call, so the stream must be live otherwise + //! behavior is undefined. + //! + //! \return true if the call succeeded, else false (e.g. profiler not provided, in CUDA graph capture mode, etc.) + //! + //! \see IExecutionContext::setEnqueueEmitsProfile() + //! \see IExecutionContext::getEnqueueEmitsProfile() + //! + bool reportToProfiler() const noexcept + { + return mImpl->reportToProfiler(); + } + + //! + //! \brief Set memory address for given input or output tensor. + //! + //! \param tensorName The name of an input or output tensor. + //! \param data The pointer (void*) to the data owned by the user. + //! + //! \return True on success, false if error occurred. + //! + //! An address defaults to nullptr. + //! Pass data=nullptr to reset to the default state. + //! + //! Return false if the provided name does not map to an input or output tensor. + //! + //! If an input pointer has type (void const*), use setInputTensorAddress() instead. + //! + //! Before calling enqueueV3(), each input must have a non-null address and + //! each output must have a non-null address or an IOutputAllocator to set it later. + //! + //! If the TensorLocation of the tensor is kHOST: + //! - The pointer must point to a host buffer of sufficient size. + //! - Data representing shape values is not copied until enqueueV3 is invoked. + //! + //! If the TensorLocation of the tensor is kDEVICE: + //! - The pointer must point to a device buffer of sufficient size and alignment, or + //! - Be nullptr if the tensor is an output tensor that will be allocated by IOutputAllocator. + //! + //! If getTensorShape(name) reports a -1 for any dimension of an output after all + //! input shapes have been set, use setOutputAllocator() to associate an IOutputAllocator + //! to which the dimensions will be reported when known. + //! + //! Calling both setTensorAddress and setOutputAllocator() for the same output is allowed, + //! and can be useful for preallocating memory, and then reallocating if it's not big enough. + //! + //! The pointer must have at least 256-byte alignment. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see setInputTensorAddress() setOutputTensorAddress() getTensorShape() setOutputAllocator() IOutputAllocator + //! + bool setTensorAddress(char const* tensorName, void* data) noexcept + { + return mImpl->setTensorAddress(tensorName, data); + } + + //! + //! \brief Get memory address bound to given input or output tensor, or nullptr if the provided name does not map to + //! an input or output tensor. + //! + //! \param tensorName The name of an input or output tensor. + //! + //! Use method getOutputTensorAddress() if a non-const pointer for an output tensor is required. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getOutputTensorAddress() + //! + void const* getTensorAddress(char const* tensorName) const noexcept + { + return mImpl->getTensorAddress(tensorName); + } + + //! + //! \brief Set the memory address for a given output tensor. + //! + //! \param tensorName The name of an output tensor. + //! \param data The pointer to the buffer to which to write the output. + //! + //! \return True on success, false if the provided name does not map to an output tensor, does not meet alignment + //! requirements, or some other error occurred. + //! + //! Output addresses can also be set using method setTensorAddress. This method is provided for applications which + //! prefer to use different methods for setting input and output tensors. + //! + //! See setTensorAddress() for alignment and data type constraints. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see setTensorAddress() + //! + bool setOutputTensorAddress(char const* tensorName, void* data) noexcept + { + return mImpl->setOutputTensorAddress(tensorName, data); + } + + //! + //! \brief Set memory address for given input. + //! + //! \param tensorName The name of an input tensor. + //! \param data The pointer (void const*) to the const data owned by the user. + //! + //! \return True on success, false if the provided name does not map to an input tensor, does not meet alignment + //! requirements, or some other error occurred. + //! + //! Input addresses can also be set using method setTensorAddress, which requires a (void*). + //! + //! See description of method setTensorAddress() for alignment and data type constraints. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see setTensorAddress() + //! + bool setInputTensorAddress(char const* tensorName, void const* data) noexcept + { + return mImpl->setInputTensorAddress(tensorName, data); + } + + //! + //! \brief Get memory address for given output. + //! + //! \param tensorName The name of an output tensor. + //! + //! \return Raw output data pointer (void*) for given output tensor, or nullptr if the provided name does not map to + //! an output tensor. + //! + //! If only a (void const*) pointer is needed, an alternative is to call method getTensorAddress(). + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see getTensorAddress() + //! + void* getOutputTensorAddress(char const* tensorName) const noexcept + { + return mImpl->getOutputTensorAddress(tensorName); + } + + //! + //! \brief Run shape calculations. + //! + //! \param nbMaxNames Maximum number of names to write to tensorNames. + //! When the return value is a positive value n and tensorNames != nullptr, + //! the names of min(n,nbMaxNames) insufficiently specified input tensors are + //! written to tensorNames. + //! + //! \param tensorNames Buffer in which to place names of insufficiently specified input tensors. + //! + //! \return 0 on success. + //! Positive value n if n input tensors were not sufficiently specified. + //! -1 for other errors. + //! + //! An input tensor is insufficiently specified if either of the following is true: + //! + //! * It has dynamic dimensions and its runtime dimensions have not yet + //! been specified via IExecutionContext::setInputShape. + //! + //! * isShapeInferenceIO(t)=true and the tensor's address has not yet been set. + //! + //! If an output tensor has isShapeInferenceIO(t)=true and its address has been specified, + //! then its value is written. + //! + //! Returns -1 if tensorNames == nullptr and nbMaxNames != 0. + //! Returns -1 if nbMaxNames < 0. + //! Returns -1 if a tensor's dimensions are invalid, e.g. a tensor ends up with a negative dimension. + //! + int32_t inferShapes(int32_t nbMaxNames, char const** tensorNames) noexcept + { + return mImpl->inferShapes(nbMaxNames, tensorNames); + } + + //! + //! \brief Recompute the internal activation buffer sizes based on the current input shapes, and return the total + //! amount of memory required. + //! + //! Users can allocate the device memory based on the size returned and provided the memory to TRT with + //! IExecutionContext::setDeviceMemory(). Must specify all input shapes and the optimization profile to use before + //! calling this function, otherwise the partition will be invalidated. + //! + //! \return Total amount of memory required on success, 0 if error occurred. + //! + //! \see IExecutionContext::setDeviceMemory() + //! + size_t updateDeviceMemorySizeForShapes() noexcept + { + return mImpl->updateDeviceMemorySizeForShapes(); + } + + //! + //! \brief Mark input as consumed. + //! + //! \param event The CUDA event that is triggered after all input tensors have been consumed. + //! + //! \warning The set event must be valid during the inference. + //! + //! \return True on success, false if error occurred. + //! + //! Passing event==nullptr removes whatever event was set, if any. + //! + bool setInputConsumedEvent(cudaEvent_t event) noexcept + { + return mImpl->setInputConsumedEvent(event); + } + + //! + //! \brief The event associated with consuming the input. + //! + //! \return The CUDA event. Nullptr will be returned if the event is not set yet. + //! + cudaEvent_t getInputConsumedEvent() const noexcept + { + return mImpl->getInputConsumedEvent(); + } + + //! + //! \brief Set output allocator to use for output tensor of given name. + //! Pass nullptr to outputAllocator to unset. + //! The allocator is called by enqueueV3(). + //! + //! \param tensorName The name of an output tensor. + //! \param outputAllocator IOutputAllocator for the tensors. + //! + //! \return True if success, false if the provided name does not map to an output or, if some other error occurred. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see enqueueV3() IOutputAllocator + //! + bool setOutputAllocator(char const* tensorName, IOutputAllocator* outputAllocator) noexcept + { + return mImpl->setOutputAllocator(tensorName, outputAllocator); + } + + //! + //! \brief Get output allocator associated with output tensor of given name, or nullptr if the provided name does + //! not map to an output tensor. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + //! \see IOutputAllocator + //! + IOutputAllocator* getOutputAllocator(char const* tensorName) const noexcept + { + return mImpl->getOutputAllocator(tensorName); + } + + //! + //! \brief Get upper bound on an output tensor's size, in bytes, based on + //! the current optimization profile and input dimensions. + //! + //! If the profile or input dimensions are not yet set, or the provided name + //! does not map to an output, returns -1. + //! + //! \param tensorName The name of an output tensor. + //! + //! \return Upper bound in bytes. + //! + //! \warning The string tensorName must be null-terminated, and be at most 4096 bytes including the terminator. + //! + int64_t getMaxOutputSize(char const* tensorName) const noexcept + { + return mImpl->getMaxOutputSize(tensorName); + } + + //! + //! \brief Specify allocator to use for internal temporary storage. + //! + //! This allocator is used only by enqueueV3() for temporary storage whose size cannot be + //! predicted ahead of enqueueV3(). It is not used for output tensors, because memory + //! allocation for those is allocated by the allocator set by setOutputAllocator(). + //! All memory allocated is freed by the time enqueueV3() returns. + //! + //! \param allocator pointer to allocator to use. Pass nullptr to revert to using TensorRT's + //! default allocator. + //! + //! \return True on success, false if error occurred. + //! + //! \see enqueueV3() setOutputAllocator() + //! + bool setTemporaryStorageAllocator(IGpuAllocator* allocator) noexcept + { + return mImpl->setTemporaryStorageAllocator(allocator); + } + + //! + //! \brief Get allocator set by setTemporaryStorageAllocator. + //! + //! Returns a nullptr if a nullptr was passed with setTemporaryStorageAllocator(). + //! + IGpuAllocator* getTemporaryStorageAllocator() const noexcept + { + return mImpl->getTemporaryStorageAllocator(); + } + + //! + //! \brief Enqueue inference on a stream. + //! + //! \param stream A CUDA stream on which the inference kernels will be enqueued. + //! + //! \return True if the kernels were enqueued successfully, false otherwise. + //! + //! Modifying or releasing memory that has been registered for the tensors before stream + //! synchronization or the event passed to setInputConsumedEvent has been being triggered results in undefined + //! behavior. + //! Input tensor can be released after the setInputConsumedEvent whereas output tensors require stream + //! synchronization. + //! + //! \warning Using default stream may lead to performance issues due to additional cudaDeviceSynchronize() calls by + //! TensorRT to ensure correct synchronizations. Please use non-default stream instead. + //! + //! \warning If the Engine is streaming weights, enqueueV3 will become synchronous, and + //! the graph will not be capturable. + //! + bool enqueueV3(cudaStream_t stream) noexcept + { + return mImpl->enqueueV3(stream); + } + + //! + //! \brief Set the maximum size for persistent cache usage. + //! + //! This function sets the maximum persistent L2 cache that this execution context may use for activation caching. + //! Activation caching is not supported on all architectures - see "How TensorRT uses Memory" in the developer guide + //! for details + //! + //! \param size the size of persistent cache limitation in bytes. + //! The default is 0 Bytes. + //! + //! \see getPersistentCacheLimit + void setPersistentCacheLimit(size_t size) noexcept + { + mImpl->setPersistentCacheLimit(size); + } + + //! + //! \brief Get the maximum size for persistent cache usage. + //! + //! \returns The size of the persistent cache limit + //! + //! \see setPersistentCacheLimit + size_t getPersistentCacheLimit() const noexcept + { + return mImpl->getPersistentCacheLimit(); + } + + //! + //! \brief Set the verbosity of the NVTX markers in the execution context. + //! + //! Building with kDETAILED verbosity will generally increase latency in enqueueV3(). Call this method + //! to select NVTX verbosity in this execution context at runtime. + //! + //! The default is the verbosity with which the engine was built, and the verbosity may not be raised above that + //! level. + //! + //! This function does not affect how IEngineInspector interacts with the engine. + //! + //! \param verbosity The verbosity of the NVTX markers. + //! + //! \return True if the NVTX verbosity is set successfully. False if the provided verbosity level is higher than the + //! profiling verbosity of the corresponding engine. + //! + //! \see getNvtxVerbosity() + //! \see ICudaEngine::getProfilingVerbosity() + //! + bool setNvtxVerbosity(ProfilingVerbosity verbosity) noexcept + { + return mImpl->setNvtxVerbosity(verbosity); + } + + //! + //! \brief Get the NVTX verbosity of the execution context. + //! + //! \return The current NVTX verbosity of the execution context. + //! + //! \see setNvtxVerbosity() + //! + ProfilingVerbosity getNvtxVerbosity() const noexcept + { + return mImpl->getNvtxVerbosity(); + } + + //! + //! \brief Set the auxiliary streams that TensorRT should launch kernels on in the next enqueueV3() call. + //! + //! If set, TensorRT will launch the kernels that are supposed to run on the auxiliary streams using the streams + //! provided by the user with this API. If this API is not called before the enqueueV3() call, then TensorRT will + //! use the auxiliary streams created by TensorRT internally. + //! + //! TensorRT will always insert event synchronizations between the main stream provided via enqueueV3() call and the + //! auxiliary streams: + //! - At the beginning of the enqueueV3() call, TensorRT will make sure that all the auxiliary streams wait on + //! the activities on the main stream. + //! - At the end of the enqueueV3() call, TensorRT will make sure that the main stream wait on the activities on + //! all the auxiliary streams. + //! + //! \param auxStreams The pointer to an array of cudaStream_t with the array length equal to nbStreams. + //! \param nbStreams The number of auxiliary streams provided. If nbStreams is greater than + //! `engine->getNbAuxStreams()`, then only the first `engine->getNbAuxStreams()` streams will be used. If + //! `nbStreams` is less than `engine->getNbAuxStreams()`, such as setting `nbStreams` to 0, then TensorRT + //! will use the provided streams for the first `nbStreams` auxiliary streams, and will create additional + //! streams internally for the rest of the auxiliary streams. + //! + //! \note The provided auxiliary streams must not be the default stream and must all be different to avoid + //! deadlocks. + //! + //! \see enqueueV3(), IBuilderConfig::setMaxAuxStreams(), ICudaEngine::getNbAuxStreams() + //! + void setAuxStreams(cudaStream_t* auxStreams, int32_t nbStreams) noexcept + { + mImpl->setAuxStreams(auxStreams, nbStreams); + } + + //! + //! \brief Set DebugListener for this execution context. + //! + //! \param listener DebugListener for this execution context. + //! + //! \return true if succeed, false if failure. + //! + bool setDebugListener(IDebugListener* listener) noexcept + { + return mImpl->setDebugListener(listener); + } + + //! + //! \brief Get the DebugListener of this execution context. + //! + //! \return DebugListener of this execution context. + //! + IDebugListener* getDebugListener() noexcept + { + return mImpl->getDebugListener(); + } + + //! + //! \brief Set debug state of tensor given the tensor name. + //! + //! Turn the debug state of a tensor on or off. + //! A tensor with the parameter tensor name must exist in the network, and the tensor must have + //! been marked as a debug tensor during build time. Otherwise, an error is thrown. + //! + //! \param name Name of target tensor. + //! + //! \param flag True if turning on debug state, false if turning off debug state of tensor + //! The default is off. + //! + //! \return True if successful, false otherwise. + //! + bool setTensorDebugState(char const* name, bool flag) noexcept + { + return mImpl->setTensorDebugState(name, flag); + } + + //! + //! \brief Get the debug state. + //! + //! \param name Name of target tensor. + //! + //! \return true if there is a debug tensor with the given name and it has debug state turned on. + //! + bool getDebugState(char const* name) const noexcept + { + return mImpl->getDebugState(name); + } + + //! + //! \brief Get the runtime config object used during execution context creation. + //! + //! \return The runtime config object. + //! + IRuntimeConfig* getRuntimeConfig() const noexcept + { + return mImpl->getRuntimeConfig(); + } + + //! \brief Turn the debug state of all debug tensors on or off. + //! + //! \param flag true if turning on debug state, false if turning off debug state. + //! + //! \return true if successful, false otherwise. + //! + //! The default is off. + //! + bool setAllTensorsDebugState(bool flag) noexcept + { + return mImpl->setAllTensorsDebugState(flag); + } + + //! + //! \brief Turn the debug state of unfused tensors on or off. + //! + //! The default is off. + //! + //! \param flag true if turning on debug state, false if turning off debug state. + //! + //! \return true if successful, false otherwise. + //! + //! \see INetworkDefinition::markUnfusedTensorsAsDebugTensors() + //! + bool setUnfusedTensorsDebugState(bool flag) noexcept + { + return mImpl->setUnfusedTensorsDebugState(flag); + } + + //! + //! \brief Get the debug state of unfused tensors. + //! + //! \return true if unfused tensors debug state is on. False if unfused tensors debug state is off. + //! + bool getUnfusedTensorsDebugState() const noexcept + { + return mImpl->getUnfusedTensorsDebugState(); + } +#if ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + //! + //! \brief Check if a subsequent call to enqueueV3 is graph-capturable on the provided stream. + //! + //! \param stream The stream to check. + //! + //! \return true if a subsequent call to enqueueV3 is graph-capturable on the provided stream. + //! Reasons why graph capture may fail include: + //! - blocking runtime allocation due to large dynamically sized tensors that cannot be + //! statically allocated, + //! - dynamically shaped tensors whose size contains on the tensor contents, like the output + //! of an INonZeroLayer, + //! - conditional control flow depending on the contents of on-device tensors, like an + //! ITripLimitLayer whose input tensor resides on the device, + //! - engines that have been built for weight streaming. + //! + //! \note If this API returns false, enqueueV3 may not be called on a capturable stream + //! (i.e. users may not call cudaStreamBeingCapture before starting inference). Otherwise, + //! inference will fail with an error message. + bool isStreamCapturable(cudaStream_t stream) const noexcept { + return mImpl->isStreamCapturable(stream); + } +#endif // ENABLE_FEATURE_DISABLE_RUNTIME_ALLOCATION + + //! + //! \brief Set the NCCL communicator for the execution context. + //! + //! \param communicator A pointer to the communicator that is used by the execution context. The communicator is + //! expected to be already initialized with `ncclCommInitRank` and castable to `ncclComm_t`. + //! + //! The communicator must be uniform across all multi-device instances or undefined + //! behavior occurs. + //! + //! \warning The lifetime of the communicator must be longer than the execution contexts it is attached to. + //! + //! \return True if the communicator was set successfully, false otherwise. + //! + bool setCommunicator(void* communicator) noexcept + { + return mImpl->setCommunicator(communicator); + } + +protected: + apiv::VExecutionContext* mImpl; +}; // class IExecutionContext + +//! +//! \enum LayerInformationFormat +//! +//! \brief The format in which the IEngineInspector prints the layer information. +//! +//! \see IEngineInspector::getLayerInformation(), IEngineInspector::getEngineInformation() +//! +enum class LayerInformationFormat : int32_t +{ + kONELINE = 0, //!< Print layer information in one line per layer. + kJSON = 1, //!< Print layer information in JSON format. +}; + +//! Maximum number of layer information formats in LayerInformationFormat enum. +//! \see LayerInformationFormat +template <> +constexpr inline int32_t EnumMax() noexcept +{ + return 2; +} + +//! +//! \class IEngineInspector +//! +//! \brief An engine inspector which prints out the layer information of an engine or an execution context. +//! +//! The amount of printed information depends on the profiling verbosity setting of the builder config when the engine +//! is built: +//! - ProfilingVerbosity::kLAYER_NAMES_ONLY: only layer names will be printed. +//! - ProfilingVerbosity::kNONE: no layer information will be printed. +//! - ProfilingVerbosity::kDETAILED: layer names and layer parameters will be printed. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \see ProfilingVerbosity, IEngineInspector +//! +class IEngineInspector : public INoCopy +{ +public: + virtual ~IEngineInspector() noexcept = default; + + //! + //! \brief Set an execution context as the inspection source. + //! + //! Setting the execution context and specifying all the input shapes allows the inspector + //! to calculate concrete dimensions for any dynamic shapes and display their format information. + //! Otherwise, values dependent on input shapes will be displayed as -1 and format information + //! will not be shown. + //! + //! Passing nullptr will remove any association with an execution context. + //! + //! \return Whether the action succeeds. + //! + bool setExecutionContext(IExecutionContext const* context) noexcept + { + return mImpl->setExecutionContext(context); + } + + //! + //! \brief Get the context currently being inspected. + //! + //! \return The pointer to the context currently being inspected. + //! + //! \see setExecutionContext() + //! + IExecutionContext const* getExecutionContext() const noexcept + { + return mImpl->getExecutionContext(); + } + + //! + //! \brief Get a string describing the information about a specific layer in the current engine or the execution + //! context. + //! + //! \param layerIndex the index of the layer. It must lie in range [0, engine.getNbLayers()). + //! + //! \param format the format the layer information should be printed in. + //! + //! \return A null-terminated C-style string describing the information about a specific layer in the current + //! engine or the execution context. + //! + //! \warning The content of the returned string may change when another execution context has + //! been set, or when another getLayerInformation() or getEngineInformation() has been called. + //! + //! \warning In a multi-threaded environment, this function must be protected from other threads changing the + //! inspection source. If the inspection source changes, the data that is being pointed to can change. + //! Copy the string to another buffer before releasing the lock in order to guarantee consistency. + //! + //! \see LayerInformationFormat + //! + char const* getLayerInformation(int32_t layerIndex, LayerInformationFormat format) const noexcept + { + return mImpl->getLayerInformation(layerIndex, format); + } + + //! + //! \brief Get a string describing the information about all the layers in the current engine or the execution + //! context. + //! + //! \param format the format the layer information should be printed in. + //! + //! \return A null-terminated C-style string describing the information about all the layers in the current + //! engine or the execution context. + //! + //! \warning The content of the returned string may change when another execution context has + //! been set, or when another getLayerInformation() or getEngineInformation() has been called. + //! + //! \warning In a multi-threaded environment, this function must be protected from other threads changing the + //! inspection source. If the inspection source changes, the data that is being pointed to can change. + //! Copy the string to another buffer before releasing the lock in order to guarantee consistency. + //! + //! \see LayerInformationFormat + //! + char const* getEngineInformation(LayerInformationFormat format) const noexcept + { + return mImpl->getEngineInformation(format); + } + + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! If an error recorder is not set, messages will be sent to the global log stream. + //! + //! \param recorder The error recorder to register with this interface. + //! + //! \see getErrorRecorder() + //! + void setErrorRecorder(IErrorRecorder* recorder) noexcept + { + mImpl->setErrorRecorder(recorder); + } + + //! + //! \brief Get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. A nullptr will be returned if + //! an error handler has not been set. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + IErrorRecorder* getErrorRecorder() const noexcept + { + return mImpl->getErrorRecorder(); + } + +protected: + apiv::VEngineInspector* mImpl; +}; // class IEngineInspector + +} // namespace nvinfer1 + +//! +//! Internal C entry point for creating IRuntime. +//! @private +//! +extern "C" TENSORRTAPI void* createInferRuntime_INTERNAL(void* logger, int32_t version) noexcept; + +//! +//! Internal C entry point for creating IRefitter. +//! @private +//! +extern "C" TENSORRTAPI void* createInferRefitter_INTERNAL(void* engine, void* logger, int32_t version) noexcept; + +//! +//! \brief Return the plugin registry +//! +extern "C" TENSORRTAPI nvinfer1::IPluginRegistry* getPluginRegistry() noexcept; + +//! +//! \brief Return the logger object. +//! \note the global logger is used only by standalone functions which have no associated builder, runtime +//! or refitter. +//! +extern "C" TENSORRTAPI nvinfer1::ILogger* getLogger() noexcept; + +namespace nvinfer1 +{ +namespace // unnamed namespace avoids linkage surprises when linking objects built with different versions of this + // header. +{ +//! +//! \brief Create an instance of an IRuntime class. +//! +//! \param logger The logging class for the runtime. +//! +inline IRuntime* createInferRuntime(ILogger& logger) noexcept +{ + return static_cast(createInferRuntime_INTERNAL(&logger, NV_TENSORRT_VERSION)); +} + +//! +//! \brief Create an instance of an IRefitter class. +//! +//! \param engine The engine class for the refitter. +//! \param logger The logging class for the refitter. +//! +inline IRefitter* createInferRefitter(ICudaEngine& engine, ILogger& logger) noexcept +{ + return static_cast(createInferRefitter_INTERNAL(&engine, &logger, NV_TENSORRT_VERSION)); +} + +} // namespace + +//! +//! \brief Register the plugin creator to the registry +//! The static registry object will be instantiated when the plugin library is +//! loaded. This static object will register all creators available in the +//! library to the registry. +//! +//! \warning Statically registering plugins should be avoided in the automotive +//! safety context as the application developer should first register an error recorder +//! with the plugin registry via IPluginRegistry::setErrorRecorder() before using +//! IPluginRegistry::registerCreator() or other methods. +//! +template +class PluginRegistrar +{ +public: + PluginRegistrar() + { + getPluginRegistry()->registerCreator(instance, ""); + } + +private: + //! Plugin instance. + T instance{}; +}; + +} // namespace nvinfer1 + +#define REGISTER_TENSORRT_PLUGIN(name) \ + static nvinfer1::PluginRegistrar pluginRegistrar##name {} + +namespace nvinfer1 +{ +//! +//! \class ILoggerFinder +//! +//! \brief A virtual base class to find a logger. +//! Allows a plugin to find an instance of a logger if it needs to emit a log message. +//! A pointer to an instance of this class is passed to a plugin shared library on initialization when that plugin +//! is serialized as part of a version-compatible plan. See the plugin chapter in the developer guide for details. +//! +class ILoggerFinder +{ +public: + //! + //! \brief Get the logger used by the engine or execution context which called the plugin method. + //! + //! \warning Must be called from the thread in which the plugin method was called. + //! + //! \return A pointer to the logger. + //! + virtual ILogger* findLogger() = 0; + +protected: + virtual ~ILoggerFinder() = default; +}; + +//! DO NOT REFER TO namespace v_1_0 IN CODE. ALWAYS USE nvinfer1 INSTEAD. +//! The name v_1_0 may change in future versions of TensorRT. +namespace v_1_0 +{ + +class IGpuAsyncAllocator : public IGpuAllocator +{ +public: + IGpuAsyncAllocator() = default; + ~IGpuAsyncAllocator() override = default; + + //! + //! \brief A thread-safe callback implemented by the application to handle stream-ordered asynchronous + //! acquisition of GPU memory. + //! + //! \param size The size of the memory block required (in bytes). + //! \param alignment The required alignment of memory. Alignment will be zero + //! or a power of 2 not exceeding the alignment guaranteed by cudaMalloc. + //! Thus this allocator can be safely implemented with cudaMalloc/cudaFree. + //! An alignment value of zero indicates any alignment is acceptable. + //! \param flags Reserved for future use. In the current release, 0 will be passed. + //! + //! \param stream Specifies the cudastream for the asynchronous allocation. If nullptr or 0 is + //! passed, the default stream will be used. + //! + //! \return If the allocation was successful, the start address of a device memory block of the requested size. + //! If an allocation request of size 0 is made, nullptr must be returned. + //! If an allocation request cannot be satisfied, nullptr must be returned. + //! If a non-null address is returned, it is guaranteed to have the specified alignment. + //! + //! \note The implementation must guarantee thread safety for concurrent allocateAsync/deallocateAsync + //! requests. + //! + //! \note The implementation is not required to be asynchronous. It is permitted to synchronize, + //! albeit doing so will lose the performance advantage of asynchronous allocation. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! + void* allocateAsync(uint64_t const size, uint64_t const alignment, AllocatorFlags const flags, + cudaStream_t /*stream*/) noexcept override = 0; + + //! + //! \brief A thread-safe callback implemented by the application to handle stream-ordered asynchronous + //! release of GPU memory. + //! + //! TensorRT may pass a nullptr to this function if it was previously returned by allocate(). + //! + //! \param memory A memory address that was previously returned by an allocate() or reallocate() call of the same + //! allocator object. + //! + //! \param stream Specifies the cudastream for the asynchronous deallocation. If nullptr or 0 is + //! passed, the default stream will be used. + //! + //! \return True if the acquired memory is released successfully. + //! + //! \note The implementation must guarantee thread safety for concurrent allocateAsync/deallocateAsync + //! requests. + //! + //! \note The implementation is not required to be asynchronous. It is permitted to synchronize, + //! albeit doing so will lose the performance advantage of asynchronous deallocation. + //! Either way, it is critical that it not actually free the memory until the current + //! stream position is reached. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + bool deallocateAsync(void* const memory, cudaStream_t /*stream*/) noexcept override = 0; + + //! + //! \brief A thread-safe callback implemented by the application to handle acquisition of GPU memory. + //! + //! \param size The size of the memory block required (in bytes). + //! \param alignment The required alignment of memory. Alignment will be zero + //! or a power of 2 not exceeding the alignment guaranteed by cudaMalloc. + //! Thus this allocator can be safely implemented with cudaMalloc/cudaFree. + //! An alignment value of zero indicates any alignment is acceptable. + //! \param flags Reserved for future use. In the current release, 0 will be passed. + //! + //! \return If the allocation was successful, the start address of a device memory block of the requested size. + //! If an allocation request of size 0 is made, nullptr must be returned. + //! If an allocation request cannot be satisfied, nullptr must be returned. + //! If a non-null address is returned, it is guaranteed to have the specified alignment. + //! + //! \note The implementation must guarantee thread safety for concurrent allocateAsync/deallocateAsync/reallocate + //! requests. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! \deprecated Deprecated in TensorRT 10.0. Superseded by allocateAsync + //! + TRT_DEPRECATED void* allocate( + uint64_t const size, uint64_t const alignment, AllocatorFlags const flags) noexcept override + { + return allocateAsync(size, alignment, flags, nullptr); + } + + //! + //! \brief A thread-safe callback implemented by the application to handle release of GPU memory. + //! + //! TensorRT may pass a nullptr to this function if it was previously returned by allocate(). + //! + //! \param memory A memory address that was previously returned by an allocate() or reallocate() call of the same + //! allocator object. + //! + //! \return True if the acquired memory is released successfully. + //! + //! \note The implementation must guarantee thread safety for concurrent allocate/reallocate/deallocate + //! requests. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads. + //! \deprecated Deprecated in TensorRT 10.0. Superseded by deallocateAsync + //! + TRT_DEPRECATED bool deallocate(void* const memory) noexcept override + { + return deallocateAsync(memory, nullptr); + } + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return {"IGpuAllocator", 1, 0}; + } +}; + +class IPluginCreatorV3One : public IPluginCreatorInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN CREATOR_V3ONE", 1, 0}; + } + + //! + //! \brief Return a plugin object. Return nullptr in case of error. + //! + //! \param name A NULL-terminated name string of length 1024 or less, including the NULL terminator. + //! \param fc A pointer to a collection of fields needed for constructing the plugin. + //! \param phase The TensorRT phase in which the plugin is being created + //! + //! When the phase is TensorRTPhase::kRUNTIME, the PluginFieldCollection provided for serialization by the plugin's + //! runtime interface will be passed as fc. + //! + //! \note The returned plugin object must be in an initialized state + //! + //! \note If invoked by the user (e.g. with TensorRTPhase::kBUILD, to add to the network defintion with + //! addPluginV3()), it is the user's responsibility to delete the plugin object. If invoked by TensorRT (e.g. during + //! engine deserialization), TensorRT will delete any objects it creates. + //! + virtual IPluginV3* createPlugin( + AsciiChar const* name, PluginFieldCollection const* fc, TensorRTPhase phase) noexcept = 0; + + //! + //! \brief Return a list of fields that need to be passed to createPlugin() when creating a plugin for use in the + //! TensorRT build phase. + //! + //! \see PluginFieldCollection + //! + virtual PluginFieldCollection const* getFieldNames() noexcept = 0; + + //! + //! \brief Return the plugin name. + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including + //! the NULL terminator. + //! + virtual AsciiChar const* getPluginName() const noexcept = 0; + + //! + //! \brief Return the plugin version. + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including + //! the NULL terminator. + //! + virtual AsciiChar const* getPluginVersion() const noexcept = 0; + + //! + //! \brief Return the plugin namespace. + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including + //! the NULL terminator. + //! + virtual AsciiChar const* getPluginNamespace() const noexcept = 0; + + IPluginCreatorV3One() = default; + virtual ~IPluginCreatorV3One() = default; + +protected: + IPluginCreatorV3One(IPluginCreatorV3One const&) = default; + IPluginCreatorV3One(IPluginCreatorV3One&&) = default; + IPluginCreatorV3One& operator=(IPluginCreatorV3One const&) & = default; + IPluginCreatorV3One& operator=(IPluginCreatorV3One&&) & = default; +}; + +} // namespace v_1_0 + +//! +//! \class IGpuAsyncAllocator +//! +//! \brief Application-implemented class for controlling asynchronous (stream ordered) memory allocation on the GPU. +//! +//! \warning The lifetime of an IGpuAsyncAllocator object must exceed that of all objects that use it. +//! +//! The advantage of deriving from IGpuAsyncAllocator instead of IGpuAllocator is that you only have +//! to override two methods: allocateAsync() and deallocateAsync() to implement an allocator with +//! asynchronous capability, whereas deriving from IGpuAllocator requires overriding four methods, +//! including two deprecated methods. +//! +//! \see IGpuAllocator +using IGpuAsyncAllocator = v_1_0::IGpuAsyncAllocator; + +//! +//! \class IPluginCreatorV3One +//! +//! \brief A plugin creator class capable of producing IPluginV3 objects +//! +//! \see IPluginV3 +//! \see IPluginRegistry +//! +using IPluginCreatorV3One = v_1_0::IPluginCreatorV3One; + +} // namespace nvinfer1 + +//! +//! \brief Return the library major version number. +//! +extern "C" TENSORRTAPI int32_t getInferLibMajorVersion() noexcept; +//! +//! \brief Return the library minor version number. +//! +extern "C" TENSORRTAPI int32_t getInferLibMinorVersion() noexcept; +//! +//! \brief Return the library patch version number. +//! +extern "C" TENSORRTAPI int32_t getInferLibPatchVersion() noexcept; +//! +//! \brief Return the library build version number. +//! +extern "C" TENSORRTAPI int32_t getInferLibBuildVersion() noexcept; + +#endif // NV_INFER_RUNTIME_H diff --git a/tensorrt/include/NvInferRuntimeBase.h b/tensorrt/include/NvInferRuntimeBase.h new file mode 100644 index 0000000000000000000000000000000000000000..8c72e4a0d969d09b0dac74a9be5ddcf8778d452b --- /dev/null +++ b/tensorrt/include/NvInferRuntimeBase.h @@ -0,0 +1,689 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_RUNTIME_BASE_H +#define NV_INFER_RUNTIME_BASE_H + +#include "NvInferVersion.h" +#include +#include +#include + +// Items that are marked as deprecated will be removed in a future release. +#if __cplusplus >= 201402L +#define TRT_DEPRECATED [[deprecated]] +#define TRT_DEPRECATED_BECAUSE(REASON) [[deprecated(REASON)]] +#define TRT_DEPRECATED_ENUM TRT_DEPRECATED +#ifdef _MSC_VER +#define TRT_DEPRECATED_API __declspec(dllexport) +#else +#define TRT_DEPRECATED_API [[deprecated]] __attribute__((visibility("default"))) +#endif +#else +#ifdef _MSC_VER +#define TRT_DEPRECATED +#define TRT_DEPRECATED_ENUM +#define TRT_DEPRECATED_API __declspec(dllexport) +#else +#define TRT_DEPRECATED __attribute__((deprecated)) +#define TRT_DEPRECATED_ENUM +#define TRT_DEPRECATED_API __attribute__((deprecated, visibility("default"))) +#endif +#define TRT_DEPRECATED_BECAUSE(REASON) TRT_DEPRECATED +#endif + +//! A stand-in for `[[nodiscard]]` and `[[nodiscard(REASON)]]` that works with older compilers. +#if __cplusplus >= 201907L +#define TRT_NODISCARD [[nodiscard]] +#define TRT_NODISCARD_BECAUSE(REASON) [[nodiscard(REASON)]] +#elif __cplusplus >= 201603L +#define TRT_NODISCARD [[nodiscard]] +#define TRT_NODISCARD_BECAUSE(REASON) [[nodiscard]] +#else +#define TRT_NODISCARD +#define TRT_NODISCARD_BECAUSE(REASON) +#endif + +// Defines which symbols are exported. +#ifdef TENSORRT_BUILD_LIB +#ifdef _MSC_VER +//On Windows, exports are controlled by .def files; not by dllexport. +#define TENSORRTAPI +#else +#define TENSORRTAPI __attribute__((visibility("default"))) +#endif +#else +#define TENSORRTAPI +#endif +#define TRTNOEXCEPT +//! +//! \file NvInferRuntimeBase.h +//! +//! This file contains common definitions, data structures and interfaces shared between the standard and safe runtime. +//! +//! \warning Do not directly include this file. Instead include one of: +//! * NvInferRuntime.h (for the standard runtime) +//! * NvInferPluginUtils.h (for plugin utilities) +//! +#if !defined(NV_INFER_INTERNAL_INCLUDE) +static_assert(false, "Do not directly include this file. Include NvInferRuntime.h or NvInferPluginUtils.h"); +#endif + +//! Forward declare some CUDA types to avoid an include dependency. + +extern "C" +{ + //! Forward declaration of cublasContext to use in other interfaces. + struct cublasContext; + //! Forward declaration of cudnnContext to use in other interfaces. + struct cudnnContext; +} + +//! Construct a single integer denoting TensorRT version. +//! Usable in preprocessor expressions. +#define NV_TENSORRT_VERSION_INT(major, minor, patch) ((major) *10000L + (minor) *100L + (patch) *1L) + +//! TensorRT version as a single integer. +//! Usable in preprocessor expressions. +#define NV_TENSORRT_VERSION NV_TENSORRT_VERSION_INT(NV_TENSORRT_MAJOR, NV_TENSORRT_MINOR, NV_TENSORRT_PATCH) + +//! +//! \namespace nvinfer1 +//! +//! \brief The TensorRT API version 1 namespace. +//! +namespace nvinfer1 +{ +//! char_t is the type used by TensorRT to represent all valid characters. +using char_t = char; + +//! AsciiChar is the type used by TensorRT to represent valid ASCII characters. +//! This type is widely used in automotive safety context. +using AsciiChar = char_t; + +//! Forward declare IErrorRecorder for use in other interfaces. +namespace v_1_0 +{ +class IErrorRecorder; +} // namespace v_1_0 +using IErrorRecorder = v_1_0::IErrorRecorder; + +namespace impl +{ +//! Declaration of EnumMaxImpl struct to store maximum number of elements in an enumeration type. +template +struct EnumMaxImpl; +} // namespace impl + +//! Maximum number of elements in an enumeration type. +template +constexpr int32_t EnumMax() noexcept +{ + return impl::EnumMaxImpl::kVALUE; +} + +//! +//! \enum DataType +//! \brief The type of weights and tensors. +//! The datatypes other than kBOOL, kINT32, and kINT64 are "activation datatypes," +//! as they often represent values corresponding to inference results. +//! +enum class DataType : int32_t +{ + //! 32-bit floating point format. + kFLOAT = 0, + + //! IEEE 16-bit floating-point format -- has a 5 bit exponent and 11 bit significand. + kHALF = 1, + + //! Signed 8-bit integer representing a quantized floating-point value. + kINT8 = 2, + + //! Signed 32-bit integer format. + kINT32 = 3, + + //! 8-bit boolean. 0 = false, 1 = true, other values undefined. + kBOOL = 4, + + //! Unsigned 8-bit integer format. + //! Cannot be used to represent quantized floating-point values. + //! Use the IdentityLayer to convert kUINT8 network-level inputs to {kFLOAT, kHALF} prior + //! to use with other TensorRT layers, or to convert intermediate output + //! before kUINT8 network-level outputs from {kFLOAT, kHALF} to kUINT8. + //! kUINT8 conversions are only supported for {kFLOAT, kHALF}. + //! kUINT8 to {kFLOAT, kHALF} conversion will convert the integer values + //! to equivalent floating point values. + //! {kFLOAT, kHALF} to kUINT8 conversion will convert the floating point values + //! to integer values by truncating towards zero. This conversion has undefined behavior for + //! floating point values outside the range [0.0F, 256.0F) after truncation. + //! kUINT8 conversions are not supported for {kINT8, kINT32, kBOOL}. + kUINT8 = 5, + + //! Signed 8-bit floating point with + //! 1 sign bit, 4 exponent bits, 3 mantissa bits, and exponent-bias 7. + kFP8 = 6, + + //! Brain float -- has an 8 bit exponent and 8 bit significand. + kBF16 = 7, + + //! Signed 64-bit integer type. + kINT64 = 8, + + //! Signed 4-bit integer type. + kINT4 = 9, + + //! 4-bit floating point type + //! 1 bit sign, 2 bit exponent, 1 bit mantissa + kFP4 = 10, + + //! Unsigned representation of exponent-only 8-bit floating point type for quantization scales + kE8M0 = 11, +}; + +namespace impl +{ +//! Maximum number of elements in DataType enum. \see DataType +template <> +struct EnumMaxImpl +{ + //! Declaration of kVALUE that represents the maximum number of elements in the DataType enum. + static constexpr int32_t kVALUE = 12; +}; +} // namespace impl + +//! +//! \class Dims +//! \brief Structure to define the dimensions of a tensor. +//! +//! TensorRT can also return an "invalid dims" structure. This structure is +//! represented by nbDims == -1 and d[i] == 0 for all i. +//! +//! TensorRT can also return an "unknown rank" dims structure. This structure is +//! represented by nbDims == -1 and d[i] == -1 for all i. +//! +class Dims64 +{ +public: + //! The maximum rank (number of dimensions) supported for a tensor. + static constexpr int32_t MAX_DIMS{8}; + + //! The rank (number of dimensions). + int32_t nbDims; + + //! The extent of each dimension. + int64_t d[MAX_DIMS]; +}; + +//! +//! Alias for Dims64. +//! +using Dims = Dims64; + +using InterfaceKind = char const*; + +//! +//! \class InterfaceInfo +//! +//! \brief Version information associated with a TRT interface +//! +class InterfaceInfo +{ +public: + InterfaceKind kind; + int32_t major; + int32_t minor; +}; + +//! +//! \enum APILanguage +//! +//! \brief Programming language used in the implementation of a TRT interface +//! +enum class APILanguage : int32_t +{ + kCPP = 0, + kPYTHON = 1 +}; + +namespace impl +{ +//! Maximum number of elements in APILanguage enum. \see APILanguage +template <> +struct EnumMaxImpl +{ + //! Declaration of kVALUE that represents the maximum number of elements in the APILanguage enum. + static constexpr int32_t kVALUE = 2; +}; +} // namespace impl + +//! +//! \class IVersionedInterface +//! +//! \brief An Interface class for version control. +//! +class IVersionedInterface +{ +public: + //! + //! \brief The language used to build the implementation of this Interface. + //! + //! Applications must not override this method. + //! + virtual APILanguage getAPILanguage() const noexcept + { + return APILanguage::kCPP; + } + + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + virtual InterfaceInfo getInterfaceInfo() const noexcept = 0; + + virtual ~IVersionedInterface() noexcept = default; + +protected: + IVersionedInterface() = default; + IVersionedInterface(IVersionedInterface const&) = default; + IVersionedInterface(IVersionedInterface&&) = default; + IVersionedInterface& operator=(IVersionedInterface const&) & = default; + IVersionedInterface& operator=(IVersionedInterface&&) & = default; +}; + +//! +//! \enum ErrorCode +//! +//! \brief Error codes that can be returned by TensorRT during execution. +//! +enum class ErrorCode : int32_t +{ + //! + //! Execution completed successfully. + //! + kSUCCESS = 0, + + //! + //! An error that does not fall into any other category. This error is included for forward compatibility. + //! + kUNSPECIFIED_ERROR = 1, + + //! + //! A non-recoverable TensorRT error occurred. TensorRT is in an invalid internal state when this error is + //! emitted and any further calls to TensorRT will result in undefined behavior. + //! + kINTERNAL_ERROR = 2, + + //! + //! An argument passed to the function is invalid in isolation. + //! This is a violation of the API contract. + //! + kINVALID_ARGUMENT = 3, + + //! + //! An error occurred when comparing the state of an argument relative to other arguments. For example, the + //! dimensions for concat differ between two tensors outside of the channel dimension. This error is triggered + //! when an argument is correct in isolation, but not relative to other arguments. This is to help to distinguish + //! from the simple errors from the more complex errors. + //! This is a violation of the API contract. + //! + kINVALID_CONFIG = 4, + + //! + //! An error occurred when performing an allocation of memory on the host or the device. + //! A memory allocation error is normally fatal, but in the case where the application provided its own memory + //! allocation routine, it is possible to increase the pool of available memory and resume execution. + //! + kFAILED_ALLOCATION = 5, + + //! + //! One, or more, of the components that TensorRT relies on did not initialize correctly. + //! This is a system setup issue. + //! + kFAILED_INITIALIZATION = 6, + + //! + //! An error occurred during execution that caused TensorRT to end prematurely, either an asynchronous error, + //! user cancellation, or other execution errors reported by CUDA/DLA. In a dynamic system, the + //! data can be thrown away and the next frame can be processed or execution can be retried. + //! This is either an execution error or a memory error. + //! + kFAILED_EXECUTION = 7, + + //! + //! An error occurred during execution that caused the data to become corrupted, but execution finished. Examples + //! of this error are NaN squashing or integer overflow. In a dynamic system, the data can be thrown away and the + //! next frame can be processed or execution can be retried. + //! This is either a data corruption error, an input error, or a range error. + //! This is not used in safety but may be used in standard. + //! + kFAILED_COMPUTATION = 8, + + //! + //! TensorRT was put into a bad state by incorrect sequence of function calls. An example of an invalid state is + //! specifying a layer to be DLA only without GPU fallback, and that layer is not supported by DLA. This can occur + //! in situations where a service is optimistically executing networks for multiple different configurations + //! without checking proper error configurations, and instead throwing away bad configurations caught by TensorRT. + //! This is a violation of the API contract, but can be recoverable. + //! + //! Example of a recovery: + //! GPU fallback is disabled and conv layer with large filter(63x63) is specified to run on DLA. This will fail due + //! to DLA not supporting the large kernel size. This can be recovered by either turning on GPU fallback + //! or setting the layer to run on the GPU. + //! + kINVALID_STATE = 9, + + //! + //! An error occurred due to the network not being supported on the device due to constraints of the hardware or + //! system. An example is running an unsafe layer in a safety certified context, or a resource requirement for the + //! current network is greater than the capabilities of the target device. The network is otherwise correct, but + //! the network and hardware combination is problematic. This can be recoverable. + //! Examples: + //! * Scratch space requests larger than available device memory and can be recovered by increasing allowed + //! workspace size. + //! * Tensor size exceeds the maximum element count and can be recovered by reducing the maximum batch size. + //! + kUNSUPPORTED_STATE = 10, + +}; + +namespace impl +{ +//! Maximum number of elements in ErrorCode enum. \see ErrorCode +template <> +struct EnumMaxImpl +{ + //! Declaration of kVALUE + static constexpr int32_t kVALUE = 11; +}; +} // namespace impl + +namespace v_1_0 +{ +class IErrorRecorder : public IVersionedInterface +{ +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"IErrorRecorder", 1, 0}; + } + + //! + //! \brief A typedef of a C-style string for reporting error descriptions. + //! + using ErrorDesc = char const*; + + //! + //! \brief The length limit for an error description in bytes, excluding the '\0' string terminator. + //! Only applicable to safe runtime. + //! General error recorder implementation can use any size appropriate for the use case. + //! + static constexpr size_t kMAX_DESC_LENGTH{127U}; + + //! + //! \brief A typedef of a 32-bit integer for reference counting. + //! + using RefCount = int32_t; + + IErrorRecorder() = default; + ~IErrorRecorder() noexcept override = default; + + // Public API used to retrieve information from the error recorder. + + //! + //! \brief Return the number of errors + //! + //! Determines the number of errors that occurred between the current point in execution + //! and the last time that the clear() was executed. Due to the possibility of asynchronous + //! errors occurring, a TensorRT API can return correct results, but still register errors + //! with the Error Recorder. The value of getNbErrors() must increment by 1 after each reportError() + //! call until clear() is called, or the maximum number of errors that can be stored is exceeded. + //! + //! \return Returns the number of errors detected, or 0 if there are no errors. + //! If the upper bound of errors that can be stored is exceeded, the upper bound value must + //! be returned. + //! + //! For example, if the error recorder can store up to 16 error descriptions but reportError() has + //! been called 20 times, getNbErrors() must return 16. + //! + //! \see clear(), hasOverflowed() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual int32_t getNbErrors() const noexcept = 0; + + //! + //! \brief Returns the ErrorCode enumeration. + //! + //! \param errorIdx A 32-bit integer that indexes into the error array. + //! + //! The errorIdx specifies what error code from 0 to getNbErrors()-1 that the application + //! wants to analyze and return the error code enum. + //! + //! \return Returns the enum corresponding to errorIdx if errorIdx is in range (between 0 and getNbErrors()-1). + //! ErrorCode::kUNSPECIFIED_ERROR must be returned if errorIdx is not in range. + //! + //! \see getErrorDesc(), ErrorCode + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual ErrorCode getErrorCode(int32_t errorIdx) const noexcept = 0; + + //! + //! \brief Returns a null-terminated C-style string description of the error. + //! + //! \param errorIdx A 32-bit integer that indexes into the error array. + //! + //! For the error specified by the idx value, return the string description of the error. The + //! error string is a null-terminated C-style string. In the safety context there is a + //! constant length requirement to remove any dynamic memory allocations and the error message + //! will be truncated if it exceeds kMAX_DESC_LENGTH bytes. + //! The format of the string is " - ". + //! + //! \return Returns a string representation of the error along with a description of the error if errorIdx is in + //! range (between 0 and getNbErrors()-1). An empty string will be returned if errorIdx is not in range. + //! + //! \see getErrorCode() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual ErrorDesc getErrorDesc(int32_t errorIdx) const noexcept = 0; + + //! + //! \brief Determine if the error stack has overflowed. + //! + //! In the case when the number of errors is large, this function is used to query if one or more + //! errors have been dropped due to lack of storage capacity. This is especially important in the + //! automotive safety case where the internal error handling mechanisms cannot allocate memory. + //! + //! \return true if errors have been dropped due to overflowing the error stack. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual bool hasOverflowed() const noexcept = 0; + + //! + //! \brief Clear the error stack on the error recorder. + //! + //! Removes all the tracked errors by the error recorder. The implementation must guarantee that after + //! this function is called, and as long as no error occurs, the next call to getNbErrors will return + //! zero and hasOverflowed will return false. + //! + //! \see getNbErrors(), hasOverflowed() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual void clear() noexcept = 0; + + // API used by TensorRT to report Error information to the application. + + //! + //! \brief Report an error to the error recorder with the corresponding enum and description. + //! + //! \param val The error code enum that is being reported. + //! \param desc The string description of the error, which will be a NULL-terminated string. + //! For safety use cases its length is limited to kMAX_DESC_LENGTH bytes + //! (excluding the NULL terminator) and descriptions that exceed this limit will be silently truncated. + //! + //! Report an error to the user that has a given value and human readable description. The function returns false + //! if processing can continue, which implies that the reported error is not fatal. This does not guarantee that + //! processing continues, but provides a hint to TensorRT. + //! The desc C-string data is only valid during the call to reportError and may be immediately deallocated by the + //! caller when reportError returns. The implementation must not store the desc pointer in the ErrorRecorder object + //! or otherwise access the data from desc after reportError returns. + //! + //! \return True if the error is determined to be fatal and processing of the current function must end. + //! + //! \warning If the error recorder's maximum number of storable errors is exceeded, the error description will be + //! silently dropped and the value returned by getNbErrors() will not be incremented. However, the return + //! value will still signal whether the error must be considered fatal. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual bool reportError(ErrorCode val, ErrorDesc desc) noexcept = 0; + + //! + //! \brief Increments the refcount for the current ErrorRecorder. + //! + //! Increments the reference count for the object by one and returns the current value. This reference count allows + //! the application to know that an object inside of TensorRT has taken a reference to the ErrorRecorder. TensorRT + //! guarantees that every call to IErrorRecorder::incRefCount() will be paired with a call to + //! IErrorRecorder::decRefCount() when the reference is released. It is undefined behavior to destruct the + //! ErrorRecorder when incRefCount() has been called without a corresponding decRefCount(). + //! + //! \return The reference counted value after the increment completes. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual RefCount incRefCount() noexcept = 0; + + //! + //! \brief Decrements the refcount for the current ErrorRecorder. + //! + //! Decrements the reference count for the object by one and returns the current value. This reference count allows + //! the application to know that an object inside of TensorRT has taken a reference to the ErrorRecorder. TensorRT + //! guarantees that every call to IErrorRecorder::decRefCount() will be preceded by a call to + //! IErrorRecorder::incRefCount(). It is undefined behavior to destruct the ErrorRecorder when incRefCount() has been + //! called without a corresponding decRefCount(). + //! + //! \return The reference counted value after the decrement completes. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual RefCount decRefCount() noexcept = 0; + +protected: + // @cond SuppressDoxyWarnings + IErrorRecorder(IErrorRecorder const&) = default; + IErrorRecorder(IErrorRecorder&&) = default; + IErrorRecorder& operator=(IErrorRecorder const&) & = default; + IErrorRecorder& operator=(IErrorRecorder&&) & = default; + // @endcond +}; // class IErrorRecorder +} // namespace v_1_0 + +//! +//! \class IErrorRecorder +//! +//! \brief Reference counted application-implemented error reporting interface for TensorRT objects. +//! +//! The error reporting mechanism is a user-defined object that interacts with the internal state of the object +//! that it is assigned to in order to determine information about abnormalities in execution. The error recorder +//! gets both an error enum that is more descriptive than pass/fail and also a string description that gives more +//! detail on the exact failure modes. In the safety context, the error strings are all limited to 128 bytes +//! or less in length, including the NULL terminator. +//! +//! The ErrorRecorder gets passed along to any class that is created from another class that has an ErrorRecorder +//! assigned to it. For example, assigning an ErrorRecorder to an IBuilder allows all INetwork's, ILayer's, and +//! ITensor's to use the same error recorder. For functions that have their own ErrorRecorder accessor functions. +//! This allows registering a different error recorder or de-registering of the error recorder for that specific +//! object. +//! +//! ErrorRecorder objects that are used in the safety runtime must define an implementation-dependent upper limit +//! of errors whose information can be stored, and drop errors above this upper limit. The limit must fit in int32_t. +//! The IErrorRecorder::hasOverflowed() method is used to signal that one or more errors have been dropped. +//! +//! The ErrorRecorder object implementation must be thread safe. All locking and synchronization is pushed to the +//! interface implementation and TensorRT does not hold any synchronization primitives when calling the interface +//! functions. +//! +//! The lifetime of the ErrorRecorder object must exceed the lifetime of all TensorRT objects that use it. +//! +using IErrorRecorder = v_1_0::IErrorRecorder; + +//! +//! \enum TensorIOMode +//! +//! \brief Definition of tensor IO Mode. +//! +enum class TensorIOMode : int32_t +{ + //! Tensor is not an input or output. + kNONE = 0, + + //! Tensor is input to the engine. + kINPUT = 1, + + //! Tensor is output by the engine. + kOUTPUT = 2 +}; + +namespace impl +{ +//! Maximum number of elements in TensorIOMode enum. \see TensorIOMode +template <> +struct EnumMaxImpl +{ + // Declaration of kVALUE that represents maximum number of elements in TensorIOMode enum + static constexpr int32_t kVALUE = 3; +}; +} // namespace impl +} // namespace nvinfer1 + +//! +//! \brief Return the library version number. +//! +//! The format is as for TENSORRT_VERSION: (MAJOR * 100 + MINOR) * 100 + PATCH +//! +extern "C" TENSORRTAPI int32_t getInferLibVersion() noexcept; + +#endif // NV_INFER_RUNTIME_BASE_H diff --git a/tensorrt/include/NvInferRuntimeCommon.h b/tensorrt/include/NvInferRuntimeCommon.h new file mode 100644 index 0000000000000000000000000000000000000000..756db0d69a73aafa60c073179e4f1abdc23257f6 --- /dev/null +++ b/tensorrt/include/NvInferRuntimeCommon.h @@ -0,0 +1,322 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_RUNTIME_COMMON_H +#define NV_INFER_RUNTIME_COMMON_H + +//! +//! \file NvInferRuntimeCommon.h +//! +//! This file provides the nvinfer1::IPluginRegistry interface, which will be moved to the NvInferRuntime.h header +//! in a future release. +//! +//! \warning This file will be removed in a future release. +//! +//! \warning Do not directly include this file. Instead include NvInferRuntime.h +//! +#define NV_INFER_INTERNAL_INCLUDE 1 +#include "NvInferPluginBase.h" +#undef NV_INFER_INTERNAL_INCLUDE +#include "NvInferRuntimePlugin.h" + +namespace nvinfer1 +{ +//! +//! \class IPluginRegistry +//! +//! \brief Single registration point for all plugins in an application. It is +//! used to find plugin implementations during engine deserialization. +//! Internally, the plugin registry is considered to be a singleton so all +//! plugins in an application are part of the same global registry. +//! Note that the plugin registry is only supported for plugins of type +//! IPluginV2 and should also have a corresponding IPluginCreator implementation. +//! +//! \see IPluginV2 and IPluginCreator +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +//! \warning In the automotive safety context, be sure to call IPluginRegistry::setErrorRecorder() to register +//! an error recorder with the registry before using other methods in the registry. +//! +class IPluginRegistry +{ +public: + //! + //! \brief Pointer for plugin library handle. + //! + using PluginLibraryHandle = void*; + + //! + //! \brief Register a plugin creator implementing IPluginCreator. Returns false if any plugin creator with the same + //! name, version or namespace is already registered. + //! + //! \warning The string pluginNamespace must be 1024 bytes or less including the NULL terminator and must be NULL + //! terminated. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes; calls to this method will be synchronized by a mutex. + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by + //! IPluginRegistry::registerCreator(IPluginCreatorInterface&, AsciiChar const* const). + //! + TRT_DEPRECATED virtual bool registerCreator( + IPluginCreator& creator, AsciiChar const* const pluginNamespace) noexcept = 0; + + //! + //! \brief Return all the registered plugin creators and the number of + //! registered plugin creators. Returns nullptr if none found. + //! + //! \warning If any plugin creators are registered or deregistered after calling this function, the returned pointer + //! is not guaranteed to be valid thereafter. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: No + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by IPluginRegistry::getAllCreators(int32_t* const). + //! + TRT_DEPRECATED virtual IPluginCreator* const* getPluginCreatorList(int32_t* const numCreators) const noexcept = 0; + + //! + //! \brief Return plugin creator based on plugin name, version, and + //! namespace associated with plugin during network creation. + //! + //! \warning The strings pluginName, pluginVersion, and pluginNamespace must be 1024 bytes or less including the + //! NULL terminator and must be NULL terminated. + //! + //! \warning Returns nullptr if a plugin creator with matching name, version, and namespace is found, but is not a + //! descendent of IPluginCreator + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by IPluginRegistry::getCreator(AsciiChar const* const, + //! AsciiChar const* const, AsciiChar const* const). + //! + TRT_DEPRECATED virtual IPluginCreator* getPluginCreator(AsciiChar const* const pluginName, + AsciiChar const* const pluginVersion, AsciiChar const* const pluginNamespace = "") noexcept = 0; + + // @cond SuppressDoxyWarnings + IPluginRegistry() = default; + IPluginRegistry(IPluginRegistry const&) = delete; + IPluginRegistry(IPluginRegistry&&) = delete; + IPluginRegistry& operator=(IPluginRegistry const&) & = delete; + IPluginRegistry& operator=(IPluginRegistry&&) & = delete; + // @endcond + +protected: + virtual ~IPluginRegistry() noexcept = default; + +public: + //! + //! \brief Set the ErrorRecorder for this interface + //! + //! Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. + //! This function will call incRefCount of the registered ErrorRecorder at least once. Setting + //! recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if + //! a recorder has been registered. + //! + //! \param recorder The error recorder to register with this interface. + //! + //! \see getErrorRecorder() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: No + //! + virtual void setErrorRecorder(IErrorRecorder* const recorder) noexcept = 0; + + //! + //! \brief Get the ErrorRecorder assigned to this interface. + //! + //! Retrieves the assigned error recorder object for the given class. A default error recorder does not exist, + //! so a nullptr will be returned if setErrorRecorder has not been called, or an ErrorRecorder has not been + //! inherited. + //! + //! \return A pointer to the IErrorRecorder object that has been registered. + //! + //! \see setErrorRecorder() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes + //! + virtual IErrorRecorder* getErrorRecorder() const noexcept = 0; + + //! + //! \brief Deregister a previously registered plugin creator implementing IPluginCreator. + //! + //! Since there may be a desire to limit the number of plugins, + //! this function provides a mechanism for removing plugin creators registered in TensorRT. + //! The plugin creator that is specified by \p creator is removed from TensorRT and no longer tracked. + //! + //! \return True if the plugin creator was deregistered, false if it was not found in the registry or otherwise + //! could not be deregistered. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes + //! + //! \deprecated Deprecated in TensorRT 10.0. Superseded by + //! IPluginRegistry::deregisterCreator(IPluginCreatorInterface const&). + //! + TRT_DEPRECATED virtual bool deregisterCreator(IPluginCreator const& creator) noexcept = 0; + + //! + //! \brief Return whether the parent registry will be searched if a plugin is not found in this registry + //! default: true + //! + //! \return bool variable indicating whether parent search is enabled. + //! + //! \see setParentSearchEnabled + //! + virtual bool isParentSearchEnabled() const = 0; + + //! + //! \brief Set whether the parent registry will be searched if a plugin is not found in this registry. + //! + //! \param enabled The bool variable indicating whether parent search is enabled. + //! + //! \see isParentSearchEnabled + //! + virtual void setParentSearchEnabled(bool const enabled) = 0; + + //! + //! \brief Load and register a shared library of plugins. + //! + //! \param pluginPath the plugin library path. + //! + //! \return The loaded plugin library handle. The call will fail and return + //! nullptr if any of the plugins are already registered. + //! + virtual PluginLibraryHandle loadLibrary(AsciiChar const* pluginPath) noexcept = 0; + + //! + //! \brief Deregister plugins associated with a library. Any resources acquired when the library + //! was loaded will be released. + //! + //! \param handle the plugin library handle to deregister. + //! + virtual void deregisterLibrary(PluginLibraryHandle handle) noexcept = 0; + + //! + //! \brief Register a plugin creator. Returns false if a plugin creator with the same type + //! is already registered. + //! + //! \warning The string pluginNamespace must be 1024 bytes or less including the NULL terminator and must be NULL + //! terminated. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes; calls to this method will be synchronized by a mutex. + //! + virtual bool registerCreator(IPluginCreatorInterface& creator, AsciiChar const* const pluginNamespace) noexcept = 0; + + //! + //! \brief Return all registered plugin creators. Returns nullptr if none found. + //! + //! \warning If any plugin creators are registered or deregistered after calling this function, the returned pointer + //! is not guaranteed to be valid thereafter. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: No + //! + virtual IPluginCreatorInterface* const* getAllCreators(int32_t* const numCreators) const noexcept = 0; + + //! + //! \brief Return a registered plugin creator based on plugin name, version, and namespace associated with the + //! plugin during network creation. + //! + //! \warning The strings pluginName, pluginVersion, and pluginNamespace must be 1024 bytes or less including the + //! NULL terminator and must be NULL terminated. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes + //! + virtual IPluginCreatorInterface* getCreator(AsciiChar const* const pluginName, AsciiChar const* const pluginVersion, + AsciiChar const* const pluginNamespace = "") noexcept = 0; + + //! + //! \brief Deregister a previously registered plugin creator. + //! + //! Since there may be a desire to limit the number of plugins, + //! this function provides a mechanism for removing plugin creators registered in TensorRT. + //! The plugin creator that is specified by \p creator is removed from TensorRT and no longer tracked. + //! + //! \return True if the plugin creator was deregistered, false if it was not found in the registry or otherwise + //! could not be deregistered. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes + //! + virtual bool deregisterCreator(IPluginCreatorInterface const& creator) noexcept = 0; + + //! + //! \brief Get a plugin resource + //! \param key Key for identifying the resource. Cannot be null. + //! \param resource A plugin resource object. The object will only need to be valid until this method returns, as + //! only a clone of this object will be registered by TRT. Cannot be null. + //! + //! \return Registered plugin resource object + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes; calls to this method will be synchronized by a mutex. + //! + virtual IPluginResource* acquirePluginResource(AsciiChar const* key, IPluginResource* resource) noexcept = 0; + + //! + //! \brief Decrement reference count for the resource with this key + //! If reference count goes to zero after decrement, release() will be invoked on the resource, the key will + //! be deregistered and the resource object will be deleted + //! + //! \param key Key that was used to register the resource. Cannot be null. + //! + //! \return 0 for success, else non-zero + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes; calls to this method will be synchronized by a mutex. + //! + virtual int32_t releasePluginResource(AsciiChar const* key) noexcept = 0; + + //! + //! \brief Return all registered plugin creators by searching starting from the current registry and following + //! parent registries recursively as long as isParentSearchEnabled() returns true. + //! + //! \param[out] numCreators Pointer to an integer where the number of registered plugin creators will be stored. + //! + //! \return A pointer to an array of IPluginCreatorInterface pointers. Returns nullptr if no creators are found. + //! + //! \warning If any plugin creators are registered or deregistered after calling this function, the returned pointer + //! is not guaranteed to remain valid. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: No + //! + virtual IPluginCreatorInterface* const* getAllCreatorsRecursive(int32_t* const numCreators) noexcept = 0; +}; + +} // namespace nvinfer1 + +#endif /* NV_INFER_RUNTIME_COMMON_H */ diff --git a/tensorrt/include/NvInferRuntimePlugin.h b/tensorrt/include/NvInferRuntimePlugin.h new file mode 100644 index 0000000000000000000000000000000000000000..cd0250f6402fc10b66107a5fa919f9e9532e056d --- /dev/null +++ b/tensorrt/include/NvInferRuntimePlugin.h @@ -0,0 +1,980 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_INFER_RUNTIME_PLUGIN_H +#define NV_INFER_RUNTIME_PLUGIN_H + +#define NV_INFER_INTERNAL_INCLUDE 1 +#include "NvInferPluginBase.h" +#undef NV_INFER_INTERNAL_INCLUDE + +//! +//! \file NvInferRuntimePlugin.h +//! +//! This file contains common definitions, data structures and interfaces that relate to plugins and are shared +//! between the standard and safe runtime. +//! +//! \warning Do not directly include this file. Instead include NvInferRuntime.h +//! + +//! +//! \namespace nvinfer1 +//! +//! \brief The TensorRT API version 1 namespace. +//! +namespace nvinfer1 +{ + +enum class TensorFormat : int32_t; +namespace v_1_0 +{ +class IGpuAllocator; +} // namespace v_1_0 +using IGpuAllocator = v_1_0::IGpuAllocator; + +//! +//! \brief PluginFormat is reserved for backward compatibility. +//! +//! \see IPluginV2::supportsFormat() +//! +using PluginFormat = TensorFormat; + +//! +//! \brief Bit at the plugin version to identify that it is a plugin. +//! +static constexpr int32_t kPLUGIN_VERSION_PYTHON_BIT = 0x40; + +//! +//! \struct PluginTensorDesc +//! +//! \brief Fields that a plugin might see for an input or output. +//! +//! Scale is only valid when data type is DataType::kINT8. TensorRT will set +//! the value to -1.0F if it is invalid. +//! +//! \see IPluginV2IOExt::supportsFormatCombination +//! \see IPluginV2IOExt::configurePlugin +//! +struct PluginTensorDesc +{ + //! Dimensions. + Dims dims; + //! \warning DataType:kBOOL and DataType::kUINT8 are not supported. + DataType type; + //! Tensor format. + TensorFormat format; + //! Scale for INT8 data type. + float scale; +}; + +//! +//! \struct PluginVersion +//! +//! \brief Definition of plugin versions. +//! +//! Tag for plug-in versions. Used in upper byte of getTensorRTVersion(). +//! +//! \deprecated Deprecated in TensorRT 10.10. PluginVersion is used only in relation to IPluginV2-descendent plugin +//! interfaces, which are all deprecated. +//! +enum class PluginVersion : uint8_t +{ + //! IPluginV2 + kV2 TRT_DEPRECATED_ENUM = 0, + //! IPluginV2Ext + kV2_EXT TRT_DEPRECATED_ENUM = 1, + //! IPluginV2IOExt + kV2_IOEXT TRT_DEPRECATED_ENUM = 2, + //! IPluginV2DynamicExt + kV2_DYNAMICEXT TRT_DEPRECATED_ENUM = 3, + //! IPluginV2DynamicExt-based Python plugins + kV2_DYNAMICEXT_PYTHON TRT_DEPRECATED_ENUM = kPLUGIN_VERSION_PYTHON_BIT | 3 +}; + +//! +//! \enum PluginCreatorVersion +//! +//! \brief Enum to identify version of the plugin creator. +//! +//! \deprecated Deprecated in TensorRT 10.10. PluginCreatorVersion is used only in relation to plugin creators based +//! off IPluginCreator, which is deprecated. +//! +enum class PluginCreatorVersion : int32_t +{ + //! IPluginCreator + kV1 TRT_DEPRECATED_ENUM = 0, + //! IPluginCreator-based Python plugin creators + kV1_PYTHON TRT_DEPRECATED_ENUM = kPLUGIN_VERSION_PYTHON_BIT +}; + +//! +//! \class IPluginV2 +//! +//! \brief Plugin class for user-implemented layers. +//! +//! Plugins are a mechanism for applications to implement custom layers. When +//! combined with IPluginCreator it provides a mechanism to register plugins and +//! look up the Plugin Registry during de-serialization. +//! +//! \see IPluginCreator +//! \see IPluginRegistry +//! +//! \deprecated Deprecated in TensorRT 8.5. Implement IPluginV3 instead. +//! +class TRT_DEPRECATED IPluginV2 +{ +public: + //! + //! \brief Return the API version with which this plugin was built. + //! + //! Do not override this method as it is used by the TensorRT library to maintain backwards-compatibility with + //! plugins. + //! + //! \return The TensorRT version in the format (major * 100 + minor) * 100 + patch. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, the implementation provided here is safe to call from any thread. + //! + virtual int32_t getTensorRTVersion() const noexcept + { + return NV_TENSORRT_VERSION; + } + + //! + //! \brief Return the plugin type. Should match the plugin name returned by the corresponding plugin creator + //! + //! \see IPluginCreator::getPluginName() + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual AsciiChar const* getPluginType() const noexcept = 0; + + //! + //! \brief Return the plugin version. Should match the plugin version returned by the corresponding plugin creator + //! + //! \see IPluginCreator::getPluginVersion() + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual AsciiChar const* getPluginVersion() const noexcept = 0; + + //! + //! \brief Get the number of outputs from the layer. + //! + //! \return The number of outputs, which is a positive integer. + //! + //! This function is called by the implementations of INetworkDefinition and IBuilder. In particular, it is called + //! prior to any call to initialize(). + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual int32_t getNbOutputs() const noexcept = 0; + + //! + //! \brief Get the dimension of an output tensor. + //! + //! \param index The index of the output tensor. Will lie in the valid range (between 0 and getNbOutputs()-1 + //! inclusive). + //! \param inputs The input tensor dimensions. Will be the start address of a Dims array of length nbInputDims. + //! \param nbInputDims The number of input tensors. Will be a non-negative integer. + //! + //! \return The output tensor dimensions if the index is in the valid range. + //! An invalid value of Dims{-1, {}} must be returned if the index is not in the valid range. + //! + //! This function is called by the implementations of INetworkDefinition and IBuilder. In particular, it is called + //! prior to any call to initialize(). + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + //! \note In any non-IPluginV2DynamicExt plugin, batch size must not be included in the returned dimensions, + //! even if the plugin is expected to be run in a network with explicit batch mode enabled. + //! Please see the TensorRT Developer Guide for more details on how plugin inputs and outputs behave. + //! + virtual Dims getOutputDimensions(int32_t index, Dims const* inputs, int32_t nbInputDims) noexcept = 0; + + //! + //! \brief Check format support. + //! + //! \param type DataType requested. + //! \param format PluginFormat requested. + //! + //! \return true if the plugin supports the type-format combination. + //! + //! This function is called by the implementations of INetworkDefinition, IBuilder, and + //! safe::ICudaEngine/ICudaEngine. In particular, it is called when creating an engine and when deserializing an + //! engine. + //! + //! \warning for the format field, the values PluginFormat::kCHW4, PluginFormat::kCHW16, and PluginFormat::kCHW32 + //! will not be passed in, this is to keep backward compatibility with TensorRT 5.x series. Use PluginV2IOExt + //! or PluginV2DynamicExt for other PluginFormats. + //! + //! \warning DataType:kBOOL and DataType::kUINT8 are not supported. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual bool supportsFormat(DataType type, PluginFormat format) const noexcept = 0; + + //! + //! \brief Configure the layer. + //! + //! This function is called by the builder prior to initialize(). It provides an opportunity for the layer to make + //! algorithm choices on the basis of its weights, dimensions, and maximum batch size. + //! + //! \param inputDims The input tensor dimensions. Will be the start address of a Dims array of length nbInputs. + //! \param nbInputs The number of inputs. Will be a non-negative integer. + //! \param outputDims The output tensor dimensions. Will be the start address of a Dims array of length nbOutputs. + //! \param nbOutputs The number of outputs. Will be a positive integer identical to the return value of + //! getNbOutputs(). + //! \param type The data type selected for the engine. + //! \param format The format selected for the engine. + //! \param maxBatchSize The maximum batch size. Will be a positive integer. + //! + //! The dimensions passed here do not include the outermost batch size (i.e. for 2D image networks, they will be + //! 3-dimensional CHW dimensions). + //! + //! \warning for the format field, the values PluginFormat::kCHW4, PluginFormat::kCHW16, and PluginFormat::kCHW32 + //! will not be passed in, this is to keep backward compatibility with TensorRT 5.x series. Use PluginV2IOExt + //! or PluginV2DynamicExt for other PluginFormats. + //! + //! \warning DataType:kBOOL and DataType::kUINT8 are not supported. + //! + //! \see clone() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. However, TensorRT + //! will not call this method from two threads simultaneously on a given clone of a plugin. + //! + virtual void configureWithFormat(Dims const* inputDims, int32_t nbInputs, Dims const* outputDims, int32_t nbOutputs, + DataType type, PluginFormat format, int32_t maxBatchSize) noexcept + = 0; + + //! + //! \brief Initialize the layer for execution. This is called when the engine is created. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when using multiple + //! execution contexts using this plugin. + //! + virtual int32_t initialize() noexcept = 0; + + //! + //! \brief Release resources acquired during plugin layer initialization. This is called when the engine is + //! destroyed. + //! + //! \see initialize() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when using multiple + //! execution contexts using this plugin. However, TensorRT will not call this method from + //! two threads simultaneously on a given clone of a plugin. + //! + virtual void terminate() noexcept = 0; + + //! + //! \brief Find the workspace size required by the layer. + //! + //! This function is called during engine startup, after initialize(). The workspace size returned must be + //! sufficient for any batch size up to the maximum. + //! + //! \param maxBatchSize The maximum batch size, which will be a positive integer. + //! + //! \return The workspace size in bytes, i.e. the device memory size that the plugin requires for its internal + //! computations. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. However, TensorRT + //! will not call this method from two threads simultaneously on a given clone of a plugin. + //! + virtual size_t getWorkspaceSize(int32_t maxBatchSize) const noexcept = 0; + + //! + //! \brief Execute the layer. + //! + //! \param batchSize The number of inputs in the batch. + //! \param inputs The memory for the input tensors. Will be an array of device addresses corresponding to input + //! tensors of length nbInputs, where nbInputs is the second parameter passed to configureWithFormat(). + //! The i-th input tensor will have the dimensions inputDims[i], where inputDims is the first parameter + //! that was passed to configureWithFormat(). + //! \param outputs The memory for the output tensors. Will be an array of device addresses corresponding to output + //! tensors of length getNbOutputs(). + //! \param workspace Workspace for execution. Will be the start address of a device buffer whose length will be at + //! least getWorkspaceSize(batchSize). + //! \param stream The stream in which to execute the kernels. This will be a valid CUDA stream. + //! + //! \return 0 for success, else non-zero (which will cause engine termination). + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when multiple execution contexts are used during runtime. + //! + virtual int32_t enqueue(int32_t batchSize, void const* const* inputs, void* const* outputs, void* workspace, + cudaStream_t stream) noexcept + = 0; + + //! + //! \brief Find the size of the serialization buffer required to store the plugin configuration in a binary file. + //! + //! \return The size of the serialization buffer in bytes. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual size_t getSerializationSize() const noexcept = 0; + + //! + //! \brief Serialize the layer. + //! + //! \param buffer A pointer to a host buffer to serialize data. Size of buffer will be at least as large as the + //! value returned by getSerializationSize. + //! + //! \see getSerializationSize() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual void serialize(void* buffer) const noexcept = 0; + + //! + //! \brief Destroy the plugin object. This will be called when the network, builder or engine is destroyed. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual void destroy() noexcept = 0; + + //! + //! \brief Clone the plugin object. This copies over internal plugin parameters and returns a new plugin object with + //! these parameters. + //! + //! The TensorRT runtime calls clone() to clone the plugin when an execution context is created for an engine, + //! after the engine has been created. The runtime does not call initialize() on the cloned plugin, + //! so the cloned plugin must be created in an initialized state. + //! + //! \return A cloned plugin object in an initialized state with the same parameters as the current object. + //! nullptr must be returned if the cloning fails, e.g. because of resource exhaustion. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when creating multiple + //! execution contexts. + //! + virtual IPluginV2* clone() const noexcept = 0; + + //! + //! \brief Set the namespace that this plugin object belongs to. Ideally, all plugin + //! objects from the same plugin library must have the same namespace. + //! + //! \param pluginNamespace The namespace for the plugin object. + //! + //! \warning The string pluginNamespace will be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual void setPluginNamespace(AsciiChar const* pluginNamespace) noexcept = 0; + + //! + //! \brief Return the namespace of the plugin object. + //! + //! \return The namespace string that was passed to setPluginNamespace(), possibly after truncation to 1024 bytes + //! if a longer string was passed. An empty string must be returned as default value. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual AsciiChar const* getPluginNamespace() const noexcept = 0; + + // @cond SuppressDoxyWarnings + IPluginV2() = default; + virtual ~IPluginV2() noexcept = default; +// @endcond + +protected: +// @cond SuppressDoxyWarnings + IPluginV2(IPluginV2 const&) = default; + IPluginV2(IPluginV2&&) = default; + IPluginV2& operator=(IPluginV2 const&) & = default; + IPluginV2& operator=(IPluginV2&&) & = default; +// @endcond +}; + +//! +//! \class IPluginV2Ext +//! +//! \brief Plugin class for user-implemented layers. +//! +//! Plugins are a mechanism for applications to implement custom layers. This +//! interface provides additional capabilities to the IPluginV2 interface by +//! supporting different output data types and broadcast across batches. +//! +//! \see IPluginV2 +//! +//! \deprecated Deprecated in TensorRT 8.5. Implement IPluginV3 instead. +//! +class TRT_DEPRECATED IPluginV2Ext : public IPluginV2 +{ +public: + //! + //! \brief Return the DataType of the plugin output at the requested index. + //! + //! \param index The output tensor index in the valid range between 0 and getNbOutputs()-1. + //! \param inputTypes The data types of the input tensors, stored in an array of length nbInputs. + //! \param nbInputs The number of input tensors. Will be a non-negative integer. + //! + //! \return The data type of the output tensor with the provided index if the input tensors have the data types + //! provided in inputTypes, provided the output tensor index is in the valid range. DataType::kFLOAT must be + //! returned if the index is not in the valid range. + //! + //! The default behavior must be to return the type of the first input, or DataType::kFLOAT if the layer has no + //! inputs. The returned data type must have a format that is supported by the plugin. + //! + //! \see supportsFormat() + //! + //! \warning DataType:kBOOL and DataType::kUINT8 are not supported. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual nvinfer1::DataType getOutputDataType( + int32_t index, nvinfer1::DataType const* inputTypes, int32_t nbInputs) const noexcept + = 0; + + //! + //! \brief Return true if the output tensor is broadcast across a batch. + //! + //! \param outputIndex The index of the output tensor, which will be in the valid range between 0 and + //! nbOutputs()-1. + //! \param inputIsBroadcasted A boolean array of length nbInputs. The i-th element will be true if and only if + //! the tensor for the ith input is broadcast across a batch. + //! \param nbInputs The number of inputs. Will be a non-negative integer. + //! + //! The values in inputIsBroadcasted refer to broadcasting at the semantic level, + //! i.e. are unaffected by whether method canBroadcastInputAcrossBatch requests + //! physical replication of the values. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch support is removed in TensorRT 10.0. + //! + TRT_DEPRECATED virtual bool isOutputBroadcastAcrossBatch( + int32_t outputIndex, bool const* inputIsBroadcasted, int32_t nbInputs) const noexcept + = 0; + + //! + //! \brief Return true if the plugin can use an input tensor that is broadcast across batch without replication. + //! + //! \param inputIndex Index of input that could be broadcast. Will be in the valid range between 0 and + //! nbInputs - 1 where nbInputs is the maximum number of input tensors supported by this plugin. + //! + //! \return true if the index is in the valid range and the plugin is able to broadcast a single copy of this + //! input tensor across the batch. False otherwise. + //! + //! For each input whose tensor is semantically broadcast across a batch, + //! TensorRT calls this method before calling configurePlugin. + //! If canBroadcastInputAcrossBatch returns true, TensorRT will not replicate the input tensor; + //! i.e., there will be a single copy that the plugin must share across the batch. + //! If it returns false, TensorRT will replicate the input tensor + //! so that it appears like a non-broadcasted tensor. + //! + //! This method is called only for inputs that can be broadcast. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + //! \deprecated Deprecated in TensorRT 10.0. Implicit batch support is removed in TensorRT 10.0. + //! + TRT_DEPRECATED virtual bool canBroadcastInputAcrossBatch(int32_t inputIndex) const noexcept = 0; + + //! + //! \brief Configure the layer with input and output data types. + //! + //! This function is called by the builder prior to initialize(). It provides an opportunity for the layer to make + //! algorithm choices on the basis of its weights, dimensions, data types and maximum batch size. + //! + //! \param inputDims The input tensor dimensions. Will be an array of length nbInputs. + //! \param nbInputs The number of inputs. Will be a non-negative integer. + //! \param outputDims The output tensor dimensions. Will be an array of length nbOutputs. + //! \param nbOutputs The number of outputs. Will be a positive integer. + //! \param inputTypes The data types selected for the plugin inputs. Will be an array of length nbInputs. + //! \param outputTypes The data types selected for the plugin outputs. Will be an array of length nbOutputs. + //! \param inputIsBroadcast True for each input that the plugin must broadcast across the batch. + //! Will be an array of length nbInputs. + //! \param outputIsBroadcast True for each output that TensorRT will broadcast across the batch. + //! Will be an array of length nbOutputs. + //! \param floatFormat The format selected for the engine for the floating point inputs/outputs. + //! \param maxBatchSize The maximum batch size. Will be a positive integer. + //! + //! The dimensions passed here do not include the outermost batch size (i.e. for 2D image networks, they will be + //! 3-dimensional CHW dimensions). When inputIsBroadcast or outputIsBroadcast is true, the outermost batch size for + //! that input or output must be treated as if it is one. + //! Index 'i' of inputIsBroadcast is true only if the input is semantically broadcast across the batch and + //! calling canBroadcastInputAcrossBatch with argument 'i' returns true. + //! Index 'i' of outputIsBroadcast is true only if calling isOutputBroadcastAcrossBatch with argument 'i' + //! returns true. + //! + //! \warning for the floatFormat field, the values PluginFormat::kCHW4, PluginFormat::kCHW16, and + //! PluginFormat::kCHW32 will not be passed in, this is to keep backward compatibility with TensorRT 5.x series. Use + //! PluginV2IOExt or PluginV2DynamicExt for other PluginFormats. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. However, TensorRT + //! will not call this method from two threads simultaneously on a given clone of a plugin. + //! + virtual void configurePlugin(Dims const* inputDims, int32_t nbInputs, Dims const* outputDims, int32_t nbOutputs, + DataType const* inputTypes, DataType const* outputTypes, bool const* inputIsBroadcast, + bool const* outputIsBroadcast, PluginFormat floatFormat, int32_t maxBatchSize) noexcept + = 0; + + IPluginV2Ext() = default; + ~IPluginV2Ext() override = default; + + //! + //! \brief Attach the plugin object to an execution context and grant the plugin the access to some context + //! resources. + //! + //! \param cudnn The cuDNN context handle of the execution context. Will be a valid cuDNN context handle, or + //! nullptr if TacticSource::kCUDNN is disabled. + //! \param cublas The cuBLAS context handle of the execution context. Will be a valid cuBLAS context handle, or + //! nullptr if TacticSource::kCUBLAS is disabled. + //! \param allocator The allocator used by the execution context + //! + //! This function is called automatically for each plugin when a new execution context is created. If the context + //! was created without resources, this method is not called until the resources are assigned. It is also called if + //! new resources are assigned to the context. + //! + //! If the plugin needs per-context resource, it can be allocated here. + //! The plugin can also get context-owned cuDNN and cuBLAS context here. + //! + //! \note The TacticSource::kCUDNN and TacticSource::kCUBLAS flag is disabled by default. + //! The allocator pointer is unique to each building or execution context instance having overlapping lifetimes. + //! It can be used as a key to manage resources across plugin instances sharing the same context. + //! Plugins attached to different contexts will have different handles as their execution will not overlap. + //! + //! \see TacticSources + //! \see getPluginCudnnHandle(void* executionContextIdentifier) + //! \see getPluginCublasHandle(void* excecutionContextIdentifier) + //! + //! \note In the automotive safety context, the cuDNN and cuBLAS parameters will be nullptr because cuDNN and cuBLAS + //! are not used by the safe runtime. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual void attachToContext( + cudnnContext* /*cudnn*/, cublasContext* /*cublas*/, IGpuAllocator* /*allocator*/) noexcept + { + } + + //! + //! \brief Detach the plugin object from its execution context. + //! + //! This function is called automatically for each plugin when an execution context is destroyed or the context + //! resources are unassigned from the context. + //! + //! If the plugin owns per-context resource, it can be released here. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual void detachFromContext() noexcept {} + + //! + //! \brief Clone the plugin object. This copies over internal plugin parameters as well and returns a new plugin + //! object with these parameters. If the source plugin is pre-configured with configurePlugin(), the returned object + //! must also be pre-configured. The returned object must allow attachToContext() with a new execution context. + //! Cloned plugin objects can share the same per-engine immutable resource (e.g. weights) with the source object + //! (e.g. via ref-counting) to avoid duplication. + //! + //! \return A pointer to a cloned plugin object if cloning was successful, otherwise nullptr. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + IPluginV2Ext* clone() const noexcept override = 0; + +protected: + // @cond SuppressDoxyWarnings + IPluginV2Ext(IPluginV2Ext const&) = default; + IPluginV2Ext(IPluginV2Ext&&) = default; + IPluginV2Ext& operator=(IPluginV2Ext const&) & = default; + IPluginV2Ext& operator=(IPluginV2Ext&&) & = default; +// @endcond + + //! + //! \brief Return the API version with which this plugin was built. The + //! upper byte reserved by TensorRT and is used to differentiate this from IPluginV2. + //! + //! \return In the lower three bytes, the TensorRT version in the format + //! (major * 100 + minor) * 100 + patch. + //! In the upper byte, the value 1. + //! + //! Do not override this method as it is used by the TensorRT library to maintain backwards-compatibility with + //! plugins. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, the implementation provided here is safe to call from any thread. + //! + int32_t getTensorRTVersion() const noexcept override + { + return static_cast((static_cast(PluginVersion::kV2_EXT) << 24U) + | (static_cast(NV_TENSORRT_VERSION) & 0xFFFFFFU)); + } + + //! + //! \brief Derived classes must not implement this. In a C++11 API it would be final. + //! + //! IPluginV2Ext::configureWithFormat() is a NOP operation for all classes derived from IPluginV2Ext. + //! These classes call configurePlugin() instead. + //! + void configureWithFormat(Dims const* /*inputDims*/, int32_t /*nbInputs*/, Dims const* /*outputDims*/, + int32_t /*nbOutputs*/, DataType /*type*/, PluginFormat /*format*/, int32_t /*maxBatchSize*/) noexcept override + { + } +}; + +//! +//! \class IPluginV2IOExt +//! +//! \brief Plugin class for user-implemented layers. +//! +//! Plugins are a mechanism for applications to implement custom layers. This interface provides additional +//! capabilities to the IPluginV2Ext interface by extending different I/O data types and tensor formats. +//! +//! \see IPluginV2Ext +//! +//! \deprecated Deprecated in TensorRT 10.0. Implement IPluginV3 instead. +//! +class TRT_DEPRECATED IPluginV2IOExt : public IPluginV2Ext +{ +public: + //! + //! \brief Configure the layer. + //! + //! This function is called by the builder prior to initialize(). It provides an opportunity for the layer to make + //! algorithm choices on the basis of the provided I/O PluginTensorDesc. + //! + //! \param in The input tensors attributes that are used for configuration. + //! \param nbInput Number of input tensors. + //! \param out The output tensors attributes that are used for configuration. + //! \param nbOutput Number of output tensors. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. However, TensorRT + //! will not call this method from two threads simultaneously on a given clone of a plugin. + //! + virtual void configurePlugin( + PluginTensorDesc const* in, int32_t nbInput, PluginTensorDesc const* out, int32_t nbOutput) noexcept + = 0; + + //! + //! \brief Return true if plugin supports the format and datatype for the input/output indexed by pos. + //! + //! For this method inputs are numbered 0..(nbInputs-1) and outputs are numbered nbInputs..(nbInputs+nbOutputs-1). + //! Using this numbering, pos is an index into InOut, where 0 <= pos < nbInputs+nbOutputs. + //! + //! TensorRT invokes this method to ask if the input/output indexed by pos supports the format/datatype specified + //! by inOut[pos].format and inOut[pos].type. The override must return true if that format/datatype at inOut[pos] + //! are supported by the plugin. If support is conditional on other input/output formats/datatypes, the plugin can + //! make its result conditional on the formats/datatypes in inOut[0..pos-1], which will be set to values + //! that the plugin supports. The override must not inspect inOut[pos+1..nbInputs+nbOutputs-1], + //! which will have invalid values. In other words, the decision for pos must be based on inOut[0..pos] only. + //! + //! Some examples: + //! + //! * A definition for a plugin that supports only FP16 NCHW: + //! + //! return inOut.format[pos] == TensorFormat::kLINEAR && inOut.type[pos] == DataType::kHALF; + //! + //! * A definition for a plugin that supports only FP16 NCHW for its two inputs, + //! and FP32 NCHW for its single output: + //! + //! return inOut.format[pos] == TensorFormat::kLINEAR && + //! (inOut.type[pos] == (pos < 2 ? DataType::kHALF : DataType::kFLOAT)); + //! + //! * A definition for a "polymorphic" plugin with two inputs and one output that supports + //! any format or type, but the inputs and output must have the same format and type: + //! + //! return pos == 0 || (inOut.format[pos] == inOut.format[0] && inOut.type[pos] == inOut.type[0]); + //! + //! Warning: TensorRT will stop asking for formats once it finds kFORMAT_COMBINATION_LIMIT on combinations. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin. + //! + virtual bool supportsFormatCombination( + int32_t pos, PluginTensorDesc const* inOut, int32_t nbInputs, int32_t nbOutputs) const noexcept + = 0; + + // @cond SuppressDoxyWarnings + IPluginV2IOExt() = default; + ~IPluginV2IOExt() override = default; +// @endcond + +protected: +// @cond SuppressDoxyWarnings + IPluginV2IOExt(IPluginV2IOExt const&) = default; + IPluginV2IOExt(IPluginV2IOExt&&) = default; + IPluginV2IOExt& operator=(IPluginV2IOExt const&) & = default; + IPluginV2IOExt& operator=(IPluginV2IOExt&&) & = default; +// @endcond + + //! + //! \brief Return the API version with which this plugin was built. The upper byte is reserved by TensorRT and is + //! used to differentiate this from IPluginV2 and IPluginV2Ext. + //! + //! Do not override this method as it is used by the TensorRT library to maintain backwards-compatibility with + //! plugins. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, the implementation provided here is safe to call from any thread. + //! + int32_t getTensorRTVersion() const noexcept override + { + return static_cast((static_cast(PluginVersion::kV2_IOEXT) << 24U) + | (static_cast(NV_TENSORRT_VERSION) & 0xFFFFFFU)); + } + +private: + // Following are obsolete base class methods, and must not be implemented or used. + + //! + //! \brief Set plugin configuration. + //! + void configurePlugin(Dims const*, int32_t, Dims const*, int32_t, DataType const*, DataType const*, bool const*, + bool const*, PluginFormat, int32_t) noexcept final + { + } + + //! + //! \brief Check if provided data type is supported. + //! + bool supportsFormat(DataType, PluginFormat) const noexcept final + { + return false; + } +}; + +namespace v_1_0 +{ +class TRT_DEPRECATED IPluginCreator : public IPluginCreatorInterface +{ +public: + //! + //! \brief Return the plugin name. + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including + //! the NULL terminator. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual AsciiChar const* getPluginName() const noexcept = 0; + + //! + //! \brief Return the plugin version. + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including + //! the NULL terminator. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual AsciiChar const* getPluginVersion() const noexcept = 0; + + //! + //! \brief Return a list of fields that need to be passed to createPlugin. + //! + //! \see PluginFieldCollection + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual PluginFieldCollection const* getFieldNames() noexcept = 0; + + //! + //! \brief Return a plugin object. Return nullptr in case of error. + //! + //! \param name A NULL-terminated name string of length 1024 or less, including the NULL terminator. + //! \param fc A pointer to a collection of fields needed for constructing the plugin. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual IPluginV2* createPlugin(AsciiChar const* name, PluginFieldCollection const* fc) noexcept = 0; + + //! + //! \brief Called during deserialization of plugin layer. Return a plugin object. + //! + //! \param name A NULL-terminated name string of length 1024 or less, including the NULL terminator. + //! \param serialData The start address of a byte array with the serialized plugin representation. + //! \param serialLength The length in bytes of the byte array with the serialized plugin representation. + //! + //! \return A deserialized plugin object + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual IPluginV2* deserializePlugin(AsciiChar const* name, void const* serialData, size_t serialLength) noexcept + = 0; + + //! + //! \brief Set the namespace of the plugin creator based on the plugin + //! library it belongs to. This can be set while registering the plugin creator. + //! + //! \param pluginNamespace A NULL-terminated namespace string of length 1024 or less, including the NULL terminator + //! + //! \see IPluginRegistry::registerCreator() + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual void setPluginNamespace(AsciiChar const* pluginNamespace) noexcept = 0; + + //! + //! \brief Return the namespace of the plugin creator object. + //! + //! \warning The string returned must be NULL-terminated and have a length of 1024 bytes or less including the + //! NULL terminator. + //! + //! \usage + //! - Allowed context for the API call + //! - Thread-safe: Yes, this method is required to be thread-safe and may be called from multiple threads + //! when building networks on multiple devices sharing the same plugin or when deserializing + //! multiple engines concurrently sharing plugins. + //! + virtual AsciiChar const* getPluginNamespace() const noexcept = 0; + + IPluginCreator() = default; + ~IPluginCreator() override = default; + +protected: + // @cond SuppressDoxyWarnings + IPluginCreator(IPluginCreator const&) = default; + IPluginCreator(IPluginCreator&&) = default; + IPluginCreator& operator=(IPluginCreator const&) & = default; + IPluginCreator& operator=(IPluginCreator&&) & = default; + // @endcond +public: + //! + //! \brief Return version information associated with this interface. Applications must not override this method. + //! + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN CREATOR_V1", 1, 0}; + } +}; +} // namespace v_1_0 + +//! +//! \class IPluginCreator +//! +//! \brief Plugin creator class for user implemented layers. +//! +//! \see IPlugin and IPluginFactory +//! +//! \deprecated Deprecated in TensorRT 10.0. Please implement IPluginCreatorV3One +//! along with IPluginV3 plugins instead. +//! +using IPluginCreator = v_1_0::IPluginCreator; + +} // namespace nvinfer1 + +#endif // NV_INFER_RUNTIME_PLUGIN_H diff --git a/tensorrt/include/NvInferVersion.h b/tensorrt/include/NvInferVersion.h new file mode 100644 index 0000000000000000000000000000000000000000..8465d3ec88804e0b15caa3a804157dcbf94d4e86 --- /dev/null +++ b/tensorrt/include/NvInferVersion.h @@ -0,0 +1,45 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +//! +//! \file NvInferVersion.h +//! +//! Defines the TensorRT version +//! +#ifndef NV_INFER_VERSION_H +#define NV_INFER_VERSION_H + +#define TRT_MAJOR_ENTERPRISE 10 +#define TRT_MINOR_ENTERPRISE 16 +#define TRT_PATCH_ENTERPRISE 1 +#define TRT_BUILD_ENTERPRISE 11 +#define NV_TENSORRT_MAJOR TRT_MAJOR_ENTERPRISE //!< TensorRT major version. +#define NV_TENSORRT_MINOR TRT_MINOR_ENTERPRISE //!< TensorRT minor version. +#define NV_TENSORRT_PATCH TRT_PATCH_ENTERPRISE //!< TensorRT patch version. +#define NV_TENSORRT_BUILD TRT_BUILD_ENTERPRISE //!< TensorRT build number. + +#define NV_TENSORRT_LWS_MAJOR 0 //!< TensorRT LWS major version. +#define NV_TENSORRT_LWS_MINOR 0 //!< TensorRT LWS minor version. +#define NV_TENSORRT_LWS_PATCH 0 //!< TensorRT LWS patch version. + +#define NV_TENSORRT_RELEASE_TYPE_EARLY_ACCESS 0 //!< An early access release +#define NV_TENSORRT_RELEASE_TYPE_RELEASE_CANDIDATE 1 //!< A release candidate +#define NV_TENSORRT_RELEASE_TYPE_GENERAL_AVAILABILITY 2 //!< A final release + +#define NV_TENSORRT_RELEASE_TYPE NV_TENSORRT_RELEASE_TYPE_GENERAL_AVAILABILITY //!< TensorRT release type + +#endif // NV_INFER_VERSION_H diff --git a/tensorrt/include/NvOnnxConfig.h b/tensorrt/include/NvOnnxConfig.h new file mode 100644 index 0000000000000000000000000000000000000000..26d8b93598429a16f1304a8af339c517314ce3fa --- /dev/null +++ b/tensorrt/include/NvOnnxConfig.h @@ -0,0 +1,198 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_OnnxConfig_H +#define NV_OnnxConfig_H + +#include "NvInfer.h" + +namespace nvonnxparser +{ + +//! +//! \mainpage +//! +//! This is the API documentation for the Configuration Manager for Open Neural Network Exchange (ONNX) Parser for Nvidia TensorRT Inference Engine. +//! It provides information on individual functions, classes +//! and methods. Use the index on the left to navigate the documentation. +//! +//! Please see the accompanying user guide and samples for higher-level information and general advice on using ONNX Parser and TensorRT. +//! + +//! +//! \file NvOnnxConfig.h +//! +//! This is the API file for the Configuration Manager for ONNX Parser for Nvidia TensorRT. +//! + +//! +//! \class IOnnxConfig +//! \brief Configuration Manager Class. +//! +class IOnnxConfig +{ +public: + virtual ~IOnnxConfig() noexcept = default; + //! + //! \typedef Verbosity + //! + //! \brief Defines Verbosity level. + //! + typedef int32_t Verbosity; + + //! + //! \brief Set the Model Data Type. + //! + //! Sets the Model DataType, one of the following: float -d 32 (default), half precision -d 16, and int8 -d 8 data + //! types. + //! + //! \see getModelDtype() + //! + virtual void setModelDtype(const nvinfer1::DataType) noexcept = 0; + + //! + //! \brief Get the Model Data Type. + //! + //! \return the data type of the model. + //! + //! \see setModelDtype() and DataType + //! + virtual nvinfer1::DataType getModelDtype() const noexcept = 0; + + //! + //! \brief Get the Model FileName. + //! + //! \return Return the Model Filename, as a null-terminated C-style string. + //! + //! \see setModelFileName() + //! + virtual char const* getModelFileName() const noexcept = 0; + + //! + //! \brief Set the Model File Name. + //! + //! The Model File name contains the Network Description in ONNX pb format. + //! + //! This method copies the name string. + //! + //! \param onnxFilename The name. + //! + //! \see getModelFileName() + //! + virtual void setModelFileName(char const* onnxFilename) noexcept = 0; + + //! + //! \brief Get the Verbosity Level. + //! + //! \return The Verbosity Level. + //! + //! \see addVerbosity(), reduceVerbosity() + //! + virtual Verbosity getVerbosityLevel() const noexcept = 0; + + //! + //! \brief Increase the Verbosity Level. + //! + //! \return The Verbosity Level. + //! + //! \see reduceVerbosity(), setVerbosity(Verbosity) + //! + virtual void addVerbosity() noexcept = 0; + + //! + //! \brief Reduce the Verbosity Level. + //! + //! \see addVerbosity(), setVerbosity(Verbosity) + //! + virtual void reduceVerbosity() noexcept = 0; + + //! + //! \brief Set to specific verbosity Level. + //! + //! \see addVerbosity(), reduceVerbosity() + //! + virtual void setVerbosityLevel(Verbosity) noexcept = 0; + + //! + //! \brief Returns the File Name of the Network Description as a Text File. + //! + //! \return Return the name of the file containing the network description converted to a plain text, used for + //! debugging purposes. + //! + //! \see setTextFilename() + //! + virtual char const* getTextFileName() const noexcept = 0; + + //! + //! \brief Set the File Name of the Network Description as a Text File. + //! + //! This API allows setting a file name for the network description in plain text, equivalent of the ONNX protobuf. + //! + //! This method copies the name string. + //! + //! \param textFileName Name of the file. + //! + //! \see getTextFilename() + //! + virtual void setTextFileName(char const* textFileName) noexcept = 0; + + //! + //! \brief Get the File Name of the Network Description as a Text File, including the weights. + //! + //! \return Return the name of the file containing the network description converted to a plain text, used for + //! debugging purposes. + //! + //! \see setFullTextFilename() + //! + virtual char const* getFullTextFileName() const noexcept = 0; + + //! + //! \brief Set the File Name of the Network Description as a Text File, including the weights. + //! + //! This API allows setting a file name for the network description in plain text, equivalent of the ONNX protobuf. + //! + //! This method copies the name string. + //! + //! \param fullTextFileName Name of the file. + //! + //! \see getFullTextFilename() + //! + virtual void setFullTextFileName(char const* fullTextFileName) noexcept = 0; + + //! + //! \brief Get whether the layer information will be printed. + //! + //! \return Returns whether the layer information will be printed. + //! + //! \see setPrintLayerInfo() + //! + virtual bool getPrintLayerInfo() const noexcept = 0; + + //! + //! \brief Set whether the layer information will be printed. + //! + //! \see getPrintLayerInfo() + //! + virtual void setPrintLayerInfo(bool) noexcept = 0; + +}; // class IOnnxConfig + +TENSORRTAPI IOnnxConfig* createONNXConfig(); + +} // namespace nvonnxparser + +#endif diff --git a/tensorrt/include/NvOnnxParser.h b/tensorrt/include/NvOnnxParser.h new file mode 100644 index 0000000000000000000000000000000000000000..435619df81d9e8971163f46319832e46549e4669 --- /dev/null +++ b/tensorrt/include/NvOnnxParser.h @@ -0,0 +1,657 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef NV_ONNX_PARSER_H +#define NV_ONNX_PARSER_H + +#include "NvInfer.h" +#include +#include +#include + +//! +//! \file NvOnnxParser.h +//! +//! This is the API for the ONNX Parser +//! + +#define NV_ONNX_PARSER_MAJOR 0 +#define NV_ONNX_PARSER_MINOR 1 +#define NV_ONNX_PARSER_PATCH 0 + +static constexpr int32_t NV_ONNX_PARSER_VERSION + = ((NV_ONNX_PARSER_MAJOR * 10000) + (NV_ONNX_PARSER_MINOR * 100) + NV_ONNX_PARSER_PATCH); + +//! +//! \typedef SubGraph_t +//! +//! \brief The data structure containing the parsing capability of +//! a set of nodes in an ONNX graph. +//! +typedef std::pair, bool> SubGraph_t; + +//! +//! \typedef SubGraphCollection_t +//! +//! \brief The data structure containing all SubGraph_t partitioned +//! out of an ONNX graph. +//! +typedef std::vector SubGraphCollection_t; + +//! +//! \namespace nvonnxparser +//! +//! \brief The TensorRT ONNX parser API namespace +//! +namespace nvonnxparser +{ + +//! \return the numerical value of the highest-valued enumerator for type T. +//! It must be specialized for each enum type that uses it. +//! {$nv-internal-release begin} +//! \note This is different from nvinfer1::EnumMax(), which is one more than that. +//! {$nv-internal-release end} +template +constexpr int32_t EnumMax() noexcept = delete; + +//! +//! \enum ErrorCode +//! +//! \brief The type of error that the parser or refitter may return +//! +enum class ErrorCode : int +{ + kSUCCESS = 0, + kINTERNAL_ERROR = 1, + kMEM_ALLOC_FAILED = 2, + kMODEL_DESERIALIZE_FAILED = 3, + kINVALID_VALUE = 4, + kINVALID_GRAPH = 5, + kINVALID_NODE = 6, + kUNSUPPORTED_GRAPH = 7, + kUNSUPPORTED_NODE = 8, + kUNSUPPORTED_NODE_ATTR = 9, + kUNSUPPORTED_NODE_INPUT = 10, + kUNSUPPORTED_NODE_DATATYPE = 11, + kUNSUPPORTED_NODE_DYNAMIC = 12, + kUNSUPPORTED_NODE_SHAPE = 13, + kREFIT_FAILED = 14 +}; + +//! Specialization. See `nvonnxparser::EnumMax()` for details. +template <> +constexpr int32_t EnumMax() noexcept +{ + return 14; +} + +//! +//! \brief Represents one or more OnnxParserFlag values using binary OR +//! operations, e.g., 1U << OnnxParserFlag::kNATIVE_INSTANCENORM +//! +//! \see IParser::setFlags() and IParser::getFlags() +//! +using OnnxParserFlags + = uint32_t; + +enum class OnnxParserFlag : int32_t +{ + //! Parse the ONNX model into the INetworkDefinition with the intention of using TensorRT's native layer + //! implementation over the plugin implementation for InstanceNormalization nodes. + //! This flag is required when building version-compatible or hardware-compatible engines. + //! This flag is set to be ON by default. + kNATIVE_INSTANCENORM = 0, + //! Enable UINT8 as a quantization data type and asymmetric quantization with non-zero zero-point values + //! in Quantize and Dequantize nodes. This flag is set to be OFF by default. + //! The resulting engine must be built targeting DLA version >= 3.16. + kENABLE_UINT8_AND_ASYMMETRIC_QUANTIZATION_DLA = 1, + //! Parse the ONNX model with per-node validation for DLA. If the model is not fully supported by DLA, then + //! parsing will fail. If this flag is set, isSubGraphSupported() will also return capability in the context of DLA + //! support. When this flag is set, a valid IBuilderConfig must be provided to the parser via setBuilderConfig(). + // This flag is set to be OFF by default. + kREPORT_CAPABILITY_DLA = 2, + //! Allow a loaded plugin with the same name as an ONNX operator type to override the default ONNX implementation, + //! even if the plugin namespace attribute is not set. + //! Useful for custom plugins that replace standard ONNX operators, such as alternative implementations for better + //! performance. This flag is set to be OFF by default. + kENABLE_PLUGIN_OVERRIDE = 3, + //! Opportunistically rewrite or modify layers to make them more amenable to running on DLA. + kADJUST_FOR_DLA = 4 +}; + +//! Specialization. See `nvonnxparser::EnumMax()` for details. +template <> +constexpr int32_t EnumMax() noexcept +{ + return 3; +} + +//! +//! \class IParserError +//! +//! \brief an object containing information about an error +//! +class IParserError +{ +public: + //! + //!\brief the error code. + //! + virtual ErrorCode code() const = 0; + //! + //!\brief description of the error. + //! + virtual char const* desc() const = 0; + //! + //!\brief source file in which the error occurred. + //! + virtual char const* file() const = 0; + //! + //!\brief source line at which the error occurred. + //! + virtual int line() const = 0; + //! + //!\brief source function in which the error occurred. + //! + virtual char const* func() const = 0; + //! + //!\brief index of the ONNX model node in which the error occurred. + //! + virtual int node() const = 0; + //! + //!\brief name of the node in which the error occurred. + //! + virtual char const* nodeName() const = 0; + //! + //!\brief name of the node operation in which the error occurred. + //! + virtual char const* nodeOperator() const = 0; + //! + //!\brief A list of the local function names, from the top level down, constituting the current + //! stack trace in which the error occurred. A top-level node that is not inside any + //! local function would return a nullptr. + //! + virtual char const* const* localFunctionStack() const = 0; + //! + //!\brief The size of the stack of local functions at the point where the error occurred. + //! A top-level node that is not inside any local function would correspond to + // a stack size of 0. + //! + virtual int32_t localFunctionStackSize() const = 0; + +protected: + virtual ~IParserError() {} +}; + +//! +//! \class IParser +//! +//! \brief an object for parsing ONNX models into a TensorRT network definition +//! +//! \warning If the ONNX model has a graph output with the same name as a graph input, +//! the output will be renamed by prepending "__". +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IParser +{ +public: + //! + //! \brief Parse a serialized ONNX model into the TensorRT network. + //! This method has very limited diagnostics. If parsing the serialized model + //! fails for any reason (e.g. unsupported IR version, unsupported opset, etc.) + //! it the user responsibility to intercept and report the error. + //! To obtain a better diagnostic, use the parseFromFile method below. + //! + //! \param serialized_onnx_model Pointer to the serialized ONNX model. Can be freed after this function returns. + //! \param serialized_onnx_model_size Size of the serialized ONNX model + //! in bytes + //! \param model_path Absolute path to the model file for loading external weights if required + //! \return true if the model was parsed successfully + //! \see getNbErrors() getError() + //! + virtual bool parse( + void const* serialized_onnx_model, size_t serialized_onnx_model_size, const char* model_path = nullptr) noexcept + = 0; + + //! + //! \brief Parse an onnx model file, which can be a binary protobuf or a text onnx model + //! calls parse method inside. + //! + //! \param onnxModelFile name + //! \param verbosity Level + //! + //! \return true if the model was parsed successfully + //! + //! + virtual bool parseFromFile(const char* onnxModelFile, int verbosity) noexcept = 0; + + //! + //! [DEPRECATED] Deprecated in TensorRT 10.1. See supportsModelV2. + //! + //! \brief Check whether TensorRT supports a particular ONNX model. + //! If the function returns True, one can proceed to engine building + //! without having to call \p parse or \p parseFromFile. + //! + //! \param serialized_onnx_model Pointer to the serialized ONNX model. Can be freed after this function returns. + //! \param serialized_onnx_model_size Size of the serialized ONNX model + //! in bytes + //! \param sub_graph_collection Container to hold supported subgraphs + //! \param model_path Absolute path to the model file for loading external weights if required + //! \return true if the model is supported + //! + TRT_DEPRECATED virtual bool supportsModel(void const* serialized_onnx_model, size_t serialized_onnx_model_size, + SubGraphCollection_t& sub_graph_collection, const char* model_path = nullptr) noexcept = 0; + + //! + //! [DEPRECATED] Deprecated in TensorRT 10.13. See loadInitializer(). + //! + //!\brief Parse a serialized ONNX model into the TensorRT network + //! with consideration of user provided weights + //! + //! \param serialized_onnx_model Pointer to the serialized ONNX model. Can be freed after this function returns. + //! \param serialized_onnx_model_size Size of the serialized ONNX model + //! in bytes + //! \return true if the model was parsed successfully + //! \see getNbErrors() getError() + //! + TRT_DEPRECATED virtual bool parseWithWeightDescriptors( + void const* serialized_onnx_model, size_t serialized_onnx_model_size) noexcept = 0; + + //! + //!\brief Returns whether the specified operator may be supported by the + //! parser. + //! + //! Note that a result of true does not guarantee that the operator will be + //! supported in all cases (i.e., this function may return false-positives). + //! + //! \param op_name The name of the ONNX operator to check for support + //! + virtual bool supportsOperator(const char* op_name) const noexcept = 0; + + //! + //!\brief Get the number of errors that occurred during prior calls to + //! \p parse + //! + //! \see getError() clearErrors() IParserError + //! + virtual int getNbErrors() const noexcept = 0; + + //! + //!\brief Get an error that occurred during prior calls to \p parse + //! + //! \see getNbErrors() clearErrors() IParserError + //! + virtual IParserError const* getError(int index) const noexcept = 0; + + //! + //!\brief Clear errors from prior calls to \p parse + //! + //! \see getNbErrors() getError() IParserError + //! + virtual void clearErrors() noexcept = 0; + + virtual ~IParser() noexcept = default; + + //! + //! \brief Query the plugin libraries needed to implement operations used by the parser in a version-compatible + //! engine. + //! + //! This provides a list of plugin libraries on the filesystem needed to implement operations + //! in the parsed network. If you are building a version-compatible engine using this network, + //! provide this list to IBuilderConfig::setPluginsToSerialize to serialize these plugins along + //! with the version-compatible engine, or, if you want to ship these plugin libraries externally + //! to the engine, ensure that IPluginRegistry::loadLibrary is used to load these libraries in the + //! appropriate runtime before deserializing the corresponding engine. + //! + //! \param[out] nbPluginLibs Returns the number of plugin libraries in the array, or -1 if there was an error. + //! \return Array of `nbPluginLibs` C-strings describing plugin library paths on the filesystem if nbPluginLibs > 0, + //! or nullptr otherwise. This array is owned by the IParser, and the pointers in the array are only valid until + //! the next call to parse(), supportsModel(), parseFromFile(), or parseWithWeightDescriptors(). + //! + virtual char const* const* getUsedVCPluginLibraries(int64_t& nbPluginLibs) const noexcept = 0; + + //! + //! \brief Set the parser flags. + //! + //! The flags are listed in the OnnxParserFlag enum. + //! + //! \param OnnxParserFlags The flags used when parsing an ONNX model. + //! + //! \note This function will override the previous set flags, rather than bitwise ORing the new flag. + //! + //! \see getFlags() + //! + virtual void setFlags(OnnxParserFlags onnxParserFlags) noexcept = 0; + + //! + //! \brief Get the parser flags. Defaults to 0. + //! + //! \return The parser flags as a bitmask. + //! + //! \see setFlags() + //! + virtual OnnxParserFlags getFlags() const noexcept = 0; + + //! + //! \brief clear a parser flag. + //! + //! clears the parser flag from the enabled flags. + //! + //! \see setFlags() + //! + virtual void clearFlag(OnnxParserFlag onnxParserFlag) noexcept = 0; + + //! + //! \brief Set a single parser flag. + //! + //! Add the input parser flag to the already enabled flags. + //! + //! \see setFlags() + //! + virtual void setFlag(OnnxParserFlag onnxParserFlag) noexcept = 0; + + //! + //! \brief Returns true if the parser flag is set + //! + //! \see getFlags() + //! + //! \return True if flag is set, false if unset. + //! + virtual bool getFlag(OnnxParserFlag onnxParserFlag) const noexcept = 0; + + //! + //!\brief Return the i-th output ITensor object for the ONNX layer "name". + //! + //! Return the i-th output ITensor object for the ONNX layer "name". + //! If "name" is not found or i is out of range, return nullptr. + //! In the case of multiple nodes sharing the same name this function will return + //! the output tensors of the first instance of the node in the ONNX graph. + //! + //! \param name The name of the ONNX layer. + //! + //! \param i The index of the output. i must be in range [0, layer.num_outputs). + //! + virtual nvinfer1::ITensor const* getLayerOutputTensor(char const* name, int64_t i) noexcept = 0; + + //! + //! \brief Check whether TensorRT supports a particular ONNX model. + //! If the function returns True, one can proceed to engine building + //! without having to call \p parse or \p parseFromFile. + //! Results can be queried through \p getNbSubgraphs, \p isSubgraphSupported, + //! \p getSubgraphNodes. + //! + //! \param serializedOnnxModel Pointer to the serialized ONNX model. Can be freed after this function returns. + //! \param serializedOnnxModelSize Size of the serialized ONNX model in bytes + //! \param modelPath Absolute path to the model file for loading external weights if required + //! \return true if the model is supported + //! + virtual bool supportsModelV2( + void const* serializedOnnxModel, size_t serializedOnnxModelSize, char const* modelPath = nullptr) noexcept = 0; + + //! + //! \brief Get the number of subgraphs. Calling this function before calling \p supportsModelV2 results in undefined + //! behavior. + //! + //! + //! \return Number of subgraphs. + //! + virtual int64_t getNbSubgraphs() noexcept = 0; + + //! + //! \brief Returns whether the subgraph is supported. Calling this function before calling \p supportsModelV2 + //! results in undefined behavior. + //! + //! + //! \param index Index of the subgraph. + //! \return Whether the subgraph is supported. + //! + virtual bool isSubgraphSupported(int64_t const index) noexcept = 0; + + //! + //! \brief Get the nodes of the specified subgraph. Calling this function before calling \p supportsModelV2 results + //! in undefined behavior. + //! + //! + //! \param index Index of the subgraph. + //! \param subgraphLength Returns the length of the subgraph as reference. + //! + //! \return Pointer to the subgraph nodes array. This pointer is owned by the Parser. + //! + virtual int64_t* getSubgraphNodes(int64_t const index, int64_t& subgraphLength) noexcept = 0; + + //! + //! \brief Load a serialized ONNX model into the parser. Unlike the parse(), parseFromFile(), or + //! parseWithWeightDescriptors() functions, this function does not immediately convert the model into a TensorRT + //! INetworkDefinition. Using this function allows users to provide their own initializers for the ONNX model + //! through the loadInitializer() function. + //! + //! Only one model can be loaded at a time. Subsequent calls to loadModelProto() will result in an error. + //! + //! To begin the conversion of the model into a TensorRT INetworkDefinition, use parseModelProto(). + //! + //! \param serializedOnnxModel Pointer to the serialized ONNX model. Can be freed after this function returns. + //! \param serializedOnnxModelSize Size of the serialized ONNX model in bytes. + //! \param modelPath Absolute path to the model file for loading external weights if required. + //! \return true if the model was loaded successfully + //! \see getNbErrors() getError() + //! + virtual bool loadModelProto( + void const* serializedOnnxModel, size_t serializedOnnxModelSize, char const* modelPath = nullptr) noexcept = 0; + + //! + //! \brief Prompt the ONNX parser to load an initializer with user-provided binary data. + //! The lifetime of the data must exceed the lifetime of the parser. + //! + //! All user-provided initializers must be provided prior to calling refitModelProto(). + //! + //! This function can be called multiple times to specify the names of multiple initializers. + //! + //! Calling this function with an initializer previously specified will overwrite the previous instance. + //! + //! + //! This function will return false if initializer validation fails. Possible validation errors are: + //! * This function was called prior to loadModelProto(). + //! * The requested initializer was not found in the model. + //! * The size of the data provided is different from the corresponding initializer in the model. + //! + //! \param name Name of the initializer. + //! \param data Binary data containing the values of the initializer. + //! \param size Size of the initializer in bytes. + //! \return true if the initializer was loaded successfully + //! \see loadModelProto() + //! + virtual bool loadInitializer(char const* name, void const* data, size_t size) noexcept = 0; + + //! \brief Begin the parsing and conversion process of the loaded ONNX model into a TensorRT INetworkDefinition. + //! + //! \return true if conversion was successful + //! \see getNbErrors() getError() loadModelProto() loadModelProtoFromFile() + //! + virtual bool parseModelProto() noexcept = 0; + + //! + //! \brief Set the BuilderConfig for the parser. + //! + //! \return true if the IBuilderConfig was set successfully, false otherwise. + //! + virtual bool setBuilderConfig(const nvinfer1::IBuilderConfig* const builderConfig) noexcept = 0; +}; + +//! +//! \class IParserRefitter +//! +//! \brief An interface designed to refit weights from an ONNX model. +//! +//! \warning Do not inherit from this class, as doing so will break forward-compatibility of the API and ABI. +//! +class IParserRefitter +{ +public: + //! + //! \brief Load a serialized ONNX model from memory and perform weight refit. + //! + //! \param serializedOnnxModel Pointer to the serialized ONNX model + //! \param serializedOnnxModelSize Size of the serialized ONNX model + //! in bytes + //! \param modelPath Absolute path to the model file for loading external weights if required + //! \return true if all the weights in the engine were refit successfully. + //! + //! The serialized ONNX model must be identical to the one used to generate the engine + //! that will be refit. + //! + virtual bool refitFromBytes( + void const* serializedOnnxModel, size_t serializedOnnxModelSize, char const* modelPath = nullptr) noexcept + = 0; + + //! + //! \brief Load and parse a ONNX model from disk and perform weight refit. + //! + //! \param onnxModelFile Path to the ONNX model to load from disk. + //! + //! \return true if the model was loaded successfully, and if all the weights in the engine were refit successfully. + //! + //! The provided ONNX model must be identical to the one used to generate the engine + //! that will be refit. + //! + virtual bool refitFromFile(char const* onnxModelFile) noexcept = 0; + + //! + //!\brief Get the number of errors that occurred during prior calls to \p refitFromBytes or \p refitFromFile + //! + //! \see getError() IParserError + //! + virtual int32_t getNbErrors() const noexcept = 0; + + //! + //!\brief Get an error that occurred during prior calls to \p refitFromBytes or \p refitFromFile + //! + //! \see getNbErrors() IParserError + //! + virtual IParserError const* getError(int32_t index) const noexcept = 0; + + //! + //!\brief Clear errors from prior calls to \p refitFromBytes or \p refitFromFile + //! + //! \see getNbErrors() getError() IParserError + //! + virtual void clearErrors() = 0; + + virtual ~IParserRefitter() noexcept = default; + + //! + //! \brief Load a serialized ONNX model into the parser. Unlike the refit(), or refitFromFile() + //! functions, this function does not immediately begin the refit process. Using this function + //! allows users to provide their own initializers for the ONNX model through the loadInitializer() function. + //! + //! Only one model can be loaded at a time. Subsequent calls to loadModelProto() will result in an error. + //! + //! To begin the refit process, use refitModelProto(). + //! + //! \param serializedOnnxModel Pointer to the serialized ONNX model. Can be freed after this function returns. + //! \param serializedOnnxModelSize Size of the serialized ONNX model in bytes. + //! \param modelPath Absolute path to the model file for loading external weights if required. + //! \return true if the model was loaded successfully + //! \see getNbErrors() getError() + //! + virtual bool loadModelProto( + void const* serializedOnnxModel, size_t serializedOnnxModelSize, char const* modelPath = nullptr) noexcept = 0; + + //! + //! \brief Prompt the ONNX refitter to load an initializer with user-provided binary data. + //! The lifetime of the data must exceed the lifetime of the refitter. + //! + //! All user-provided initializers must be provided prior to calling refitModelProto(). + //! + //! This function can be called multiple times to specify the names of multiple initializers. + //! + //! Calling this function with an initializer previously specified will overwrite the previous instance. + //! + //! This function will return false if initializer validation fails. Possible validation errors are: + //! * This function was called prior to loadModelProto() + //! * The requested initializer was not found in the model. + //! * The size of the data provided is different from the corresponding initializer in the model. + //! + //! \param name Name of the initializer. + //! \param data Binary data containing the values of the initializer. + //! \param size Size of the initializer in bytes. + //! \return true if the initializer was loaded successfully + //! \see loadModelProto() + //! + virtual bool loadInitializer(char const* name, void const* data, size_t size) noexcept = 0; + + //! \brief Begin the refit process from the loaded ONNX model. + //! + //! \return true if refit was successful + //! \see getNbErrors() getError() loadModelProto() + //! + virtual bool refitModelProto() noexcept = 0; +}; + +} // namespace nvonnxparser + +extern "C" TENSORRTAPI void* createNvOnnxParser_INTERNAL(void* network, void* logger, int version) noexcept; +extern "C" TENSORRTAPI void* createNvOnnxParserRefitter_INTERNAL( + void* refitter, void* logger, int32_t version) noexcept; +extern "C" TENSORRTAPI int getNvOnnxParserVersion() noexcept; + +namespace nvonnxparser +{ + +namespace +{ + +//! +//! \brief Create a new parser object +//! +//! \param network The network definition that the parser will write to +//! \param logger The logger to use +//! \return a new parser object or NULL if an error occurred +//! +//! Any input dimensions that are constant should not be changed after parsing, +//! because correctness of the translation may rely on those constants. +//! Changing a dynamic input dimension, i.e. one that translates to -1 in +//! TensorRT, to a constant is okay if the constant is consistent with the model. +//! Each instance of the parser is designed to only parse one ONNX model once. +//! +//! \see IParser +//! +inline IParser* createParser(nvinfer1::INetworkDefinition& network, nvinfer1::ILogger& logger) noexcept +{ + return static_cast(createNvOnnxParser_INTERNAL(&network, &logger, NV_ONNX_PARSER_VERSION)); +} + +//! +//! \brief Create a new ONNX refitter object +//! +//! \param refitter The Refitter object used to refit the model +//! \param logger The logger to use +//! \return a new ParserRefitter object or NULL if an error occurred +//! +//! \see IParserRefitter +//! +inline IParserRefitter* createParserRefitter(nvinfer1::IRefitter& refitter, nvinfer1::ILogger& logger) noexcept +{ + return static_cast( + createNvOnnxParserRefitter_INTERNAL(&refitter, &logger, NV_ONNX_PARSER_VERSION)); +} + +} // namespace + +} // namespace nvonnxparser + +#endif // NV_ONNX_PARSER_H diff --git a/tensorrt/include/impl/NvInferPythonPlugin.h b/tensorrt/include/impl/NvInferPythonPlugin.h new file mode 100644 index 0000000000000000000000000000000000000000..3d0842ee3267fa07e6a88e042a2f3065fabebb65 --- /dev/null +++ b/tensorrt/include/impl/NvInferPythonPlugin.h @@ -0,0 +1,594 @@ +/* + * SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef TRT_PYTHON_IMPL_PLUGIN_H +#define TRT_PYTHON_IMPL_PLUGIN_H + +#include "NvInfer.h" + +//! +//! \file NvInferPythonPlugin.h +//! +//! This file contains definitions for supporting the `tensorrt.plugin` Python module +//! +//! \warning None of the defintions here are part of the TensorRT C++ API and may not follow semantic versioning rules. +//! TensorRT clients must not utilize them directly. +//! + +namespace nvinfer1 +{ + +//! \enum PluginArgType +//! \brief Numeric type of an extra kernel input argument in an AOT Python plugin +enum class PluginArgType : int32_t +{ + //! Integer argument + kINT = 0, +}; + +//! \enum PluginArgDataType +//! \brief Data type of an extra kernel input argument in an AOT Python plugin +enum class PluginArgDataType : int32_t +{ + //! 8-bit signed integer + kINT8 = 0, + //! 16-bit signed integer + kINT16 = 1, + //! 32-bit signed integer + kINT32 = 2, +}; +//! \class ISymExpr +//! \brief Generic interface for a scalar symbolic expression implementable by a Python plugin / TensorRT Python backend +class ISymExpr +{ +public: + //! \brief Get the type of the symbolic expression + virtual PluginArgType getType() const noexcept = 0; + //! \brief Get the data type of the symbolic expression + virtual PluginArgDataType getDataType() const noexcept = 0; + //! \brief Underlying symbolic expression + virtual void* getExpr() noexcept = 0; +}; + +//! Impl class for ISymExprs +class ISymExprsImpl +{ +public: + virtual ISymExpr* getSymExpr(int32_t index) const noexcept = 0; + virtual bool setSymExpr(int32_t index, ISymExpr* symExpr) noexcept = 0; + virtual int32_t getNbSymExprs() const noexcept = 0; + virtual bool setNbSymExprs(int32_t count) noexcept = 0; + + virtual ~ISymExprsImpl() noexcept = default; +}; + +//! \class ISymExprs +//! \brief Allows for a sequence of symbolic expressions to be communicated to the TensorRT backend +//! \note Clients must not implement this class. +//! \see ISymExpr +class ISymExprs +{ +public: + //! \brief Get the symbolic expression at the given index + //! \return A pointer to the symbolic expression or nullptr if the index is out of range + ISymExpr* getSymExpr(int32_t index) const noexcept + { + return mImpl->getSymExpr(index); + } + + //! \brief Set the symbolic expression at the given index + //! \return true if the index is in range and the symbolic expression was set successfully, false otherwise + bool setSymExpr(int32_t index, ISymExpr* symExpr) noexcept + { + return mImpl->setSymExpr(index, symExpr); + } + + //! \brief Get the number of symbolic expressions + int32_t getNbSymExprs() const noexcept + { + return mImpl->getNbSymExprs(); + } + + //! \brief Set the number of symbolic expressions + //! \return true if the number of symbolic expressions was set successfully, false otherwise + bool setNbSymExprs(int32_t count) noexcept + { + return mImpl->setNbSymExprs(count); + } + +protected: + ISymExprsImpl* mImpl{nullptr}; + virtual ~ISymExprs() noexcept = default; +}; + +//! \enum QuickPluginCreationRequest +//! \brief Communicates preference when a quickly deployable plugin is to be added to the network +enum class QuickPluginCreationRequest : int32_t +{ + //! No preference specified + kUNKNOWN = 0, + //! JIT plugin is preferred + kPREFER_JIT = 1, + //! AOT plugin is preferred + kPREFER_AOT = 2, + //! JIT plugin must be used. TensorRT should fail if a JIT implementation cannot be found. + kSTRICT_JIT = 3, + //! AOT plugin must be used. TensorRT should fail if an AOT implementation cannot be found. + kSTRICT_AOT = 4, +}; + +//! Impl class for IKernelLaunchParams +class IKernelLaunchParamsImpl +{ +public: + virtual ISymExpr* getGridX() noexcept = 0; + virtual bool setGridX(ISymExpr* gridX) noexcept = 0; + + virtual ISymExpr* getGridY() noexcept = 0; + virtual bool setGridY(ISymExpr* gridY) noexcept = 0; + + virtual ISymExpr* getGridZ() noexcept = 0; + virtual bool setGridZ(ISymExpr* gridZ) noexcept = 0; + + virtual ISymExpr* getBlockX() noexcept = 0; + virtual bool setBlockX(ISymExpr* blockX) noexcept = 0; + + virtual ISymExpr* getBlockY() noexcept = 0; + virtual bool setBlockY(ISymExpr* blockY) noexcept = 0; + + virtual ISymExpr* getBlockZ() noexcept = 0; + virtual bool setBlockZ(ISymExpr* blockZ) noexcept = 0; + + virtual ISymExpr* getSharedMem() noexcept = 0; + virtual bool setSharedMem(ISymExpr* sharedMem) noexcept = 0; + + virtual ~IKernelLaunchParamsImpl() noexcept = default; +}; + +//! \class IKernelLaunchParams +//! \brief Allows for kernel launch parameters to be communicated to the TensorRT backend +//! \note Clients must not implement this class. +class IKernelLaunchParams +{ +public: + //! Get the X dimension of the grid + ISymExpr* getGridX() noexcept + { + return mImpl->getGridX(); + } + + //! \brief Set the X dimension of the grid + //! \return true if the grid's X dimension was set successfully, false otherwise + bool setGridX(ISymExpr* gridX) noexcept + { + return mImpl->setGridX(gridX); + } + + //! Get the Y dimension of the grid + ISymExpr* getGridY() noexcept + { + return mImpl->getGridY(); + } + + //! \brief Set the Y dimension of the grid + //! \return true if the grid's Y dimension was set successfully, false otherwise + bool setGridY(ISymExpr* gridY) noexcept + { + return mImpl->setGridY(gridY); + } + + //! Get the Z dimension of the grid + ISymExpr* getGridZ() noexcept + { + return mImpl->getGridZ(); + } + + //! \brief Set the Z dimension of the grid + //! \return true if the grid's Z dimension was set successfully, false otherwise + bool setGridZ(ISymExpr* gridZ) noexcept + { + return mImpl->setGridZ(gridZ); + } + + //! \brief Get the X dimension of each thread block + ISymExpr* getBlockX() noexcept + { + return mImpl->getBlockX(); + } + + //! \brief Set the X dimension of each thread block + //! \return true if each thread block's X dimension was set successfully, false otherwise + bool setBlockX(ISymExpr* blockX) noexcept + { + return mImpl->setBlockX(blockX); + } + + //! \brief Get the Y dimension of each thread block + ISymExpr* getBlockY() noexcept + { + return mImpl->getBlockY(); + } + + //! \brief Set the Y dimension of each thread block + //! \return true if each thread block's Y dimension was set successfully, false otherwise + bool setBlockY(ISymExpr* blockY) noexcept + { + return mImpl->setBlockY(blockY); + } + + //! \brief Get the Z dimension of each thread block + ISymExpr* getBlockZ() noexcept + { + return mImpl->getBlockZ(); + } + + //! \brief Set the Z dimension of each thread block + //! \return true if each thread block's Z dimension was set successfully, false otherwise + bool setBlockZ(ISymExpr* blockZ) noexcept + { + return mImpl->setBlockZ(blockZ); + } + + //! \brief Get the dynamic shared-memory per thread block in bytes + ISymExpr* getSharedMem() noexcept + { + return mImpl->getSharedMem(); + } + + //! \brief Set the dynamic shared-memory per thread block in bytes + //! \return true if the dynamic shared-memory per thread block was set successfully, false otherwise + bool setSharedMem(ISymExpr* sharedMem) noexcept + { + return mImpl->setSharedMem(sharedMem); + } + +protected: + IKernelLaunchParamsImpl* mImpl{nullptr}; + virtual ~IKernelLaunchParams() noexcept = default; +}; + +namespace v_1_0 +{ + +class IPluginV3QuickCore : public IPluginCapability +{ +public: + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3QUICK_CORE", 1, 0}; + } + + virtual AsciiChar const* getPluginName() const noexcept = 0; + + virtual AsciiChar const* getPluginVersion() const noexcept = 0; + + virtual AsciiChar const* getPluginNamespace() const noexcept = 0; +}; + +class IPluginV3QuickBuild : public IPluginCapability +{ +public: + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3QUICK_BUILD", 1, 0}; + } + + //! + //! \brief Provide the data types of the plugin outputs if the input tensors have the data types provided. + //! + //! \param outputTypes Pre-allocated array to which the output data types should be written. + //! \param nbOutputs The number of output tensors. This matches the value returned from getNbOutputs(). + //! \param inputTypes The input data types. + //! \param inputRanks Ranks of the input tensors + //! \param nbInputs The number of input tensors. + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t getOutputDataTypes(DataType* outputTypes, int32_t nbOutputs, DataType const* inputTypes, + int32_t const* inputRanks, int32_t nbInputs) const noexcept = 0; + + //! + //! \brief Provide expressions for computing dimensions of the output tensors from dimensions of the input tensors. + //! + //! \param inputs Expressions for dimensions of the input tensors + //! \param nbInputs The number of input tensors + //! \param shapeInputs Expressions for values of the shape tensor inputs + //! \param nbShapeInputs The number of shape tensor inputs + //! \param outputs Pre-allocated array to which the output dimensions must be written + //! \param exprBuilder Object for generating new dimension expressions + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t getOutputShapes(DimsExprs const* inputs, int32_t nbInputs, DimsExprs const* shapeInputs, + int32_t nbShapeInputs, DimsExprs* outputs, int32_t nbOutputs, IExprBuilder& exprBuilder) noexcept = 0; + + //! + //! \brief Configure the plugin. Behaves similarly to `IPluginV3OneBuild::configurePlugin()` + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t configurePlugin(DynamicPluginTensorDesc const* in, int32_t nbInputs, + DynamicPluginTensorDesc const* out, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Get number of format combinations supported by the plugin for the I/O characteristics indicated by + //! `inOut`. + //! + virtual int32_t getNbSupportedFormatCombinations( + DynamicPluginTensorDesc const* inOut, int32_t nbInputs, int32_t nbOutputs) noexcept = 0; + + //! + //! \brief Write all format combinations supported by the plugin for the I/O characteristics indicated by `inOut` to + //! `supportedCombinations`. It is guaranteed to have sufficient memory allocated for (nbInputs + nbOutputs) * + //! getNbSupportedFormatCombinations() `PluginTensorDesc`s. + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t getSupportedFormatCombinations(DynamicPluginTensorDesc const* inOut, int32_t nbInputs, + int32_t nbOutputs, PluginTensorDesc* supportedCombinations, int32_t nbFormatCombinations) noexcept = 0; + + //! + //! \brief Get the number of outputs from the plugin. + //! + virtual int32_t getNbOutputs() const noexcept = 0; + + //! + //! \brief Communicates to TensorRT that the output at the specified output index is aliased to the input at the + //! returned index. Behaves similary to `v_2_0::IPluginV3OneBuild.getAliasedInput()`. + //! + virtual int32_t getAliasedInput(int32_t outputIndex) noexcept + { + return -1; + } + + //! + //! \brief Query for any custom tactics that the plugin intends to use specific to the I/O characteristics indicated + //! by the immediately preceding call to `configurePlugin()`. + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t getValidTactics(int32_t* tactics, int32_t nbTactics) noexcept + { + return 0; + } + + //! + //! \brief Query for number of custom tactics related to the `getValidTactics()` call. + //! + virtual int32_t getNbTactics() noexcept + { + return 0; + } + + //! + //! \brief Called to query the suffix to use for the timing cache ID. May be called anytime after plugin creation. + //! + virtual char const* getTimingCacheID() noexcept + { + return nullptr; + } + + //! + //! \brief Query for a string representing the configuration of the plugin. May be called anytime after + //! plugin creation. + //! + virtual char const* getMetadataString() noexcept + { + return nullptr; + } +}; + +class IPluginV3QuickAOTBuild : public IPluginV3QuickBuild +{ +public: + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3QUICKAOT_BUILD", 1, 0}; + } + + //! \brief Get the launch parameters for the kernel to be used for the specified input and output types/formats and + //! any corresponding custom tactics. + //! If custom tactics are being advertised by the plugin, the corresponding tactic is the one specified by + //! the immediately preceding call to setTactic(). + //! + //! \param inputs Expressions for dimensions of the input tensors + //! \param inOut The input and output tensors' attributes + //! \param nbInputs The number of input tensors + //! \param nbOutputs The number of output tensors + //! \param launchParams Interface which allows the specification of kernel launch parameters as symbolic expressions + //! of the input dimensions + //! \param extraArgs Interface which allows the specification of any scalar arguments to be + //! passed to the kernel, as symbolic expressions of the input dimensions + //! \param exprBuilder Object for generating new symbolic expressions + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t getLaunchParams(DimsExprs const* inputs, DynamicPluginTensorDesc const* inOut, int32_t nbInputs, + int32_t nbOutputs, IKernelLaunchParams* launchParams, ISymExprs* extraArgs, + IExprBuilder& exprBuilder) noexcept = 0; + + //! + //! \brief Get the compiled form for the kernel to be used for the specified input and output types/formats and any + //! corresponding custom tactics. + //! If custom tactics are being advertised by the plugin, the corresponding tactic is the one specified by + //! the immediately preceding call to setTactic(). + //! + //! \param in The input tensors' attributes that are used for configuration. + //! \param nbInputs Number of input tensors. + //! \param out The output tensors' attributes that are used for configuration. + //! \param nbOutputs Number of output tensors. + //! \param kernelName The name for the kernel. + //! \param compiledKernel Compiled form of the kernel. + //! \param compiledKernelSize The size of the compiled kernel. + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t getKernel(PluginTensorDesc const* in, int32_t nbInputs, PluginTensorDesc const* out, + int32_t nbOutputs, const char** kernelName, char** compiledKernel, int32_t* compiledKernelSize) noexcept = 0; + + //! + //! \brief Set the tactic to be used in the subsequent call to enqueue(). Behaves similar to + //! IPluginV3OneRuntime::setTactic() + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t setTactic(int32_t tactic) noexcept + { + return 0; + } +}; + +class IPluginV3QuickRuntime : public IPluginCapability +{ +public: + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN_V3QUICK_RUNTIME", 1, 0}; + } + + //! + //! \brief Set the tactic to be used in the subsequent call to enqueue(). Behaves similar to + //! `IPluginV3OneRuntime::setTactic()`. + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t setTactic(int32_t tactic) noexcept + { + return 0; + } + + //! + //! \brief Execute the plugin. + //! + //! \param inputDesc how to interpret the memory for the input tensors. + //! \param outputDesc how to interpret the memory for the output tensors. + //! \param inputs The memory for the input tensors. + //! \param inputStrides Strides for input tensors. + //! \param outputStrides Strides for output tensors. + //! \param outputs The memory for the output tensors. + //! \param nbInputs Number of input tensors. + //! \param nbOutputs Number of output tensors. + //! \param stream The stream in which to execute the kernels. + //! + //! \return 0 for success, else non-zero + //! + virtual int32_t enqueue(PluginTensorDesc const* inputDesc, PluginTensorDesc const* outputDesc, + void const* const* inputs, void* const* outputs, Dims const* inputStrides, Dims const* outputStrides, + int32_t nbInputs, int32_t nbOutputs, cudaStream_t stream) noexcept = 0; + + //! + //! \brief Get the plugin fields which should be serialized. + //! + virtual PluginFieldCollection const* getFieldsToSerialize() noexcept = 0; +}; + +class IPluginCreatorV3Quick : public IPluginCreatorInterface +{ +public: + InterfaceInfo getInterfaceInfo() const noexcept override + { + return InterfaceInfo{"PLUGIN CREATOR_V3QUICK", 1, 0}; + } + + //! + //! \brief Return a plugin object. Return nullptr in case of error. + //! + //! \param name A NULL-terminated name string of length 1024 or less, including the NULL terminator. + //! \param namespace A NULL-terminated name string of length 1024 or less, including the NULL terminator. + //! \param fc A pointer to a collection of fields needed for constructing the plugin. + //! \param phase The TensorRT phase in which the plugin is being created + //! \param quickPluginCreationRequest Whether a JIT or AOT plugin should be created + //! + virtual IPluginV3* createPlugin(AsciiChar const* name, AsciiChar const* nspace, PluginFieldCollection const* fc, + TensorRTPhase phase, QuickPluginCreationRequest quickPluginCreationRequest) noexcept = 0; + + //! + //! \brief Return a list of fields that need to be passed to createPlugin() when creating a plugin for use in the + //! TensorRT build phase. + //! + virtual PluginFieldCollection const* getFieldNames() noexcept = 0; + + virtual AsciiChar const* getPluginName() const noexcept = 0; + + virtual AsciiChar const* getPluginVersion() const noexcept = 0; + + virtual AsciiChar const* getPluginNamespace() const noexcept = 0; + + IPluginCreatorV3Quick() = default; + virtual ~IPluginCreatorV3Quick() = default; + +protected: + IPluginCreatorV3Quick(IPluginCreatorV3Quick const&) = default; + IPluginCreatorV3Quick(IPluginCreatorV3Quick&&) = default; + IPluginCreatorV3Quick& operator=(IPluginCreatorV3Quick const&) & = default; + IPluginCreatorV3Quick& operator=(IPluginCreatorV3Quick&&) & = default; +}; + +} // namespace v_1_0 + +//! +//! \class IPluginV3QuickCore +//! +//! \brief Provides core capability (`IPluginCapability::kCORE`) for quickly-deployable TRT plugins +//! +//! \warning This class is strictly for the purpose of supporting quickly-deployable TRT Python plugins and is not part +//! of the public TensorRT C++ API. Users must not inherit from this class. +//! +using IPluginV3QuickCore = v_1_0::IPluginV3QuickCore; + +//! +//! \class IPluginV3QuickBuild +//! +//! \brief Provides build capability (`IPluginCapability::kBUILD`) for quickly-deployable TRT plugins +//! +//! \warning This class is strictly for the purpose of supporting quickly-deployable TRT Python plugins and is not part +//! of the public TensorRT C++ API. Users must not inherit from this class. +//! +using IPluginV3QuickBuild = v_1_0::IPluginV3QuickBuild; + +//! +//! \class IPluginV3QuickAOTBuild +//! +//! \brief Provides additional build capabilities for AOT quickly-deployable TRT plugins. Descends from +//! IPluginV3QuickBuild. +//! +//! \warning This class is strictly for the purpose of supporting quickly-deployable TRT Python plugins and is not part +//! of the public TensorRT C++ API. Users must not inherit from this class. +//! +using IPluginV3QuickAOTBuild = v_1_0::IPluginV3QuickAOTBuild; + +//! +//! \class IPluginV3QuickRuntime +//! +//! \brief Provides runtime capability (`IPluginCapability::kRUNTIME`) for JIT quickly-deployable TRT plugins +//! +//! \warning This class is strictly for the purpose of supporting quickly-deployable TRT Python plugins and is not part +//! of the public TensorRT C++ API. Users must not inherit from this class. +//! +using IPluginV3QuickRuntime = v_1_0::IPluginV3QuickRuntime; + +//! +//! \class IPluginCreatorV3Quick +//! +//! \warning This class is strictly for the purpose of supporting quickly-deployable TRT Python plugins and is not part +//! of the public TensorRT C++ API. Users must not inherit from this class. +//! +using IPluginCreatorV3Quick = v_1_0::IPluginCreatorV3Quick; + +} // namespace nvinfer1 + +#endif // TRT_PYTHON_IMPL_PLUGIN_H diff --git a/tensorrt/lib/nvinfer_dispatch_10.lib b/tensorrt/lib/nvinfer_dispatch_10.lib new file mode 100644 index 0000000000000000000000000000000000000000..34398a43d0ca03915efe58b376e6b9be0d99b040 Binary files /dev/null and b/tensorrt/lib/nvinfer_dispatch_10.lib differ diff --git a/tensorrt/lib/nvinfer_plugin_10.lib b/tensorrt/lib/nvinfer_plugin_10.lib new file mode 100644 index 0000000000000000000000000000000000000000..2929d24b1cf998a6e5ff15bbd1c6fcee48e324ff Binary files /dev/null and b/tensorrt/lib/nvinfer_plugin_10.lib differ diff --git a/tensorrt/lib/nvinfer_vc_plugin_10.lib b/tensorrt/lib/nvinfer_vc_plugin_10.lib new file mode 100644 index 0000000000000000000000000000000000000000..113b96e83e8bc5b2c477adac285c63c303d937c4 Binary files /dev/null and b/tensorrt/lib/nvinfer_vc_plugin_10.lib differ diff --git a/tensorrt/lib/nvonnxparser_10.lib b/tensorrt/lib/nvonnxparser_10.lib new file mode 100644 index 0000000000000000000000000000000000000000..aeb8cfd77d93b52d24a939bd66cb0b70b709c6cf Binary files /dev/null and b/tensorrt/lib/nvonnxparser_10.lib differ diff --git a/vulkan/Bin/SPIRV.dll b/vulkan/Bin/SPIRV.dll new file mode 100644 index 0000000000000000000000000000000000000000..41e0f3b2562cf488f49185f604d29d49cda49a77 Binary files /dev/null and b/vulkan/Bin/SPIRV.dll differ diff --git a/vulkan/Bin/VkLayer_api_dump.json b/vulkan/Bin/VkLayer_api_dump.json new file mode 100644 index 0000000000000000000000000000000000000000..97d6fc5d8ddc8a44d347edcc1a94b8408ce64c7f --- /dev/null +++ b/vulkan/Bin/VkLayer_api_dump.json @@ -0,0 +1,334 @@ +{ + "file_format_version": "1.2.0", + "layer": { + "name": "VK_LAYER_LUNARG_api_dump", + "type": "GLOBAL", + "library_path": ".\\VkLayer_api_dump.dll", + "api_version": "1.4.341", + "implementation_version": "2", + "description": "LunarG API dump layer", + "introduction": "The API Dump utility layer prints API calls, parameters, and values to the identified output stream.", + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/api_dump_layer.html", + "platforms": [ + "WINDOWS", + "LINUX", + "MACOS", + "ANDROID" + ], + "instance_extensions": [ + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ + "vkGetPhysicalDeviceToolPropertiesEXT" + ] + } + ], + "features": { + "presets": [ + { + "label": "Console Output", + "description": "Output API dump to stdout", + "platforms": [ + "WINDOWS", + "LINUX", + "MACOS", + "ANDROID" + ], + "status": "STABLE", + "settings": [ + { + "key": "output_format", + "value": "text" + }, + { + "key": "log_filename", + "value": "stdout" + }, + { + "key": "file", + "value": false + } + ] + }, + { + "label": "Text Output", + "description": "Output API dump to a text file", + "platforms": [ + "WINDOWS", + "LINUX", + "MACOS", + "ANDROID" + ], + "status": "STABLE", + "settings": [ + { + "key": "output_format", + "value": "text" + }, + { + "key": "log_filename", + "value": "${VK_LOCAL}/vk_apidump.txt" + }, + { + "key": "file", + "value": true + } + ] + }, + { + "label": "HTML Output", + "description": "Output API dump to a HTML file", + "platforms": [ + "WINDOWS", + "LINUX", + "MACOS", + "ANDROID" + ], + "status": "STABLE", + "settings": [ + { + "key": "output_format", + "value": "html" + }, + { + "key": "log_filename", + "value": "${VK_LOCAL}/vk_apidump.html" + }, + { + "key": "file", + "value": true + } + ] + }, + { + "label": "JSON Output", + "description": "Output API dump to a JSON file", + "platforms": [ + "WINDOWS", + "LINUX", + "MACOS", + "ANDROID" + ], + "status": "STABLE", + "settings": [ + { + "key": "output_format", + "value": "json" + }, + { + "key": "log_filename", + "value": "${VK_LOCAL}/vk_apidump.json" + }, + { + "key": "file", + "value": true + } + ] + } + ], + "settings": [ + { + "key": "output_range", + "env": "VK_APIDUMP_OUTPUT_RANGE", + "label": "Output Range", + "description": "Comma separated list of frames to output or a range of frames with a start, count, and optional interval separated by a dash. A count of 0 will output every frame after the start of the range. Example: \"5-8-2\" will output frame 5, continue until frame 13, dumping every other frame. Example: \"3,8-2\" will output frames 3, 8, and 9.", + "type": "STRING", + "default": "0-0" + }, + { + "key": "output_format", + "env": "VK_APIDUMP_OUTPUT_FORMAT", + "label": "Output Format", + "description": "Specifies the format used for output; can be HTML, JSON, or Text (default -- outputs plain text)", + "type": "ENUM", + "flags": [ + { + "key": "text", + "label": "Text", + "description": "Plain text" + }, + { + "key": "html", + "label": "HTML", + "description": "HTML" + }, + { + "key": "json", + "label": "JSON", + "description": "Json" + } + ], + "default": "text", + "settings": [ + { + "key": "pre_dump", + "env": "VK_APIDUMP_PRE_DUMP", + "label": "Pre-dump the parameters.", + "description": "Setting this to true causes parameters to calls be logged before the function as well as after the function.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "output_format", + "value": "text" + } + ] + } + } + ] + }, + { + "key": "file", + "label": "Output to File", + "description": "Setting this to true indicates that output should be written to file instead of stdout", + "type": "BOOL", + "default": false, + "settings": [ + { + "key": "log_filename", + "env": "VK_APIDUMP_LOG_FILENAME", + "label": "Log Filename", + "description": "Specifies the file to dump to when output files are enabled", + "type": "SAVE_FILE", + "filter": "*.txt,*.html,*.json", + "default": "stdout", + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "file", + "value": true + } + ] + } + } + ] + }, + { + "key": "flush", + "env": "VK_APIDUMP_FLUSH", + "label": "Log Flush After Write", + "description": "Setting this to true causes IO to be flushed after each API call that is written", + "type": "BOOL", + "default": true + }, + { + "key": "name_size", + "label": "Name Size", + "description": "The number of characters the name of a variable should consume, assuming more are not required", + "type": "INT", + "default": 32, + "range": { + "min": 1 + }, + "unit": "chars" + }, + { + "key": "show_types", + "label": "Show Types", + "description": "Dump types in addition to values", + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "type_size", + "label": "Type Size", + "description": "The number of characters the name of a type should consume, assuming more are not required", + "type": "INT", + "default": 0, + "range": { + "min": 0 + }, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "show_types", + "value": true + } + ] + } + } + ] + }, + { + "key": "timestamp", + "env": "VK_APIDUMP_TIMESTAMP", + "label": "Show Timestamp", + "description": "Show the timestamp of function calls since start in microseconds", + "type": "BOOL", + "default": false + }, + { + "key": "show_shader", + "label": "Show Shader", + "description": "Dump the shader binary code in pCode as an hex array which can be viewed in https://www.khronos.org/spir/visualizer/", + "type": "BOOL", + "default": false + }, + { + "key": "detailed", + "env": "VK_APIDUMP_DETAILED", + "label": "Show Parameter Details", + "description": "Dump parameter details in addition to API calls", + "type": "BOOL", + "default": true + }, + { + "key": "no_addr", + "env": "VK_APIDUMP_NO_ADDR", + "label": "Hide Addresses", + "description": "Dump \"address\" in place of hex addresses", + "type": "BOOL", + "default": false + }, + { + "key": "use_spaces", + "label": "Use Spaces", + "description": "Setting this to true causes all tab characters to be replaced with spaces", + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "indent_size", + "label": "Indent Size", + "description": "Specifies the number of spaces that a tab is equal to", + "type": "INT", + "default": 4, + "range": { + "min": 1, + "max": 16 + }, + "unit": "chars", + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "use_spaces", + "value": true + } + ] + } + } + ] + }, + { + "key": "show_thread_and_frame", + "label": "Show Thread and Frame", + "description": "Show the thread and frame of each function called", + "type": "BOOL", + "default": true + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_crash_diagnostic.json b/vulkan/Bin/VkLayer_crash_diagnostic.json new file mode 100644 index 0000000000000000000000000000000000000000..2ca58f88144860cb7253ac3a2996cd95e7b13944 --- /dev/null +++ b/vulkan/Bin/VkLayer_crash_diagnostic.json @@ -0,0 +1,423 @@ +{ + "file_format_version": "1.2.0", + "layer": { + "name": "VK_LAYER_LUNARG_crash_diagnostic", + "type": "GLOBAL", + "status": "BETA", + "library_path": ".\\VkLayer_crash_diagnostic.dll", + "api_version": "1.4.341", + "implementation_version": "1", + "description": "Crash Diagnostic Layer is a crash/hang debugging tool that helps determines GPU progress in a Vulkan application.", + "platforms": [ "WINDOWS", "LINUX", "ANDROID" ], + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/crash_diagnostic_layer.html", + "enable_environment": { + "VK_CRASH_DIAGNOSTIC_ENABLE": "1" + }, + "disable_environment": { + "VK_CRASH_DIAGNOSTIC_DISABLE": "1" + }, + "instance_extensions": [ + { + "name": "VK_EXT_debug_report", + "spec_version": "10" + }, + { + "name": "VK_EXT_debug_utils", + "spec_version": "1" + }, + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_debug_report", + "spec_version": "10", + "entrypoints": [ + "vkCreateDebugReportCallbackEXT", + "vkDebugReportMessageEXT", + "vkDestroyDebugReportCallbackEXT" + ] + }, + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ + "vkGetPhysicalDeviceToolPropertiesEXT" + ] + } + ], + "features": { + "settings": [ + { + "key": "state", + "label": "State Tracking", + "description": "Control of state tracking.", + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "sync_after_commands", + "env": "CDL_SYNC_AFTER_COMMANDS", + "label": "Synchronize commands", + "description": "Add pipeline barriers after instrumented commands to help identify whether a Vulkan crash is due to a synchronization issue.", + "detailed": "VK_KHR_dynamic_rendering usage is required for this feature otherwise Validation layer errors will be generated.", + "type": "BOOL", + "default": false, + "messages": [ + { + "key": "sync_after_commands_msg0", + "title": "'Synchronize commands' is incompatible with Vulkan RenderPass", + "version": 1, + "description": "'Synchronize commands' add pipeline barriers after instrumented commands. This feature is not supported for Vulkan application using Vulkan RenderPass which would generate Validation layer errors.", + "informative": "Are you sure you want to enable 'Synchronize commands'?", + "severity": "WARNING", + "conditions": [ + { + "setting": { + "key": "sync_after_commands", + "value": true + } + } + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { + "setting": { + "key": "sync_after_commands", + "value": true + } + } + ] + }, + "BUTTON1": { + "type": "CANCEL", + "changes": [ + { + "setting": { + "key": "sync_after_commands", + "value": false + } + } + ] + } + } + } + ] + }, + { + "key": "instrument_all_commands", + "env": "CDL_INSTRUMENT_ALL_COMMANDS", + "label": "Add markers on each Vulkan command", + "description": "Include completion markers around every vulkan command", + "detailed": "This may allow more accuratute fault locations at the expense of larger command buffers and reduced performance", + "type": "BOOL", + "default": false + } + ] + }, + { + "key": "dump", + "label": "Crash dump file", + "description": "Control of dump files", + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "output_path", + "env": "CDL_OUTPUT_PATH", + "label": "Output Path", + "description": "The directory where dump files and shader binaries are written.", + "type": "SAVE_FOLDER", + "default": "" + }, + { + "key": "triggers", + "label": "Crash Dump Triggers", + "description": "Additional crash detection methods beyond a VK_ERROR_DEVICE_LOST error returned by the Vulkan driver.", + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "trigger_watchdog_timeout", + "env": "CDL_TRIGGER_WATCHDOG_TIMEOUT", + "label": "Watchdog Timer", + "description": "If the application fails to submit new commands within a set time, a crash dump will be created as if the a lost device error was encountered.", + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "watchdog_timeout_ms", + "env": "CDL_WATCHDOG_TIMEOUT_MS", + "label": "Watchdog Timeout (ms)", + "description": "Time in milliseconds the application has to submit a new command before creating a crash dump.", + "type": "INT", + "default": 30000, + "range": { + "min": 1 + }, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "trigger_watchdog_timeout", + "value": true + } + ] + } + } + ] + } + ] + }, + { + "key": "track_semaphores", + "env": "CDL_TRACK_SEMAPHORES", + "label": "Dump semaphores", + "description": "Include semaphore state reporting in runtime logging and crash dump files", + "type": "BOOL", + "default": false + }, + { + "key": "dump_queue_submits", + "env": "CDL_DUMP_QUEUE_SUBMITS", + "label": "Dump queue submissions", + "description": "Control which queue submissions are included in the dump.", + "type": "ENUM", + "default": "running", + "flags": [ + { + "key": "running", + "label": "Running", + "description": "Submissions that were executing at the time of the dump." + }, + { + "key": "pending", + "label": "Pending", + "description": "Submissions executing or pending at the time of the dump." + } + ] + }, + { + "key": "dump_command_buffers", + "env": "CDL_DUMP_COMMAND_BUFFERS", + "label": "Dump command buffers", + "description": "Control which command buffers are included in the dump.", + "type": "ENUM", + "default": "running", + "flags": [ + { + "key": "running", + "label": "Running", + "description": "Command Buffers that were executing at the time of the dump." + }, + { + "key": "pending", + "label": "Pending", + "description": "Command Buffers executing or pending at the time of the dump." + }, + { + "key": "all", + "label": "All", + "description": "All known Command Buffers." + } + ] + }, + { + "key": "dump_commands", + "env": "CDL_DUMP_COMMANDS", + "label": "Dump commands", + "description": "Control which commands are included in the dump.", + "type": "ENUM", + "default": "running", + "flags": [ + { + "key": "running", + "label": "Running", + "description": "Command Buffers that were executing at the time of the dump." + }, + { + "key": "pending", + "label": "Pending", + "description": "Commands executing or pending at the time of the dump." + }, + { + "key": "all", + "label": "All", + "description": "All known Commands." + } + ] + }, + { + "key": "dump_shaders", + "env": "CDL_DUMP_SHADERS", + "label": "Dump shaders", + "description": "Control of shader dumping.", + "type": "ENUM", + "default": "off", + "flags": [ + { + "key": "off", + "label": "Off", + "description": "Never dump shaders." + }, + { + "key": "on_crash", + "label": "On Crash", + "description": "Dump currently bound shaders after a crash is detected." + }, + { + "key": "on_bind", + "label": "On Bind", + "description": "Dump only bound shaders." + }, + { + "key": "all", + "label": "All", + "description": "Dump all shaders." + } + ] + } + ] + }, + { + "key": "logging", + "label": "Logging", + "description": "Control of logging", + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "log_file", + "env": "CDL_LOG_FILE", + "label": "Log Filename", + "description": "none = no logging, stderr or stdout = to the console, otherwise an absolute or relative path.", + "filter": "*.txt", + "type": "SAVE_FILE", + "default": "stderr", + "platforms": [ + "WINDOWS", + "LINUX", + "MACOS" + ] + }, + { + "key": "message_group", + "label": "Log Message Areas", + "description": "", + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "trace_on", + "env": "CDL_TRACE_ON", + "label": "Log main submission and synchronization Vulkan commands", + "description": "Add Vulkan API calls intercepted by the layer will be logged to the console.", + "detailed": "This includes: vkDeviceWaitIdle, vkQueueWaitIdle, vkQueuePresentKHR, vkWaitForFences, vkGetFenceStatus, vkAcquireNextImageKHR, vkCreateCommandPool, vkDestroyCommandPool, vkResetCommandPool, vkAllocateCommandBuffers, vkFreeCommandBuffers, vkQueueSubmit, vkQueueSubmit2, vkQueueSubmit2KHR and vkQueueBindSparse", + "type": "BOOL", + "default": false + }, + { + "key": "trace_all_semaphores", + "env": "CDL_TRACE_ALL_SEMAPHORES", + "label": "Log Vulkan commands that use semaphores", + "description": "Add logging messages about every vulkan command that uses semaphores", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "track_semaphores", + "value": true + } + ] + }, + "messages": [ + { + "key": "trace_all_semaphores_msg0", + "title": "'Log Vulkan commands that use semaphores' requires 'Track semaphores' to be enabled", + "version": 1, + "description": "'Log Vulkan commands that use semaphores' requires 'Track semaphores' to be enabled", + "informative": "Are you sure you want to enable 'Log Vulkan commands that use semaphores'?", + "severity": "INFO", + "conditions": [ + { + "setting": { + "key": "track_semaphores", + "value": false + } + } + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { + "setting": { + "key": "track_semaphores", + "value": true + } + } + ] + }, + "BUTTON1": { + "type": "CANCEL", + "changes": [ + { + "setting": { + "key": "track_semaphores", + "value": false + } + } + ] + } + } + } + ] + } + ] + }, + { + "key": "message_severity", + "label": "Message Severity", + "description": "Comma-delineated list of options specifying the types of log messages to be reported.", + "type": "FLAGS", + "flags": [ + { + "key": "error", + "label": "Error", + "description": "Report errors such as device lost or setup problems in the layer." + }, + { + "key": "warn", + "label": "Warning", + "description": "Report non-fatal problems that may interfere with operation of the layer" + }, + { + "key": "info", + "label": "Info", + "description": "Report informational messages." + }, + { + "key": "verbose", + "label": "Debug", + "description": "For layer development. Report messages for debugging layer behavior.", + "view": "DEBUG" + } + ], + "default": [ + "error" + ] + } + ] + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_gfxreconstruct.json b/vulkan/Bin/VkLayer_gfxreconstruct.json new file mode 100644 index 0000000000000000000000000000000000000000..9818bb3f9621011b227410a52f9602ba272bde03 --- /dev/null +++ b/vulkan/Bin/VkLayer_gfxreconstruct.json @@ -0,0 +1,498 @@ +{ + "file_format_version": "1.2.0", + "layer": { + "name": "VK_LAYER_LUNARG_gfxreconstruct", + "type": "GLOBAL", + "library_path": ".\\VkLayer_gfxreconstruct.dll", + "api_version": "1.4.341", + "implementation_version": "4194309", + "description": "GFXReconstruct Capture Layer Version 1.0.5", + "introduction": "The GFXReconstruct Capture Layer intercepts Vulkan API calls and logs them to a capture file. Other tools in the GFXReconstruct suite can inspect, modify, or replay capture files generated by this component.", + "platforms": [ "WINDOWS", "LINUX", "ANDROID", "MACOS" ], + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/capture_tools.html", + "status": "STABLE", + "device_extensions": [ + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ "vkGetPhysicalDeviceToolPropertiesEXT" ] + } + ], + "disable_environment": { + "GFXRECON_DISABLE": "" + }, + "features": { + "presets": [ + { + "label": "Initialization", + "description": "Capture the first two frames.", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "settings": [ + { + "key": "capture_trigger", + "value": "" + }, + { + "key": "capture_frames", + "value": "1-2" + } + ] + }, + { + "label": "Range", + "description": "Capture a range of frames between presses of the F5 key.", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "settings": [ + { + "key": "capture_trigger", + "value": "F5" + }, + { + "key": "capture_frames", + "value": "" + } + ] + } + ], + "settings": [ + { + "key": "capture_trigger", + "env": "GFXRECON_CAPTURE_TRIGGER", + "label": "Hotkey Capture Trigger", + "description": "Specify a hotkey (any one of F1-F12, TAB, CONTROL) that will be used to start/stop capture. Example: F3 will set the capture trigger to F3 hotkey. One capture file will be generated for each pair of start/stop hotkey presses. Default is: Empty string (hotkey capture trigger is disabled).", + "platforms" : [ "WINDOWS", "LINUX", "MACOS" ], + "type": "ENUM", + "flags": [ + { + "key": "", + "label": "None", + "description": "" + }, + { + "key": "F1", + "label": "F1", + "description": "F1 Key" + }, + { + "key": "F2", + "label": "F2", + "description": "F2 Key" + }, + { + "key": "F3", + "label": "F3", + "description": "F3 Key" + }, + { + "key": "F4", + "label": "F4", + "description": "F4 Key" + }, + { + "key": "F5", + "label": "F5", + "description": "F5 Key" + }, + { + "key": "F6", + "label": "F6", + "description": "F6 Key" + }, + { + "key": "F7", + "label": "F7", + "description": "F7 Key" + }, + { + "key": "F8", + "label": "F8", + "description": "F8 Key" + }, + { + "key": "F9", + "label": "F9", + "description": "F9 Key" + }, + { + "key": "F10", + "label": "F10", + "description": "F10 Key" + }, + { + "key": "F11", + "label": "F11", + "description": "F11 Key" + }, + { + "key": "F12", + "label": "F12", + "description": "F12 Key" + }, + { + "key": "TAB", + "label": "TAB", + "description": "TAB Key" + }, + { + "key": "CONTROL", + "label": "CONTROL", + "description": "CONTROL Key" + } + ], + "default": "" + }, + { + "key": "capture_trigger_frames", + "env": "GFXRECON_CAPTURE_TRIGGER_FRAMES", + "label": "Hotkey Capture Frame Limit", + "description": "Specify a limit on the number of frames to be captured via hotkey. Example: 1 will capture exactly one frame when the trigger key is pressed. Default is: Empty string (no limit)", + "type": "STRING", + "default": "" + }, + { + "key": "capture_frames", + "env": "GFXRECON_CAPTURE_FRAMES", + "label": "Capture Specific Frames", + "description": "Specify one or more comma-separated frame ranges to capture. Each range will be written to its own file. A frame range can be specified as a single value, to specify a single frame to capture, or as two hyphenated values, to specify the first and last frame to capture. Frame ranges should be specified in ascending order and cannot overlap. Note that frame numbering is 1-based (i.e. the first frame is frame 1). Example: 200,301-305 will create two capture files, one containing a single frame and one containing five frames. Default is: Empty string (all frames are captured).", + "type": "STRING", + "default": "" + }, + { + "key": "capture_process_name", + "env": "GFXRECON_CAPTURE_PROCESS_NAME", + "label": "Capture Specific process", + "description": "Specify one process name to capture.", + "type": "STRING", + "default": "" + }, + { + "key": "capture_file", + "env": "GFXRECON_CAPTURE_FILE", + "label": "Capture File Name", + "description": "Path to use when creating the capture file. Default is: gfxrecon_capture.gfxr", + "type": "SAVE_FILE", + "filter": "*.gfxr", + "default": "gfxrecon_capture.gfxr", + "settings": [ + { + "key": "capture_file_timestamp", + "env": "GFXRECON_CAPTURE_FILE_TIMESTAMP", + "label": "Capture File Name with Timestamp", + "description": "Add a timestamp (yyyymmddThhmmss) postfix to the capture file name.", + "type": "BOOL", + "default": true + }, + { + "key": "capture_file_flush", + "env": "GFXRECON_CAPTURE_FILE_FLUSH", + "label": "Capture File Flush After Write", + "description": "Flush output stream after each packet is written to the capture file. Default is: false.", + "type": "BOOL", + "default": false + } + ] + }, + { + "key": "capture_compression_type", + "env": "GFXRECON_CAPTURE_COMPRESSION_TYPE", + "label": "Compression Format", + "description": "Compression format to use with the capture file. Valid values are: LZ4, ZLIB, ZSTD, and NONE. Default is: LZ4", + "type": "ENUM", + "flags": [ + { + "key": "LZ4", + "label": "LZ4", + "description": "Fastest compression algorithm that favors performance over compression ratio." + }, + { + "key": "ZLIB", + "label": "ZLIB", + "description": "Widely used compression algorithm with better compression ratio than LZ4 but worse performance." + }, + { + "key": "ZSTD", + "label": "ZSTD", + "description": "Newer compression algorithm with better compression ratio and performance than ZLIB, though not as fast as LZ4." + }, + { + "key": "NONE", + "label": "NONE", + "description": "No compression" + } + ], + "default": "LZ4" + }, + { + "key": "capture_environment", + "env": "GFXRECON_CAPTURE_ENVIRONMENT", + "label": "Capture Environment", + "description": "List of environment variables to capture.", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "type": "LIST", + "default": [] + }, + { + "key": "memory_tracking_mode", + "env": "GFXRECON_MEMORY_TRACKING_MODE", + "label": "Memory Tracking Mode", + "description": "Specifies the memory tracking mode to use for detecting modifications to mapped Vulkan memory objects. Available options are: page_guard, assisted, and unassisted.", + "type": "ENUM", + "flags": [ + { + "key": "page_guard", + "label": "page_guard", + "description": "Tracks modifications to individual memory pages, which are written to the capture file on calls to vkFlushMappedMemoryRanges, vkUnmapMemory, and vkQueueSubmit. Tracking modifications requires allocating shadow memory for all mapped memory." + }, + { + "key": "assisted", + "label": "assisted", + "description": "Expects the application to call vkFlushMappedMemoryRanges after memory is modified; the memory ranges specified to the vkFlushMappedMemoryRanges call will be written to the capture file during the call." + }, + { + "key": "unassisted", + "label": "unassisted", + "description": "Writes the full content of mapped memory to the capture file on calls to vkUnmapMemory and vkQueueSubmit. It is very inefficient and may be unusable with real-world applications that map large amounts of memory." + } + ], + "default": "page_guard", + "settings": [ + { + "key": "page_guard_copy_on_map", + "env": "GFXRECON_PAGE_GUARD_COPY_ON_MAP", + "label": "Page Guard Copy on Map", + "description": "When the page_guard memory tracking mode is enabled, copies the content of the mapped memory to the shadow memory immediately after the memory is mapped.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "memory_tracking_mode", + "value": "page_guard" + } + ] + } + }, + { + "key": "page_guard_separate_read", + "env": "GFXRECON_PAGE_GUARD_SEPARATE_READ", + "label": "Page Guard Separate Read Tracking", + "description": "When the page_guard memory tracking mode is enabled, copies the content of pages accessed for read from mapped memory to shadow memory on each read. Can overwrite unprocessed shadow memory content when an application is reading from and writing to the same page.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "memory_tracking_mode", + "value": "page_guard" + } + ] + } + }, + { + "key": "page_guard_external_memory", + "env": "GFXRECON_PAGE_GUARD_EXTERNAL_MEMORY", + "label": "Page Guard External Memory", + "description": "When the page_guard memory tracking mode is enabled, use the VK_EXT_external_memory_host extension to eliminate the need for shadow memory allocations. For each memory allocation from a host visible memory type, the capture layer will create an allocation from system memory, which it can monitor for write access, and provide that allocation to vkAllocateMemory as external memory. Only available on Windows.", + "platforms": [ "WINDOWS" ], + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "memory_tracking_mode", + "value": "page_guard" + } + ] + } + }, + { + "key": "page_guard_persistent_memory", + "env": "GFXRECON_PAGE_GUARD_PERSISTENT_MEMORY", + "label": "Page Guard Persistent Memory", + "description": "When the page_guard memory tracking mode is enabled, this option changes the way that the shadow memory used to detect modifications to mapped memory is allocated. The default behavior is to allocate and copy the mapped memory range on map and free the allocation on unmap. When this option is enabled, an allocation with a size equal to that of the object being mapped is made once on the first map and is not freed until the object is destroyed. This option is intended to be used with applications that frequently map and unmap large memory ranges, to avoid frequent allocation and copy operations that can have a negative impact on performance. This option is ignored when GFXRECON_PAGE_GUARD_EXTERNAL_MEMORY is enabled.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "memory_tracking_mode", + "value": "page_guard" + }, + { + "key": "page_guard_external_memory", + "value": false + } + ] + } + }, + { + "key": "page_guard_align_buffer_sizes", + "env": "GFXRECON_PAGE_GUARD_ALIGN_BUFFER_SIZES", + "label": "Page Guard Align Buffer Sizes", + "description": "When the page_guard memory tracking mode is enabled, this option overrides the Vulkan API calls that report buffer memory properties to report that buffer sizes and alignments must be a multiple of the system page size. This option is intended to be used with applications that perform CPU writes and GPU writes/copies to different buffers that are bound to the same page of mapped memory, which may result in data being lost when copying pages from the page_guard shadow allocation to the real allocation. This data loss can result in visible corruption during capture. Forcing buffer sizes and alignments to a multiple of the system page size prevents multiple buffers from being bound to the same page, avoiding data loss from simultaneous CPU writes to the shadow allocation and GPU writes to the real allocation for different buffers bound to the same page. This option is only available for the Vulkan API.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "memory_tracking_mode", + "value": "page_guard" + }, + { + "key": "page_guard_external_memory", + "value": false + } + ] + } + }, + { + "key": "page_guard_unblock_sigsegv", + "env": "GFXRECON_PAGE_GUARD_UNBLOCK_SIGSEGV", + "label": "Page Guard unblock SIGSEGV from thread's signal mask", + "description": "When the page_guard memory tracking mode is enabled, this option overrides enables SIGSEGV in thread's signal mask in the case that it has been disabled.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "memory_tracking_mode", + "value": "page_guard" + }, + { + "key": "page_guard_external_memory", + "value": false + } + ] + } + } + ] + }, + { + "key": "log", + "label": "Log", + "description": "Control log messages.", + "type": "GROUP", + "settings": [ + { + "key": "log_level", + "env": "GFXRECON_LOG_LEVEL", + "label": "Level", + "description": "Specify the minimum severity level of messages to log. Options are: debug, info, warning, error, and fatal. The specified level and all higher levels will be enabled for logging. For example, choosing the warning level will also enable the error and fatal levels.", + "type": "ENUM", + "flags": [ + { + "key": "debug", + "label": "debug, info, warning, error, fatal", + "description": "" + }, + { + "key": "info", + "label": "info, warning, error, fatal", + "description": "" + }, + { + "key": "warning", + "label": "warning, error, fatal", + "description": "" + }, + { + "key": "error", + "label": "error, fatal", + "description": "" + }, + { + "key": "fatal", + "label": "fatal", + "description": "" + } + ], + "default": "info" + }, + { + "key": "log_detailed", + "env": "GFXRECON_LOG_DETAILED", + "label": "Log Name and Line Number", + "description": "Include name and line number from the file responsible.", + "type": "BOOL", + "default": false + }, + { + "key": "log_allow_indents", + "env": "GFXRECON_LOG_ALLOW_INDENTS", + "label": "Apply additional indentation", + "description": "Apply additional indentation formatting to log messages.", + "type": "BOOL", + "default": false + }, + { + "key": "log_output_to_console", + "env": "GFXRECON_LOG_OUTPUT_TO_CONSOLE", + "label": "Log Output to Console / stdout", + "description": "Log messages will be written to stdout.", + "type": "BOOL", + "default": true + }, + { + "key": "log_break_on_error", + "env": "GFXRECON_LOG_BREAK_ON_ERROR", + "label": "Trigger Debug Break on Error", + "description": "Trigger a debug break when logging an error.", + "type": "BOOL", + "default": false + }, + { + "key": "log_output_to_os_debug_string", + "env": "GFXRECON_LOG_OUTPUT_TO_OS_DEBUG_STRING", + "label": "Log Output to Debug Console", + "description": "Windows only option. Log messages will be written to the Debug Console with OutputDebugStringA", + "platforms": [ "WINDOWS" ], + "type": "BOOL", + "default": false + }, + { + "key": "log_file", + "env": "GFXRECON_LOG_FILE", + "label": "Log File", + "description": "When set, log messages will be written to a file at the specified path. Default is: Empty string (file logging disabled).", + "type": "SAVE_FILE", + "filter": "*.txt", + "default": "", + "settings": [ + { + "key": "log_file_flush_after_write", + "env": "GFXRECON_LOG_FILE_FLUSH_AFTER_WRITE", + "label": "Log File Flush After Write", + "description": "Flush the log file to disk after each write when true.", + "type": "BOOL", + "default": false + }, + { + "key": "log_file_keep_open", + "env": "GFXRECON_LOG_FILE_KEEP_OPEN", + "label": "Log File Keep Open", + "description": "Keep the log file open between log messages when true, or close and reopen the log file for each message when false.", + "type": "BOOL", + "default": true + }, + { + "key": "log_file_create_new", + "env": "GFXRECON_LOG_FILE_CREATE_NEW", + "label": "Log File Overwrite", + "description": "Specifies that log file initialization should overwrite an existing file when true, or append to an existing file when false.", + "type": "BOOL", + "default": true + } + ] + } + ] + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_khronos_profiles.json b/vulkan/Bin/VkLayer_khronos_profiles.json new file mode 100644 index 0000000000000000000000000000000000000000..5969453cd22b84a694feac45bdebc879e5b025c9 --- /dev/null +++ b/vulkan/Bin/VkLayer_khronos_profiles.json @@ -0,0 +1,1211 @@ +{ + "file_format_version": "1.2.1", + "layer": { + "name": "VK_LAYER_KHRONOS_profiles", + "type": "GLOBAL", + "library_path": ".\\VkLayer_khronos_profiles.dll", + "api_version": "1.4.341", + "implementation_version": "1.3.0", + "status": "STABLE", + "description": "Khronos Profiles layer", + "introduction": "The Khronos Profiles layer helps test across a wide range of hardware capabilities without requiring a physical copy of every device.", + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/profiles_layer.html", + "instance_extensions": [ + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ + "vkGetPhysicalDeviceToolPropertiesEXT" + ] + } + ], + "features": { + "presets": [ + { + "label": "Emulate a Vulkan Conformant Profile", + "description": "Emulate a Conformant Vulkan Profile", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "status": "STABLE", + "settings": [ + { + "key": "profile_emulation", + "value": true + }, + { + "key": "profile_dirs", + "value": "${VULKAN_CONTENT}/VK_LAYER_KHRONOS_profiles" + }, + { + "key": "profile_name", + "value": "VP_LUNARG_desktop_baseline_2023" + }, + { + "key": "simulate_capabilities", + "value": [ "SIMULATE_API_VERSION_BIT", "SIMULATE_FEATURES_BIT", "SIMULATE_PROPERTIES_BIT" ] + }, + { + "key": "emulate_portability", + "value": false + } + ] + }, + { + "label": "Emulate a Vulkan Portability Profile", + "description": "Emulate a Vulkan Profile with Vulkan Portability", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "status": "STABLE", + "settings": [ + { + "key": "profile_emulation", + "value": true + }, + { + "key": "profile_dirs", + "value": "${VULKAN_CONTENT}/VK_LAYER_KHRONOS_profiles" + }, + { + "key": "profile_name", + "value": "VP_LUNARG_desktop_baseline_2023" + }, + { + "key": "simulate_capabilities", + "value": [ "SIMULATE_API_VERSION_BIT", "SIMULATE_FEATURES_BIT", "SIMULATE_PROPERTIES_BIT" ] + }, + { + "key": "emulate_portability", + "value": true + }, + { + "key": "vertexAttributeAccessBeyondStride", + "value": true + }, + { + "key": "separateStencilMaskRef", + "value": true + }, + { + "key": "mutableComparisonSamplers", + "value": true + }, + { + "key": "multisampleArrayImage", + "value": true + }, + { + "key": "imageViewFormatSwizzle", + "value": true + }, + { + "key": "imageViewFormatReinterpretation", + "value": true + }, + { + "key": "events", + "value": true + }, + { + "key": "constantAlphaColorBlendFactors", + "value": true + } + ] + } + ], + "settings": [ + { + "key": "profile_emulation", + "label": "Emulate a Vulkan Profile", + "description": "Emulate a Vulkan Profile on the Developer System", + "status": "STABLE", + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "profile_dirs", + "label": "Loading Directory", + "description": "Select the location all the profiles.", + "type": "LOAD_FOLDER", + "format": "PROFILE", + "default": "", + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "profile_emulation", + "value": true + } + ] + } + }, + { + "key": "profile_name", + "label": "Name", + "description": "Name of the profile specified by the profile file to use.", + "type": "ENUM", + "flags": [], + "default": "${VP_DEFAULT}", + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "profile_emulation", + "value": true + } + ] + } + }, + { + "key": "profile_validation", + "label": "Schema Validation", + "description": "Validate the profile files against the Vulkan SDK profile schema if the file is found.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "profile_emulation", + "value": true + } + ] + } + } + ] + }, + { + "key": "simulate_capabilities", + "label": "Simulate Profile Capabilities", + "description": "Control of the simulated capabilities of the Vulkan physical device from the selected Vulkan Profile.", + "status": "STABLE", + "type": "FLAGS", + "flags": [ + { + "key": "SIMULATE_API_VERSION_BIT", + "label": "Version", + "description": "The Vulkan device will report the API version from the selected Profile. It also overrides the `api-version` set in VkPhysicalDeviceProperties." + }, + { + "key": "SIMULATE_FEATURES_BIT", + "label": "Features", + "description": "The Vulkan device will report the features from the selected Profile.", + "settings": [ + { + "key": "default_feature_values", + "label": "Unspecified Features", + "description": "Feature values when not specified in the select Vulkan profiles.", + "status": "STABLE", + "type": "ENUM", + "default": "DEFAULT_FEATURE_VALUES_DEVICE", + "flags": [ + { + "key": "DEFAULT_FEATURE_VALUES_DEVICE", + "label": "Use Device Values", + "description": "When a feature is not mentioned in the select Vulkan profiles, set is to the physical device value." + }, + { + "key": "DEFAULT_FEATURE_VALUES_FALSE", + "label": "Use False", + "description": "When a feature is not mentioned in the select Vulkan profiles, set it to false." + } + ] + }, + { + "key": "unknown_feature_values", + "label": "Unknown Features", + "description": "Feature values when unrecongnized by Vulkan profiles.", + "status": "STABLE", + "type": "ENUM", + "default": "UNKNOWN_FEATURE_VALUES_UNCHANGED", + "flags": [ + { + "key": "UNKNOWN_FEATURE_VALUES_UNCHANGED", + "label": "Unmodified", + "description": "When a feature is not recognized by Vulkan profiles, skip it." + }, + { + "key": "UNKNOWN_FEATURE_VALUES_DEVICE", + "label": "Use Device Values", + "description": "When a feature is not recognized by Vulkan profiles, attempt to load device values." + } + ] + } + ] + }, + { + "key": "SIMULATE_PROPERTIES_BIT", + "label": "Properties", + "description": "The Vulkan device will report the properties from the selected Profile." + }, + { + "key": "SIMULATE_EXTENSIONS_BIT", + "label": "Device Extensions", + "description": "The Vulkan device will report the extensions from the selected Profile." + }, + { + "key": "SIMULATE_FORMATS_BIT", + "label": "Formats", + "description": "The Vulkan device will report the formats from the selected Profile." + }, + { + "key": "SIMULATE_VIDEO_CAPABILITIES_BIT", + "label": "Video Capabilities", + "description": "The Vulkan device will report video capabilities from the selected Profile." + }, + { + "key": "SIMULATE_VIDEO_FORMATS_BIT", + "label": "Video Formats", + "description": "The Vulkan device will report video formats from the selected Profile." + } + ], + "default": [ "SIMULATE_API_VERSION_BIT", "SIMULATE_FEATURES_BIT", "SIMULATE_PROPERTIES_BIT" ] + }, + { + "key": "emulate_portability", + "label": "Emulate VK_KHR_portability_subset", + "description": "Emulate the VK_KHR_portability_subset extension on the device.", + "status": "STABLE", + "platforms": [ + "WINDOWS", + "LINUX" + ], + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "constantAlphaColorBlendFactors", + "label": "constantAlphaColorBlendFactors", + "description": "Indicates whether this implementation supports constant alpha Blend Factors used as source or destination color Blending.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "events", + "label": "events", + "description": "Indicates whether this implementation supports synchronization using Events", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "imageViewFormatReinterpretation", + "label": "imageViewFormatReinterpretation", + "description": "Indicates whether this implementation supports a VkImageView being created with a texel format containing a different number of components, or a different number of bits in each component, than the texel format of the underlying VkImage.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "imageViewFormatSwizzle", + "label": "imageViewFormatSwizzle", + "description": "Indicates whether this implementation supports remapping format components using VkImageViewCreateInfo::components.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "imageView2DOn3DImage", + "label": "imageView2DOn3DImage", + "description": "Indicates whether this implementation supports a VkImage being created with the VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT flag set, permitting a 2D or 2D array image view to be created on a 3D VkImage.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "multisampleArrayImage", + "label": "multisampleArrayImage", + "description": "Indicates whether this implementation supports a VkImage being created as a 2D array with multiple samples per texel.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "mutableComparisonSamplers", + "label": "mutableComparisonSamplers", + "description": "Indicates whether this implementation allows descriptors with comparison samplers to be updated.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "pointPolygons", + "label": "pointPolygons", + "description": "Indicates whether this implementation supports Rasterization using a point Polygon Mode.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "samplerMipLodBias", + "label": "samplerMipLodBias", + "description": "Indicates whether this implementation supports setting a mipmap LOD bias value when creating a sampler.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "separateStencilMaskRef", + "label": "separateStencilMaskRef", + "description": "Indicates whether this implementation supports separate front and back Stencil Test reference values.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "shaderSampleRateInterpolationFunctions", + "label": "shaderSampleRateInterpolationFunctions", + "description": "Indicates whether this implementation supports fragment shaders which use the InterpolationFunction capability.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "tessellationIsolines", + "label": "tessellationIsolines", + "description": "Indicates whether this implementation supports isoline output from the Tessellation stage of a graphics pipeline. This member is only meaningful if tessellationShader are supported.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "triangleFans", + "label": "triangleFans", + "description": "Indicates whether this implementation supports Triangle Fans primitive topology.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + } + }, + { + "key": "vertexAttributeAccessBeyondStride", + "label": "vertexAttributeAccessBeyondStride", + "description": "Indicates whether this implementation supports accessing a vertex input attribute beyond the stride of the corresponding vertex input binding.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "emulate_portability", + "value": true + } + ] + }, + "settings": [ + { + "key": "minVertexInputBindingStrideAlignment", + "label": "minVertexInputBindingStrideAlignment", + "description": "Indicates whether this implementation supports accessing a vertex input attribute beyond the stride of the corresponding vertex input binding.", + "type": "INT", + "default": 4, + "platforms": [ "WINDOWS", "LINUX" ], + "dependence": { + "mode": "ALL", + "settings": [ + { + "key": "vertexAttributeAccessBeyondStride", + "value": false + } + ] + } + } + ] + } + ] + }, + { + "key": "exclude_device_extensions", + "label": "Exclude Device Extensions", + "description": "Removes the listed device extensions from being reported by the Vulkan physical device.", + "status": "STABLE", + "type": "LIST", + "list": [ + "VK_KHR_16bit_storage", + "VK_KHR_8bit_storage", + "VK_KHR_acceleration_structure", + "VK_KHR_bind_memory2", + "VK_KHR_buffer_device_address", + "VK_KHR_copy_commands2", + "VK_KHR_create_renderpass2", + "VK_KHR_dedicated_allocation", + "VK_KHR_deferred_host_operations", + "VK_KHR_depth_stencil_resolve", + "VK_KHR_descriptor_update_template", + "VK_KHR_device_group", + "VK_KHR_display_swapchain", + "VK_KHR_draw_indirect_count", + "VK_KHR_driver_properties", + "VK_KHR_dynamic_rendering", + "VK_KHR_external_fence", + "VK_KHR_external_fence_fd", + "VK_KHR_external_fence_win32", + "VK_KHR_external_memory", + "VK_KHR_external_memory_fd", + "VK_KHR_external_memory_win32", + "VK_KHR_external_semaphore", + "VK_KHR_external_semaphore_fd", + "VK_KHR_external_semaphore_win32", + "VK_KHR_format_feature_flags2", + "VK_KHR_fragment_shading_rate", + "VK_KHR_get_memory_requirements2", + "VK_KHR_image_format_list", + "VK_KHR_imageless_framebuffer", + "VK_KHR_incremental_present", + "VK_KHR_maintenance1", + "VK_KHR_maintenance2", + "VK_KHR_maintenance3", + "VK_KHR_maintenance4", + "VK_KHR_multiview", + "VK_KHR_performance_query", + "VK_KHR_pipeline_executable_properties", + "VK_KHR_pipeline_library", + "VK_KHR_portability_subset", + "VK_KHR_present_id", + "VK_KHR_present_wait", + "VK_KHR_push_descriptor", + "VK_KHR_ray_query", + "VK_KHR_ray_tracing_pipeline", + "VK_KHR_relaxed_block_layout", + "VK_KHR_sampler_mirror_clamp_to_edge", + "VK_KHR_sampler_ycbcr_conversion", + "VK_KHR_separate_depth_stencil_layouts", + "VK_KHR_shader_atomic_int64", + "VK_KHR_shader_clock", + "VK_KHR_shader_draw_parameters", + "VK_KHR_shader_float16_int8", + "VK_KHR_shader_float_controls", + "VK_KHR_shader_integer_dot_product", + "VK_KHR_shader_non_semantic_info", + "VK_KHR_shader_subgroup_extended_types", + "VK_KHR_shader_subgroup_uniform_control_flow", + "VK_KHR_shader_terminate_invocation", + "VK_KHR_shared_presentable_image", + "VK_KHR_spirv_1_4", + "VK_KHR_storage_buffer_storage_class", + "VK_KHR_swapchain", + "VK_KHR_swapchain_mutable_format", + "VK_KHR_synchronization2", + "VK_KHR_timeline_semaphore", + "VK_KHR_uniform_buffer_standard_layout", + "VK_KHR_variable_pointers", + "VK_KHR_video_decode_queue", + "VK_KHR_video_encode_queue", + "VK_KHR_video_queue", + "VK_KHR_vulkan_memory_model", + "VK_KHR_win32_keyed_mutex", + "VK_KHR_workgroup_memory_explicit_layout", + "VK_KHR_zero_initialize_workgroup_memory", + "VK_EXT_4444_formats", + "VK_EXT_astc_decode_mode", + "VK_EXT_blend_operation_advanced", + "VK_EXT_border_color_swizzle", + "VK_EXT_buffer_device_address", + "VK_EXT_calibrated_timestamps", + "VK_EXT_color_write_enable", + "VK_EXT_conditional_rendering", + "VK_EXT_conservative_rasterization", + "VK_EXT_custom_border_color", + "VK_EXT_debug_marker", + "VK_EXT_depth_clip_control", + "VK_EXT_depth_clip_enable", + "VK_EXT_depth_range_unrestricted", + "VK_EXT_descriptor_indexing", + "VK_EXT_device_memory_report", + "VK_EXT_discard_rectangles", + "VK_EXT_display_control", + "VK_EXT_extended_dynamic_state", + "VK_EXT_extended_dynamic_state2", + "VK_EXT_external_memory_dma_buf", + "VK_EXT_external_memory_host", + "VK_EXT_filter_cubic", + "VK_EXT_fragment_density_map", + "VK_EXT_fragment_density_map2", + "VK_EXT_fragment_shader_interlock", + "VK_EXT_full_screen_exclusive", + "VK_EXT_global_priority", + "VK_EXT_global_priority_query", + "VK_EXT_hdr_metadata", + "VK_EXT_host_query_reset", + "VK_EXT_image_drm_format_modifier", + "VK_EXT_image_robustness", + "VK_EXT_image_view_min_lod", + "VK_EXT_index_type_uint8", + "VK_EXT_inline_uniform_block", + "VK_EXT_line_rasterization", + "VK_EXT_load_store_op_none", + "VK_EXT_memory_budget", + "VK_EXT_memory_priority", + "VK_EXT_multi_draw", + "VK_EXT_pageable_device_local_memory", + "VK_EXT_pci_bus_info", + "VK_EXT_physical_device_drm", + "VK_EXT_pipeline_creation_cache_control", + "VK_EXT_pipeline_creation_feedback", + "VK_EXT_post_depth_coverage", + "VK_EXT_primitive_topology_list_restart", + "VK_EXT_private_data", + "VK_EXT_provoking_vertex", + "VK_EXT_queue_family_foreign", + "VK_EXT_rgba10x6_formats", + "VK_EXT_robustness2", + "VK_EXT_sample_locations", + "VK_EXT_sampler_filter_minmax", + "VK_EXT_scalar_block_layout", + "VK_EXT_separate_stencil_usage", + "VK_EXT_shader_atomic_float", + "VK_EXT_shader_atomic_float2", + "VK_EXT_shader_demote_to_helper_invocation", + "VK_EXT_shader_image_atomic_int64", + "VK_EXT_shader_stencil_export", + "VK_EXT_shader_subgroup_ballot", + "VK_EXT_shader_subgroup_vote", + "VK_EXT_shader_viewport_index_layer", + "VK_EXT_subgroup_size_control", + "VK_EXT_texel_buffer_alignment", + "VK_EXT_texture_compression_astc_hdr", + "VK_EXT_tooling_info", + "VK_EXT_transform_feedback", + "VK_EXT_validation_cache", + "VK_EXT_vertex_attribute_divisor", + "VK_EXT_vertex_input_dynamic_state", + "VK_EXT_video_decode_h264", + "VK_EXT_video_decode_h265", + "VK_EXT_video_encode_h264", + "VK_EXT_video_encode_h265", + "VK_EXT_ycbcr_2plane_444_formats", + "VK_EXT_ycbcr_image_arrays", + "VK_AMD_buffer_marker", + "VK_AMD_device_coherent_memory", + "VK_AMD_display_native_hdr", + "VK_AMD_draw_indirect_count", + "VK_AMD_gcn_shader", + "VK_AMD_gpu_shader_half_float", + "VK_AMD_gpu_shader_int16", + "VK_AMD_memory_overallocation_behavior", + "VK_AMD_mixed_attachment_samples", + "VK_AMD_negative_viewport_height", + "VK_AMD_pipeline_compiler_control", + "VK_AMD_rasterization_order", + "VK_AMD_shader_ballot", + "VK_AMD_shader_core_properties", + "VK_AMD_shader_core_properties2", + "VK_AMD_shader_explicit_vertex_parameter", + "VK_AMD_shader_fragment_mask", + "VK_AMD_shader_image_load_store_lod", + "VK_AMD_shader_info", + "VK_AMD_shader_trinary_minmax", + "VK_AMD_texture_gather_bias_lod", + "VK_ANDROID_external_memory_android_hardware_buffer", + "VK_ARM_rasterization_order_attachment_access", + "VK_FUCHSIA_buffer_collection", + "VK_FUCHSIA_external_memory", + "VK_FUCHSIA_external_semaphore", + "VK_GGP_frame_token", + "VK_GOOGLE_decorate_string", + "VK_GOOGLE_display_timing", + "VK_GOOGLE_hlsl_functionality1", + "VK_GOOGLE_user_type", + "VK_HUAWEI_invocation_mask", + "VK_HUAWEI_subpass_shading", + "VK_IMG_filter_cubic", + "VK_IMG_format_pvrtc", + "VK_INTEL_performance_query", + "VK_INTEL_shader_integer_functions2", + "VK_NV_acquire_winrt_display", + "VK_NV_clip_space_w_scaling", + "VK_NV_compute_shader_derivatives", + "VK_NV_cooperative_matrix", + "VK_NV_corner_sampled_image", + "VK_NV_coverage_reduction_mode", + "VK_NV_dedicated_allocation", + "VK_NV_dedicated_allocation_image_aliasing", + "VK_NV_device_diagnostic_checkpoints", + "VK_NV_device_diagnostics_config", + "VK_NV_device_generated_commands", + "VK_NV_external_memory", + "VK_NV_external_memory_rdma", + "VK_NV_external_memory_win32", + "VK_NV_fill_rectangle", + "VK_NV_fragment_coverage_to_color", + "VK_NV_fragment_shader_barycentric", + "VK_NV_fragment_shading_rate_enums", + "VK_NV_framebuffer_mixed_samples", + "VK_NV_geometry_shader_passthrough", + "VK_NV_glsl_shader", + "VK_NV_inherited_viewport_scissor", + "VK_NV_mesh_shader", + "VK_NV_ray_tracing", + "VK_NV_ray_tracing_motion_blur", + "VK_NV_representative_fragment_test", + "VK_NV_sample_mask_override_coverage", + "VK_NV_scissor_exclusive", + "VK_NV_shader_image_footprint", + "VK_NV_shader_sm_builtins", + "VK_NV_shader_subgroup_partitioned", + "VK_NV_shading_rate_image", + "VK_NV_viewport_array2", + "VK_NV_viewport_swizzle", + "VK_NV_win32_keyed_mutex", + "VK_QCOM_render_pass_shader_resolve", + "VK_QCOM_render_pass_store_ops", + "VK_QCOM_render_pass_transform", + "VK_QCOM_rotated_copy_commands", + "VK_VALVE_mutable_descriptor_type", + "VK_QCOM_fragment_density_map_offset", + "VK_NV_linear_color_attachment", + "VK_KHR_global_priority" + ], + "default": [] + }, + { + "key": "exclude_formats", + "label": "Exclude Formats", + "description": "Removes the format feature flags from being reported by the Vulkan physical device.", + "status": "STABLE", + "type": "LIST", + "list": [ + "VK_FORMAT_R4G4_UNORM_PACK8", + "VK_FORMAT_R4G4B4A4_UNORM_PACK16", + "VK_FORMAT_B4G4R4A4_UNORM_PACK16", + "VK_FORMAT_R5G6B5_UNORM_PACK16", + "VK_FORMAT_B5G6R5_UNORM_PACK16", + "VK_FORMAT_R5G5B5A1_UNORM_PACK16", + "VK_FORMAT_B5G5R5A1_UNORM_PACK16", + "VK_FORMAT_A1R5G5B5_UNORM_PACK16", + "VK_FORMAT_R8_UNORM", + "VK_FORMAT_R8_SNORM", + "VK_FORMAT_R8_USCALED", + "VK_FORMAT_R8_SSCALED", + "VK_FORMAT_R8_UINT", + "VK_FORMAT_R8_SINT", + "VK_FORMAT_R8_SRGB", + "VK_FORMAT_R8G8_UNORM", + "VK_FORMAT_R8G8_SNORM", + "VK_FORMAT_R8G8_USCALED", + "VK_FORMAT_R8G8_SSCALED", + "VK_FORMAT_R8G8_UINT", + "VK_FORMAT_R8G8_SINT", + "VK_FORMAT_R8G8_SRGB", + "VK_FORMAT_R8G8B8_UNORM", + "VK_FORMAT_R8G8B8_SNORM", + "VK_FORMAT_R8G8B8_USCALED", + "VK_FORMAT_R8G8B8_SSCALED", + "VK_FORMAT_R8G8B8_UINT", + "VK_FORMAT_R8G8B8_SINT", + "VK_FORMAT_R8G8B8_SRGB", + "VK_FORMAT_B8G8R8_UNORM", + "VK_FORMAT_B8G8R8_SNORM", + "VK_FORMAT_B8G8R8_USCALED", + "VK_FORMAT_B8G8R8_SSCALED", + "VK_FORMAT_B8G8R8_UINT", + "VK_FORMAT_B8G8R8_SINT", + "VK_FORMAT_B8G8R8_SRGB", + "VK_FORMAT_R8G8B8A8_UNORM", + "VK_FORMAT_R8G8B8A8_SNORM", + "VK_FORMAT_R8G8B8A8_USCALED", + "VK_FORMAT_R8G8B8A8_SSCALED", + "VK_FORMAT_R8G8B8A8_UINT", + "VK_FORMAT_R8G8B8A8_SINT", + "VK_FORMAT_R8G8B8A8_SRGB", + "VK_FORMAT_B8G8R8A8_UNORM", + "VK_FORMAT_B8G8R8A8_SNORM", + "VK_FORMAT_B8G8R8A8_USCALED", + "VK_FORMAT_B8G8R8A8_SSCALED", + "VK_FORMAT_B8G8R8A8_UINT", + "VK_FORMAT_B8G8R8A8_SINT", + "VK_FORMAT_B8G8R8A8_SRGB", + "VK_FORMAT_A8B8G8R8_UNORM_PACK32", + "VK_FORMAT_A8B8G8R8_SNORM_PACK32", + "VK_FORMAT_A8B8G8R8_USCALED_PACK32", + "VK_FORMAT_A8B8G8R8_SSCALED_PACK32", + "VK_FORMAT_A8B8G8R8_UINT_PACK32", + "VK_FORMAT_A8B8G8R8_SINT_PACK32", + "VK_FORMAT_A8B8G8R8_SRGB_PACK32", + "VK_FORMAT_A2R10G10B10_UNORM_PACK32", + "VK_FORMAT_A2R10G10B10_SNORM_PACK32", + "VK_FORMAT_A2R10G10B10_USCALED_PACK32", + "VK_FORMAT_A2R10G10B10_SSCALED_PACK32", + "VK_FORMAT_A2R10G10B10_UINT_PACK32", + "VK_FORMAT_A2R10G10B10_SINT_PACK32", + "VK_FORMAT_A2B10G10R10_UNORM_PACK32", + "VK_FORMAT_A2B10G10R10_SNORM_PACK32", + "VK_FORMAT_A2B10G10R10_USCALED_PACK32", + "VK_FORMAT_A2B10G10R10_SSCALED_PACK32", + "VK_FORMAT_A2B10G10R10_UINT_PACK32", + "VK_FORMAT_A2B10G10R10_SINT_PACK32", + "VK_FORMAT_R16_UNORM", + "VK_FORMAT_R16_SNORM", + "VK_FORMAT_R16_USCALED", + "VK_FORMAT_R16_SSCALED", + "VK_FORMAT_R16_UINT", + "VK_FORMAT_R16_SINT", + "VK_FORMAT_R16_SFLOAT", + "VK_FORMAT_R16G16_UNORM", + "VK_FORMAT_R16G16_SNORM", + "VK_FORMAT_R16G16_USCALED", + "VK_FORMAT_R16G16_SSCALED", + "VK_FORMAT_R16G16_UINT", + "VK_FORMAT_R16G16_SINT", + "VK_FORMAT_R16G16_SFLOAT", + "VK_FORMAT_R16G16B16_UNORM", + "VK_FORMAT_R16G16B16_SNORM", + "VK_FORMAT_R16G16B16_USCALED", + "VK_FORMAT_R16G16B16_SSCALED", + "VK_FORMAT_R16G16B16_UINT", + "VK_FORMAT_R16G16B16_SINT", + "VK_FORMAT_R16G16B16_SFLOAT", + "VK_FORMAT_R16G16B16A16_UNORM", + "VK_FORMAT_R16G16B16A16_SNORM", + "VK_FORMAT_R16G16B16A16_USCALED", + "VK_FORMAT_R16G16B16A16_SSCALED", + "VK_FORMAT_R16G16B16A16_UINT", + "VK_FORMAT_R16G16B16A16_SINT", + "VK_FORMAT_R16G16B16A16_SFLOAT", + "VK_FORMAT_R32_UINT", + "VK_FORMAT_R32_SINT", + "VK_FORMAT_R32_SFLOAT", + "VK_FORMAT_R32G32_UINT", + "VK_FORMAT_R32G32_SINT", + "VK_FORMAT_R32G32_SFLOAT", + "VK_FORMAT_R32G32B32_UINT", + "VK_FORMAT_R32G32B32_SINT", + "VK_FORMAT_R32G32B32_SFLOAT", + "VK_FORMAT_R32G32B32A32_UINT", + "VK_FORMAT_R32G32B32A32_SINT", + "VK_FORMAT_R32G32B32A32_SFLOAT", + "VK_FORMAT_R64_UINT", + "VK_FORMAT_R64_SINT", + "VK_FORMAT_R64_SFLOAT", + "VK_FORMAT_R64G64_UINT", + "VK_FORMAT_R64G64_SINT", + "VK_FORMAT_R64G64_SFLOAT", + "VK_FORMAT_R64G64B64_UINT", + "VK_FORMAT_R64G64B64_SINT", + "VK_FORMAT_R64G64B64_SFLOAT", + "VK_FORMAT_R64G64B64A64_UINT", + "VK_FORMAT_R64G64B64A64_SINT", + "VK_FORMAT_R64G64B64A64_SFLOAT", + "VK_FORMAT_B10G11R11_UFLOAT_PACK32", + "VK_FORMAT_E5B9G9R9_UFLOAT_PACK32", + "VK_FORMAT_D16_UNORM", + "VK_FORMAT_X8_D24_UNORM_PACK32", + "VK_FORMAT_D32_SFLOAT", + "VK_FORMAT_S8_UINT", + "VK_FORMAT_D16_UNORM_S8_UINT", + "VK_FORMAT_D24_UNORM_S8_UINT", + "VK_FORMAT_D32_SFLOAT_S8_UINT", + "VK_FORMAT_BC1_RGB_UNORM_BLOCK", + "VK_FORMAT_BC1_RGB_SRGB_BLOCK", + "VK_FORMAT_BC1_RGBA_UNORM_BLOCK", + "VK_FORMAT_BC1_RGBA_SRGB_BLOCK", + "VK_FORMAT_BC2_UNORM_BLOCK", + "VK_FORMAT_BC2_SRGB_BLOCK", + "VK_FORMAT_BC3_UNORM_BLOCK", + "VK_FORMAT_BC3_SRGB_BLOCK", + "VK_FORMAT_BC4_UNORM_BLOCK", + "VK_FORMAT_BC4_SNORM_BLOCK", + "VK_FORMAT_BC5_UNORM_BLOCK", + "VK_FORMAT_BC5_SNORM_BLOCK", + "VK_FORMAT_BC6H_UFLOAT_BLOCK", + "VK_FORMAT_BC6H_SFLOAT_BLOCK", + "VK_FORMAT_BC7_UNORM_BLOCK", + "VK_FORMAT_BC7_SRGB_BLOCK", + "VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK", + "VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK", + "VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK", + "VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK", + "VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK", + "VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK", + "VK_FORMAT_EAC_R11_UNORM_BLOCK", + "VK_FORMAT_EAC_R11_SNORM_BLOCK", + "VK_FORMAT_EAC_R11G11_UNORM_BLOCK", + "VK_FORMAT_EAC_R11G11_SNORM_BLOCK", + "VK_FORMAT_ASTC_4x4_UNORM_BLOCK", + "VK_FORMAT_ASTC_4x4_SRGB_BLOCK", + "VK_FORMAT_ASTC_5x4_UNORM_BLOCK", + "VK_FORMAT_ASTC_5x4_SRGB_BLOCK", + "VK_FORMAT_ASTC_5x5_UNORM_BLOCK", + "VK_FORMAT_ASTC_5x5_SRGB_BLOCK", + "VK_FORMAT_ASTC_6x5_UNORM_BLOCK", + "VK_FORMAT_ASTC_6x5_SRGB_BLOCK", + "VK_FORMAT_ASTC_6x6_UNORM_BLOCK", + "VK_FORMAT_ASTC_6x6_SRGB_BLOCK", + "VK_FORMAT_ASTC_8x5_UNORM_BLOCK", + "VK_FORMAT_ASTC_8x5_SRGB_BLOCK", + "VK_FORMAT_ASTC_8x6_UNORM_BLOCK", + "VK_FORMAT_ASTC_8x6_SRGB_BLOCK", + "VK_FORMAT_ASTC_8x8_UNORM_BLOCK", + "VK_FORMAT_ASTC_8x8_SRGB_BLOCK", + "VK_FORMAT_ASTC_10x5_UNORM_BLOCK", + "VK_FORMAT_ASTC_10x5_SRGB_BLOCK", + "VK_FORMAT_ASTC_10x6_UNORM_BLOCK", + "VK_FORMAT_ASTC_10x6_SRGB_BLOCK", + "VK_FORMAT_ASTC_10x8_UNORM_BLOCK", + "VK_FORMAT_ASTC_10x8_SRGB_BLOCK", + "VK_FORMAT_ASTC_10x10_UNORM_BLOCK", + "VK_FORMAT_ASTC_10x10_SRGB_BLOCK", + "VK_FORMAT_ASTC_12x10_UNORM_BLOCK", + "VK_FORMAT_ASTC_12x10_SRGB_BLOCK", + "VK_FORMAT_ASTC_12x12_UNORM_BLOCK", + "VK_FORMAT_ASTC_12x12_SRGB_BLOCK", + "VK_FORMAT_G8B8G8R8_422_UNORM", + "VK_FORMAT_B8G8R8G8_422_UNORM", + "VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM", + "VK_FORMAT_G8_B8R8_2PLANE_420_UNORM", + "VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM", + "VK_FORMAT_G8_B8R8_2PLANE_422_UNORM", + "VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM", + "VK_FORMAT_R10X6_UNORM_PACK16", + "VK_FORMAT_R10X6G10X6_UNORM_2PACK16", + "VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16", + "VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16", + "VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16", + "VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16", + "VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16", + "VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16", + "VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16", + "VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16", + "VK_FORMAT_R12X4_UNORM_PACK16", + "VK_FORMAT_R12X4G12X4_UNORM_2PACK16", + "VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16", + "VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16", + "VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16", + "VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16", + "VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16", + "VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16", + "VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16", + "VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16", + "VK_FORMAT_G16B16G16R16_422_UNORM", + "VK_FORMAT_B16G16R16G16_422_UNORM", + "VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM", + "VK_FORMAT_G16_B16R16_2PLANE_420_UNORM", + "VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM", + "VK_FORMAT_G16_B16R16_2PLANE_422_UNORM", + "VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM", + "VK_FORMAT_G8_B8R8_2PLANE_444_UNORM", + "VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16", + "VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16", + "VK_FORMAT_G16_B16R16_2PLANE_444_UNORM", + "VK_FORMAT_A4R4G4B4_UNORM_PACK16", + "VK_FORMAT_A4B4G4R4_UNORM_PACK16", + "VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK", + "VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK", + "VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG", + "VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG", + "VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG", + "VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG", + "VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG", + "VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG", + "VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG", + "VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG" + ], + "default": [] + }, + { + "key": "debug_actions", + "label": "Debug Actions", + "description": "This indicates what action is to be taken when a layer wants to report information", + "status": "STABLE", + "type": "FLAGS", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "flags": [ + { + "key": "DEBUG_ACTION_STDOUT_BIT", + "label": "Log to stdout", + "description": "Log messages using the stdout." + }, + { + "key": "DEBUG_ACTION_OUTPUT_BIT", + "label": "Log to OutputDebugString", + "description": "Log messages using the Windows OutputDebugString for Vulkan Studio output display.", + "platforms": [ "WINDOWS" ] + }, + { + "key": "DEBUG_ACTION_FILE_BIT", + "label": "Log to File", + "description": "Log messages to a file.", + "settings": [ + { + "key": "debug_filename", + "label": "Log Filename", + "description": "Specifies the output filename", + "type": "SAVE_FILE", + "default": "profiles_layer_log.txt", + "dependence": { + "mode": "ANY", + "settings": [ + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_OUTPUT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT", "DEBUG_ACTION_OUTPUT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_OUTPUT_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT", "DEBUG_ACTION_OUTPUT_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + } + ] + } + }, + { + "key": "debug_file_clear", + "label": "Clear Log at Launch", + "description": "Discard the content of the log file between each layer run", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ANY", + "settings": [ + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_OUTPUT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT", "DEBUG_ACTION_OUTPUT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_OUTPUT_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + }, + { + "key": "debug_actions", + "value": [ "DEBUG_ACTION_FILE_BIT", "DEBUG_ACTION_STDOUT_BIT", "DEBUG_ACTION_OUTPUT_BIT", "DEBUG_ACTION_BREAKPOINT_BIT" ] + } + ] + } + } + ], + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "expanded": true + }, + { + "key": "DEBUG_ACTION_BREAKPOINT_BIT", + "label": "Break", + "description": "Trigger a breakpoint if a debugger is in use." + } + ], + "default": [ "DEBUG_ACTION_STDOUT_BIT" ] + }, + { + "key": "debug_fail_on_error", + "label": "Fail on Error", + "description": "If the device doesn't support the capabilities of the selected Profile, the layer fail to load. When enabled, vkEnumeratePhysicalDevices will fail when the selected Profile is not supported.", + "status": "STABLE", + "type": "BOOL", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "default": false + }, + { + "key": "debug_reports", + "label": "Message Types", + "description": "This is a comma-delineated list of options telling the layer what types of messages it should report back", + "status": "STABLE", + "type": "FLAGS", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "flags": [ + { + "key": "DEBUG_REPORT_NOTIFICATION_BIT", + "label": "Notification", + "description": "Report notifications." + }, + { + "key": "DEBUG_REPORT_WARNING_BIT", + "label": "Warning", + "description": "Report warnings from using the API in a manner which may lead to undefined behavior or to warn the user of common trouble spots. A warning does NOT necessarily signify illegal application behavior." + }, + { + "key": "DEBUG_REPORT_ERROR_BIT", + "label": "Error", + "description": "Report errors in API usage." + }, + { + "key": "DEBUG_REPORT_DEBUG_BIT", + "label": "Debug", + "description": "Report debug information for the Profiles Layer development.", + "view": "DEBUG" + } + ], + "default": [ + "DEBUG_REPORT_NOTIFICATION_BIT", + "DEBUG_REPORT_WARNING_BIT", + "DEBUG_REPORT_ERROR_BIT" + ] + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_khronos_shader_object.json b/vulkan/Bin/VkLayer_khronos_shader_object.json new file mode 100644 index 0000000000000000000000000000000000000000..d04f38a3987d4f555809f59f288fffd360dc895c --- /dev/null +++ b/vulkan/Bin/VkLayer_khronos_shader_object.json @@ -0,0 +1,98 @@ +{ + "file_format_version" : "1.2.0", + "layer": { + "name": "VK_LAYER_KHRONOS_shader_object", + "type": "GLOBAL", + "library_path": ".\\VkLayer_khronos_shader_object.dll", + "api_version": "1.4.341", + "implementation_version": "1", + "description": "Khronos Shader object layer", + "instance_extensions": [ + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_shader_object", + "spec_version": "1", + "entrypoints": [ + "vkCmdBindShadersEXT", + "vkCmdBindVertexBuffers2EXT", + "vkCmdSetAlphaToCoverageEnableEXT", + "vkCmdSetAlphaToOneEnableEXT", + "vkCmdSetColorBlendAdvancedEXT", + "vkCmdSetColorBlendEnableEXT", + "vkCmdSetColorBlendEquationEXT", + "vkCmdSetColorWriteMaskEXT", + "vkCmdSetConservativeRasterizationModeEXT", + "vkCmdSetCoverageModulationModeNV", + "vkCmdSetCoverageModulationTableEnableNV", + "vkCmdSetCoverageModulationTableNV", + "vkCmdSetCoverageReductionModeNV", + "vkCmdSetCoverageToColorEnableNV", + "vkCmdSetCoverageToColorLocationNV", + "vkCmdSetCullModeEXT", + "vkCmdSetDepthBiasEnableEXT", + "vkCmdSetDepthBoundsTestEnableEXT", + "vkCmdSetDepthClampEnableEXT", + "vkCmdSetDepthClipEnableEXT", + "vkCmdSetDepthClipNegativeOneToOneEXT", + "vkCmdSetDepthCompareOpEXT", + "vkCmdSetDepthTestEnableEXT", + "vkCmdSetDepthWriteEnableEXT", + "vkCmdSetExtraPrimitiveOverestimationSizeEXT", + "vkCmdSetFrontFaceEXT", + "vkCmdSetLineRasterizationModeEXT", + "vkCmdSetLineStippleEnableEXT", + "vkCmdSetLogicOpEXT", + "vkCmdSetLogicOpEnableEXT", + "vkCmdSetPatchControlPointsEXT", + "vkCmdSetPolygonModeEXT", + "vkCmdSetPrimitiveRestartEnableEXT", + "vkCmdSetPrimitiveTopologyEXT", + "vkCmdSetProvokingVertexModeEXT", + "vkCmdSetRasterizationSamplesEXT", + "vkCmdSetRasterizationStreamEXT", + "vkCmdSetRasterizerDiscardEnableEXT", + "vkCmdSetRepresentativeFragmentTestEnableNV", + "vkCmdSetSampleLocationsEnableEXT", + "vkCmdSetSampleMaskEXT", + "vkCmdSetScissorWithCountEXT", + "vkCmdSetShadingRateImageEnableNV", + "vkCmdSetStencilOpEXT", + "vkCmdSetStencilTestEnableEXT", + "vkCmdSetTessellationDomainOriginEXT", + "vkCmdSetVertexInputEXT", + "vkCmdSetViewportSwizzleNV", + "vkCmdSetViewportWScalingEnableNV", + "vkCmdSetViewportWithCountEXT", + "vkCreateShadersEXT", + "vkDestroyShaderEXT", + "vkGetShaderBinaryDataEXT" + ] + } + ], + "features": { + "settings": [ + { + "key": "force_enable", + "env": "VK_SHADER_OBJECT_FORCE_ENABLE", + "label": "Force Enable", + "description": "Force the layer to be active even if the underlying driver also implements the shader object extension.", + "type": "BOOL", + "default": false + }, + { + "key": "disable_pipeline_pre_caching", + "env": "VK_SHADER_OBJECT_DISABLE_PIPELINE_PRE_CACHING", + "label": "Disable Pipeline Pre-Caching", + "description": "Disable the layer from pre-caching pipelines, reducing the memory overhead.", + "type": "BOOL", + "default": false + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_khronos_synchronization2.json b/vulkan/Bin/VkLayer_khronos_synchronization2.json new file mode 100644 index 0000000000000000000000000000000000000000..40f8886e181f9ed64174e91a679faedee3fb5db1 --- /dev/null +++ b/vulkan/Bin/VkLayer_khronos_synchronization2.json @@ -0,0 +1,49 @@ +{ + "file_format_version": "1.2.0", + "layer": { + "name": "VK_LAYER_KHRONOS_synchronization2", + "type": "GLOBAL", + "library_path": ".\\VkLayer_khronos_synchronization2.dll", + "api_version": "1.4.341", + "implementation_version": "1", + "description": "Khronos Synchronization2 layer", + "introduction": "The VK_LAYER_KHRONOS_synchronization2 extension layer implements the VK_KHR_synchronization2 extension.", + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/synchronization2_layer.html", + "status": "STABLE", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "instance_extensions": [ + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_KHR_synchronization2", + "spec_version": "1", + "entrypoints": [ + "vkCmdSetEvent2KHR", + "vkCmdResetEvent2KHR", + "vkCmdWaitEvents2KHR", + "vkCmdPipelineBarrier2KHR", + "vkCmdWriteTimestamp2KHR", + "vkQueueSubmit2KHR", + "vkCmdWriteBufferMarker2AMD", + "vkGetQueueCheckpointData2NV" + ] + } + ], + "features": { + "settings": [ + { + "key": "force_enable", + "env": "VK_SYNCHRONIZATION2_FORCE_ENABLE", + "label": "Force Enable", + "description": "Force the layer to be active even if the underlying driver also implements the synchonization2 extension.", + "type": "BOOL", + "default": false + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_khronos_validation.json b/vulkan/Bin/VkLayer_khronos_validation.json new file mode 100644 index 0000000000000000000000000000000000000000..07492e8527a448c20207150d80c8554d1e8990be --- /dev/null +++ b/vulkan/Bin/VkLayer_khronos_validation.json @@ -0,0 +1,1475 @@ +{ + "file_format_version": "1.2.0", + "layer": { + "name": "VK_LAYER_KHRONOS_validation", + "prefix": "vvl", + "type": "GLOBAL", + "library_path": ".\\VkLayer_khronos_validation.dll", + "api_version": "1.4.341", + "implementation_version": "1", + "description": "Khronos Validation Layer", + "introduction": "The main, comprehensive Khronos validation layer.\n\nVulkan is an Explicit API, enabling direct control over how GPUs actually work. By design, minimal error checking is done inside a Vulkan driver. Applications have full control and responsibility for correct operation. Any errors in how Vulkan is used can result in a crash. \n\nThe Khronos Validation Layer can be enabled to assist development by enabling developers to verify their applications correctly use the Vulkan API.", + "platforms": [ + "WINDOWS", + "LINUX", + "ANDROID", + "MACOS" + ], + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/khronos_validation_layer.html", + "instance_extensions": [ + { + "name": "VK_EXT_debug_report", + "spec_version": "9" + }, + { + "name": "VK_EXT_debug_utils", + "spec_version": "1" + }, + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + }, + { + "name": "VK_EXT_validation_features", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_debug_marker", + "spec_version": "4", + "entrypoints": [ + "vkDebugMarkerSetObjectTagEXT", + "vkDebugMarkerSetObjectNameEXT", + "vkCmdDebugMarkerBeginEXT", + "vkCmdDebugMarkerEndEXT", + "vkCmdDebugMarkerInsertEXT" + ] + }, + { + "name": "VK_EXT_validation_cache", + "spec_version": "1", + "entrypoints": [ + "vkCreateValidationCacheEXT", + "vkDestroyValidationCacheEXT", + "vkGetValidationCacheDataEXT", + "vkMergeValidationCachesEXT" + ] + }, + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ + "vkGetPhysicalDeviceToolPropertiesEXT" + ] + } + ], + "features": { + "presets": [ + { + "label": "Standard", + "description": "Good default validation setup that balance validation coverage and performance.", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": true }, + { "key": "check_image_layout", "value": true }, + { "key": "check_command_buffer", "value": true }, + { "key": "check_object_in_use", "value": true }, + { "key": "check_query", "value": true }, + { "key": "check_shaders", "value": true }, + { "key": "check_shaders_caching", "value": true }, + { "key": "unique_handles", "value": true }, + { "key": "object_lifetime", "value": true }, + { "key": "stateless_param", "value": true }, + { "key": "legacy_detection", "value": false }, + { "key": "thread_safety", "value": false }, + { "key": "validate_sync", "value": false }, + { "key": "printf_enable", "value": false }, + { "key": "gpuav_enable", "value": false }, + { "key": "validate_best_practices", "value": false }, + { "key": "report_flags", "value": [ "error", "warn" ] }, + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG", "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT" ] }, + { "key": "enable_message_limit", "value": true } + ] + }, + { + "label": "Reduced-Overhead", + "description": "Disables some checks in the interest of better performance.", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": true }, + { "key": "check_image_layout", "value": false }, + { "key": "check_command_buffer", "value": false }, + { "key": "check_object_in_use", "value": false }, + { "key": "check_query", "value": false }, + { "key": "check_shaders", "value": true }, + { "key": "check_shaders_caching", "value": true }, + { "key": "unique_handles", "value": false }, + { "key": "object_lifetime", "value": true }, + { "key": "stateless_param", "value": true }, + { "key": "legacy_detection", "value": false }, + { "key": "thread_safety", "value": false }, + { "key": "validate_sync", "value": false }, + { "key": "printf_enable", "value": false }, + { "key": "gpuav_enable", "value": false }, + { "key": "validate_best_practices", "value": false }, + { "key": "report_flags", "value": [ "error" ] }, + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG" ] }, + { "key": "enable_message_limit", "value": true } + ] + }, + { + "label": "Best Practices", + "description": "Provides warnings on valid API usage that is potential API misuse.", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": false }, + { "key": "check_image_layout", "value": false }, + { "key": "check_command_buffer", "value": false }, + { "key": "check_object_in_use", "value": false }, + { "key": "check_query", "value": false }, + { "key": "check_shaders", "value": false }, + { "key": "check_shaders_caching", "value": false }, + { "key": "unique_handles", "value": false }, + { "key": "object_lifetime", "value": false }, + { "key": "stateless_param", "value": false }, + { "key": "legacy_detection", "value": false }, + { "key": "thread_safety", "value": false }, + { "key": "validate_sync", "value": false }, + { "key": "printf_enable", "value": false }, + { "key": "gpuav_enable", "value": false }, + { "key": "validate_best_practices", "value": true }, + { "key": "report_flags", "value": [ "error", "warn", "perf" ] }, + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG", "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT" ] }, + { "key": "enable_message_limit", "value": true } + ] + }, + { + "label": "Synchronization", + "description": "Identify resource access conflicts due to missing or incorrect synchronization operations between actions reading or writing the same regions of memory.", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": false }, + { "key": "check_image_layout", "value": false }, + { "key": "check_command_buffer", "value": false }, + { "key": "check_object_in_use", "value": false }, + { "key": "check_query", "value": false }, + { "key": "check_shaders", "value": false }, + { "key": "check_shaders_caching", "value": false }, + { "key": "unique_handles", "value": true }, + { "key": "object_lifetime", "value": false }, + { "key": "stateless_param", "value": false }, + { "key": "legacy_detection", "value": false }, + { "key": "thread_safety", "value": true }, + { "key": "validate_sync", "value": true }, + { "key": "printf_enable", "value": false }, + { "key": "gpuav_enable", "value": false }, + { "key": "validate_best_practices", "value": false }, + { "key": "report_flags", "value": [ "error" ] }, + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG", "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT" ] }, + { "key": "enable_message_limit", "value": true } + ] + }, + { + "label": "GPU-Assisted", + "description": "Check for API usage errors at shader execution time.", + "platforms": [ "WINDOWS", "LINUX" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": false }, + { "key": "check_image_layout", "value": false }, + { "key": "check_command_buffer", "value": false }, + { "key": "check_object_in_use", "value": false }, + { "key": "check_query", "value": false }, + { "key": "check_shaders", "value": false }, + { "key": "check_shaders_caching", "value": false }, + { "key": "unique_handles", "value": false }, + { "key": "object_lifetime", "value": false }, + { "key": "stateless_param", "value": false }, + { "key": "legacy_detection", "value": false }, + { "key": "thread_safety", "value": false }, + { "key": "validate_sync", "value": false }, + { "key": "printf_enable", "value": false }, + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true }, + { "key": "gpuav_select_instrumented_shaders", "value": false }, + { "key": "gpuav_buffers_validation", "value": true }, + { "key": "validate_best_practices", "value": false }, + { "key": "report_flags", "value": [ "error", "warn" ] }, + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG", "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT" ] }, + { "key": "enable_message_limit", "value": true } + ] + }, + { + "label": "Debug Printf", + "description": "Debug shader code by \"printing\" any values of interest to the debug callback or stdout.", + "platforms": [ "WINDOWS", "LINUX" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": false }, + { "key": "check_image_layout", "value": false }, + { "key": "check_command_buffer", "value": false }, + { "key": "check_object_in_use", "value": false }, + { "key": "check_query", "value": false }, + { "key": "check_shaders", "value": false }, + { "key": "check_shaders_caching", "value": false }, + { "key": "unique_handles", "value": false }, + { "key": "object_lifetime", "value": false }, + { "key": "stateless_param", "value": false }, + { "key": "legacy_detection", "value": false }, + { "key": "thread_safety", "value": false }, + { "key": "validate_sync", "value": false }, + { "key": "gpuav_enable", "value": false }, + { "key": "printf_enable", "value": true }, + { "key": "validate_best_practices", "value": false }, + { "key": "report_flags", "value": [ "error", "warn", "info" ] }, + { "key": "debug_action", "value": [] }, + { "key": "enable_message_limit", "value": false } + ] + }, + { + "label": "Legacy Detection Only", + "description": "Turn off everything but legacy detection.", + "platforms": [ "WINDOWS", "LINUX" ], + "status": "STABLE", + "settings": [ + { "key": "validate_core", "value": false }, + { "key": "check_image_layout", "value": false }, + { "key": "check_command_buffer", "value": false }, + { "key": "check_object_in_use", "value": false }, + { "key": "check_query", "value": false }, + { "key": "check_shaders", "value": false }, + { "key": "check_shaders_caching", "value": false }, + { "key": "unique_handles", "value": false }, + { "key": "object_lifetime", "value": false }, + { "key": "stateless_param", "value": false }, + { "key": "legacy_detection", "value": true }, + { "key": "thread_safety", "value": false }, + { "key": "validate_sync", "value": false }, + { "key": "gpuav_enable", "value": false }, + { "key": "printf_enable", "value": false }, + { "key": "validate_best_practices", "value": false }, + { "key": "report_flags", "value": [ "warn" ] }, + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG", "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT" ] }, + { "key": "enable_message_limit", "value": false } + ] + } + ], + "settings": [ + { + "key": "validation_control", + "label": "Validation Areas", + "description": "Control of the Validation layer validation", + "type": "GROUP", + "expanded": true, + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "settings": [ + { + "key": "fine_grained_locking", + "env": "VK_LAYER_FINE_GRAINED_LOCKING", + "label": "Fine Grained Locking", + "description": "Enable fine grained locking for Core Validation, which should improve performance in multithreaded applications. This setting allows the optimization to be disabled for debugging.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/fine_grained_locking_usage.md", + "type": "BOOL", + "default": true + }, + { + "key": "validate_core", + "label": "Core", + "description": "The main, heavy-duty validation checks. This may be valuable early in the development cycle to reduce validation output while correcting parameter/object usage errors.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/core_checks.md", + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "check_image_layout", + "label": "Image Layout", + "description": "Check that the layout of each image subresource is correct whenever it is used by a command buffer. These checks are very CPU intensive for some applications.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_core", "value": true } + ] + } + }, + { + "key": "check_command_buffer", + "label": "Command Buffer State", + "description": "Check that all Vulkan objects used by a command buffer have not been destroyed. These checks can be CPU intensive for some applications.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_core", "value": true } + ] + } + }, + { + "key": "check_object_in_use", + "label": "Object in Use", + "description": "Check that Vulkan objects are not in use by a command buffer when they are destroyed.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_core", "value": true } + ] + } + }, + { + "key": "check_query", + "label": "Query", + "description": "Checks for commands that use VkQueryPool objects.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_core", "value": true } + ] + } + }, + { + "key": "check_shaders", + "label": "Shader", + "description": "This will validate the contents of the SPIR-V which can be CPU intensive during application start up. This does internal checks as well as calling spirv-val. (Same effect using VK_VALIDATION_FEATURE_DISABLE_SHADERS_EXT)", + "type": "BOOL", + "default": true, + "expanded": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_core", "value": true } + ] + }, + "settings": [ + { + "key": "check_shaders_caching", + "label": "Caching", + "description": "Creates an internal instance of VK_EXT_validation_cache and upon vkDestroyInstance, will cache the shader validation so sequential usage of the validation layers will be skipped.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_core", "value": true }, + { "key": "check_shaders", "value": true } + ] + } + }, + { + "key": "debug_disable_spirv_val", + "label": "Disable spirv-val", + "view": "DEBUG", + "description": "Allows normal shader validation to run, but removes just spirv-val for performance reasons", + "type": "BOOL", + "default": false + } + ] + } + ], + "messages": [ + { + "key": "validate_core_msg0", + "title": "Validation layer performance issue", + "version": 1, + "description": "Both 'Core validation' and 'GPU-assisted validation' are enabled. This is going to require a lot of CPU resource causing the Vulkan application to run very slowly.", + "informative": "Are you sure you want to enable 'Core Validation'?", + "severity": "WARNING", + "conditions": [ + { "setting": { "key": "validate_core", "value": true }}, + { "setting": { "key": "gpuav_enable", "value": true }} + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { "setting": { "key": "validate_core", "value": true }}, + { "setting": { "key": "gpuav_enable", "value": true }} + ] + }, + "BUTTON1": { + "type": "CANCEL", + "changes": [ + { "setting": { "key": "validate_core", "value": false }} + ] + } + } + } + ] + }, + { + "key": "unique_handles", + "label": "Handle Wrapping", + "description": "Handle wrapping checks. Disable this feature if you are experiencing crashes when creating new extensions or developing new Vulkan objects/structures.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/handle_wrapping.md", + "type": "BOOL", + "default": true + }, + { + "key": "object_lifetime", + "label": "Object Lifetime", + "description": "Object tracking checks. This may not always be necessary late in a development cycle.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/object_lifetimes.md", + "type": "BOOL", + "default": true + }, + { + "key": "stateless_param", + "label": "Stateless Parameter", + "description": "Stateless parameter checks. This may not always be necessary late in a development cycle.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/stateless_validation.md", + "type": "BOOL", + "default": true + }, + { + "key": "legacy_detection", + "label": "Legacy Detection", + "description": "Give warnings when using legacy parts of the API.", + "type": "BOOL", + "default": false + }, + { + "key": "thread_safety", + "label": "Thread Safety", + "description": "Thread checks. In order to not degrade performance, it might be best to run your program with thread-checking disabled most of the time, enabling it occasionally for a quick sanity check or when debugging difficult application behaviors.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/thread_safety.md", + "type": "BOOL", + "default": true + }, + { + "key": "validate_sync", + "label": "Synchronization", + "description": "Check for resource access conflicts caused by missing or incorrectly used synchronization operations.", + "url": "${LUNARG_SDK}/synchronization_usage.html", + "type": "BOOL", + "default": false, + "expanded": true, + "settings": [ + { + "key": "syncval_submit_time_validation", + "label": "Submit time validation", + "description": "Enable synchronization validation on the boundary between submitted command buffers. This also validates accesses from presentation operations. This option can incur a significant performance cost.", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_sync", "value": true } + ] + } + }, + { + "key": "syncval_shader_accesses_heuristic", + "label": "Shader accesses heuristic", + "description": "Take into account memory accesses performed by the shader based on SPIR-V static analysis. Warning: can produce false-positives, can ignore certain types of accesses, does not support VK_EXT_descriptor_buffer.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_sync", "value": true } + ] + } + }, + { + "key": "syncval_load_op_after_store_op_validation", + "label": "LoadOp after StoreOp validation", + "description": "Detect LoadOp after StoreOp hazards between render pass instances.", + "view": "HIDDEN", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_sync", "value": true } + ] + } + }, + { + "key": "syncval_reporting", + "label": "Error messages", + "description": "Options to configure synchronization validation error reporting", + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "syncval_message_extra_properties", + "label": "Extra properties", + "description": "Append a section of key-value properties to the error message. Useful for filtering errors.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_sync", "value": true } + ] + } + } + ] + } + ] + }, + { + "key": "printf_only_preset", + "label": "Debug Printf only preset", + "description": "A single, quick setting to turn on only DebugPrintf and turn off everything else", + "type": "BOOL", + "default": false, + "view": "DEBUG", + "platforms": [ "WINDOWS", "LINUX" ] + }, + { + "key": "printf_enable", + "label": "Debug Printf", + "description": "Enable DebugPrintf and will print anything use NonSemantic.DebugPrintf in their SPIR-V", + "type": "BOOL", + "url": "${LUNARG_SDK}/debug_printf.html", + "default": false, + "platforms": [ "WINDOWS", "LINUX" ], + "settings": [ + { + "key": "printf_to_stdout", + "label": "Redirect Printf messages to stdout", + "description": "Enable redirection of Debug Printf messages from the debug callback to stdout", + "type": "BOOL", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "printf_enable", "value": true } + ] + }, + "messages": [ + { + "key": "printf_enable_msg3", + "title": "Debug Printf without 'info' level message severity flag", + "version": 1, + "description": "Enabling Debug Printf output redirection to the debug callback, but 'info' level message severity is disabled, so printf message won't be shown.", + "informative": "Adding 'info' level to 'Message Severity'", + "severity": "INFORMATION", + "conditions": [ + { "setting": { "key": "printf_enable", "value": true }}, + { "setting": { "key": "printf_to_stdout", "value": false }}, + { "setting": { "key": "report_flags", "value": ["info"]}, "operator": "NOT" } + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { "setting": { "key": "report_flags", "value": ["info"]}, "operator": "APPEND" } + ] + } + } + } + ] + }, + { + "key": "printf_verbose", + "label": "Printf verbose", + "description": "Will print out handles, instruction location, position in command buffer, and more", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "printf_enable", "value": true } + ] + } + }, + { + "key": "printf_buffer_size", + "label": "Printf buffer size", + "description": "Set the size in bytes of the buffer per VkCommandBuffer to hold the messages (Each message is about 50 bytes)", + "type": "INT", + "default": 1024, + "range": { + "min": 128, + "max": 1048576 + }, + "unit": "bytes", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "printf_enable", "value": true } + ] + } + } + ], + "messages": [ + { + "key": "printf_enable_msg1", + "title": "Warning: Debug Printf without info level message severity flag", + "version": 1, + "description": "Enabling Debug Printf, with output directed to the debug callback, but info level message severity is disabled, so printf message won't be shown.", + "informative": "Adding 'info' level to 'Message Severity'", + "severity": "INFORMATION", + "conditions": [ + { "setting": { "key": "printf_enable", "value": true }}, + { "setting": { "key": "printf_to_stdout", "value": false }}, + { "setting": { "key": "report_flags", "value": ["info"]}, "operator": "NOT" } + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { "setting": { "key": "report_flags", "value": ["info"] }, "operator": "APPEND" } + ] + } + } + } + ] + }, + { + "key": "gpuav_enable", + "label": "GPU Assisted Validation", + "description": "Enable validation that cannot be done the CPU and needs hooks into the GPU execution", + "url": "${LUNARG_SDK}/gpu_validation.html", + "type": "BOOL", + "default": false, + "expanded": true, + "platforms": [ "WINDOWS", "LINUX" ], + "settings": [ + { + "key": "gpuav_safe_mode", + "label": "Safe Mode", + "description": "Will have GPU-AV try and prevent crashes, but will be much slower to validate. If using Safe Mode, consider using selective shader instrumentation, to only instrument the shaders/pipelines causing issues.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + }, + { + "key": "gpuav_force_on_robustness", + "label": "Force on robustness features", + "description": "This will enable all possible robustness features for the app at device creation time. This can be used to quickly detect if with robustness, your issue disappears. GPU-AV will also skip validating things already covered by robustness, so turning on should reduce GPU-AV performance overhead.", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + }, + { + "key": "gpuav_shader_instrumentation", + "label": "Shader instrumentation", + "description": "Instrument shaders to validate descriptors, descriptor indexing, buffer device addresses and ray queries. Warning: will considerably slow down shader executions.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/gpu_av_shader_instrumentation.md", + "type": "BOOL", + "expanded": true, + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + }, + "settings": [ + { + "key": "gpuav_select_instrumented_shaders", + "label": "Enable instrumenting shaders selectively", + "description": "Select which shaders to instrument by passing a VkValidationFeaturesEXT struct with GPU-AV enabled in the VkShaderModuleCreateInfo pNext or using a regex matching a shader/pipeline debug name. Because this only validates the selected shaders, it will allow GPU-AV to run much faster.", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/gpu_av_selective_shader.md", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + }, + "settings": [ + { + "key": "gpuav_shaders_to_instrument", + "label": "Shader/pipeline name regexes", + "description": "Any shader or pipeline library debug name (set with vkSetDebugUtilsObjectNameEXT) fully matching any listed regular expression will be instrumented when creating pipelines with those shaders or libraries. Regex grammar: Modified ECMAScript. No support for shader objects yet. Warning: instrumentation being performed at final pipeline creation time, if shaders modules have already been destroyed at this step (possible when using pipeline libraries), they won't be found by this regex selection system. In this case, consider naming pipeline libraries instead.", + "type": "LIST", + "default": [], + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true }, + { "key": "gpuav_select_instrumented_shaders", "value": true } + ] + } + } + ] + }, + { + "key": "gpuav_descriptor_checks", + "label": "Descriptors indexing", + "description": "Enable descriptors and buffer out of bounds validation when using descriptor indexing", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/gpu_av_descriptor_indexing.md", + "type": "BOOL", + "view": "DEBUG", + "expanded": true, + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + }, + { + "key": "gpuav_post_process_descriptor_indexing", + "label": "Post process descriptor indexing", + "description": "Track which descriptor indexes were used in shader to run normal validation afterwards", + "url": "https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/main/docs/gpu_av_post_process.md", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + }, + { + "key": "gpuav_buffer_address_oob", + "label": "Out of bounds buffer device addresses", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "expanded": true, + "description": "Check for invalid access using buffer device address", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + }, + { + "key": "gpuav_mesh_shading", + "label": "Mesh Shading SPIR-V instructions", + "description": "Enable shader instrumentation on VK_EXT_mesh_shader", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + }, + { + "key": "gpuav_validate_ray_query", + "label": "RayQuery SPIR-V instructions", + "description": "Enable shader instrumentation on OpRayQueryInitializeKHR", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + }, + { + "key": "gpuav_vertex_attribute_fetch_oob", + "label": "Out of bounds vertex attribute fetching", + "description": "Validate that no vertex attribute fetching is out of bonds", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + }, + { + "key": "gpuav_shader_sanitizer", + "label": "Shader Sanitizer", + "description": "Things invalid to do in SPIR-V but don't have a dedicated check (example: dividing an int by zero, reaching OpUnreachable, invalid casting, overflow/undeflow). When in safe mode, will modify the invalid usage.", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_shader_instrumentation", "value": true } + ] + } + } + ] + }, + { + "key": "gpuav_buffers_validation", + "label": "Buffer content validation", + "description": "Validate buffers containing parameters used in indirect Vulkan commands, or used in copy commands", + "type": "BOOL", + "view": "DEBUG", + "default": true, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + }, + "settings": [ + { + "key": "gpuav_indirect_draws_buffers", + "label": "Indirect draws parameters", + "type": "BOOL", + "default": true, + "description": "Validate buffers containing draw parameters used in indirect draw commands. Includes vkCmdDrawMeshTasks* calls as well", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + }, + { + "key": "gpuav_indirect_dispatches_buffers", + "label": "Indirect dispatches parameters", + "type": "BOOL", + "default": true, + "description": "Validate buffers containing dispatch parameters used in indirect dispatch commands", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + }, + { + "key": "gpuav_indirect_trace_rays_buffers", + "label": "Indirect trace rays parameters", + "type": "BOOL", + "default": true, + "description": "Validate buffers containing ray tracing parameters used in indirect ray tracing commands", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + }, + { + "key": "gpuav_buffer_copies", + "label": "Buffer copies", + "type": "BOOL", + "default": true, + "description": "Validate copies involving a VkBuffer. Right now only validates copy buffer to image.", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + }, + { + "key": "gpuav_copy_memory_indirect", + "label": "VK_KHR_copy_memory_indirect", + "type": "BOOL", + "default": true, + "description": "Validate VK_KHR_copy_memory_indirect.", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + }, + { + "key": "gpuav_index_buffers", + "label": "Index buffers", + "type": "BOOL", + "default": true, + "description": "Validate that indexed draws do not fetch indices outside of the bounds of the index buffer.", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + }, + { + "key": "gpuav_acceleration_structures_builds", + "label": "Acceleration structures builds", + "type": "BOOL", + "default": true, + "description": "Validate acceleration structures references in TLAS build commands.", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true }, + { "key": "gpuav_buffers_validation", "value": true } + ] + } + } + ] + }, + { + "key": "gpuav_debug_settings", + "label": "Developer Debug Settings", + "description": "GPU-AV debug settings", + "type": "GROUP", + "view": "DEBUG", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + }, + "settings": [ + { + "key": "gpuav_debug_disable_all", + "label": "Disable all of GPU-AV", + "description": "Acts as a VkValidationFeatureDisableEXT to override the VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT passed by the user", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + }, + { + "key": "gpuav_debug_validate_instrumented_shaders", + "label": "Validate instrumented shaders", + "description": "Run spirv-val after doing shader instrumentation", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + }, + { + "key": "gpuav_debug_dump_instrumented_shaders", + "label": "Dump instrumented shaders", + "description": "Will dump the instrumented shaders (before and after) to working directory", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + }, + { + "key": "gpuav_debug_max_instrumentations_count", + "label": "Limit how many time a pass can instrument the SPIR-V", + "description": "Zero is same as unlimited", + "type": "INT", + "default": 0, + "range": { + "min": 0 + }, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + }, + { + "key": "gpuav_debug_print_instrumentation_info", + "label": "Print SPIR-V instrumentation info", + "description": "Prints verbose information about the instrumentation of the SPIR-V", + "type": "BOOL", + "default": false, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "gpuav_enable", "value": true } + ] + } + } + ] + } + ], + "messages": [ + { + "key": "gpuav_enable_msg0", + "title": "Validation layer performance warning", + "version": 1, + "description": "Both 'Core validation' and 'GPU-assisted validation' are enabled. This is going to require a lot of CPU resource causing the Vulkan application to run very slowly.", + "informative": "Are you sure you want to enable 'GPU Assisted Validation'?", + "severity": "WARNING", + "conditions": [ + { "setting": { "key": "validate_core", "value": true }}, + { "setting": { "key": "gpuav_enable", "value": true }} + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { "setting": { "key": "validate_core", "value": true }}, + { "setting": { "key": "gpuav_enable", "value": true }} + ] + }, + "BUTTON1": { + "type": "CANCEL", + "changes": [ + { "setting": { "key": "gpuav_enable", "value": false }} + ] + } + } + } + ] + }, + { + "key": "validate_best_practices", + "label": "Best Practices", + "description": "Outputs warnings related to common misuse of the API, but which are not explicitly prohibited by the specification.", + "url": "${LUNARG_SDK}/best_practices.html", + "type": "BOOL", + "default": false, + "expanded": true, + "status": "STABLE", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "settings": [ + { + "key": "validate_best_practices_arm", + "label": "ARM-specific best practices", + "description": "Outputs warnings for spec-conforming but non-ideal code on ARM GPUs.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_best_practices", "value": true } + ] + } + }, + { + "key": "validate_best_practices_amd", + "label": "AMD-specific best practices", + "description": "Outputs warnings for spec-conforming but non-ideal code on AMD GPUs.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_best_practices", "value": true } + ] + } + }, + { + "key": "validate_best_practices_img", + "label": "IMG-specific best practices", + "description": "Outputs warnings for spec-conforming but non-ideal code on Imagination GPUs.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_best_practices", "value": true } + ] + } + }, + { + "key": "validate_best_practices_nvidia", + "label": "NVIDIA-specific best practices", + "description": "Outputs warnings for spec-conforming but non-ideal code on NVIDIA GPUs.", + "type": "BOOL", + "default": false, + "platforms": [ "WINDOWS", "LINUX", "ANDROID" ], + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "validate_best_practices", "value": true } + ] + } + } + ] + } + ] + }, + { + "key": "debug_action", + "label": "Debug Action", + "description": "Specifies what action is to be taken when a layer reports information", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "type": "FLAGS", + "flags": [ + { + "key": "VK_DBG_LAYER_ACTION_LOG_MSG", + "label": "Log Message", + "description": "Log a txt message to stdout or to a log filename.", + "settings": [ + { + "key": "log_filename", + "label": "Log Filename", + "description": "Specifies the output filename", + "type": "SAVE_FILE", + "default": "stdout", + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "debug_action", "value": [ "VK_DBG_LAYER_ACTION_LOG_MSG" ] } + ] + } + } + ] + }, + { + "key": "VK_DBG_LAYER_ACTION_CALLBACK", + "label": "Callback", + "description": "Call user defined callback function(s) that have been registered via the VK_EXT_debug_report extension. Since application must register callback, this is a NOOP for the settings file.", + "view": "HIDDEN" + }, + { + "key": "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT", + "label": "Debug Output", + "description": "Log a txt message using the Windows OutputDebugString function.", + "platforms": [ "WINDOWS" ] + }, + { + "key": "VK_DBG_LAYER_ACTION_BREAK", + "label": "Break", + "description": "Trigger a breakpoint if a debugger is in use." + } + ], + "default": [ + "VK_DBG_LAYER_ACTION_LOG_MSG", "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT" + ] + }, + { + "key": "report_flags", + "label": "Message Severity", + "description": "Comma-delineated list of options specifying the types of messages to be reported", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "type": "FLAGS", + "flags": [ + { + "key": "info", + "label": "Info", + "description": "Report informational messages.", + "messages": [ + { + "key": "printf_enable_msg2", + "title": "Warning: Debug Printf without info level message severity flag", + "version": 1, + "description": "Disabling info level message severity is disabled, but Debug Printf output is directed to the debug callback, so printf message won't be shown.", + "informative": "Adding 'info' level to 'Message Severity'", + "severity": "INFORMATION", + "conditions": [ + { "setting": { "key": "printf_enable", "value": true }}, + { "setting": { "key": "printf_to_stdout", "value": false }}, + { "setting": { "key": "report_flags", "value": ["info"]}, "operator": "NOT" } + ], + "actions": { + "default": "BUTTON0", + "BUTTON0": { + "type": "OK", + "changes": [ + { "setting": {"key": "report_flags", "value": ["info"]}, "operator": "APPEND" } + ] + } + } + } + ] + }, + { + "key": "warn", + "label": "Warning", + "description": "Report warnings from using the API in a manner which may lead to undefined behavior or to warn the user of common trouble spots. A warning does NOT necessarily signify illegal application behavior." + }, + { + "key": "perf", + "label": "Performance", + "description": "Report usage of the API that may cause suboptimal performance." + }, + { + "key": "error", + "label": "Error", + "description": "Report errors in API usage." + }, + { + "key": "debug", + "label": "Debug", + "description": "For layer development. Report messages for debugging layer behavior.", + "view": "DEBUG" + } + ], + "default": [ + "error" + ] + }, + { + "key": "enable_message_limit", + "label": "Limit Duplicated Messages", + "description": "Enable limiting of duplicate messages.", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "type": "BOOL", + "default": true, + "settings": [ + { + "key": "duplicate_message_limit", + "env": "VK_LAYER_DUPLICATE_MESSAGE_LIMIT", + "label": "Max Duplicated Messages", + "description": "Maximum number of times any single validation message should be reported.", + "type": "INT", + "default": 10, + "range": { + "min": 1 + }, + "dependence": { + "mode": "ALL", + "settings": [ + { "key": "enable_message_limit", "value": true } + ] + } + } + ] + }, + { + "key": "message_id_filter", + "label": "Mute Message VUIDs", + "description": "List of VUIDs and VUID identifiers which are to be IGNORED by the validation layer", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "type": "LIST", + "env": "VK_LAYER_MESSAGE_ID_FILTER", + "default": [] + }, + { + "key": "message_format", + "label": "Message Format", + "description": "Specifies how error messages are reported", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "type": "GROUP", + "expanded": true, + "settings": [ + { + "key": "message_format_json", + "label": "JSON", + "description": "Display Validation as JSON (VkDebugUtilsMessengerCallbackDataEXT::pMessage will contain JSON)", + "type": "BOOL", + "default": false + }, + { + "key": "message_format_display_application_name", + "label": "Display Application Name", + "description": "Useful when running multiple instances to know which instance the message is from.", + "type": "BOOL", + "default": false + } + ] + }, + { + "key": "custom_stype_list", + "label": "Provide Custom SType", + "type": "LIST", + "description": "specify custom pNext structs using a vector of strings", + "view": "HIDDEN", + "default": [] + }, + { + "key": "disables", + "label": "Disables", + "description": "Specify areas of validation to be disabled", + "type": "FLAGS", + "status": "DEPRECATED", + "view": "HIDDEN", + "env": "VK_LAYER_DISABLES", + "flags": [ + { + "key": "VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT", + "label": "Thread Safety", + "description": "Thread checks. In order to not degrade performance, it might be best to run your program with thread-checking disabled most of the time, enabling it occasionally for a quick sanity check or when debugging difficult application behaviors.", + "deprecated_by_key": "thread_safety" + }, + { + "key": "VK_VALIDATION_FEATURE_DISABLE_API_PARAMETERS_EXT", + "label": "Stateless Parameter", + "description": "Stateless parameter checks. This may not always be necessary late in a development cycle.", + "deprecated_by_key": "stateless_param" + }, + { + "key": "VK_VALIDATION_FEATURE_DISABLE_OBJECT_LIFETIMES_EXT", + "label": "Object Lifetime", + "description": "Object tracking checks. This may not always be necessary late in a development cycle.", + "deprecated_by_key": "object_lifetime" + }, + { + "key": "VK_VALIDATION_FEATURE_DISABLE_CORE_CHECKS_EXT", + "label": "Core", + "description": "The main, heavy-duty validation checks. This may be valuable early in the development cycle to reduce validation output while correcting parameter/object usage errors.", + "deprecated_by_key": "validate_core" + }, + { + "key": "VK_VALIDATION_FEATURE_DISABLE_UNIQUE_HANDLES_EXT", + "label": "Handle Wrapping", + "description": "Handle wrapping checks. Disable this feature if you are experiencing crashes when creating new extensions or developing new Vulkan objects/structures.", + "deprecated_by_key": "unique_handles" + }, + { + "key": "VK_VALIDATION_FEATURE_DISABLE_SHADERS_EXT", + "label": "Shader Validation", + "description": "Shader checks. These checks can be CPU intensive during application start up, especially if Shader Validation Caching is also disabled.", + "deprecated_by_key": "check_shaders" + }, + { + "key": "VALIDATION_CHECK_DISABLE_COMMAND_BUFFER_STATE", + "label": "Command Buffer State", + "description": "Check that all Vulkan objects used by a command buffer have not been destroyed. These checks can be CPU intensive for some applications.", + "deprecated_by_key": "check_command_buffer" + }, + { + "key": "VALIDATION_CHECK_DISABLE_IMAGE_LAYOUT_VALIDATION", + "label": "Image Layout", + "description": "Check that the layout of each image subresource is correct whenever it is used by a command buffer. These checks are very CPU intensive for some applications.", + "deprecated_by_key": "check_image_layout" + }, + { + "key": "VALIDATION_CHECK_DISABLE_QUERY_VALIDATION", + "label": "Query", + "description": "Checks for commands that use VkQueryPool objects.", + "deprecated_by_key": "check_query" + }, + { + "key": "VALIDATION_CHECK_DISABLE_OBJECT_IN_USE", + "label": "Object in Use", + "description": "Check that Vulkan objects are not in use by a command buffer when they are destroyed.", + "deprecated_by_key": "check_object_in_use" + }, + { + "key": "VK_VALIDATION_FEATURE_DISABLE_SHADER_VALIDATION_CACHE_EXT", + "label": "Shader Validation Caching", + "description": "Disable caching of shader validation results.", + "deprecated_by_key": "check_shaders_caching" + } + ], + "default": [ + "VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT" + ] + }, + { + "key": "enables", + "label": "Enables", + "description": "Setting an option here will enable specialized areas of validation", + "type": "FLAGS", + "status": "DEPRECATED", + "view": "HIDDEN", + "env": "VK_LAYER_ENABLES", + "flags": [ + { + "key": "VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT", + "label": "Synchronization", + "description": "This feature reports resource access conflicts due to missing or incorrect synchronization operations between actions (Draw, Copy, Dispatch, Blit) reading or writing the same regions of memory.", + "url": "${LUNARG_SDK}/synchronization_usage.html", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "deprecated_by_key": "validate_sync" + }, + { + "key": "VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT", + "label": "Debug Printf", + "description": "Enables processing of debug printf instructions in shaders and sending debug strings to the debug callback.", + "url": "${LUNARG_SDK}/debug_printf.html", + "platforms": [ "WINDOWS", "LINUX" ], + "deprecated_by_key": "printf_enable" + }, + { + "key": "VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT", + "label": "GPU-Assisted", + "description": "Check for API usage errors at shader execution time.", + "url": "${LUNARG_SDK}/gpu_validation.html", + "platforms": [ "WINDOWS", "LINUX" ], + "deprecated_by_key": "gpuav_enable" + }, + { + "key": "VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT", + "label": "Reserve Descriptor Set Binding Slot", + "description": "Specifies that the validation layers reserve a descriptor set binding slot for their own use. The layer reports a value for VkPhysicalDeviceLimits::maxBoundDescriptorSets that is one less than the value reported by the device. If the device supports the binding of only one descriptor set, the validation layer does not perform GPU-assisted validation.", + "platforms": [ "WINDOWS", "LINUX" ], + "deprecated_by_key": "gpuav_enable" + }, + { + "key": "VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT", + "label": "Best Practices", + "description": "Activating this feature enables the output of warnings related to common misuse of the API, but which are not explicitly prohibited by the specification.", + "url": "${LUNARG_SDK}/best_practices.html", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "deprecated_by_key": "validate_best_practices" + }, + { + "key": "VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_ARM", + "label": "ARM-specific best practices", + "description": "Activating this feature enables the output of warnings related to ARM-specific misuse of the API, but which are not explicitly prohibited by the specification.", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "deprecated_by_key": "validate_best_practices_arm" + }, + { + "key": "VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_AMD", + "label": "AMD-specific best practices", + "description": "Adds check for spec-conforming but non-ideal code on AMD GPUs.", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "deprecated_by_key": "validate_best_practices_amd" + }, + { + "key": "VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_IMG", + "label": "IMG-specific best practices", + "description": "Adds check for spec-conforming but non-ideal code on Imagination GPUs.", + "platforms": [ "WINDOWS", "LINUX", "MACOS" ], + "deprecated_by_key": "validate_best_practices_img" + }, + { + "key": "VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_NVIDIA", + "label": "NVIDIA-specific best practices", + "description": "Activating this feature enables the output of warnings related to NVIDIA-specific misuse of the API, but which are not explicitly prohibited by the specification.", + "platforms": [ "WINDOWS", "LINUX", "ANDROID" ], + "deprecated_by_key": "validate_best_practices_nvidia" + }, + { + "key": "VALIDATION_CHECK_ENABLE_VENDOR_SPECIFIC_ALL", + "label": "Hardware specific best practices", + "description": "Activating this feature enables all vendor specific best practices.", + "platforms": [ "WINDOWS", "LINUX", "ANDROID" ] + } + ], + "default": [] + } + ] + } + } +} diff --git a/vulkan/Bin/VkLayer_monitor.json b/vulkan/Bin/VkLayer_monitor.json new file mode 100644 index 0000000000000000000000000000000000000000..07a58c6a46a54d0b6f0400f5b1c164c45652685f --- /dev/null +++ b/vulkan/Bin/VkLayer_monitor.json @@ -0,0 +1,29 @@ +{ + "file_format_version": "1.0.0", + "layer": { + "name": "VK_LAYER_LUNARG_monitor", + "type": "GLOBAL", + "library_path": ".\\VkLayer_monitor.dll", + "api_version": "1.4.341", + "implementation_version": "1", + "description": "Execution Monitoring Layer", + "introduction": "The monitor utility layer displays the real-time frame rate in frames-per-second in the application's title bar.", + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/monitor_layer.html", + "platforms": [ "WINDOWS", "LINUX" ], + "instance_extensions": [ + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ + "vkGetPhysicalDeviceToolPropertiesEXT" + ] + } + ] + } +} diff --git a/vulkan/Bin/VkLayer_screenshot.json b/vulkan/Bin/VkLayer_screenshot.json new file mode 100644 index 0000000000000000000000000000000000000000..fa265545e8fbc24a016d36e57463048b1e7ba083 --- /dev/null +++ b/vulkan/Bin/VkLayer_screenshot.json @@ -0,0 +1,99 @@ +{ + "file_format_version" : "1.2.0", + "layer": { + "name": "VK_LAYER_LUNARG_screenshot", + "type": "GLOBAL", + "library_path": ".\\VkLayer_screenshot.dll", + "api_version": "1.4.341", + "implementation_version": "1", + "description": "LunarG image capture layer", + "introduction": "The screenshot layer records frames to image files.", + "url": "https://vulkan.lunarg.com/doc/sdk/latest/windows/screenshot_layer.html", + "platforms": [ "WINDOWS", "LINUX", "MACOS", "ANDROID" ], + "instance_extensions": [ + { + "name": "VK_EXT_layer_settings", + "spec_version": "2" + } + ], + "device_extensions": [ + { + "name": "VK_EXT_tooling_info", + "spec_version": "1", + "entrypoints": [ + "vkGetPhysicalDeviceToolPropertiesEXT" + ] + } + ], + "features": { + "settings": [ + { + "key": "frames", + "env": "VK_SCREENSHOT_FRAMES", + "label": "Frames", + "description": "Specifies list of frames to output as screenshots. It is specified as a comma-separated list of frames or a range of frames with a start, count, and optional interval separated by a dash. Setting the variable to \"all\" will output every frame. Example: \"5-8-2\" will output frame 5, continue until frame 13, dumping every other frame. Example: \"3,8-2\" will output frames 3, 8, and 9. If it is not set or it set to an empty string, no screenshots are created.", + "type": "STRING", + "default": "" + }, + { + "key": "dir", + "env": "VK_SCREENSHOT_DIR", + "label": "Directory", + "description": "Specifies the directory in which to create the screenshot files. If it is not set or is set to an empty string, the files will be created in the current working directory.", + "type": "SAVE_FOLDER", + "default": "" + }, + { + "key": "format", + "env": "VK_SCREENSHOT_FORMAT", + "label": "Format", + "description": "Specify a color space for the output. If it is not set, set to null, or set to USE_SWAPCHAIN_COLORSPACE the format will be set to use the same color space as the swapchain object.", + "type": "ENUM", + "flags": [ + { + "key": "UNORM", + "label": "UNORM", + "description": "" + }, + { + "key": "SNORM", + "label": "SNORM", + "description": "" + }, + { + "key": "USCALED", + "label": "USCALED", + "description": "" + }, + { + "key": "SSCALED", + "label": "SSCALED", + "description": "" + }, + { + "key": "UINT", + "label": "UINT", + "description": "" + }, + { + "key": "SINT", + "label": "SINT", + "description": "" + }, + { + "key": "SRGB", + "label": "SRGB", + "description": "" + }, + { + "key": "USE_SWAPCHAIN_COLORSPACE", + "label": "USE_SWAPCHAIN_COLORSPACE", + "description": "" + } + ], + "default": "USE_SWAPCHAIN_COLORSPACE" + } + ] + } + } +} diff --git a/vulkan/Bin/gfxrecon-capture-vulkan.py b/vulkan/Bin/gfxrecon-capture-vulkan.py new file mode 100644 index 0000000000000000000000000000000000000000..9032b01baa79794dc8c29f7ba9471ee12cd537ca --- /dev/null +++ b/vulkan/Bin/gfxrecon-capture-vulkan.py @@ -0,0 +1,351 @@ +#!/usr/bin/env python3 +# +# Copyright (c) 2020 LunarG, Inc. +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# +# Utility for capturing Vulkan API calls using gfxreconstruct + +'''Capture a trace of a Vulkan binary. +''' + +import argparse +import os +import platform +import shutil +import sys +import subprocess + +if sys.version_info < (3, 7): + print("Error: Python 3.7 or later is required; you're using:", sys.version) + sys.exit(1) + +def usage_message(): + '''Output the script usage message + + We use a custom usage message because Python's arg parser doesn't provide + a very good usage message for positional arguments. + (The default usage message for positional args is as an ellipse. We would + rather have " []".) + + :return: A well formatted usage message string + ''' + message = [ + 'usage gfxrecon-capture-vulkan.py [-h]', + ' [-w dir]', + ' [-o capture_file]', + ' [-f capture_frames]', + ' [--no-file-timestamp]', + ' [--trigger {F1-F12,TAB,CTRL}]', + ' [--trigger-frames frame_count]', + ' [--compression-type {LZ4,ZLIB,ZSTD,NONE}]', + ' [--file-flush]', + ' [--log-level {debug,info,warn,error,fatal}]', + ' [--log-timestamps]', + ' [--log-file ]', + ' [--memory-tracking-mode {page_guard,assisted,unassisted}]', + ' [--capture-layer ', + ] + if sys.platform == 'win32': + message.append(' [--log-debugview]') + message.append(' []') + return '\n'.join(message) + + +class SmartFormatter(argparse.HelpFormatter): + '''Used by the argument parser to assist in breaking argument help text + into multiple lines. + + It is used whenever the help text starts with 'R|'. + ''' + + def _split_lines(self, text, width): + '''Split the argument help into multiple lines + + In addition to the default behavior it will also break lines that start + with R|. + ''' + if text.startswith('R|'): + return text[2:].splitlines() + return argparse.HelpFormatter._split_lines(self, text, width) + + +def print_error_and_exit(msg): + '''Print error message and exit with non-zero status + ''' + print(os.path.basename(__file__) + ' error: ' + msg) + sys.exit(1) + + +def set_env_var(name, value): + '''Set an environment variable to a given value or remove it from the + environment if None + ''' + if value is not None: + os.environ[name] = value + elif name in os.environ: + del os.environ[name] + + +def create_argument_parser(): + '''Create the argument parser used to parse command line arguments + + Create an argument parser with a custom description and useage. + Add command line arguments and options to the parser. + ''' + TRIGGER_KEY_CHOICES = ['F1', 'F2', 'F3', 'F4', 'F5', 'F6', + 'F7', 'F8', 'F9', 'F10', 'F11', 'F12', 'TAB', 'CTRL'] + COMPRESSION_CHOICES = ['LZ4', 'ZLIB', 'ZSTD', 'NONE'] + LOG_LEVEL_CHOICES = ['debug', 'info', 'warn', 'error', 'fatal'] + MEMORY_TRACKING_MODE_CHOICES = ['page_guard', 'assisted', 'unassisted'] + + parser = argparse.ArgumentParser( + prog=os.path.basename(sys.argv[0]), + description=__doc__, + usage=usage_message(), + allow_abbrev=False, + formatter_class=argparse.RawTextHelpFormatter) + + # Common optional args + # All arguments default to None, indicating they should be unset in the capture environment + parser.add_argument( + '-w', '--working-dir', dest='working_dir', metavar='', + help='Set CWD to this directory before running the program') + parser.add_argument( + '-o', '--capture-file', dest='capture_file', metavar='', + default='gfxrecon_capture.gfxr', + help='Name of the capture file, default is gfxrecon_capture.gfxr') + parser.add_argument( + '-f', '--capture-frames', dest='capture_frames', + metavar='', + help='List of frames to capture, default is all frames') + parser.add_argument( + '--no-file-timestamp', dest='file_timestamp', action='store_const', const='false', + help='Do not add a timestamp to the capture file name') + parser.add_argument( + '--trigger', dest='trigger', choices=TRIGGER_KEY_CHOICES, + help='Specify a hotkey to start/stop capture') + parser.add_argument('--trigger-frames', dest='trigger_frames', metavar='', + help='Specify a limit on the number of frames captured via hotkey') + parser.add_argument( + '--compression-type', dest='compression_type', choices=COMPRESSION_CHOICES, + help='Specify the type of compression to use in the capture file, default is LZ4') + parser.add_argument( + '--file-flush', dest='file_flush', action='store_const', const='true', + help='Flush output stream after each packet is written to capture file') + parser.add_argument( + '--log-level', dest='log_level', choices=LOG_LEVEL_CHOICES, + help='Specify highest level message to log, default is info') + parser.add_argument( + '--log-timestamps', dest='log_timestamps', action='store_const', const='true', + help='Output a timestamp in front of each log message.') + parser.add_argument( + '--log-file', dest='log_file', metavar='', + help='Write log messages to a file at the specified path. Default is: Empty string (file logging disabled)') + parser.add_argument( + '--log-debugview', dest='log_debug_view', action='store_const', const='true', + help='Log messages with OutputDebugStringA' if sys.platform == 'win32' else argparse.SUPPRESS) + parser.add_argument( + '--memory-tracking-mode', dest='memory_tracking_mode', choices=MEMORY_TRACKING_MODE_CHOICES, + help='\n'.join([ + 'R|Method used to track changes to memory mapped objects:', + ' - page_guard: use pageguard to track changes (default)', + ' - assisted: application will call vkFlushMappedMemoryRanges', + ' - for memory to be written to the capture file', + ' - unassisted: all mapped memory will be written to the', + ' - capture file during VkQueueSubmit and VkUnmapMemory'])) + parser.add_argument( + '--capture-layer', dest='capture_layer', metavar='', + default=None, + help='\n'.join([ + 'The path to the capture layer.', + '', + 'The path specified must contain both the layer JSON, and the', + 'layer library', + 'It is recommended to use an absolute path for this option.'])) + + # Required args + parser.add_argument( + 'program_and_args', metavar=' []', nargs=argparse.REMAINDER, + help='Program to capture, optionally followed by program arguments') + + return parser + + +def print_args(args): + '''Print command line argument values. + + Used for debug. + ''' + print('working-dir', args.working_dir) + print('capture-file', os.path.abspath(args.capture_file)) + print('capture-frames', args.capture_frames) + print('no-file-timestamp', args.file_timestamp) + print('trigger', args.trigger) + print('trigger-frames', args.trigger_frames) + print('compression-type', args.compression_type) + print('file-flush', args.file_flush) + print('log-level', args.log_level) + print('log-file', args.log_file) + print('log-debugview', args.log_debug_view) + print('memory-tracking-mode', args.memory_tracking_mode) + print('program_and_args', args.program_and_args) + + +def get_command_path(args): + '''Get the full path to the command to execute + ''' + # Replace ~ or ~user with the user's home path before calling shutil.which() + programName = os.path.expanduser(args.program_and_args[0]) + return programName, shutil.which(programName) + + +def validate_args(args): + '''Validate command line arguments + ''' + # Verify working_dir exists and is a directory. + if args.working_dir is not None: + if (not os.path.isdir(args.working_dir)): + print_error_and_exit('Working directory ' + + args.working_dir + ' does not exist') + + # Make sure program was specified. arg parser doesn't allow specifying program_and_args + # as required. + if len(args.program_and_args) == 0: + print('usage: ' + usage_message()) + print_error_and_exit(' must be specified') + + # Verify programName exists and is executable. + programName, programWhich = get_command_path(args) + if programWhich is None: + print_error_and_exit('Cannot find program ' + + programName + ' to execute') + + # Verify capture_file directory exists and is a valid directory. + capture_dir = os.path.dirname(os.path.abspath(args.capture_file)) + if (not os.path.exists(capture_dir)): + print_error_and_exit('Capture file output directory ' + + capture_dir + ' does not exist') + if (not os.path.isdir(capture_dir)): + print_error_and_exit('Capture file output directory ' + + capture_dir + ' is not a valid directory') + + # Verify the capture layer paht is a valid directory + if (args.capture_layer is not None) and (not os.path.isdir(args.capture_layer)): + print_error_and_exit('Capture layer path is not a directory') + + +def set_env_vars(args): + '''Set environment variables for capture layer + ''' + # Set VK_INSTANCE_LAYERS + # If gfxr layer is not already in VK_INSTANCE_LAYER, append gfxr layer + # to VK_INSTANCE_LAYERS + if os.getenv('VK_INSTANCE_LAYERS') is None: + os.environ['VK_INSTANCE_LAYERS'] = 'VK_LAYER_LUNARG_gfxreconstruct' + elif (not ('VK_LAYER_LUNARG_gfxreconstruct' in os.getenv('VK_INSTANCE_LAYERS'))): + os.environ['VK_INSTANCE_LAYERS'] = os.environ['VK_INSTANCE_LAYERS'] + \ + os.pathsep + 'VK_LAYER_LUNARG_gfxreconstruct' + if args.capture_layer is not None: + # Prefix the layer path provided by the user to the layer search path + path_delimiter = ':' + if 'windows' == platform.system().lower(): + path_delimiter = ';' + vk_layer_path = '' + if 'VK_LAYER_PATH' in os.environ: + vk_layer_path = os.environ['VK_LAYER_PATH'] + os.environ['VK_LAYER_PATH'] = path_delimiter.join([ + args.capture_layer, vk_layer_path]) + + # Set GFXRECON_* capture options + # The capture layer will validate these options and generate errors as needed + set_env_var('GFXRECON_CAPTURE_FILE', os.path.abspath(args.capture_file)) + set_env_var('GFXRECON_CAPTURE_FRAMES', args.capture_frames) + set_env_var('GFXRECON_CAPTURE_FILE_TIMESTAMP', args.file_timestamp) + set_env_var('GFXRECON_CAPTURE_TRIGGER', args.trigger) + set_env_var('GFXRECON_CAPTURE_TRIGGER_FRAMES', args.trigger_frames) + set_env_var('GFXRECON_CAPTURE_COMPRESSION_TYPE', args.compression_type) + set_env_var('GFXRECON_CAPTURE_FILE_FLUSH', args.file_flush) + set_env_var('GFXRECON_LOG_LEVEL', args.log_level) + set_env_var('GFXRECON_LOG_FILE', args.log_file) + set_env_var('GFXRECON_LOG_OUTPUT_TO_OS_DEBUG_STRING', args.log_debug_view) + set_env_var('GFXRECON_MEMORY_TRACKING_MODE', args.memory_tracking_mode) + + +def print_env_var(env_var): + '''Print the given envrionment variable + + Used for debug. + :param env_var: The envrionment variable printed + ''' + if env_var in os.environ: + print(env_var, os.environ[env_var]) + else: + print(env_var, 'None') + + +def PrintLayerEnv(): + '''Print all GFXReconstruct layer environment variables + + Used for debug. + ''' + print_env_var('GFXRECON_CAPTURE_COMPRESSION_TYPE') + print_env_var('GFXRECON_CAPTURE_FILE') + print_env_var('GFXRECON_CAPTURE_FILE_FLUSH') + print_env_var('GFXRECON_CAPTURE_FILE_TIMESTAMP') + print_env_var('GFXRECON_CAPTURE_FRAMES') + print_env_var('GFXRECON_CAPTURE_TRIGGER') + print_env_var('GFXRECON_LOG_FILE') + print_env_var('GFXRECON_LOG_LEVEL') + print_env_var('GFXRECON_LOG_OUTPUT_TO_OS_DEBUG_STRING') + print_env_var('GFXRECON_MEMORY_TRACKING_MODE') + print_env_var('VK_INSTANCE_LAYERS') + print_env_var('VK_LAYER_PATH') + + +if '__main__' == __name__: + + # We don't support running under Cygwin Python + if sys.platform == 'cygwin': + print_error_and_exit("Cygwin Python not supported") + + # Get and validate args + parser = create_argument_parser() + args = parser.parse_args() + if 'debug' == args.log_level: + print_args(args) # For debugging + validate_args(args) + + # Set up environment + set_env_vars(args) + if 'debug' == args.log_level: + PrintLayerEnv() # For debugging + + # If working_dir was specified, make it the cwd + if args.working_dir is not None: + os.chdir(args.working_dir) + + # Run the program and and exit with the exit status of the program + print('Executing program', get_command_path(args)) + result = subprocess.run(args.program_and_args, capture_output=True) + if 0 != result.returncode: + print('Errors:\n', result.stderr.decode('utf-8')) + print('Output:\n', result.stdout.decode('utf-8')) + sys.exit(result.returncode) diff --git a/vulkan/Bin/gfxrecon-capture.py b/vulkan/Bin/gfxrecon-capture.py new file mode 100644 index 0000000000000000000000000000000000000000..747e6688f4a6609d2a2e912035e09a00f283563d --- /dev/null +++ b/vulkan/Bin/gfxrecon-capture.py @@ -0,0 +1,54 @@ +#!/usr/bin/env python3 +# +# Copyright (c) 2023 LunarG, Inc. +# Copyright (c) 2023 Valve Corporation +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# +# Stub for redirecting to new gfxrecon-capture-vulkan command +# Usage: +# +# gfxrecon-capture.py [args] +# +# args is a command-specific argument list + +import argparse +import os +import sys +import subprocess +import platform + +if sys.version_info < (3, 7): + print("Error: Python 3.7 or later is required; you're using:", sys.version) + sys.exit(1) + +argv = sys.argv +argc = len(sys.argv) + +if __name__ == '__main__': + + # We don't support running under Cygwin Python + if sys.platform == 'cygwin': + print(os.path.basename(__file__) + ' error: Cygwin Python not supported') + sys.exit(1) + + print("Warning: the 'gfxrecon-capture.py' script is deprecated and will be removed in a future update. Use 'gfxrecon-capture-vulkan.py' instead.", flush=True) + result = subprocess.run(["gfxrecon-capture-vulkan.py",] + argv[1:], shell = True) + sys.exit(result.returncode) diff --git a/vulkan/Bin/gfxrecon.py b/vulkan/Bin/gfxrecon.py new file mode 100644 index 0000000000000000000000000000000000000000..3a16f15ec30ad718fa9ff4c590f851795bbfa0e2 --- /dev/null +++ b/vulkan/Bin/gfxrecon.py @@ -0,0 +1,169 @@ +#!/usr/bin/env python3 +# +# Copyright (c) 2020-2022 LunarG, Inc. +# Copyright (c) 2022 Valve Corporation +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. +# +# +# Utility for invoking gfxrecon commands +# Usage: +# +# gfxrecon.py [capture|compress|convert|extract|info|optimize|replay] [] +# +# args is a command-specific argument list + +import argparse +import os +import sys +import subprocess +import platform + +if sys.version_info < (3, 7): + print("Error: Python 3.7 or later is required; you're using:", sys.version) + sys.exit(1) + +argv = sys.argv +argc = len(sys.argv) + +# Supported commands +valid_commands = [ + 'capture-vulkan', + 'compress', + 'convert', + 'extract', + 'info', + 'optimize', + 'replay' +] + +deprecated_commands = [ + 'capture' # alias for `capture-vulkan` +] + +def IsWindows(): + return (sys.platform == 'win32' or sys.platform == 'cygwin') + +# Function to return an executable for the given command. +# Searches for an executable command in: +# current directory +# PATH +# ../cmd (on Linux only, so that this script works when run from a repo build) +# ../cmd/* (on Windows only, so that this script works when run from a repo build) +# If the above search fails, then it tries to find a python script named cmd.py in: +# current directory +# PATH +# ../cmd +# If the a python script is found, the availability of a python interpreter is checked. +# +# On success, returns a list that can be passed to subprocess.run to execute the command, +# possibly including the python interpreter as the first element in the list. +# +# If an executable/python script is not found, or a python interpreter for a python script is +# not found, prints an error message and exits. + +def GetExecutable(cmd): + + def IsExe(fpath): + return os.path.isfile(fpath) and os.access(fpath, os.X_OK) + + # Set the command we are looking for + if IsWindows(): + cmdexe = 'gfxrecon-' + cmd + '.exe' + else: + cmdexe = 'gfxrecon-' + cmd + + # Search for cmdexe in current dir + if IsExe(cmdexe): + return [os.path.join('.', cmdexe)] + + # Search for cmdexe in PATH + for path in os.environ['PATH'].split(os.pathsep): + c = os.path.join(path, cmdexe) + if IsExe(c): + return [c] + + # Windows: Search for cmdexe in /../cmd/* + # ( is the dir that this script is located in.) + scriptdir = os.path.dirname(os.path.realpath(__file__)) + if IsWindows(): + for buildtype in ['Debug', 'Release', 'RelWithDebInfo', 'MinSizeRel']: + c = os.path.join(scriptdir, '..', cmd, buildtype, cmdexe) + if IsExe(c): + return [c] + else: + # Linux: Search for cmdexe in /../cmd + c = os.path.join(scriptdir, '..', cmd, cmdexe) + if IsExe(c): + return [c] + + cmdpy = 'gfxrecon-' + cmd + '.py' + + # Search for cmdpy in current dir + if os.path.isfile(cmdpy): + return [sys.executable, cmdpy] + + # Search for cmdpy in PATH + for path in os.environ['PATH'].split(os.pathsep): + c=os.path.join(path, cmdpy) + if os.path.isfile(c): + return [sys.executable, c] + + # Search for cmdpy /../cmd + c = os.path.join(scriptdir, '..', cmd, cmdpy) + if os.path.isfile(c): + return [sys.executable, c] + + # Didn't find the executable or py command, error out + print('Error: Cannot find ' + cmdexe + ' or ' + cmdpy + ' to execute') + sys.exit(1) + +def CreateCommandParser(): + parser = argparse.ArgumentParser(description='GFXReconstruct utility launcher.') + parser.add_argument( + 'command', + choices=(valid_commands + deprecated_commands), + type=str.lower, + metavar='command', + help='Command to execute. Valid options are [{}]'.format( + ', '.join(valid_commands))) + parser.add_argument('args', nargs=argparse.REMAINDER, help='Command-specific argument list. Specify -h after command name for command help.') + return parser + +if __name__ == '__main__': + + # We don't support running under Cygwin Python + if sys.platform == 'cygwin': + print(os.path.basename(__file__) + ' error: Cygwin Python not supported') + sys.exit(1) + + command_parser = CreateCommandParser() + command = command_parser.parse_args() + + # Fixup and warn for any deprecated commands. + if command.command == 'capture': + print( + "Warning: the 'capture' command is deprecated and will be removed in a future update. Use 'capture-vulkan' instead.", + flush=True) + command.command = 'capture-vulkan' + + extras = sys.argv[2::] + cmd = GetExecutable(command.command) + result = subprocess.run(cmd + extras) + sys.exit(result.returncode) diff --git a/vulkan/Bin/slang-standard-module-2026.1/bindless-storage.slang b/vulkan/Bin/slang-standard-module-2026.1/bindless-storage.slang new file mode 100644 index 0000000000000000000000000000000000000000..14d2ea0975292c723e5635a1f136deb54cf1686b --- /dev/null +++ b/vulkan/Bin/slang-standard-module-2026.1/bindless-storage.slang @@ -0,0 +1,149 @@ +implementing neural; + +/** +Bindless address type with pointer-like semantics. +Wraps a buffer handle and base index to provide array-like access. +*/ +public struct BindlessAddress : IPointerLikeAddress + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + public typealias Differential = BindlessAddress; + + internal RWStructuredBuffer.Handle handle; + internal uint baseIndex; + + public __init(RWStructuredBuffer.Handle handle) + { + this.handle = handle; + this.baseIndex = 0; + } + + public __subscript(uint index)->T + { + [nonmutating] + get { return handle[baseIndex + index]; } + + [mutating] + set { handle[baseIndex + index] = newValue; } + } + + [require(cuda_glsl_hlsl_metal_spirv, sm_6_6)] + public void atomicAdd(uint index, T value) + { + __atomic_add(handle[baseIndex + index], value); + } + + public This getOffset(int elements) + { + uint newBaseIndex = baseIndex + elements; + + This address = This(handle); + address.baseIndex = newBaseIndex; + return address; + } +} + +public struct PointerAddress : IPointerLikeAddress + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + public typealias Differential = PointerAddress; + + T* ptr; + + public __init(T* ptr) + { + this.ptr = ptr; + } + + public __subscript(uint index)->T + { + [nonmutating] + get { return ptr[index]; } + + [mutating] + set { ptr[index] = newValue; } + } + + public This getOffset(int elements) + { + return This(ptr + elements); + } + + [require(cuda_glsl_hlsl_metal_spirv, sm_6_6)] + public void atomicAdd(uint index, T value) + { + __atomic_add(ptr[index], value); + } +} + +// We currently don't support UserPointer as an `IDifferentiablePtrType`, the issue is tracked in +// https://github.com/shader-slang/slang/issues/8834. +// So we define an internal extension for now, once we can resolve the issue, we can make it public. +internal extension Ptr : IPointerLikeAddress + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + internal typealias Differential = Ptr; + + internal __init(Ptr ptr) + { + this = ptr; + } + + internal __subscript(uint index)->T + { + [nonmutating] + get { return this[index]; } + + [mutating] + set { this[index] = newValue; } + } + + internal This getOffset(int elements) + { + return This(this + elements); + } + + [require(cuda_glsl_hlsl_metal_spirv, sm_6_6)] + internal void atomicAdd(uint index, T value) {__atomic_add(this[index], value);} +} + +/** +Bindless buffer storage implementation using buffer handles. +Provides pointer-like addressing through buffer handles, enabling more flexible +memory access patterns suitable for dynamic or sparse data structures. +@param T The element type (must be a floating-point type). +@remarks Type constraints: +- `T` must conform to `__BuiltinFloatingPointType` (float, double, half, etc.) +- `T.Differential` must conform to `__BuiltinFloatingPointType` for automatic differentiation +@category neural +*/ +public struct BindlessBufferStorage : IStorage + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + public typealias Address = BindlessAddress; + public typealias Differential = BindlessBufferStorage; + + // Following method will not be needed for bindless storage + public T read(Address address) {return address[0];} + public void atomicAdd(Address address, T value) {address.atomicAdd(0, value);} + public void write(Address address, T value) {address[0] = value;} + public static Address getOffset(Address base, int elements) { return base.getOffset(elements); } +} + +public struct PointerStorage : IStorage + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + public typealias Address = PointerAddress; + public typealias Differential = PointerStorage; + + // Following method will not be needed for pointer storage + public T read(Address address) {return address[0];} + public void atomicAdd(Address address, T value) {address.atomicAdd(0, value);} + public void write(Address address, T value) {address[0] = value;} + public static Address getOffset(Address base, int elements) {return base.getOffset(elements);} +} diff --git a/vulkan/Bin/slang-standard-module-2026.1/buffer-storage.slang b/vulkan/Bin/slang-standard-module-2026.1/buffer-storage.slang new file mode 100644 index 0000000000000000000000000000000000000000..f1d2a7de9f78d306cc72e8f2a349bc50603a28fd --- /dev/null +++ b/vulkan/Bin/slang-standard-module-2026.1/buffer-storage.slang @@ -0,0 +1,129 @@ +implementing neural; + +/** +GPU structured buffer storage implementation. +Implements IStorage using GPU structured buffers (RWStructuredBuffer). +Supports offset-based addressing and atomic operations for gradient accumulation. +@param T The element type (must be a floating-point type). +@remarks Type constraints: +- `T` must conform to `__BuiltinFloatingPointType` (float, double, half, etc.) +- `T.Differential` must conform to `__BuiltinFloatingPointType` for automatic differentiation +@category neural +*/ +public struct StructuredBufferStorage : IStorage + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + /// Address type is a simple unsigned integer index. + public typealias Address = uint; + + /// The underlying buffer type. + public typealias BufferType = RWStructuredBuffer; + + /// Differential type for automatic differentiation. + public typealias Differential = StructuredBufferStorage; + + /// The underlying GPU buffer. + public BufferType m_buffer; + + /** + Base address offset within the buffer. + @remarks Allows multiple storage instances to share the same buffer at different offsets. + Default is 0 (start of buffer). + */ + public Address m_baseAddress = 0U; + + /** + Constructor. + @param[in] buffer The underlying structured buffer. + @param[in] baseAddress Optional base address offset (default: 0). + */ + public __init(BufferType buffer, Address baseAddress = 0U) + { + this.m_buffer = buffer; + this.m_baseAddress = baseAddress; + } + + /** + Reads a value from the buffer. + @param[in] address The address relative to base address. + @return The value at the specified address. + */ + public T read(Address address) + { + return m_buffer[address + m_baseAddress]; + } + + /** + Atomically adds a value (for gradient accumulation). + @param[in] address The address relative to base address. + @param[in] value The value to add. + */ + [require(cuda_glsl_hlsl_metal_spirv, sm_6_6)] + public void atomicAdd(Address address, T value) + { + __target_switch + { + case hlsl: atomicAddForHLSL(address, value); + default: __atomic_add(m_buffer[address + m_baseAddress], value); + } + } + + /** + Atomic add implementation for HLSL using InterlockedCompareExchangeFloatBitwise. + Uses compare-and-swap loop to atomically add floating-point values. + @param[in] address The address relative to base address. + @param[in] value The value to add. + @remarks This method uses a compare-and-swap loop which may have performance + implications under high contention. Only required for HLSL targets. + Requires Shader Model 6.6 or higher for `InterlockedCompareExchangeFloatBitwise` support. + */ + [require(hlsl, sm_6_6)] + internal void atomicAddForHLSL(Address address, T value) + { + T compareValue; + uint bufferIndex = address + m_baseAddress; + + // Compare-and-swap loop + bool success = false; + do + { + compareValue = m_buffer[bufferIndex]; + T newValue = compareValue + value; + success = __atomic_compare_exchange(m_buffer[bufferIndex], compareValue, newValue) == compareValue; + } while (!success); + } + + /** + Writes a value to the buffer. + @param[in] address The address relative to base address. + @param[in] value The value to write. + */ + public void write(Address address, T value) + { + m_buffer[address + m_baseAddress] = value; + } + + /** + Gets a buffer reference from an address (for advanced use cases). + @param[in] address The address to get buffer from. + @return A buffer reference starting at the specified address. + */ + // [require(cpp_cuda_metal_spirv)] + public BufferType getBufferFromAddress(Address address) + { + let ptr = &m_buffer[address + m_baseAddress]; + return bit_cast(ptr); + } + + /** + Computes an offset address. + @param[in] base The base address. + @param[in] elements Number of elements to offset by. + @return The offset address. + */ + public static Address getOffset(Address base, int elements) + { + return base + elements; + } +} diff --git a/vulkan/Bin/slang-standard-module-2026.1/inline-vector.slang b/vulkan/Bin/slang-standard-module-2026.1/inline-vector.slang new file mode 100644 index 0000000000000000000000000000000000000000..caed6873f9ebcc9eeba07623a0dc8cc43ecf8da6 --- /dev/null +++ b/vulkan/Bin/slang-standard-module-2026.1/inline-vector.slang @@ -0,0 +1,303 @@ +implementing neural; + +/** +Concrete implementation of IVector storing elements inline (on stack/registers). +InlineVector stores all elements in a fixed-size array, making it suitable for +small vectors that can fit in registers or stack memory. Supports automatic differentiation +for gradient computation in neural networks. +@param T The element type +@param N The vector size (compile-time constant). +@remarks Type constraints: +- `T` must conform to `__BuiltinFloatingPointType` (float, double, half, etc.) +- `T.Differential` must conform to `__BuiltinFloatingPointType` for automatic differentiation +@category neural +*/ +public struct InlineVector : IVector + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + /// The differential type for automatic differentiation. + public typealias Differential = InlineVector; + + /// The compile-time size of the vector. + public static const int Size = N; + + /** + Internal storage for vector elements. + @remarks Marked as derivative member to enable automatic differentiation. + */ + [DerivativeMember(Differential.data)] + internal T[N] data; + + /// Default constructor - initializes all elements to zero. + public __init() { data = {}; } + + /** + Scalar broadcast constructor - fills all elements with the same value. + @param[in] value The value to broadcast to all elements. + */ + public __init(T value) { + [ForceUnroll] + for (int i = 0; i < N; i++) + data[i] = value; + } + + /** + Array constructor - initializes from an array. + @param[in] data Array of N elements to initialize the vector. + */ + public __init(T[N] data) { this.data = data; } + + /** + Copy constructor. + @param[in] other The vector to copy from. + */ + public __init(This other) { this.data = other.data; } + + /** + Element access operator. + @param[in] index The element index (0-based). + @return Reference to the element at the given index. + */ + public __subscript(int index) -> T + { + get() { return this.data[index]; } + set() { this.data[index] = newValue; } + } + + // Linear transformation without bias + [BackwardDerivative(linearTransformBwd)] + public OutputVector linearTransform( + Storage weightStorage, + no_diff Storage.Address weightAddress) + where Storage : IStorage + where Storage.Differential : IStorage + where Storage.Address == Storage.Differential.Address + where OutputVector : IVector + { + OutputVector output = OutputVector(); + + [MaxIters(OutputSize)] + for (int row = 0; row < OutputSize; row++) + { + // get the address of each row of the weight matrix + let rowOffset = Storage.getOffset(weightAddress, row * N); + [ForceUnroll] + for (int col = 0; col < N; col++) + { + let elementOffset = Storage.getOffset(rowOffset, col); + output[row] += data[col] * weightStorage.read(elementOffset); + } + } + + return output; + } + + // Linear transformation with bias + [BackwardDerivative(linearTransformBwd)] + public OutputVector linearTransform( + Storage weightStorage, + Storage biasStorage, + no_diff Storage.Address weightAddress, + no_diff Storage.Address biasAddress) + where Storage : IStorage + where Storage.Differential : IStorage + where Storage.Address == Storage.Differential.Address + where OutputVector : IVector + { + // Reuse the unbias matmul method + OutputVector output = this.linearTransform(weightStorage, weightAddress); + + // apply the bias + [ForceUnroll] + for (int i = 0; i < OutputSize; i++) + { + let elementOffset = Storage.getOffset(biasAddress, i); + output[i] = output[i] + biasStorage.read(elementOffset); + } + + return output; + } + + // Backward of linear transformation without bias + static void linearTransformBwd( + inout DifferentialPair dthis, + DifferentialPtrPair dWeightStorage, + no_diff Storage.Address dWeightAddress, + OutputVector.Differential doutput) + where Storage : IStorage + where Storage.Differential : IStorage + where Storage.Address == Storage.Differential.Address + where OutputVector : IVector + { + // Derivative of the input is transposed weight matrix times the output differential + var d = dthis.d; + + [MaxIters(OutputSize)] + for (int j = 0; j < OutputSize; j++) + { + T.Differential dy = doutput[j]; + + [ForceUnroll] + for (int i = 0; i < N; i++) + { + Storage.Address elementOffset = Storage.getOffset(dWeightAddress, i * OutputSize + j); + T.Differential prod = T.Differential.dmul(dWeightStorage.p.read(elementOffset), dy); + d[i] = T.Differential.dadd(d[i], prod); + } + } + + // Derivative of the weights is the outer product of the input and the output differential + // dW = dOutput * dInput^T + [MaxIters(OutputSize)] + for (int row = 0; row < OutputSize; row++) + { + let rowOffset = Storage.getOffset(dWeightAddress, row * N); + T.Differential dy = doutput[row]; + [ForceUnroll] + for (int col = 0; col < N; col++) + { + let x = dthis.p[col]; + let elementOffset = Storage.getOffset(rowOffset, col); + T.Differential prod = T.Differential.dmul(x, dy); + dWeightStorage.d.atomicAdd(elementOffset, prod); + } + } + + dthis = DifferentialPair(dthis.p, d); + } + + // Backward of linear transformation with bias + static void linearTransformBwd( + inout DifferentialPair dthis, + DifferentialPtrPair dWeightStorage, + DifferentialPtrPair dBiasStorage, + no_diff Storage.Address dWeightAddress, + no_diff Storage.Address dBiasAddress, + OutputVector.Differential doutput) + where Storage : IStorage + where Storage.Differential : IStorage + where Storage.Address == Storage.Differential.Address + where OutputVector : IVector + { + // Reuse the unbias backward method + linearTransformBwd(dthis, dWeightStorage, dWeightAddress, doutput); + + // Derivative of the bias is the same as the output differential + [ForceUnroll] + for (int i = 0; i < OutputSize; i++) + { + let biasOffset = Storage.getOffset(dBiasAddress, i); + dBiasStorage.d.atomicAdd(biasOffset, doutput[i]); + } + } + + // Linear transformation without bias (Bindless storage) + [BackwardDerivative(linearTransformBwd)] + public OutputVector linearTransform( + Address weightAddress) + where Address : IPointerLikeAddress + where Address.Differential : IPointerLikeAddress + where OutputVector : IVector + { + var output = OutputVector(); + + // output = W * input + [MaxIters(OutputSize)] + for (int row = 0; row < OutputSize; row++) + { + // get the address of each row of the weight matrix + let rowAddr = weightAddress.getOffset(row * N); + [ForceUnroll] + for (int col = 0; col < N; col++) + { + output[row] += data[col] * rowAddr[col]; + } + } + return output; + } + + // Linear transformation with bias (Bindless storage) + [BackwardDerivative(linearTransformBwd)] + public OutputVector linearTransform( + Address weightAddress, + Address biasAddress) + where Address : IPointerLikeAddress + where Address.Differential : IPointerLikeAddress + where OutputVector : IVector + { + // Reuse the unbias matmul method + OutputVector output = this.linearTransform(weightAddress); + + [ForceUnroll] + for (int i = 0; i < OutputSize; i++) + output[i] = output[i] + biasAddress[i]; + + return output; + } + + // Backward of linear transformation without bias (Bindless storage) + static public void linearTransformBwd( + inout DifferentialPair dthis, + DifferentialPtrPair
dparameters, + OutputVector.Differential doutput) + where Address : IPointerLikeAddress + where Address.Differential : IPointerLikeAddress + where OutputVector : IVector + where OutputVector.Differential : IVector + { + // dInput = dW^T * dOutput + var d = dthis.d; + [MaxIters(OutputSize)] + for (int j = 0; j < OutputSize; j++) + { + let dy = doutput[j]; + [ForceUnroll] + for (int i = 0; i < N; i++) + { + T.Differential prod = T.Differential.dmul(dparameters.p[i * OutputSize + j], dy); + d[i] = T.Differential.dadd(d[i], prod); + } + } + + // Derivative of the weights is the outer product of the input and the output differential + // dW = dOutput * dInput^T + [MaxIters(OutputSize)] + for (int row = 0; row < OutputSize; row++) + { + let rowAddr = dparameters.d.getOffset(row * N); + T.Differential dy = doutput[row]; + [ForceUnroll] + for (int col = 0; col < N; col++) + { + let x = dthis.p[col]; + T.Differential prod = T.Differential.dmul(x, dy); + rowAddr.atomicAdd(col, prod); + } + } + + dthis = DifferentialPair(dthis.p, d); + } + + // Backward of linear transformation with bias (Bindless storage) + static public void linearTransformBwd( + inout DifferentialPair dthis, + DifferentialPtrPair
dWeightAddress, + DifferentialPtrPair
dBiasAddress, + OutputVector.Differential doutput) + where Address : IPointerLikeAddress + where Address.Differential : IPointerLikeAddress + where OutputVector : IVector + { + // Reuse the unbias backward method + linearTransformBwd(dthis, dWeightAddress, doutput); + + let biasOffset = dBiasAddress.d.getOffset(0); + // dBias = dOutput + [ForceUnroll] + for (int i = 0; i < OutputSize; i++) + { + biasOffset.atomicAdd(i, doutput[i]); + } + } +} diff --git a/vulkan/Bin/slang-standard-module-2026.1/istorages.slang b/vulkan/Bin/slang-standard-module-2026.1/istorages.slang new file mode 100644 index 0000000000000000000000000000000000000000..cc55fe3ed129b7a7cb948922b8b16d9d6c98b674 --- /dev/null +++ b/vulkan/Bin/slang-standard-module-2026.1/istorages.slang @@ -0,0 +1,90 @@ +implementing neural; + +/** +Storage interface for accessing neural network parameters. +Provides an abstraction for reading/writing parameters from various storage backends +(GPU buffers, shared memory, etc.). Supports automatic differentiation for gradient accumulation. +@param T The element type (must be a floating-point type). +@remarks Type constraints: +- `T` must conform to `__BuiltinFloatingPointType` (float, double, half, etc.) +- `T.Differential` must conform to `__BuiltinFloatingPointType` for automatic differentiation +@see `StructuredBufferStorage`, `BindlessBufferStorage` +@category neural +*/ +public interface IStorage : IDifferentiablePtrType + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + /** + Address type for this storage backend. + @remarks Different storage types may use different addressing schemes (indices, pointers, etc.). + */ + public associatedtype Address; + + /** + Reads a value from storage. + @param[in] address The address to read from. + @return The value at the specified address. + */ + public T read(Address address); + + /** + Atomically adds a value to storage (for gradient accumulation). + @param[in] address The address to add to. + @param[in] value The value to add. + */ + [require(cuda_glsl_hlsl_metal_spirv, sm_6_6)] + public void atomicAdd(Address address, T value); + + /** + Writes a value to storage. + @param[in] address The address to write to. + @param[in] value The value to write. + */ + public void write(Address address, T value); + + /** + Computes an offset address. + @param[in] base The base address. + @param[in] elements Number of elements to offset by. + @return The offset address. + */ + public static Address getOffset(Address base, int elements); +} + +/** +Interface for pointer-like addressing with direct subscript access. +Provides array-like access patterns for storage backends that support pointer arithmetic. +@param T The element type. +@remarks Type constraints: +- `T` must conform to `__BuiltinFloatingPointType` (float, double, half, etc.) +- `T.Differential` must conform to `__BuiltinFloatingPointType` for automatic differentiation +@see `BindlessBufferStorage.BindlessAddress` +@category neural +*/ +public interface IPointerLikeAddress : IDifferentiablePtrType + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + /** + Array-style element access. + @param[in] index The element index. + @return Reference to the element at the given index. + */ + public __subscript(uint index) -> T { get; set; } + + /** + Computes an offset pointer. + @param[in] elements Number of elements to offset by. + @return The offset pointer. + */ + public This getOffset(int elements); + + /** + Atomically adds a value at an index. + @param[in] index The element index. + @param[in] value The value to add. + */ + [require(cuda_glsl_hlsl_metal_spirv, sm_6_6)] + public void atomicAdd(uint index, T value); +} diff --git a/vulkan/Bin/slang-standard-module-2026.1/ivector.slang b/vulkan/Bin/slang-standard-module-2026.1/ivector.slang new file mode 100644 index 0000000000000000000000000000000000000000..6b3547fec32fd98aef0f1361b993410cbc0ed867 --- /dev/null +++ b/vulkan/Bin/slang-standard-module-2026.1/ivector.slang @@ -0,0 +1,171 @@ +implementing neural; + +/** +Generic vector interface for neural network operations. +Provides a differentiable vector abstraction supporting automatic differentiation +and linear algebra operations for neural network computations. +@param T The element type (must be a floating-point type). +@param N The vector size (compile-time constant). +@remarks Type constraints: +- `T` must conform to `__BuiltinFloatingPointType` (float, double, half, etc.) +- `T.Differential` must conform to `__BuiltinFloatingPointType` for automatic differentiation +@see `InlineVector` +@category neural +*/ +public interface IVector : IDifferentiable + where T : __BuiltinFloatingPointType + where T.Differential == T +{ + /// The compile-time size of the vector. + public static const int Size; + + /// The differential type for automatic differentiation. + /// @remarks Ensures the differential is also a vector with the same structure. + public associatedtype Differential : IVector; + + /// Default constructor - initializes vector to zero. + public __init(); + + /** + Scalar broadcast constructor - fills all elements with the same value. + @param[in] value The value to broadcast to all elements. + */ + public __init(T value); + + /** + Array constructor - initializes from an array. + @param[in] data Array of N elements to initialize the vector. + */ + public __init(T[N] data); + + /** + Copy constructor. + @param[in] other The vector to copy from. + */ + public __init(This other); + + /** + Element access operator. + @param[in] index The element index (0-based). + @return Reference to the element at the given index. + */ + public __subscript(int index)->T + { + get; + set; + } + + /** + Evaluates a linear transformation: output = W * input. + Performs matrix-vector multiplication. + Supports automatic differentiation for backpropagation. + @param OutputSize The size of the output vector. + @param Bias Whether to include bias in the computation. + @param Storage The storage type for parameters (must implement IStorage). + @param OutputVector The output vector type. + @param[in] weightStorage The storage object containing weight matrix. + The weight matrix is stored in a contiguous block of memory, the size + of the weight matrix is in `OutputSize` rows, and `N` columns. + @param[in] weightAddress The starting address in weightStorage for the weight matrix. + @return The result of the linear transformation, `result = W * this`, whose size is `OutputSize`. + @remarks Type constraints: + - `Storage` must conform to `IStorage` + - `Storage.Differential` must conform to `IStorage` + - `Storage.Address` must equal `Storage.Differential.Address` (same address type) + - `OutputVector` must conform to `IVector` + */ + [Differentiable] + public OutputVector linearTransform( + Storage weightStorage, + no_diff Storage.Address weightAddress) + where Storage : IStorage + where Storage.Differential : IStorage + where Storage.Address == Storage.Differential.Address + where OutputVector : IVector; + + /** + Evaluates a linear transformation: output = W * this + bias. + Performs matrix-vector multiplication with bias addition. + Supports automatic differentiation for backpropagation. + @param OutputSize The size of the output vector. + @param Storage The storage type for parameters (must implement IStorage). + @param OutputVector The output vector type. + @param[in] weightStorage The storage object containing weight matrix. + The weight matrix is stored in a contiguous block of memory, the size + of the weight matrix is in `OutputSize` rows, and `N` columns. + @param[in] weightAddress The starting address in weightStorage for the weight matrix. + @param[in] biasStorage The storage object containing bias vector. + The bias vector is stored in a contiguous block of memory, the size + of the bias vector is `OutputSize`. + @param[in] weightAddress The starting address in `weightStorage` for the weight matrix. + @param[in] biasAddress The starting address in `biasStorage` for the bias vector. + @return The result of the linear transformation, `result = W * this + bias`, whose size is `OutputSize`. + @remarks Type constraints: + - `Storage` must conform to `IStorage` + - `Storage.Differential` must conform to `IStorage` + - `Storage.Address` must equal `Storage.Differential.Address` (same address type) + - `OutputVector` must conform to `IVector` + */ + [Differentiable] + public OutputVector linearTransform( + Storage weightStorage, + Storage biasStorage, + no_diff Storage.Address weightAddress, + no_diff Storage.Address biasAddress) + where Storage : IStorage + where Storage.Differential : IStorage + where Storage.Address == Storage.Differential.Address + where OutputVector : IVector; + + /** + Evaluates a linear transformation: output = W * this. + This is a overload method but using bindless storage (pointer-like addressing). + @param OutputSize The size of the output vector. + @param BindlessStorage The bindless storage type with pointer-like addresses. + @param OutputVector The output vector type. + @param[in] weightAddress The address of weight matrix in bindless storage. + The weight matrix is stored in a contiguous block of memory, the size + of the weight matrix is in `OutputSize` rows, and `N` columns. As this method take the + bindless storage buffer, we don't need to provide the storage object. + @return The result of the linear transformation, `result = W * this`, whose size is `OutputSize`. + @remarks Type constraints: + - `BindlessStorage` must conform to `IStorage` + - `BindlessStorage.Address` must conform to `IPointerLikeAddress` + - `BindlessStorage.Address.Differential` must conform to `IPointerLikeAddress` + - `OutputVector` must conform to `IVector` + */ + [Differentiable] + public OutputVector linearTransform(Address weightAddress) + where Address : IPointerLikeAddress + where Address.Differential : IPointerLikeAddress + where OutputVector : IVector; + + /** + Evaluates a linear transformation: output = W * this + bias. + Performs matrix-vector multiplication with bias addition. + Supports automatic differentiation for backpropagation. + @param OutputSize The size of the output vector. + @param BindlessStorage The bindless storage type with pointer-like addresses. + @param OutputVector The output vector type. + @param[in] weightAddress The address of weight matrix in bindless storage. + The weight matrix is stored in a contiguous block of memory, the size + of the weight matrix is in `OutputSize` rows, and `N` columns. As this method take the + bindless storage buffer, we don't need to provide the storage object. + @param[in] biasAddress The address of bias vector in bindless storage. + The bias vector is stored in a contiguous block of memory, the size + of the bias vector is `OutputSize`. As this method take the + bindless storage buffer, we don't need to provide the storage object. + @return The result of the linear transformation, `result = W * this + bias`, whose size is `OutputSize`. + @remarks Type constraints: + - `BindlessStorage` must conform to `IStorage` + - `BindlessStorage.Address` must conform to `IPointerLikeAddress` + - `BindlessStorage.Address.Differential` must conform to `IPointerLikeAddress` + - `OutputVector` must conform to `IVector` + */ + [Differentiable] + public OutputVector linearTransform( + Address weightAddress, Address biasAddress) + where Address : IPointerLikeAddress + where Address.Differential : IPointerLikeAddress + where OutputVector : IVector; +} diff --git a/vulkan/Bin/slang-standard-module-2026.1/neural.slang b/vulkan/Bin/slang-standard-module-2026.1/neural.slang new file mode 100644 index 0000000000000000000000000000000000000000..3f772de2e3b681b71bb8cb3df611903d8683925e --- /dev/null +++ b/vulkan/Bin/slang-standard-module-2026.1/neural.slang @@ -0,0 +1,39 @@ +/** +Neural network primitives for Slang. +This module provides differentiable primitive data structures and operations for implementing +inline MLP (Multilayer Perceptron) in Slang shaders. It includes vector types, storage abstractions, +activation functions, optimizers, and automatic differentiation support for training small inline +neural networks on the GPU. + +@remarks EXPERIMENTAL: This module is under active design and may change significantly +or be removed in future versions. DO NOT USE IN PRODUCTION. + +@category neural + +Features: +- Differentiable vector types (IVector, InlineVector) +- Storage abstractions for GPU buffers (IStorage, StructuredBufferStorage) +- Automatic differentiation support +- Linear transformations with optional bias +- Atomic operations for gradient accumulation + +Example Usage: +``` +// Create an input vector +InlineVector input = InlineVector({1.0, 2.0, 3.0, 4.0}); + +// Set up storage for weights +StructuredBufferStorage storage = StructuredBufferStorage(weightsBuffer); + +// Perform linear transformation: output = W * input +InlineVector output = input.eval<2, false>(storage, 0); +``` +*/ +[ExperimentalModule] +module neural; + +__include "ivector"; +__include "inline-vector"; +__include "istorages"; +__include "bindless-storage"; +__include "buffer-storage"; diff --git a/vulkan/Bin/slang.dll b/vulkan/Bin/slang.dll new file mode 100644 index 0000000000000000000000000000000000000000..57dd1d5bed7af094c8224f026d87b2e37644f405 Binary files /dev/null and b/vulkan/Bin/slang.dll differ diff --git a/vulkan/Bin/slang.slang b/vulkan/Bin/slang.slang new file mode 100644 index 0000000000000000000000000000000000000000..75fa8a01fddba72300c95da5bf8a8d8d22afaa80 --- /dev/null +++ b/vulkan/Bin/slang.slang @@ -0,0 +1,446 @@ +public namespace slang +{ + +public typedef int32_t Result; +public typedef uint64_t Size; +public typedef int64_t Int; +public typedef uint64_t UInt; + +/*! +@brief Severity of a diagnostic generated by the compiler. +Values come from the enum below, with higher values representing more severe +conditions, and all values >= SLANG_SEVERITY_ERROR indicating compilation +failure. +*/ +public enum SlangSeverity +{ + SLANG_SEVERITY_DISABLED = 0, /**< A message that is disabled, filtered out. */ + SLANG_SEVERITY_NOTE, /**< An informative message. */ + SLANG_SEVERITY_WARNING, /**< A warning, which indicates a possible proble. */ + SLANG_SEVERITY_ERROR, /**< An error, indicating that compilation failed. */ + SLANG_SEVERITY_FATAL, /**< An unrecoverable error, which forced compilation to abort. */ + SLANG_SEVERITY_INTERNAL, /**< An internal error, indicating a logic error in the compiler. */ +}; + +public enum SlangDiagnosticFlags +{ + SLANG_DIAGNOSTIC_FLAG_VERBOSE_PATHS = 0x01, + SLANG_DIAGNOSTIC_FLAG_TREAT_WARNINGS_AS_ERRORS = 0x02 +}; + +public enum SlangBindableResourceType +{ + SLANG_NON_BINDABLE = 0, + SLANG_TEXTURE, + SLANG_SAMPLER, + SLANG_UNIFORM_BUFFER, + SLANG_STORAGE_BUFFER, +}; + +public enum SlangCompileTarget +{ + SLANG_TARGET_UNKNOWN, + SLANG_TARGET_NONE, + SLANG_GLSL, + SLANG_GLSL_VULKAN, //< deprecated: just use `SLANG_GLSL` + SLANG_GLSL_VULKAN_ONE_DESC, //< deprecated + SLANG_HLSL, + SLANG_SPIRV, + SLANG_SPIRV_ASM, + SLANG_DXBC, + SLANG_DXBC_ASM, + SLANG_DXIL, + SLANG_DXIL_ASM, + SLANG_C_SOURCE, ///< The C language + SLANG_CPP_SOURCE, ///< C++ code for shader kernels. + SLANG_CPP_PYTORCH_BINDING, + SLANG_HOST_EXECUTABLE, ///< Standalone binary executable (for hosting CPU/OS) + SLANG_SHADER_SHARED_LIBRARY, ///< A shared library/Dll for shader kernels (for hosting CPU/OS) + SLANG_SHADER_HOST_CALLABLE, ///< A CPU target that makes the compiled shader code available to be run immediately + SLANG_CUDA_SOURCE, ///< Cuda source + SLANG_PTX, ///< PTX + SLANG_OBJECT_CODE, ///< Object code that can be used for later linking + SLANG_HOST_CPP_SOURCE, ///< C++ code for host library or executable. + SLANG_HOST_HOST_CALLABLE, ///< + SLANG_CPP_HEADER, ///< C++ header for shader kernels. + SLANG_CUDA_HEADER, ///< Cuda header + SLANG_TARGET_COUNT_OF, +}; + +/* A "container format" describes the way that the outputs +for multiple files, entry points, targets, etc. should be +combined into a single artifact for output. */ +public enum SlangContainerFormat +{ + /* Don't generate a container. */ + SLANG_CONTAINER_FORMAT_NONE, + + /* Generate a container in the `.slang-module` format, + which includes reflection information, compiled kernels, etc. */ + SLANG_CONTAINER_FORMAT_SLANG_MODULE, +}; + +public enum SlangPassThrough : int +{ + SLANG_PASS_THROUGH_NONE, + SLANG_PASS_THROUGH_FXC, + SLANG_PASS_THROUGH_DXC, + SLANG_PASS_THROUGH_GLSLANG, + SLANG_PASS_THROUGH_SPIRV_DIS, + SLANG_PASS_THROUGH_CLANG, ///< Clang C/C++ compiler + SLANG_PASS_THROUGH_VISUAL_STUDIO, ///< Visual studio C/C++ compiler + SLANG_PASS_THROUGH_GCC, ///< GCC C/C++ compiler + SLANG_PASS_THROUGH_GENERIC_C_CPP, ///< Generic C or C++ compiler, which is decided by the source type + SLANG_PASS_THROUGH_NVRTC, ///< NVRTC Cuda compiler + SLANG_PASS_THROUGH_LLVM, ///< LLVM 'compiler' - includes LLVM and Clang + SLANG_PASS_THROUGH_SPIRV_OPT, + SLANG_PASS_THROUGH_COUNT_OF, +}; + +/* Defines an archive type used to holds a 'file system' type structure. */ +public enum SlangArchiveType : int +{ + SLANG_ARCHIVE_TYPE_UNDEFINED, + SLANG_ARCHIVE_TYPE_ZIP, + SLANG_ARCHIVE_TYPE_RIFF, ///< Riff container with no compression + SLANG_ARCHIVE_TYPE_RIFF_DEFLATE, + SLANG_ARCHIVE_TYPE_RIFF_LZ4, + SLANG_ARCHIVE_TYPE_COUNT_OF, +}; + +/*! +Flags to control compilation behavior. +*/ +public enum SlangCompileFlags +{ + /* Do as little mangling of names as possible, to try to preserve original names */ + SLANG_COMPILE_FLAG_NO_MANGLING = 1 << 3, + + /* Skip code generation step, just check the code and generate layout */ + SLANG_COMPILE_FLAG_NO_CODEGEN = 1 << 4, + + /* Obfuscate shader names on release products */ + SLANG_COMPILE_FLAG_OBFUSCATE = 1 << 5, + + /* Deprecated flags: kept around to allow existing applications to + compile. Note that the relevant features will still be left in + their default state. */ + SLANG_COMPILE_FLAG_NO_CHECKING = 0, + SLANG_COMPILE_FLAG_SPLIT_MIXED_TYPES = 0, +}; + +/*! +@brief Flags to control code generation behavior of a compilation target */ +public enum SlangTargetFlags +{ + None = 0, + + /* When compiling for a D3D Shader Model 5.1 or higher target, allocate + distinct register spaces for parameter blocks. + + @deprecated This behavior is now enabled unconditionally. + */ + SLANG_TARGET_FLAG_PARAMETER_BLOCKS_USE_REGISTER_SPACES = 1 << 4, + + /* When set, will generate target code that contains all entrypoints defined + in the input source or specified via the `spAddEntryPoint` function in a + single output module (library/source file). + */ + SLANG_TARGET_FLAG_GENERATE_WHOLE_PROGRAM = 1 << 8, + + /* When set, will dump out the IR between intermediate compilation steps.*/ + SLANG_TARGET_FLAG_DUMP_IR = 1 << 9, + + /* When set, will generate SPIRV directly instead of going through glslang. */ + SLANG_TARGET_FLAG_GENERATE_SPIRV_DIRECTLY = 1 << 10, +}; + +/*! +@brief Options to control floating-point precision guarantees for a target. +*/ +public enum SlangFloatingPointMode +{ + SLANG_FLOATING_POINT_MODE_DEFAULT = 0, + SLANG_FLOATING_POINT_MODE_FAST, + SLANG_FLOATING_POINT_MODE_PRECISE, +}; + +/*! +@brief Options to control emission of `#line` directives +*/ +public enum SlangLineDirectiveMode +{ + SLANG_LINE_DIRECTIVE_MODE_DEFAULT = 0, /**< Default behavior: pick behavior base on target. */ + SLANG_LINE_DIRECTIVE_MODE_NONE, /**< Don't emit line directives at all. */ + SLANG_LINE_DIRECTIVE_MODE_STANDARD, /**< Emit standard C-style `#line` directives. */ + SLANG_LINE_DIRECTIVE_MODE_GLSL, /**< Emit GLSL-style directives with file *number* instead of name */ +}; + +public enum SlangSourceLanguage : int +{ + SLANG_SOURCE_LANGUAGE_UNKNOWN, + SLANG_SOURCE_LANGUAGE_SLANG, + SLANG_SOURCE_LANGUAGE_HLSL, + SLANG_SOURCE_LANGUAGE_GLSL, + SLANG_SOURCE_LANGUAGE_C, + SLANG_SOURCE_LANGUAGE_CPP, + SLANG_SOURCE_LANGUAGE_CUDA, + SLANG_SOURCE_LANGUAGE_COUNT_OF, +}; + +public enum SlangProfileID +{ + SLANG_PROFILE_UNKNOWN, +}; + +public enum SlangCapabilityID +{ + SLANG_CAPABILITY_UNKNOWN = 0, +}; + +public enum SlangMatrixLayoutMode +{ + SLANG_MATRIX_LAYOUT_MODE_UNKNOWN = 0, + SLANG_MATRIX_LAYOUT_ROW_MAJOR, + SLANG_MATRIX_LAYOUT_COLUMN_MAJOR, +}; + +public enum SlangStage +{ + SLANG_STAGE_NONE, + SLANG_STAGE_VERTEX, + SLANG_STAGE_HULL, + SLANG_STAGE_DOMAIN, + SLANG_STAGE_GEOMETRY, + SLANG_STAGE_FRAGMENT, + SLANG_STAGE_COMPUTE, + SLANG_STAGE_RAY_GENERATION, + SLANG_STAGE_INTERSECTION, + SLANG_STAGE_ANY_HIT, + SLANG_STAGE_CLOSEST_HIT, + SLANG_STAGE_MISS, + SLANG_STAGE_CALLABLE, + SLANG_STAGE_MESH, + SLANG_STAGE_AMPLIFICATION, +}; + +public enum SlangDebugInfoLevel +{ + SLANG_DEBUG_INFO_LEVEL_NONE = 0, /**< Don't emit debug information at all. */ + SLANG_DEBUG_INFO_LEVEL_MINIMAL, /**< Emit as little debug information as possible, while still supporting stack trackes. */ + SLANG_DEBUG_INFO_LEVEL_STANDARD, /**< Emit whatever is the standard level of debug information for each target. */ + SLANG_DEBUG_INFO_LEVEL_MAXIMAL, /**< Emit as much debug infromation as possible for each target. */ +}; + +public enum SlangOptimizationLevel +{ + SLANG_OPTIMIZATION_LEVEL_NONE = 0, /**< Don't optimize at all. */ + SLANG_OPTIMIZATION_LEVEL_DEFAULT, /**< Default optimization level: balance code quality and compilation time. */ + SLANG_OPTIMIZATION_LEVEL_HIGH, /**< Optimize aggressively. */ + SLANG_OPTIMIZATION_LEVEL_MAXIMAL, /**< Include optimizations that may take a very long time, or may involve severe space-vs-speed tradeoffs */ +}; +public enum SlangTypeKind +{ + NONE, + STRUCT, + ARRAY, + MATRIX, + VECTOR, + SCALAR, + CONSTANT_BUFFER, + RESOURCE, + SAMPLER_STATE, + TEXTURE_BUFFER, + SHADER_STORAGE_BUFFER, + PARAMETER_BLOCK, + GENERIC_TYPE_PARAMETER, + INTERFACE, + OUTPUT_STREAM, + SPECIALIZED, + FEEDBACK, + COUNT, +}; + +public enum SlangScalarType +{ + NONE, + VOID, + BOOL, + INT32, + UINT32, + INT64, + UINT64, + FLOAT16, + FLOAT32, + FLOAT64, + INT8, + UINT8, + INT16, + UINT16, +}; + +public struct TypeReflection +{ +}; + +public enum CompileStdLibFlags +{ + WriteDocumentation = 0x1, +}; + +[COM("8BA5FB08-5195-40e2-AC58-0D-98-9C-3A-01-02")] +public interface ISlangBlob +{ + public void *getBufferPointer(); + public Size getBufferSize(); +}; + +/** Description of a code generation target. + */ +public struct TargetDesc +{ + /** The size of this structure, in bytes. + */ + public Size structureSize = 40; + + /** The target format to generate code for (e.g., SPIR-V, DXIL, etc.) + */ + public SlangCompileTarget format = SlangCompileTarget.SLANG_TARGET_UNKNOWN; + + /** The compilation profile supported by the target (e.g., "Shader Model 5.1") + */ + public SlangProfileID profile = SlangProfileID.SLANG_PROFILE_UNKNOWN; + + /** Flags for the code generation target. Currently unused. */ + public SlangTargetFlags flags = SlangTargetFlags.None; + + /** Default mode to use for floating-point operations on the target. + */ + public SlangFloatingPointMode floatingPointMode = SlangFloatingPointMode.SLANG_FLOATING_POINT_MODE_DEFAULT; + + /** Optimization level to use for the target. + */ + public SlangOptimizationLevel optimizationLevel = SlangOptimizationLevel.SLANG_OPTIMIZATION_LEVEL_DEFAULT; + + /** The line directive mode for output source code. + */ + public SlangLineDirectiveMode lineDirectiveMode = SlangLineDirectiveMode.SLANG_LINE_DIRECTIVE_MODE_DEFAULT; + + /** Whether to force `scalar` layout for glsl shader storage buffers. + */ + public bool forceGLSLScalarBufferLayout = false; +}; + +public enum SessionFlags +{ + kSessionFlags_None = 0 +}; + +public struct PreprocessorMacroDesc +{ + public NativeString name; + public NativeString value; +}; + +public struct SessionDesc +{ + /** The size of this structure, in bytes. + */ + public Size structureSize = 72; + + /** Code generation targets to include in the session. + */ + public TargetDesc *targets = nullptr; + public Int targetCount = 0; + + /** Flags to configure the session. + */ + public SessionFlags flags = SessionFlags.kSessionFlags_None; + + /** Default layout to assume for variables with matrix types. + */ + public SlangMatrixLayoutMode defaultMatrixLayoutMode = SlangMatrixLayoutMode.SLANG_MATRIX_LAYOUT_ROW_MAJOR; + + /** Paths to use when searching for `#include`d or `import`ed files. + */ + public NativeString *searchPaths = nullptr; + public Int searchPathCount = 0; + + public PreprocessorMacroDesc *preprocessorMacros = nullptr; + public Int preprocessorMacroCount = 0; + + public void *fileSystem = nullptr; +}; + +/** A global session for interaction with the Slang library. + +An application may create and re-use a single global session across +multiple sessions, in order to amortize startups costs (in current +Slang this is mostly the cost of loading the Slang standard library). + +The global session is currently *not* thread-safe and objects created from +a single global session should only be used from a single thread at +a time. +*/ +[COM("c140b5fd-0c78-452e-ba7c-1a-1e-70-c7-f7-1c")] +public interface IGlobalSession +{ +}; + +public enum class ContainerType +{ + None, UnsizedArray, StructuredBuffer, ConstantBuffer, ParameterBlock +}; + +/** A session provides a scope for code that is loaded. + +A session can be used to load modules of Slang source code, +and to request target-specific compiled binaries and layout +information. + +In order to be able to load code, the session owns a set +of active "search paths" for resolving `#include` directives +and `import` declrations, as well as a set of global +preprocessor definitions that will be used for all code +that gets `import`ed in the session. + +If multiple user shaders are loaded in the same session, +and import the same module (e.g., two source files do `import X`) +then there will only be one copy of `X` loaded within the session. + +In order to be able to generate target code, the session +owns a list of available compilation targets, which specify +code generation options. + +Code loaded and compiled within a session is owned by the session +and will remain resident in memory until the session is released. +Applications wishing to control the memory usage for compiled +and loaded code should use multiple sessions. +*/ +[COM("67618701-d116-468f-ab3b-47-4b-ed-ce-0e-3d")] +public interface ISession +{ +}; + +[COM("5bc42be8-5c50-4929-9e5e-d15e7c24015f")] +public interface IComponentType +{ +} + +public struct TypeLayoutReflection { } + +/** The kind of specialization argument. */ +public enum class SpecializationArgKind : int32_t +{ + Unknown, /**< An invalid specialization argument. */ + Type, /**< Specialize to a type. */ +}; + +public struct SpecializationArg +{ + public SpecializationArgKind kind; + /** A type specialization argument, used for `Kind::Type`. */ + public TypeReflection *type; +} + +} diff --git a/vulkan/Bin/slangd.exe b/vulkan/Bin/slangd.exe new file mode 100644 index 0000000000000000000000000000000000000000..11a6e068255cabb9357695e6e8f425b244b8d896 Binary files /dev/null and b/vulkan/Bin/slangd.exe differ

gR0;7)CgB~XK5@rsVm}N*tDIO>fNv~9vTtH9#5*Ia^E +{`}pSjd`eta8^cIw!y=lRSs@m<5wliAdTEr6&xBWO5fX6w&kMxYJ|$85#3;HUc*QgD$B ++`;kl0dT>@DM;aY&TIsX7X2WoHG^7HWQ;QgKu^$qyK&w@aNtDt8uzpBEWt)KR9P6th!!9i)7-*pJt`y +rf!}vSKn0O0+I0khb`gvZ*aXdZ3zAL=tr*cWZi(4^v>1@{sBNC7MY&#!4(&mvXl3TRG&NF4mXT!q6J# +hFXD84{i2%(s8lGkuBxpzgM0!ig1JLxBR~75T +~uItD@&bKRIetpc1O>iKjWzktfwIm@&U5}V_9w>p*}K7D7$6Q25W8aFzrgG%)~?Wns>y}wq#c5?OB{GuW|eH&5RuRinf4wWLvgITke4TwucLA7}#_Ic368*iedhkoZL6uJ3XURY4%p*_E3ul_gnZQ^OPHI~w%?o{xAx`W4}4qwGavz8puGDuU4de+&O{1qbXYi~)mv9I8t +yaNiA?8C4sVX@E4QT9d*f&|1N%_JD}j6= +DiT=iT_b3kKgcmH55kTfdootwrd&y*nwJV}a!yAuX|W)1`U2>|?tO%CA|QjV{!+Pfs?4Jo2T +U%nEOO!zj@em8>><+5*~W&$c;E=j0{T$Dz=offR?b8kz>))oiz%<%wIcP$qcN;+1pwpe_30?JKPDg&_kd7sO3j7cXKX+Ex|D +6QRp-5{Ro)ZlJ~tJJTVe`XS{yj>B5A7=MPVRwWWYuQ42E4Z_HYLYKB{ZcA`Pz#WJz&|IKM>a&a<3Lpm`g_PYfwmn3G?7BVzIp(--`W{r2;Ki9PfvJaf1=jI18N(3|d+Y1BLW%Ed)JcvF|5yI7I!V( +B|<2+TO^?%|RkS!*NbiL09_l}QY@A%&!!Ojs6ejq|D3$A3Bm@m~w$OOwC69eM;Xw4}q|5a_EX(8%O$b +aRDhV_3F!zr5^Y2Wk +MO@#w20(!hv(s-*(MulqWrc2w(lCqT93L+rUpiR-hus)sf~}Lm{})NBr5P% +kX*XMZZgGO7Ko6e@+|X6u7f}!bRSRBbg9pj<0KAOAq2%N6rk%Zn@A +o7DZHf(wj9DIzWmrhgXM4lt*j#2oa^S!`^K2o5*v}Ik4HB=iYHGAQai~EQnu!-2-@S(+xc#ssdu&VmE +_q^s3(ErOJ-cinxG*PTkHSk)=A^Sm2S}S1tX+pjD82?aF>CD&%vD9jb|Qf*CE3j3iZ@RFJ~?p)K!J7} +wT}PI4U+Wy+@EXdqoxBCq#t;(L9PG!Dqz9}HxU8_g!WrmB|t>gL2Ye};%q1a=wPV}!6q8*PUjavLmUq2YQf&=)k%(V4WP2juCM +=@=CX#UGO|{=i61Kpz86L5IjO+*dGT4&g*O}-`F!WIzGUMi6uWXlc7E`H8thQrK#YVsMKw4z=EU7kbm +2QncP8ka3Ud{M<=>1TwP`SPaP-@qdKvMX!(P~S_~$J6m%d)zkS8$<6a`l)2MBOPw)c#jTA#HXx$*f?K@nz-tIea5g?eFsVlOC)r +cPREZ_g1Hai`?v@-ynRpyr_f?uhfK0bHL~*rJQJU5hVvGy|ThyOvs+ro>r~H3?9d`+C^yB){~aQIn%t +#WXrpuPZhvvVm=YkYv_86s2KP|cum$(kvZS@O-Akh-Hv;g0Z}rT^XOJ|%LW~?{Wu( +tzu~lveQ1e&$Ci*^Uvqn)T82Z81j0&T)p@S3ZB$?iNG6)dnOo-6-8fcQF&Vgz*b;x8*Ux&(#yoo}pQW +%Hb5!5y!+P5krSW`%!_*GgsQ;<6JRv0sp0#!`wUb2nVpbe*tKtrf{mZj>vS?CEf=5`L7m2-pe +y_)6&$5tj7ZSx)MT;c8g^SY#(yYp?4GjM{{zzK2ohDAU&*uPMgSAPp&0E`MF?Rk3_3=BCfZ?Qr785ip +&bM%771g*n~eGKIWK^@5n0q2rzp{1^#|-;toHc8z#$!=FtKr^uagNVxR?Bo&e(h}}VRs0CqWfFTBt0| +g|f3MBSRa*&QdZ1?O$AwlL^@UhwnGQ>#f{e8$f&g?S;$}e(xlf*x=Qb) +526kWL#X3+ReWdNMIly1HT1M5ao#?ksVGyK@0g05XDtWT-6t0R99CUXl?}U&P0@FsLoQJl+x-ds~J$z +vpi|F^ZD5@ea=fq{N@1&d(R6-9Fq^ZkQUOiG!BOqd8-7dk;P~6CTLb-WV;`}`7kT+DV{wf*3oje6zYa +1%++p=qFEJ~8*{Bcs8+GfB6n99nZBWSsvrYWfEy{nkcU*=@u-rT}Y@idRfAIrX|%4Iy8N1KInlOE!_yelF=01ZVbYx;I7|t6!YDTAg?%+p3$` +Hi=22!)^*4hl}FiilcZ942vVY)lDs*cKyX1RdQG5PUN+;>_SfQ7;JcG7>(?LK5(bDz`+XCTU60q`A8J +p^k7$g`+ZA=-3*b+oWp?^UiYE0i)v>X?kuwaAmyCx;0Hr~*S=b}?nWcMx|=i63x|7X|q +@hfoadp0MYfeq4@Rn+=Hg7%Gf!Gx4o2Tdvv3VBH%`pmah&^%fTRyx~=(xH#Hr++}S5FqkGZL1SG!)Vj_PJY|85dw(Xq=HoTc$1nHFjlfXS}d?VyAlh<*oC;`mnu}p1*AYAA;tM(!PjoJH}=7;QHGp{v^0~S#XO0 +7Fs^h{0gKL|uIb=uIDY6D7{nDL5WeZFd5c$;GAcpG<3YU62%4eSB(}oE)`Z@ +X^*OtF5~H+0%<^sD!%|t9;KLTXZ5-VTA=;%583S$}+4n6{+P;7N4eH +tUmi}(H=ifzd(S|t@M8GoZmfgzx?tGqKAu52ICq#_v!AauQYie!Nvj)C=5Q=2h)WY@#WFK`KHqtqlAm +1CWJFV-pq|9LJ~B!1+OE<;uNxXbhtYS=JK-RUTui^xA%(@_Q;~jvI&^C2V?2 +-I^gNC}84=|Jib3Hlp^V|i__mNP?oPghB;ehq&6S6WmxuW3`Qxh}qc6VrR0sbi9tDw7w{~?T2tlsN46 +d&!F!Y6aNi}2HaJ)c=@T&#`0ew|RYntqju*NuPzz>BH4LGpG$9+aUxPh}#&Z-)Ee^aRKeZ3_og^nn}> +&S$YmVkK>eQHmf28YY=7O2qx@4hgNIeBRkHvI8X_s8-p9d~~t>agaG*GH~?-TwZN+6cM +x0iaDMbs`i80t6xaxnVF6hd@&@190R38eq`4!RGs_>bx9SXMr+?HPfe2W-qoF)^MkwzS!g44pp0aGgc +&A@jtR4LcRXM#E?keT^>#xR|bfg`ZBAPW(byug +pagdghn=@d}MkZS}r5^Qt%u^GS|ncOt3!Vc5sG5HzmE&qKn%N4G4=r#pADT~4>6I*k%tfCVlm+(;z8XrZhtyeiY8b~W<>LABu-;- +mgD0^Z&;vT*)%>e{6J^1)Au#iP^_B0^jP;t{gSK?^%3Ji7P(||i*$MHv3dA+TGF{Q=eAa!Y)0dkbp-+ +&uX*c9^g|uJ1HEhxa@>-L$_l}ly2-&X`Rx)G06ct?72Tdn)oXpQpReiAG8nxn^$~p`kn2l){Q`*ozPC +Yf=azM9jjq7FU5z_Ab!Ct`X(gpru*SiC*@(u+dgSCFMOWTZ#JZOhuF4+UNgMkD0iZV|j`)`atH)+VjA +ZJC-i5-QLQ#fZ2`Y^4^6mzbH3`hU0fJtvo96v8?<{Eeb_@qf8okDSLR4%5CM-#RsaOAqxk)MiLXX_FSmIo;xzgvgnRgo%zW3*xmfi>ON>UxW5lCXLfnHH~yH=z= +5@O+=n2j;i{zW65ZYHqSG0&ThOEjLFM-wB;UElRNI2lhBw;oj?2nr|J*0-z$&3fOcgr +}KIX!{#WGYZ^Wc2KP_r89n-nw}F`wc6o`f2##^YqT$8X7xnH5_s*zt}gjjWC@4x2cKmqguv@1HGrD;& +-le{6#(R-#jI1S`WbS#1j#uJ+zJ;{i180JAQNGP>!j^0VmifGVWR{=&#GgXII0Sj9LU9tRS6E;(fnf{ +73BfXPJqb4D|hzXkxbGZOv;N9k=9wKXnUitT4*&@YN&Nn>hIDCP7xz0o&PVvo6^=;QS{xkUZvUc36TB +6A}zEcj&;Wu+XuDoN6(0dkamcwk?^bx-Qg(FRi?$6G-W-?HiJdW|_E=T4} +`G(h3ucs~LCuTXJBlF=1Xx@GeJP)h>@6aWAK2mk|@q+9?10006200000001Na003}la4%nJZggdGZee +UMa%FRGY;|;LZ*DJNUukY>bYEXCaCrj&P)h>@6aWAK2mk|@q+EFsz6ksP002P(001BW003}la4%nJZg +gdGZeeUMa%FRGY;|;LZ*DJQVRL0JaCwc8!EVAZ42JJ{3Lio0cz{aduxSS_+r*AlRfX1th_nv20qyOVw +rV#~HqBBF`IF!Ne%DM5=x1>49$XWM6`rm4cIPpHx1f$%>y4?qZ^4CC;aWwG+KTbiohXP#$LQV+*DapT +jFTTcze +`w`?iZ-5XbGzXooeYw+o&ae#`JbnlDgG0|XQR000O81DB*+000000ssI200000D*ylhaA|NaUukZ1Wp +Zv|Y%g+Ub8l>QbZKvHFKlIJVPknOUtei%X>?y-E^v7R08mQ<1QY-O00;mBm!w=~%yStF8UO(OT>tc!JX>N37a&BR4FLGsbZ)|mRX>V>XY-ML*V|g!fWpi(Ac4cxdaCxmfYm?hXa^Lq?jJc&OS;d7b +cgcsa!b|CFtD=f6t7JL;pxc5$V7P<@0yGBL6{G0CrynzzC%9`@Sam)vFw@i1@9ycrVzKyEo@86ewmge +>QgzKZ)LnaZ_5L75WncBvD^a)NRG&nx#7Xx1u0P636iV#7rs*El=IRQbiJ?2)Hu6C>F!T4Z?&VRo1H2 +UQD>Biw%^Ch9g*wSn6gU&006cN(yWeCvtYO}L(N~RBN_2ZscJ02Y%K`rAMcWM-L4sd59Ay7kD=7-GsJ +e02NO#GFke^Cf@>F2T`=J#{#idS6BL3)7{_K?Y;R^ofXe6 +f$%^v9BZama$k(iPyxZBFq3fCnOnE5kmfsEM6Rd4s{73{X8jU}QLzX`PUAjI +y73Ig`-WiJ=uJ^U<)rG;COKmgroqgsmRJVX9ES{A`3FOs-e>q6me1lI?Lnk4afG>%Af0t_bZ$J&+ylj +v?=hv+oKptharUBp9YUt}7N&cH|ctt#>H~(3v!*_k(^}(Nt|JHDbht9A!AoM@Tp{RYJIgzZKnni{G_QT^F99An~lBYr?2Q?YVuJpZzlY`P}1FIa!yytMrBRiel*j*hksuf`iT7Sn +3EdZfy%R(XQy7Cie4s||CZk*Hv@8m|APlaZlAlF2M#EvHV8@i5vDv8OtJx`8Jk~(DmqR{@-#mZ{uq%g +r?3?@`8(^F@H}(zA&YKz0U^v>2naL=pKzevOKjm1f$!4|Sae#0CBf*G}j=#9Y3+ySlo9X(DHgDi +{``#d3^qHj$pPEW1S5h+#Z6@&iy{EzE!JcwBuCgp(osjo5*~2lQVRjY82Ew|^rW#hw~n6#oA=h@b$KM +rTV-?Y;&RF4$HX9MH!ZDFZM3Sc9)C2zi6@4g1W6rh>X<01E+{ILhpb-flqIi({~{m*TItv^fk0YIG7{ +6aWIy5m}2UF)R}oh-2|v*WVuNmi}Az-Gt`Qu?%GHa&z?g#caCMLujpN2h*~&6H)IkQK`Kd9736GQ*5G +UT>+ueJ^^+@!v*hh@>;w<0GsNn?$o(0(fF1imS+sG020s@7x>BeY_My%bKoF^B$a67prIs{2Ac(mKql(PxJb;<_`v_104GpX2MH>kCOr!~@2-S(#H%IZ?s8H#_Om)QR4n&qX(u2m8L)W9O5~QI&Zz +ckSsBLi*OBBW|c(tNA93hBTbt8?RC;yD0t#rU5lVUGUfY-EyT&-ekYLz>hu}zb2ISo&2VC}thm1FDvV +TXC!vO!q(n%&;S5!&FV(&Ea7FncWe7D($Owb0Rpc+rakOe~PU1WyDSu@NuSVl9~9#UokJH7*n&$XkWz +w`DZ|&GCq}Nscl?zZHvYk^Kgeu{;*1CD4EE(MIzEfu{94+;t^)W4PznI2C1YUx0K(J7s1H%n(i!b#VJ +6wV(kn`i0LupC~EDuAe6gX%e!G&e;*Wx&6e=&mKl!^A1rDb!4~D2fP6@AeP4Re6DbvPDmc;*(F|*^2#YbtPY1Ed@h4|FY8kNl9e|@eX +iR7TdzSOGcrp_}%CRWb8Pev~e3A(<-K^jc>dOY3tMI{Z_&KtDX4xP{WY%rB&*_|d8aN1HVh?j_YBZ%2 +@l}&85N(!p`=JFyLPd}o!pk3MYvdN)mhT5zLF3|w7#0-WVBpx{ +X`!3a7IG%24qKqtCeE$jYEN5El(^H;D+MEz~VkYH6`s&IM#i9b9c?JyQ +7b~tXQEN#>u}AF`oHB~?0}oP|A}As(c4zVHub3~#C754-&Fp@DY)ee7-oB=IPhnBAbPK~%HK}-j=m?9 +6YmEILyRoT&Iu?gcDGGjpXh#qMrh|hR5fkD*EaZZ_J^`EQ9c~YD`w398D4n@H3v&SEE7fhb0jHN~@z| +yxTc#knQ4zpyTPgHxXpLg~duB^Z{%ibQEJ7_|_R5>09Yj^-?yiOoH?|BmipBHa9dmpwUY5g1X`ZRFA@ +%nV&8js?lCBR^%wub%nfRfD*oa9}yL)ROAds06ed6w8AwDw6pc<9*<00d~ciou9hX2vRDkO0-;&C +Mm5-C7ZsT++(8sh!0vaHo*0=R#XnRps=I{Yqf&Pl1Mfy295=~Y$HG@K3H#vTg@evap8rn=`NGZr}}tE +{7l=#DVAJ^$gF%}@Djxt{4@D!0I6TH6ljZ>gC3_@?~9Jk0jJ$W8J{ySV*`&iJ$&oXCM!;;giDyP@*)& +xj1Qi366f`mqotU-gv#o~$1_4d6D|jEHi6DNG3DhT*9i;@%zkhjrAHJtrh-8xA!xD6r=(*uov~0ca5j +eISaaTy#Sb;8JI`IctSWb3$mznR2$iw;y<_8b2`t(to&n;&*oR3U5IRK8Z)`2c{D5P!%Ith_I-?@RCU +bz%8R#|m`x+~HV~c|-F98ekUv|QPJffixB-azrM3ASk$ABQ05YTb;(fSGx9@-1VJ2-VrL6uAGA0|>BD9~?2h)AiI;QN)0-)5)P>utJr?odi*1)+A$uYw?)s>tNp($foYVFtsS7wQIsxEqb7ICo?3vM(q%5t5UfvPXyH`fXv+~m|AOB076QRAaf@EbRb>kdK!_u*n=QrpaTDgWT2vrar+5@1u=BsQ +97+_pJ$wIOIaM!Sy+g$1Mlk}f5O8PQ8>^PKxl$85r$BnEVxvpumpuMe3;dWV@h8Xm|$D3&Mc!zxE8X` +=K~$&Z4)PfnRl$W^k;E=>V+-opqKDR2GXCIg@;S5;t+zF8y$YfqK&`(;xmIaTl+E@11m6^EW{)1IRU6 +x;mZ~gNH5~0V~!S-PwZ+k5MZY<00ziK3p8?%fbgelGd`lBW^;;cEHxE;J(p=JGPXdw77I4^o`DyNBpo +&QP&{D9!+;j<4t`F!Mal=!&bAn9)A@?dAU%8dNXB93#@%EBIUaB_sIeXDMr#>?oeop9l!O$Zz+lb}bN +CCfdoD!VE97`a2JeTA`{&KPF{KuP^LqN?bag-KfOFNg@y|w^*#iUO{Z4kt8F;jzO>2~WFm7!PGu&~ +uvq)Ww^4f;AH{COX9v44A~sF?#nMEIctqmv^vjxJ+3n|0?!M~3tQLXrISNgu!EHBD%|nYGVs2l>#sO` +B1IMuj#3ZmDb<=OffN910bv{_u#(U}!<;0GmDl2>Qsa?A;a= +XL>zN9BxZGMBR|seyh7+9zQF$O~NnQ3@{nPD?bLttAbc(q=eYaJQPO2Qh<@&72DJ +zL>IyS+@m$SC(LJR}p#sMuuG@Ra~mGT09e_AQOp_q|kOa>|}P-e$Xq*`BYHVGwNxFuA<4Mn&~05SHBQ +|wAioz`UODa=7`sK8coAW84-CCl{uJPV^J +fQgGF*D=nck-HTU=K0rABf5iWQ{9oD~EP_$u~yPEpPN>q6JSPjVP +Ib2AzE&~a15><;JOXdF@}|JULjn+1>bu8l+iDRkOyYA766pk})nj<#ED@h!iM-ElEW+8`>|L2_db)bx +4gQlHqQLp7>@;epJ?6_A;;x@~-vp0ts^Y|G{%L_W7q!trG+IxE##!#wDq6CkxjGO-AvG)rB@;VTwFrv +u1m(APgFb_*cb;uX~h-4=_vy2-bcWK8`RBvvNkVq@L$-D-IYt#iV}jgeXCy(2v*;l*)H!GtG;Nb +#Rh6>eQrlA!Kz+1E_T&3}G_P)V$+gPbMOK+-TqF?o=P^lRe6{979G<{R%V8v-M_=h1`|Nsk{S5Czlk# +!J;SR;53cWVhZp|Gh4@pNXQ94j(kkR=c6<*wTw^Th@4aJHTbK6`)R1@uP7-t5=Jl#8O9otS(?`hP$;yvKWv-LUD-AMsAR%5uTf)ijW4%A`d(07=c4LT5F>@=mncGO1GM-joDv +xuqCEC#IJKxCsZ8UsQ+9?q1W6v_xTRf^wuRdLrw8KWO{7p2UwpQHOCql;tpKIg=08C#ZBXnX<)uB<*| +eS><~(&UFSbQ+lS2>$BHf=jgEWHM7OJOCIScR$+&CTfO^&%$KL6RFl#sx{=K1C1wob+m7$_Dl+Vs1Je +4q}=3ZKxaa{f-#uE+)`QC0pXS49wl2JPhEN`T_qq5u=4MK!qKLC^?Hp>&h-G9=KHfkbFA$I|h13-MkB(zHlnl)9dkLgh{8-9 +s>U^?>?l6n`HJb>R4!jwFP5%~g;DBryJbiBMZYI?8-ROMVL+&<}y}702087-J#*ayaW#9GFgLRr-)z_ +VPcX@h6a^u+8cZX?~>j6r6-Y!Ce_o$CG&bD~d_90Ab7F1v6q%Lb=Gni&Zr;*i5@1u9J*L*47903HNYq1wncSei7`#m*e~oQw8j?0U$#ZFvxn$n`_8MT>u +LF^ZuYG9y^3=u8Jovko{!3+TaZ{+Wu5ScBDs{ +{uX#n=W^aXhOJ}!t{V;rLUPv^%WTT92Y&j$S3>(5V!71pfp{KS#k7W8XSaws#;O)JknUY|4(Nd&G;y{UcdTAP&Ae+eeTx +Eh`7}*ZZl3*j)F?vH3_+`vp3fPAf +&@lw~F)6>a?M)nnz`~=e78)`NY0uMpjf*C(bbGrsbkujRYdqj{$^ +}@!PBFotY>EhLu}I?vrc{37%%(YOh(KnXv+yM)hbjHp?9@S?4j-K%zWv5Uwgx4?7HF<|(@9afhr^!S< +I(&!IQ>sm4uQHZx(*GJEh=2(T>OlE5T1+?;`+Xq1CX|nYCD)nj{olZ`o3<9CZA3kTo8E67^E~hv@;UL +XmGDWuDTJEB`sxUp%4KVJTE@KbF+-mR&$RbhT#XNQJoNf5OMGgN0wtII$2jd79k8sK^b87n{uo87Ko1 +v+G8*TTumtY@&K^{y~(uwfpn-z#@X?%QrEcCjT@7Y66?_z*KO{|`8LhN2v(SvP9`E0BgZ?UVAEA;aAD +7Ij^V9o&r!ZFKGGGpME?LvBI`Ie^i%K8%N=I6<$wV76*ETMxr$uaw)}^pud&{x+b6Ma@uKyVRXr5mok +xaFKF~LI`X9NO5=P42QE^x=r3#wq1FY~WfGN5qio0~j|Z@KUdLs+2#4Yia#3=K1UWo*;Vt+U^8%;?%3QnsZTeD_7uNO?0&h1MRwdrGQ)*4!iCm^Y +?MwWSq0TQ~PeCoR$$nP0HLLtgV7U)vP6ZPH+{wmIN(K~ZDtJ^>(ai;4hx|4}7$GbiQJ{% +wm^BIV#q=(2(XBoGUmV~A5Yq7lk=YNS3&u0}Fe}7g1@%cio4<#r#J16tNbUE&;#PL}))dW^^x7@;Uv) +9y|fm3gQ0zw=m)dexWyp%a%@aOJxrn)s-1qn)6NuPYN`xbu-&nJX+MzO^7;nv6s$&fBkB#wH`FFNV<_ +pU7%S_8-JxpzK1lkz8SK0JNwT?agK1X-=b;9dnwsGcmJ2HPu<4{+&_`F6dh2bKgths~tGe|Fl +f_T?Q*9Pkvy>-R*@BZ6vQX`{UD>Z?_k2?7Eqm&F%HTCois9MoH2loU~NqjzVHrp`W^$l&B;*+Mn +(mr$T(qoFFreuli2h5hMPm_9lrkcrD6*WyOs1h@%~P|-PH#Lu@9FoS&lWTXX!{B&8Is;69*=lVr+PJlY`7fU +GDjZ>1#^zwSMW`ys#3W>i^DTDRak+^{f#Vx(0Pb1-d%G?N1&I6XKc=h-R#+@1`Oll+aF48;s4 +K9ypFBCSIP6b4bqV5Gn4&Y_M3sk@GDXM5#^4nDIPj7CHRk6OAPe%M9Ze3!C_@@gDeI~cqu_LqWO0F&~ +6KE%lA8pVJ$l@4mn*tRb4^HmLrh^!XyY1dNePlTLL<)beG)x5lU~cyfB)z)mxVuDTYA6H~R`L2K6!ic!JX>N37a&BR4FLGsbZ)|m +RX>V>Xa%FRGY<6XAX<{#5UukY>bYEXCaCrj&P)h>@6aWAK2mk|@q+G)w|J~~a000jc001ih003}la4% +nJZggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7VlQH0b7d}YdDU3&Zre5x|L&(CRA7}cO%EWTLxEz&3K +Z?ocH0NTP#EbHvynwrq@220-hFo@MNyWWCasHMLIPXl{r%nX?&zwMTbAclulo-2oQZ8KJI#30NX@m7j +an=!qA6ruLt$1@epw8JuQYW0vIa|3a?OjHD+OvG@Jp6L?_1Ga4V!OU63A<(qZMtM@1QAVm$tmP=2u9Y +sul`S3Fy4c_ruD2(D!lnTGXEDjqJ9(7GI!z!?$oB+YVKsSp(x=_BFIoH0U#p8Kqft*y^KbUiE=W +{JJP97hI(+8X5(Fq>u`?b!fi1N6gEE)Ax*QHnyZP#mR%GT#tWA~P8hVnvCAaMRv%W5^ctMwVuQLIB%V +@8hCY2E{`o1K-E3IJ7rjCeBRyc6*nMx?=?Iv|`G>924RbDNh)E%Z_B}NwbWn7`IW~ie#8mgDHV&;9nV +@CJ62FLPAtg)-A8EG6QM6TT*s1Tu9iCiN;C`=~JO$i(cQ|gOuMgnMo3S*pvC54STG+UTJqGK|g!R(fZ +|-JhWrFV_+GVTm%U4JinB(&huD7T^U&EeHLe0G$f;`ONK~{>(vPq9oxY`+AC)`^h&6;pLZid-j&jdT;k6V5Xdo+9!$b-F!yt`TL88bf&w3SB7 ++5BiCm-$Tl2KB_Nk$Anlr;v8d1`ba5w!rlROIr4_=1IFp +U*|V)s*s+TZls))GaC1X5TnuSAg;zi +wn-ml&8Gb{kP+B|w;DuLE%bpLbO`m|3r|3Y8KU>;%(N2ykPY9%jb0a-|psjX_YcmpP1^N$9VeN5&Rx$ +1nWIq3dKfb_PF9(PJ`QcZW^kczmbfQS4{z&=HHxtaFA1KrDuM|~<_%_@2L~%dhW*pxNCrJ>U!8yBd0+B1 +JMIT5|@FD>e7V+@j*TAe5%8m7A$_EXF!x#WO0cA<<$i)v3-w;5Q@;|`RpQQU+g)}pM;=&XzEO+0MILsM%-xnBfEMP+STdFDy8`lQ< +91jc-nyD?E2R603(AvM+A}JHQfT^3@`vjRD#@seDjNF-#W(QXDvd)poaQC8fa7jc2)w`A4s#>)CU+f +EWyVFLfA~dq6^vfap7mJ_qVDA4nFk$vL|}gJKPMhPv`zgBP)h>@6aWAK2mk|@q+Crn{)Oce006L2001 +!n003}la4%nJZggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7VlQK1Ze(d>VRU74E^vA6JZo>;NRr?6D| +%!MEFCo5nOPig@SPT$op^SPn@fBd=N5~=U}&*raZHgKHf2Za^MAj3^rM=jWG8X%u{eE5EOvKwb#=X~s +AW^HRhllh?Y7Zrs*3fdZd#R9Ro!N7QCDU(vd_x;`nssD-B+_Sqb06h)Mcp`G&jkv77oN&tDEeq)I6!( +ZD6e%yZGz*Y5K!Yr$7Ab*{eU#)Qf62Q*SGPFjI@nv?E@#DK<%ZtE;?jl1;X_$#DCm(Z6krMz3|%8oyU +{o0UcWCJY^dux*RdFMU-vYgqd?oxjS~8uzd2s#wsYw1P*6Al>T50M-uHfACj{eo+A#s;o@(hlSn{k=* +RbNWtgFtSEJUQJ*(@lQsH>tjdc#YxRsqf6C12v}x*wzn)d5&B~H4=9lf&rl}X&m}mkK!p_tAIiYHS{h +Mwx0G*vx3qYeVEzqeuLd$2P>Ch3@c9uK9pE9Fg0+^<_+9F1SYwBE=CMk>R#x469{+=m(Vp6;?*fPGb? +&7qh7yL3b8TcZ>bG6NO(bi3e%mq^rN^X!_ygYsRU7%hOjEXF +r~uz5z^8H%+<B8YS@qe9!8=0za{-9z4{U@lXN;CP#S^W!NC)KV3OB&1r1qt5oAG(GVk8x5wY +Qhv%vJVZ)Zdakn@oeqiZ4WAAFI$>Qy-&?)jltk>lpz;h$%@e1_E#-k)_#Y?(yqo@F#vD&ULfHD960c& +^*gXTHDED~m2<5Gaq4l&WoIU`84Gv%}Jo#5h}+@;UHWx7!w5s;dJQNgQ=50x`;}o8ltkzot-oj?1vqo81riOJ{i;D#)#Oj;HN-u5@6ex&dq4HYuksJLhXg +yT`C_^^ytwk*H5Ktk*RV>H%k}L^om52HK-qP@aiK-To%Dx7T2lKEi#3P +0Ly_$8{k#dO#wzBD@jO!hJIl*5a!!y@k9Lqa5r)_KapAjCmz%iP6B(H;-Hpzk^(p={K)D(>Gvy;m8BZ +|Ek)M~geB&B;&}B(b?^An^Ss%&{7D=f6D5Z6e~FjDn_3sGKTb;CqhQnF@&9I7_((QRhxs@M=bNt!|2p +Y8GRY!LomZGSSW8i+Q{63&`l?SO-xFz1#Z?gs>5mLWb8 +dYM(POlC9XpXLKi>9tP5<+LI(mFS)tzn5;>K0s=oSqlXQ%)56;)pP2MG(|5zKZZP8;rR@;gIjOt^q%A ++i~YoLs(KbH~$RZ3f2HjP5oh0qq`37Ra0-8g8avdqcrpv+uAv3bqVZl>2k8knrv;Y8e&Lxbc6OOcT4s +Vws)Wdhq^1k69icxqeF^pJB2iwv$a5l3`u>us5a!>Yq8XC>@eqpg{_u#7$C3Vt3;DwcI +WL`LS~q}la~}(|NCBa33W2XXTatFY!Z0FEhW06Z>&$c6i@7^aXWZEeRBZ7G9uh_bU};A<~#2D3=u*r@W~!4?Wws5+ktEaf;oO%s>Ld6?Xz2N3R +L`c?BVjW!@VBsM6VYeBrW6sMMvZr8OWblN>y7bN2hegR`VQ#HtSbAq{P!v3 +nR%Lsju-k_;&JGcFG@Fd-|r=XzS(jwf&SBU-}(HuaqvGa%vW)Jj6;f}ILz0*q>*#j9KU}#Ra9ze%(9- +!O&lubpV!6A{chR(vGzk{l8^b+%*ZS9g)5qr>jV2?g)L?Y>>tm6(2pPMtB!v~HJIwTYXL(*j*C@XdWn +$>p$QXo=5`%W5EOgL;;*+i#wgB~B7--Z8DjU|J_$DBks98xQ4+?hHdb9aC2Vk~v+PYMRjKSj4*9Unh* +m){4ONS0u5(@h4BoTn8%2RJyyFv4?GK@QMV2)5O^sq{+1@w=v1&>{mahAU~$z*{C`sBWU_*uemICR>KV2{Q=7dlJNrqBiB*DLBVoDMS_6-sYnVFj~o=MDBmcCzG6qeBTX +HRMzk3!D#ff5SQt&}tT#4B(BuB|fKGpG0J(V5^q`Cl9NUe$lizk_^;wT>p%0zfTU9$}Iy^@rIo)^mBS +lOI{J7Co4lGmH#4wfl#I%doFJEKkgj58Wv=er6*E*|=x&v0hVs5M1vyXta5Wi&L-L!YbLfpX-u3Be1b +(gU(O&&CaAq`puUnP0zqDlO;;8{ioDKWo62gUtUx$&ek<}%$W=TRopsWACmdmX3}W4iefuBIguahXJY +Jsr?4Pf;knGY+|iv6||g!xx1I&_7b=ObIayFAc&H-IO~@)Igp2nO|_`vyA+ZOXqsv-8$FJ&q3bX~Bg+^Hx>)wgBQ7}Bmt1^5S(N|gYztuRqpH*m4R<2GdVGAfNz +7NZ1tQF(n=m35Yz-?0+PLgEHLyF!=FRNAmPp`^4sV!9#pQi0wiII5jllBPTmxwUsF@Zqf_rmtsf4@qEu>BS)V+fShe~|`q$5rFM7 +Og&Qkb4nHY)^KT*bqyp9x5mH8fQOX0FlD#j-Q%#6^Ed`JmtZ@PjTV3J&4ZLcTew+1a9EzE5mktzJO8P +6oZB#!vqRZz!CJSoc6!T5nLh%zc@&Kz;)&S&(XY~@naTsuTWi|Gb2@ZzITj=XN;A&kjllJMj?_iatWW +Skij+0S-CJ$*@{FkaxxljdT{3}Z+93&xf;-FS>L=BC)B7Q +|eQZJ$a&Y~1C8zBG8g-K)mMCex3sF8llqXGX;0&o3uCu)RWZzbIQ@Va;Q>E=w^g8tm1tvu9F33bmVf2W1gK6b)62^hv~*CU}@@TtYugXPwV +=VB=*UnUW01u6zIATdF|_bMDdF?TS**AID~Eo0{Z9xelQ>ja$o-t$5o*~Ym)&basTG=sTpM$(pNhiyJb%D*YGAi`h=0brQwd+xHBoKwjz6GPSLW-?mz@L9negs9hqWUT{C<7W+qKlc-}PEWv?Abno0`ATX5l$L5{f#EuI(1!k;2m!)@+t_T8Lr^+OHbrlFHt{{l>FB(Q +QP}U~7c3k1c^bPQbd(-Im#1KNre9==BPzT&|MAPl>HVqO-y|T8P3Iyl=VmLQ*yQ`3E@(is2Z8s%xu@P ++a*m1*QT%+6Yqik=QK2co0A@vwGe}XrULzWwlfJw3DaP-TZwYTd_WdQna^v48-zMrO7MylfOT +-*Aus>YS1*kbJ8?jccdty>R_UhPnX$cqUF#wy0QM&H#sE-;`_i@&2Q1^hi_TgG3Ld;t)TTRNoTiag< +&1H~8;%cNekX6f-6&CTzi~G0+Ymb)8ZYJt&h1O#q4fwr*4r-45W{i)-0lrf212C6mIDD6&Zb+4FwheX +OchV~&*9t*tR_%Q2elmE2w)K@WX>!_?Nk2pab3*)Fb!ePnGEpAr=lB686)McWQ; +9B@BZhde>=b;*CZXglOog?@JFRgrOgvB&+Tyk~4{j?@HQ-wIzy`u@t9Y7QLpdcp7ah6}er_nt_b1MTn +=7D4-eM#6wIx!4Ry1xYGna)eNTa9e%lz1bktXpEgh%W!P76Z!DPHE0M;R$6vJS#Y5FM0DUncWaP^C?x +cQD~5mGNT`QHji-SW)d9fn^|gimSg_;}P@sf46_(z3tBz@~T`6~2Q^8&LYqI07jruycT0T+<5!vzA=6 +GL+HX%OTr7hD|{ZRtFw>K}&8g-}>3EqK|ixkpRl1Kdma5ic9VCm57z3wBC8a(53C4`QU**TE3nhRK-v +n|NvGg0kOS&1nHu{4Bb{b{mtM($^Pat)4M5~BW7ig2usH@oQ9 +kRXJDz*@h=`JP{5nsmU4ykxKAqXW?FOd=n>JNf-(Ck*Jf6^#>T;DL! +397ilrpdutJHwrGIbQwgFg{yx!w{=Pk0UoucFW{aoNJli3co4jG1PoQ8P15`B8qvr&w6{N0P$W7bCS2 +j0(L6n|(CDq?ZBe%0z%nlVBoR*jnMDnvGgkq;6Dg+TqhF=8Ew}d(ji389N(ozpAJ61>@BcxoPcQ6zJj +{=Cjz9O+wa+}oFN-`tyXU#3Zz6y1LTP)h>@6aWAK2mk|@q+H})BTR=Q005(p001rk003}la4%nJZ +ggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7VlQT4V{~tFc`k5y?LBLcF&^iZVCre>^6_P?hd{eDQ=I0ANPZ(s-oH +M`e7{UuItBoZ2C?CUVZV~IX!w=w=F@WZ(r0~v3 +|4P>F=+He(V7k{`Tgu6Mw1){<5m&IDa;K#-r_;U0FSdZru;%u3p{OIF)h$jG94gMK?+_h3=tloAsCW) +iDTiCsxg-5rgUfm45P-INEbRHm&LOML%p|)W3=~&TtOMcYW8a=uy?dqhpXBV02iBU;=;Qr}IMn5knY+ +?Ar$c>#w_hiBI;ps;}UIlnoHxC13*#Gjw%ZuIkmD(7j&bmruHJILwQ$?}TXSL8_bhVI_9NH2%8(rjg^ +&+|bBh^y8=fzFYGuzUt(N9Dr{=8HRq)k7F#yk&*ASQO&^gkx-C&D)wtiGL?DT=8^o?2gk?Lk*Ix6RB$;5hm +bjwhum{OB1U%I6{3>Wwt%rVBfoL0QIgef<)q2>)gHG=W#20S4N8z%3uQgQ(XBBS0)bdW}0Uc=XA-8Sx ++r9}|}a4{^T)j}&T>MNIIrmKDyfTG_{nQOXU?z^^GHDkoYKC +;nkbHwG}eBD6L{m9gbnt@OSCY7583F^It^SasidcfitZ>+YK5?6ZzIFB#uy%bY@{LdED1V7Gf7x{UZ< +|u5irIm=!o}r=x(tD{jo)Vb)b9y$d=rFD-K=UOuPzuL%@^UhJMyDP;TmyPn$N|8c*8olVb!ca|RU1rfbHkni@h +$(QfAE8y|2B|7f$Xm3$u-Dba45ZR>kcIih)SMC93CblOy;fh-(-qxc(WQJt{uVD1&oUp6DOyy>-?NE7 +IXm4GqT=;7<;w(AFj8&WR$Uagd@cEn&|tKFeex*0&)^owG|RlXuoRhH$oLK%3*Vm>P_e@R~#9_dT1Q! +Ewj{kNLn@LK;Fba$u*jht^mJD!OZIM6sFx~9SOW&xydb@|{$g&AOmFN40`+Cg*gdq^06DUm|{lc0Ti? +Vwxw#j~LM&Aw^Z)uwJ*FtFr;wco2qPrU|!Pj7?1q;(k5Y93|?-kFi?Ez}8=gAkoiNhpS=V=z`aWRJ%* +VkG4=@Jw6$I2!=C;jf~TV!ZN=pX=*+c&Hi>$8M)b8obYa7y +a4H8=-rd})j;G5Fec6633=wZ|nSeRaboJL$qVEZ8$LR$xN+V%*o@7lxi)4G+yN6*p=bak;f5B0Z9um9 +N%sJ4#>b20>bYl;v^W})bFkKu7Ybm<-X%pNnijjCqD8>5k+``Ohb8Ab5t1-@U9T9uHGYC*A02{5RiKT +XEQKS5xYba+gu-=+ao6P9DC9>cR}G& +;=1S-oe`)2pJ&gwwzdE*A1w~p`|*7A!ZJ(N#urGHFvW>27+m*rO+Mx@&H;Uhh104Z +*z`^ur7ITH%+@aah{+SXvCozMeR*?`@ThqP>Sj2*(0~}B6e4t%_yVTB0Gx|Z#dkL;Dc!0$U0 +n}I^(Vq68OyZQv+mA#wmiHn<)WLvQoVy33*iNo`WO|jTnSNPf<7_Y5eA%JWfl3EEDP}MZzTD6qIB+PO +$>~pUEBg;X~BdAtGBq>8T6t4D}lLJf>b*k|so#Z+EmAZiF3bpuCb>!Bu>(!(>BXk4Z^6juX;dyKoN?LyZW|nx-!K +`NF@(%y=JAJp^vPd8EMzuDWfG)c_WeTGE*MV6^@DGF*1LqNoe?KJywhm(VH{d!WHfLR>-_d+TYnGigl +L{Zpb10%%Z32pqeHl9buGXR)FA0&>KJO>MGHE&r@pxhx@7?*2pbaH|<^&3|u!Bwn1T+fx-K%OiUpkMfr +d7=mE2FbW+q$6k?adaTd75+hHCH(UNqHzbrlsdXfhqaze) +JyP5oc-;T`=v=am=iyiyd*EAUwzb>ATfIk`D;>0Ei7*7}T;-dVnZ@MWEdD=EZ=~$`+3Z7wa5AU}=tXY +b>6n3$Fu0F8ztECi!M?aU&XEY17Y_%YUMKHQNf;J?l`OcwN=X}C{PH?m+E1vRW{6xM@l0CUZ6y)=O*` +>huDL~4}q=Uu443EutSFm2_#S3$2pz1488Q1tsp9~oR{aJ3M6^kb~oli72jEKGRi!ndR4X*J*PSh}#H45NIej-sn!20ghAkoMYoU^eKvn=5;>kq;t2ftg}Dz +vF3%A>tP3j>Q1EGeGMoK^cO9><}?W=RWbI(ZSz2uRqX(pXeDD(7N3a$7*!PC?IrN;UEjmbLq6Oz13Yl +p7J&_7hlj2c>U~~dbf_n@ZCg5zKkIj5vv1o2L3=&)--*>&P;LtvT0q`mz$avRZ5v4z9SS!ZoD%IUIE^ +pHlQII#m{FK|QcP?RzaZX3PcNkt64WRVN>*D7h{9@v+hQC=d9N@J<3lZ1Q41cs`-5sVGs3n*cdx +0KqyUTo@aEO2@g(d!PYTXH`rXDuQ;K@D5!lw^>z}(M^2V8_4lCasga+(W;B$fhM0T>6^<^g$Vd)OUVx +ZVg<@?e||nEvbHhWUhYB{et{R_tsIoX_q6B?lNz_`fhJV7%ED{YcmFDX!+zsGOyLjIHovBw6tvO9RfP +IeKkXu8?lXU#H^$@Kw5x7*i1`<;?nfz~qniaA|! +#>R>6MW8gb^wJ9zyDUx+*W6dBC0QoserN_GCf%E~-S+1BSiBu1uAplXY;ehM0^8~mKtdjKvI}Acaf$k +`=O5^7HXg~xcgKM!#lT+4{_M;yPOgPjjLU`r-&3R3a_|8K#PUE3{ReL4l?FzY}PtvzRO9>S_3&r@uHq +GcRI&jtw=nW_Pp|~CD-CY@zBC8$x)X@32a}*teXhkiBT%s8^OWT*Z1yLmQ^LI0Ls@6M`X|NQESo&CE# +t-Kt!Z1r$4B;n^dYujh=}&5~ge8tUd+Fw6x*shjmua8EEZ9A7y!{NDr7rHf{;_kkB}#xS9WH9dXahCt +sev*h!5S)CXK$u-P>skVkVh$c4`RR}Df$=W)T&-%KU~F0eAltRNNK#Nnk@8ky@MTXK;bE(0}yEepJ3q +Ug|cH}^-k)O<*o)ru9nJ0ekdOMeY-C3X#(7h5S=}tYIR7>^=>dec3frU2&c8yqH~QaoPb-)d!-#x-jo +*lHv*MM%R8vW)%Zk;gb09!WbQjO55!*N(PM6qU}c-Vq%sEZp9;r6wkr79u?kw9aEzHXTbjSp4f$YR-U +YUY{={w}J#U^zS?@4U)c0@7XThE%ZQ{Q^S`^>Z9rA~kgasvfQ?kvv*mtdvlC8%i$32I2=cH6n$9KTWu +(kDpI(=yB;$peHz%Us6yS$j`#p_^Q130p81;9{=rmVNs#lb_)UvW%DQ}37fWr}1dby|sfLweYX*p$f> +NK)GFvI5jQ%os`Ag^7e2{XzJ0N4{XwH@T>&0PIv!J@i>FiwTfql5UJ2C8F?PItSoS2;dQTcpNs}QD9n +|f|FLFhhaJ?-=Abo#gib9;jiA2uIaA_F9cd+@uJKk9(L1N6;L>S>!C%3Sj|SV!KvjBnhQh7N-meE2J0 +!aOG4*jMPuslA6j6H?TjOPF(;;}n57_I=R(s$-|8xN^)NPdo0dR%9U$+h#y3lYXu8b_H2^;+Q~~`tAs +cnTfbhvi4Pwc6Xhf^XZPYrXndKDCYJUE`PsaRt@8gg+ZTxnTm&kt|sx9_ypt{BrlmJH_J> +HwS7IE&K$uw$tmzQ&VsHi7Z=dg#~tl`yA)J+h@WtSA)%y+))r(3qF7d6Y}iiMcO;+3Rg;9-jKbI^@_B +aCJLwC{f!CbUmjJo^H2$01x&qM(2Cl%cKD@5y}t?O&e5Vl_d7ip#48N;<(Q3xr +IK|FI0Qrq|U`yKJbyr}5l|DIABE%$Phz@I|esOf65Qc#qBK}jn-hgh*niYZKXxB$ALeYe{IF%@;JAr1 +E0$a)S*MR`YxW!*m32N{3@?BTfg6F<^qQpn&ixH;F3H*=?pUB9y6HeaT(z(!mU(*2`h`Xl=B)|($&mGI!q&}xRMC>5xox_-r6UpDK)8+R +j85*xck=ep8rwBN^~HQKjR*^SiJKCYL2Aiqe1$pCIzSMCLgESpmF(_3nc5MfO&|9s-zMse4kJaoKAu( +VFwKBY#rA0jx%5l)jXa7Ro8(tLPoW+1hfr{ +xLtWlz)R;~ObJp4p_5)dMpwTPeOaRB{O*{%3_2O+5v_cR~4P|~(L!}j}I0ZTUg8NtJxIQ6v;RT_aqbV +-%!Iu!{--&P}%{e2Oej1i{g_~}5Ttc)#P-5eICGQ*XN@Z37&ujd3I()w~C#^?HuBui(dSrn)?4_gix8 +co0@W9f+4NV(;3sds(Jm$WL(OYzY}h!>qd*PifD8kLK|m0j+@UB}0?%4;}ZsS0(5m`f8=E$cP=Gb3;u +H#!E6sDOSRu+%9O<3)2{Z9LbxBf+&x+@uc!4mPZdv(Sh-;KHLFpbd@rLRvg&Xm%XC#Q*EgywpPNcX{8 +RinqLjtrmW~y>Xj97TM`Loh8J({+x5HX41^gF|;#V={Uky*BR$g^{$&tf6m$+rt#5T^6`3op8AS8-FR +8ASofS$z|kx#HKD`SwYpR2I*wShj(4dT4c~PH?pfUdJy)3VGDkjgxcspJxajFbi-|;WZ1pEog}wqLD6NMt +?jm|#xL(e~sGeDw6=?$NC=ZCCe*&VlpX24rvAcI--+&I-bNnu@9u#=6oIKqVS#bt7$&8fhu5G +9zQ7ETXE(&$R#~H5A$uV>yP-vorj@%%T%KK)PK0(n)$s%S^dHgP>zGnzjA_vhxsRjs9YYIdK%_zf1vE +~VV)XC8buW`9uSS~s?Wh(DF>EkI(d67!HIEA|2%6`?I@k3b$C+H5_h@1xit&aPY4S^R+4UcH67qz(zs6L4aIsrgtSj=WE6 +b`WDo^?*cCp<+M>j*0PbK2*HL1*ltQDyGV{F;j{+E=IIVydfoUHSz2C*r#Z{C{TJCD%-Ilu>ROyFG8e +bS6z)1mBk8Ge!kIn3@E7lyLKj%gj8}TR{VF)k3({%}xoaH34mXyd@spXl5d^`(%h^80(;yro6`3ZarusHPlp>PUGBrb$BI#Dq5O2N)KUPS9okS<=PtU;x~b8Jy1`MEl<_o6%!iD +qxf$+AyMTRze=-#Ayb;+ko`j{dHRD{MRn8XQ!6kiJRim6XC1_0{^K!)yoLX&R;C(*ZDe;_*Nw +TA=W*4-fhi4Ns{69tj@r4u_sm0sb9E-{QTjhOg=$r2#h1njT1I|(0@if#Nu4oXAbGrg2fRX$$gkQ;HO +>A~6FO0!!mEHcUoQtY6_&pWs;y`WY?Eq2P6<1ww( +J_$qJlaR)tdc54Exvv{#A(j{_!3(5f|B_x18GPFX}w>WaCJvs;ncRd2dkQxl&6lQaAPh)C#kdBtJO$* +a-qE4qxk)VmSm<3qCu)j?$?8*h5-RaC@sc5j+gK +32Ml0S4K3+A1Pct*bo+20F!XbQ6%^ +`TBxa*Yo1(E&dnWCYYNG1)|$;Q8yP;i{mV)yVf^*59kv(|JXSw +7p++d&6o6y$Iwb*Sl*EkxF`IVf-pgPg=EO!{j0`6M9ACA|-YT(@A&EM6qwuC;31`tV+cepfv;6 +h-j@TcU6ho(=EuH97$wntyoAJWtGHdDnZJW$Q$B(nk&$MqN3MLg02LaDYScbV;`V%irmd|1bsQzU6%D +G`R1h>o_;KV0fH&H1Fq}ZEFNyI72WnmXBC>nZViT&1B9&B9hCgG^jeLc@V&=dXYBzqjU*Xw=Y>?XrfE +5B^13$!_vkFD=bd#S8WeF?;YT5mRJ>e~|NpjGUe)jgVU?1{olpX3VARaI0Myl;ZVQOO@Lp!2M8FD&l* +-JWI40$q>0{YaK-jPE1wC7Lp(P0 +Feoy|$19~hk0ohJAIHa?KxdfeX9WZ!yGm#y@TTzqi#=*61IVCQz)(OjpM&hMUvQp4?cdur0$x&Dv-0% +gK*CV&Z$iFdw1K|_~ffNVu{Xk{cWpR(k4jyvaX@ukoe5rJO`Cd3$V1_Yq*eNtzw)OUAT^GZm7)uX`kSSa$ +^KQ2M0@88uy_212JFAae`xPs{uA7WKCswZXnlkUpJ2lE{?0za$P*ZA5a)UZGoHYNcJO07gB(CURlL|< +A8?DMMH~NYJ%rSaXa{7rr7lYBB`uuZn{iD7+DGx0^e+4#E0=t_a7j>YjFL1d!t7qXWY-t-u&FbB$x=T +GYhf)2dw1hB2I`px8x?_fS2A7v+F1q6DR8Q0SIDP_s5-4vdPY%HT~gM+kP^`uIPmknzc2PX=c*f@vmB +$P;hdD$SDWJ7Z*`GxeNa^#Rr~f^+`)K5X0H6s`u?l~%gO5(D=eeWk5!#n%;910D0()ij0(C+=6rsyn+ +>T(qqz8vAPBxiy~CiioMM=+=MD7Fhh4-9Q7<9g`DmD6SJ?tyETX$?I3 +9qTjC!q+^%TDH?B(%&29skX%+fxT;{I&gjiGQ}^nW1Q`v<3+;4=VKDdAje>pK_BWsaVEOuzuP^IlI(H +!S2RNY6yW9Dg!Ir=@n+Cn0ASM)8kfLaY5%{^;*6xw}+&1usMCAZB&`PYy;OTL5GSpc9#-;g_yiWzqPg +2C-Q-Xxv!no`kPhwey>sK}%A@R?`VQ!Q*TWG*dj&W@*Na~Rdi))ceh=|IgqPqjq|J2 +%mY^i$V`d!SQe?GS6`!!+}RDLZ&%rM*4)~RtWdWYAV`&+k_WuB2&$yRt^n1*8b>Vs?7q%NHsxaYIdYhC%w!sK7?DRn6{y$q;h8b +u|=O0U(=wLGZ_zST}Jr-<2boNt&Na!Y0T$Mmw3GgC2UsfV!Aek0@-{>?tMYdXzWDJ6lN$M9AYiZki4W +Q=0b+3Cf5mxcQ&PVO(AN5x`lqSH5r;z?oVR)~8yTDtp=?QYMRvQnEW3cg_al9#s>{q&R4TkJ+m{Vbtp +Au))YBKSS(B|AmS6DbW&>&@f|z5(61vY*4_NHptW0kmbZ!~|NFP9`7vfYZv5yr+AX)y*OCYd9XvV|_#%7t4n0gl9?d?8P)S?8VHK8bz-T`Iq#>mSeCpX7YBi5stxsUe*Db +V&JSTQ>tan5{ym*3qqpF=zsWbk0k*N!3cAcZ<5dewV%&t8lAG8RIl7CfG>F|j@K>mzdfct>DB2hWP1j +Ipb3~-O3#W02CZX9=V@#4iT98UWiEL!ap>Fp6%TejR-jhKV$TCn+Ljvkc#-00ZC(KTtfD62pwmc}R9RVKsKFF9G%@Xu^3>!d*(6*Z4O5MQ3z& +&?wy_NJ*0BX2OzxhU1xxQ@=fBbCod48ru%kQ6-&N{RrOG#6yk`7ioFsQvCU^6*S6{qY6yNlFX2cOgnB +=PTZcJ#Es>P5WT^*0N(*>tz#po1MzAv+)-{Iy6z^tTDIR3a{aS>y+mxKb4|Kf7E;NOyP5W*MQAfxCQS +*)oo9wC$4rAiM=X+6`;k3EB;)5}xoWSm8ld4?*pBRbe0Po+14u75G-sa%N_}4oZW)58LGZLi?t6^)xD$}UEQJSY +y{wNBrDl>fv`|pQwis!fO6RBS&huq{v9m$H0^#E|l=nZ@go~r5dkJigL--`55 +MbzrBhe*$YG(&Yfs?a6FiXD8}(>eMQO`mWb22s+fmC5*7Z4OOguJIJE>0ov01ws--rGRRX!$;_^cn@u +$Uv&IsUS3V#v2Kjw&93UlVh3e&1qNJOyLFoy6`dq +e-ii_^w|2RS>L=qLuRu2UdCJ<7WX2nHF8|n50;vVCDM6X;3d(pD@5zv$w7^@*pk}%N(nw@H~1(?EIH5 +_CLUjkJsx4Z7NPAqN`oTb-}q#((ZA|8W7Mm2`lM?2(AC{p6wzDDz*LmSEVb6JwnYwC*DyB8xkx@EZlg +Qmh=PrKVc52v$boihEk0EBGLZC67P^o!Kqh6-QALc7l~?sMTIq0SZw*2OY06hi+q&iowL7Lj-O*5DgX3Ixe^w{3#j6%9P{wRQV|H4R*9j9vgu!l?gidnkm +HN7-!&`w!cOCIFk`$3AU$7;8na3+(MxdYbTLfrPW0)05<>t0 +B~t=FJEbHbY*gGVQepQWpi(Ab#!TOZZC3Wb8l>RWo&6;FJ^CbZe(9$VQyq;WMOn=b1ras +*Iz-nC}tO~fDL;xmI7_C0Rh%-z`DI;fkI2Cn20Q@B<0lm@xSjoQorT6!5)eZ^Fypq$K&1cyYKG2SS)^ +Zs!&dm6;6vn{-KJaNDWCxLYA30D65=E@u)JaS&{3y%;G4zWEoZ7^-}(yUQ{THe_tHP9AAi3TL;CuB7< +GJjK!4`syyi8KsL(Br8{h23;O7cOr3wOw4>4~SzzO~Rz=1K>~&TbY=+T$VRda%S_c!zsQd_#C{xxMwX +OLau_q^CjSL6E$sHNWwIMiJr%(=ujDT7A+RHK}4#PcB6%kwR*et<&I5tNCV_1cFkVlc}hjI-Y!~+Rk! +bqpqDa=c_S_T7S@LQR0#{9E2fVrdA+vX^0v9otMVWVl{L +HKEflpPmu>u`h`l8vE?T$aJ90nzwPli&a*trGqUfs3=wr9*s?0TZxVkFndT3$q?e+Cd@9=fE^XBFzil +U5iktjHjFlOCSL7&}pLA{=zcC!*MU-bgLzD*?X!4^-z$&g(MeQ$pnYd;X}r%K^Nc=p=GMg@8x2y?72O;{BuDJeOxrB&UfE@8-LA#I_f +$w2gr=yIYvffM!Z`y`Web`Ve!joOn52T8;jDCf-VO-}x?^%E1=NgNDDj6b_DNMjn#pgK|5MSB +pa@Dm#pX2tw+JieSNO>YmwkCl53WD4+d6MG=pbjR6$PEL%2911uDFa_NZesKC7gHE(8tnE{YLM@2=}? +|!l|GfGJ~LP=$)0>4rgkk@7LrqANFcmnxEpNV}8SuXadwWz=F%`Y|_^s=+wYw9D+b@JU$?>&sGJ0mlS +aSrv~j&GwY?p}>7P^E2%J0x>utP7=g*v_2gIIm~IbL*BO?7gb0p^F_o*%RbCV#k1mvDZ&w%s+d5jriZ +6gFnyE<);&3rtPsr_!milaFB8T;T-624O}*$on%B?wujYuh+1h_FFL=HvZvt|#8Jrf>A-C~^9@!(d-U +YKscii8ZLZPv-Oi_$zg#qd~*9ZOOscbxSNRuw6VndPW`M)kSN>`1DikbS6n>i +dSC}aXck@0Z*9L%9CgbVLTZ^ZlurLo9uSMuthFGWwuE8pByrk0@rC +wiu_lQ2-e=?LTA#WrW7iv&n4^K1ucxlQ;}o-SS{NRM=MLHtoBt_pMrM+rBQG0!s*|_MC;7!owUZ)0C` +jE&;sd)m3bdXCXs-O#3a@*^rm1tNrlLoh*+hfnE3PJPk+oFs*n!wpNZuv|(gIj!$R}R*6j6`#$IWgRe +3uE6OEF-_lzu^1j!_5ScVZWi%0c!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#Ma&LBNWMy(La +CyyI?{nL>8UC)n0#iPO%4lxgu3x;Wo0B+=uWjNvZnmD!M?oSaVWvnHB<-lz>)*cT1waBIB|Gii?xwp$ +G6=kQf4|QQaIMN6OVf4Rv`VBYle?-^4dX>oHoTE#QBNjzY{#4JWKHu|WuA+be%dX_#G1ExlgU*xnv?M +5s+)Jw2*sDVh|RC2R5AOWSCuR_G5a8XYDKXUhQhinR!v#v{T?g6+S+H$o>p`Zq6x$2`p3)j^wrz*SKn +T|`zAI+`$~M|DxS_pMn)yb0AqMP-K7n#g>15Lbwj<6f(#>`)37OlF8J#$y*|NPik1``Q!E5_wUk+* +XQr9FWy|7U)d#Va9*l?H~)?K(>_#gho0j3rz)2#*#tbxb*R!)tNX?#*`>uddU}tBdzn7uP? +g*Kc9Rx9`7ujRjv$CePTrk_-)Dnyp|;dChD?GWu9+%x+7io~5_uq(u%e!Rc6ots-uUaprwa7#_E*R#dM ++>6L#giAgKW0Q9JF~O@;&2LhivMJFx4_mdl9E3ZwX(hzznbb-Lg{DF?k%@;sH%kAl&J|NlCc`tiW!~L +rJn^f1WG&6Y|D)FUa*R*My}c%>5VP0ZI;5@ks#}ZW^f_vw1)NSwG>&p+%JehknnxMk~5C8*oY? +0M1{yiU`e8*J;J$?neIHNPcyYj)aM!jTqEue~iI87|hsm@4K +7QkGCSv$hw^LQ3=)TJFo2YV<~GH>k3gLQD+#kfT2q^e$t9Y6_z5As)f3jD^VM}l(n;W#8()vov>sB%W +S0t%p=q+nM@`W+qMuz)7R74B$8 +MO8Il)XmrV<%s;*X$Se(PXOWboz~esv5B~DH%HDt2@3Ctl&Gr^0K^Zt8P~ll-yav?U$GgdcB41#3w{5 +mTu&VOj!t#!IBSKo3R?MAYM-sGw#IRnA+~GNzwi>R>{?t91kD_dCvt0afU@;&M;MY%&^ET+wr|7g=lY +3Q?eR8=+7#A^V +4h}|YLxJLKDI261B@)jKk!Ff?iTZOVpqdm>>seQ)Uvi>odV>(QHujh3eYN^N!`w8_7}`Ft0gT+B%Llu +ZRfi;^0BX$opuW^vcJ(~0;gkqHyk$c76k_n5E{zs~LfdD3n8FU;6PQe_NcuiQw>72RZ^gdu<)ShO#g+ +wmsJ06jqKs+mlLXt!4eTd^s&mTz)%&p7z}t4QI5{cG6U?s{i;z@XZ4}Q$O3XH5v)7TL*Ppocb`t9*4M +<>e+NTTBLk%mE4nldnTv;1{)3MrXp>8W6YD^}r6aGMAv2DViEE6t2bO{@Mm@H(Irjer~@^#$*Wee_Uh +v?mtz<$((nG)eTi(5DMpwgFUwA_@jGW)`!9}g7eHgr4bqVujS#AzT*l6I(J-ib4K?mOJv7i=)^fEW~^ +o%Xm*Sa;%8TCJ;NP|0xibRXl6X;9~~g-{m4^ +VM8vc$4tj+%4&{$_i4EDk6c6O}gV^zi+T=kWbdF^$>Hvs65AsQXBPiX&DrKv55$VYwRU4p4WsRCZ#0x ++h$~i~?U@3rMYG#^7NucO1k8}~#{kFMtcSobu5ioZCZs8tEFqeOm;QbK9M?O +$-E%7@gS4NlBK$+55xN?~_^q8%ajxIkuab+b5tiLT%E(nWu!FqqsO%G|hBe&%pJ^|5saJ9D4L64{e_x +;v-{9tH-wQ=cPiy>t@D9=fh7vlc*uBl9k8*7nq9vb04?0F>k!7m+g&6w4p@zP6rYswuD#Y(60KveOkax-!Mp@m?ToAb@^ItnD?VS$Zf +m3n-EWS&j}BK&_DgCWLqhZsQ9ewxdLSNY&dSn(5Yz;&Mohikk`2Ueyp4NU_uNPc6^j7f31yVuMg=4Or +D^xr1Bo^QKiaZq7AU#stn~IyL0-j!p-t#~{MXzEvDD=o^;>2Vc6AbU{Okd#-zpHL^DKEixAaVwz#w6W +iRJ3=DQLbUE~ax}~MFjH)8NV`FqRCwtMHAbjj$K}WA1Y)LIsm;QmXjg83(I(eafl@lB_O;|1(?W0l+2 +>JQA;dkg;)@#CKfr2cs0fdy$HTngJK|uass&#Sf$5~gHd=H_lK|+oqKj6`zsX4o$>HZ;Q;-GQw#cNHJ +Fu08`{ +&$6TbJle(~5r=#)Yht$2cyV~}t}&l&0W?2Ubo2@`H*b$M)ZK=ClMmO}T?t*{R~jXU%-s7z1dr9t2F{{ +WH*zWh%?lACZ0A<^y19SR8r-bUVw0KDo$>x^z7oT5EgL`^l&k8RJbt@Ifg(y%GpJE|yVF@Y3)6tz)hT +LF}L#{`?!UO^p4T^-aJ;w}V4sW5)(7QSF-#XgWj*I#TsHK&Kun2BVQ#H=b!6)fraP}qwv_QTb8$>$I= +H5F@ppDieYIG +`^ffo%zv}OhGoLN?(%?al7#Rhm$xgj?4ckkCRzAcbw5r7<^b}J08oEIK-Vw@V2{4^bkxkfS&t95oE*+K)q +5HkHpxSb*#owI3KW#{mEZfagZOlfWbtsoJElchoUD})Q-49{1W=aoncf@lJBMBydUU`oVl+$u@L+YZ_ +?o;x`@yN{qOK+B30iHygf`xoq~c!^p8w`vLSr8xu*$8+p0YFVizu +yTm8D=VKq5vNCCS)P3o@DFf7t($B`W^#~5eV~eVlc&?}473D)QAm_X>g!@}wr!u&He#3JwT-??0@fFu +c@76SW4L*$qxNkT_R9!wvz`iy-;ib2}mZ0+ry|B4Vi)a6q&`=9GJ8E@22F^cG9aRaP`Rph8qDtuScfXI +VwT4Enqn578%*wLZut`~mkl@aDuUW-2+%#?2SEV;DvseK=2d41|6U2f=7vNa>J>5RDi6$ja-%^)CA1E +ja@C#<+|IDRi_#-fbDZ+o^s^N{2EKE+U;L{jdT57}A1kbCA2>$0M{fAodCOQ$0X$ +n`@(iC@QO))4$wO%P^hKr^ef&>5FOCnL&ctOm9HlA +`<&07*J+wTSw-~@dxBE!oL!9)JJeCS72jGRy@S_7f_b1hd!$ +hr!TV5YWQ5V0cr?X0@_5|XdORK&D||fA$$_<6tKqn(9nTJZcjCW<@jH4GSN)Im8(xwLI}Unf1_?u#UH +KdOmGD&6J$AJ~UrUKxZU~sA@XGG~BpOJfNs$MJbp(a~48_UV@20T3WqjcE0P3*tj?TMIw6EzvdpjaWC!=xST$s0+RuD6w)$QqS-aFppxinL|oOGOo +Vn+13mtha|vXagq^{J+Nw}cp6oSfKA7HpmKP23&T2E=rG5UPoe!KY1mVqOH=pU}nolvD2s-oP^>=51(em +Lb*1Q%!J}88h#WGrZLdllS;qbI4@WQ<{Y*bpGYLy=OhTXUTk?Fq^@()vFrbS)iZjxO@(~S +bn6d1K;Rm5iblzMiFQ`Mcv|Z>SNR@gzmd6pdo39%BQkhZ108q4JKihcdPd1Hi09elzfem91QY-O00;m +Bm!w=n*BF(@1ONa|4*&o!0001RX>c!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#OWpHnDbY* +fbaCzNVU2Ee;6n*!vxVQu))>T;gQUocaDTRf0TegK#(jdmtl|7B5QD;WU8aMyFXY@I;mEG)?zEp(R8q +GcT+^;iou2o4%k~g-|oFpX6T4_t7s+1L0s>-ZZx!aSfqTsY$88&5{i>9!dOzqj8NNm$#-;biMWwq<}6 +l%A_&G2l;_6Mx6?w;C1?LEA%4!!qU)=~1nRi<>L*{I@y3%SKtw~zHm>04p=UBB3yMq8{6&u>JP$xK+@ +&<$8xEo5ak^p5{(q~?+8%H~@!i4KT^O$j7xIRb%Szf +L2@Dtc2ALbkn0Uz7EmnM*cl0;CRTYDo`v~dFZ`v;%sJk2%a`Go?kff@qY_dHhwMg&9j$^-E9dwI%<*x +@=3g>W%M-7|(JEiIPv^v>dvN3RH5@8dc3T%(#R(HLQDVQy|YmGvaH0Tm_?;1f^D#1D +Wir*5!$;qV+je#wbWBk+H|UO!otT!%tONqrJC)eUx@j%I;C}1q?lv(?s;^zO`+NjI6k45)QfGXl@v8X +18B|C{SZ%QT(sMef`y9ye$^~0OTSqRON=u?nOn7X+#mx@2a6v?)H`{=FA0IYxN*AULuMB(6}`efvfaD +y(Z``Jaj0U8FzlS0#9?+q>FGG9V$zX=oe<%TU(p>^3sV;eW*nw)#anm6?mJ=Eh+)Xw2dNHi&@+?82Ty +&+?$*Z2dSF3IhqQPO!N!{46ZAjv;E?W}{()0Xi}7H{x+$qXZubYprzPRpbl0&N2*y)3<^joQQan;kVw|Q9U +Q;!gGiBtoE}Vlj+!r9$JJ~p`h)T(+qod^TCZw&8f^K>+?KKyAsRqokvunEy2+PIM2+}xz>)A>^fi}^T +7le((%MK5J$*0c#f55s7ux#Boc?}`U4bIj7(v>!?hPG`&Q19=%5~%^I$kxvBB`UkWY2i|H*em{Ow8{e}PGOUW| +BB{vhr(Us@LZ=1QY-O00;mBm!w>Gw4t7%1^@srAOHX}0001RX>c!JX>N +37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#OWpQTDc~9UUj-_S)LQVZ +e*(o6+&vNxfJT;q{20N({OPy%s&yEe!SsLmR~VZ$~J3gaY-*=S*99R@QSlm4Le>9Bd?g=x3kl{9yh&| +?V8s7Gb>-xHA_iBg%rFnL%Dz6WTp5V)-0G9bL +LU;ktuI^ME16S@~5TT;b_RZpoXc}X=0JbwH`%FC`viMKT+6<$yG7da_vsuX$lsi}FvwYM<#J|~M40zW +0Iz-nA@o#(M)b!Bv8k6O4>6LR`9C{ZxG3x9BNHm)USZr_QA47%%q4Fr632rUC&5jYlyV2O{=vgTHZD! +MiZd2a5W=kN)Yk>@w@b%_0-y-6Y;e?`^G#|P8R@NvyP8NtAV_M~31c7c9v(3Vox4vtp@!hvvQ+(8s9H +p|m(#!B2aPm<@fR&1uhi7C#k6xqZgzck>htks)Qau|5e3hOvd17WZ@F&@GU5sZ~Y%OHZtDS`8x0}%KF +BV6qlH1m(&C1NOAVEm)Y>ki{Rx35g~yHTGP3Z&^a2Y$EVdBf7K(v`7}710XwAhX+|H~>N%R`5iC-zfiPVG@C1bXTLYm +4E0w@aqOlCj;T7x-?6(|P`Oa3-Tz+$7=a53`00vTfODw_>p4jBD26N>40mTzLvKR5>gt{0w+ncbW0iU +uq04o?JjncWF>gt`e8J9Q_2$H{I5!Ieg`HsU5*opX+McrLKoFh?9U7tHZz31Lp=a)~r`2%m2YkL`s1Q +tB7$rZy{BxksOl*6sH@=djT&aMd0C0hdl4!E8VCa-o%DhYvV}uT48W3xs9^3K(^Kx`d(+vVaM48ExSImQ2G6vRJF*K(0D!89UGJUHu&;)N{OPtCOXC +KZ9^a(ZBag;{MJKynZCSn7SVE8=R>hY0N3#(^)9&g=a=HEVgcQQ3T=qSqGOWs4gU7S9CmyjPwWGoQDC +p!+q$0`VHMsz-Wq+*~CyRbSMD+24waiE(jdeOH%aI)%r{DF4Ra#)Cg>?1FdXo7Mbo_RyA6uBNxy>ZJE +&w1XMdXFetv3fI50Qj5y2z0|*Rx|5z@R0yr7mS>nR*^mDqGYXyL~C^T4K`txmTiPM6jI9zUZlpNA7xj +U#*sLo*A<9E5$weG3w*dn<4!Tmta^ibl-ssNrAkDI<^l0%iOu;9tRtBU~3 +k4O6h8joHY+uBWQMm{nAyX)$bg{a_Yndyu&d8j1?S;p2Y?n~f-X(|O1ak@oRz(%0o8IfbD2)BbJ97nR +s)yvfWv5VLHl6k#QfzI4?=AF7@)DKG!s^o&a4K+{Va}x!bKIU(68h9c+`d9uOe-U}h6T2dBF>{&t=L@ +<5y0}Y-G5l`T1CAxU5CcLiSDO`buMw(o92B4a=hJn)2X79Tf4<0J*e)aiUXci<1H>T56_WKr&GahtQB +WbH*R(BYs31T3G%SsIZ*P^9$t5#e%15o(8(S3nRK@QoAgE#l|Yq;y>CwrRWo&6;FLGsbZ)|pDaxQRrwOjj-+cpyZeg6v9i$m? +gt8EJu2N>r9ZIbqa7QG;S1c$waLQAyGTUk^@DUL6f|NXuhk`g7$+uX}QyEa7*hx7R6L1kN;gGkeD+qA +VxQ=t!)sT(27(loNsrnFaAek?O(quw=z-h`2DTV{3qOs$+7kWdRADsG{^hSPo~2Lz{O +rjO&wu)UDKcrBD>tvwRg%6{Wp3)ElG%eKVoBTR!iL3}EKR91S?GVLw3G*RzOq)<6mJ#y42!;%R=rg8R +n<%JlAgD8w&!?kt=<$W9{t6br%F{HL-?f|sfD!S<&WXlV=EKe)NR&u=Xt7Yl{G5=zLwQK7K4Vc>rxg; +CbPW?(_ihCDxT2D)Kv8@Qxz+1z+il;XLW7rskOSy)jKbBm2T;09jLr;qu=r1)M8Vq+F46d)vA)U>KS; +`;)n-THZRZ#ha?6{qigeU#LVrn0D&E8c5;hkzoW1 +YC&(t(Jc$THWtY}oTgib=MTjNlaJe&>Dyh_*xUSTUQAd7J-Q#}3gJP3N!pe#J!m__`aui`ZJm?7~Lxu +dc2L>LAK>z`O*9{*lM#DFaiQE-)=Cq_rJR%wx+~IQCQ6hB>M{1z~Kk)5?PC`pOh91s7xHIHx3no|6f4Bru +6$GZ%b=~5I4FShHBuOu3sG@Dpk>r2WVS^Y?7>q+IFc}mT4P!?Q8{0$#WSsViE?8WmJ>C0z7|K-Qup1n ++;KKu69?`MQ5#wMzKt7`z{V7HJ=tOnWjqfyhz{w&#uunlIRrnhlxyCtzAf@)(uEPBWbDZnbq(0`B3e& +&3Hf8$sc^B7CE``Xl};fV@;0HW{BG0n^YG2va>XKMh!GTo5(efc?kM%(xlCH7nV33{s^uHWTO+hs$;UOqC9J)P(=mE*p(?^^w7&?M9Q-!4uV>7KAYOYLjAlVNRvdM+7p|ZZNK_lq7@@OHXOCP}p51;@uvt*~6%;cp|!N~{5RQT-srMwb +$)$%8t%?gAu*AF8q-Pqy(^2~$(m(^I8GfQ600S!}xj3%1`BSwMea&XHI=^9j#N4q%%yd7KqcIbSS^jd +dXpn_P-)C9;I_dhy8`-*CRaQ}E#yL}xNXl|yN7pucYW*v#XAH6NN9BK^Qu+>1LWTyh+4&FZ#5TN`-pYyh4Z{?hM=~l7=hKWY9;3!|WS;ZPd_e8u +G8WvWZo=cs{I1J!T{|CYVUau{zwo(yuJb1(Ze6w!DA4CxJRw&nD}dKgr^R-jC`%E;sA##1L(XZ*Oo+? +nh!~C_$ZMt87IMe_g2h+`GCM#75TPx*jta09`?^Xr8Cq?~oYNdOH3jfAo;D`!$o29&cYq`1jehD +%tO>fQvA>7>H89~HuaG2!Wuc!xP_oglKzHZ|jC`BOnzvQ{+OxslD+C>Lg=^YyI(%aj|qsnMIP9`qJ62c!*m`oO~q9@tp +CivXBaOmT@X9-onm$7&D2OEQ1X9O-7b*L6B5jhNv%`VgP>3i<@OvJBt$|Ip_9wIb-gxJ6w41=+!J3G% +eJ0X){oWpSVOhUBl +8HboO-5>Xy%R_%y%W;lU;mLe~9SMgKfX}Up`zSCL8gdWcgw7xALWv7V)%E1O#5V;=PmOhjSVW3Sb9$A +%7yq*283H+I~Hk>$4CuJ)Ia{)BmO)J8pSG;*OAdL%_*qe=4a@wL?Wvem&uF=dR>2=O}BW0J}NVycinr +Ru3SCx;9cLzS)stXBpmKzGMZXyh3Vw>v^zL+&JYbRoMW`=WUVI`>iO-J +WY?e@*HO=mH5sM*@mKCOYWsAuJ%~iVawK;3~H~iR_eNSty-(Ga;M4$zN|YY6(=rm7&%|B3>zOuM_cI3 +&2AqM#tKiwxO`&Dt1S>F_q@CBIdDQAw$BnC>;=X +erbautabz*6e=_%Gfg{YPj*>j6lbtUX5m2~>L#i8fAi~rAhY3o&U_RmsRS-Dp|NQ%`_5Nv( +g+!Lz*fe;4DXB|)=VQ^=oc2?qgkD}vx9UHY~}IXDvCg$CT464+HI`ql7dhdU&v{t^zp+;D%1(XM#gf?`Hj*oDVG(YKy*Y|mu2eN+fPs$%3}LVu0mng}D6=Scz`KTBm +OU|etb1XG{hvIrs7BR%r)gH;D6NXz#)qykNM ++7+P9!%@c#5gA+@xm1rFy+cwa$IN-KrUH*5s@zd}MVq^C{=l4SALXfoM6w@-KF^5b&+z0@9g7pJrlky +zPm?f67sgb=!b~h-7A0}rVIfR%b{xm&t1t#^PdjyJyT?@02G&rfTMk6YP!Z#4r(8vr(Iu^Y_0aF&y&8 +IG97NOOLX|trB-;-$qA;)rY|R-q&Psx2BjW}xT{|t^rB6^LO|&lbg~U|~YIS;)=Ecns79-|5QHhTWi; ++&6eQnwuA_N_{+244hQnJqW;bCVV{xB}+Q16rvgcSK9lqrFIRuwq#l6o=`lRVzLND{!m^q!?$>+r3n+ +t}RiC<|+toO?{ACtMP_F>jlQ=R{sp8`{E+8z0jow|b}YhNF`d+L)7q_>}~|fI)QFL*s~?GrP>lC~q!IQ5Fx}eR)@bfs#TNdSY7ZMs!E)IkLRKyyv +0A+K!5NukaNPxC1(z}rE%r=OL$)^tlcnH`2^PCxvG5W=gvu!MRV8CYWq-U&g1$htTlfbs2i4VbO(4%#T)R4!9Y?h>@5MQc-m)D{u{M`*(#Sv$_6*jaKd@CWFfv@i?7D +Fz-M-)5so^sa_S58$x#A)(#>MLK{3bM_FM9m5KSiDU8Def)oCE$rVkl#PQ^18L;7%T2;6UR=3A7d>he +6hdGvIVFcMi&fSZ$yXuCzfyPt7K`w#|1s~o9o@pGJY_^=QX4Ig(Iv^cJgs+KMSd0MXL@9zfyo}GhQBu +Zp*bYMeG+Y61wBAu=Bj!%@&B;fM+j(KMA^-QMmH*xOA4o +4u`0mAtKVb*rsymA(Dq^RK@8qhIohB7dcPH5%jrbgw)Pz^{Wuxb6$0GQug_?d_r+rO&-K{mdA_gT>K} +X0W%>HR0AhymZIWb=%@W&d49NV$htple>0mJt$e)?x2H|iV2*pW6=MI)*w}Hj>LIm&1Zt-k;L4%G<1( +A!Vp0|r$Hf$K5Huvxw{rmWRbOWjTHs!kjMo#Mvg>pazbh>Nd!yr#Xx&lLsu%3JTipI?Z^2#eI^we+?h +y`JKwp1`{-0J+4`b0xU@5J?t}9Y?F){$DE_@uI1}<{MiUnSMSklb_AFs`VUPj`=Skjca_1~4o^p7I?p +rL^KB?TxJmeL`4&5rccy{KHaziK1IQt~|I-0@xUz5YUCeP_wBDsrGj$K1N0?t%Vp))~u*Sy*xI;Tb*T +*{IH9luGzb;zLkMYbQLs8MEFdte9iZtlAU?_Jt?kniTl9ffkTIv@4jfbOdF(BSy +s8wgWP4A(uNf$#z?y<|J_67l`=chY6eb2tl*-o&N;Lf1t2A%5qiwa%1m^sf+x9o2Em)z=N*hIRwrMLC +9M!oONVO)>{e4BM|?U+5MuUcXL4@!J2Bm#)s|cRu(+!#8dH)t6O(mK@;D38>_*r&c#t9Yj**8o%Kq`g +R`b9}=3o9d+JFSB6$?+k#CO_An}6n2q)MKgpSs!tOrzS)MnIE?vQd`z5cv`WH}30|XQR000O81DB*+0 +00000ssI2000009{>OVaA|NaUukZ1WpZv|Y%g_mX>4;ZUtei%X>?y-E^v7R08mQ<1QY-O00;mBm!w>T +X?fAt1pojR4FCWm0001RX>c!JX>N37a&BR4FLiWjY;!MPYGHC=V{cz{Wq5QhaCya6+fw635PjEIbeRY +2iXu{ZB$cfQTP)fb+a-%76i_gh#@6i08r6&pIA5RBBiq>QC7Y)Rsx0;NoYS}I=}xC}zN)fD>B`c~=+& +ZVNIywKbEB8^Nf?popph?4;CX2wt)%%*Ul>W1Zpg0cT3eY@qiH5-#jnq*DO5#|wW@;$RW;I7qI?Xf#l +TLlkY&w0-=Tlp<9}pyS&3OG=}A_(HmX`sC7-47GF>ZaNzcLedGTPR)hm-p`{>NjtA+~k#Oi=(_r8G^R +Zgn0z;6^x%ViBMS!HX=bR~ZytCy1f0YV{Q;mYjUU}dwaNm&<*Y-J2kO6(N1Ggi;N0{A6V5yPR%WQ7PA +SsR_NGK9*x3aEubh^RFkaV+)osps`|y~Yy4@*dUP-b9+EvKFyp@zE^2_a_~J!^!j*m?mM>$L|>IA}pXZ=N}^91>xz&XfQi`W0cFc52dVJh>S?fbBR~ZNR{*Do^aWW0>AHNW4PqYi-)|^u|p-z!wos$LHyF +m_!s$X_AaT#)D`;op6fpj!)NddNICA2^vW_N^fX8{a#R(-C8yj}r=M5+-TfzZ!-KO|Fv3cp8Cz0N7 +DHI#0k7T}Goc04rn^eZ&V%FT&xFsl4zC)+cNq^~aN&Bz}L9(#3cz1(e*{dBIXP6-%sQ5h~4OqM`?mjA6_QuZtHbCjeH7|cnVX!^JENo4kvbu9SHV~q85ciO +$Ql)3V&Zsqa7d(qHqYTsfW$`%7NGEbUaTjIo)j&)w;A>fkMM=1s+c1oE|D&%}P;y?&6g6PCde7(6>xQ +5V-1doxCvt3duBj~#qqQPZWwS*t~p6%Kl>WSKvpy-C|;T5ft<2DXu3Zdiw&M5%Ienp~W +M>G+JGfVUe_q^$q$-8<;nrn?V*eBA4~)!X}TE8QN?wLbRgcqYv8{dU8F@H-4pyQ^5~zizy%+}0!LF~H +w+l<6h+%da5qE&iJ$tugH`_k(cVRs8pL-wri5@Y^J8^1UmK09S*m0=|A8w(;*SMZIr^zspR|Rl?p`~=uXdsN@i_*!b%$DqdX +b2mn}LpXo8zua%a@ky%+W`TvZ!d;1cyg>#~j8(MiTDKJT3W(b17E${`+1Cz*5vs4?2`K+D#Ud6^B;-f0!P +^ymY3^2!xq|oZ;KI}m|!q60#+Q@70=P0T~ZzS6Y}V0ON<-a9Q$qz$AD#>we1o8vGi_Yw+kI!4!g@?A8 +Bjrch?yr> +|3yXX*Rnq1%aFYjZT-KTt~p1QY-O00;mBm!w=ucsW1T0RRB^0{{RU0001RX>c!J +X>N37a&BR4FLiWjY;!MPY;R{SaCvQ#!A|2a5Qgu5ic$8GRH-EnTq^BK3lxNeiUeA&Y1&LvYaKhX9Z-4 +t9oune==u`d@%;16Ka*wI?O>hm#3zE(Z7WpE*c~2(LJRxwE8L@jy{xT;gEruf2-|qe-_h)}#hi0qY@t +JU)D34$DB-G6FfX7ZCDI9m^40O5~BxQ8R+J#36hPUXRVkVYl83}j2Hf~})7y@*sp7 +t>Q`mIhSX;{bDkFyd$;ycQ~zg;dz>@DcQ^@F3AJ9Hn23hvf7e;x>}fyd4LGkaUV+&sUo;U`>OGsdC`Z +!tQ8z~V_dz9+>bm0OgD5<1(iz&gsds7-5E +(Tv67@5gj3VEGF+T4Ch$%b**K0x!V{DIYn4+^F;=QjiNi@zj`H)g6YcL3-xRfDKBRxpcRSu+f2@EAoUk)g>{tr62>@6aWAK2mk|@q+ +C;y@m-Jt005B&0015U003}la4%nJZggdGZeeUMb#!TLb1z|VaAaw6b1rasom5S4+b|5h>sJu&rNL4gT +Mq+*rNAyb^|tO*6b56{u~yjW`|YFrk>+b%w_NO4e2?Vgqmm?154C0}Y)P>3=omsx@Iq~AJ(YmY +mD)2jw(JZ+u)wyD@Dw`V!V8*?7|@d{Y~wKKm4sE+_d!MHJ+%Rxc0-00GNnpV66iL_k+v;Jdg1l7@jAR +>I>xmyuRWF>8nc_jGm+Enx@Qi=fx#j3Twz-RNyVX$gVI|kF~W*fAP@3!B9k(qsIgsBnW{v3SGsZ52e3 +T7@s5?MylrC9X+8)6&YaOJnj=2G&W17%1dCtQLG1|ly6v_%MnA_! +(m{-&_?0+;D(p-c>NPPkkCFLUdh&`$rYa^4_nFUOQ=vbtZm&;{=M%w99S(Ye(AJ4rqf)29*^!0*f2Pu +cI5?e*3QK9TM8DB(a;E0nHri)9Zso+Y7hr#%xKda9E27j~bj;Cvp4RBgxZx}p!2vfIJJ^#2$VBj^4#D +vv%ho#7-Abm|WNzm$PCnDjawTOSKi}To^_rfr@%dsJvGt?;dHM$tg-I^I!wu;3yki3z@uZGJU-t7m9m +_zRvMgn|9-YJF#xeXM?YjnXDe+>kM;dPigM0 +UncxN}kkjP)h>@6aWAK2mk|@q+IcWzzWX<007bn0012T003}la4%nJZggdGZeeUMb#!TLb1!3WZE#_9 +E^v8$R&8(FHW2=<5Gb^CvWZZlN>X-(uK#^UQj+Z~n7^2B_x9X +#cM8LBY3e)&vtt +#)vQ{bT?n=nbhL@XeEBg!G=pa|J0Mk_Tpw$7>MGzzj6Cz3A8Xm(9nxtZ8o76lDM-Xb0k)5P^*=V~pvJ +kYl%hhy#vsf*|ryvNdRaB&)H6N3jnLCS;q+|sq$&j99n8TLo#0VV?;rt`4r4*9@=x0>p7xvfsmS`;i& +Y+ZE*#tiSba82Sd{at=P?xpFEa+tvnp&0cplWny_$|eX;&ZBQm6Gb9zhYW@Nry=xbTkgi|k?oltmXTFO7G>rqcf3doA|WKm!THUi*ziO+g#Tr4VvYsVf9 +8U-Th>tud9JjK>>pw)HwrWihUrij66faa9X3{`Knp8Sy8rwIx=f-d|mOxVX6T`tJlwF(X=X4S8LrmSC +2bq^7b=tr3juSxV#ry8kr&+tSl1_{-6DQUeCs70=rt2sMwkd +ZkiELkyF^(z#c6KkV)8&C3KD+3L|&CAU|wyG1nG37w8cP-mnxIRb<~;$g=m1bX$@R9iGUaNJn}2-P-+e!js=%#f5M%v{h(5wT8Mf35Ulu+66 +=Pc?J(#e5-jnz9a^}nL|D7nT8B2g()*sEL0v>@#UotL)X;WG#!&lg_SL*!nSkD9yKM(Bvox3P_n4$#% +&4`Ugi>hhv;eqmzQn2db>&I3t|4h4h9}{CvE%9e>Fr$Z7zLb8+09L1l@hRrNWjOwQ9E|t6^>O^Ixd3q +s3nL$94v##uuS$W7EYWojpxnci!kNzb*PYY8@HExc6e{YxE@hp$ZRvU3ZJlqig@yOW1+(7Q`Q~Pcd$r +cssd*18HCP{^OS%DE*y?WlkG{o8N|5 +fG^gOaLHSd0&oIdo+WXF__2D9lOH@C}&!Eoqf$dRf3^91M(ZzE+5X)D+Zdhf|W8XZ(dI~;+QgpJD1eK +Lci?+Iep_powJ$$n4l^@c0V?UJbtbq$T-4~PApQ+oE=h3|@UM3C5=L+Zs{>*Y$8ejBu(CS<^}qx0ByG +G(-_;3y=W;n2>U==cd-6XR3CL#L6tmHl>chozym@-I+J0|XQR000O81DB*+2plza^#%X{<{1D0DF6Tf +aA|NaUukZ1WpZv|Y%g_mX>4;ZV{dJ6VRUI?X>4h9d0%v4XLBxadCgf(bK5o$z3W$?@S)^HrY$FN63r- +`w$th4(q`IBFRq4xNk~FW5*z}Qta1I{y9T&;^HOwQKmW5;#wp^@5u+YRsp4SGFcTeC1JQKby@H*BqGgap#db58v4sjO(wRj;I?}%@*v#uES +5!(v*?DcMYaw!VAjLE34zc1z23;|4_+w1nVKe;xOxDVg%oj^Crqzok*caWvNRJOBA#u`4N#|LjmCi@f0Q9cC=$!`5w=hmfj2b;_b{lRue+EYE=mE22#ZtjGdf5FkU5aIc_V@XQarKjZcr8YqmL#C%2U +bfL&rGSo86WGuDUZJiTc0{#_{oRT02mOeRsOO!6=hR+H4HB0uSRGgGK(URy5Co54XP4rHZtW2)~EHHh ++!m`K+rNJjDGB0Jh2RKuQ#MS&_>DTN+$660foa5AnLL!vDf*;Gdb&QTSV0_OVfoV5G{mQ4Ss%te0KV~ +7I@sk8DsmSmTi*(5ng94alK(H=knJdq41|mDl9Xfg7A|q8lEAQ(6Ac6at+Ggu_9KdkrP`m8^6^B*onA3oXUCvl +3a;f_#?L>1{T+Q!vWU100T+HV9}vr-}LCgD4BA-fvAJEy5Tjks8m{}Aq~ho4KCc1Yfjcu#webGr*hk8 +0}zTZMM?RhclY7lJq^%rOncRG<6>MTJo7B8kosi4^qqm|KcfH +uca_*#c}FYl_@#N`iQ=u$PAW851&H*F#3IhV)mFIPci)UD1)rAP;Hh5K@!=$h{~T3%RT)zim!&PBt!G}8euLESTfj=%tz(=bxNvhZ=XpPd@Kr0s=3K^D*FyULCK(}jgI5;e4WZ +?~|Vth16zJaol@|kY4(^;ok7g@ojEZZj{D{mj`tFbkxvWf|c%0Z#xdHqzbFjf}k7gS`07FfA?6y#OAu +``}57Pwv4(EGWQ3@RxEu(N=xJZII;DS6f?p?N +gO{-ZEv4*~Gx0pXk<5Y9tVIj^PC2&4n^M5(-*9h1s2agZ??JzWy7W{;J`tgna9UYXI1yym)2IZsG5Uz +${csuVy=>xz&1^WlCna^mQz%t68`Viaarm>m(T&HQu>XnX@Z00yCY)ytXFek?4;I}#H{k5 +mge}YJ^L-m}&K*eOXRQBhSD(Bkvw^FzK(QUJ&X=~LuN!7{$>{3F4)ywD{gDLGxfrSLYD5ZW7c6njrH| +on#Q~njKh0&r$h(Pqa{&gra0Ke;R%gTM0H%L`<26a9KH>~8+OyBdHIL^c$`!qHXS~0&{qCvt4mwAbIb +L7!xbn$igR2{(BVp$B!>JE~KgMH*xF_oO6hMlADCCTQ8v_xxrf6*;S8$O+DR(skyr_MFERu2( +Y{e1gG%Ca$nh*~jb_Lgx7_B)0n?bH4jusM^XC-LLiG6soi~!4h6elcKWJ*#nWm +}wO`Dkqg#XRkf?+)^Z~a2vr_|NPz$R{@3olbt@Jv%-OYJ(H^=od!!U?3IlF=E;^D4&IJ4S(+@-%bnAy +;$P2RF2TL~>5vxC<2snFg+o2wSUMGp^?mT$_AD5p&#YzDUWHtwx=8+Q-v+;+QfhQ3<3Kc|E4D3%3&4P +P}TE_xT?^{3q%$99|JMszRehemY#w&*OVaA|NaUukZ1WpZv|Y%g_mX>4;ZWMOn=bZKp6E^v93Qo(MVFc7`-6;JL3 +lwAu*PDt5HrK&x(Qghl1a+Yzh3O2HxZ29}z2DYI&m5ayYH*em&fid>QSX_J3nAC);(B8otTzb0vg6|2 +P@PvTzY9!7W%Q7`i#`^RSliS_RF3YlxWT@}N+$z@&0b*O<3!Tp-Yy+kJ0i)5rU*iBwQGw$L&&CW*hVU +f@Jl=Zn81R(Mi-dSlZ$a}vh}30mkhqI1fi3x0t5??3QoCxMgmo0Ons#H#!zIQIoVQ8Wu15?Ok-?15M! +!**U1)s!`5n^OQTSM=^h>l+{H?hJES%AO~cD;d|! +*JiEK(%|%n{QiKdDi&Mb8UDdIzN6fnUM8f$(SI}C@JZc5$1P2RxKPf{>;QIGmQ7i*Vh@!!H0jP=mG2| +G2%GGXvnLkkUlH-|XLz6Cal=zy>^b8A8{+m*WPboqO9KQH0000800Wn#T&7LEE0N)S*03rYY0B~ +t=FJEbHbY*gGVQepTbZKmJFJxtKa%E#-bZKvHE^v9RS8Z?GHW2=Y5|clX>mP1EEWwyJCd2fJYws%2EDkUnp#{a-2T +cQMK<^X%9B_11KOVwB?d98WDY^9{hk`xstE3LMW=c~pxn&&y`RN4ZQQduvUB;ib`^%|A6Ut8T?g+0_{ +Kipl*!weqyH+%Okn5e5d%XeIsN@q1IzA{pk?YK5*qkUF0ZFv8nJ`FVuJux1|-|^EJMX_q59+lorM3>c>? +%X$wD+G&y8wy!RN5V44}%_Oi&0(u5^VVGLf5&+6S!W1Plt@D@igJ@Ttwui_4er*5eCz((<)-rjwGdAl +5K(wzu3Ewnn4jJ^T&E>Y2MkpZQwp!<}X^fxL#2}sPkuxDM2vk;m;@!zISB^PMEGNxI&bWi%XqlusPj$p<(G=>8M +Q}d!?LL6L`m99IuhW)0(>f2XBz=p{Z<3|}#D=bJJsfjwV&8C5s(ymWBxuA2=wqCa8_N_acq^_YbX +FS=`y_G={k{l{A*gg7;vJhlx#Jw$5ZHwy;mGtHn +z=64zM{86onZCiiYkP73(~Zat+U6cFLob+40Z=`b^nmeH7{G@%*R2%A0u`V3fIBP%W*bVF{DrnOK@Cd +MO8+SYoqdxo7eF1CogjdZt<#xC*A&<_V-TXwwk#PqYL2#v!>$%te$uLUdItct0_U#{^JR`U79iZeHrR +)VcZ8OLFPeaszwjoo5?i?4$3xbPwics~0seVa)EhyHKX4q3L6Jv)A2mBEK-jcb +k6SvhS#bqhjg1{JRnc1!s~QU;Xee^KC8b;`(mc3ySe{VTQIB0pXdeE?krPAAgd!sR6fd>LLY9%B_pN9 +(kj#4Xm;n5dD`=_|Suy`!%no9z<)$7sl?)mYX(9L$YF33IjMv>q`6f7J+Z87J$#RTQFK5vdTVUUNb91 +7&53#yF&C0@PaVsuCY^UM|s0cG^gtx;JVM2+9Fg8j03mP|mr6CZ3ZgQ_NajEgQ?-UCSm`^?AJU6zLp$ +4wF^|MLS@a=`c_{ZAK9GYztCprVZL8QxZV+S +tm7((8dQBfLFhacDl2ufMYBZG~tvRlMe6diKGJ$1U9$eFS&+sr*aa$Yt+H+iJtaxGa>7yNbafmb2Sc;L;ZVfEL=5nF^eYpWSgr;4fiL-n?J +63&1$Hg&BYhGc&K+freX$r1i=)HT}#$CLJ1xB6~8(h*yV!rq@s_Y%1CtA +|bN;c+AotP#u%VcR~C^H7)P@q9TSmVWp$vbtEEB?kxj#F#ktPNyh7b?>GvPq>NZI6RtZC%u4QqS@cBgCRpb8EU6${D*9}UdM|oqVpZ;NciOE0lpm`3^! +u>Fxj^YZ$C*E{l{tY4^T@31QY-O00;mBm!w<@2Y)jX1ONad4FCWs0001RX>c!JX>N37a&BR4FLiWjY; +!MUX>w&_bYFFHY+q<)Y;a|Ab1rastyfEn!2_iY7q64LpK-hg?F~mH+SL=XW2UA?T3_}AF2#(*;o)# +7p(2a>lxf;Q_wL>IbX-(WfdWxLyr7PLM1r+&B-*HieD{O>Jst>tQ51cU;sTb$1x}2_DY`@y{N3Yf3&L +0-F3uT>IMKyWc3}-KnSnSV}>ZmZvOG7TjEtpBo+jEslg-14`@om(_HTc +^9F~`lP{nxq)hjxVJ6i-i=mCTk&nwG%*8u8lF7!b;_i_~PgYO#O_cp5xrk?hWGnz|V8WN#)_5fqg_0X +~Y9Q9KR|VK=Uy67x*Q2jLg`@ppOjG&Q!|2!o=fvGzz&<09uwimAPvPlUY>`VgAo+Skll%Y-5n>wsIXWBxpSQfH3bjplXAF8O;M!J7B-XbuYta$mab6_RaXVQnBD~4@z(rx3|;Rr_X;{<=+1t@nAO}e*QnF{{c`-0|XQR000O8 +1DB*+1z23hhywrsn+X5_9{>OVaA|NaUukZ1WpZv|Y%g_mX>4;ZWoKt!Y-w(5E^v9JRojl+HV}Q+R}7S +gNQfSTX|{T>CGyPS@XW2YW)Fg3#+**lqoywfzU}WSj)>DZ-iSwaKbWLJ7*lcRIa#{)( +5VHz8yHS1n{vzYpEL+bcGxfY7uv*Z>9}vl-Y2#Nb)3Mj4Oo~`~|KeFcnS1l+-))%5NFD!SFWmD_z_R8 +7_v9>m*4kQ3D%cn(u|nEI-7zH8^i`SpEu1I)8;9*XxcqP2>OXM&Ak&8{Q!t_QLaudk(i;1p(gRMuFT* +;s#<|z~%_NZPgJ4h!lP+z>%>F8|S4DBzpf)zThjK*cAv;LFHNk^6c2DF{$eg@&!iU +xyqa3_=1?86OMpWYk5Bx|cM|DpWsing2Z0mjN)~i*6>|s-sX1{8WEniKXE9qPiZuR`)#ml^yg}@@n>O +Lj9g#x9_(yOn(Ex+*P_ovHO#r2bP0qGKdhS28l1k%xyK3(Xk(?18y-*@+ieEFBeJCi&34}W2pw3sK)+ +d*S~N0PYMT5}^xKV{8LE#&1INpFxJR@Ih{v%Jb|3Y0^WnvBkOt+0wFUFg3U=M@Tm)UxanQI +F;ZvaIg7b@KC_nfXeAw~kPYB`e#}YG2gGS2kk0pqX(;}m2-EwHm(rMc#;UjzGxQ%bTztbuf!)y{!XBi +<&=F%_T_15#U@2dMD~0A(nqI<-9H?|rV1Cm7hHHC!q+U`>UBytLmc^$Juivu|Z$7?WkTZJToulEiyyM +em*)`Gs#ylsv>`9KoJ&fhVy~*dnFsqDy?7L=zhW!CUjPg#jKTz*S7dX!5OP0@T;ot110o%D?X9WcAeDlf;QWwD6y#c3T)+ro*l}FVYmP4E*3)dD$#k9c$$a0C% +TCfc5)?QNgs!rgY*TF@6{W_xshH(am2nc!>tsegVme}>+zA?wcmT(bF7VK{L^MMhx&POW&UGWA{rN`p +!#;Gj4gCX9O9KQH0000800Wn#T(;J3ZAb+G0Q?L903rYY0B~t=FJEbHbY*gGVQepTbZKmJFJ*3Ya(Qr +XX>N3LE^v9BS50r+HW0n)DWnl? +aSS(j*{-(!;>`Ji-kzMH9f;&T?D3emP^C96U{c&XXNfz_8J$tcO?gG|0gvwx%>=qLFn +qjcH}>)m|wx;B==E8@aUEy#Oos-g7h0cLiLO@zCf&1RLXsaRRj_tK`q-n%numGigG+dKM;E{&F8#Xsi +s^d(~Ym|~J7uch`@v^07LW(Y;5t%yIZd(ihTp9P0EKs8pCuvl|{sSytUD{>NL1cbOB3P<&?gspp~ohn>QJ2EQdUrjJl!qs&6G-t$l-BGxCj8mV%r_88n*mR(?WL +OdSDeXMS$|@r;u#VhN*GQA;uF0!T0%V6Z-Af`Wcg9qi*K5t=df(FF*^pmMMl +HiYKqQ`5swF1GWPv^HN^XfWN1_Wk*81HBD_X3XG{<(ORlT2L=5)iQSt*cAwqUh +TEz4X`+($GHAUBLx#2ua`1FM +Iz&@^b|*{(wt?7AP6+q*QX8e414qD61kW}p&@#$!Td;q7`8F; +1wMdWP&{(_S0&}Wy>c1MzI(WeB~dv3jjP#@r9;v~oI7v?&A$qw-6am1d`m?{Zt;D81eA?6X#y;{w=DO(Z&1KB=;Iomrr_#nL?IB;BgKxh6$O2CjEtrW3@kG%K*mwygwDO$!{H8Sq&9UjPYbW(1 +F#if3;;ZpvE??+2qCaO6f$%D%_L{JI7Mow9{d|EdL6?!~RxJHFt*M^73=JSj;-?(Qx!|*RdP!G5*?8J +>NU5qzI@Gi~JR)M+#C1*Mbsp4>T_#2|drDL`qWcD{uO9KQH0000800Wn#T=uCC-{c7Z0Gt{C03iSX0B +~t=FJEbHbY*gGVQepTbZKmJFJ@_MWpjCRbY*QWaCx;@ZI9cy5&rI9!8$-AU%bj@ugP5(@S%6PqzzgmL +0*s)i$I_y%4U`pRgqe+5BKBy%#eEV%WjGSw;vKqni&pY*2Fd833BTe%b71|!0+l~83#$AgdXU)T~awG(w?bLHHeM5<_Qs +~#F7zP1i|;#|8?_=qrI1^B_X3f;h#ZFVWE=#tVPt&Q}wWwBU@=~h?YUrdE<1TqayIq7|qSgbTfAQgO= +&Vu{&hkdtAB|bE*n(#|3tcKJ}wUbN70hopFb)#;yZJk(%*S1ppZo8(;AR+OmMK3Wd0yjH*M%`-Xqs2i +Y?Eg8(4AN{0LE1LjQ^JVlPULOVsLG2L{-t}0!F=3YGNUM*@0$+h-`6VF(jX>PVJJ%xGtpQZYzkc=Xa# +=Y^jJjEA=RoeyA#Hc!3qwpRijwl(Z9mAg%w-v*S7WI>>r{ua+MxwBh`-m9&7X^ZiEUrOWDkwE-7tct+x2`OkD+l^|7xy&ht*}XYEf6CtcbMW(6yGxCEIN^opH90wu-4$?Uw +B51$6!lmZea&@s!7w?Q{OthKsG4Q*Rpv;X%x~(9AZ#e-x%lq8>#b~7?vkL2tGkEIs{ywt(Zj!A!hWXH +>AT>W6lC(u=xY?|@+*o{)D}QP>4iL!0;{r!sNfg9;+=+C`T)-Zs5+51N_tfYr;zB%?7$QSy;qgPb3vL +*#RcJ2MNfrx*P&udPe}_~arcOt1pGLmJ?R&5wXjoUCopD7Aw#9J-45H+V^C)#gVn|wwn3{fz~O)235G +p%c2O~vD$*`a0U%HjCnzK7lcP`u<-6c>o)2$zvpAU>g9tLJ)VICV5>qze|R%PdW +mw3jjlBwSxRh`4Czn~DSlMRJFQF+HTw@GRE;^13^HkHTDMO2iyONs-LA@$P6n~6Y%&7`PZ|ZZ&lS94% +1WHKb;c=>A&7FfcrwQcX}>s6FP_eT`)Sl5Ts!?h~@JvZ>9MYV=xjlWCDiJvqpM1;-o_v-~5$@&HXUVJq? +W&HGoM!L*H5vCtU(5miT@KWX$;TeqLG%H9K!+)8PN!OgvNINoqVOdX6mvGorXzABE*?0w+v< +n`qw?Y&Fr+^w#~>Ndb3dt;*xWU99T*6SSg9L?9$X@bsODk`TGACf*Io%@ZSDAwm$Dc+5|No!nRIOiyd +rP7!>Fy(x6`8@;!ZvoBl+n}>lzHsihD#(H(~w4{RwStb3HoQOR@I8zI^<6*{%@X9g?<6ZL@l;K_}|s> +BW!H64e5@C6{D`_`HM0Z&RRyZ-G*`dN))nFiS7>Z6PJOJ|&<#LIDvX&~BeA-kbgl40n@3GEN3~96JfvsPtraaWvdbI{|w-t2*W_ +QwD4k94d1xCyd>;N>w01%rTwmEXGD|`ZNcu$BjVBekF1Epa?go&DG=1oNE%@?)5B1~gSD(+E-@$vgrbAyDyX+iHJ7x<_#pU293iRqr4<|Gb%|$kk9%% +;ltu)t%jK%9J8U*772K6aei4V^8ftihXg1Z@XsAx))Jtzr_mH~oFS~ObU8v|ln)tv^&fhPO|Wpu*q?VMDL +p8~&ZN&(DK4kHJ8`(+0w56D#5QnwWjxeg&%1Wnim72BN`i$)IG7v0H-1zI4U~ldrLrm_@Fw=_1W#WpO +#)Kg%Se==IagoZ}TdQ|3O4>_rwGaNjUbNf%7d#ers+FZ({zwM(joEZ)~-D;oWE9*%E}@R+}Kj_Lfezr +nn^;x9dfewlMe`ekx(hd>vo0}uS0hC__xpsAe*tH-tgv3^7=J_^&rTJkZ3DrF?(`-HXXuHb?{akA2$v +7NtlCN%?dgmv^prY%%)Ny!p?!bkj0VsqZ%L&m$x<|B?7VFW3L`oT;I{<={ZNk?~Yeo;~?8J1s7Yf@O!#V?SkG6JG{_{NGS-MsAjc6#J}$kt@9A +OHXWaA|NaUukZ1WpZv|Y%g_mX>4;ZW@&6?ba`-Pb1rasjZ(pC0x=N1=PQPsTxtXLD70Y9ibAnPr4>ci +sM#9GCLzgIyIP!Y!T9!y1gwtHHJV@nPCjAC +vW{nHrt&%|;0wJG+IDSpy*)$$ahHoQy1j_b1MalELb4gFS5OS-;!Uxv|#@G^pEy@CSY+ZC{8>_;)pb? +qPZ&eY%Qi;z1FQ7A43 +MaO}G1hS6gp%{PDJ2K4017{E!?9Jgcvv!J_QJKIBL;~}nAC9Xx>8aecacJBai1$M$S+V!0|XQR000O8 +1DB*+_fo6j2nGNEjt&3-8~^|SaA|NaUukZ1WpZv|Y%g_mX>4;ZXKZO=V=i!ctyk}B<3RMZ2m9EXvQCQPvcrra!k8)Yirc`OR{w`aCt!rajRd1pho%~FAroZW0*Ye_s@HhD^VWKwv2! +$i$kHn-~x0h5wuuPr7s^6MS-1*iWKWK2B>AJup33EqU||ArL1J_qeJ>IS +h#>TNk9#^I36vLGW1uctRz9HvQ!9TWlMG|YV!Uj?^mmYuI$v1D2=948bhVJm1Q5$tfo{_+Ui?b^W`gL +*l!Qv@n*%Ftaj5{-l)@Iet*Fv@SB8rp)7IL?T+HViWw%`l@2h#!+pVt +WS@@rpI-M6;vB*zP&(h+@;&gF(n!U+S-z*nJah9K-%Ee-No{2?zzL>96Iv-3WO@F*voWD9*Enc5Fdms +SlmF#`Fyrjua)o06z_h-Zf&W>BNZGZoAQ+MleM(A=B^Jwz!X8rN{>w0zd_TBp1htD@xpROmf{b5*tav +s6E=fQI>JWlR2hQc}IGcez!lP10>mdWCLbj@{4_jh>gR$`h`*~q&t?=sm~ihi*GO*<<;w5@Jq`g9W>z +KOE)i?fTv{<_*Z;Ik`7@m;7=q@|@QbAv%JX35{VK{b71`~7E4@%blcT2$ +2`c7yjN^CZUbrwFCR?b8fc*~T8S(lIg@w|s;b>18J`LriZe$%@e_gF+G2}ESVO;I`7Xhdebt5(?NYR^ +^CRYU&s+6^;q+=Zp$9%|Ft#<@f41vf?w*wWzul8uD@21t8R#cN90XxytPQs}g>R}yDsp?zkOs?Ixoo; +VgMhdk-2O!LTs)e;iKzE~)B_^?DT?b&}J_Oo2bPL(A|U +ofQ6r3f +zu^t)6|cI?K6DD}l>{NUox7YVYh+nC<|*TyKp>=xF|*vo+zu{nxf^6Um&6-gm_*&Xo5W~Ls$_1kb>!n +dV3ib*vfaQxq+@D5QDhzy2mt1#IL!BC4hd^z)!5`|Nd|VUnfj&?nS|m!sj_jYhHJl2rcau}M%u@X;fd +Mg(8jUdhYCB^(wn|YHG-q1;V{TM1x7&6_MwkC93rG3P&y>QBlvOWCEU!bC`SKu2=tP(z`X$ZrdB&7%P-Ce=qYAkQ7Q!-wi#>%rVy=RFwUM=9;8Zdk@LP%sq-Jx}OHmmTZ=1u+G&%1 +Z4!#}Koak2}F~is(!aJr8KyF-_uznfu_nO7B3TKL#TI8OE2%;}W*M7hwI6o-N~?Vza?#cLwriY@n`H3H>%k*IJp6lZDBaD=b8#rZXfnYp6NYM8 +nnODr61F`+oE`lOP)h>@6aWAK2mk|@q+CZChF|ao006KP0012T003}la4%nJZggdGZeeUMb#!TLb1!I +Nb7*CAE^v9RSZ#0HHW2>qUqQGZDg%yybuSn^WLTD^tuZty(yYS}7&0wWHfxDgNh+?<^}p}#NXe3=bRA +ZINc2KJeD3bK<58K>1xu2wa+MKD!emiu;}};;JMN@bb~Fmlw%l%Wxf*3SCDnN@QW_BRRa(!RJ7M@L7k +-dClu~W#cXxlizDh1%US0k^zkV@gze>f;VSY1Z*ZNk#@@nK~m9mTzsQ^jwJQg2PQPMg!&P(9&O4@?Eb +UUr@EG#r-b7dXRb0U6aj5b4vm6N%R3uznHM(}l#ZY#AzYqKuX*@(gKb4I`7CE9r$7d%zJPmtqi^n~4Q +1+10oq7Z5=)-;ase50Apn1h#vhBq!|ms_qj0v<`r_FJLEgD^Az%yR-p0~p?NKu>9`{fSA(_F6rKKvnQ +~#nauMn>COwN^r1Khw +`AvG-C3kuFuvguv_)V$rT6M=qxG6S@VpYBnXrbxSc?oYN-F7+B(fsUrU8A%)-rYX)|n{-gXwCqV1Gjb +C;^7yzX?10nJzr>8o0immE7>6!Mh+t3|JE=rYMG`2EAkQIZbO>KZruupy6*TJ^%;^$l1Xa>#(1*kDr= +{GOHa10)K0(rCpg+m<*ekH~5e9r;ELLvc+2+RT52qxZF90e +VsH0i+w-uJ*^fuh;PcyFQ!G20;{j~OAs$)W+kh{eg#?AmFq*n&Em&}z_!nFX~`^xDD;&O#S~!m&Dmx+ +0o0t><)IVW<>>L*2XpVPZX~7x!M8XG};0sEdY&VS4orY7+(orbr|50~19F9*SfvVxT|~XaU($q%xCWB +&Z&&oJ{d=9avw$Fu +VVX+pyDDxZ8ssL!;!X62#VRS=d`wkWE`3#}8q=^6ofp8Q(d7ftctEI{M&@rj$Ta>a(%>r}`UvnQ-ebR +%MnjErheoYFx06&?%8_JAqfi`Xr(m`!qFksbR0E$V;iktY_GF{UO&oF;gWrcIE;3QdT;TVe*eS$$N40a0S@!oFM%6;4YlTu$H#QI<(LTV7RVaIhOF*&cTqO}L(z8ZTPd%ykIkZ= +#*`+RU%T$KA?$I1!3j6ttnuCPP(lK<%60pIxExxV! +i$zc&L+LCs7>cx!j+6@UcskN4U`n4)VPjyj;poe=ji!zzl%i`s%>HYs}>TsHWmP=?9e69cAnbF#!;=$ +Z+9S$N~ee$T8&}MIgnRt0DZ(R%b5_hT+DlLwJ*43=W6Kr_NH;?U~@qkN-&XEl`D}j{~ot?Cu;eg@;jZ +Nnl6Wty +g;^1GV3YvI~qYum6(Mi5?)cZmPrVdU(eoDyF)*L#(Qq_ihZGR&ntmc~voU!$uKG8 +TlC?W{3Gx5KjXou_eZ}jy+XIbdjmP?-}%O%545t~lFJYlcVgSs*-;}3Xt70vDoR5n6ER|L;E8^hk>Li +riT>`yG80N+CL=NydTl)i#UIL7#ICgCHI)!+~&uxIdZ!>N)ybUY#0s>Bmw+}P^*pMUIpG?_ue`049!s +~8>HvF|&pE!v&IWb_YEO9KQH0000800Wn#Tx64d(X0;u0A@4*03HAU0B~t=FJEbHbY*gGVQepTbZKmJ +FKlmTXK8L{E^v9hTYGQYMiT#DpJIZ&e9k}$d66lKMDo);CbWRa`U$h6Iiyb`xnCTF%qlx1Gnm#k +PWWxnjZ#w(tunJATQFWi&bxyNc%3ZCNZ1@bd5vP{fr^_b7*mZ`TQ7bUNXQjbb`#pfAUN+>(RHR%zuup +Jjw3Di%{#_STdaB}vs>HU?wyWB0yq?2+H)cmj{}*14^oWhz#L11w)1r(^IbX#fCRJp@& +Iv~h{*H9x*nc_O&<~!YMi}i* +(hCZI0zCQbSF+4mKn^MdP`*zOj;}7S@M~9auXQ#=}7jF}Idvo&7VG?Vp<{t6{UmLuQnaC9yS}FlQxS> +RWnF%&+OaMea=UEtyperrvDzSi?veP0L)C`8#ZC3ScQx3j +Z(2-iB!pqs3pLvNCa^pZs!RxIYCPlS3hzk99P#M&D;5ewHhOK@I9LqMW$H>9vuxPRhMBs2>(g}4lrkz +WepI-h9~SSXCEbCb*sjVGtC^TTd+CLnOYTFR&N+r?D*vLm&5lAT+>S6#-aE4!^wx^i6OMAs*RewcrmM +&D&Fj>RguRRE{|Lx_g#|-@D>%YGI)@};CvqkdW9^UXwnN64$sbmf~%jW_mI%Z%wxcdm)e2V +gk$&oXevyh%*y`wQRZ@3x6%MVQmh|S}g=NzpMbvWl6iXukEA?d<7?W@KIBVhG^uN|_E^kl}f426t1QO +FTUzFsU)t^y5;monSM7Ku;T2VTur=%65)fICS;0NiiDcErHMAckZ+R6C06Mxq-$H26&+QzHVL1~90`KGST2tkU9TQMdrfT!7Sc +fQ4EKmW!=k%9yz#f^1t#@D?zJyO5?W$x;EU|9nR+XoRK})L2#{Wm +nEY100rV6n20+fiGG?TwltSBWc%`>|f2ID};Xhk#8AyNvWkTUST24a9vS;eh!mhmg|a1Glwk2d~l16c +4+A~F7F+V;gUx^L4L8uWm!Bj3dK1+$A?|-Qm$s6SjoV4TQi~XP^yUfy!nzD3BrtUgV +mA~j|AZxIARk8&+PSIg%kyYic5mN_z`*QTO7&mC$-E +0YbEZTnGJMnAhtGyjMWyRmTrD-mmKe>G#m#-jK$?365YZ!86V|ItMf_OoohW0(USIW^u3_6a*lIh~cO +;1bm>Q$hF}Buy2{dgeq<={Di%sxQ%(pf#M5MX&OzM66-Z|Zba!t;9Qb@b~8Xcf?peg +CRVUGutHOPJ9$3GZ^wih-8$1Lz>1!MMglMkIx2lz@5#~S8=Jz3}JS`2uA0}feuQpvSQ7SsuH37-CX@N +|9fG`)QKZu0c!$7v57AKTFMgCI4{Z+9HAo~_ihL!8Ml}KF}2>Cq4kDBpi>9Qee9$dH5x;R85=_IlvPL?V+$j+bb=Y~m}TN +dWO+emPm+h$e!-t>Sn3p++r8bfpt}l$vH<>hHV^>2><2;o??UF`m7Px7pfF7jkeYa +gwaH{f+6pPPx{kVV^L9V_p(%Lzu}h>)-N*()_ui=~>2#N-k>~Ow6&^rr_OlnUY`Qve#VwPbs!6B9)x; +vdbT#qFQH==CE{0~T`6UC28{XXtQ3u#lTW8YpOSAwj-IiLM%xO#;4m#5`q(ZG@VnNF%>KUvHh(PK-Lj +TIWa*LO1o8KmxfK!iO1)=@-1o0;z$P$Y%Wbf{HC2SF7tdEW_zlpz%zkW{VCo+DMu6T6ts0UtnjL^Q(S +r54go4eEY7P52|8v+w8-6^F&en5k%7}exvMxo)eG1GOccKSk_Gh%QR8#Ay;f0Pnn_}#*nIoIn%I?$c1 +Gc%4@O9jWNpw*ZcMm-WkVd&^>p>x-84s5w;hov=f%+G;TJ)A6q#&(2?8Ok5fIDwC?Zf+%v +$e$&SZknPoVPr})6wLS3K%Z*ytHUy?~zohM^u8J)=+i52|b)Dqt2YWZXTJ?2$_3LS;a2-a?(8$&9D9o +t}09o9Cn(@2?Q4R$PX{0WYjxl3e!?6;q2y~^`wkSVgeQ1m27jWHRTx%E;J5k~R>QODU*?6XY8u($mH`-n|w-Asqm1&v+%)OJJoXLDwgQ4M5YZRYJ@-C{E^hXeE8o(*_uCuF|2o9u0LfB5&)`;uw +}jc+9E<-Tnb8&2GQPdk=?sU@7d+vWp*OVifs@zI&YODXda5qW+EGieJE-#2LXq&02 +pL8{@Y0s#E%}r&0>d%w1FTET}`Sj-^(!&hz-4U+#dYyq;y?(zbXCb9Z`*)j2^091ETrRIwK3j7}wXpM +8CYLRT(`teuLnQRa&xjIJiHuG^lheP2S?LM1JaS3p>M$Mvb04S552wnbK}6+Y&z1MZW~6;e~j1}|D&ZU7_|{|$up0Z%a5=Cz17z^TCnIvf%ck9tRR`B2+vbiRBfjGy=l*k7b#dCk$K%pl>oeL +|KKFq_Kf--X0NS0^R?`3AONlbh} +b0&&kEFEdVxjmVpXxOI)+?4!9}4GR@xHW9;f&euAZj%Qp6q>nAp-qFe>KD1V|iJ$rHd-Of}%Yab-_`J +1KEb>!L8K{#CAR9CS%!q!yvVo@m7z1yvI6eM5e)2nSF}D|RL0O#&eFxOHp{5RP!LPe@X;A3t%B-dARf +f594#5`iurUWiPr+$M-aYUCy-O-0F;t;tNpFdxM_1rGvfce`d6YT~dP2l-=gJ(K)dtkazk+cacgYFCU +{)wu?MUIxZHYeTjPWwBq`EVjFI5Un3fQhxql+%`grY=CZ=5x(?>@HHUF$ps`9*}!TGw1U2adoRi0MJjGyeZO0Tm=XgNIP}qIk=|%JAs%* +FIGi~-=d`YdmM0;kZ$Q4Jri;h`}N$EeQt6^ooWRW7W94EWI@?iuLzohcz{BGh{j-UU{vJ7pVN%xYDS_P^KaUaL2m+oNyQ_rLZUAPR#XMO3 +>Oqk%bv97vJom5x4*tQtg+KEVMhyeXZqm+i_-kZMaw#I01QNAvlaf}uTyoIr}{_=ohG|Tw!F--B- +1;JMuyQt=xQfz!ML9e8C5Xp29EvFcl%8NeyjqA{VJ&nA9N2e?JiyKWehV^7`^vdUyL1(W6w(S@vPk^& +z{8bkKz5Uix_+BH2@l2Qh8u&`VKqI*ZT@)}|1vcVM5f +;#(=MTU7|l98{Zb)OB00#nDdoV#o}_gc~vO9KQH0000800Wn#TM_Ijna2;ZkX2llRUl4lxSHltU(vH46v~G19y7OvK$`G;#>h*wS+%^%a&1I7FSZ$+y{vTb +2UBQAnoWyy(@AkM2ek<&Q2##`GO5HZdDk$`_MigiF2-)2QztxwPR?q!_kL@2sDTO!;z +=eu)xTbp(W{4a6EH%YAOU^E_Sq_brh-N+&>D_ErDI!0~?D62*+AFzvMPUpWsT-#d2Rc +A+hlqAEr5kqe}Wf?u&mmlO}hx-R0^<0LfuOp}b8bP0j*-SuPfFk)Bi)GRMg+H_X>R#zlN3)05 +&RtIDE>tA&@BN!$SkG7>G~U&<<4WCi@y*bMbWAy8pbE?~J$_xGo-zdL*XZhP}e*45gyrkm|;0rR?vb6 +MQj4oy+OszgnZO2Ey&AC002CJnmaSX|KBdex$?r1W^Dy);wHJYGl0ndTWXTeFPPtTInxb!{%8IdJ}MZ +SH4fwTSCTWq-3UGX)5P^fTwVa0+akL(|T9l`P_gROS{b4Xkoy?q#7+ojG8D#mXBQ#Z5hrkVp}z5c4jX +%j7zecDZ5EXuZw*m!x|DU^>is(C%_HLY*foAevTwAt3dNp7~LP*hUeE$2m06g5!JV-gtC!o17N25+2v +hGM5)9))(K#N}d?@ybMI=z9-+8qrWg;b-=*#2g3Zh9KDt`u;)3xvQ1PCOwN}^$nhBr*SWpC9Gw*~IP^ +1`;o_pJZ%`@qkOU~8UZ`tTeX^@2g6TB+{`A#J^zu(Xz5a9b?({!Sp#R~)(G&5Aenz8FDrY2J!0AS+{I +S@31_q>>(4yg+<@FV^0Q4?Zh};wYQf7s3Zr~Lz3#<;PVO*U+cwy-A-|+)b;;F)4-+2owi|s)Oo2n2q5 +4F&pqkrxNN#>o?1Wblp&5_DtVsAD!(iM448dx +E6N!*QZS!oB^Bs9v>mZ{!}#hEMO})rpvIs#uD~uKsCo{nB4lz*z$(U|kNQadreRnJ@n2bq*Ek@ItClj +!W@{jeX%>p}xzuozxB!pjMuHo&*0>prc!fGBa05nMWHa%hhwlfGDHy2O!@)y~%~?H{)ha{Ft(SeXBe4 +2B24kKIKMQ3@=#Rq==`%v0zmQ|`jd(n>>Ea{U;Zb$Cn)zM| +5rjVw^hbIip>Otl=u>7mL?+nlu2_hs8?dmeHUp*z(nJd0`l+YBkEvYYXj>EXRy16*G9J@GD`>YVY7lCrgKna0Ah1zW +|@y0z=jM}UhI)K;n~&_Jk`OzIGRg*|3wY1@3g6<_NGwX>&sK{IBx0M!God+2cSpejz& +A+BBGlkfwk5k)%i>)3DH0*z>N^i61Bl&{YZ_TlN;o#x?D!_3=DddO7K;V9|vL;XZ7(x_;gGZXP3qY&L +MsTrFaD@Rz|$;6EOuh9jN_1yXL^Cx5-4X9sHHG&@oGMmyv<)T|h0XA_(Xd!3DmGxSi?6uR+nYum*col +KBQ-f@(>@{UE%^$m$@(=gBb&x{;p4G5sBzQE|CDg8vK^OCS!9#;(Mm5X|d(sV4jTX_){Al7T3US +czCqGn#Z*&yI^S1yAtewYcrT<*Alymz1fGcw# +<*j>C80F&?Sh|vdGt9mSq8f^DY>K3Ze)x%i}9-pkz(zwp?N`kF?Fy$f~3&lc@##LC=N^Ilu!)A_EUS& +cOuaIr`D;o$1N=;5b>n(!b*m8g@O$01b@C98@Z-CEOuIhzC%f@Y17sd7xFYJQuSVqpuFlI$B+U=U1kZ +6+5Os*p7wz`G7rh1(WE45%dj)ZZ&yi+CC6xDchE{>c|LwQPy_of2Xud_%1qq|Mv9!#D$+|zmPaKPWNd +E?EB6{h>IYEodZmoLtqE^wL3s-rM6AX%AswzVRm*E~Q=?%OIWp8@L0Z^#i(R;iidvQ#PquVL6#vz?AfNoh7WPoui@@o@<7{Bg&P`wQZ;!TF~wYzPJDT +I_bQ!dEZfe;0u3i(vrZ9Opo?o-|Nz*XQVji5`Z62B@KGo9A#`2YFl56->}~$vL;*&J~v7Na!pOoR&!LWUFCp +N5Wj1iJKR@bh;ir$Y6l{8g4y}S*d<;Mm?l`Pu89RBJ>)_v6<Oj%s4tcWN%AFa^!QgFCHVhGQ@~9|5_?AuGnct?(d` +m_j;tn>Kq!$ErM4JM}s9b^FazewQ>ApUTPG7(I>D=|=*_*I>#P3XO=DjwftS}h5h2XiynDpOVaA;A-e +-IxVsSw0O-08X8x9V8a%gTQoBh5QP$R+a)2;cbG +uyZ1uQs`{oOhyiA@IOC;xwrkcLJG?EbGr$~S-oobnMMkOBjO{M54ux|MszhaqALeMjy;)iw=xu(P?vRiZ+GXtQWhlxZ+iV{9ob)aK+&mQ(m+?B>V&8D4*jyGSZ+iz^ +Lr5cLVq%75>!p2U_57S-@ZPk#`Sw|DfS;M*>8hvB_>x;@=tl!B*6HHZ#2sc0(aZbt%UhgA5RuT>!aD> +Z^dLkYX7C(RF#D2}soqZIZNt1VV%_C`Un=i8W^Qg;&!bm<0Zo1^zwkC_7$~!#2ZZ!BFD@lTqG`{@`>7 +%#7|22H+eFM4GHm+sXPfFDqb_EY*v|UeX=>farRL4V;|~f4Z(wT4#9~*InKOgz2StCJqk{4k)dCaIk^ +b%)8@e`}96M&=-^NaCR?#{MKvd--3Gp7-}LH;P_r#4+HreWEhJUK!A@-|+;P?HHidiLyDi{ +`}z1hnNeu0SY`fB=BT#ldX~LD5vo*`-ds`KA?-0o$P{J^t$P)31+y|McnCyV&jUAP`S<2O}Va62B3$Kx?6F}Okw$99+0gOJBAi};p0KmZuv%yb91!Vb=Uvi}Hs2N+`K#J{xO*L-u6uNRo00<}wes*HEv@slAWts(SAJ!7|r!@6ALs4KyRX_nz +~{YPFw2oid2*b5E7wgOm!{O071czXDiFwNS$zF0|-mn9hyR+tb@T*b+nhvAKUh?vl;pRPrg;s(ZSjhG +ocLh&8~s}jQ#vN1$4fX^#Pjgr}wn93x^aJEr8!ZNvU0|!y1Y)E_)XGA@Mq;co`591GW1K%i_lXj1DjM +|ZAV0l0krfUwGx-=ooHZ~>55z*m7rp#JxYER0LI_|3OfO#Ch6Hjpz>2(M9#+wk)!2Je*hDHy9>L9B#Y +(N^Y{7rGKbY=}kn6$MJ#JUqS;g|>RZb))E%odkikZKFa*XO^jX8Jjkc`BBfOh8;g_h2Cjr<*w0wMWUY +a*8Ao4RBB{PR_m$yN)i-qn#Wf4M<`45U1fIsvYMPSC5)?-MT5XzP3-+gc>#5*k$ad4KNT^We#z=S}*b +pNM)G7^JDC-P0R&01}vECx~5wS_iqQoSY3i=3P +|ngnIyh7`dIN*)MbLSg*a^_qEM?c>|maPD;1XuA#1e=;=CV4<4q(h#@@U@EM_&cK#B*w%Pq5L>1Sb&c;KNY^)FVA%L#@5$tnBYXQ6pPSc{y(b;TZ;`QbMx`2ln +WvhU3c1=6ADhXWK4YFZrPSJobtWP~H!Fhv_ngz}U%=&H)!UM(tbgHw= +oH_s`EzPhQxe(M6FI?@YGaJ~*A)vc8Nw1if^%e#u!;vCH4E^c>WT53RGVORn$yiRhJ1DfP`-#M>HP~3 +xls{yq>Gy4`ZYdL}?KZL&_y)Mk1fk9>yAAN|O74Pf(&b0!JH(=`J_@bn=4Lv$cAEs4D4{Vp00NIdf$> +EH=MlQ0$3R}j4QDdQ+S~Ln%&%GKq$d%x)ELhp{swQZXw@L+HYqF7RgHt@a$7}}|7pX-YYj43vpn_`aZ +ACmQ7e>+kHATwh*e$Du2di%ZQG&Z@}!WeMxeQFiO{I55i1pCym(*5%O$7=Q@5xw#~gd4sKrFr05XZ6Q +|E;QcZF$1Q4rQwace)x!7dJTC+s?7c4!0=06l#-Ia7xY7?hCqu1{U~8EJ)pC3RpXfn!2_Nq*-T)ESiNbzGxQyBSqz{xHoLr* +e>H=L*A@z_E&wh^s3nu$A#HYVa)uE}kM-#`b@8KbH~pw|M{`@S9h!qX6<1y|{Mmz0^KXPrm`Q1`tP=m +QZxnhff0Gxk`r7Zp_h=Fdx2Ya@g;knG+4+HT};_%KxP2ik}G8@~;~?CG-Ktm>-*da<#SuaU*BrlB|Sk +N|{~ZMP%N(9vIkP|zFJKI&tGs%~0g?ICzkE8Z2wVNT!Nd}(`A5AY1Vi#xo$zw}&6K|oGVCwGYBz1Ja8 +Q{`M4scFSOnpz5igoU)b98?Ujxy{ib*{lIA{nOi5hG-0LQ*rX+qy*pB2a1fb2H}VdocG)_`d`zZo?i5 +xcD99Tv4DUTKxqz{m=>+@-z3mp +Et9JHupqdMI75IJE9(JOmkIdxehBAG%{w~ju98@lk}qT}9j^APbs`3}qj#L0DXo$A^x1aQhwyVHGx5N +Ur5msl4I;N%gcK%<4}9JJoO={v*%v!@3HHGpA(L6(!hK0u;C9BQ^usF}Mono| +{E}?8+WGi5)6-*vys@-##yCqULg6y?t4q^tvR~sT&d~C{E68Bn%A9`oJG1Rpv1a+|ca@DOz?nniqGq$ +l=8YlHOY28rmZ{;$N6BbN`+q|^jP8kjI(KQc|X7wJyKaU)KU;vJh26C--HhaQD>?XJ(&-Gh$**rZ7rQ +aji&U+U^oIp6J>hf9^TVM=#w|nS4LK)Qognm%N*|nlY-Ddl_tzA~TDb;VTIfE(aBqMZtcr%oAAL6GzH +}&C6+96uwhRyHqOtbsveG?be-~cMr$Y^AIV|lcv(7rV6)Rz8p`kt*IxuIC1emUyrLmVs7TE%k%S6c|? +M9p!;eSm{zus#l)>22$SxRQk`FrRrw4eXy9SaEU<#WN-`=S*Ck~T#v9FvU9=lpXO(Q +*@d&msOhxR!kvLo~jmqa=fdMvmHds0CM`~~i=&|6ON(j^2M)mmTAs`v_*f(KH=_&0@}fgZHu)L^ebm$ +5qx=XFuBWgb|e{kcw!8R21#p#eXvf~{0sc0l_>y~e?K(;L&1F-M+y(z+pf&Y2+BO>M6)FNYjA58+2*^-8w*bA8{p*VlJ3Ko#CoT*Ls*!gknWJ1Tf*&FAK!GT#t) +!-U#B%A{PbwPVKg*fq18n8`ig)xc9HxoKMMV=F;tYd8aj_gq)3nyEdVGq1|#YEA{SN<*M+P@Pq)WKv! +gnB+qBi5iC#s6&HK(F^3X>qmSxAzC-WDb29;hL$d9o$UM{LaHMU58>q;K?NE5IC0OP{$@NKU|VoDi9z +`hHPVJdfJJohuB(^yvrwBjUw00MiLBpJTJX6&r0m1{zscg5HfMB#?@w8p$^sKsjE9m53`r}b$4Bszlk +_8-s){14Q;DK(s;WPenfFZ#U)L1+YF`;mnOvm}jYs2!gK@lSWDPMMRUYeasyKD=WwBqmNz48>(*;Dt +D%A=CIxzZyDav12DL`FvA0xYdkEEhfE3DqD-?{#;4LF_`l+lZ$3T8LIrHfJGq;Cac>x!E=|KTc?B +=5q7r8Xz(n6b|6eL&|g+XEVQSURMyz_#Wo2Iy6Tn=0dQ$ELC*Q8D=-4h6hq7X<$4+K1N{9=sYa^(!=taiCIvwWj5JdqV9L}QGdUv +oSw)~pA|^t#P(`iRQv+|Mj@Yh%6hQqK@E1z#_hxYLXbf(l?(Vuds^kj7*3pM_KU+5tu2Of{2(`nDQaBShOi2H +$V)2eSF4iq((NLyuI0uVeEUV0kdD6M9;c`36aqL8kKu2U +!?P)tZebFY1@Rce8(SZ}vQI4f^+F!>YK0*xi$#<^fqaAQgjOvg1glZliJ^j+B6D9 +-zi(&dN>4iQ*f2?b1$q@#zFSXN9w%-SWwF=+}^J?PY8&A9UF*v_x#dFio!cTDHnsa02|=V7xtnoC0d%#1zk8qrRvnd9UBCRvd7-mgDFpi(0z3P6Fvm4_tg*=e(1(a~=n7n;wOJqD%n} +guVm$!WIckmQ@+%_c4jUwd&>(<-4%7L_c8bi*<7&C#z{@12S8tsoAAIJQxF_fa!ra5>LdJ;`h)P0fM+ +Z7Ei@j;_D8M^&x23BTR5fIZR#Wn@v8>1={24@niGks4cAc)YoJD;m4ZmIr7PhtcKX9>aDFXkO ++i21WL>PSmn&s)TADbjHWL;9bHg58HpoPa~^sx?4VNL$n1rq-7i6S6u+Pt&8?7TF+tY0FKK?jU=#D>%}1_#)}^)r|GC~qZF>0+ruILHd_0dH +!b23>pa7^*V&4CMEVnuHe?HftpQ;lYDgx&v+Aj3JnYJyh%y$T#l>a|~Y7gT6Ag68VIV61lDzj$X|DIW +I5x9SqiCgp^oI5x$n1PF|R6NYA+QvGlbXs#{hVn7I}C2*SitvUskOpl3iGW{ +^VLHB+%3!*s7_}csiMSez;>y0lg0eKTCO2U$_jZ5XvEvYn8l#egglb7aGIh!8tQv2aw|*xk{uot$m5y +{W$@IWaK9`Ynp`nW1gI_xN+$fcUap1dreRVZ6y)6GwHMHa4x0g{^bN4A+?U0^A~D*>NQX-@{_M&b7hB7My5-#w-Ei9V*)dFrJat^}?Ope?S8awYIfaCC=al9t5$U9zoWeY~PsV%4Tjoa*sIZa5zO7f?$B1QY-O00;mBm!w>jQ=vu +30ssI(1^@sc0001RX>c!JX>N37a&BR4FLiWjY;!MgVPk7yXK8L{E^v8;R83FZFc7`_SB%0XkyxuOw@6 +g2kSZZnEdp)`IVPE84T+uF&H`0`e8{8`HWu(3+-Ex?!viAie6j*rBeB<-IH)WH_7gT#u!y67Rz8R+r4#+L-x{4Vpywc%gYy>tzz?Hw +sY57Tn;iVmw|JwpKL*bEEz4l@8SW@`9+8qHiQlu33{(w%i_j>l94;dE3OFcWKQ+#hXzaNRc-j3is^zI@e8pa$96G7mM +T}(x|w$0~YVr=*U`*>TvPOs@r^F^^;EQqjDtl2n@wH**YwibdnAooa>!zRdqEhlf!up#X;i=*h*4VlN +|9j)W(v|{6%Ys@WF4OT*dY_VKUz#<`GPa_3fTi@mdH!#tK7OEQoGKbfv1)9nLl6^kV4R{j9;=aF +rsRxPj<-WeI|%j*VRaMC-96Irqw-q_>FIoK;SpR={lVp{)G(%Xp_};BqjqG;V{$_kBIGF(!==Y6IDRX +8x--GWB$BqwBUCCXRjRJh25@PcVcb)xq?L%$c}m`r5q22et%vT8lpFENxjL*ePF^Ac9g@Zs$f^ +o6AN340?CXk4i_u?nJi*b>s*Z#Y6HaGTKtI)Q#_4mk3a9$xG%w-?bQ*=QOh>5K3Ol}b$>p29%-CO0O9 +KQH0000800Wn#T;LQnY4ivH0FER80384T0B~t=FJEbHbY*gGVQepTbZKmJFK~HmZ)0mNaCz-oTaVkg6 +@K@xP&F?y;was>!hnh$Os46eX%b|%TP%X9KudJYjVvi7J&7^NfA2ZGh@>bvlgTXlQX?0cJUl#??_5ZE +%e#G2mfM3oa9WlL+xH!p32EC-63Mz&EEZ<06ZVPI#TM69UDMD?QRQS)*~M3qaV+ma@CFvh~{G8p^4W90@8#PN;{+DxJ?bvNN_MCChvg5~K^txt31|z>#BKZFA9i@#KQQPZhCdymVu)5STm1 +vgLVtGpXTgnAk*^2+G{^~2tS}=7>nw);FXs=u{xT6)4G>!7+CFg@Tf@S-zrj5uO)(%E`3C~lc2g!i4> +h>VGrIpwC8#y`Cbf{nUZ`-a$$j}Vh0CQt&T(1V;H +&v!)Zs947lMVQh_UhVrv!Z-3woTkDiAok6VN4u7}_@-8Wfb9hhO?8%tU3X~eq@|GeL9)K5Z9wr +YLxw!#B7!;I_Ac`|`+o@m)$bIl)tN{dV_}dQ%aE#3@upD;dpDDh@_k^ +YWJRF1giSye{FcJd|KjXUZH__8ZxUT`eL-~g*{>R1 +I58f82!2B~dwcM8-D7C{sED<<25-uA9_xP=sNjr`9t0oytHEFG|D1`X_ +K#xU3_M4g{{W|IM5MfK_u<{ztW&gY^-(ErhbE=Mj5Sm%~pKK>({{{aMUocvi>u1l>71CV2c=h`2<;D5 ++rFD4;2^1nU0}l$xm0vbp*92a{fy`}}?}@B-nOIsL<0G`q5Se|L;?3ONmTc))FS%2BNw<>fM#0hLIGy +vJaLJ^C#Itny?&(iA(}mEn8aVjsP2B)w_|IS?7n4FNiS-%Dk(V9Eai!-BucKfdW4C@cF!6?Rk-0n;FXWuQ +KMCYmcsB;_Y`ncRcOzxxYmP~H}(anSa24^!A@vjF+ny$8+Dwntz3%PD#2SMrHGcpiZCwz7CW&MmJ|Jl +cC@*pnpmTK76$Tk80 +QefeWnRCP1Dzna#6o1Xi!2`FAvAwnGbUS(rUjvm-V(rqMREli{{9GxEPv%_u2S1*IOY5(99WRmnOML(nF6P?^W5V=i_c@R9wod!r!se5$@k +`{pnVM5-k@{D_ds2kSm>=z?xn|@-D`Fw!^#1y*DY!;8pkc|T)8uCd2N(N`jG9KU+SK(a0L!@y)# +uSciv5vb2Q#f-#O9g)f+p~snZ2j?#A +VOQcSHlOprQ#u~9as^9Yd9DBnIzZKW;c)nubC3j(~6PC#=1J7o8ZAzFOuvfoHLrgU7y#amy|Da8z5#k +NDc2&JW<0rTKzBZ0a>Is4%KJLb2!W#&1+0NQSB(XJtpS;XtM9>19rNHR&77 +tO4{=KB5;q&!+<*#H_tpDx!p*|qMf&O0C}Uubh2vYXHxb-MX>)*4KRie-?e7op2oGc5T{qQWf-XZi`4;Za%FU +Kc`k5yZB$`v+b|IQ?q6|aU+m)g2N+rgZQ06T1ZFlyDdu9IYcW|el1!R^zmsG;by5+CxjQ}Gz4xTf=mF +}wo7`lmu0af=HV#lJ?a&FWY?92eZc>fYTH2)Zo17SEDIdvnb)zTc$mC!p(Kr{KMxox8vg+^tsebtW^z +h^P=eHalP)a;V%Aq=q^cxKy)oqK)1bBUbs_EU4vc9neb&m#zUn4b1D6Zgc!Ap15E(^gu2iLlEx94z@w +A6tiXHIFTIiheSbW)?^8Jr$#?0BBKC5fjwkz{atzc&8zvVQG(h}YNiOmiUizuWB|snG_VHsCbij`f6qanh4GPOR9*EYl<w +0$z4`KsEwx(Aj*71loyE%eCSCuZ(I&Z8N!T24V`*Rxih=VHZAvtol}9U4~$E$%iCMVf8uSR6@EnTfVj +`Nh;+2mOjJ4%Z-ZcIGO(+7R6dPm4)EhvX+{+a=t7oZgKmI0g3jhEYBLDy)0001RX>c!JX>N37a&BR4FLiWjY;!Mjbz*RGZ)0V1b1r +asty)`e<2Dw4_pjh;Fo@lCw2OTV>ILSK*#>BvK_=5axPd@Rbj(I3T~e|q==Q(wIftY~N=h=_T>}|g(& +4#ZK2ozade4et+cvEcMZx6$piRTLQo7-d)XL6g{$8!`@1?pAm)eG3c2|op-9@`O7+nf$XItc5>be#sa +mx9o3<9niVfdyNOZEdl9FQ$hH;?!`5WP{4OZJY}wWIuA;-Y%VJ}Y21b1M$=kQYaxDs6Hj%U!145UTKGQ(VNCQXI&<&NO8k)ERGn>b!AjjGkoBHnO( +4cW&VE)8)ra=<$ejg}OzYrS?4|A8`<<*Rp>D;OW;T1L_j|6YH|E~56|1Ff*5tsoZOk&Fyt|vtW|i +2oJ%12I=~m6Z;jr$40WJG?L<|=Z-vvAWXMBAzWAMqcjK1F)!5hJNOu_W#S4fLIA@ni}CoF)w@4`S_+g?CxxhtfZA3GkqY}c}1S@R5h~uBJEdNzYHSbb~`gZ^ +p9Fq+peU+$*lx@AHgrP1ml3~)D2U}R6OX_XaCzowJn-7=#06Zc{?k*A1ZG8S7dYf%;CaB^ +cucWc_fl-yikj~^06F8^kk3?uMKNg-IyrrY0}XbvUO#MXeaSqqtS_2Y+YY)7CgWo@4+XV~8>VGK5jzB +q{qN)vo2oj=Y7lOBa6p^9OA!`N> +ot|`an4J;Q26w3HOkapiGzHCyX(#@>rIuZ`la|9)WY?ik8(d2x|5dF9_pllr!H@9u5Y}ja4yz4BH8yX9p#LwquoQ90_C1NtV9thO`4`#Mw$C$VGq<%SIoC!}aLwikjvI7?ZCk^q!9qR0b +7dUz{L$D6M$VMBA5J6fqt#L2+;_%^~t@9yg*0xmvJp$6i0p}2F$fUeOgkb$k+T4rga=XQ&m819`m4NNex2s60pvpB4ChVW2i!Xa{!AYF?k>@2& +$HH^Lz6f=(<44hV52rBj4ksj_X~Zx#f%<9?ZixyLYc?A@f1cg6N})nwOZnOYjEw=A+i}3?0D&5I)^3L +6r9M2)7wHrWfTJH<>X^5O3dZF;p;&YW3%`|HoQ=xPdjkBth0n4)9=V;Hbt*13(u*W*Rm8WbP#3H +G(s2G2)9T+h&-vqh+AZ_-35g>C=8=O+b{caGUA7WQ?^25$G-B)?$L8Ww|4G>XB4Q_PSenSwqj8_nN?P +Qyy{w;9E|hRz%Xiv01DngiL+jI)C9rOuY|4UbwC9DpoefagWa;6(W;q)ySh8SoARBPN$zrA +!)^LJGOa98TUsUE#(s~zsLJ&nW28rZ;FDeNQrG8B7bI{k2croDgnL1J2oAaTaQGXqq>SGvAsE3aOPyC +K7PFfXy$m1t2n}}!&dy2Xq5Q08YbjJF`p&O=7m$sQdit3%dm_!L*nQ4`TL1=L2h^c1thyx(%Y)1c3wu4r`K*JNgEX+ElLo)PURqfAoHU@B2t0P5SxA#&$E$+6dvIyLk)$XO +?_t5Ct`qytZp%4UD^JvjPvu^X!8q`x17#rXZk`cI_T16^a0LSUtb-#@$%048Ngi8u$8;(C;Hqa{FpUR +QJY1mb;hNRc1Bb-Gwyi)#Rs;W!NnKni7wjq;Okp04VITp6{^TxvM!o&HIZdt}&1&+_JR_*+_nMR_tKT +zxFPL4>%=u&S6|6kaA3GC2*?ObvitYJ56fnQrws_p`9J>D7-3423>Q>ynws0{40La1gPI5l=_65P);) +zw>825fNm@}sRe;WuOjqIAlGm$w!hwrGewN$Y2kIqDk5HoH +`4{s?mb_H*TSWhYr^W79;2}on!Nndt4v94P-vsd7+v4#VLwBtH(deVBXrI}K&2e{!)7V&Sbcp4-=PqO +LT>*?&dhJ7lpN>`V;%zJI>MiUe;Q4o2KcEu$=IwUZ+NFEr=%j?xRj$~Zk5^786l=K?2>5w(hC7RcpqE +Q9=AYm@(!M`vr60Z1`YcS}81)(P+>0Oz^?&hFh60hE$&#z$|ML(cx1dwxDHJ;S;wvH8SI<|=%FCE6it +#RSWbP`t8WVf9SN?lgW^qEhaLoP#P)h>@6aWAK2mk|@q+C+G$>FUF003Jg0018V003}la4%nJZggdGZ +eeUMb#!TLb1!sdZE#;?X>u-bdBs|7liRit{;pqv$m6jzrI;ptzgC%CY$f*8iCz1ev~%$=5D7|%DS!dM +yHgYAw|92|zCfg|$xPbngHIwBi+$e*OP59;SeBKIYmCS;CJ(hXj&Y^5<4$U2XS4837^8IiLpouc)|G7 +^RC>3QYS;eMHm$kaw?CaY)TOLM_uKGXY*7}sB{t!`AYo?n6Co=5}6(dIY@( +%A#{SE&libV*j#hMOZR0*MqhWiM29WJ-ua6s**SX(cRkdk$_j0`~7Jy#*bQD{rhKogpJ&k-a6(Ytq46 +<&(cZd;TQbeDURazHMYxtc1Fmd&_KIKHYqtef4y+d7eGKeEf8?o{M@f4y)U}5Y;N@`CbIlSDU|O#A!V +@;=2`bnv+RqS$lTy+(qwH_5=F@WCwZh572&m;^ab?GDuke@0$yf%Wr0u`CvA7|d_ +Mo2c329kE}o8TEB5?GY6BEAB1NNTkO0zU*}{sdBvYeNdjaurn%TW>K%_!c!ifvunY(K^5@TCeZ$RMh- +}Nl5aDkGTCJbZof)V`RfAdworV-Oh7y+eTP3eN +QX@PPkv^~mB(}v6WNcu_XddlxKQO|Op$X?LurO`LCfT-on=DG&Ug_I8Gu=X5Z|8lOt!LLSk#3Y-V|m{)?s*QN$nj{Dj%^{I8Wmo{u4`jTS+glJ=JLBxzf-t5H-2!q-PE +0o7HSPr;1;@OifoilRVIAMFk5uzCu;paN{3?Z1XzT`$gJQY)H2N{Z?6tVd##2&KfEAJ@!Fh&&<(2@{n +4H+zGWn_wAiKW-*b2vm719iycO&#K?{XC(=ED1BE$1F%ZaUSdXoAmWIR50G!l7aWIv?PE@h)+<)8!s? +9b1?25rQx_EMa4RaTu0?Mu2RW~TYQsgX@2M;8-qN=d%vYC>99ISiRb-Vi?Ko@E&}5<`;=F9aID-Z4Zu +6NA_I)AjqQlZRz$lTG}op^fRlDA2mcbgvb8x_tCctg4nTs&Kmx${C%v@&JYdgCb_@Mfn6_(j486LNxp +ci#0O$&cK6S&%FC6Dw^ITp7{mKuIPa5YQ!JcqkVTB{7;}P)Gx+4%3uo=VCX$B*@^aP)$K5csDr^TmZg(Z2S-p16#vTv`w;X;y5T?rz$LT`Iaq|<1~7 +diNbb;X7X5#k4b4DtR0_LTrP@`|Xa7Hvh&p?Nc_p@i9^g%d1;Yo5SD1faP^c8-iT;AD@7N~*UZzQJol +#C%KxK63)62ta`s8a#*Y`$IOlk+rjM4c1se0m*3v_qR&^izM*+Y>zl4x)H`AK&Ulvb&^+OX)Gz#m&{P +?!UQU9RbR9-sPyo*!0!uygr&S&m-AZItMAbp?^g3=9|eAP1A(_~c8lPTNo;q)9@=?A2QN=EC(h9`I=)4i7yyW99gY&57~fL+!cGx82v|(E);N&I*4ag0c$RS>dnNjKZ}CY5+pa(1R&4HaK` +jgKz}IhjO4Jr~L;6L;vTPKTi+0F%ou+Amb>dADQTb|#6TA31)S3*c%ms@M?`bBC8Vvhf?;x3OxltHT{ +yzPUAJcu~_44-+Xb(~~kwr;tZ4Q8AMFF)hN5J>Bny24tsbcN$(+xLMzX^AEIWt5K3%s!}f+EYLRVhZ{ +%X<%xey0XXhlDzVIblNh7%nT+Q;Az})=6iCAV4o*$yh)nGz!xw!JzQl{nrCT-Es`UqO2ILlCeL9!+nh +i;tY!zrXYLt&^}@XfFGcFXj8CdGRdkQ1;C_9#w4-*rom*K-w!P-z1%eU1F0aT(M-@uziW8qyJ-?1d~y +tBN6PCODq!c~s9T&zNU?mQUWT6sU_5X(E_xw9hWs?gKQsD6_b3f@Toqtp8pR63t02{gnGgLz>L)Ei^B +dL#2$!eX2Z799yxt(mlz;#}98CxUv-c}ZyXxmi0m*xpuS4xvo(Areu?Efz`TbJ^lfa;IgxaS&Ek-KF= +QP8A>V^gpmX`wV1c9rhn{b0rHa!#A1BLI2-ErKG?A4E4E{kuW?kE?HUKY`>B@$z#O5%5bX?>Alu^39`U;@9V!8a#^4X&YKfB{0=DqbzZl|D`5RZ+RIx+^7Q*y +qav0PS{@=zn-I&AQJ@Y+>_5#WUw;lL#IMT!_)hTl_eIg{tt6RA6GQd7qq~OpWsqHzG#NazW+-`KU+v7 +6;Z*;p3`#GG0UE3c6P_M+dRB2eP-|jLT2Q&sQJ`6gLrEn@_Spq;)E_7LJy=egeVkK3n;b&EZS1u2HRf +Dovpg$k29+7NPK^c_=I|#=M?)>EL`R4M;voAi&9zVT&^&0!}>c@2b@Yf%F_?zGU?)QKAL#urla2#9F?#99yaTcI`|HMlMFQ6 +YPXxfUfzK{iG2khuxey6!UY{CC@bcT9o!C(i7_i+;fFQ!r8LeFI@_CXB&#?1{-9K`{~`HyqTV9Nc_lY~1}CAt``e@T6dby-!qH3=7AFQrY +me;lzcu|YXZBy#1iwyvZfadp*d895>{sz(zi6^Alma^Bb;LZFNE4P2T< +d|$>-j4!b%in}S4`8ZtC+V>2ky}!#s?E=FU$0?79yOjPD3wngUq?^q@p1r=B_6#+!pKy&hH*XlLho3F +1_iz5k93QYxskf8>YVZ!pviT1ED-Qqw;WP +jMAOHXWaA|NaUukZ1WpZv|Y%g_mX>4;Zb#8EBV{2({XD)Dg?OX41+_n+_eoui?s%Vd*Y2^9rFFqy1Mxn*&@s;jybam>%Aa%dXvLPfYpwJSt3H=HoI{`}p8`1ITJ)2A=bo;`gzqi5%jU-X`R`(5wRcW2MNXVdY;x2b +BjFLH%CS*GP=g0dGSJF!ZL)}s2Fo`rFo^DU@uI+;vfzIy)r*^BejFP!yYlFtCU+hKe%smk3kv1*oHym +`Rb0n6o&d_vC$3Ew^GNM)i0&(4Sn$yt-t>_@^ +If%(IeQpAyzBCrz1i~HG3u%1mV6TRJ&aD4V#SiWEJa?$^_HvG;gsF`oPka?Iq<1Kj6IPV=1T&4Mv$gw +}V50K`RfvRa1%G%5%deh^Etl1q+rF|i>89UM(i41vi7T!A%#yK;U=ncNW(KArwrIF-@tDYRyaTBUYh$ +Pa5lv!g1FNm6ARapxZ8iXRU3Yv}T7j&z@k(r^crG~CeM8Y%@(Ts^JQGzSrd$35@qRe4hy#Q7qfXZ@*& +v~{lh0?UjF99AN?LK%!6}KiqUSW;_DQ}8#e+Cn_uKEGfZRZ5f<4!wvQRSp8zEV`U>!J4y?W23~lp&K#9)Nb#Ztt%WSFLG}*wq?C#A}XN-HY02c)v=Sz95SOGb_( +5Y-G6Xh)pN}$Q14mr0FolQZ2jN%khMx1)@Q-DXu7AJK~6$ygkaR{I#4MAdFRVDlUb9VHpNxxvcG!SEV +Db{tyOD!CH!1G-r57-wV7e$B*WMigxCG;m($H+_AP)E=hy^POZzBv7go=)j8z5hrn-R`!|algn$i2uO +|X*@HN2?0EFy8^gZ3An?hV6*7wBWizzG|2^Ndm;LyR{PwpF`r_7CNG6}nC7$+o7*+#5o3?DOvhB1q96 +ndc3q~(0$Xqe$Q#B3AO=M-qgO?n)R2GzyeCK?K;%qR1z}!^5CLAzcK+MOIVFeb#76Q>f(lXnMK$4ZvjG#vtE1!9$k!*Or265C1la@7dXLH~p+ +A%00w$2fG8fw9CXhp8$5S9f6#;`)6^V|~(Y#2c{6;dSpRIH}>tC)dpACvK!My*Rq;Q@5G +m2bt!Lpuv^$sW%pgID_F1DTduq1`!M;RgZL^@2yaZuTdId?;T#jIoJy7QoHNhcWArdG0r`x-C*ie*M2 +M*CMD}ir4VLJ&TKO+lIhQx_MVhHRia;EhGr8H=zq&A$2M1a8>^;0k*)GbwL{`L2Hz`l_A#}$Tkh&y~4QbgoeGF_7E;D$irggzH(rOOwVp;!lKC7U{bjYtTh7D^kv# +0KDx72r51jPt5*(Z+ux@^>=i-Wbp0-HQUF4iun*;2J^%1GB+^zAA>N;HCQ;fR2hCawiu*gcvULwEpr? +&ww~aSXdQNl1T;Gd+>F-H=7UGK*QsQVZP`9f!EZASQd+!ua4S ++?BWRG)&Fy%CUGZ{oS9ZD^WKC!3nwL3f$~K6Jwq+l!4lmd~~6mhADuLJh{^f`NU|5L`7OYo4n<#@>}j!_5%HJ|Acfx{k^1o9HhyKKCnk}fqedPpmVj_vA&N(jKU +pxbH05L2uK$3{3fxq#5H;K^(35CR7tIR%afp=XCZbpf%*cv4R;KY%TUfTO_{R>82D)k|v-{lvd7Ljb?Gs6rsq+H#+#<55H)g-#4ku-5%Hu9)`sZjD&GC?7OyIiENl +R=DKbYaE%JSD^%;5#E4S)FSee9ul$5}K>TawrgYW6?QfwMVF9#1$7H`Zc|Gm8@uzcMVwYpa{ +02|wb)OYkrt8>*Ny7@>-5yeozGycGq#buRtUDFJ;B<>Z%m%&&`8?Bw$`>s>8i)|?1sVZB6kUOp!r&MY +6$ +EFw)|V5iwaIAc^!D8`{2T599I!97MQLFhq6&WGREHoTLzd9s2$83f<$}-x0v9~VL#+*u9%~!yi6&k@V +Xu7qsBq{4p^gt2R&W2Qn{uc=)LpPPvYP(wnEINai*a%f(&$^usFeZG09zkwIE{O?1~-uuu%EO!%^jcz0T#e=3*z +RVXl3_(TW|M&Mr7q5bGRm__9aC9ugB7Ki49_F}(yZO}AG^K629LVFUhp9R#G{_YYDPtKAmUyg5dKbcD +a~M9NF!*pMaos*f)^8N7eu_GBXfyqRM*eR3o5qY84u#ZI5A?zRh=L5?7hm?}3k7=UT3U0GXdrDT<6I!W>iMk@=)wdwFOy?87wokQ47sjQxw)bVjx8NPW*mAS4Ts_zn38c)~q~A9JJ~FJo+|NG@BSTe`)gQ#*XXmHK;L_;AbxvOuv4rPP=D`-X5CyQ| +k_beT@ZiTf#d7b7S>flu|C2q8jvhom|Lq@!o?nR$EIrdTsD&oRb8uOxuS@+Al}^P}H<~DPU|7@zCnIj +bhnT7hQ*u%OdeVIPa`XWBzJ^Li&%bR=LT!DgglJxjRca$=2CLjVF)*Kq+~U08R;K{;DS^+&zB7Q}+)e +Dixc~nly?;OPeQ?iTALB{+^TTpkZnF$fDJF}JhXyBb00>AVG=GSZBL$%P?#6E581B +`tYIZiU`)}{S5{U?KEAUdUO%Eu-^TM+Fl6E72(Pwlshqo^0q4Ys=yS(dd%%cft@Z33E1EK)G%VMD=&MuWe~Bz}-I3zN1{c40n`q37a4H8<_Um4_RI1j1|oN7yS+4xl)?f?q^6{6gj9% +I(Kq_5g}dUJws{?ZGxS38hX?J>(#yfV|t~zZSd^kH}XH944`FER;X$7v1jvhB +kRz11E_V%JumNPYk!HRsB)E|lOg`$-p1x`rA;qOWv+c-|gW&hd*is0rKC$$6xq`D0y8Fr8e`kdh53HK +$KC%Oyxxu0Z`sDL9?hm5|2y0zc6=F=sw^Ih@aDsQA3u9HL9GYTe?;7hArDx(3TU!jVKHtYPRPUDvV(; +K{3G13^UQ*>38e_%%dZ90z=5RGrv&%||w|`K$$7(BK=*xtMbvcD>1LiDIe;m=|^gir2s=T<+P0S?R=C +)hCPaWsq#|jN0v1O^kKA0>(~tKQBI<_W$H)Kg4Pub__42uTITqTYI$+yQ5bwdF( +vrf2q`;7FK!KtIx^~5|6@lu=vo=L^CAmQ`?7xqc<$QEK%!h=c#7FY+NqX6$3xGb +;z2$?`_Q$a5oH6>LXr=S&na`=mPWg~!wZkP86)syDAf36pxH|uI_c_b5g{pxznt8xEMUL1mIZF;lXZ& +AgK%WpI{?E`pDFTo&2m+E-YokiIy}m2}ZW`6^th6!kpkOH%3gm-F(*-i@0vh?GBGzMvK`r{@)IspYUa +IJyQtJgmpmEJVc^*Tk0gBiqrJ%)6)OI9dm6M4WKO-oDS-DgvL;DHLsn9vgrxQ(NF-tKi+ +5g4ThMS(MSoq#i>AmWQR`|dqtTe&Lt#~W~^hfhC)Z#04P)Q4D%^G5XeF_5bpe<$LHTUCTWHG>R+Ii*v +VtFWwxi*%78dPM>_75OlfLkfl7jDAzHOv&v=AEYp*1qpB;;}!i`c*=o|EdIX_ +S^HgHA`O`onlOg&n{r3wPQsaOI=IG +~+z>ln2tFy_#_*9S=?N0$MC2SbLqpm)1Xe8834F}=t4ceYw{!b;@6aW +AK2mk|@q+EB?LvbAi004gt001EX003}la4%nJZggdGZeeUMb#!TLb1!yja&&cJY-MhCE^v8`S8Z?GHW +2>qUvX1EL>_Fl8#c5k<_Lr1fG~NgE)DB_HqYdG0x;vStf;U +Nye4nCBq3wXq(A*2W7jjdqjC@trd3wbbkO(YW@L#rBhvzW;onqkIM}EZW1_8vU#AF3oc-wiI$Y$zQ&{ +diD0FWq$L=&F%7+{O0BDGQYmO`uXz3@+NQzGV&0}8Pg*?84;s>fJV6B5=;dlN`&; +y(Uc?1xINO-kw%q3Qb3MG`A`%EItSDQsAvvPK^)}HU(&=HN=x`n_K%S|?UN(``z#4RKJ4uwRu$=Rsr< +$?>rFQ}r6Hbi9{@Cb?~#57ZTeb6}oP%ItX&u|MwL(@EE?`&I%mGU$J_zAQ`0`%NfCY@+o +<+3balQcyvpIzO~*r^8a6X>>QJmlZZsNMmj(tc^$emnuVsP|+(c^SME?rG2jAIJPsjC%oXG +P)V4l}sq^7ut0^*I^cAZFmsnX|wPvKqw8dXwq-AhG&K3NZf}5^j12PY+Aj<_zrTuP0fsP1!*ok3f$uj +ukNIL6qY)VQo!Qr%AY-keVzOkOX=rqnZ-39y~vfOdi*RFJAPVW1`JGo<1Fy%zy9+sS<4pN7EaYBO7G( +VQ>f7N>(e!%#j5*@_dtXlS}ky31P;VRD*duB=D!=(W=C8ET@=c{YCBkCQIs~5qYVx#6!WXBEheub^PxDe?K6@v&FZMV9z>obT?pkV9JVaSkVdH^Hz=L*)dujKr +kIBM&p7G4)V~ITxYGyj^4vQ*`;?Z(8(QMM#ky$E=O;ApA7K-P)h>@6aWAK2mk|@q+Djlq69n!0049m0 +00~S003}la4%nJZggdGZeeUMb#!TLb1!#jWo2wGaCx0qZI9D95dPj@;R`yENLj=3u_so7yX6iY3kW!n +Zndi1#BB|U9of#7QuV*zj2$O&+GXKZh}|~!ygc*FGm|7q-nUJov?Z%n7FH-}$VzFlRr-sNYqAw~L$({ +vE3y(5H#A9-*-X^#N~P9oI5b;nRTEw_QPG+k!`7U1C$9X*@rj0M!*w|D)_wBNzljEYgh$U=`LAeRz&A +PR{+RiLjcDlNmdjFUFjstG7zJ&us7$zAFsY;{SS7ykg=BSfRY=RVWEJIK3*PvoyL_`* +`{8{mVD67r(!`di(6d%jd5y$y1V^=j3rVo6Qgc$mVIlg08uJ<-SW7&hKJ@$4b5;F7buKGIjqiAmKUbb +HvkgVyw={*#)s}Q}Ju~lm`%R<}(66P=L#?RC(`d`}~gERs$Gl2g4z1<^HCnF!l`Hky2=0SfzIau6l=zz{kD4 +NgU25M +Gr7FCquwFkR`)`dJG~nq;8EROHLknTDMCG+Ca(o4K)p*oFPoH$bFH16B}`P~-=ZJ2=V9#c>@ZGC}aW7*HawK` +pyeem{+J~$G)5S&v#GWW4pIF?KioAh|s*_yL*5$oFmDSzDF*aJg*FL#!AJd4z}^U`r0t*3Z#sNaLppm +khdbICQUKn%2Q-E_>!-+brW91qmO7#t{Ef~S0B2q(h3R$5W>;dH}{fo-BZgU+@9AGEgHB*wCvj%R)Fl +}EO+AC=-lwN>fLfysgbK(<&VbPBX~rN|-~?dQl5#F4-bSa$}(-k2fDjXBIC(T5cTMWFyyt8_fsSBxxn$DQ +nB@p8N*UI_5xEwizYoq?EnelnAWUG9hTkYuw&39%OZk*WL4{l{R5m1TVoV3FuHRx)~)ZXk@IP-r+eT4 +BPy5Q|mf;rwFxSzl`ut=50#y*Y#D^hs +xsMiiNYg(qhYQ%J1Q+(6HI!*NdO73KnOYv{qVzylu^Z2uPRCL+GFI)FSGdf6dtsaos(&$X}3lqqwU=J +#uY{9j{hM=dz?6t2M+Q>a({pdO@P=RG7JEvby_>Sfd>KoBsK*Q0g3vp6Jf)}vs*o}=iJ+Hc +RPz#P}g(Skl@MehSdC9J4Mn!DJLnt9LVEdsu_`d3j<`5<*z17^7!W6vF4*#{{v7<0|XQR000O81DB*+ +FRk9iF984mR00419RL6TaA|NaUukZ1WpZv|Y%g|Wb1z?CX>MtBUtcb8d390EP69y;zVA~s;UFZq(ZrK +i1Bn+8Vz@44w!p~Dbm?@6`1IBVqe7U|B;Rk_0ZcwR&IAa-N3YaECIw!B3z#!yz|_L3B&VKJhRonF1d< +F~H2ao}TMa-r1bdgEL$}2>LCfhzA(8nhgO44HLQB+<7#9;PI^WfePfC(7)TUk3<}-XVBc*I)FXWWv01 +*$6)rWBIw-Sz4{5v<7@6aWAK2mk|@q+EBa+h5EC005Q_000{R003} +la4%nJZggdGZeeUMc4KodVqtn=VR9~TdCgZ#kJ~m7zUx;I3WBw=wvxRHb&)h^&;mgMq-igPLC_Lq5ur +paN!hz;``TNlj-0FjEj)wF2_zh>2YgH0T^TsxsQ%XcxD{Tp@DrK1!sxm>)%A`6TMRg2<9QV|sj; +W|D*AeYA;HhLDU5^;o++eogfpslf}JI^IFkfRkJEB`~#B +~yyOPNK2`jnt=q!dI$U4M%v@+paUset_b!O!rIL`ml|lCS^V%Ta(vsUkWj;Ti699`InBi3O6J`2nR`4 +ew#_EV{ekM{FyMx6(>CI~nOs>c-+~{x(tJ6N{t>xUN1+DmbfWUB>13|g5&gz-~bCL;p(X;ZWos3VO0F +e&L2>X~2AeheugZiK(lT@O0LAg8F@rEg2mwAI2E;4Hv9M>3-ynG59IfXkf$97L6cQ +-jxPG<3Q{1tQrd8?V;a1tq`f#&h+lQvZ&!zHs~6b?=4N1*!PXRl!b}Emo;CZHwtzm~Cpwcdqro7x~9g +dEHMUqt5n>6w2n}!JWsSpWe4Eov<9H8%U;9Cxjo{D{-?=+q9FHFX8EiWf>86T!;>VH4;NZ7chvJX=)f +uqIfa*$-w|GVLc(G_ciAuXtiU@ZAfl$Iq%gAp*(@Bc9R)K=n<7Fb;IfaEBq$oTroLNy_=qp1h9v+Da7mb9AcC9amy<%BV1~hY7=%hV&=Na}szne +iwB*<)`TbnicYAdUaiJY5I81tLcR~;@Hw`)`Q|hoN#Qnx!ZpO2RJWGLs%*@%I_Q27Sd=C#+Qg>bSF7% +4ob-ZoG=XE$TNF11Uxiw72(a)_nk~tH~0>RBSaX^qjqS(ix0k%X?}!39xfjL{u2fN0Z>Z=1QY-O00;m +Bm!w>q|DvA4761UqN&o;D0001RX>c!JX>N37a&BR4FLq;dFK20VE^v9xT>o?1HnRWSe+7ZQqRTFc1kzY$#GCNI9Cm{O@mf0g&J~+3DnFPBU#J5?BC>{qosez>7RvvmjWMMV +X5rVDWmBzLj|b&!KHD+s|_Gdnsgbu)s+~y +x?KNr4*7?L^cTzg?eA?HZZz*b&~E5)bmZe@q;)mM4s}*7oS40p?RB@Kk(=@Td#Qm9LG9Eku{GfYR8^G%+GLRJ%6^N%73)s*`BZA0mAMJ{2 +EVU`womYAOI0fWy;S**^}MK+>emtvh2;%!#E%E~mNMYUf1!jri9V*5_9Nd5jrjdiNVQqLA~8qpGiA`4 +*tzlpF2@+>O?oNxdelhIGr8fH8?@D2`u5x|_dV6(=q`{p?|DAS=P`pvzk3^8p8a_CztAHWKCpHZCqgkRcit~yG|f-uF!qF9MU!PpP?pw6;{)UeiC*xPo$A7>3i!+pZI!{5Z&n_%O-Q4`|$km00`}2w&T2~Zx%yJDe{p;`H& +j8xA)J!_rBAOuSC9Wv|5#OBz>rO=-#}aOz)m~Q{DV}g&e{zV+jgKw#Q5!hnr}Lr5XF|O(_coiVqre52 +S(HnhsAku)jC{n@Xe9@)L5fu$yv#2*DaJe^K7yAD~F< +L_JeeT%<+v+$eu)4L;&etiQRQ#u5^1X=#!-PIYX(m^B^ApY4$86e?c#pTMCD?WvViDhvEKklX#le8qL(2ZW7I>$3-tVYY#c>69me|z!swd2)I@dG|H=N6+BZPl;w +4jA{xXK%Rg4YBq5?DEa|+moMyi_3R!F0P$BWaM+_p>9{86sParyg7OMQgs1wW8>@x)Q~q>BxXAyn?%$ ++Z(4K2zKths&dYKGPRjFb4ij^0zIq4MKEyJJ*Xy!C0i{g_H3~n1iFc()79;eKwB3L@04DXRK7N7`!@i +k@Ju`-#k;4c~0_&A)(25KHd7izcXzZ+(J_=fcA9{VScmgP{)se=7wcvu|B8Z~^a2-!vob;$owk01=NO +8d}<*2QS0`LXQ&jQpGpOM}|$5E@_{VEPuY%Msf88zx2Y_`l$(owku%#)#418c3Rq6vL?O-~w+!C=q?b +M(F;dS)C7<~PsC5%iIMLhhWif-lhpa5m3*8m|7k_T~3HCEpTq*l;xjFNnNFWG+HpsznrcrMO?I>EytLldEFk +v^Gwq;I?RfRT9W|r3O(jrx*9Y^E!bZBzDMu+GV9cyFOxaWLo2*0F+7P$1MJ}+}r7`_wo|PN-*z*vBHX +pw5Ja3P~z@5}Os&`rWjU)>xma0t?{LB82y#-`YFA*?K_5D)K%2s+saD=*o{g6-S8bPp-3n2VPgDN5}L +A^*6s6P?4_Wa)Ao*@6ma<`smNgM*aUV#0M5m%%07wb*2)0>UMDwmAv%`55_DVkLdkPk4THZ6uSaC_l1 +h%XtBq8M2+qBV|xXQagve_5oooT38beAILh1e6lq0i->KEs}-c5z7|r_{D!I#fF)+tb`^4eg^^xNyC6 +ml#(w6Juf1W=QVH80fEfkI5tZVvy6Yo|I_;Ks@A}kO^KlzZ1%7+l6&j%z}d$@$sjIB&fMdX_mz|oKjD +2eGve2$p19RBy#gPkGTyja!tn!}jXOp`fkfuJ4*Zsr6>wZm+8{=&612EUMA~Y~rgsNzr9(M>K%E*Emz +1gU@nm~zl~UHSR;&@(?z_GEg|Ht@a!T#NL@Nyf&A$ifh3Kh%t;D_0kpYv)_vx8ZjDT%($}DK5M70I`5 +9*70aUX-p!b$oyPfid_TKrV&RFom;jf*VbVYmSS8+`Mvmc)k66oxeY0s|a$&mi|0RYR~)kfsWP%KjIM +HRuS)r`8Vy)Lr=_NBQ+c8ib)%n3)qV(<~RxfN-N4|MA&c{@ZugXH)hoVhr*#h#e@QlEf)&o7(m`4K<> +;Cm5k}F~C^bJ&T(9lxa-XND6R99JWV}H0}z){6T2E=3qnOtdz+P2P9h*t0Wua9db3OGaFiO$^zsFXNr +cdskJ^$(sgdrwq8>E8U5qusj_0EzfqYcnFsMss)|O{1z645Efp0cAZ*19V}lSmkq?xI|69vX>)9b~fG4P +P!9o-UKMk4uW`Ng+pJ1lSiEWkrMrOfo+qPV(xrsSed@BgACCSb*&OZ>((5xen046hxbdXn|8kk(mK@b +e~Pz$mm6S2eQHM)?pTq`30wt*-2dH31)AFGKgySo6M=w#x2j>eFq!l{kxA +6iAJ_SopXU_c#q*HK$%@RuY2YIx`eB0<7H7+i@;B^M75+~GujhDpdQ*@_C~)ULHH_mtzX3oKULIkjpP +D(Q#HQ9m0}5gMD6Lc<0SNDwt~Z}nx_98<(<6Oa{GuTPEbV5I1?Y5qYsYq{>nvFyBdVn0zTpoJeJvQ|!TuRsezo^j2=s{F62+RRB;pRuIlK$D$ +mSXTZ5T=mWNKhFoK|S!@CVGZo!GK@Lsc}`Qc7^|?L#$0*LpfK4hbFB%%x>5toc(S1?S>*Je`gMDp +Cg)OJ6G7g=yYbb{VQdXyJXmdc1ElQNZ0mFz5Iqjqc&;2jAKRUk=O{rpx2O@#+kM+OUOW@ww6VTf;6VqJ&mRk1MG +rDhJS$W#vA^BxKWJZqAtE1oVzGl&6eqz#U?H)L19EYl3El!F2wZDp$2HFI8_U7x-VC~UW*gU2aN+opH +;+-ur<61{Dkj(Rn>6!LJZ!s`+x9F^c(ckf|k@+P9o6SmqS4P6o +;Zp;4Kp0&D&phO|xqpqKpuC)>O89-GZ*26dv9=}G*h8&JpR3mMd6HUV +j^jf1O6WOki*_~A1MYJ!4Qg=AZs#)-CtsI&S{1vCiiZq$UXKCAn;LrLs?(arbZr-?rHNl0h?O$Ve`X6B|eLd$ +(CvKcPa8B4?@MDg*0Qq$V+V1=x5m2ETBDIj(rymC8jzt~*81+0J$NH;HvyotRWs|_rc{6imFiNw5Ix( +-+-W@h%Z3Eh<47y@>kERfw30B09$D)zlgAw-QZU@+BKlL&2BDI;hms7OJjl-@i{A2{jeVZK5k)qKKr6 +zDAf!^(so$1HO|Q>YC>qQSSlD5<}>*ZZ`i7iJNo3SG4lYKd(?Ta_v0B>ytAH@t77+j^p*Z$nE)Dlbx( +V0-B3;AJNYB{8tmbV{q;vdDS(v5t`zj!Au4^Ze{|x>*}~Ghh+-Z=f@t54^Dk9<--4>w*6Ein=ZCI#0f +6pL@(F!QoEL+U?567bD;XJkbe+h$(cU)x8N)Y(=z!k}0`9(7YX`mU)avLgwo%Dicvhc(jCa6Y)X>^=q +x>6%LtI->f4en9KqhZ{ob_SB>|oM{V5K7bQ$PXF~DQ#DT!a=c6GoxZkn2yj+$p;w2&@m2LBt8sG^~#o +$N8SGAB(rO_a-o4bae+y@Y?jy~UP1kMbMoJD%bkXq`-jw~`m(c&nsfrK1cl9}({jl%G$~90PyCq6@kFbdPa6t3#m1@Dwy$X +B_Z%5O`K1GV!>4cdrdWQy{K=%87Njw{;33j5EAeQou+!R?SRIsoHw@~d0d-;ppfKSesx9!gvcaU8vix +Ok2OrH6{;z_iLKToUSj|7C5V!9*Nma@g<}8gx#ya9-GAa5@4NV&l(o>O3;dWDIwdyYVNYH~P1ZrP49> +WfebFmbkHW-v>=XUG+N4MnKTE_?eJ&wpw2^N)?==k+<0V~nbsfJVaLklCJE247qyvBRF-hG}%;!{t(T +UDKV#Htp(1!b6Ngg7-rG^tP^OaP);MJ +I-HR{m$)~6dV)m0Y~FeKjQDY4D^zk7s$FcO)^A~K5cTCh>5#+kEVLxA)Y{j1KwmireoOk5n0OZ$BP|)mn;6>Vb6L_2NL~W_i +H{$whZtTh=>9Jn0?OOg8s&zwr;OJ;)+H$YIxiMjz)rI-)`y>AE-c8>1*E?(i_=Z-LEe~RczDQJoWMc0 +A_DccNhM}=t;Txdb-VH#)E8yP@t+peuZQ7XspnITtN5)p0R~er@>tuh`jY`^*!al{Y>qmV7Q6;i&v( +w?oiqw6Ue>9F(dt`OBRbM&zF)m)0bI)f#lytO`f>mzX0P?CRp$Oy6b@p0doO-XI3Me8LahI4E<_n0o? +|B|c?e1wi@wKF*2<3b*N`_hDIZX^j5IgV9fnBDiTZ}+Tk{tO +#`;eVAjc=ifBnz@c>df5Jh;vgEV}?{qHFG}5deIV??w<>aJsXuZuYCtsEdM-fG^TWhii19x1~#Q8e>s +9kRX*S3QuvIn<*RP9O45_#$gE;GudDi-?6Br!6z_uuAMAq}oVX=<4c5ZLc9!;9%8PA +?b;|*%Mnt()tf0bZ6!2E_ILTUA;S+6`c+8+Azc3AqSzpy4 +OeGyty^{ARukq)Nad0-t4btBd(5nUA +?L($D5Paa$+4gaG?IDb7q6Xz9zW|RxtCoJ|FBQ*X;*cAq-)95{b>~0NPyW~#|rm8r8EY3RFP9|%>3z{Zb9BL0As +1Hsw1f?Chc8XAA@_Z@4mHy{MWrrMi))F*U#6b0K*k^xlN377C=0|j=X`S +X;Cm`-yN_`n0h_$L=I$u%-aP5przlQ>hf0ZtM8LOjD0Wq+BdxEJ(S4dc1@G2T)4`1QY-O0 +0;mBm!w=PK51Vp1^@uZ6#xJp0001RX>c!JX>N37a&BR4FLq;dFKuOVV|8+AVQemNdCgeekK;5DfA3#m +1)WHs8y$$JilT!R2qd^W-JN*ZTUl;0X?!Ghu$}fQ;D2XqC#l`0+vQ7K9(HSIzUMdNaVjNSLTS~TUIC? +qx1CgmFd?L2hD)Iri(#*jqT<_*DGh4eYvgvz#dcguq^_*Qj(0ib!hjO2$>Dtgof9_7|Av*fvTd0tm*f +Yb4Qm>w?OUa!niJ6*-srsLx)?=#&&v|T8+dP)q~yA5*nxJ;)R(z+zv+}LKu>10>=&SgH{>#3ubPR&YM +@3^+?!+A6*}L6(&!3?%P855jOl{l^9pt^d?c1`{j;aN^|XGk;-aLZ9yItJ6ox7(4YdlXf=;@nr$&v-M +YdSjOn@TmF(vsH%#Us_rBtvMlZ#Y~qG9O%PoRokan_`<0olsQwB#r$skez+mt2io`MBrI7y6=}FOceuD;O-dACIS6uBB{w%nyZ#OT{E^%*CXp4GqNW1&M<+Ej6(SL|aiW(5A+m~4YSl}h{Z) +trf{58j&COv&5J}!4YuR&*YG~As4nW7~2Eua0$?zi0CUOsmoQp~xjdT&b#cUx$NWCRb^b<{t#Q#Bv?S +sb08-e!tMOb^Obw4}4KU%}9qnG5%HF>&(K^4W|y% +l#0~=NEWTqo;#dr-nx`5L}e7>9*zU-<8bR)hAB8Ly<>S_JF|1u2}k+z!TuO +ddRXkr^UWpTb*GhC+zDzNARBje_9<2VA?t@gb2}d1u+rCg@Lhty1Y~!C|EH%=H%`^P=bxhpI!Ju>f8b +~e`qDK8G9{XHDdSGYHx(;lPZhlPy0Y)8S7Oy#1z{)i6CYv +MDVA8~Ts4b!}U94}gc5DvtU4e})X2V?8M4}m?WaQi@8DV;mN^SFwZ3O>+|I`!HDlQL-MNsAq0?ni(z>w9qnmx`K +_REp-XexrIgZ}p?SLA%e%Z}!BzH&`z&~q)qJ8tLHN5wZulIiy=ugTO9^oJYg0V!%GwtyXzjN* +yt+YMl!!dAqDtq-u>XI3(H9R=cO+VzxT+d~HJk9q?wj!g!}+46r#>5zp}N3Ny<=P^Wl$nsCpa?Aq9W@ +dQBy%bV2UHeRsFP`2YnPLTAvnCleyk{j8yv0;n*YFy8B~R3f{M&gFvV;#MQO=VG5`|T2o#Te`l48Qx( +3yhki5+*`Px8BK`z~P{DVr!`UpISpz!YfR<5kb*Yq;KOQcCf$y+Y$D9L9Sv)&=7Vl<-21a~IA4wuxMZ +&|u(IB-wUjkN%ej)FjAobtdkvjAq#{3_Gv{V>fWG@>5Y(mu+`WWFP~BiXGt+b7<2??hYSQ#`CC?cNK` +13IR6*vU6ZXV0yTZ+v#bXgSloKolZ8LwDHi^kpt=7RWF*PClnu9vNQZX_QS@kw5wfdZ0=sfUqBO5p?k +XT>>QuZ2^-}^QN+#DU^y>w|MDoWt|dK6{Q1N^+c3uGN-uIG5B4MbNI|_L1-83&q8QhZoRi^PPAi7Peo +1j&np1an3pjrBn;r4pt@%6{Nij|QC1Cq+xv$PA+SX$)N>KJg#`v`@ITx^jg7q3K6>?ZXY=@S!O*8M1QY-O00;mB +m!w=A(m42T4gdfPE&u=@0001RX>c!JX>N37a&BR4FLq;dFLQNbc4cyNX>V>WaCzlgZExJh5&nL^VoSj +g8Q;+-S+V7V<({NGhWkI~SSI)OcK_d(pg0b6N2$peKkk&K_3xiG$yb`B9>Z27$%KwTltGLClKeK96p;SyY!Q +lMF>H5X(s$b44!%Z#oxWMAtm7AONvTr2eQ_-im5dB$^koVscZ|SrYLiiEyM!{#_|n>5U&}u((p$2n{cot +jd7RUa-re$h35tclc?}K9sdE+emWLxVI0?BD&;KsI%d)W*-kN%`BDG1%50CgfF~V=@BFQn*di*s3TQJe!dsC4-;9*g0Fn`SWIrQKAP7o+TEng3p2sIjh7 +zy9(Nqp>g6+tk=r;9I4I5XKX%cMu`j3-jwVI!XYZ=2zTK%&#rvSM$k&9!qSRC5ur6WL{C~o>$~%eRmz +LS5}RHu2QMjq?3Fvlv$SrR^nAx>6uZPSq2+xe}(Yk +vXa+nwbA_lCZnm?j#GkODQ+a$BNW7{Qs6x0Rk~wo)gj@y0bJ6zKU-Y~{Wt;dZl>KA@aS-KCXV2MDn0u +REfqQRTNO8^CjP1)YL<#5aN|r|sQ1ky`=>gZDQlmX%kg;gVS}@TKa^#f2#PMnwN#2BW*CKoa;r>&RRy +~g&>ajRp&z8QeadNaLv1#zrO-YOf$)>2Ul(P<3Z29mp%cLqQomWuetQ2d9OVrrp+zRs^eEeO5B>n$i! +azS=J{bo%-6&^BgxHNMA|hP#G9o!XXxENHG_&k;R%G0}-A!3fC +sjIz;+lxXVUB$quuV}R?OIXoDex7rol3)d3b&*-lT5S%7mps{?F{+bbs-g&z}uA6Uq*B~@FZ7L1LiRh +xK_}M0iNE=>%{?z8yem`^bmL45Mxw4!peO(K|$OGBUme2bkt{!ZQ%fS^HOQu!OShUm{W2^b>U9vMlX` +vZrP2M&1&}Wj4(;#0N%7&(xKBZ`58KPp4ZB?9N1~Q?6Vli;SQ5{x{L+o8+a +Z!NnONMQQl4|MQ&79DL}ipVl_f{?$9Fwc2j@@R5i3@l_E-Tw&z)zFjP3dfSgK7tw$GSx{jKaXG3sxy# +WN%FlJD2-GzamrRrXyYEt{&f(L^&TC)A*-L5(7ZZZZk{vr-ZV){%}IO~YeQpqU~C%eIUrdwFoDRslK^emY6Ma8ii5Eg>II(o?Uo{wNCAWznsS +@HIAcfQQkPef*EUCfvGk7S1NFaSjxCJs*zM>4Rp>Tws0!`@VqgUR^G#j|Cg- +I`*%Wt-v|PACc33-(L_I-0mdJ_kML5JnW^J^$uroAprvfLlx!)@%EOQt&d~_(Wv1c2nzyW}*G?XP(tU +S+u|MzU4`F%QQx;5R!=Gg8hU3{Gt3;uQJpsQpCe`S=2lKC}=b*c7;q;fCK8fQ*+y9q1NA)^yl=cLKT? +dlv=o}$@{2{vZ#Um+A(rL{X`A{DZ`J@yA&}8gkhhkx**{FiI! +dpqFvU20BcU^7CA>1Uu{YlCLPLka7lvxxzHsG01dY0m&j)X?i7fvfi#>pD%%#x7-J0=wJCp)n6^8emn +>F-YgzuAp%GF@ORUIYGCQaVs04btRV?b_#PqosfZSfe?O$tw$Tk!Z#%yv6G-F$_psBMr92RrOG&Lh4Y0jwY_9eNqTUfgkFDN2V%^}hK~G29@T5(wys4S +c7vNvf5V(NbS+zkNE7X+1pD2PPwy6e|8Lt5GPuW?_00JgEKr-?gALTh0`;_`G>Kq#+yM6k_GelU{Q_v +D35yE;Wp>SPB^_A3)rrsq5@{S#osC=S8zz;hO{o<>@{NCtpF@xTWIujC%d1PoMk%=azOC=uIdC5U_3zx6!z2y-~#$I*bt(kqZU@V!8+m_IA}QHX*W+a=giQz+T_ +*Ey-nlv}-1yHEp;&3XkUDW9FAfrzgkHj!%QmR7R~w8w5vpF~ +eiW_*V&X9+K_)BNaZI1lId?fNu4I-y;^J~=*mJimL_?|I3NPifcFDVv`zPM$4}9y`14;u$b-eKT9<^} +SLahx6HamR_9$hWO^;ksiNq_gk|&$^3Y6a+PDhgXAYpe(DY6#p(+;lgau)Q{jSAep)6Z-fG*1_V=zCPyVrfc{zy+sv7S%2-fslMm +#W3HSd9=WmFQEgk2QXGUOw{tD{8yDkDrUHwIn|Fzanz-j_X8~nACEeW|?iP|NjI`x|QhXITw!h?IuZ8TElCAfQw$@wEv8AWJw^B%pY#pT3m}CE{epN;qSGw!0N-xKxKWqeaXDLzvNBJv_>HJj1prBhpw +`X*2)}T;9o6xMGUTZ_NDQrfe@UVLwJ7e~%i{3Cr<9O2>tam8##i;YC7z#HtEHLW+fcG^pd0t6v5>ov& +{N8ErWJzOKw{PmRSzhEb7Yu8j$vql-XE5!!6MyE&?%_$_51a|lk&;iT{#Vxk{c4?E-jc!aI;%#lnzCY +#FVCsBsLbnGc0XXdDgWDMv#HCX>X5WN_Vu9nOjiyaWa6}m8=QUk@VAhiE6pf##0z9^>ac>`zPJ*So&W +s9w0ps!{G$C%%MYe%!M2u_KHJ$0#u!eFQ`^HKMCMC3M|4%HBByF@n0^Frx*1bloc>y;r5hay2Z +1@p6KY{p>P~jJul62N4$XzKjJysR5w1h_{=3)j9=(Ez{&>!wPU)&e8xTqaYAVy6g}TZ)o*$nO#z}Wlw +RYVKNNw;`Yr}j`(R>6zSJ#@9ofndS1C|t}P)j-*rgByCl|aCyi%pWwN@5Zzh&X9L+o}(})%jIkT<1a9 +Nga;0!DjrUDLWm9RAjaTEqcTIINLj*n5nAAC>Pg$Clq%|cy%f4d}T;Y0UKNw?)P>i)g?6~Zx`fqisDF +pP0P(kit1anhFDk?_J!j?<}QfxeYaQTy`r#3;gi~P599+CnjXmBoelLd`V9}eP4|WS<)lvvaFS#P_cn +5}=Vxr*J&aYx^~Ees19mSe@4ilIGrOG>ZxemTde-@5vL}1@6aWAK2mk|@q+E>C#`i)P002i=001KZ003}la4%nJZggdGZeeUMc4Kod +c4cyNX>V?0Z*FvQZ)`4bdCfd+bKJJk-}Ng{dff2p6IJJVW}X>MF14%Jjb{=!6Fcb#RYUPeoQ^e*xDce +|i|haX>@MC(@MPtsQ_a}N7htj2UF;hcOp@g5qOBS(SCz2%*(MaxRj_MK=JOb+|K==vl{PEI +zR*s(m{4E@mYJZJR|U$LTXMPKyLO`e?SXN|bIsoNWKE2O!S+o7);dv~xehOTMqb+#`$$<;`uXc}G;+^ +kraX1G^9?}~N9m+Gn)-I9GMW-hV^S(mZdA9SAq{d_MHsSM5eXyMEX={L)ClrR=+_B@1p5Y{fT75u +jFzK+YMwSg_MC*;Fa2^OT9a=8SV$Z +9Ec}tuQ8T-=!!&X4F+c9(LO$sl7^k>O}TJxKm+#d=0__rC%sR4zPCa1`-T=xPxK*LS)!A$w%vkz|EkB +cbfH$HWMd=7%RlKd~nW?~m#Y^bp-)^+DZ1KVPz-u@;a`4a=4EP%rFAoe+JFnj$CM@Ky;-BTCYKR +$%m7y0?O$ +6&(2u|%k&wm3NDi`~oiYm9UD37BI1Szr(J#c%R75wT`WPCi9J>(MW69FKs{w0tu97J@Sl^(MY>%4DMY +5bU3pg3RUIcfYldTi8W(_waumY)+TH#u<2%{$;^aBG1WE+1iQ@sTV=JJFbERbjb +M#<)XgKZgW6{(z9Z+-RAggts=c(k)X32~h@$d&<6)gB7vn`>GBNBE)Td6cG4FAk}g()ocpLx4_3+8xX +(YjRzUWR(*MGM+o4zSA6Z$^u7D)+psH+6{yttR&wq*O1gC9q$B>{&|!9Ta=idnVK%5!1xL#^!{~IS!; +e^9$veqdKNnna91`bLU9twGqL{^#I?nE68`k0UB@%u^T;gXqma6gb0D}%r8Tnu1+i(Q=>f|&vWz8Dxp +)J0+)-S0ZULQTY?xV{;j*BEw|1+7y|MlrbWq*q+`S9+;<3R) +?V=$Wj+$INo^I>3aBA&RHZ#UMBH3E&Z3|iSeV0O4SRF{aWD(*xa-EY46||V4DQtd>Sp)!)xeSX +BLZR;ujctih6se3QaYUrx-KFV@M2G8i5yQ6P>j7{zi&sbYn!e`_U&^XDdJgS~qG76MO2I;)Lf?(5%pReZgX~bKriKqfWI|!&DUMx{i1D9zmrAuG`UUy;vZk1ZtU=L}{Gj2ckkr}Uo=n3HM8B;Igy +QxAQ$$AIouW1?!+Sd=omC5CD-59sh2$&0KRFC;3M#iSjY>Unw}3+U_=gI+ZU=ruoW9~98N0gWic$~-q +S{8$(jw)8Cm%~CWIkA*LYEe&t8jKF|!f~)s_=HAiUSVDpdDG?N{#C!uJgCQ!vY +63VBh!}{iQ1rV;!4G_J!OS#mTyw5^O#vF``yf3IB%(q;s#7b8W;O`ds(8Pk?x;?a2wu7CJl6Huc=y02 +hV09!w8!oEZCngerXWh<&3&dcBDUCeApg%8#$@Q0&6~FiLskMOD$}1i00?O5-c1My37j&ctZX +W=3T0ww$yYsuJX7Y+t}=Ezp55HqamFPLI9{j|9XIQPQKXM3QICC|0>igb>U>mHF&euL +Y@G9j>$m_6nUx_}b*lE8-1&{$caqW47P;VegPDnvDM2CsX0+m-(8B9n@2$~|D77P6hH!09o{hE(FNZA +4MI?7an|lNZe)^d>zY)N?Fna~KcVhO^z?65`4bp>Vj#VpLnA(_Q7*B) +drhkjNV=gw$^4Ct2XCU|43aszpvC{~F-UQ`{rp+T+b5|T>P|>h7BVjyK39jZT$S5}8#wd8`WR=?j0~arnP*W>5m<%yQT{6%w`+D!`Jk&U?Qj}$(lZI#`j@kfK#xbw%Cs|jgY?acF` +BKZ-&6?@9&L<_Rt)K1fyqE;?uU!CMk5Asxnjxmc&X~k7L+vgxG`PGvW@mF)Pb3^({=pgAPgy?L>pd&h +QZz%aJSfS?pHtaoyT8l#F7ySv^go|tbR9IUI`pnmsw^tc|M^caVHNlEu0Jfbg%G@`8*fXWYK-U=Y2it +zgAaXY(?f27#KLK&)c-!`MCG`1D(o5nQYf(Mt*H`np|O)iFNUy}T5gw~s9()!@$V>MZyZVOcKq=DH{h +hJv0>#>KEWz`+znB$w4dX0V&3L2Oa(+%Rjz@A9g%x8MTCt70Cih5BV=?NU-k_xqL}N5To*`;f|jw?L& +aCrEodaO-}7cz+g*!B2Xq3SbajO^70Q*xDSBGZP8F+I&^m#ozO69~x~&TWdwL4QQjsi@^z;;i#XHeeX +0dwEWY586q!eT)hMTP^^#c3%64OZ(jG1k5u8ZjYR`-*l5IK~%6|aX_P8h>>gG9fzIGBKf3h_p&3=~Xi +#341aSTZw##o~CZW_l{2#Q*PG73k8DS7Me0t%e|G^#tD+c~i*vKzY})Jdt*I<+)!@)N!-ekW%-JQq8z +;52Blr-=!rSRj9I`2HqW(Y||AtvsIBn5eQiBQu!$mY{{N3E}y#XE5ilkUrq@g=iraEw`r?j`ex(S_aY2;o ++ZecY5rX?Ty;{_NE*9mgxxp;sgfbLkz6D3cT!qCWwT=STU}3TcuhfJ%lK~JADlCiD%bAWBEmRg-rcqa +rBesKD6cZWqilwX`;LtUH3tb)U8lJCjHxPit)Qmu$2)A3;?kkD<)yBzEs+Y=($Fe$r$-lJk}M{Efm`l +YT8>3v)?KCO%P5HRK%p6Baqd;Q>z5BMdhz_xMEQv}SW8US0t8a5!5wPT<68Z4l+iaT+j!ny808T6G`C +l?@8NZSu!#bS>UZK>M<(DYY*bq`u+zx~)j2K9%TCQ}%u-Y36SY*R4OLf9%&h9yK&|Otd4ghEAK`dJiH +sr6));wXx}y#0sJp}2^Zxa8pMOdacAKmXaO}s7XDfsJEz1eUG>`Q(;*9USR5U +F^|@D!u;D$HMe@7UTcW6AY=UN@ZUPxO_f*Cb>yp;!{~gX@9=(gF=F|HxaeUu+kwx-r2A0N$ri6y79?& +5MJhgx}HE>i-$5}OhS9Ug5QZvQouJ#(Vo&q&;YJ1_wO936Ci3!)%BaOXe4Zr2hFV41Mlw58{jB_!#Wu +R}E&nL&aCKK@(Y8!-%1@-gi<)?7>4PofERDgHa*NE8lHErw(1cv7vu3<@BUms88d?KkINW@`Z6`<i +;4IHVTe9s(R2{O9!}{19x4kWs@_si`yAKT9vc67ibj=aEpwIH%(8#vaQY|SDu2Bb71tZ9<-6jBy8;) +8LBSfMnzf*!)eRmQ&%wkMyL+gI!>d5XC0`wK*%+92sxC+?P>!&+X|ZS|szE$d?T+2pm{)3?Ey@e{UL( +4QCTXb-$)-q;(Y_hMb9NV7EGOf7j9%HRXu)Hke{>N#VC})myz2BIkwKW$(ywlFJ8Kcljo#6_ewHxa{v +!1nhtkwAaHV`mG{4_%9TJ-KarAhU<%q3+$-pCPxF6^EfBpeyH +QRVQd*a#uTTGt#=K>;nQVEC8ON_LqMDhrQ$+I|}h*o4xaP0uO9!o4JoNfE5Q^miKg!An@A&obhlE{MB +rur8z82sanYy9ty4o>*#o+)qcrQKKlX-U +H)Ukm8Ky-?zwMW{*Q^jpz5q|hTqhu_c7&TfFA!y0wq*`BJG&UT0W;jET&;PUM0)BpS5S<>D^(2$lmCe +~J;tANrg)ICN@%29$`v=mf1%Z#S?vGlF)L>_186o`(W!jOAdtC(>aeN7_WB>$k$POwV+g|QEc1ebrl` +j{*=JuaVKh4$8gTd|}_MrQVaM;_`vJ$-tl*IjZ{;*zg;!?n5uJf_QMWRmHt6%ix&d)fT)bk?Kk;6S-5 +pK)L6h~PJ#_Fti~KGXh~L}F(8OFP17zVwln471F7vNP>|C%QahUkP0JbTGd*N6<8(K*(X)WV1w+ahZr +4)iy99j2s_Gu^~ +nR$S1kLF@^imz<)t#;T@;fIxlj9p4h3h$n=Z}F;GW}?i2`2Wkrmf=iQO|RO`9V*XQ25dw?9F($k`kQ2 +cw0ext|w-O6;KqN$UjV;Y4nNA|-rJVUdoZ-$Onzg>zVD1rSIlo;h6TvCFHRKt=~Gs15-i*9Jmmy5!Z7 +k9I({1b)$o_;Ke0Fkn9L%LX2tyDC=mW#5Z7S1P#_6*wdMQ&^V?&5Ar0ur%ZflADrX +nZ9}H{6X5h5br!t^4y*qxP%3MH8;NbtP}Jok0PqZu!jfqXTVei#PjwrJAnRH*ZJflU2`44h~%3Bq@c= +)2~n~tn&+Zz4z`6VNu(zCh~d!c4;En!iz0x1X{vH$4dQfwc6S|2m3OS@=(yGBY=y4IsVZp-A;+X;YMT +nLs2)+8)Vw|h2Eu*|(?w22u>~TSGF>CGri6IO{seD>Ooh+S_~#FT7OU9jz0v^a292aoW5qk}8+s6z=-O!dWRDSkTkeh(9jD-H+~TKa*muw0ew|FldZ +xrxhgL$p9*JQjsOP3hF!{bnS?2f0?T}(nS0Y55-Dps%>US`26DH#Ty`@YYm36t$8(SPU?`84;!O+CmHR)GiLb>7x) +KmRm0}h4gX0ooBvm5A0%JFgSmPDA-0~e5iCx_;)ThR%w%xKcR=>7M-f)g($+AZIq`G9vvlsC}O#%f!0 +J%Txi>wxBygj3jC-rCGn5zwPe4lT?YyO#^#lSoQ2OjMDsiVWGl8bCCcJtoVT%w%ZMJhLY_|d<@+Z&Dj90*pjaB=I9+kL4oEvcyzcA=CBgPyhP_R-(dBcIi;X-2O{I>@k6}xIfMa&(Ht +*!+;6Gp|9iYPbuhHc%;dn20^_ +AKxq}E2S32+2w`VPk9mjJWwcIJz*bgP)hcHL=(^&2dij_VG1AbLID|`zo5a$_IFncPqKy;M)!2)JeXd +Sp}_yWbP><3!S)=JEVugLK^MCM{y{c)D@7ytYtl>ZMi)OL-@XOcR#lo~{sSV9yT-P1y|GwVx;8rKWTAashsOwU)DZe}i*E+JxU_+v2Zb? +3YFdTAc_zT6uhk9w+1>@^>*Z?oh-qE%Ujrn4>W_~?hdxw(FK_3`VK+4|Z=3b=*L2iHd*+Glon$fA8~p +x845ZfjSn=D3t-etD-mF7^Lb!_%-{|DKN9u`LIjE!u?#T)ln&;cC@K7=lO9fu73uy^CFFD@I9YhjM=^5rTYM)?)>+>-7*q9g|V9;WBObu5B +ai2=ndjgL`(=dYyfGb`FhPJIID_XnuF+TR+_0t-1rxDZYpyZ0(9!82{|!0F~6-M93a~V)X89C4Q`22X +U?~c}fc7Exfm0M>mX}Tnu`^L$2N~i*g?V-2{c;d&@94zUgY$KvNNz(PC>q9I(%{&Q-z(aJ_rrGX4S?g +*~2rSec*0BR=;_fXem*&yZ-K(tlq41rg_9_ML4hsdrs%ODB-h;C-~Qm=qCLM~`m+9tDV`-i=YB|LBKp +9~xy31R1cn>BG3&4+KFm96H(!hqi7@ghCcYP_v_iYzO)1Ti%ZgNCS_1=V~mycg5cC_8^CUjA|9)tbvc +s#ts7%8eANN=@=j-eU5d%O`)?HcOZi&7mKrwrYXnT_V8zP<=9hR1l9P#KadVxJYUKI8#fHDzm#*f&JG +BmD6R#oMDrN>dw^y#Iuyn_i+>}3z`cEpBX)@C094-U1T3H&-V(Z2UL9UM+JiZJ@D}KyT>!efln;QRb2 +%K|psgK9Hywa8-yq*C{;Rh;PxCAmz`FT$@08Q@P?*2PwF31_=06Y#6FCiB@3(TuBM`w`z$G?HhER~?e +a?#*AKO=hNt(j`*a>(ctjWiNCsY#clIW*(DlTbPlKkUblLRF%fGNRc%rE`uL^B9TEJi7|>*`EkOS4yB +$U6SvF#m2A8k~!4MTHm)eh4GcL3xNag7|=YU-V`k% +!FN9>^npZ$a?Y2XP11{azb`)-bi$e_no%NhPOpw$}G@2gcsybMnjxcbe<%42Z-@dwPaX2s;S|nx;*Wh1 +BU@RT*}|`eHkj6!_O=q4nGGIGH(HS2-h9{g4A+nm!Us3RFD)aN)}(o2oqwOTlC4oNxqbliA&WH|h%C_9fh +BBpX%JJt->Bz4I@A|)QcxeqMKcztyRlBn+o08_rK&Iz=yi7XXN5~7VK*GC6PcH?iq2|!`ktw%LrcC~F +wToQa=Iy0qqF}uZ$HEpFpp$FxLC@s6n4ll@(2ASwumbkb~^#*+zYA_s4Ct;U)a$@HlxLxUXA(663%%+ +0vL-5t}BL#RuGBwgbYb8DSc%+XoC9GMt(mcO16NiyX75!dZzn>KpD|0QyLJ1E|A}@~RfF#Yw*8F^X`} +r%eHkE43zz5%neVC +9~+1w2nKn8WVD6K|uGc*JBUr+WbI-rTR!*1~CVzqO?({d@KX5=&HQJ7u83uGEhbHQLY;c09S|{y8EF}$oo8rRK&^%10hGXvwDZ=2Ish=B$-5aurQF~tk?ut4I4Xa +`eyw|Sy_kJQ9`mz=*Z&s65J87shiw{j@07D^R_+L}E_AG8OygjWN~FvZ1ux7S@_IrKlt64=fP~0hux% +?vjg+9eQHdi#Sc?oPVAU)eb}enCVXjfz9a2g`ELIXiNTJf^#Y0?yl=qofgvH$x?33y{7<;yVHIWMbse +<5XDh#KHkdw`y8Wipmx%GcCXA(HoSW3KB<3yI{N`xj3Z_%H!OqgHU<~ZpP6n5tl4@EG0z&M8O@W?V$;%hoYyj(dE;^-tPq3u2YTx6U`7}Q~d^6UomlhBj +z^f|;ElKW|cv#@eEkk&IS_zz+O)tyZc-yW_CJ_05voV`v;ftI2KA1(XLYyzrqOhg1w5_3HY7uT5MQTD +J+H_<4#i4QeV|PEn8Aa;f&Of|Jr4F(+}C+J`JQjbnPwY19PLwxvSqc+WkYAx!`%f!$uO*w4rn1X8CiLYncC+S;;*94XipLj_u_(GFAn1x?&jhs8PfL8CD$|4WPAFmDY`jEkj`g;5rw +R``sNYbPiV1RN}>t;{1(+ji<4 +mHunI7gu!V+gU&gRBvxr8F>z&(K0*?0o_%Dl#D>}qNIgx3GD~Jfy*+|xy@pTqOHxuS14#XA6jY(_EMo +Z`@<<=*f2G`6?eKdtHE{lbji*GJ3yF=$!q2FDCE +dGw*n+@H5THi^!R~;#Ur2-4lur0nn{>h*dJkK9se=(_d0u~&x4RfNjLrS-Nen5Y&T--gsioQ7GRaOC_aV>3x)7S&Uf?h&1oluyz +=wc&~KZpB(nlf$>$^_-_l4~i5e9(wbpU_k+HdomYs))HM@;GeYRf?&M3i1*;cBT*Fv@?;f+7PIVAB3l +B0r6p}VI;F0h)n5?RvJfqMFauA|eeww{l4Ez$?~F*Te1o7>Sn;wl<^WQ;*0w?}<|c5|_gP*0EwBn+Z) +LhLT^#2K-fYIZG{9ORL^-Gyu?aD_;y6tG;j)mjAt8-9V(^V)p3d2sf)1vvoo%JpN_nTWnnzs*0K5HSY +kiH>7N$WA3kxh`iNv+rkjs9V*~688UYRenosMmF>cupYY&Z2vGPF&e2DkwDB_RT4Ve!q;5%DFRg(`a- +;C2C3$f|galg5|AQfZbUD}zRxYYQzR-zY*);Kq~Yh%~yNEIPj($xRHG9Sa^QX +C5?%?M)}SUx)?DZVl{E;}Hn9qDwBD@QgaJC1+gwur@5#$@sgNWh^x`3s%Gf#-}1@il>fVYMVjr$?90m +-h&rnGvhmp@L)BL4yywrue)4<~0;b8)Z*FFnw9Zui7d(XNG#2rDl)oo~)R>*|8&Gt&K85i`j8g`?%L3 +$>%R5t@kdM*~Ofk-lC6Sj~Uvdo%;MH#5|y+ksFoeciRYkAu5h-%Gs>SN5du(>%+6>s9gJ8mX_1SRp%P +c{PT#b$f9S>$!x&o736%i!Nr-Rf^b!sC9op8#$Uv-V_o8MJH811VA +TK40V;z#o$EQ&wZ|FxNpUH|VG_Nvix(BJz@|cu5a +(Tu+AnP=mztY1gsaJ&$~CjAJ9XI~Q*Mpq%#43@AaSoj%sRzxvxRAK%|xz2^)a`b#^h +=d9Pa{pb>t{nD}YN`r5mC#rz!k6&-!-rQV$fdGkqpQchW8(6P7r?~L#Hb_Hr%oelIMtP#BB5aRO9;xd +|f2$y?ot`LYrV8LH)6CJ!JLl=6m3l1=y-0(+{<6p{FUvGe$GZ^KbP6yW(NBDzM+j4$+pzfDkt{xjAq}A985addHBmWB)y3lDC +;sh%iQ-n~e?f|@R@3u&$DxS2ugK4dFW(uazjQN`zbgI@P)h>@6aWAK2mk|@q+9}$5PE3_001i!000*N +003}la4%nWWo~3|axY(BX>MtBUtcb8d97GYkJ~m7z3W#H&Y^bdXp;tQfuK1w*bN#W=%F9TAqcdzG?JL +5M3to0>jwGneM3sNHnxLkQ3HuB&IgBY-po+DSS*rGb!m1>ZDFiXPL%kHPpYj%K^=Zmn=5j{lmg1a8_` +*Uju$Oa!D?|iiQ2-n!kLDA%_6$%on38uU5E{d+yn(ng-}h?d%4jhB-{=vrq +w&>C4E;&4<&?iOV%lviPD-z^qupTWRoTf94{r6nzkk1cdvz&Zir0v +T_;{~&2)C5I_G_Vyxk0{Sc!jc*FB_4xmvJ6aXs2(q5I90g-5pM;!v3fl??h$!Q3A-C_eTZ>SB`1247r +oqKU{Q7K>dn>07g1*9$N*^=`AURe64C+FQo*K2+8!;e4xoTBo}{kF>(As=}4A`$qEl8n~?)8f<9&*`U +UpBE``Zlnh;EXlI9nAj%4*4tfl!k=s?*DRZCvJOQH{w`Nc*?jzk7NuW4T?J#h%c=9?O|ZVQ*4Ts7N8% +m24p{QBcc^kCsP$+u$cWjFTr5#L=pO;~PCAENSrq7-5@eq^ssMDz3vlg>LWfjdG$hfQd@a4Wz8?HdS| +7>>6hsTVzMgpE4Uxgn_Y7*UIM^QaQ}L&2b5t9Bha!sNP(xfV2VZ@M%yKMT2xF}s*cI*EI?{x(VIO?JS +jGoO0U$mOmv}`eQP8jIwX`En!5k4%%MpgT@L1-)2bjCZ6Hh492A!9@I~T0wdsC^a~z3-ws@cl_pKqi_xDKs0j!=15A6J~H{M7 +GuGSu$cM0TVViCfYVmccc%rFmYYKG=LxQo>}Ai4)6841Tv?_V&(xX-2h-+r)sM3Y(Ww_S_HW8QJGT8Z!X +w#k=K$Fd*ry_d!5xJ&P~?&Ttvc})P#TZ0Y06cRd5sgBn74tGx~Yj86=)<6zGo|Eg=94&V;zmd2}ROcn +>a2@=LhU+LtxX?RRx~VcWdccy?3F$x#4D=I1YbuzY5bPlOh}%P$-0D7nG4fXCv;mZZSjE324D&uyZE3_WV)-1G=x3| +Lt^MG|n?@gBQoO}`jl(_hIH1Fz{0~q|0|XQR000O81DB*+fUUJY(EtDdJOKaz761SMaA|NaUv_0~WN& +gWc4cm4Z*nelcyu+8O>)B^42Accq8Et9{3M+$Smh)X6PpHGM9A&r_7!BxicflaJah|jO*h<`uy{X#cH +q>U8<+gm*}*iB(0dJ6p{*@7#79RBM)iAG^1gU)E}cu@JJL31YTi3IgI4ub3BOb1(~9_Lebk5(rRR|v3 +mdRjbRTkJBF^_LwW<4oIgfIl_u##V-l~I&1hjqf0#;FutGK#h+xzvkY-xX6>#M|~)Uf=d@vHv2RxR;S +8L^1ya{?=qj9bYgjr0ece*eQV9TJt1(pZyhM*RU$O9KQH0000800Wn#T*ll$U1b3P04@Rm03-ka0B~t +=FJE?LZe(wAFJob2Xk}w>Zgg^QY%fenLq$$gMJ{xBbY+o2Ps1<_h41+lPdkA$y3r$?${3ZEmmIA* +QeS?ZFIq?G-8+%Y5&xkQ$q?C(7E`kjzdvG0VQxOJ^`_q#1h(x`e2iRTIqSc~yQ +Z>I-&`~MK+sEi`X0u@!5`CgftZ!%Cw<^q5`C?g=%PS#O>e+M@0zAFg#g!8UQwo>a{tdfxT%Pe4CZ;`FybBGLwvtVCW;aF>;NIaROu_Hq5Z#cQ_NWW_dLmRN7FSQq# +CHeVM~Js>OI@RS$#Q;@_XOX$=2kzD|JjE?F=l|+A*H})GQII6gji+0+yy>1Du{UC3|2pstXhw*qp&}! +B3fuoM6`k$RdeF0EQ0|XQR000O81DB*+ElYV6hXDWpGy?ztBme*aaA|NaUv_0~WN&gWV_{=xWn*t{ba +HQOFJE72ZfSI1UoLQYg;G&#<1h?<_pcD{!&+F)HrPwy;6}HxL3bQ%4}&p`FHsY(j%{pZz5V-Bnq(_nV +0nn;@00XNmS*ty`}%o#YaOmb{7AN{=?VYR3NFshFX1NH0yZY);KfYLdgqNT&}UrUm*~lEEv6M*MN`zc +yijLCNGaFdZ5=$N;J`L9B!YWSn6{=sCB%c-Ay@)5`2#47F546uD7x5Uh}~PNLrdU-ufUrIGYer>orn- +aSbsSCM>R;MG-QN0q>45w{f@p2NgbzE>=e10QTMpqtDgEM!En0i9PZoreKIjl2MeLKX}RsBHT(d1Gy} +;LHpaT1L1up1;8Q4eDx^yCgjf-xp`u;^)i%RE_!HuP+QGg?4}CFMo6D!gXI4&tp<87kNcC0Ll>?u^hE%F@~bU*IwC_iU%;o@2u;jpigMF1W3Qik;zCtfUkNc7szTbZi +D|BNw_I8;cs0s9<4evrAKiYn&W+e&A^rhSO9KQH0000800Wn#T={QLO}PR90Lcab03ZMW0B~t=FJE?L +Ze(wAFJob2Xk}w>Zgg^QY%gD9ZDcNRd6iXNYuhjsefO`>oEIAsw=3+$;6ayWZCMt|n!?5yLfAKsm@R3 +N+^+rg(`VwOfik~1);&7+++5;f=i7EV_XwWIa5gz);iv{l(l{fk*zS9Aa1yn?a-SHcX +m;FjD8jd9}(*xcMCkfS`zgh}`_fYRzUqNuIvnlmkVSCEDX4ZCe~8=L#sr4PM9; +6CE^D_Uzu@zy5)?)HgoS4^&iZVoFf6J(x~y;_kTl(7JkJ?1|$j!W%q>ZE}UQlJNcgGX78W*^atGw?FJ +$iiTj@CaQNV8zwq)5CS{AX~y3o1}_97x!8M>2LgcmXC=@)5P_#FAp+W&{%;|W^%lU=x1^7SG}O{v{;j}|>2n9kCz)}lN+OQ% +ueX^1+)>_J}U$hIn?#$KX{JswaZ+A=QTC(&BYOam!{=9eRr#!$%|=cu=4mQ-*zPLc1Zn=qT~@Fa!`eb +oA98C*O|2ic{zXPv0hwK)q9-okgdr2hT&jZcERzKiZwb240griJfYP-Fc&=WTeqdH3 +;lv)+bx+w1L@yUiW0hIH3X=N01#!go@*=*Ie*r|F(YkA&=R_7jFZ>4t7OWB5!4$$6?E=L+ImJMObv&^ +h7=tq2hMpOrM?;$U?w9d+ +*+hnYWuIjRXr2D`-Pu>PAsO-Va+mR(q0bf522sKd8 +xmH53brv3VXD_SzKLNoTmeVY>MF +Z9pn*dtH@o)ROGnY+m{iQWc)!7Pn$N}{O*nF^I+Jb>XHxAGOxJ;itX3l?o6PLG?6-4n)q3|^xw2|rot +b%){Tj=1D)TE|S`G-QkuMbRqf7T+ID*i8EyNLIiTVbhuPjL=FYtd+<|*8pU%nmO^+!o#H^{UnTuO4Tr +u#~>4{Hn*PUuxL?#~72O0u4zHRiVkcJsk}xsuNUFt@7>?%wFUR11HticERboZXbj#l?ktzeAiDuOSK8 +7tHno)4v)(0!*Yjn*E*?5`hFN5m7h;@GQ(0lNmKzI~;A=H*3l|K#C_|89+>?tWXw=y5-h8RWjoR=Jau +@dP(*ZIq1Zfoy0HHxjWz-h(qW5s$WrolQ7eG)&F_N5Ym +r2cm*J-7i?+qGL#P_$cz|XXJLjzS7?$7MVAE{M$+(1=VY8rBd9yBrC9&p1vi8N(IC}oZU*gc}KHUxuz +HtN=7E(Ji4I^RZ6}lSKJ;>;JeaormhD +hS*73{4w^k=IyE{BpvWnowXDh{VX6J%xZ`d_+B$S_>-OhGZl{>O~TP6oiSjWocx@fL(^6ZsIm%Y?BC) +xskwpVQ;RkzQa92!F&Q&1u5{V!9iFuOPq|(*CruwI7i|gLhH(aR_Dcd(2NmA1QzprWk`Ddl8%{`LymN}XC(c)cQ?6T`i5YcWib(bi|A!Dv{g>&IBy;c67myA2}Uf7s +OGtiA`a^-dd$Tl0vmRuoSMu)V153y=@AB@SykcP)&cNy*EUMGJAx0oLWrJ7S_y1l3@zj17f^t#mF9L! +!Q_=9F`0{=8k1VdOB7Vf{+5XbkVql1QcWuZ0W|N-Iwi#Q81Ah-Z%_aj5FZk+-%->n5!rn>FTm!+9o}g +`^JM|=ADYP>AGKaBB)i8g0}gqmz^;hnA!m%CpF!i^i#adkXskLz^-)M=LY@p>=;(TU=G`{Eo?20*AhK +r6a1-)=$=HDuA6S1Nu~~6Bc0eKp1SMPus)c6$lWtSySr{7H0)6g0;Bhnwx`v3ARoIRVw~_u6_QG)Qw!zhX*lke|Yk9N}WKw7f;>$2Ht7TF?ncXMguGdnd9zIQcF{G;0QY1OY6sgbk +W=bX+vZX?_N0$+N?H(Gjhk+tgg!b!S&-*Rb+BeW;7Bn=!CSJ{U1`<-7?Q}x$ERoJ5N>bIzK=f%i4#>dS}a#~hL1LeI>VgT(tzY8NUcyM*G=S$uw1JGk|eKftuaX)xY8DQSt`q2s9DDZJX +dlZa-q`u^-)u8?N6^qF#BVw|EE|AT52Se5&8ba(c`p_eI;IhUz +z>feQE1}WEB(kMq9sf`lKKPf%@}%}4lc7Y5yE@zhES1UxtQ`my3ET;NMpp4c4?4+*8_knMl)@&-nwDQ +UbHy(%`_4<|wffoDWJi666-n|Hg*bZ=@!k=M%ju{q2J|&NJ+nQHfMoe{101<*${PiC|KAM1gy4xT&(U;TLxue?=@zD~-d7B*G;0ewQ1s+?@Y&N#PNaZMagRn~OYd1WFuecXFm(rBTH^}w~@r5 +(`GjL{IH29(AO3h_w4M9NclK?Pdw7?8bcH}qI*;Se|AZVdX18B1~Bj?tkzif6G_u=V`*`2kvfPdB;ilJjy&3?@6aWAK2mk|@q+BGumhVAr4D|Ht%0oQSh*yUXL%y1Wrj<%}I4z4{Y7&*P9?^1R5>( +ZT3IF20OIkrrZl5s9>nm$Ara?Cq9^YcV|zjz%NT^F}vo!PaHDP2$Bdcq!)P-{qomw*{#B`^ZD6dEE7c +vg@iv%00D@T_)ORe(ybAGV^?7H!5Enqtw1~_2LA;N{vI9Vf^bNDL%(Fy((ED-289wmYwE*M+^LJUadk +0|Y@iVXrk;goV|6aqp)(>)^^U}TUY{cNzL6pn56gf{u=KHSO>(!rgL{vmq@_F~BDo;RqUh6%7zPb5)C +5kQZU-TT)Pa{K&5z2_j*{K$mU?s{+dN!WVQ@#O_n~X+3U0uMETm)gZ*@AM6bMNQz`1a@7%O4KzzMae_ +Ka5|#gwOc#n+bfn{h8j4{|n!$X9wc||9SxL^ZC`sx1Y{G-OR7f-(OsvpWV!_Z{FVgbbWpe=Zs$;z4F= +XqwiqlC=yF4gYznn$MA2)Kxigx`aLVFZ6a>rlh4}!xs%KR9r}#B3&t7VqAHM0CD0-lEAhluAY&wo#~B#^Wn7eK5Hh!n5NH7f7U2c*ii&wyh&d|2juwE_K~0QwHL6O9G^-S9G8!x +F$Gp!a48FF^E4wIVJUs5kqRrGma(;yF&_x3 +7pMH9?qn+Bw)id-fxjQAk9l23RY&U5FkcNZKYVT&Z;D0Bwi5%I|g_MWVmoYGH*VQ)3}_^$MghWg-Diu +{fV~Dj7+lsp?kw+@lRvjT$FrO%-AB!5?FDQSJsMJcfkT1we5pffcdP7d6-2402;e>3)j8t+BBItH&7~ +dYAnupf|OC3R!9IM0lQ9*IyTGO00`@oyUbh(R#_i_(B_6p5M0=Nk%+l{M+9Jh1Q6rnqaz<&+iTReBm7 +UTcL?m?NHR78L_RX?1VfZ&`DPp@h0h#)gujMFAOoLZnY5*-Z$DjKqWpxp0Fw;bSn#D__hLuh4;K*HT2 +uZJT8A%S2x^jqq~z1UGw6~g@fetO{uGKW3c}d?F->-iFN!RwO1!`YSdkoXPm=6WL;>C&PJU5%>;{T4?xfa{3G39C&6)Wj4-ath@F6WtZ66h!CaDr_yaLY#JnH8;Fl~;$F~;e?k30yd{FN +P(E?_w?TUKeGH>?sr3ZfvxxTee8d=Aa5j0Q+Bv>jNi1BkGtboF*pq6^WX5*M7K;>!2WZf7jU?g%dEGh +`9-P9eO6M@Z;kHFd}V{>OtzE88qbRNYylKp{n_g9Di2NX^gK%NpTVG+clTn1Ubdbut)$;*5h{`2wcHw +T5}+VoGsv9sIT@TVzX32(;6aK2A=bmF(yfWb)2st+8DS!-FGPL~kBtp|an*;J}GEFz2A4GfkQCCKFS% +gUUm1&HtFnWY)1@HAe^)1zk=Z>pl4=Hdag1tZ>PR&T3C5{J(%%HxMUK;_xfZvT^uDKKY%f4>>U2*bG& +MUWx&4r9ErM--VVsr7vKOY&#av-(TVn@k*S159V#QjD@{A%NB$kf>!DV=aSJP(V%u=lR~mHE_!E**h^ +=h_~a$Lb@d28K;#PHEd*Fl5=%n$n#F&POm1;a)aTi+V^vj`o?<#zGALD|O3c$J&Qr;b&c+6|CWe{Gywtrdg) +&Ghp3|xJ`TX`2L8KT}B8C8M1y#ODIh7-bx;mhrDG2nBc)6VWyla|ky@?zy1Nyei&X2a4kD~GJYhFLS) +CUJglm+jj3SH +@!hF(Jh;$)R$w;Lrft4v3e#PSyVp9v~6;D?}*>qf;vPV27JuKNH2V)J9ctUqccO{)As~9>AH@L!K9s% +>va;q}~9p1R{v!Q_HfOND)1q8VpKAA{Z=DlWFGxs$>z%z16gLIBVzN+5o1pU?ym5RBzx>og5rqVVbF$ +S)hW!~iZ3nH&U{~=ULLn&+$xt{t{!+kB_yZJIsMC)R6{Hp7Am{RrwaghTFt&&p1HVI^a%rC}@A-+W}- +#~K+svr#!^O5H%h?0sP6fGguRHw@PV+o`ck*~gu(VanDHfd`$9%r;#YTR5Q{1rN_N^-XpP~CNF_mw=m +rQcGY!N|r`wM&hjfab&d{1Fnz<_+keZk<;$Z>ht8)JxT|iUyduSX&M09GO16%(8n56t-xiJqPVWpLGa +U80v$%@|uR~Pwd3=9Wa$;RoOI6pcX_jei`{JfCvbFubiFL-cXVj=mHv*gYqp@ZspIP=jQCEy8>DxE3g2XuU(8N}DYytVGkb+jjC=Y&APuE> +ZEPRVKkroi@FN-Nh17TJr~C)MYF34NpO_VV89FzTOYo6K^)~6wG0=3&7`Du%uf`1%LpzR3b66Dz~l(- +j&o$=O}FPG9-|N1qD)&9OW(KNwQ;JT?8X0&|>ykBWTp}z=CisEczY5zvpx8S9Okk61=gpY#Z!Z5+hBJ +eQ5IFin);5fNYa7)?x<_w}O|ZI&FFZ5)3tmlq5m8g$p$~;DS|AL6k6#1=A`qaeO#XXN&|5WDRhF;yzG +?cZFb6tgtNK3dlTZFcFnr5io4@+WW_`PG=%23WD-s5fqTa)Sev1#N9UO*F?awQ?n2OBf52ArlZk>xh$ +p|9bZY})wa)~Eb5JB1PH1}`8z!Y5_iT)Xm;?L!>c6M{{~z~!%Fl4@VL)6`fm9sl&@4gfR;cYUV)wIfQ +AHC6?<3|iA0nl3R(-@;OKLeuPhep180D}gO=A$ORR`S9@Z7lv`?&)+`c2bsmHT> +XL1|EZL-7*{uMVsb{V55G+-Ssee>h{A7|_a3@Kp`@&dQ2HdO2ek>aKHEEwoL#z}%g!X1lEOh%Lwc8>_cb%%PA_GS>z^X@m=9CHkO?2YD1v+Zbm78 +e|X&nN0bm*K0BL?mnH?0PZGDbF6pv($0XNE5bE(T!A13SNhw6(8mE(dkcEoj_$`1g~EOud0$I)Orab$ +whB>}vKC+t*uOAH-S#N|W=ALm +nm!Y0@)4E~e-nCxZdt30|(Jz&XjzilC?C24IkhnR!Y$x;WsX1pr<=@gVU_I?aq|$5TpK&!RlU7OoQpM +l$ej?4P)!M#$2OGb)K@X*0H+C`vXLypfI`im=A`XW_j~6i<-NWU^b!{M>p(e!a;xHG)O@bDvv`HpBGI +>hbIfZm#B6yB;f@sf4P@j(!+XQLVFMuwxmnYK*2%}^mxs|b9gCv7tn_~v()~MqUuK^%PLDmpsCYJ4P$ +7WQ{$ +u==a>8-R4zJ|W>nIo)It4kbokcGO3;YkH00n|s_Pg4GM`a}}#CSXNbDN)ULM!8srlG3v(q7SwKm@Ez{ +U^uVt9neVZnIRhhEf^X^>22!q*-0#flX1W7FD1!aHfotqs%gG5UJEvXcbbG_^s~l6~04qxRB)lfjRPI +c6|H{Z$Y%2`6wh0f#I!mxZB_QJ8H9%oc4aXNHqz%X>-XZ9-3Jx1v3~YC9n$_nBvJR{IZ2Bk*&zrQjEA +E`yTyj@U8uuYu=ou``jMp6J`>>pr`V?)7C%%D%%vUxV=LA@_jVSSG08_&3Qz5BPTrH@RO*>Q)fz@ewk +MSgEDx*fIKfH9w+o=A_s{Bw7;1A&r;_!9sF_xe3s43NB4E9(0d6omT<*ZrnS98t5l~_XF0Sb1r+lpIz +(cKqWh%X-(9JUs3^%QvBUquBp!{7Bn%Bm?*ryp74<8A0M3@7Ino1Q#$-^l~ +L^^Yn4vwmyFp+{#j0qV@(s+JMS}7IxvCS46}$#a)FL-yEhJmyX{==S^~t4>_rWjrePX~`aQ=DcoxOOw +iWu?AhA;bbksO9NH{5hEHTGv`*;Ujf0?tnuU+rN*M2ome0^cvvn~1xz)`EkbohXEMDW~lP@j{j_TByv +w%j;7lM@otOOdW{(i97tb{)?78gC+JT=Z-Nnj%??GDGflR7H4Lz$}btB45a;030A#Vl-IbN2SS;xo?y +Ss(S&PB%!#>0#@9|TkH%;E!FemrPID~<)j%*xLm`jTQx2+P3X3rveMer7K#RxyC5ziNb|~u;ir45{?a +gj3Hzs01|P<5G}H1pu9Afz_Wi%8H*K~KZ*vj0)a(yw(f_34O~rHd^Dn!xi=BJ7S?`qaFgHi}a+|=aqN +hS$5GkrOz%rVxjbtU(WW(8o`Biv7W^^YOJ;ugpSpSZBU$K>SVc%IWq;*>v!WWL`AIaDed-MO^Nq)N +^2m1u&GHm@HTkn73j*fCNCJwPxDo0EK++E08Vpj?Ll%&zGEG3Bb#`BErL9qeb@FEz2u-&=0pf#*eA~E +YB=wZsmO9>~UX$JUjODdDtfZ{jJ^(r76!h>UNQaaoC1>oLCb!%C>U4LhY51n>UWly|W7_z)epN(%pe` +~EM+$c4MsC>t(u&qxs_1@7$3%8dE2ixsdU`VI+`alT9T(WAIWt56?8!LUEPM5aeZ#&xd2@8sDCIdKuq +1-3j7(QyF~9rOhV~mU3k#ryH&lr}Qz>CoQI^utVVC7jQ&_XA1wF~T?_AVzCT}A-eN#ITp6)uvIf_8dt +5VNL{(^{f(^cKNoBSRFJ1sR<0BDV*SP}V`jiq$ctBv#TBb(<9)2SYLbCkaT`?eutRR(qU(*i>hEyLc% +kS^G$LyQ>BXf9vi1PF1iN#$03QMO9|zb6RtdMYYHx|H?MLfuCHzG0^J=_%r?yRS&*Qa}H`Iq}yoZ8(W +Wms7)`3XI0EVeh<qoY140 +Z&D04e*`xWhnB{SE)##>TXFVK?QwpYEk;_0<+;j3Ts@HMP`__Av4J>3aY(;n=&8ZYP;* +G+ZXe(F@Yf5b}7>!UZQ*)&K7_86X|;t^*|P$0CIq(A{z$wF!kM4~Py9b_0K6A;XieOV4i@zOKMAg;}l +xw0r!R@V6e&ISXhN9k%Y*e+4?^fh?VQ``LmrurM)d%n%>CW~bgK(mX8wd^=D0}0L +HfsVArd}jqCmjc|M#Wu}hs%jwh^nxyCE~eWzQ)`%DdVFFhwFasM9~% +&qDCTM!jed4j$V?LCA!-OGiP47N+u@rvfGdk}@)vUfdsme~5Xjc6YG(MV?1%YjXS8HPYWblUCa1u%lh2U*hA|fW +&8s+@e(NfgAJm40v*V*9@pSbm>XvH(m^#TP7#a^ziFi$ +%lcf7(Kw|2%f`ln(f!#*8m3q00I#J04D$d0B~t=FJE?LZe(wAFJob2Xk}w +>Zgg^QY%gYMY-M+HVQ_F|axQRry;n_d<2Vw%`&SUjAvV@lG7ZedKo-cj(=&}}^aPy%vx}aFo0dv8ClV +=;R2&2QZ6O?;x)I9Km(e)v({dy}hA+6QMxm! +r#M{K@2G1I<1bWTPn!`MJ7lbiSe4yX9;R}TZE3w5WuXG5q=St_#%=34zn+72fl#7cC`F^Znp|9vDRU}gMLVg!F?5ZbSC}X2jTA)_Kaf)~rSVdOFjgBhCE~vb6fnXmK7QIs5M#5HkM-k +8C25U&ba%Ur)3(A!VC!uE}d3y&09iulZUpNwr^C(}e(j&8-|DyNGSZ3b6RbixogL?{I081KD7;)3!A=T#7`C4S6VR<@y)fNh< +s{;ZLBdoFX6Qg9Mu%WII3P_1CW{OTSIkXJ_e~`j31I(nQVvDZl0e;B2{suGQ_CsxrRttAAV|?o +?5v+b7@B6)HEcTv5ie5;fR2?~9idtXvT6;s1i}-J)*VL<1H~?)!O +41`Q6M7(=AiCP>9TZOyYWQh~W9D2su#pTwP3Gdk2i$n`q9gS|K=bR(Hx`21ass$#Mra$cKVX1u)so#=*~#F52vT)>D8`m76oPP(XRVigIM{(xqVs7l)*P9~8~MI +F$53r_NYV!r4$sl3XU?8;(GT%!$BYfy!q&75Cfzq>|70y>m^O|O!C(myt_t}bzmxj24J78pw?% +d*om_@Jvmy|@d{W4woD2kK}mOi{gwf~&6%YfQ~5#_2pI!?-q;u$H(QD`@8pV_Z&Vs5!W~|nw;bYvc;_Vtc}!BR<4MCit3na1V +B0N?pwnJl?$sBAPIaA2!ko>0$G_q?|3jobFM?Gz;Zr|bo#uGJnAL>B6Bd!RxW?;H?IAzsfu@9m4_Nvi +R838R9@yQvz5%oGBx*rP~%~|T%wz!$+49yGWAF?vh~2<73e>w0V&_*RljGjK)d$GuTOe0x*3mSE)8~x +hvkU}!8i)%?Tj$2te0wm@{w4bj+LB1q`QfkCCP+JPn1SX6);s%zm9#BtBJNT^;ymVMqZgTm4`R9SZ=9 +&^%@CZG`d+u*C<^$wr;lS*r&F#!&Tr|K)6=S)5Ae|7cjs~`lU~d2YMAb)_TVSB&1Qvq4M=$b#(Zb3O86=oM6Zm6KS+*?ej43Z-Vo8p2mLxP)h>@6aWAK2mk|@q+BcRq|USk +000pa001Tc003}la4%nWWo~3|axY_HV`yb#Z*FvQZ)`7UWp#3Cb98BAb1rastypbu+cpsX?q9(9Fr2p{cbI9!t9)El>A!4nh&ajtSff&kGZ<3 +b^vrd(k~c`92idoRR{q!AWwt!P3D{Rk_fS5Dil2Sz3$OyT14j;B_IB$zTUSCmPo6?2hbrF91=124$NW +uWc~UA4|=dgavSUp^iL`$q@+e;mJmH$Z#odVo%GrbPgH+dBj?G8B7iBM;OI$u!d$nTu`oip_Ablz^YS`mp6xy>j9632>&uJPQj2SNMcSMmB +6y@!Z^Vg1)b!{5qB1yH?$r{<4~@}ZaVRoBH6f*AIUv>=egw2=N8nH?=Erx++6ED4S@HdWy;J4+?}x|u +2+U6*-J3tuImYpztDG1Bezdaz5#u$1U`EXfhc1(k}1)&o?-;FxZ$B%KF!Cx6 +A8K1vHFqFryKg+}=9dsBlX^$O&vJLqQk%zFHEfTqyU_2#)^FrApv9NUv4ior9c1hNwiD;5RfP5mKBZ% +oty}tt4XfnxM&KyHs8(mHDF)h%)I>qGFGWtI<*=Y$W3F&2)RVB}u4{({RVz@n&eXB!Zw7K`9|oX-08f +Ka7S{u{Dx--9W@|z`yAXEqN|r#Uk&)7}@l_noP!Mh}xfO7S0qTvi+)6CMM6!!75@WpU+Q3Lv;a38t6= +2Hga@sOqp<(psiiBqG|~(Wewi0+|63(-+!1N_>cgN@aV(&$ySeu|6%Lr<5|B^MYG6Ch|^3h5z~zMuj_ +?#(cNIa07(4H1k8K;GlCsE@&E&+d)EQc-b)B#9KP!qH}2pb%PJ><42TD`xu5iRf02PqMhXn=+yVRfK@ +4L?x3){XQK3c(e?YlHT^zV`zI$-NlnARcThky)nufnhKvZxqX$YX2xv-G5ZL1C_pevJ9*9gmHIJJ)z9 +v85OO-3F();l>`$*ALAbR(jX_+tosca3WK8F~;M2WaaTtpzj6^`umQ{3)I?_WW* +Cu*0M+;ys!?>Hy8Izq_4$5jd!BU;_NYClflhtx;2uj#y>Z;6HJ;n+O1}jrlF$lpIAIfNP3ZOO3`1S4s~9Q0FB +O2}mMxLl}pG1q)6!B1wK9j{r=X9jck|v15y+7-&u-m4py&ej}04Etqn5;rFN{Lz#aXo +^DuXxDWNUM)hc?5qh#YYfdFU+#7?O)!QEzVN|+?v#*9is_Vg(nb|>1?8>uirF)nZoHnT>a9i^;gYsEO@31K(cI9=@N>eD}^)$v^MIs#;o5TKO!e4~nP_nb>phNp0xo;6*x +SN%R$9|_=%yZh)c0PTv{uK-rFHrJI>cFNd%gRHbP<5xzt7lHGlF`bk+nvT|VAv{fWz;l1be872lo3UP)h>@6a +WAK2mk|@q+9?10006200000001EX003}la4%nWWo~3|axY_HV`yb#Z*FvQZ)`7cc`kH$aAjlz08mQ<1 +QY-O00;mBm!w>+>0rO_1^@sn6aWAv0001RX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eb7gXAVQgu7WiD`e +%~)-3+cpsX?q6|JKEw(Xp|8LozyrE8-GX&(&<5=WBXDVnirL7NMpAaYF8_UZq+Te?>59Do%NN_^@$Pu +{+&#w}!Q0E{zns1h1wSjRof0=IbHzWI1Rgzj_!Q2SNZ}<@x|EZn$&nL&DN-&qKfTDfG$I#VCGf0b>58 +8|iXTjJRjy&N$ZJz8zF2@*SEVw*q$~|HqLg|vY1TyPq|L4p@}`x%cpbsjub1bGvmejTe!6(|Lj=#{E` +py~MPd=8Oq+>2S&1rMY`Dxy)gE8#8+7J&v>z+}Tg|o6u{Nqs$vfSiIb)h%;GLuvMr`@TdPQOm2p&}GzJi65IhMc +b|d3CWc9kzQ~T4&7J1bDYAh!ErhEx^iDYo4et%hJy9AaygYo(UUX_xg1N7lULOA`-?It6Yixp=XI-MM +f@Er4Sjj9f8^_TIr#f`RZGn{l^G5+Ky2yIwP`~6`$g!4S#bj1+1*U}Mz7mbd1A!HhA`X~FMP+@nqLnTFk{q*aorwqMtn0JhIg +*%WJS`CyX(K4^|)MUfjr1@i|5XzpYW*^EcRmkv1g(-F+1s(Zqyl&7BO<@f*Ol2hWEo}qL!V=9(Af;3j*!M=6uYsy1}tO?&rff| +1n6@ULXOSiHi8W%e}t`A7{1oi@Gcr_)Y!jjQrI1GD+ffIO7&%%r31p4N^NDyKR>~^8Xk}zX5F_j+!-F +doAlqhuSal(2W>xuvR1HRY6tseM#-E9v=vaje!lao&aL~Q?23M19>oOD+C2}+?NVzY)>R?QG>C#Bk|} +FWl#C74C8HoUk~14q_amgnFRE#HkMLr{ike%`Y=`V1al=icBC^e8tN`OM(18d=wmZ;??y=ZA>6XS8{2 +a`kDCNRGH1XOmvYUh@#xVX^3OSwUL7L7!6EnmED!B_{E(tT!FoJg5G0&7thSy=wGyRsO80%94S<}ibO +J5&m1M3da_S9}gElJ0Yx=2w3HDX~Y`Gx2JljRdvVXvF&Q)i8Kx_+Y*9p!XbGvzcFT?rV*a#(F +8NFQ*ou@*jH8yg@1Cq*yWAjJexj|M#_L0DCN7Ec@Ew?WDg+zd{ZtnG68#^-RS1n$2Bg$GslSfS&%?fd +cBZ{IT)^$Y_1~$nOnM!rZvm=sCia`&3$dujSoj +r}YpBBl{%LZ(k0NVeVd1dYJefABcVLYAlzPyq94HoT!}W=l6Dg9QU70HDhPsin6rF0YRrHMOL +5$g8KhnJW;8Pt&RLN^ +Au&=aJ3eAW06}$E^hs_L}w*ya=?(W$baNs9mmTN?9H41~e- +c#4>F0gx2c&Ox0@h35uis+_=OsGPGE(E7Y(Q$V0mU?t>G{bnZTu7hFq@kQBcL+c?xnJN}s!v(@I +}+ve59VjM4*Z-jxTs0mlM($izqzID8=`v +ZvEp)L0+>w3(7D!V>(_(jxe7(WRpUBmH%&e~`+w +cJk`8NHr14;zMpX(iIzVsA7$!l{9t2A4a0MM-!R!?W(YovJ80;NA}*zS1nIK`ouG413!C3$H!?m`=g8 +mcn+HMg=|=R|0F%YD!t%bV{~FibQw!l;unm_G!2mgFP|&>%#@dXzLiVlDi?YA#!VHS?9T(f3d;lEaf9 +a9L{IUzd>#CZ-X%O8`5*3Q|x-kCOh~*w@l3kpjXwJy11W>B{ES#Lv{Oah;o>@_zUQECE?Tu?G(LF?LJ +po-)HVEhy+f2KYZp!aB?!X+B@pV2WstLOZLa8(PY$3Q_ +hpYJoP6~O9KQH0000800Wn#T-ZE+W#s_?0EqZgg^QY%h0mV +Q_F|axQRrjZ|H0+b|S;*RK%GO9F}874~9qp>wmftdv6X&{Bp`?dw>eNS<_E+OZ!$#j@p(cw78p>E3gW +?!7wpjBXxpo>pJEfLN6un(qqS!aIia^5WBHy4F0U_e>il$&Ab#_@1XA4Xo}mkjQfmI;7VnOAA)kb;ff+PhuWxmrBz20?$*2PJ_<^{anpNW?24Jv@!f~RwkOZ@V@*=Q4)t5h!pmsnKc=XSDgVlAoH@y@TV<~Tl09IdGRyD2 +h8Kg!tOZ?N9nCiE#4OPJdcL66*o^~?(*a??g^r82+~M9@e(D?R5yuqg0AI~=xOJBr_0}DryVs~&c4>c +^kze)1N4FP^1EV_n6OWD}4!rPQ4)&^&I6o^8%kcdCY}vLv4KX834botLk+Q~;KTt~p1QY-O00;mBm!w +=J&`$ib0000l0RR9i0001RX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eV_{=xWpgiIUukY>bYEXCaCwc6%? +iRW5QOh}iY2|;q6II42Y*56LDYjF5<c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eV_{=xWpgiPX>4U*V_{=xWiD`etyk +Y~+%^n;zrRAeyx7~t$+EQr4#==IOS@ocS~MB9A_xqfO`o;cmLbW>9ne31q$K~mOPYuJ#g-^im8V)Z~sEo)2s3rTo=1C5RC(-dNQ +?g`noHeFV5XVfEwN!@js*;8qAuBzb`MI3yyb!B)D0TZ~psX|W$r&@~(4*pYYbpiW*~_-IsMf9I;=_X7 +eExVIpZ$4$_SePLJGZFjhW2S!eZ=9+OGF*T4^X92MG1wF$jT^LxIwG%hHE&Zi3Picnk#PLjZC-Q^w(^ +;cLAz3XtmC|X#^x2`@Nhoe5~0NcQc~woN33iehEQU$mD+LFQxPn=Vr56QgE$VY?DkIzZV-(xgF;7`E| +|}q@-FviMZMvu}mtqk|t-J7JJ}I@XF{2mE7hjWSD7D2@}VGouNlVkuADWDikC}s_l|#qu3XVelNy-;D +IV=C1t@**;`&{7>IHAQl_wEqB1BxmdCG;k4M%g;$Mbh0wuQLFR4=Cc8JU!I&&o}Ks|ant&ko5YKP0th +(X`G0X>+k-Y^q-vcB_uUuycaOqUN#p7zUHDQps`vB0gBbETvjZ-|Erk0oll!x8M5r=$(XS08T9m+Ycq +Ql(g!MzTf&GnnT-<6GIVve9%Qxkoa$B$Ps%NswG($Ejj8Y +9Xr#D6&j-i^4vcU%D#@s;L_(?k9xw6LhztDJMC_}P5^1D!esc12u!+1{7)Cj4Qn3bYf^cwXvnsI1lvTWhCu|@18o9}_#GPAA=dvkMsy +3G7yjla}nrVsbRPrsFu95y2(uXk7z>a&a0e8xcsrB;cXe~_MtdJVZBcvOJSR4&2;YeuRfIfQtQ)h-^M +4mczQ2GGL{k|HInvI24V7PAm?ef)K$bMkAZg@9EPU?tmhv+{k93*|2EZFzf-~hKZ7?0aMYtv$BJ7B+FQbMf_I;yxDyRp<+URtsKTEgN>u9WXY8NZK5=zU +GTDo8xVfd;5+d39ptzA{6^06u;Pj%Go(xqT;2KIpN(Dtiw9kSy*>|z|Yo +&303022Htiu=Ag!iNg1;lyRt@~#V}z|0U&9^%@IHyj?mh@EKHOR|yL-{aVoyAo>X~Y%#@Z`ya>;z7yJ +KG<3ya#*to*`Ab}t2zhu^A@o{>67sMctkMisG;O!{6@q+OhiX#`$hk!ss_5I{CqL|D!RwOD?;J+a98IyuXY82T)4`1QY-O +00;mBm!w?0_4l_%0ssJN1pojp0001RX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eV_{=xWpgibWn^h{Ut?i +oXk{*Nd3}^oZ__Xk$KUfQj`k&yT5C+=CDM?f6gDwU6ATH2P~;_-*21+T`?|FgAD(lZq-3Z%r~yrZMN$ +ud)p5})-%F2+u#qIH9&_>p_-R=VE9HC1m#|>JrIy~uRZB<*Ru-id)?BnQii#rjsOuT9 +2a`w5&-*>0|CPb~E!=QjQ4^jJDncY&w1Q-yt&lpA-5?w4@bXvwak@*>E_^a?de7IZ0K-b+un0e7(x-0QTJ3* +tf1g%6jw@@bYGX_Chm8ru_x-gWZfDsUQ(I(EBGTu#v`#y6_eC|yfAqMb}8m#7w!_qZFph4V%D%1Xe9fcvv!}f$6=hAqjab#aw*stF?EnScnMT+ +e^-+kYAUmi;vpwZ@8uMv!^N!vPrhKMSg>0gIwOQrLcELS>Br)Lr#OAH7*^a#2ox6#CzRrLz^LS7qU^ +o4gDxOIPQRp}1_e8kl6B?`+hPUBIoNlSVmE({&eE@X5K8A9P0FxVQXMAoLO2f?-8Adp8)L`l?yM5%Hu +4{_=IS{>FSgEeESR4l5;JOR~5Bo_2{FV`V763HES^9mGjco2R%Og7aO9;JZ_HMv0%;3{N3cEOi#pvm;_RSgn>|D$B&8{3U +-QBKC?D-`mhZF6_GH>CjP5y(hp|(`j$G*Bp~4LVS!5%;w(~cd%Tf^Sjj?X3HPx4Rn#cfmVCjQ_T3Vh(z@gYmIG1Ayi-HYlT=ROoaKD5dBdysixeerP*3z4BM=nG7< +=W04E{mfPu4aA&(Fp8=z6rRX;#Nw&F`VCB{g>a@(~~n8Jfy4GAc4LKhFchL2)8!=jtNZUOVaA|NaUv_0~WN&gWV`Xx +5X=Z6JUtei%X>?y-E^v7@%E1bNAPfM|yI(PO7Lh^S`jQ9(D}VXrGSf~45?hA9ir6EwKo +gT$;!rru;&~CEU@B_XaNV~_W8})lGJgKJk8FNqY2FmP)h>@6aWAK2mk|@q+Bl`t>K;k009300018V00 +3}la4%nWWo~3|axY_La&&2CX)j-2ZDDC{Utcb8c}a^!@t&E--Qo +QO9KQH0000800Wn#Tq!P|`AkLv068cG03HAU0B~t=FJE?LZe(wAFJonLbZKU3FJob2WpZ>baAj@8y;- +xPNS7`6&aVi&_ods^x5PZitR9#LF^E}U{lYv-AR&R^*Ei@yL`FoO_%idWD(kd3Clrq3ILO&+?X~yz1p +fCIc^IDA{qTj=|I>VSUX)hD7pvZ1`i~8Ai)DlZdZe-1BD!jL$HKBSwkzmKX6Qm@8MB!NdKX +dDx*ZOeMvx3)!F^ho2~7rW5PHYmW*fkQWnu360_OabSa=8=CfR_arJ;9Gq%Gg{m;z;9XJk&EibAe58WdUkCfah0a3;^trc2YP%yJXG9Y50D`XEg<0z|D>TNbBCw0wrCPmdW@tJ(O6)QW0jBIJ$_XPTMU +nV*6fJsE)FlQM>Itg_GP+{oM?|>3gGw4McV~UJ0|;QJKQCygQiD#-QOM;SAIN>B7G;Qw3x`u8D$V|a( +%zk2a6}|Bt>EdxZe{t>ID4e`W#xEFHbLKS}r@;l2FUf=^UDwS2bf^lVQX@{RxGrEP9D|?sO4w(CL94Z +7t;Ux;rbCMxBi@BCOq#S_xe}G$Rw|Hgq3mm!F~7Fij#I_`Q@NdCc$RW)Ggv5YP;U1qC-5RJZ{Vk*rFT +HVGq@Gf&i2rDEYW+wktb%g*xy$M=XZjPYW-cg)%omwsOXZZhHS^pddxr{>s#nO42tXf +#`Z_Z-haQCn&H<)UjiQ7d0pC9z>qzmTC>ci~$d~2HpyP17G47DN5FU`>( +1IojUiO?_CdZw^*&Z&3Zsa~%P>KKs-1V-0GwaY2QHPk?6SzL68ZvezjmFl~E4yM5si4llrxomdJk<6W +!4JrC_vLO$fKnZ*nBq`O3ozWY<&$RMIOO4Rz=q1n8|ZvQTY`1{-AJvoc%^Wm>%Ljv)za(ClLa`g93rO +@^1Z0uMWvGE)yUl&tCMCVdV(OR2A7~NqHI>{)<|X?G256%2u{P +t>xTmX-3i-?T7i2ZdRQo)^?0W>lkDVdK-+bM?58PEjN!rel9=O#HaeC$(CZ1?iOs~6H^Rhssg-oyxSc +v6p@u|xow883p`Sv6$d*!j#T<&}3!S_o60<&8V5CE)V|-g%w-Gq?l)nwBB|1}*!|IlrZ4$WOEkCCJZc +8M1O0?0~!(7`3t%;(#NEc;#d(&q_B=gRYz=Kj8Tx16SJhDJ_FmMzoSG^v#IK1F;T+9iVihRZ(^T;X?u +*;%pmlWp8l0u|5JjVB3{{L(8C*T|tLDIS~0qys$TAjNT(=@z%Ib1|+tBV#FaswizPC0gDb)azNJ$tb7 +jHcpDxca`Zh^c1WQ^25pBB?5}8J=|9slhlX{|`X8rd+CQLWoCbKH?0 +d>`x#%ay$%q}1WVyMt$1py1LRWzB1clAnIW_l!H;*7|FXDZaVJp&$f-5@)K+B$R$}~m08*;*$XvrSsj +a1sc+#wGFM(X`SB{HdYVz#3rC0r2c!p$wbCj>up-8&#*815NWeRRC8r-c)Tn@@d5#^cU7@yBw$LFE~P +Y;o4Ei%)d}+`>j&&-LkXCyM7e1;}o)ZtMx_$Z?j|4_Y~TH1B24*Aqhs%fcEV#XLHg*z|r +@JBMPUcp8DxFFB!&lw+NiO%7k~4MEQ@t8KYdZHjngbWXm?b<849=1%a`aj;tBTEWC)riWB@fJ->x#N` +o1grPrHVt3V!D>4kDa2K2tFQ%zx`gT3e%tyzmXlY9JRZ|J0UV4scw))g$jK}0vb!t8QW-m_h{%;2E6#k1C8AHRHP^fjs!nV^XvnJ-d1uT}Ku_LLv8x?wHPbz(H7a!`}Y>ZBmx389!eL}DMzNKgYtyKA;T8%? +RcL%ZuLUn$zcGN}2cW(6Zlp(a +cI`r|M~b7u;kr(-Oj>Ggd{+^GmP5n$OtTwfG{nPhe)e4^NioatkjEO|?4GhRdYfFWKD@MbaJ +E`mT$#^R2Z88pLF=o!$f8gOus5Zm@C;zLh~c0}#j=%!->|Nk;li`B4&aA<01M!HH8X}^eSkED`t{(qW +06liWr3LkUtd4#>!3Qg%_8=_Cy=t}q?&sY$L@LtBkRFi9T|(O{T>7uGM4U#Xb65ClW-O*LC;rn^qpdrwy@9I<_@54jCFKGv8Ib56fB`^P?jd!fdZWjN +EOm(|t@ubS4^@BCIal}JtCW(x(HHrVyq&<+k4D!<^m@v;X#idcb0=w&Rhv6LBj0SfS +|&iv+A-BWVyOuN1U0laB8Ajd^J*cg;CS0?Cb)hP=`XqZYam)c@7Mc8DcAihf{2uqmA@KKV|;>H25nH% +he0M3mp`PMKX&Qs*q`nr(Sj(%m`>~gN% +&cte!^ZiRkOUqF9bJ&J3Hc?iKdp5^IiW|D{Dc)7~G?`Kmh0gK5B&FzJ#vQ&;x9%LJI`F_y_I}mqS?_9 +kS7UhDfpX$n37i*$Y#dw&Y*>nRrU%F&M&J7Lg~c}C+NjLf}sO!os(!y+2lg>M#CmattSr_~9K! +5Z*q2s9Nn3|@_%P*6XLiZmJwcqG(&9%GD1oM~(DOL=(Y&cJug0}Y-J_jXhVt9oTCE+}o$3RAs6-L-{K +b#?C?{e=>d6W?zkR!RXm!`)#(@9DKtEAo0>V%NA}9ofU=S +k-5{Dt2ASjfAP>_I77z0V@GqOw)hh!zR@g`%!(E-dh-V1^ouf$f~3mvF<9&0iQ2TymDHlhZ^$x|9VqbK4?BSCOtJ%+ZvrTuY;%i~Ll$k)B?N6lX +T$+s>2S2ktq8VVc;)zOpOqu8m&B<9hHu@F^pM~O1U_KNUy)_*tzq`xHB6H;@&dE+z#8!r=5wUDr>B*s +{@GY^tGoS+o%Y;?_cTWPW~MbuY_E~K0i#*iK34xgY1Ng|BESYc;nvB2cX~sPW}A~-eB-naKJwGvguQt ++-%Nt&P;&7anQ!?Y+4dxriLPli_q&GQ^p??n&KtvoyOGDZkF#S=t?6aE=C{F55n|$9$%MMn2a&C&nUV?+#qC1 +14+aYVH)mEE(*p;xynH2Mzku(wI^Y1ApIMk_rhQ&|X{-2E6a5#|-ya0m`_kCm{-WK~i+dzKzYhY@ess +h0_Q5d67U)iMo5|6s7bqtSr4a{oG|S-s@LSSOnaD(TypT(4f5t&=){F|mHac;1=tF{l0cDl>#SYxzpj@%|0u6T;N(C)HDqfON%a+@vADZf +9ggyk)_Aaw{Y{e|P({X=84~F*=BF1R!Goq3iJvbidGj8RY~*e0!gA1@@MAL?EkSVM+;@Dsqp@jP!aM1 +3mh~hNG7nyK2JAX8R(xovaUTgx@de(rOJ^~!YlKwO{>oiE5jjqYyi~-+Rgc$Q(F-cBPGs?){|11HZ5K +!Fe*<{_I|Ka*IDa1GC(r~bbOlWcqeu#aK@>y?l)@kqfhinWp%cYW1jRoCO@caP=pmvGB)S0}@m7H-e1 +p9NJfQg@Tj32kpvi_raP}!^Za7G8GSGS|{*JJH1li&@dZzdRPq%2`3R!7-fb%UPN4;Z-2>u(;+^$G&v +A>Mk!iVeC3G$Gvu#Rs4x`H&BzLE5OG)6aFYn|#k?JZK7Zr#$gGq!0_Yae92L3F!|gxDY$hyD^Y?{Cn| +zJn&qjfK}UtaTU5)W0i!C`tBb9tOvh|5KnzPttevNq8n3ieDi?-)A>P~a_Fz%_(R0-hc->*ze`h +ZWvcZYK(pM5|0YdMuOF|b#24*{(8J*HQi`NA)@*%(cOR?535W`9tvwu +if>qBScA08<1@kIHrhLNPV4s3CJ8%eYtOa828x1-~9P17I?)S6=m+5Aum_WO=kf@)n?v6=lmEI_&TXuXS2lD8i +2@@~XU3qJIEq90$;6T)nws>JLnRR_k6?Q=kfw>vcFz%LEb3-PV{P~h;_x((acZUU4_eP|Q_UJUo*rPy +^`b6y&`-e4lwp~?;-n|$dL54D(9lAFdynfgkGuZRP9asVX@l4OsesmZKs@10mC)w4xUf2~F<8z%H*>Z7b`4SphbLOhsL?&Zz^n3W^V +RTvmAa3lh-k^}FZ=lc#tS=}0gy-=?jPu|U`=F08buO=1)+2VmTYJfOKVfKj2R@FnA^@jr>o!#stdvi_ +arsE%kb~g%R@$tc85>y4R5$d|T3*Sk`<_(tt1rMa3LZ~d+(V)7#VP +u40HstF<%eSzU6bq!@BKGm=6`X_Kf&j3$NLdU5e!365CjPvg}~Jjr67ucQ33%81VsoES`U%LXF!^wTW +BTCwwMQ&Z22u4{2?3Ck=T}jl3*L6uK2imrDXIekYf3k-IA>cw|aNT2E7=yAz74e$u}zsQqdv9w^3Ig5 +?a9)+8`}WR;c?8kgiigpbd_5^pLD`fHoHy#W$CfAU4cg-Q{(Z4BX%tedp&O@kR$$>|Gtr6x=#Q_~!Yp +P)@G%&$i322o8~3!0E4m^tEZVH~2e{(zjQlTsqZMo~y~e&i5v0)6e)Y#|-~dKsrpvZxNMQ`4QUW^>Zi +l!jd4~9IOKZq0IX=$Uh9_zj|8Jx)#N);8_+OWPE4zr^f4PkRXt?R<+qar}>%*gk{h2MzS4nJc +U!fO>g%s<%$+MIU2_ziaGw5w!a08El`wd!rvJG+=qbcVb{}--a#!8Z2YJ8r2ict;fxd{V=exhMi9rU` +N>mW`hsy7Ux*N@8<+;?KpfLhm+TG*0oz5yFsA(zF}W4HJfXS4fe4Fb!RUQJHlbw1`gBNZdO8I#x6>5_MyMiW7M|!=ouZb%@GD$uFb;~9Z#cydR-?C1CZ)qn#$?__{o8X4qsgy*gcA%7LZ*JW2EU +kbr6dC~eBnPEny*K|LFJ6z$*KIJz#Zac +o8$g8@`_A--P;FC`9*-f$2YscjaEi06#XFaepnkSFz2+mN)zm2l?R1Je&71u9f*QOf){+}=6mInIA0b +2Y8MgQ(O-%#@N{y+Jc2ui^ugkd;Df;dG%FbRGJgfO~6OG>@vQD_V7uZWUI8??abA%V9P&3pxqbb~kw` +4k9Oe{O|Kgj|7gLquc+qj>wXq0c(}8wIyCPwee-uAbi;4q;;R?LG&>P039+Fk3y!m^$Rx0gSesR3zJ= +ZkK-zm%!tdGQ#YOBZIOJ;TQlAOCJEk}Wr*Yyj0!*)O%-xx{4*qWsw*wyv&bmL)29>@v3rqkm- +zW6b@R=N5pc34>;e$~&rw67ZF=*{IW0q|HOkL0+}ma+GTJ@YX86%S$P;#hnj&D4WU1&0TJoDpj$&iBI#|_fDa;!d%tBc2T!rb08_#xl(WBnX&D|+5Kqfbe}y{F!5R#H +H_+|KRFUSRSXXHH0zPJeuPM`dR_*Xuc3r$c$t(R)SqXwj834|D8BRL6VSnPG?Y0cc!i9-nq5aC#<`>! +{unnipGXMln^oUCB_6I9y8;o+gb&Cbj0J^E11qwOk_|2+x2vEP+7X^#_SvuBk(v#~sx!XrE^3u7{Q2K +D%J=O42EwbXV(EE=9_Ix$_dFtVW!g0YPkxK65$lS{X`JvLv0TK}DP4vQmdz!!5LlW|w%BWdo}D-miO} +-pg20JaD-%un&QsIGRfq1$R{7^~ +uoLD;xeY`Mje|oQWv?Vm=hnqL<<(!heFPB1aXKkGDQ4t*c&0tK<|9R;M$Ohu34NXF`NXBXP) +mZ}2|Bn#1;JeQe5?t9(cITtDAS6Y=k@JnVN^*yx4Rc2euM3vwTmf;AiLCW>-Y3zp=kA9M&t5$+#bhhh +CyB~tJOWB;9Fr{Ce_f0bL!D^GpPA-p(|ToO}|sL=g8^L;a+T|vuWkv)PlxJ%7)_$4VQrLdq7R`Hq#Rk +zT7fXojZa=CP{^4r4+0Hys??{%PMy+fS$b5=Eydf}MQ~E{{TNY`8Z^MA-Mv{SQ*Eu*_eGH>7Kv-z+8?WP9y$uj=4n1p5&-$;j#H24gwgttFw=5xJnjFI6hYh^}QuO!-7n(4taOcYvuXMi$ +P5|G+Fa(g!}@8&&v)Cj4^0u1xv#Sx74g2Q#p?^E#t!dI2S-~2?8S#|0AQh|^ +p1LPev)`pBHoj`Oy#I?hlAFpZJ&kU`dP*t%kM2~EZp-+mCuD3#yKo6a?}BnPrl5{%RXIdm3%cILOdl= +h-hVSOhjWwgu;ud=lxDJEgQ5+X^gMC%P9+QFSwV)8X&mHjieswRq4uAJ0^P`p`?q)?($SgdLM&OvtKP +4X|Z;KBE~}D)L8}P%Qb4jXTjJ2*^Ii2yd-vs1nv^`tdjWpYNEn1qtP8Sd0OV6EZPa)MS9+c@2unMu*{ +{V9pHNwWFR8~EwA4{%G10?o6au@fWOiCfnVv!N}FL}?D&0-r8aWs_IawA3>29-IqCF!fSh5$X~l%TW3 +vKKf}sA!B2-wPV-{P!E+Ft@0bz9vgQE*stABvi$z@t^VqHjEZX+$Sfc|os55h$MhGDFCz;O=;yq7-L+ +e!O``kUU0$B1y92Lj+Basx3cL3yvuCgkYvl*v_(E@RnGJIQp@OzZ@+b{wmf`*<>Qm^S^Z3SDS?Ak=mb +Am@HOr&>atb~59yB->ocwVDmevv@w_*KLnT$y1f`OZ*~b&%9$oRXw4kzxR0Gy_yTaVa=0OxpD7bPZz6 +G>dd%a=TXsXi%?V@brkp9)4@f$hmBi@c_8NDRda=u9o +alWN@#md-D{klo*OkYhTD(J_d6zMc8Noi2RVAPZ5KB)$DE@7)~B~Txn4}IsQ%ywGO+zbi&p#yHuqR9j +1HPjRwdPHUIa610U%0Eo%Lbk??Px_%jy%ang@yND*5s9N*H&5D3H|3`1cAh9C+hAr!+Yg2bp#Mg0}Ca +&*%bHndp*B;CYz9NUBgl-l5NgPQ0N=Wk`=^XNDdZ4kFrJiMWcgf{UV%HLRpZ)k*mse6zyXZK)rH*Y92Dwfs25*qMRl~kZDll-~pmHkH){O4>j8qu5v)M^=hYa4 +a*0l;X`Y1prs<3F7d@avTR&WyH9ux~mK@E4h2qiz$yU3__w8NM(}?^dI5g0-o%_Vp{^Dg~&_Q$ +J>XX0@7v2n*ytYs9iU7GH!Cnw!PZ2q~vKBrkTj*4L#JW@Am}$?Q}rs +6EjW2JQRmdIp3AQDI6(KkQMc8d>+IM +KtUnaX=Ib&#sqj~<93eUf*$sZ}6(G(_cDh>uwjD9XdDcvv2aA`Eod=DT^=0jtL2{=adwPSrzhQBB4Z- +DnqzOK0RW5sO;D;E~ICGD1)|5*B-=`RhdjtC*Jz^R)k9bUdU%^u_)<0vNCsq5LmiBr3q94*9th|R +g$w|j8R)Tg2-A!=Oh)6?~I_s$z8-&9?0l~aaWF}$MrJgH$8uDu=DPEHUJ5%jc_zcla1_)IK@O|i5!zH +?(H1+p=d2j?!>#~%5uFSS|r{>Wg?Iic0$Ldr?d+oW8j5@%6`wMyWzp=6=v*@F2zM>3l72Y#GuQC9y17 +yE$-nC4?)>u2pi}l9!e=42SBCs_|akcW%ZT|QI2m~dbZ=&&GUq-;NEt+nK#hc4|JrN1byhQ{vt%lOY$ +OlqR3YQGe^Ye$Zw>GbApiBrKWCGn2)4o`f}R=CbT!r1vCLbj~z71Fb}XA41FJ>upo##=ampx#?XyaV= +Iy(6`qMJ5|$gV^SFLhCs3yZG`i_mSYG%_Ew=7c81i$FEOcX;FGuDHRIQP28S71x%I!ieIW2El~cUKyf +|Vq;u#CV0e}b$KRs9Wt$*Yo7B9yCA$Le6JMI-!om< +X4JPmW9R&S!;5ya1)*O2RKKnEjD@Hf!8RUN-PG_iQ$twQ<>gTugV`NRvh87xb0P`j09fmeFhrQCeUtb +xJBm--7ayxOxeqH)|IC5jr(ZiJwv@@L!i0Q5wzaCXxPDRw-}}2%P|nC*MU^KhzRkHP-zWM$dkD20vDL +ZSY>0XAcCT74O#*v0oF_{#BkD$g^sNsC8qF2;e4s?9p}r;+OrDMaQ%Aly<~ZUJ9gE7gB6TwmN!jcz+B +;=VenW2(KlB*v5sJ{cQzISiFfTXcN94om~M3A@(&{+CI`TkByvZdP(Bqj&$inQt+%>Qd00*QINTKMZv +8MNx;Mg&nL2{u1GsblrJJ5MW@}!>~hiccF!RzU=>E>DZ0cS%13pgzdAT4d0TD~_QqbIK +#folCjvGd=$AF@`yf+O6f-NDR^9E@b&3-wiT|uS@=LhM{&8?=N-T~yQ>u6o%LC$y?z@EgYsO~6hb$0b +e??F5h6k?AA%imWPIVpAi9JFUC7@--bpY6xE?+Et_~OKk6jv!brGq*Y`&oShOfSw$*h>DyvjJJ0c +Fs?pbM@Kax9mwgc9X@WhF>M5P&0I*X-!gyoldVA$I`rRX=yqp#6Fu!_SCJYpZYYk#pYN7H@k-lP*JsB +b|-x!=>2YLi#mSQSQN^IUI$t2F6*YK{91+A{=?-j +qhDi>nXs(fx@J83d{;uOLZ-V(?57v~)oEgqS>p?3?T9Y!a2>~zPh#SO7ET`dy6V^QNGpa!Nf$KvH^9uqhEj!cB~c?#?fA$2CJ +UlretH6v&iA!RBS1Wq*=tJe;M=08XW|B9SE%l_A~`=1Z;3x5BL0e-}A6v7A+CJ_=RKoZ9(7)Qtz7bzI +RNQwXn3L!!2)A&8{-fbYy-#Z1Q8x&*6mTZla2Q=Ccm>{?P2UeGLg=qNm_&xPL8_l-BJREQJQ6D=>f%! +Jxip8sAx+3~Y3|6<7%r-%pLN>Mdw*v4Aw`&gy-h%(D>k6S;!Wu*^` +iF{1n;7*bsjLZ%>%-=w7PXpE4kQCC;ke;*=mFE;*T;a3CzaZMWz#haUELBF0c_EYx>9(#ri7O#%W{Z3 +(J(h?%eWE;d?s|_;=uYlia><{UZMX-+~Eh#XI9oY%h_om+RkSTro^~wz?HS`&4SaI?%^37A-OmrS&i8~T3UqVa-M9;oo3$u*86_UeWwhgCK+oyYU-AW-PMRU^1WvlqH +SJQ0M%q!bWIZEVgkG;6Q|#Q+5fHhIcK1Xo8#HvOW9v1E81`6Fa!;lz*ZCfGv5hqN2iAErhQ&47vVzO% +GIx(^_|^7)-sQVx{d)K(ABfz%9}uPp6b2~-hoQH(@+WHSH` +Z68HsLoay6k_b`^X;-}%Eav26#ln$y*&qVXmbZpAv#rcomKb_k5O`^vE`GdWu4n*OCic-s`hp8X@+=| +m*x#Ghuj-hZ0y#F@WlJB9YTt~crbP2@Sc<)f9mXFdf+XYIv19~FD+BG=e&oE^r>EfTiUOd8R+U~@Mh& +Cw>^dxye)ZJYF8B4Ji5zxdTC0AE94tAk*5kq==pV)ehR{ia6kM@3OcrB^$PAzFEvh#`xE0b49 +Jp^LU#W=VWqXP_{XlcCTd_>y+z-I+lT&7?lo3vn@wMRXqHu>g-3kH5n0Wq93Z+48H}=&@P$+*dpS3zH +8XwC}s(7O*K%pRw17@O539s~2&L@GJh3(djZ%dviuw6dcPJdUlm~DbT70VH1E5a9)|Ys*1OLU6U>!Gz +E7}+=m0Ztehi?MR>!7rU{X}9a-;rtkEENCGBa!c$tY|KpBemUUzmt(Oo#6`F!K%PVx$F^GM7!?jDco;ZN`&1uk<4rZ;-jT7Xp{9MF7#n)^BqX(*IR(@$;Y~Ieo=-sXOQ +y&BGcFi6hLT0<;kr!mv}nW~V(AD4p})@hiE&vDA&{dZ&p3dJMsDF#JK6XIJV5g@u`zvz-0516o?dk!b +Fva?+@Dl6--9PuG8xI^ZG*5iy1YeZr{HnqNMzML9)ZoUF}~?(&80{^S4ovObdk*lJm_(^39fn({f%{}J8(I|loPgMZogM}UM$3d2E?#7US +yFo>jZ33#a`ev~44l}6IWXO#S46 +hC5bN(1g30&3vnzb&=;mFZ@3fQbof3jmTSiI_{suA=a6|F+v@ODiY}mPBVY;2aLSvS1TT0-o??JxzmW +VcKGtIsVnaJDySOIeNny|NvlD*-7?X%upny+5dUnU3-8)RbDcLzgADk^l-u0=#;&NF&K>8LsFOZY54tUJ?#uZMi4OQ5QyxkYS+wd9MW5J%WLR; +{x{xS#FWBh#Q%$UeaH*zO&eN;AkVUDlW2z~>*us39x!2|GuFPF9e&IFzR7fOQKsvEoufddpSg&3K{in +LVBvmUC?h;T;exTcWi!_*?`s1USrf2=nm%GX0Wh5(m0#rGl9z`)C@2xUHl^7d38$VZA;>@cn5lb$z7l +Gk0%dY)Ta%Uy|GIoT3ZlJbW-pJCrsW_ryT$BNx<#>AJ*a>9tEM{9eRBhnufU*#|CT+uuc8$8$gjYA_PB1S9<^6qGlNrvPjbV2R$|TIDu3N0TUA)lpHP8ETq{>K5uOjh4od7Yy-MN_p9FgI;x +`qs-D^(BZ)$@4iZS0yYT6LFDC1?}>9*i|ZJu=(Ax|fS7V(M=PJ +pQDous!>FEC7+_LY`YW*E~Z|Sz1iGW0y}*TZ~hS4G|Yex=T2Jv;g`melWK0;!EUdwd*=#`6^oU;(}~F +V$&H?9dfOyp&{PRv+mIyM2g)gDOcYK`UoHXvJE?Ph(b(AFT&Q7Ay{9~LkpZ4#3(KqlDKG;<;w{t#Y@m +fxc-Ba?g}K*JW@xreAl(KzVIjg{EY8)+q1Azm@EwgHNGeG +C;DLdE`6%I_`D@nSkEHC<6tKeg*I7vbnLF>4hg4_O^6t&quL(>YIhg)3l3n<_K3Iak%L7?ddd$mlc$# +R?X!u)3{HlHOi7I(sA_|xWv1F}D<1{yPKtNNq@OMWbg+iV?u&mZ59?y_MuJUZ4Vlk=E;Ea}NL~dZW8m +?v!E5$BClhuQbWu_{qKfTCw}E|a;(1*6$Mgl?l49C1)~nEhOm9k1ZiJ*n)lQT|)eKr5L$JWdE3~#weG +f03wSyNx?4j!3!7Sd}8R9kOgd-{1AhnjBCBmrZ;e^{#863rN3CVqNeGHeK6k9{6FnenC_5hzskb5H=N +MuGavbr~#>&H(4k5~dV?xfyxvtl6C)wviP!}4;7B6HDPO@9x+7IVh|rEczI`Ha{#c)y;&8(XwG-bpAQ +PJf&6ZFR}EEb1F2`~KN74Cf0=|4irpqUSfR_UoaaYnWjOgkb_kDF{P9rC{$JJ66h*;#(%{wrzj1#W>@ +Sw4#sjZM_X>(br;S1mA>M_`Uf?9&Z}OI?PIvwv^m_3zg>Y7%P!%L#{lD`dyedi?+1lb(9 +3%3dYcABY;u9Z7Q3g8!Lo9a;~si&jivxYP*C^~$A76>7#jtvzN +;3ZOb3E+rPSYg +fJ~$-3=w~iNs@;I4fRzU5;`s0|Naj@*j<=^h)83TU&@Ozb;$!84C63W@(Q%7*)H$qYR}^Bh`SRU8qoa+0e)CG>ax>#p>^wH?ic|r%ZzNEGMcnak-0!k;F=u>Z7y5lE-K+ +fKX@`h?Yuf4jXP=sEA*`Mng>|e{NK1!FPq`3C}jNGPW0Lkyz&1$PN{~HD4&pL1N$A+E28|V#IyHG=G$ +EQ~=$Ntb9C6;3DoqlcpMYZn^EN2B!>od8N&M9`K+UjJ@j@As&q8KCvhMAjDb^VB&i85{5bfT9jCQniU +aj`@}mY=gE0JN(~+9GLl +ys%I#xhoSH+UCm9X97fvh7QJ2Ati$f!`AIWY^8hrw){dJ{SlXJV`_616vX5UX!&l_5Pi9-nK+q%rogu +Xak;e`~Qr6p6zD&|F@$I)D?1Jo0r{037j!3xgck^9?vww^uIE@{5d_vku*`M=mU8isdK?*IKo_0vQ6b|Wrq^k`mzXEtJr*Ya%?MK6rlV8jCBYA#bEY22e +_Uwfcv{5;<_i$LnQz}5*q`UWqwItl0onD^@oUu;)l{mt{K6P4-#QoaZyvcAN3ctDEPB>&V$-{7hR4Az +Rhs=TSW{@l*l%h-mfDzRz7w@);u4FEHV5@^q-L;KPUROOcaXbqf@6{J0!7unP_{^g!&W7SBQqk=yM*9Zv|_MFT-59BfmpX*)hU1zxUbwv46d1LHB`CqR3M}zcjZ4z7IEKyVimmr2J+8SxtT6zGew1m<)~nOep)zI#Vl@@}m?R +UdtxuM-Br~|3FFjD`n?7%_zDd}oh%#T^cEBwk1!(h|ci%ne;5I8mvd81WULZ}%U#a5WG%1xYhreF+SG +*|bTVm8(@QREk&D0CTz6{PS$v;7rT|F<)6Wd-0{%({^Kh6FAtXb-r6^8(7WhN=*$K$o|`&uZm?#=2iD +>(^k058H3>=G`1L>05RM-!~xj?0ls>C9GA&6^JSut402JHrw&-4ArFWBZPdU8XnBx`pj`@=b(S9A{DL +%uTu{3UnI9Nm4`)?xNy6Ij|!MMI74Z`6XHtL4H8#k?rv}OraOJ5fT(#2Kas~1;sx%_$eAZf;JTHSbO57{u$3VHf +f_CkCo{YtgQVHIBO3J8tj0UCJqd7iBbNkA#!EaQ?TVmV(Fu!mtXj>9+Kl3MPO4zBRJ!Z`}nJu%|7w6H +hN8j9E~~?nIRQi{FCz$LNjmfa!XQ@280gU7?zIN#m2^L|z%bk-Zv9Uka%hs44Qgdd^q7L3u^L;3D8bp+RW5yeU#_W+gYaNNEgda&h)Tnjl8`T&m&Tf@_0F+ +vTxs0B05`|IH4z^G`vNC(si?Ogt_tZ?8QLbzi<>@UP@lkxb9tv>h@~uFzss-f9`HxbnbIMs$r#gmX6L +Wm<&D5bNU)$(kQ#cUY~jX$rWoU=w68RUhvq|a}~K=1N8Dr2EG_sDhW;dY9L5H(K7_Udcc53 +MfN%3}$_9bwg~< +nlh0iE2PTK;?TG6yFq7~{tKfqg3}8dOeDeY&e1!N7^e|uFc^#aA$h1@fG7I$0_H@oWx=Bo4Q-p8LgG~ +YbfOIDN{A)7oY*VdZkjI*=px#)-&=(pp_s79+@9%eR5Bj_N`<>f^{_g&M=k}odpD1xT9dU;3^N`;a%q +T1O_1Z(1oVx0-=5&kgX*fNf^V#Og7>m=pr`e!E!A_Bh693GMH>XxvkqD=KM)~QYMg(SMb(W9qSyF3GEQSq!&T=J +DwSO+Ygg_jIqXf&;BM~@?H=!FjfoD$lxr~A(U48_m$%$m;fg%x`~9X2f~52*d7z)~P@yh}J6PyJ-mR; +pkgn!J)RwBRqal+@L3jTTb9r@yW@r837m?D#w?qzT7vnT2cPOWtJt1*m7BL1ii{pV|;PhOmU0c +}Z=Mb580{+3=(FL(XqWncfW%xjJQWt0s3oqtKR|!5@B3%}bXB4p)=;x3#-|{b2MuCg|hg(ddD(lw4}X +*2*>JJ_lk5k8wxbOvGjE2d!jBrFIvhvsZOa_U&5KDOZd+355uyQHxc9MYwEmH0 +X6DJ03)-A=)YIlsvVq*^xW-3gRWQtTiiHQlDueAF8Aa0~CaD3-q7R-N$slRjUjP&YX(=er-mZ-4qg$N +%`3hyQ@V|D^>!aQG*$_>LaT;3SRU*b2QQOOq^tQ5eFqpI3|5tQZ&`Y*@S^7eWHA8oANIu#MS^ZmB6=Y +=z&?v*I<6X4B2S00q#!Ca`D*P;p(G*eJyr3UXjYuKlozQd+5oo-{S7!A^L(42ZHgJM>~j ++r$GENS_*xw#U4Ct&9|=d2voY#Z-gd+NLP5a-qON(AHod6<*RP8Yy$)$zWJr~-7nYQea%lVleI|1hur +hm3E1rz^vA(7Z+#;!ZA$O_>)`79i<;LrFlYL_zn&Zb<`MLjoNIh{3+FGt{5n?i!|%R_Jm~M$C#N>Q@g +(0>jr=-r6`e?P(-g29VNw=98r5VVuhPXgZ5W;FmAW-P{heG@m$VM=qg93Zl-lS8DPE{)So`XXSO!HMQ +2H3wHBUa5F@P$yumnfek?XB7-)ynFoqC+ObZyX-{3F}V*?5gzbioHvqx_>&y$=eFK24vZI>M>SQ=`n`ohLiHrzUmG5OR@kO9IeEgbqVu;t|KUsuee#dxVAVbhU7e(1=?3?n%x6*P*Ev+vwO?Fl47-_IUM +zVEAuqhrZN=$sGOr)ZL@~H*nXj*FZeA&FO+Rnk5U{2C7KuBYVYyK;xm4iiYQV@bova&lK3k-hISy&Ih +twDt>6VTmb9|73H$G3^dB?6FWhIaIy+bTZSWisb!y}zct#e;=!GNfe&%J(*@WbtB@cm28X`2&s{=7q_ +G|vM=&vy)#NosvKG`D0;W=Kn?JWIjtC4adG=$dI|QPF49Z5~2BjqoxLkxT3^hxNhA*attQYqLR_qxKT +rND4F(ci2TAT2AS&MK(g#o1vWf;MW(?apqYmthP4aK1DwsQOfQlx(f9mMS4s%9R$+; +BMDin)s`P=ZMEk$=LfKKv?F4{@5_tL-o|Kxs51pnq`A5in>OTN=vKxvY~5sD;O1ZP-`KuMM)aUeUy0v +DeZY(91HNhp9IptHBps@8mr+(t!!fIki-m01Kd5Lf7-=zr6nGs6JCc{2tF%0FApcFnhl&6ofG*%a`&K4}LUu4gzl(RX((|H2F#WlrRXADLltxJaSJYah%o(~oX +)(DJe-TkA9DJ4~^JOG`ngn4C`jCd%>^R5DQXTtM>Wh+kzDmaoUeYPJ^*jn5qMW5W55ul#Xg;3e=+>@9 +T!9}MwLjW;6gy@<>o_v6{TT;72bWM|s8_+7#2o`l* +bORUA{u4=>lP^kS5(uXi&sFJDq?nWDm_K>_=t?id4ml6KnSpu61cvHxskQy?5){8!mO}^*V>%5aF#Dx +Ykys$yz_4&!fUJ8voNcB-FOjVvv3B#Pi-PM+}hcQ#_%X7li&EUGemjVYts& +xxZAHZ@%c+2tO>NNT2lD&$F=+6j|)U@q8}bBz%qDSi-lX~<77sbWihlj~vy82c$e7J +^)sO|HLeb%aQsow6w^IvBpE|znVv6CWICnXv+32jeGi>!+Q-Sjq{c^NEtytbE9yoS7iyY66(H`j|pmc +YlGY~*!?xG=B5AXswff4kQW{l%SwZmY%BK9V;L#Hl#+HwjlPN6n&J1xuwzk6%WE0Rmovd*nc40;&gW6G9km0YBG +xKw+U4mEzM;Nw`{o6A$K(uAa-WV+tpP4`TswzIS~i#SWM6Fqi}H$Cxq(uY!ePeO}Aoz&*YYk^#clU};sXp`MRcaKzZjHiV475wNN? +THc(6Q3*hm$Of2&b*g~Fsfnx^pd0&8_K^q}SLDG+Xso66?MQe>7K>$erB +H9`{vRed~VW2?(h-}oqnV;%%kzj-lNw?8D8qn5&qSq#6o)Vzsk#CZeYcR=fswL~oSPYN_)c~&ND{w1YQexRkI3_iGOzS1eG`^tfzaCL6!(w}^XgO +y-^!UgepDwQDa>D__!ossaw};B-x+ +VO}oi9j(7uT79DyqDfQEuZvSD7#Q@dN%|5WtB^F^f_3XiuG*Jl{BD1c5>Zpct53?N+w +e;LX)_%$0Rcex(rAEIZ0$XaslL7spN>zQ{O`t)0W_=D*V@RBc1J&<-?8swb$;*K3&Or%x?=3{N@|akZ +-|gYrLrbjyh8+UvXAs`F7Isbroml6FkCpk7mXj?aK|I`lilC;CVH8)^@*WGr-A4>6@vFxoF6$dJiOXn +5M#MS-OfiXAk8CucO7weH+D@O-Ak4*C;E7jxr0FgTO!@1y>6Nzv9!2TV`}HPec1ivDP|dr^}BkAXNv0 +=2Vqf#X9;8feB`B7Gdr3aLdy5oV8PSfsD_k_&!2_)=90%VPEAyG>K!8svwP9z>W~!OnKPV>em9y(`zU +T%&sjcRtk&lASf3ORdWet7IJ3{OXtIWr*^UiJ47DFe9fM6LKi=uO^j?ee=0|bQb%P(sSrR4-A$_ThK> +wJ2_d`Si$>Ke!-ON4B4MxKW%ZKt)vy>34;Ns`C5#fZPD2bNW0~E)Zcr4|eGacW#kJXw+?oY=8VW}j0+ +2@#6HSGVgUV(GQ5X!*bUj!cq_xj>eYVQBqPg&UA3 +@AxsGtQzb%p#q5s3VIHdv*lf6tfKumN4w<++AC|pQoKaeM?u`;?E+&hrDhBbkK<6}`e0d< +zH$Svf@2rlzb6L(q$cf?`6r-FUB@p!RxQNpns_C(fPtDU>M1`$tPdbJBq)eHLjs+EsqD4X@8_8VCD=W +Bx^tGmAKtELz~MbQ6)%l@Hw`MXR05>A0K77H5M8MV!?6`PeJyOF{(Q1YiJAe4oW!1aQqJ|AM=SlI{#> +gk{{kOCSx=xsBgUXyIR@D=UKtq;FmE#LH*k#dFHpVeJ5(2LJffT$%47;d0nkAl(*yHV>__{PwGlPK78 +hHrjbn^6`pt17^5C}wN3Z_dvQ4p0|#`O~dk@XLuj5eINO#=nHq^ZzM0)dTMQ2b`+1jT{g9HHjl&mJyy +}yHBs|m}2?ubg;(FF={3N*=+h~0vOSs=Rhan(|NexhF9oEeEkz%ncsp}=tq403%vT_qiB(SCQ*k8lh93U7Y}x6l{7#UGQqXV@NQxIuo!B&%U3lqBv3&S +7$_Sho6jl*T>?pG~;O`}msTeV@RdRY9HU>G`7Fq8CQe+LCLp+l&i&-R@{C?t?L{uVmvdSuMY!eE%2@O +swBL-fzNF#F{kfw9oO>Vvp$55a9!X)KePj4_D*m&b@MkLq2F`+D+wUFA2ZHcK@ +pl<&PBrb+W8_*I@w*lg?Box!4=0)IFK=F~_~p6xkK*sjXz~rK-!&G=!uG+s_6am`P^yXEt!q}Qf0@!2$?|e-Ui;d)60t1H6#kVk!N-`x#hyg1t2ki3#+34RJE1gOJza +4bWnJwdFK(B-XYA-)QVv+)DtpNeDSud<9EklF6H6i|;;sB4yP1L&BrsdbKz~K2y(**$+LvavTtVoQp0 +Pum2^ERi27n^wYuaTGrt@cOpOC-L2Vr}sM9uhkXM}8pjnvHyi#NUvv|2Zl{f0yG45UDo?M +s0@7z%b%n22xf)9pz@-BkIGmyL-`eWSX%!$BmOG}WkHnF^U`L}#5ADQNruK>tFjm8t)+N#|@gDy5Ce~T8KbkJ;q;RVF`4xkh_bncpCzkWUu)yP$c;6 +}YbbKb~$FbE~HF_~^uiH~d?2}q`!wD-2Ua2UYAi20k4Ja5{@e;hc=yBvS>*3SggB{L8_YzgoD^uZUF+ +uEVLuE~f$L>h{#MD4`=^yx-t}xgpp$1PE*Yif +_Q1gIz5dU{kTBXRptk)3nP1{noQP=O=@*$8zwr;yqf;?mcuL$`AQ~2AquW$IfXy41^$Z}v8=yK&feW2 +F3%=oX|#T*AO3BbrIYd(`^j(F0`@(Ta;(dp_q9CDmIkF0S1;CA4J~`$(yjRU&e!I +%K&iQ$NM;GWmJ=5HMKfJVXT4RoFI<63niM)wEQ`$a1!}!Z}Wqc8e+p!N9=A3CXuI}?GEoT0bLyaWv%k +Y@PZ(1cX8rImCvg^?(xL*Vk$vp2&BXEk+hM&;)SZ?gO!AyU^B<*yW4?+hacMLZUJV~9GK_TLJ+J@T%omFMUv}}B`r-1$mm%z$rFit; +;pD~<08F*7C;o#1N!j0L;~WRr?ZzIY=g;9&A4L#F=C{wzrb1PKQ0VFlj +PfQs86P}pr6TC6YzuWaf6y +(qAqJCnoP1o#3aYlw}+0RFpG|l5gk-0jCR9KG_J>Efu+?>LC&1e!skO06}2L^d2;p0cO{<&aeDjbnn9 +|-_vdr3$qda?rUeCueacYe{*9(ld@tgr9F{wF4mIL*(iukA>3K{$LsUh6#&<$PS^A1^sJsq~BgghzV9$&kI893RnQ`rj1UNPdXSAn=}KjO9YkWr+3%A$9uuU(Q8sx_aDP(P42 +G%zFWp_+<Ws$7^wAAf5HpbK2Wp{l +=HKe^Jfr#mfB5P+ig9GmGLUE#;!fW1$Z3F70(PIiDVQJ-l>2X6{EQ>g^?Sd_{R^Z#V5-xw3Pl*V8uWhxFQQ$fbuJ7uO`5!fo4BN#%yzWU^dUe9N$vj49Iq1o45#&ZzjQ4IstRk^d{{A;1d +5g!Tban(-P#j>#hnE0N_i*v&xxGK+kLOr(ERwQ~kfIXeZG*+A6qciXW%aI;19Ly;kfsSld+w^1a)?G#DM`UAS+S%BHJHDJfMa4Ux1u?!pzs4!hr_Km=gzxjAY|^_ba&?$Ayn7j_$qg`4 +zxtxkz`bh;2SX?X$dU&A0<(9LI&vk^3fITcBcr`zGRurr2MK=a?pwSoWws<`&FK!Qp+@V>@N*payd9x +Kk-9W%-%mFpGPH=IG>sd0suSWib{}>hdd)7<@31E+Yi>zY&ug2}Lya#PIjR&ULTz2M;t+<;F?bu!<xXAYXj)L)tsB1)v2cjng4 +?hngiA@=1B}YH&}ZFztdXW#=EJ+ZoS@^HGM#+$fGmqb9;rEG-ug036WooCMT#_?YvILX)Zw=oM$Z58C +Bd=2XIUP)@tQJlX1cAo=4)WMm;^0PW}~*F37B;Prn_4oltMNI(hZBh=z{>_`!;;F=6&nk0V9P1AYl1R10y +j9Sk~@-QGn(1AHcx~MX7}>!TLyrvJi>H0QpEz+$zLdkbgba3{MPZVhm(Y`Y{`Vz8dgtwLuqSAL$`_eg +h60s;o)dH(ktdb^;EyL~e1S9teVKKOUS8KbRKyE%#m7SCwrU_ztYO=nQQ>xUx-xoGM+jHWy)@YX%y6- +wg|of%?^)7bIsuur!TPbWLi{&`0*Rl|KOh{$>O6OLdcrASW{3;owm3=qkKr)E~|_@pR167xiaY@upe#8#cpS!X(>q(s}xPjl?;p +&Kc&AKbMc34>Ql$>8o`c4ljj2e>jaH{%94MJvxu<}5Ce}a<9b|)WU13h5u-1L4mD8|m1uByG~?_By!jp( +>W4IIAA_Q-_P{n2@fbe%o=97ME!_ejLwT|{|?(C{L#mD#d9Je2k|j*z@`wVhBsoKjdQny_G)j>+e_j7QZNrMuBn$jS<-T6(JGkQ$%C8+1gDg5!q6yHTPM8 +r~H!pY~8^$19{Dwz9pZNd&&)`Rult$KMJ%LvCT|^Nj8kbw^CxUl`&HQJ}Z`iVX16Qm41e3Bwz!rAhoU +nRH!IW@uW5&qzcdf~>_tofVKQ@q +*dQH&%4hRJgH?9OL(Gg~ToGImIOMBiccKy1q;Ab&+|Kp*m}m)o$Iv>4#(AZ6E9&`tNKX>>m2>Y#;0%` +k4;*XENM3CY5gf^ANSx7RpPnwl +<;KNm#AvD39Uvl^8O<`@gl2oq74Sz_1e;;bQ>nA~^t~lIKk@xbRWFf>`voa*N_lIfoDHRii7YH+7(+v+H-#j&!jCHIYD||bG8JBT1uXk(2_gkhL|9=^){YmCErqKSX0?qgP}^umUyD@rh4c6l4&!x_{A +k_JnL>nQm3ObuYkR0mjzb#FNKNjW?X2(pgw&>BEkS|Wwv@3kRk6T +N@V4Q*}bk9OxL!J$G7M;=)TlFDQ1%Hd;hj4JV9-&Fseg|a52Y1OKCbiY(j=!l%;e`gD!d1J$*GJ;j2mRxiEY*nlmZH?!G3U`E0%oTW?kb<&V&lwP$xyW`r)j_& +M|NHS$L9~D<)TlcwquNXHYc{9{gF=s(`$sIYKLE^LY^w4{2xwI*<0*Z0zf(6uXp8IcaID`&~oylZ}QC +s_PQOsfpIl;`Ke|FZmk6B}N?YSaFwNrMN(GpVirsx91&4T$dfadva5d?GywHUBx?l?PRlL19U)$HP;R(xS7wGdQ +6@YHapTT-PNdeR4-TJwP)|SkWi|y_YXr%ridXv#s@=SFtvtcP?^2d_MrCI-DcjIN#wdFDa4xm3wq$1$ +p~NG*aAO8Yvj-lKf>uVcGJ6X)$ayjnzRQQ#DTqGXYE-@!x+C2HLaJnD4!1|YZ;EWI8)y}s;8;$_gttG +?X%!C{Cv8?OVJ|fBZN-EqU&^IUOKXcS?fWht@BcM7uQ!@_fT9N559L#r$m&~i!bJT-cfM!PAZCC!){# +nWi%KJAht0WY9P0MB4OiCKjDOBIpcnc@H5B_MDEs&g=l=)G;3$RT*pGqTKR)>*mix(x-} +Re63)u*2Ysq4po+k;So;CJagRV6WBDW!UHU-55f&kxOpBK~#c5^A&$Yl9eSzmu7=q>DH0EcXi_SPs02 +#BVjYOsb`=w_b6{%j7OO*Zis1hB={NRQ4yMSP9d$jyta*kZ{w5X;s`69@ju2m`K{QlL8xDk#~e#exEj +mSmGdMGC+}L$@0wekpq<$AFKGD1R0q{t`TFMF{7IB7_qxQVv=C_)($`-7X?CMP5LN63z(eh}L_3NH5k +odut+Bd`zLsh>jKqeiH+wpE+8g<^WOkyOzU-R^8G#8`OmBNluM+b?FnqP@OEQQrO3WNfdhAP +Y>-fy&3u?8&BMtPUSv=Ov1s+=e}c4)NtH)0dvCqTpKQ`o{TXe-X5j9n|D4tTwPD*dtLX+r)hbN-}1-A=I7bM&`fPlG89bU{Q3d?_Oo=aPKq5CPgQaF^_XN4uyg77b)whT7@n~-{8&U%jJp3^(NVV +@uCqhwbF!iD=lW9mr1Pg+DQ!R(_$+Q<9N`}mSt{<|p9|>hSUxl_f?F*u&j6EvyY2NH6#Oh&UH +jwPq9e=sOXgs4qYAuAK4u_P!T{&h(->A74$b^dwPbkfj>hU9g;m`M4y}+Y|ceUq3dpKy8yX$skb54SJ>RR*;J>Ae*RJqZ?riwC5xZb(b~~ +yntD%5ITy2iypC#A6tt^qdQ-2dJ`u$4J@kF|;WyN3tSguA_~z1^sCQcy==sX6iKU31Ldc&~bN>2p`RY +{?qD&33>3woqjWl&*N;y%d8KR=6bZ&3-?WTHgQK!rUj$)y_ybLMr2HAw}Zi0VTvm68C1ya>5w^KS6PL +cekug`T|IeSaqn3%hJkz4|)|xckaI$EaCs1VCgqb{ybR1e>+%OqYgX;bUdKDlYNb +p3I;e;Gt5>%DmLys4H_dw_PIJ;0#saqbM!Xr_N69;P=GxEoTd@L2FSJr7!*jprrTgPxYSP_SaY!48d{ +~B))1Y5nijrUP~%%$2AIWejJ!4W0^@bqMw}_;S{)@qqaY%$)7>AA%F)fwn=QXSD?kVH(*pm~IN2Fnk@2R8C9HEmrC+us8io9`;m +#HyXg4pM2b$2eAX+H>QO{NlAin6g>tTk`!WyCx<{DGhQiOp~cvhl1Byv8F3I0|3r+dObPl1ZiJxt|Q~ +h2*!UZiqY@&wT)!*-l>yM|(PbFb}VzIkM1W=|r)T)oX>FKy!C))%uIn(LXAAL$kXSud7;aJ@4_rg|Z@lo?t&Kh +I}!8jLi&hyO%Hs!OYXvf92k6kA=wR*dq!nZ6hK|GpF;Hua=BT;th3+#nnn7AaPr>MLpQ +)sqF(IvjFszio3@`;&X$If1f|{HLn!Z%;SHbp15y44$ZT#Q}E!u>nj&?TLi?1{a8J*;pK+2@z&JS0s% +*@d#q@s_B)X-IJk&=AAVM4FIYcq}Qmk&8;=z3EaoiKf;D9+V8GrHKi^I>4@W7l^yA@&&Cnta>iadU75 +UdK^|(L+6BXC4?wjVx(fUlzP+PP@vIp7QfFhq`**m+|xF#nm1 +%Sn-Y3%le!=8-A=mW}81BA7~|_&HYR%44*{Teq_>oFrviSa +qTprE2jJr$h2@)G}Pu*3=68FGVAx>!1QyoxX499ihH8;P^;J`MSmzxr6ddzw8jw~J-Y`+a3}Y{Qf3Bg +L9o_p&g2=52eqIjqEp~Sivr0V8Gxx=;BDvqf)E@}d>I}dy1c +NYO$A}k_vtU$WBiQ59r)u^lJ9Yz?fmzn+Ao;uV<#NyhR +Xx3|>nUt=#YDyZD~N8ah(t@3v?j;w*j}Mp^Cd!0nr#c)P>Pb(o%dZ7_hL~vi^g0~OL~K0**_q1{s-{g^^5FZUu1W +`ge_lV7-#+U2b)Fe9$R!U7JrTlD%Vuq%yIsB)fWbgP=FWz$o2dmz0x0a(7(CLFPWfO^3^^*VSw`*zPZ +gX2?$}z&7~JB!DsS&6a^ywYh0H9%s;2hH# +46E5KGZ5LL^F{7rcg7YvfpzKr>*y0FeKufI=j)3HRhID4LN4&_AFHpdzqdc#Y#q98g689~1-K&h(eDm +^f`S63@S3f_~NI`61}>r0@+H3wQg7dbHMke8ZTL)6Q$Nj-Qi*-2$td52qVV${)uS4Aq6pp%1SZ`TLW@ +ZS(<5;>9F#I%waJUo1H5S6oxh71;c=pN@_G(ha&Qx@0U<{G{74@qiZ_VkEPo@J5STD!sOD9=Nl?KKA +=;@A;3s33$g=>Q3hU<~143JL1@rHtjglaq#&dPB7$|bFhzp-Z71x`jY6>C#7S=U$f?9*RekT?% +5+HK_cR5HOFgF*M_%&_e`MJY6%Q2glW$T0Y_z=jk_Z +62X0ov7fd_z&jOe=zKPEGYt8*xtaD~4HmT>uz>Ydu?zmK$!b%{5!cDb8@MMVRCC(N*L?M)R7A|;L;mEjPlK2f@gM9*>RZJXYqK375w58e2Q@dqN +?kQ-a9Bc#l@|rj1X1h3!z%MzQ>;V{i?eWQbf0%D^h|#A3aN<>ph~X-o&A3c?cjDb$3;;h7$2T8F!4kF +VZ1pRZY8;=3+6tbuv$iV>PepQYdFK8K2%D${tmQw)51kEmW{Yvp*%uve&M*fZi`REKwfZM6{^Gn|#^K +{4QrCwmq7jckAiB+7KzFx?=1%1y9_d;IMYJhp0h1y>oXMQ{eeYUNCvMcDbZGFD0&v~NI=R{Fw_D7cTb}V|G_mtDX +aVW*Q9SlmszINEe_jiXAC2#$xhFnty;jM4QcnMi0JW^Q|-QglUoX7u%y!Tpm6x+5%-}#F3u81wXsW%W +-0)!Lp4R3@1;o<8qD9y^smAR^FpMB1axHn>EP6=U#rqJlE_t9Hxw-VV*F4wiJOO48ruQ0-L9H>6+D+^ +0$<~~pu7)0&W0FWk+%n;tCHx<++2B2A<{$^ceVYoa#}PP +}(b7g-i%VY>PBZM9v6rS70GLZWK7H^N^w<|69v4pcbeL9d11FG8;X75}y?wbfsfcy7(%r3BXXeq&S7I +H4Dl*xFNGKi;D)o)|$JiswwW!D0zC&J{t887*+m>lhYQGK=00(hx(xNxbjrAU1}Sy<8v{3C=RH2b1W# +Pt1ijnj`8vM;rqFGLzPjfLF{^QPF%du**GNJ8xC5s3v?Y*noe}q%REkrO_j0BvDo*QBov;K*oOg!@Ye>f*V0CaKI=HcH0(*xoE(fr8kbiJiIHgZFA(?zm| +>&u>XV0Ddq9TuA^t*GO`~I&JXLZ +NZqf$LUNb%dNtl!iREw!6L3IvOOzFT>wFpZjst&ycgRmZIwjk!bDyb0VJ&s;2<`zD!%T+DC72m31BLw5|5D=s0T_T7Sct%$e&?M&-%*~5UF4jx9jA` +#ZE40mBOt|~4bj`O=Ee@rq$u}ULeeAKA%FeQK69+4QAs%pT@)4oZxQ>KME^aeMflOf07pmq2gjf66Fq1e5qLyG^wY)w!pDQ~*A26KA{kL1KY%@#{ +K&sT;9(xH$Idi3j9+8&5a1!GBQM6mkB1y}xWSRg?-mr2k5>+LbZqP=BBPHQ0e*z&{m6Z6hkMS4S^|Gs +FZRrMzszCijvVJbNFnHv2JgA{E6h`Uq@{Hh}i3&A~yKTh|SagJYwHUy7?9xrN`fh*oN) +>CTc%smGys$+K(AHHvVd8e|KcS?}qmKk^K_^n`^z~tTB(p2~lpB`{d5tMqtHst*NX{%_M7UpenN~l{5 +FsylyXV4=g59GwJL{>kTQ}jGow;>TZ00qI~T77za{Wo^X?$ZegZfVg&>cOM|>Y%r~QMi9FXVz8KM*a9 +F;#ogu?VMfZG$C>7!c6>fZI<+EQ2y;Z@a*_?47cobEY{ZP2&`6AtzdFKebgxg+fK#B!<>?+)3!Q|?}d +n;DXTnCU0+#(FF{m>GN}iDs}W|I*sH{PuL$J3SEYdTz%qK`;mskpTZ8a+~^m2>NAzs|K##AH{PixV7= ++ex0JGrPLt_08w4)U)R7d45ELJ-1Z*1%{_99jU;gUKPIoK{_yw(?gcsdLbdvi3WmrPlV9J$pFV~!8?Y{R!bZ$Q_T@Pn5R3&trw9F_|MN;{tuHf*fK0b36C?9@zoIqRKz%FS +*w$eo2raGj7Z!e=<$HCy&Rd<2{BSqXqsnTv%Ph3-uj2yFiNfyd*WVL62}?S%1sB6H^HNvUAS^-br|8Bze>+R-_vo=9!`j$QLGMK#^h-bq*xgcs8B6+XTURiwTL_e%_krS=ZrWn5#G7IQFDc#MqrZx^`P^E5R)GkV(@uc3@-2^ +HE9OMWZ%bSq!i(Vk{%Md?+1*Gss_y!rQKaQCpu7JZR@38u!OiudJt@L&DU8hd}W?{@*7pZ5DxIT^$V7 +{Ndsgb@ls5E6!dSz(6pgBEglo0A{EH{uV7I7Hr2>_}PnToek9&<%bFli;uUnR{Z3L&w^D@*zUT$&uUc +aTE=YBz-@@9$y3ONM_N`n*R~_iK8A&{I0^Bz(@9u28U1Wo`@gI``{6uQ|uG{p^uUQc!c|dhe;ip2#2H +I7vCWKNd6CZ_>YC&jy}lXsBZ7kJ|z#v&NnjCe^~7gj$i``|8j)A-uBsdoQs|>e;uTy?~xGrBFCf3KZ( +L!q8AVDQ^B4t_&*B9-S*eGeS7P#OfJ{TxJUQr%zsmOUl>+5nQuFMsi^YOS8gV^9`-@^gQICZwl7k4`k +sUQdE@-}sZjg?`#;O|J+JFASw;IC6Ti3x__Iyk@j_Ma^X?d}=ptCO`%U|YJAyR#_4TiM1CLTV!ouJ67 +rGP;sneG@;9V0McrCol$UOnn=(^Z0&YbW;c-&bg#K{Er6sl +oOZXQw?5QhZFn;vZyA0($GN6Okb3VuN_`H+ql{%%BtAVKL1|btBfNo_V-b^HzWE?MWgYM$}g2eX~;vX +jnHwC8WoL4EVk%bS-J$uQKaU)X4CKs~K(>We9cV-A(G+`an^UcmGkb!KNmCJzTV*4_n514Q2 +nIxo_Tw?@nNV|T*7B-h$#ab3F;15hQVd2tub>;gsu|LaWr4GIC#=U&^#|DBsNf3dsmDE=roA~(ch9#v +cEL-e6We@GsCB91+PSRr%g=_6D}moT2}6wkraKYn^29fZ|+5aZqw*8Uhw%j#n>q2T#b0rZKdOqnrf +Lq+m9^`X?4^r2IuKkNEdHUCE41yG%0%#e$7Os?{Qw%r>d|JLsZnG4IWO5xT7L*-YqI5oXb +Y$x@(qfg~*^x(_9Q%cLW&k(4lI3L-GyAeJb%6b`|SqdbsNo<__Dkyqt=<>zli4(;OJ#`~}!YFLHxl-_ +be&V+PI3<-SH$%p~Cz5g)hgg`XAoU%ZtgHj;_myx+=y_&Rb{R`U-2ubYDJmOT!I_7`paLv@Sk@$4rZG +dAXORn|{04{pOJQfh8Kv)8?Y;)`DTXvLowss%i6S>3Zkqu +#~J!*PP0s%~_oMZn4DU5EwKUN1R>EFd%v5&~pfZrxdr*x;=_IsF~fdJg9(1cDz-BJE%C63xAdKYIwLt +UkrTcvd&Ha|#>o1d(h92w0{?dnVR5oia-g58vZve~yDjPtNbh%_L#Es80H0e;!(ONS8H2wHH@3PRLnA +?me(6_X>B&TiFiPTwVAfxMz<=R%|cMNmLj)&d;ZZo{x$|#R_%0vMw&t(fzf7#X6D;Afs!~b;zV&O7i9 +;X`ic_Us&8@savsl+Qi8pdXXIbGqQ!u02yzsGV`=;)kyyP4C2ehHfYI*4vO#o_*iDwZqo7aXNK^9-19 +pF_}gB8Dp!y&iGe#VLJ5?_DVzjh0LNaARKOpZeSjx7#DLi7-R2%w|q@L2YSj}ie1{{j9+KNvX1tKEsB;h%bKl!7+5OmXCJI!|C_0;E@P!mkSequU$xPe@EJ-EK +X(e%pdB#roBRXnU^zA{H_=Htk~EwDdKg>0nzi?=G!s@Y6_UO8II$KpYAUHUg64GT7Cavd5Ufz32#pYt +A}X%b0RZ)R=P`4{D|$BnY3cC-n`pjcgj8(*OcoG+I)EhOkmiB+E2`D_XA5xk}wkg)OD5Yj7*61#Vp~I +#}8@$yxE!&6%QF)s_Y-QR}u0b2a+T+*|P0*fARfiyOKxJ-Iv3z)s#_GkCiRb%Q53{X{F!e2+wcvQn3K +fJBq?jW_M|#Ex6mzUr8#Wd|)f3=C%d;e)R;O}1w=A(V?g4f@*vhv!U|Z!%<9Og;nPO|mIlxkkozHjF! +m6@GHMUnG(4NWKf2Xbwl=JUDe5Ja?C>b1l<}FdvZuxVuLj34Tu#*dJ(VMo7HOP@eDGyAa(sSj{`KA-4>9lvji^DwDyLaOFaKTXvKI;{fwL#Kq6)-+}SEo1q9O^WVx6c85!DNOln)F8*)L}n0O#%4+2b-nK@dD4_7uuj{U1uO#)ah_$R$6${{ +{Aj$L8m2}dD6n;_{|=_fhc3Z&kh;W(t<*J`i?aB=j61^nwe>~q2-yLXfdMWnL+3a`t@(5&~dh(;PXe^4(pe!W3nS`Mf)ehZ-1qOoY`z((;R3-B{=9Vexs?m7+HdVw;4IaCn-4(Xpp))i%Rs2$5 +K$)Y2c=19jp1H}K!0HSj&hxJC=zp6l~Nt<62^ +VV9RkJm$t9E}9y*su#w$3WOmTV>8A??@L|lWE-~tOMsj~y-qOkXyJD9yZ6h7Vue($8nnN!=1d2wp;pk)q;q=~xk< +#MFjDsP0%+yT-CSi)0&qdF@R-P7H-U0y!b7S0($Q?3QU0iqY>3zuzZK{^f`nP8sgerHq-BB0K3&D2X8 +Ik5qfd~&4Bhn#O*Mxx5vD!1rm_d*PG2qav|Ovcj&=IF2v_8$=V@KNdSIyWp@#HX$}~o-`R93hqL#sTEa_|j> +I7!wQrWKiN${gs0p`0OOIUwO%+nT1rd6$Rtz7^x6Hs^RV+7q~N=9&mWIHI%#5Nx +S(Qh=6LkkV}tF1w9rbY>x%Q)yp5T4EaN;K)qUEp!>T;V#LU$ft}Vs;hl^?h`>hTCc3ffzY?SFBlGvn% +sE!M_A=stS7l7M1LkO6F5a_-TabHA>1npBwdhlIJZOkg?F91{Q%Z1?12yKRDk6@ +|FBVfd`g9G}F_gZ}vAfVpMdLMN#rdDGog%^!PtUj%;IpoP6xp_s53?Ja`z3q}Yc~p8kPjzf&5b4!zhf +S5H6U=2-l(A&HN*T#`7F8Y(^Nv@v$@<@e+X3y%?^*pV=ipJh_~qilpj2Z^2{5BvE;uRZw#3jeY;`(YT +Z-|gEktc?CrVd(LbAf3%e3vl57?}bg<*b|VLu?mRQe}w;wBL0ic#6=3zd{N`svkbuI||!*Ny5>M3!5ewvg;_ZZJq>8+bGu&c^8`5t<93>6xO7ON*Bv~u(58nQcd1CZ2z|=&p4M3B +Vqst3MsU%xE|z!1#;{vDGUgpuPi^Te^|MssSx!yjDoa!LI?IW3*xq%Ut9i^R_T3>rLE7^^{faRw7;c2G8{{yzJOZST2H#r- +9vP`fw`1q2tnPESDkM?DzTDI#2GUzs>gD*MOY2Y8IY2NTieQk)FZYvPEbth2+H3j$61Dva}(d@nI20wbrA|j +Z2&`pElM!vhK1uB?Xq|Gf_inIof9j>^&%gyD0PWq?X+&_6Y&|Ok~7p!&04>cF-Dw#x~LM0_+aXxzT}`H#!c0Z$`=O_fnM#193V>8J|n|V?^8qdpvp*(nQA +h+wK1P;%Bd-Fr9H8#yE?bH;==$&~&|9Qz{SLP`SFNx#Iqj)3ag|8rN#u^%Td-lRfiOA#c4f48d&5d#4 +j?M06_OJRK|tzq(X^GhKC-U3Ulv)xY2kLpO7Dr<3BD}29>;d7VRn8aIbutk4G08LH;SN@>}xA0{kWV4 +WP5w~pevh&ga!sJ586iLM6<4}eAc)Ib!Ag+s(aF%->-E~#6z7?z<y)&?@(qsN~u4*@H6` +Pdxw0-J-^)jPs`L41)>mz;{*zU6bOL?g`@i>m?U6`AV{19Aq@Ma4&!0C@~K}!pXw%tAIsJ-{uRMQ@WB +HAN}j_0K!43sN09^bga>*$N}>nF9Y6ZNBj})8;lamY6+iIT{{LZN{^2l@@E^$UO0)6D*A2msJ~S9QR- +9At4}v((2qQ<$IQXarA5Y;wVDvyx@CSY!vck!M_X6U07l%j9$4V}Mk9G9J1qbOl$_Q6%=n1XX0YbGwzyEJ?mkrBg4skrDFXqW#> +}hm^8d+8WC&=ATF)yl7dK?Om#zr#@O(yggs`yWzIMsiRL}>yN=?0fqMA6LHK@}lMDC+CY +KHLWS|JOohPW4pk>}E4IR{%__j2mixaif9s?av0xeQ8YUniQLM4wh60w|sbLr-U%@A+vq6)EcEnj)aqo(U#wnV1=>ZZ_29ntz!kMwVd#Cw6H~0KhMOh+3tVL|(9xBG0 +7f9m?3#pYDWV}s4lSo%jxIJG$Jj{)`(3z;JXTFXG!a30t_#*aCn{b^{gp?fO%hT0qCWHsmhoy;T;XY5 +61$%EnOn`e%m?s`(QANCp(q@$p#Hy@dQ;+T^tlxNz9g^w*JK!JKC6YvYu~LsCYd-$O0A1zC +4FKSNl&JoG1~HG?&VLk$m$HM+j9wh)V%Y_`v+S#Dm9fsD410&N*LP@v6XB71l+BZYBdxngC`M1NCUHL +*95Fd`>82YAj@3DW5)cG`wZgWQpe{DMa8Mx;H^SDaZvO6v^P%;juk%{PK;rO6xgbMR0}HV#Qgd@#io^ +7!YJj5|y-h+Ie~`|0J21d+^Z0YG7>W%<&e``c1C7tZ-5LUH +PnXn4Kqkd9|C7f-%HpsKah-I=ZYtK3jHlx?poWR-xWw^{U()u*01ZFrVm&NM7c{d$8(ea@bgTnj!ft$Qwo!yaL$W73>xl7P=F9XR^Lx9};qom3_qAe;3U_ai +b$`Go)f^M&)KLrjyveBsHjTkcuq$4WHy-MaQ=$Ex0|koROoIT65QPhIRH?M1=`WnHj%uG-eC$sW1 +rITC2#dL#56r=q#fu0^N6HfRRYA3$tcO>%JsODUJs*3fcAF-Dz*YzvLmf^szg +X-AFmEt|54m5crampf1}CrHarno|toYiCH#B@^mPF!D^i?&=dIrxv)QXN1+TQ;N^&I}cMm_%@xYFOCp +2L4hJwHlH;Zbu+(2sL&boADN;6WsZfL=+`;f=7_n~%}9CaTeIgk(z +AN41QI1Kc5khMRE$&dKqZ#5I4L)mACcm(-j<$b&xlJEdcVQ@SpKF$!y$C;iC4vKsf9Hl7`I_gi%9e};N4{Uhr6+ohV&J>}aoaRXN~3+$OzB%IqG{fGhjZEi +29-o)lTsW*gVBiT2ZdJMetRnq4CokczoGEpbEqI&`_sW_0bF*#%RqUXH00DNQNen(47rI%S^spI2$rk +>QOf?0E?&-^sTO{9TX1tR8x6~^P%afYmvsa1)%eJubezgcbhVNzgJi5xjwG23P!_qMn}t$E0CeeC<& +F+LfxidhrdFmGNT!2kN<^-wRLg)A*jRfZF@R=>aFF;?|%Z?`$MY)Tej%G@fXOwO(s)bR^7GA91Lz1l!g<*jIIJy-H0|B71{h4v}<2oOVI1_icOVLdc&s1zVGLn +8DmAA0+4x*?{ZsC+ntU_OYMwG0~j;8b2vZF|3o~P9-97}ZR{r|!65W$;o7(V+~M_~cm3Yt^{d_f)b53 +&2uTnqMUW7JKsXBia>XS`KF&et5ta6=JBSVs1S~#E346rb!`&X6!jIkh{uul9ip!y40v#a=`PdzS(a~ +>pG@nBUW9$%|BaX@fiXT@vcEAtn+kPqdw|XncQQZiWPb~mFjt@R9?;&!G4MUC)M}2y|Nc^jF#2)U*57 +iF&EW;dSh>ym~5v$2V4<<#AFn-t;{k8MnPi{q$%WAS$ENQ>}Tb}({dC^!dQJDFAyO*uIM+?W-iCnOsU +o!TCS;H+qw|T_^wf!if2XOOsAJq3YFXX5xsO$q(Hs;6GmHpoX`z)@o^CFgX^qm{dKX@=ilz*AHeq9(* +$|KPI)ZTTB^k;8}J-GdCle|58*n5`khHFE}<)pQf(gN!KA?5BscrwbQV-S-2ONr{lKmHs6tOhEHpWO|d +Ay-zEKy;M)l>eLmlV*CA!|qvs{GcqTH +iO}!k7afgTD%h`xmGgin^hNVz0Ft2F@bELL0d3na38o;)E7aL(NrJHx{V{yPk%@MCl+I6|*+v1&kO<^E_bFyBkPS@_TTl +nf+ZFm^sSQ`PaK;$nfL19B@LsiSOiiynK<3SL*ah_3oNL>gfgFOR(*Cg*1Z)>S+#k1csEY$sB-S^7z$ +P=!pKIM4Mg#leEflu`HQ%DR}dL`pcywn_ppNybY<#34*0eLa!F;z9=Do?-%@gTuass9zrP=Z<6oM33q>4&yjZ!5By +&hb0k+5IBfq7>dIvNRR{!g2+BqV84uCAL}73JnZ$-I%(I$N4d(=mfBskpiz~ETK-!~E;7o!L~D%E=)i2tr8e&k{JA9#AS8He!EJrH6?0*HNaHG)4PV% +Sku-}l_ZXYxtx4!Re7{OpLZ3Qo9v$>g8l@5pg}bj$MaAK`MG}>`*2GeIu+y1>o&G{`-h$WwKktACL=1__wIqi +3VqpA7DQ!@Bff#a&l?pk`-ygaRezw2-MED@Vux}($2eSr6d-V*_6WO*f$mf2H(r_j<4)gIWhIu&j7|A +R9Rt}^(Rw-7Ysg(d=DPBuCEkz=^5lXir!j*K%t^dYvEXx1v?-5qMZSxS7N0KI^E4P}+!Oq8ogbY&qUS +!xmvh#>1%d_Hmn|`1=_Ej>cJqU*UYct5bS4J-J0{-rRp@X%LeKf;hyg-nxXy;|ypbDzihKo&?)&unR{ +8zw0^p>Zjx!$35-g%irvdzG&7)x!e`3v$|Zv%WaZN}b}7NqVT% +d^Uwc#vn5Q*JgVIc_AiNlSBC48*}`m_db5%R>B7VdWBd^!e?!z#|{b!I!WoQ?6bI@3F%l+X1ZROno7# +!hsLAu$obzgmabQbe;1kH>Zw1Sv0lWPYn=+Gy1~KXEpEz{Hkf%55|==4E5e9?}^OI{m)}o+tc&kH8?) +si3Ay%)!4-Q>X+{-0+8Oto|ipnbM}Jxf**?SRI^|&^9lbzmD?G00)A8#^tUT*Ru +fJ#?Ynw_vSF@q)1OmfXrg>vyz~5M7-Luw_}dNU()9JHeMr{zn@R%aw{m$%$C(P2Ov*Fe+dN{Odh)Ogw +kTAagBSX3TpdoJjoZ=X7_}f2oRnk)iY;_h|sKrRJpYr;kP?rJ;CP*BA$$ltpe`V@}mk~Zs)r6GaHc8V +|<(!)>x8)lR_>`>t{SBp=P`hbQWIpeE_ygIkk^;d(3~I!S!QPCGazYtHDx-gz$p93!UMUBoFH(k@0h_ +{L=W01wJcJOo=;)OKNo|x=1Rn!&!4l#auWhhS=MC6gn3&9=6eDWt#-LvlPB{zYqHRegPCKkhY{I7TR= +7sb>}xWHzYZn0Eh6YdyA32s3mqkaa}GLkL%{6Q#=Mw*=>1ZpSbXv5Ivbd95u}M9`X`ycd)o)tYv;t~| +AM3$fA61s#lnYW-db%QMkygLbQA3ceH%6?nV-MZDGe9U|pf;&9Ee@(GUytAo@<&Dy1qJWz4^D7#%Wyu +q72>#a61z6cr{8zu&Lmuzt0GUMOXD=SokN(KvNg)lk2koqxo1rur~8$^reb1qNFf-f}~FU=xwP;CqI1 +cb1Q!5h*`$&yf-DX%Z4vQ>WZH4AIscShN~ElMxXgs1MEr{qX!T+1Z)yDPHBRRaTLu7TZ&zAiBL4z)C^ +1Dwd8O%txfIEc0SWHq)&LYzvOzSaf()Z#kTF6#!S!MvQGfNC-pSy?*{7T7kEi>tMt-;xHmzUz+)x-1G +xnI{nwJUxbjtG;pK4v{Q&io>h(R!hLoZuF!-@H?191Wmsz&5<7AsgV%UV+dL%y#CcVmgPOV&b^+K9;a +%WP*TK!;=svU;0>WTAufA{5fS+VPx$Z!@{coHxvdA0RgXI>My^%qc6v`%|Yt57cM=?TcAR9mzjkBtX_9JSFX3sn8&LWZQk8w|NE#4{_mlx-yil{R0aQpst^icJq19u!X?D!}Q>=Dj!v;ZBJvLe{~fAIKN51`fyWL#{@`GJf$`Bx8Gm$g4zc`?>gyr +ZPaKu*{o4C^_Y3bJF^-S+128%GZRn@t6Z_aH@3;&i_xJdZQI)|*;FTYl!tWun$I;t1gzXy6v6=n9fvS +psM^$(BfhpVdC##{a{pO8UpBD(?zsrHwMO(d=xD6V{#NPC~@uHSoD#@G0lgkOVdcs$MiBxB==T324(tM-p_1~rc2;P +I2}0%Y6krYxD#&_LTToNyPZR5y!)cxN^qIfQlW4Muh +ZLg|aFZ*YP&x45Z07o=()FdYH?rhDOP6WJpbV_4Wp&NbsY>rPVrsJxDDnx4N{*aS+KX$_^NIcH&+Q;!v?0KzY}%Gn|8 +`3X_#Nm?8ldiD$%7)xFmp^j6i+-)ewadzeKG}?jX>V%#{mb3b#WdVpTDAQT94gF7{Dk6!exO$(x`*L; +2po)oM(N3(ZDE~Q2s)X0yvnQpLWcM~?tgo|LvUHPY6_|q7smlQ=)^ +r;A)cx(x$-p&T6SLd&%&EtGLa7BZI}hinp+lqIz^Q$CVg&lL40fC?G>Ml3(z%1sY5xIzKL6FE9%>V=E +AXFW#fog(YDm&ymlw0^}5t+)k(qijz9epEEm+Hf8i=DS6GV&h(u}O5#S8>(k +To6*RxpKhCJ`G;=c)qHeN7!QBxVU>Cy-8fe;DOS8?&F^V13xqm964Mcsgq(Vi +^=Lc*=OCDC3QYm)QjoIC8#xq4C84>JIdDBLlDNigxOlf0u`bnK%>JS5QD5;K~@Vu#D&?KgB)6<}5DfY +NmP?mBSnTjk|dTH$>z$wH`vYZJK$bL#+u3E) +dVQum>q0vpkG{&CQpQfkRDRd@x7`%V}i@NJ5mmQZ{8E<#Uk}d`R}7D-4A@ZYq3nG6|#34Quf`7! +sulqO219gS*QAFC|RX~2$Zm45TB_aMmz>kXWr;L?+xGz!qX}e7JEB_8vk%xf&p?;qn3Pby@`_&IXgdL +Cf!KCC-O(S;D7k!Fk>2Y}|{RjennnNHfU)eIoq7fU4GiLsf^!Df~04`o8i1Fsf4iF{;|u8P$E1c=Ok!R*L3km;O26HnE3ETv|*6I4{+?j +ov-csc`LfZLy49u!-R*8!YQ~=3Ar1G^th2_?BK{><)XN5@+ +j&RovPHT90AX3c5r5;d0EpCX_OAUYPG9bJ;(`P^iIi&(@Bm{E~oS)#ci(>(~LfS{M1BVy5OPIMNp>5brIm)fIMvW)m`7phSv@Q7l_J&dv;7y;>7z=7+ +@?Zm8ZE!f45?EDW)V$3=vX0As1GF>96tXo)K|GflS9ZxS^#zd=g&2Mt<+ph2)x>z4L&EOhM +9P;6G(|qt;5$vLP64L_qmL;@3s&-O}2+1n(s(_|zlT@1-_=+UNgByAJaY;|?NxJtCwg|n{W3CnxS49A +IfJR-FOiv2mxlCW;QYbLzCwH=`vo~})hcUB-#~wpXV5Jku`MQX6grm#}CPE!Cv=gw#_Xr|x?)x984gE +({wdAQj-O4xp)K*~*eAgUxNv@BQ#eYCmtdYZZ0C7!hTQOX!7B7srE=JvwdXC(*X)miga2+}gzxmLao} +A|z6xM*W3vd%&T6E&gr`p+5*;NDLzwL(35eRwV);qy00&ZTlc+1|iz@?ESGSuU(oE&#!#=e#S{=wvHE +j!U|Glw%BVUpL93NZzOrVr-j#ydigHi0)N^(CGrWh`lDyQ%q7>lWrr6VNQ~n?9pf0b5Uy6ir;R2s7q% +%dK8G-cghUE@DkTx_C?cMcro?%UG^u*jGuJbrHTrC<$1hl|Wr`iysC`X +WLu=p2aK2+@$46)1bhW+-GytT_^C)_ca3HGdY3&l(w#Lvq;};eK-^FQv<(8u>N1p4Y5sFaCapt;z?U* +aS%(RyR$c?o|JE&1C8&dQhBk0`K?Cq|!)=XP-ace1dE(rF;KE=B@k#5FZ_B&#|)-N{K!U`Z2-r#y#7B +jtMd9$)E)OC4u#_+;2)|tov9r>$ZB8853*GC*`3Ux9=M8x$@fT#Ebuz4hbVBvzIV3IV6Y2`jAiHJuQw +{e7PP$A5h$-4%7RH*MOd|BZ-w_NpX*HTT1Dxg(OtIAI*SMbG;4gcx$PHc)yj1gEe@>w0<2ZkxZ^gbj{ +l(Ni1YEL^@(w?x;@xvKd_uJKRSkDn0yL?y%g;1yK4mrApg&1&!wRTzT>ytCjkazM+@bAkj7g=#hy5WD +(`?fBL|Chvmfjz<(-Nmo3N_BMfT+Z|SU-7;z+PD2z)VzKcTmIiY*>~yX-=FADotqd!VhBn?I7p)44!J +0V#8Cu95FFmY7fOK`3Q@m8Uk6|!5A=258RRGhk?^qycW5*dhaE!lp|I>gh)n;W;$Nb#9ju`rZt)I$c4 +Tx&Bn3xB=`g+is58tOky%R+HUqEj|)%-F=yXlA +6pt6tB%-*RRf_PyGQs~8bqnj4|Y(BgO4%f;gYn!5$rEJU8+N8$OwGHK?4^!ajPG +y5Eq7t5EY7E_EX|2?mPX)*uJ)MTFQL?v~nIa8~Q8tCYukU@b_&cQ~lg)^N)x9tky+JxUUeo-gUSS=&iy62&%YpvIwx9@-*;1r2mN(Q^2_ZHP-1flXbtu9UL5o30P{vfa>$d(KKHneX+w$04JxEaAg00shL}@Ryw~KlI}O3}fAA@QuA}cOBIsoABy1?I5Dsf*Se{9h&Rgw#&OF0lI +^=S3HKege3FQpTHIo5;ltiKPaBB=Xe*^Fx9O`5jguTp4?VbRNnBW7Rwqy9VG!^d40`ZN0Tdw6Xc%VUj ++f&vwWHwwiu>vcUv2fA`}M~o^GJLCm3>R7X4*`7#S7n0;pc|-4Hz8kWK@WOlT6UFX5CS>J_q9M|d~YZ +8B@x$$JT3WzLG&(A!P~cquL00XGU@u(cS6ClgiMW<_Gmc3i|pMmfC^kk`g5al10?b5mA6-fw!8efOYJ +HZT9>Y_rB*Cg848({#I^ZYEv75$nvYR}^Vu(>8E+u=R{S;p5Cv4pOGdjGW%gB_Tj0LH{4x-mBY9b=ek +u=U1$EwR=PktF`k$6hVN<;f{(@}JJ?&|)8P?gh+wd4je0&T^RlTZu^$MoZ&*kL~NTs&LD%n +xNeZc8ev%%BVuz|CMM5A*Vi-ao5CxM6iBi~(J24c-iH};wADklb;d}005P +?1wpD)RX^eFBi*}p03V9@Mgf0Q1Tp#10bnH)PB3Zl<2gF{D|JOuxekDuKSg5c5IxjVHq`6L9$!{P2u3 +IUJi&R;miFBP0m(FjcrVZYrAf?rOAs(Iu_-`EI;aPwqL-0= +>;<0Pszj27iu7Q8%5Y;99h?OJ{;LC4SVwl2t7KTAfg;vqD5n{wTniqfCcH8dVW^Ht{!DK-}$geNPc+(KpWz3} +}xXNfybpmpm$V_m`an@G~#5JBcfJg$Fb&1Sb+S4Oh4E=$dK&<89a2zcfMwmVs<^<;nO-nYuJxg>riV&&n~jUp-Dr9t +YfQaIB6DuWWrbc&8IH*dz=yDoI#*~0hneVqVoiT90rX#m7yo3TKUmT47x}#fMPUjd(A`pkAc|AOZb3g +$20>vU0)sG&?GODlr<2DNj^j1@*`S^&|etP-E{6N?q3h)J$M-R3_Ai72swhA{rnX9Xa^w2CDZJ%uz7yWN5 +wuF-{ccspr3RvOdKTs-K1jCXEIy-Z!G`QsG|Nv713`7l-{0i?2(v{h$WPZ^%jjD$9~#K#+3hCQ3bt-z +geU7_txk~Wh3#(>3&K0ZZ!H~?AP>eEWeQNzZg{Kw`1z%M`a_|{%%?gzr25cH979o-=(KVn-@Pid(H8j +kNO>p)j$k`Z;7L`-_p~dIfQV_9YZ%HJ{@CNE@SpvVmMh32}S9Tjm-R4m`Q%b7uiDjK+bu~HBEaH5!tP +g%uZJCpUvmJWQ$6p%+^`+Spwj*K9luBZtORXJ;uwWd)=Naa`%g-F|R|_^@MlF%M&V?kVJce|oq?@l>;5*!{?y5T4bgTfiWnvkGb+~$&zhq&xH~=C6w>+gXq;A +lB4QS{*bl={%YQ`{2^^=SF$59l?!0AHea_TXhA6dU>w(Z4ccUg7x7V^&dY!A=c;Qt|v1W;1cc=YA0WA|?I6Za7^Cg;eb;-97l!a +#$)1c$o9z`~NI+bU6Tp&@Y;qXdK$xQf;q+dcG(k_6IPWSH2ZK~#+)J)MznW(Gj8MQSE@wl6lw{~$vMl +?*pzc>V44mt1aXw=% +VIG7&3io%cV8ny=nKW~^OK0V313nHn*$?QSL?)&ic!wJI=>6zVAAs@}~l={rtCJ)LPa*PrEh40&)UG( +W++ud&d>6Si-^yEPZ+rQ?>(cv9^`rVEZFUV0mJs4xrQS;n441ToDk7$Sb_Z}U=pH6@*KS*Z#%ITl7#M +s->JC=CA`98*Vz1L072F`&N+_*u}Bqa48f`{^dD|q%VKtXw)W+g5tXda33a7G^}dmgX(Dq7?fKP6{%^UVjT>Cfyv%p@rLFsW_^OAMt42^SzA(5XM+ +dax`$L8l9qocL?Q?y$Nz8y-kJQ@s&{2F_%VGft?%!|xS&;L?B#&&j#zKu9h1c~O)5Njm-A8rIcYw>-45J)AC85j%%sBQ~IHs{*WI-HT +oufMNn5)BFvpgU|bXb?;FjpEv;Ye6#8FS&40AgAI##+R-8Ai|?s3AAarp>B9GMRC +D@S(!@#x=Um<2Pb5|{2r! +!Wrlp>B8vJqN&YDhq&avXNcBH4As`B^N?6=0=-z8 +m)zms&S{7VS_T6CmZr(Up2>HbPbU9d+-J7+Ha8D#K;whhc+)2NFeFgb^3i(B +9l`^xku$Gx5_MBR@9b=h*k_T8b7XoIS>VTO1_izA{|d#vmeE0o=4Kba)V2w{v~`b*wOc+_|%AN`>t`dqSOJK+hwji}QJw<-^IxVsVf} +Jqo+bw*j)Rmz*70AuiUC=Wk#mdUZ8Ihl_ZY|QI;jxd=Qv*|WqO_Aw)SX>Ur?MI9n^_ro`HJ(-z>NTyl +@Osb{?^h{pC+M|WC5Os{D7yoOAgV)#=yX*aSXL6A53_SNzN_f!*K0g^JP*pwn|(K!dFrSwUo +aJ=a?M)Rct&n(oqd2ey#-6VuXI_V0}X)phjp8I1&Mre6mO!C|JOchzN{&vd +nPC*k6B!3LZ)c+xpT&EKD;UT`F{#)kb1;13Zgw)}sxVa;RJbMm1hlA3^y_^ZVX%Nm0RvLp_j4)ui5Fe +b_sh5KwEXSI&Aq@ARC)C;~SZ|C0va{%Nkn>s%otT5pYoBlO(myU$BU5V%oUCkCB@d&zRMYFDWvQtg(0 +;B0$gMMEWIa?##)Do(tpg)k2!!)}h^_vK*GO!836Kj91$szmmuqNsHZ`!?9eiQWwLFQ1FKG*7ti;BI* +9TD~x$I$=haY3I5r>f$iH`^v>%hs1c$Ke>%)6Y=UN30nKX?fiSS9o7Es_c&&CUK|hjlIbw4Ub^apy{)vl3lO7WPfPoNf>d +-4bjtH7MHiz1@2B)9Bn*Qg0zw8sNVId%j7KQxGJN}imgE@tCo^70G%PFB9{2 +@}-(lPE-5APuCRWh8=Nx7gTGgX=EoGQ5Tp!jvEo&6(mbt2h2< +!lEO3g?MWo#YnEPOa{Nml}d;xLR13iFq?3AHm|y$jvm~ZX_I@{`!PZUDY}LU#3O>>%dA?UM0~~-TQyh +^HkoS)wJ%Q>+6$P`WIx~f4sroQEF5Vc&Ga{_GZkKfA|2yG7v7?(xrV5%}3X{*B> +YCV&f;1r~!hMvEqEh_HcXpUTZs!!=4mXgZ1CHbUCCQYtqKAr1El=ZUBwfq#~*h4g`8L+X(>OX5YEEt! +L5jVh-aOHSdf)5K>eTwZ;D)rGqxiJ(RMaiU+VhmZ`#of(IGXdSY< +ga`+f-vkA}G@d%e48dRd-C58o1G(!LxLMbM|Cjmldwgs$PfBri0%@mzSu;F#;4JC1<~d;I^!7%lEHK& +aD*=N2lTPCX?cR<#QlRF^RoC8vD_&1sEWu{Hx<9OOJO;!o;D|a^ybOqe`tpP4e9|0)|+waMAryDym+#d@QJ9afY6#%os6F= +wf(Lf418A){s}Pr;6nQOhMb6>aLk>hd~BmNq +auyz6haFH^b;z;(tY)-!rGDD_2oT=Y{I +VB0x}ErL+gzv^ITXq=;g*{?c$Qv4QcpxE8%QVk*XOe-=JGw4_XodtqxlE{b}sF!yl>EGg4B4o5Ak)Ch +$LF7N?6{nGssRAftv&yUV;!^96EvSOgGe$?{K@}Qh@j_Udmh<1{Ucl#c6mxi;qx#$dZbZ-|huT+6 +|U~+C!bq<|&Y6wnD=03%L8W-x5N)MxmLnA_HiyE-=lI_Bc#jcG&cnfuUpVkADY!^4*>Utn!E$G9SlbBzf$iWRr;vLZbDNaNVN&x +vgNTRvp_Hw@v?}n=#?)od7SpCrA<+|$c#<>?Z+hA?FGD_&nTj)1$fjbl+zm9qbhl8c7wVB0mk# +AzZYqV1Mx9da~r*K_Oa9Y#a|92#QUrbD2NjJW)H9h`@6J^)6O;`S=&ic2o;+HV*u7AR6f +EcHK_=nH2@`1!K%fhji0?mqKqArMaSk-p+t9fWgbX=vox@;aILAHJ0I1bULKq_BShztJ{ +KH*UY}*FD48i5lW-!eAZ7kj9jlV47eI1VQ&eyBTTKHY0^C{MB)%7UnTI_qeOHG7*kIey9w=X(+Uc+PR +^DY33%JoQL_Ppnjh!h)T1PQ))&@BMqA{xbE!TEwb>>!lij{Lp_KbVRq)c>F3Wk7t?;SB2og6r4(uznd +4ad#lOJ+U;RDE%-!#HBkg;4$eFPB@8BSBGcMIfe69c`k(Zgx32vyNl(b+(7$Dwc}+e(G``O2RMuDQX6 +lHqSzZT)SF7H{y&h}*7ZkIseNC-1nJG<7^d@tGp_Pb0q6`U=vo&2>|{m0`XOF8#^U=Fn^kVv~C?vCWK +Jvo|MC?AdTB`r(*7CHK9HW*OixlFk^Jl@N^3=sS;>X5&4m(~WLTsK*%wx1k*%SS`zp6Mo9BIT^ +nFa&;{l~B@puxI4;(A%qP-7nGwax=CGiI!Y^er$Mm57p#h_N)7o +*k8*YIU@jVSB@aNJHF|OKFQQJ<{MoK5LHqD3(1kW<~g4z_85YWoh&q6%{d!e+gn%!$O2FclpIP +)D7ChlS*`v46P2EShXTTHtIc!N;J;XkEXkM227G$e%angwof^3`=sdjL?5jeC`vS$pEguYM!CEh^M5> +v!A`H1WUz>CyWz0I?t(~fm814De7ez=~vP78z*WpiNYOZf)N8;afN+QT5XCPU+3hc5|61yW+;)W`BwH +fgRO(JS{XA0htkWnu(lRNw0IjQToTj#0@U@Ji%Ph^Xc%=f<9G1tl}4$le}ETxmi>Q*7ysE>f5eObVV& +wl;C-&=rzd(#=elYBD@K_6tKOhkQ0L}c^Y +W``PgW!W!ih`f12Ok|v@lP|0e+G(y{{}4{w+Z|MwD{d^0>8S?Z#@5 +B(EOvPU`CI;y#vxI#UaalIb;~^VB`6oJQ&QvEs2P<*8(-jk@zk(+)O(TA>=yIf@ie4Y}+e$s=hCPJF1 +G-knx=^{)po0zXb*Ja0d|Wf$#!bW_qb4Tm`IvD((O3&V&GenLH!0k&;^7^TqMW!TXT$;{k0A?8CfX +Q*d9^>Z~!@>}1U(E(Z2;0C1=#9ELQ3q*tD7JGoHg)9C*QWL5sZf0@`12Kyf`^378Jhi831bC@78f`UP6{{vzm0mC>>f;dH +j&>@&dp~TTch5pn+Qy-JO8&c@Q5QMTLRzA9oh$9+C$RlDt8kFGAw3VONeh!`wdQ@i+@TluV=)pM5@HwBkXYHH>w}UQ9}h**FDx|lsTakcD%8FoBt7y2VE(BuWk-`Rf*u-oyWco8W%7g5lVcx44j +t_ShkQPAFgKykq~t9A6t2KeBN(;s^-nFdc*OLP_1oyZKxk!@4dxm0F}BZ?BySb?vi!(WTO5vW0F{-#4 +IhrbP4IQ#w%={V$B6vTkUM(XuMDZCy70y~Zs8yTU+13Kk(bWDdyqRG{O&OZ^*Nhgcl&uT8$UKx74AO3 ++3JVpsN3|W+Qydt^)ZSAk_4EPy+@%QXS6Lj?UHBo+i9`uwiPcnI(CYKNg3AcnM0mzH=z9tN +=+|X!%)@>SB9|L{IyFJYmhPeC4ilJ>NBJxb}ZQ1ULm)eo}GC~K<$tD9z{blw|XO);Ga@<3(x+w46&bG +s}WbUEzHQ@PM=IuM;#4QU3OMX2V@?M(!y+b-81MfGZhnmm(0{9tyk=EUTAKMuwgZEst3>xO>=?q6`4_ +a#mk)d|GGM0CBr>+1n2utl^=6Yd*m57$*N_Yf?v?Qql)zJ3PPs0AD^zLaW5v#CKmQHFZtK3;#p5IQd1 +Mg)e2Ur-$JRwl)c|BRLEgWd%FWW&W&HAqssqS5uJ(KEpv(k^@9lt%{2iy0zPW)!?{_{!SK~e;!ND_uX +1f@_ML1AP!d@u-t$7B$K!byZe;h$0zW8^4hAJeXogM^rUL^D(5-`Qt6J4zk3;{7W|eTvjSm#RACuD*= +DijEl_=|{+5hqM^>ZxTI7f%r#O^iWgCKB`j5flha;2mf*qdwMX*_v=#ep#++Kz$Y0WB3C=`-EANFVUX +|UnD{7@V&L&_x7zy!h>w-sFSefu=U>Oa@0J*%4p_XS>nQuXQdI_92y8*`e;lV?c?&werGM7z%`wW)D2 +mn|_J6D6%9dxgaci!ruYszSEb=#_@y6uv;?BUAX&%OouBa*Y+%-;QXTg#nRUIF=9aRy`FcD?4IigM04P3U!}n2RLPA!p_^d)09^d>!5>CdU@JE@mFNDH)*N((f8Y +&cgQPD519sg((|<%d2mPag(wEV0$cPZYemIg$u7OatEyBG`*!F{0>!<4rrUZMG^8CBsmsP^p*@^Xc=^ +!b9*4br +>g%fQcIr*>GgPYW40$&wfyf5iU(gl~b9-V`s-ac|rtcjAE3K_MvMuBg>+T!^sVF(T>UqDN&cK7NMeqh +k-&Wb{su18#%iq(6bg*l-u+{RfvQZ?ediA%D9RLefzEXeEk8>Ru(#eHVB4*nnj`nLwLf6p*>r7dV8}XivMZDKSG`Jz>c)gBx&`2Ayw=2`p5ElVOu*HAsf6-~MtmrW +a-4Kh=WlMNv?ZRTac!$ARIrk6fGFmW4%96I1kxZ|6LkJP4QLpG4EB +7!V17b45_}HKz*GPa_Ft8;rGk$_^@*w9XfxZI~JNUJ4SKlq0wVJ-Z=@o44vc{ZO)X!Iq)G#hZR0e +X3jesbRk?@F0T^75#6aF=Kddp-SgsXD{Fzj641O*NZKp?2E>>hfwGlsG@{jeUIpEmZK*grW<%l5x^(d +UsbM`&6v@u-53iE-Rgi?bYiCzp$M3aep?C3%0<8Ur)=ayZ~qwhNkFbuWsu;gRH}WAZY7-^@s_b6V7pOHMvsq>=k +fby{c*0%gp>X@EFC-ac1c26Ix-bV0B7mOS1k<1)EQuM=i+*;L|X`X{Es%L^|417LNV2q!mD4L_vZ);q6mBsDM=Ke5M&Q9e=*D*#E;-B29I3Y9&k|~*^MLR79Wg1=rhD-4;0h=IX`cn+n +)|oM|&IonYd1opH?~aXmZ=*${hZvdSC|tf58uhgV|L|U*k*yO- +hFPu-G>}%}P*S4L4lc75tRVUg0*XI9yrmPjv&g}vSkj5QzzJ0+9aT0oqR;(9+p-kIe{@G +M>C}Fww_U!oE_)-cYv0VxwHIZbiAk<-L~Ir!NX~j6Uks+C3 +pmCl{z3V3}J+v=!_-KCRi!@hAZr>hPkf>YnTtC}ejt)h(~)jw>lLk4DyQzDx#QVnyyemuukK{0K +IX232jvu4aDaD41m(fO$*S`_GcwrUL|VYFQW7X47X4K9#?;42C_G#F_FV9rDJb7h!vg-NyMDJue2yc= +W8p&{eL7G|ogBS|jId}b(UsOmDEEQ)!X-L!gCXqR5@giC1m9Ch$XnWz8G%w|81b)hYZ+;dMm@?a%Y^v +U(ioJw08~1vrzNa_36dCxY&Z+BMQJ;VNN>?@Y;+K0T{v!7^oQyQ27}8M99NnU; +fjOjL9v7ZhMeoMK#jD?v7>q8g>O&%tfgrpv@XWTp?xSoH~{oF8s&O4Lo{PtYp+R66?F0*d4XXqS#x0; +Ux6Av+`bc-M7#X5Mchi8IwFEkqZl4nOy}OhFmHKFxZLwkIiE1V|I?#RIysH5mD^b{*ALkeuIyf>&6d4 +m4c|Y$+yurj=r`G%u;}2X=S#mhd)V6gF2+Kbi`7NaDs8A@gp~L +umO~dAnD&5j<~S*;Yc3v$QhUb_#*9tuf~ +=qkuco0(~Av7JDV6kqy*EsRAd5S>D!fA9k$riS*P;@Jy&?mk`9-@0Mf~z++RjUf8YDqlud>MlV(gpJt +whlHW06+q8y~%hlf0`(KM0w6P=xszuwCs?9hgH|7GgBeKcH@RUaMDAnHHqrC-!Pf9&P>r;Gg7%kjGfz +LVzx2@Jzv^5^Ze=z%+8{HQ*{A0$G2kjsu`4mnNqBZ(OwJq{$aAN(nj%HX3h;s8_e*ZkCe(vHK9>^c0= +_QVg?U6g$4o8%!Ha0uz_@Cf-;t}6M^<37EyXm(Uw4{aUn5DD712clo)4GzJBkMIwe9A7cy0BKP2sr6< +@9|#B@aBkmIf_`S|rbi|#PyZB2)%MX&`&;#tzwl4>r#gfj*9R23Z=IBpwJxP#nHuSAqRyw+6QI%5{ZKL0xTv +gq?0kuA6uzx*R|8a|dwnO00w)kf|1dc8K^)3j`_q~_Kb7aoAy~{Wt0*nSRcI>PRCW1HM=ogjn=7p>8c +;+IEvKu+DE_iVMT9$a3**c^G^{JB8^FbjlJ6r*K2Wd|KsZU8@+XM|k3{w1 +uw%d}oV4I`RnYIo)?(gSLP(~{MB<~0uS-r|ygb5l=s-$S(O;uI55zL(1hu>y&2HOE= +6%0L3IrV)6!N*bw26kX%;rQb*Ow;VNANbZa_pK5SLr*bhg&8LJj2>`CdPJ!kuI;7Bt2^iFtI`6w8GxN +KI=daDCsiMmsg$_P9?#q>xJCIe4O8;@$C2u6lo5omsdLI*s*=zfrF_h-P4^%&>V7?(ME=Oxn_(i?s1Wj5tl;$78P^e7ft9CH`ADYvO5)l9qH(UVc +=D9NM>dNbYbDNm2maaIgfyM!uw3IuPjaw^Th~Qu(| +{`oqs@*rScb!_6o+X&lN%`8hr((_yONX>&!gvLM`8j>-N`MX_+7OEYLH$zZkW_5*|K1uKa6>9!#*>r} +YmExZlthK(qd3?q1K5d}T%5dAFS52YBX_<(Bo7C~@%sf!2n9k1aWIy(o45;;OayoV$==fpJFED!d6n=Ih +lyx56w26itBdcf#CD*xn8eDbU=ugFNcNhX?E{p~6R&l4#=a&Nq^x)hn|O}u<&@{v4e8 +O3ln?NDlga+KXkfMMCJ2i1#XyFYy}vT8y!7kvhvNB{aPKt&MwxaKZX7F<{R?q7<@YxQtmU{lT%v>;@T +J;QiuZH(x~w!Wv_316^QVjLeBzHUlM~8kY3@sM&t(VOq}9psvc&yqJ5%H=E--a?jw;(0k$HDJDBLVD5 +$eBVBY9i@}JaH2+^skEL=T3a@3a0{v}#A%E1?qed#i4I%2!=5(XH5T0E;^TKO)zljr}P}XY~$`poQ17;av`IJhT +$0`ez*#50t4UJM(@)QCzeW%&?#f95YpwU9<;oN}y?){J;IyMkCYdD;QsK&&uSBK~bFTrl-ly;p(43N_ ++1h77SfvisGc#Dmc!zu|Z-?89k)qZa`S2|5VaXSSgj*RnPhF`j5+5Epe$;y;${a&kyIg(EL|NZuu?tF +c+aG(413zXvf^!^`xZ_UXqp|a1z^J4+zId5`|C{h9QiC36jEb0^0!{f#E;Rj71+Ml$ +bhZ2g2lMAPsSp>?rccl_A(iPZm51h#0ivs-F)Z%nvk$f*)BD@~B+yNDPlYJT~$uGe+dG5|w>$*Jor-^ +Z{MjuQFr!hXDtYhXNJ;nURwd2dyso@HTMl$kZJ>#QzOLM~O1SKAP;&@tpjFD0lpKsH;E+P6eS)LX7xK +%GnS8>6jdDI`G`^Kbo}ZlP{d!UdkZ7jOU`hykd6wgFMOy-%USe#yE@npWafoR7DqT?a-Op%;u{-kp9M +g2<`p2%R2>Nb`%tM<~K5zuz&wL=wl(r-&HpFoIt?M_T!FeF&7|4+&R1mVB}Hr4) +XTzsWpM!MzwZ7`Gkv}HSN_b|#qrV=qOAKYyN)5M95p{d{EXg>J~{W68jsI_Di}kwS?mT-l%og*Oofe#ayzj)A{rg&=;hH~RWDEA +%BJ6#TLF2K+1|q#0*P>$D7g+{TkVbwYxf&a9hV4Ica)Sy=*xp)aiVb{ODGu8ID&4kOQ~Cp25T;9}$hB +8*qM+k%o%Hbsk{MF}Ks<>wKK2nu<^&RK-^2%Lmf$S4DsidBt*ZF%c;)ei0Amp%5 +VeM}I?FEv}ofMg-YfUWI^N_7K1m*dFxc4R7m?`KQ&&;``S~y+$^BD=3t9QSnPaOzf&dng< +l!Yue^PpAh^O30wr^;t^zqpq?QdSEd<@pC1HS(d%z*$~AXh;Bk_C)f@|DLah1mb_kkMxDYVhRl>cHA8s~(wON27$aMy6sWu8Hl3YU+ +{`i|2j9(3TZ(yzoa5q`cMp3o>6^YqJK$S9PM6fYpZ0-`sz4j{U7@O{NOzQ$@$;>TE== +%tvzEY%B4$>mS31z2ZEE}YpkMsB{G5qmycC!H5W^C&AMQicf!EeV@;YY1SM*W@JQaFaX0!b%4K0DxBe +2-}kZ;K!0qO5c0-RB|ucI|7!&#GB0Lh&u>LD^m-Tr5{A0H>jD?m@V;zf30iYlBHx +glmUr?}-CQ&Qo#4ws%GWZJ))qDP486vj>#rMK+a_ri0Gg?DnImuCzGfG_J5i+> +dx9Vrh&4j5TU4$Sk+(V@%yg0y%I>7f;K=rp^KbQGmUvhgXT#ma59QGSv29i4(BEUWv64HNd~z>6Kg1x +~*QvWRkx-m<0HAn0==?Z_L7@RW4Wmy4~E}@~gFfE>jHOmh~rq5%@NlWb$t)O}#_!4Z(P%J~E8Hj}1br +;OWsl#oa#|{Tc7PF2OG71tM)lLI*lrjN2o|30hTX&1V@@c8rX0-HaS}OUnM<-is<5Ki=pF>As%&7jyUji`V%rz5nZLe3$LtVJSs{AP613 +QwWKG)IqKwaCG;c7zAS!zW@E1XZ+HZzI(ltI_AC~I>O|ka*xHI=nFmiouKTaX&?VPhks66MGgu+N*<~ +C-CxD|A%uSjXOf2?CIlYQ+%bp?KjP5cGak=Rj$#7^|H3oIA2t6R{&?BwSm;pWOpY`0PrH4NA9DSNYUa +lQBcISWM?dPDpBZIw^bsqLjxZSfj9T5-Ou-|11pi#32|PR_@tbEfq%<~m1le+Avufw{;g^br|Dp9B{L +*?~aDViQd(=~Wo346sclY8CZF(UK_u|&k1$*rgUmtnyb~r=e@P_iXyR5Iezhd)A%0scmd}MtiFB}5+T +U;hU>1FrIT?_89=!c09e2p#RPgjxXPLlA2ED?G}VRtT=!qghApGJXoKOx{YY58#dIT}{EVgq#BfxWWW +?H&zkN8Nx67M)WuZHKO^bfJHUjt!gpT@+lZA>i)LeRrc^yfRMcY4^CJ_K+|gLSHSM6=SY7-|xSfZ((! +x+fKjMAAnyLAikfG^7(zF9$0*#e3)&>GJ5En$R51P&o4X=>F-E0Q76AfvB{$W?qa27IeXzHIZO3DOAT +R<{iY;DH+d7@&qpYBvvX}FevaW`BIdA7;c%ucD&q}y>;dpp;p%lfvF4+~v=f)- +T=1qfeJ%%_N99O^fY3y(QMXSrHgOmtW>-6VCOC$vhi0 +Pd&$}E<@#_CY11*zJmu$u9N;=o05885(o{0t`yvpWfYA<7*o6i8OPi=r~~d00$y}nS_9BGtu9o1hgCC +lkjL^#&k+Wc^c6@)8bd=m!KK2vJA-CV>Asr+%dbSXL#C+}R_$tz1OclI +{ScL@l*m`wUkqfB=>N5{^R?g4t}60yWY_FG%uQ%WiRz|XDHD3i;WMN^zBrI^}rspD1VG~Z8dmFT>Xh` +`_Gwa7NWeh~(n4hwp +U3W0-Q?-XGOtFWhg-eh0zJPe`9jT}p61B9U3;U1UMf>E#f+-Z1YtdZH2K&$^?Oiw_xym>;ErOhLt?_S +dj}YDp8iC#6ZjMwz5_TGe0L3u9`)je;>zpxbWY6Lf%aWL+kfPV03V{r_Yr{h8_h$!wA@HEcuek))04f +?V1s;8-=^VTgX!kLqX7u#cU!87VTD`aLO+qiloD9@Z(Zwq(>bx8?VrCHzeaYXqLVr__8IW%?IL=1Fzp6?sNeWQNUrb+Dlg;fz4aOr;FcJJZ&TOe#wW9U +y7LcAa;3~IGyPo00DYJH#qQ$;F|Ri}$WB&gSC=w=@J1-*Y>)5u?y6U|_B4=jd@PqW#JkGLyWv6i&G-O +r=eh1)*rxU(+mGRj2E$!Giw#HE|37nYw&W>1Z9 +QQ^2@6=MuV^APYu{RHWH$!`?pQvUr>O}`74skCNu=_&1YAZ{R6T!Ov(#TLH!x1_`cxu6#Bq+7a~SV$s +;9oD?Yrj|chYHu=dI2z0@+5Qo*pg$e#Q+AW{@ngW`gZp|c +adRPGjCb$vVF4V+8~!M+m%j}sPf1-TZ4v#(L_wT1+l!!$e>0PN5{yy)o7CQ?Vw!gZcYkO0cWeg1_yz( +0$&owI`>$U@&Ht%u_zFY+#q)m;QK8S!=boo{%Xe^1g}gOM@ptwJO@BxKvTz}CdmI1Z{1tt&%%?>Pj_u2zgfe022^`;}X +Fpoj*=hrcqBBP?f!BEHD?B5wqH_<$J;|YM-ayZN(V6zw-VLt+Ns#LZaq_6qJBhF74OR6UG<&1XX#GH- +>W|&&&&}(A-`eDhxc^<&`59Isj@pqx@=CY3*s8k +0LYpKg|;av+c^l|fgZAJO@_z10vy_y3wQS`yO>ehsBYdp0Ldr^qXUM;l +19@a7z_|2okiy3HCCY*516%K6yy0Gr?zD`Fbr^d}=(v?@IyUcMs0$G~5D=r~!ESAX04l(cE5^XOTDJ+ +OaFv)m*UR?HshPO0xv@0Hp+Esv_#xpHT%_jg4_f^GW&pD45qJvSdJ~4WiVhJ40KxvlI>&?6P3X;wTpK +=59>~8Rm2&L&sE +yob}AoTD>W{=`|z)?&RE8DWNA07pd}urRScTeC_7MYkp*v3~2=L2qVZs_+iaw$bj6CIK +2IE>3<1@mh$GeJmz4M^3GAgndAcx8q>hvO}DfP`aKhaYME7LBXnv&^-@zaCmeRK&uCtw(am$W`~y(=vN!7jLy58D)u;fSW%B+% +Yw2fS_woQwZhiTt1;H2DF!30Y%nJ({Xdx?kdX`}vJiHZG_4=6S$1D<0&?NE~-g$J0;2tMM!36wBntcn^22ev +NdaV6;k)2_S*N!4m%Jg-NOndU-08M|cJPST?rF7sz4SueMGsGznzB>M)!B}C;=i>^NLj@ +M%Q=)||XO0I!wDe?1mXhTj&LqVt#?Hd_vm8;n)kV$KmH=IuuNDLqx&nxxSJkeRM9@T +aKJIQ0w|P1p*!oJ@g0rZp_d+hF;!|1oeLe%6=6F`JaZf|LN=aS0L?A*YKCHmU>SQ-4G*8zDE=xdj>Rt +cVr92d-vG}X!o9cWCw~#`YEiX(|x883GcH<>9;!7hDOu(prT!0l-!pOqaAo|7yVk>8>!fYX>36|1*b(+V^_t#`rrXZD8cMV$efN8zen- +*2)IM2uSX&L>!`dHZeKrU;d;)2A1PA;(kakCKz(0j>=8@&TBDnL0;DCP>(weq@+y@8&A!>ePT#r2bMP +UWjj?o5fchXMu)aq{AX6(t<*S62sZA%t(?^-7C2bm|nYQ~%Tx#vMo{Nl5*xPi=8`|h&4_ho;7)xbZw? +2j2pKPF!R%{CU}YxeauN&fA5-|M*E%Ca6JRQ?U#U*}AB->oMQg{4&Aa +M(pBi5JV@fbfftMSX5?Mp1=8ru +9(OI(y$VoDqXbP*O=X^Q)Zg(otI8utk!x_Sd$5?9_qD>)&{MDL9p*)zzH6W=Jn!9JS3LpSk8Z}oXjJj +=lC(8r>;Pa+>utn!T1G{hhX1%24b9oR@FJ<8i*N#o5ki``P(Z(fgfWZ%ziN{o9XQd5h*jQ0Yh-ouq*K +R4X&@^=q=ve5H3ii?W5&P?GC@r4EIekECQ9@P ++T6B4anZBF!9fYFGYE-&l03G`^W@JIbEsuDE?CsKLCWN_M6j@NZ!1T-OyLl^o?i9?P}ukm^(8wnbrmD +{NhiniDAY+H!-r@J5JFo|pwpZ27o=+=gNsRNxYM% +Z=Q(FjgAHs!-*3>RQHt>PI9x+^zG=qU)|kxGNXrbX{Co-cZZ-m~#&blu^QhFI=!FsB+ajOLre@ozaM;^|n;rcIP`ya|wCO!#mlaOJJGr}v|zBDV_d-U9d;TIY)@Iz8`=iy{L +T6ku2CXHZh>;CgWA+E;-&%wN3FT9O}wIP`piqv5)GA +{{}wTldj_xk3YLafibrD$-n2wszW?&QVV!saK|s$3T9;W>}Xd;53|kJC)rBVbkT?K&~d>+Gy+mJhw}m +O^ks`!g!50$76w@UAe@{Fq{L2K8rxGdF076SLMSeTg}s)GvJ9znmtt2TZnuj4x*ESe;(?=cyMIMojh{dKlmGdlYja=ri)miGXe`P!>bm(mEUXdQL%@i;~+@ghRu*!$2Lt%Us+rCFrf4S#Z< +n;5Oeqa_+I7JdDL?Ih$!YFFPPg?|xV+4h4Kx%tI;-B)066AM?-Z`mTm>Q#Rd;#x@c<{TRvjLDjz$Et; +-CYy;^Olqi;^6Q0m7TqV>_O+Y`xcB6$XkQ%JsD)fI(WFxgQMwPNM(yzx8KOG1e*6?{7tUikllu|pf?G +4!*K+;N45KS4`h#LgZISVeOk!7?nA&k1!@-!CHKafUC{Zx$ga`yj`8VmpA?e*r9iWg?a&FCze1;r>z{ +Q^jF6Stds1RM7pv3H*?n%Y8SQxgxu0X79nOCQB0Haz$wjMzZPk&Fmc{!T`vtfxi(%MWW>@OzhDO_$_GUj|7fJZZdmni8$d!ZvuOo;fIfluNOL2hRrQHc%&?L#I1%3PIL4O@YXPB2VQ(4 +g6+uIItCTP6JP;rhlesYfa~-jy!<`mI^=BgNwx7tyH8#pNRx(6VBw4xdcWkt`FXPO+l=_D;i6l!(w|^ +i03^*3wXi$7#~f_G!KawR>u9B`NYr2I>yvu(7ih)etb!i2(s~?^Kr0A!g +D*w50n0qqU&?LL580_0jAzM&6z>zaxDgICV_pbS?hC>T!KqQNVYS*I#lnE;KI`M9Sak}#A1P1|50y`2 +hx_RvFYV)~%x4fipdK3649ICN|@nnDVN*Rgd5){y(y6C>cOQa) +shuPc3l1{l|IFuWZ{h6rFl$in~DZT2P_a>^|P(_({gcX5#i9_UKHLse`)zLE22cdP{Fs-x5AOUf3<9@e}bJ(!t=K~#hAoWsN^b{p=s;z`~Em}hEXOdywq8pfuU(GD!L+$`HR()Ls)n-$Hp2^?O2m3b3g7EpSfniTxdHCGX@vx +eM1p>7M*2l3lQPpQ{1yT}?!=Z;6xN;a}Al_F=m5Td0NFmD$mFS8Uk}2FMQ60(3`y5xSpd+laoESzzKV +Hk|H=YCFfS9P^&`7KMA2W4o8_20utW#9y~G8E;_Gd<9thXzcWbH;0nxaO}ZiMRjTF(ht{9bX|bWXyTt +_fi62D`;r9`jT@XN4LxgSwFqBRPfwN&Zvp}AWaaNf*q?u7`R!FN|IktYDx50txslf{6Svn_R7 +cPx&0$7{{UFqDU7dI^rgmNWbb_X{v58q0$BV9z%q7#wfP)X#?88`A(KyN9ZUh-&kxP}bsHpi79HV%+4-nN;)v+|C=D6JZEl`nf(-`!gR% +jzx8eSP0VKnFNj5~Pi&o3V%n42OBqhVjI_a}`0oc3F7=!buG7b!%%f2E(tX6QTKe +7k$uvDczL#raX^cX&q_9y{1e$hCtEE~?fNQ8x>#mPz~TOMs9h^>+1kU>sPK5strI+S3xET=TW&IcyEdf+-Z++zUkD6pi2zw7Hw@HHx60M(n$r!1ro%^qzFSh16Swy^EAWd-Vd3ekY^7y#{$Z9p +ZC`g1;xPC+S{gj>#`{O#EG-_!!Dgg}ct!Uctb3(bMQX!5s@XxA3ch9pPK?6?qq}quo(q(7S$t?5k`6{ +O0e{clCR7V4LG0-jm_Cke)*K8;P*Jguc%Op?ANt>ruRe`QSZ}GyLmLptnO=e{?8N@4d31h@O^r$TmpUCpmzbvEuQeP_c4Nz`+>U)MFzejM9>P$kfE@&~4>?g6wQKUsQ%J0=avfANxx(kt!S*dK3XEHqmSIB=E;^le +`r{QQ3ehD=8T7xk8kZvX+3H05UY-fF?y|?*SB@ZL!imgbAtF(_1bRIMH8B8jp5Wx{I2cdfbq&7hY?&6 +_XU-f&`hli)bz)K3^AZ>z=_G%{%2NANA)iQQ*^3!Acm~{ObcC3GZBLV2!R4p^(jE +v9`)#rAL=RsyfSBJ^%LugFgb#Wbj@F2&^?OP-P&L__`b~tfpNI;l{|)!MfD;K&$y#ZvgvGsB`%iSPw(NY_J9EK(2r_w4wc+ID;L-keqw$&(v)w5kQrm +Yfd!J!-;+!Zu&D(Zl_yBEtmlr_goJ`PlbayU|NC^IHash!u+Nzv_DT{>93H%;X%?og>Zd@0QK-X0QGq` +C%u@d~o8Sp$SqQ?J%28K$1mFsBItv4&>nh;@wNy)+=Vn~|0Dof*KHFT1ubJsy4{MJAs6=5VTkc{C|OW +zTEKr?Eg`bbT6{LwE1;lRaFaR;+H%k(AGofigEfyah(6+SEP)V`5*n00ODKT+)+_Cv~g4Rd*icxo=K7 +o~jn~QX7n2)^!6X*b@Pz&gWWM8Sw`a5j5L5UQVDuOJel>+B|%MzfyH(h>mvD*clVM7HL()WiX=TQY|j +l({s`f)kzmq-;hM2e%*NT%mXB$)UNbIl_2gGah?rb>8A6jQxdG6<;8FEd*`TyT%8X}?D62~Ay={%c_T +y~OdLA_bm`Q+t|`vr01JqDCyA_(?Z%oWiV^7EOKWs~n)3q1LMoZZ6PTWf&AhiPqgF9 ++7>-^4-a-@rlWXEH*`#ILkM-u*9o^K<&v#7f~^ +B6XJ@L3RcT_Ljwp-$ais?%zUZ6yCd?cO|fJhd*(!Q~O~2JvR;C>l)ZcX(QfG9Q-8?VyE5zJM#}X2zIZ +o-gt-eG6zUfByo0GuRo8MEE)VWnfbqsfp!Q4e20Nv{}coL&=K;lV4xiW0dEZSVz-^N9|&q+30qqzcVZ +xkVY$ZbDW6R#MsL8372!~%YGt!J1+wyUc~z&BSR>aP8Yqph?c0p!*gD3H%dDi%-1L2u#z%WqS-AkDSQj!t%slyci1D@-q)J(`Dw!icG<8VdU-FJrlG{s}W#_n>Dh77 +l^_N&SDN-?olFgje)nqtQnkSa1k>fp0&Kb>PI_1ixHcO7kKU&TbL3J@K#eg>C}?OPIvw%k`6z8;jzDI +Jg~oEJh0D<2TkG>L~X_crAZ8aPXHs({l64RZVm&XFpB(CiEq~zdb4O_d}sc`2=>dIJ@@dko4{csnR1e&`9@>P#y3xF=55Lxo46iW;tp6RAYN +$Ob7Zqm_x)Ud;#hmxENt{H}hBs0R~9AW1(?P6v@p=Gv_arJ=7_@l$pLRH@DscB$RHV`i8iMl2USW%I?criI@4ZV9Bu>-gOvo +0FT{72^;IfLy#QPlovCB&^ABoje5139{-WE^>z3`)4||y5G4gpFY`#CqH$I3ZQ(t?mh>F?NuG4%2U}a +SUWRm$>dyR2gJqnAOj2?lN8^tsKz#3ULD_M;4n-VnhZ&&TN>s9?t>8jm|>~bzua4&xQUz=ST=jL4)u; +#HU*5o&~sEg*F)W1EF->jtCRbk4a`i&Wb`&5ig@SCz9GH=IzJ;T}l-ybLWw(`1}E-e|WRqKTO=la&*g#Nn)09Px@|~l!$KP-qu)8C=q+}W +MDNMm!QQdE**hxT8#fYc$5-288?Z}~-=kmUtgyGReuVB&>_Z4Yes@q{Z{fHNZ*Ars3*J&R@p}f)JFi8 +Bdv0xmbV;z+L=bvE%`Qzx?9}0HogFrkd+Fsb%q{QjEE8z{qtW6|N;Mz-!_ZI77LFi2fj?x}BI^jnwb% +Bw#6j5=p-b=P+yhJ4t;ARJi#sQ04Uii5uPhhbo;?t{dL42svTd;a+cbyB^AR-lDDlGTxqFj=Jb71Eja +?ZIT{}~^{Ty4C9bQniE3^R0@2&?x +O#z#qvh9-hH12yyPx$*(2BtOMk +&6Ep<3duF(DzIU-i4V-WH4@a%D-QGT1_v4mDxT@XCmp|3LV4MD0Z*1`-J9v#+uen(sQJc) +~yk*&gu8s4c>%9iM}rH6?dfy?S))$?7gxV_*}uQiN3E#kv7rb-2JfXfkD<)rqIWr`O{UDy8tOLu@)Di +m9B(kbhC9_!yB$LBGK3@OrQgO-K+d=_8<{OSC))m;s;eYh0lzawmqNtsL5`HE5_UdPM*>k`s%vnpKldSXDXQthQVLEI-D&y<``Y|#e~69fRS|(OUNEfo)_WA=Gq +_nWqs>#D!Nd-=n&-y3k)8|$`rk^<7@f@7ezq4zba_55s6`Y4bo8qLMzmuFaZ&LeiowZTVeDnp2IZ2jTxkDz}h$6>~R`n4Rzu|Gch +05@F;yAw%Xmx!65BqKSxmV@ZZ!B@xjFOD?WdhrmgV~N|x@#w8K839zuug=_8U^2k1={H8JzEb-9)a(n +@OPEXDpmM;?22@b;xa6~3zz1Q8y8lVf +b_^qYx)9X%u3j4u9mJa50gTjIBUud^vx-f!Ibzy3efI{vKs`X5>F+hF=n7yBLt&=9nRXEcFBBnH6<1b +;r^W{ZZRXx9_j004^Z98&z-|~QF5NRd`;0&6J#Ghm_fN)qbVvnzCE8u##EPej{&+O6Y#2M~ZAAs7(0IYVaoD)6e3SMb^Cez@eHuNe5Jm;Cb;1AqIHC5ijY-+d^BW^aeby&Yc0Gf1G_C@qKLQx +cLdO+PO_=%g#`Ni>q@GM74jbLk3>bmbB__JoRB#+|7Jb9uJ(&AIYxDvWn%T{f#Ex>hN6Lp1YFLS*@^X +eD~O%eBHi)Uj~c60q8K!wWOr)yR{ocupaZ{ybdni80_L$^> +@Hh2Y(R!lhy&kRZZv?=6au`ENTxfQ=P-f(A=u+4F#wfhFp>{EI!sCA6!MnKnQ +XJetst<|RCgEPmEARyNbAd3&}o!}dcfxOt7l^~)fC)Em0rqEQ{%)1+Xfn?KjOpfwA4d0t6GGL6`-QfH +B)0tk|uJb44Eh;ap1Efp#;jBnXY|VGLF}=K-=R}6cY|8#Zxk?FH^-|og>vCc%Wp<@_JQrmk=$+NmF9Y^W3qa@`cx!#wK**?mwT`ysFH&Xw((2?&#ROr+$en#ptsTmumoGZa +T>AcG^x?k8r@B}FlVze2uw&H;Ai7h{50nVzty>a?$E`rW|U5+JPKd+4xD;AqCQz}g{ve$ +Xd;MBF~^r)O99%|?{?(ttqR4;v?172(Z3?zTORPZZl8mu#yn_)I?d|65=}>LLL~OlZK>BefXj<|iowgWK3<84 +tMj?xVsOr>8|E@5m2KEYzDcXRdY;x@)5F3LJUIkbYF=j6T%_@&DERTLM8ZOIV4NNl<23mJO2*>h9Ejl +kkpWwDLCiy_((WtqhTF3M$s}t6#VWhy^a7ccfZ92GCNRxCoqLZ)p#sN&U<@{U6ey_!kchq(@I&%wle- +MeE2+GhUb@VzO)#jaC*=vC(HfZVYAt#9saYc3-WuIT5u=i29RQ*ymE<{ty2GxFy^UmTA;*I1UEjni&6jrRizNo4faFByoHk`1~BpIXABLLv6+rh@z%n^2JN?n +6wFwM_z><*7dqP#{saY9*inTjij}?s&mts)-KG)H|BL7ve^m(rkCxZUe`xlG~P*QGsi*ski0mj{Blk< +&lD4|OI2fXr4A{oh25n)Dg|oXmJ=F6RNhAqDEkK~rt4Mxuc&LjWT`)w3I5Hz?h|SD3<}qceK)@U{rid#k^-3lH{(30b{>Y(3^c4?C>v)e-GX|`q+DXU>N?2#)|KNZi8hw@g4*X{T?Pef=u2b$q +~Gl1UKLXy%*iET0rfYnr-{XylC<*&c6%I1v?(xxku@H_A|1lr3m^jff~BAj;L>=2&H6QL+BYWT3>w%) +Y9WmK<%BXE;r-)25OncI%b`S!t1*kFsCg7+$^i}ibeW+iF*auHSYHuiGk2-B+}~_9p0yAF^{hb{mMJ^ +$IB3bzA==(Y7+yWiW6_p$cDc5WP6LYg+!Vaz0Q_~e+atq-?jnojU`KclKVev%<_?ZViv&>9n5pJC;w% +*Ez3k23*`@B2W9&u|B=n=_MrlMw&EC~^0NJWOy(*1r^ZnqS&q$1+OV#vjs5__>$g$S|Ls6TNsuk$lWr +#9m*l8RbwLAdOrwXPJT`-f-5Pww!nsXz>~MSZ=NECU5fgX{@hN!bXn=<6!QYND4xG?qs(;sSwT!tL=A +NDTunJpP=soO$bF9uccNrzwSD>)%isvCqy5zi~KK~rnd(2+I`kEOiKzO%G +TOTww`Hp^C{GRW-C#iH0nQqVNED@CGKBO0ZimM{$Oz627bTCwXMZLyZc;vvLrs|-Kljtqqjdpe% +wCwTGvdvDN8-Yy(1ES$BL>e!0u@ij`?0W)RG9S-U!0NxSxQ?_*OLu-i{W+vlXMi9<@+Qlm(o%FE3CP(RLGtXka>x_H6~lX +8m4U+2knBEY_4k%Ce|RFo~Fx@N3}E-r%;y8$ixWy6PKS}g}Z7Dgs_y0C@+c_4cWxp2u +=V2V@dwTh`oif~N}ksCRoooV9nX)4dM_yWIr$gvp;37&Rmi>dp6%sut{MQ;`e%cJ)}b`poF{zZu)Y$e +dPQpA^ldna=w%cKTYqwrCCTQEtFU{>6VF2gMqD@)fCeI`ujDB2wV9V6D$7>PGS#VjI7I5m7T+rlSr&| +JAkEGCWs~;@43rkb)7XF!bZGPcNkO|kZP(hh>fQM)G4(O<{k?k}__=*N|7rYvMy9zGO+CYVOlsRq>bBv{%adGp3RvWeVBXTkebAA#nXtQCJ)=m>p2_Lf&a0=oEBSo8Cmh +~KjgGjPC!Xi<`TV*k!Jm}kLQRc_XA_~2ov==*AA7{G=E-~5a*&VoKUA}VAYg7+H=2y>H6W}Pif%lXt& +GZ@vhsF1Bqe7M0xV89vKL^32#eE|8UZ00!K|e7UsfqKtDoUwqdhk7H#KM0D|jYOU|DWCr2VVheJx +k7y^Dvn1uu*er)+G$0_FnNmjMXzGtcUO3DEQm-R5r`bpp(&d3nS17>mig0(03rOWPGi)y1PUFq{vk$r +)fq-~|==?0T=M9yX;_}Qu-EhXZyx;H=bc739hVvwahI#@c8#-W;Sj;s6k*u3ln<)iOD49EcrAjejwb@ +AGgDyWdUvQXX^ggg~P1;lDWv+icqDap$EmdD%M^(|?7rdE24^Ze7mYbK%me-pw_sh-f*2JyUsml*XSe +7m!eMc0TS0~{-p|S^Il~t!WKO9Q8cuq6Ws>{6-9!`*P5BHVkaM~FhUPSpEH6=wZq(~^vGBX%Ntc${yp +3f1^Ekk2*K&oj@fzI=asj=JRydo_mXSkShQ{1y0WmyHnhmT8_R@aAXGI25&%^iu{o`iMjHqQ)o%{@Sh +kcF*XQhw1^b>e!K#a)@K{=?94S1kLFK*L`x^pBw7w#X0A5TkJtK`9tTXcB=54EeOfX#-yS><4ToC6MX +P-KNsLJ86S>JMAFd%VjXR4{bt&->F}y@1Q&SBBOl`b&QdHX)M^YkK12&g`STq*mZ+;SQ@<>%n +AH2Rn*>7s`KkNXc#A9x>7=SBeI3dJZT3YuM*nLd&+a7Tr}C$La3Anhkum_79)^ +ZF4MeryB&9ay-dLg3$lg*z$){uV6U_03+NGd_TCln>sS2j|H5g@&{>)op%2tqZxj&`+YwQH@j2MRdIq +W!2y;JDuvf7**eu0Mf@KJ<3`FYcv}!N3R<}O1NKwmvHqUo-88tPO5<}#u~)ZEBVa)!&2QGQkxC~cgX- +QX;|=~pCCdnwe1o9*lVPkxvMSs%jO{rGE%IfeLXUO0z5;=afnNA6DDT9X?BknSF4euSVGw&TCr->KsD1WfeMs?JU;ks{% +sYP_ahu5BHqrmaaz7jDzqi!)=9)k-3PDJW#!wvDexdlMyxHX4ScAel$rTQEV%lbE@wYKe--db%r{NFj +%XqW7pPK6}Sl(=T3hi3ybhwvEP-IsPNwM8_?)8>$bjlrY8jO2-(i$Q-AOOu?@>tE +KDN-lqzsPT^EHw*r4a2@b5xz4dPV<&08?VWUF9NTyEJbL{xkah#5r>jWs18{cJ^^JA_aM^O%ZP#Y59# +P9~7WX4C--7H#|60r7@IBg}J%pY%vvvE*TH6I6fscy5{&kA&_X?SrUGD`D>1$Kcu0ODsVld4zUON0P& +#b_Eb8)zrS;Pz^{rqpVe~8mtPy_)6I&G?sTq2q +f)&!{}0Hle+T9+*Z4}xIfS%-W50s2Kw`&Qx#+d>&aZSrJx2uq&KtQYJIL75d(y@pL6VKn8y+!LOsK61 +Se(6_V2ZO(;s?{v{=!3R|ZNBey$_qDW-MqDr6Mu4*hBXVo&AjiN+@6iXrEsp-;ujiDn)uRX$OOvP4et +E6c4hS)~K(R!xRBn+rf+)q0s(!vQWgCCbZ8WJK?Z3pH}9FAUQc1kQb(st~ +wPy_eG~7Mv4{Htadb79O%{RvP9y*J>jJahtk^2Mw)GI!1xRJxznXzVLix9^H5JFb5Z53V%bXg +B)Wr2NJLzi3iUKO*_7#_!-MV=dfMA2vqY5IvSK+c9;IUP7~Jy7nh2cJRiL@cH8CmjDB3BVgnpej$+G4 +>I--3qR})xMQTs^{`xyVD*$m($6Eo_H!5noh|Mh63VoQfj%pj2WToDT^4i!4UVzlJHpC~0}fmp^yEGq +7mWJt2`ZquP{=c;hl!rxrHbm5Y@gmC?^I{QKdGYM73=aiK9dt#wtc{4K%_GKGfdHFNE0bTXl-@GQoLT +}Sp(JPd_($KyQG=N#nJI~Ld0x7Dl8M5ww@lU$<_dp9>f-JU4l#=!CAuP{z?RDa>(e*kTenPHOVX|&Pt +rsid3*GUERlveCY4|@pTriFW?Zy-Kvjb3G>wbF`Fp+Y8xEQrv+Y1P^q3uje*JC9yR~SMsj_=W*&1tbN +3z+9*sKzbxqgt@kMf$Jtz2L9nAa1jp8Y@`rDCONGzZ@bye=>y%#SE6Ir^?PXac(tkZA_-vCNVigqIsc +lUBwmNmj}&!Ik2_F6Hw+OuA_pt-xyGp`WTJX32?8%xnQacgn}j>L)r7@^*9@JOcDb4}&La-fMY!;KlT +4rw(e=D66TA0=6+o^&r)j}`kU3eVuy-XYrQf*=@;#06Ly?#I%P_y*O9uHjv2;o0n&|cnC)T(B9Ol3NZ-n_<^u2xy^Wi_jeADs%b_MA +3P~VdN6zT)-jU{{dzfl2#w4?Mj)E~dE00~a*IOg!{msIy{u_YT}$H9v+VcVour0o+*ptx-2xQUJ< +=iMWkD)Fq(BDDvbdgDU1&0A!XE@_3Bp?vEGX2pbu*=fu%C(gzz^O=IPW~PBy5)XX%x`{DZG%urlS<4B +T2aU}prR6meN6MplAP!hPYPxU-u;ojAOLZ1M#WL0l!QLH`2$isbooxPPPi1dqvU7L5A9!Id3`e$>w{f +LFibcKjUff9VD>I0dgbSqC3IY+ig|oy_t7XYIYV9L3Tm(0iU@?m6cOZ)UCk0w+93ScyBl2T34dp8kNU +vfN}%ba0oxXe(2S9r2m?l#@A~u8HWgk6}pY7YK($EWRXDU;E)YpZG&I2k6zzcQdyu#pyhX$V=W +jdXNJJuD2~I!_wp7)9Y$UI!P$b(u)121rEB+BkMD`K9qu}a290Cwx47B@1*L*rjNqLF7s|Ldi>!V_s8 +!(+Rgsoe^|t?6_o$U4Zc-OetyQ!O>Hnq5(EL0G>KvuM(=JQ8z@641QRfgqvWUlQrQlvnA;0rQW0Jx9gyE2gMEfLijyv0^Si3em}!L*dp8OEBBx)`u3yRgg^W{SdRCgZ +Mu)Qe}{shUDt0wy@74?o@B9uJG7%b`ZiamsXYykBX6V8cbCU@&KJk@y}9G<Y_H_A&7GVj=VE+8zfNX}ah;%CPSqgz7pAD`S21nQ?V8M2J!V(b2d +C8>W4KQ2+Me*T=r1>v`6z4+BqT`eJ#0o`IhZR;;eu%p~Ps+b!lqibT4+`m+=I$+zycy?ITuS=*=tXL| +|4N9Tw7(@WSM{CJF+e|_wGdK~zpcZlLjgmhAaS2rB>8+kg#26qx6>pTqk!;*pdIYuXy;Ge<<9%)=lV@RJJWSuW>;S5Q!486!Yb#;Ray-~@ +YF60x45ff&!OT~Ftfo{U!tYU*31K;5z{C6aU9yntCc&dpQGdJsf>Caw$iJ`3F2NoH4w~O{;rbb*|4|V-nTulzt20rk{@zHC++FzQof@5>Pyh2KijT2Qw&+6^+74Yc<$ejf^wrTp +Z?TqO_Skd8)zO{%lVi*nwn!*xt(dbKx|j2=eAWoUcT%{WqN$_z-uYDnp@gO*RU0@7vBzy6P^nXD&rB- +dD0NW&^APe0N4n?{x=5zd&UD1Z9UzXC=IdsntGh8<>A~HR*PBXhY+K?%4R}@H*l6Df8D#zg>YxFmu+W +dGdW6T#oh}MB$-QUah-Cw>gVfrzZueT_6wveRdK7g^6_(de>G6N#cmAi +byw8a7t9m|_{WB}!dG+T5dsxK8>G>}T{JQ|RpTNI4`L{kJ`EnTvL!ui`Gk|VjgkCw`@Mb+11{ps>r^!DS%S)g(O>71 +-sWo*wP$g2Op4`ZN>HYl7yvXIv&W@9rZk309e7Cw@Ltc}A?Urke<*IRR|dp9f15y@ +vz{ndPrd?naFwoyb9_Bgj9FeEIgS~+-hc$9b_@GJox!PQRmW-}w58h$^ip!0H?f*wnk>EWtGMKkySR* +(7G>B(AxH4Z97-2G>d3-SwUOn{3`o|XpKRMAXx=OKv6TpPaIey>zPAle;*#W;(-r +mCm%AW(n;uiDlfe~sffz>T4GD?2z(hpAX-ISCplHe(z34?FPYrCzncD?O9Y825zhb}B}~)i6B0iy +k9AgD*f)Tp?9+{s|H+p4_rb9yg$7Atg-LQ~i>)V@S_b^)gK*u3s!pWwMEL7m_U?YaI8jtZY?mUlCI!IBrFoZ8s+3Z_Hgx=|+4#{j&z&C#9fsjJpo4nDxScH!ETXT67V +W0}8B$4uFFgn#(5ovP{bk1zD-3pEnCogJC~_wm@qufCjo?4MooMa&9a(m#eY`GunW&u;ob+x~FFpB&g +Rh{8||ClDAyDIB9FW-Qi#-loYWiajsI@+_4ae=@uedXs4K90~ +yMB(Q8iWu*7oi}Zpc3b1XN*4F1BY +hHsWm%!3&$ycHFgWR*X>Z2?XMYw)dXFCV*qat93h{l#jt+GyQSFw;RgBSC-0sOQ0wG&Uba`Itk +2G`WnyJ-LH=-CI}2C^Vgga9J4u3`t=kSC546$%JPZEJX +WbrWaYV(m!OjTgi2oL_O5911@nO$VxFO@bBAk!UFOo~VJ0%1_!JINj97+olZmqdhP1zmRu7*ixBA)r0 +QfNK{!Os_r}(!m$L_;C@!gHh%`sEUlyrc{b%9**{n{0Ey0R=Ia>nekUvA9&664YNkYT3aEKkai+%_HS +0XV633$y5zeoE5o6kX|y;@&LN+3pw5#FB6CYb9oNzl9amXE6a(K-(N^rVGc4<|bD+?8%^AEMi~M(DB<81=%I)J_|A2O)EE8#k +Vu5Pw^6=c4*tq+CXuyJbHUO!PKrrx3A%sfZ)4SJbcGDw`YimJ+MgqE`v?K_3j43@s~kg=^lN=$Q{eKy +Xj+<9xl3z5#&A8|n2b2l-*p%(BJwj}+lO8-0Q;5ofMfCyb*O73 +<&Ce%oK(3q?Z+IziBr7B%r(K4wQAF_iuyUR_bj@@yQ6BR^p_1ZdpSJFV;KJ$J;%51nh0})vjfANy6zR +&}GoKue=rPS$Vs(R#D$eDer4C`NUs58t)oXk#e=k*fyww8bDafP0;`=xdO%(L~X^D2iG! +->qIckIoD|L;6W5=-k1WWgx2uRIjP473tV6RgVxeP9L+g7UqtN+@X)BD+>3}F^I8w+FvEO*4x-Ebf{% +z$|N^vwyhq5AMXKs*gnyv%G)`H!=@=VXT`LPuyYR7MFdl(aOb +>8(LJ>eeOQn9wA3xi!bsD!kVH*|YkG=q>Q4=Kr7T$RwfCR~YB{!|gn6`|jic!E%I{WK-(DP4O~LU~6z +yKF4h@(+*_Q!F@g5ez>JU-1&uZ$Bm1$Dg%2;z>rmF1vT;B-SD7;=#eiVe3MGY#CqBBk&h*MV +daTzK|`qUY7G3ytMO2h{isNDCul<{0Ede78$+xbFe6|hiL7hEy;NG6ws=YzBN#E)9kPdVu7Vd}Q}d?(0Dp&Z=voss&gP)b6s^zlN +A4aG%(AYL)C3dGBz^rz&Y%!S_FVO@NvGF9Y36Ol)7up6Phn}qGxeRw@wa1R_=IjE!go&&t@%GZHldYW +HJu}WXnNjk#gA=fS4(ZsfpAG}HC%DR!rXHiw&F-8vK@XCa=FsqXcfL=~o0yro1njAAGPxrVII>iNt1tgVN-sUiGOBCf9D+wH-NpyG5#3^!v1$_GkA|dEgySotH1sIY#MR&`EWS531@+o5q(LE~ +=LA%yN-ov(#x2D_F-zE=t6FOuM^=I*$<-BtS8#7Dxbn0&yQ}U&Xklytn{*L&QZ~upF4be-18qavR5u5fA$Rbcg6&%-x!la%a3Z?02kg&oz=PqrLhr^&l +uB2c>WG!QucVySH>hA-;C)9q>|Na%CZSK*1!7m?VDWt63_oO6m?@t>(2>-eBRW=4E&HFkp7d^06#A0P +pipux%_oA0GRWa-GJZp)OLc(^!v`h-MDky3zNFh3U>R+;ry|?twSK@i9__@Q^y$TF_eD4!3*{}4$82} +;=4FEr3lC3@d+KoPGF7YK|aHM_}^8S+HSGgbU3Q`O@_1rIo%>z)?PL+oWv8N&PVG7-UEb#5){8n>lAJ +*PB@)osyHJ8#L@`&O72I4Ua-}oJP7w02gj+fzX2w)5}-_vPMpIiK|WB@4ma*z#fM3eW^55X-NNa1)i@m4cBcyM@O#O0J(Z^_sA ++~^W+f0q+fz=Jbpj=d!|hc`Y3ep+)&oBrn%e`eFV8E7W^VS(C8$;5#_1~Ra2)vwZwmQV0iNzNqjdczAf|6I~3I!Hh2BXhh=5u~oAibAzH8i +dR0E5j-r4^M8PE^;@kKh2xluItVX_3*&ODI)8_y-=awhOiCG +lBoqY@sn0hJoc1I4WKx4;7M#}VV#PYa3pcQTC+4WOZB?&zOy20pZ!5s{C=yJ_MOimxOaU$x{MyZgom< +Y!3g&k`q4orebwWlRFhV#c+A@J2PxB-~>2)bOTs_q#Q=qZccccb2vSExt)|Uy1mAd{CWrST8Qa35VH~ +m`ELF`wVz&901Pe!fQHki#aqz&-=d@S@sXi%>yj^7+h>772`<hlzit5bym+OI`kDqlM3R72IkvZV^Yb +8~R7G==@?av6Y=%3irYGydnhV}BO=)%D0XuI>1Q?MDPD1oFX3;^opd7{7%_BJxJ-^(*290ka|FTpYgr +8M|v!;JU2k}&C<4h*pOA0Fh5nW7ObJ(>7lW(b~!5R!^j~y?<>e*qgGTbj-&?!fdq0m<}q#^Y1*|vPxQ +z_nj6L{Ui^Tkyz^Qm^3)qO}DYAlXnrkNC(RWCpNuVQ$~GO1Qq3mzk +@U?bbgX9Jew;vz>1c+uxd8Vqo*{9w?eOQZu?rH19E;fzKl(Jsi6x=|h%kPd8aSz_Ul6a~`3;ry4G)Vm +NZ@4|1T59a^zMcFR>SPpw69@=QlKi&az6rwhc1EIgxUi@cw_+VJSUi~AhLI|3KF$|_C62dngg<%A}(J +C0iF%;cs76Oqt0e@P00loPM3hl9{-HS5X?GK{(Jy9jy4@Pg-sRZ90zsb)X$dP0>m&D&Ca2si&-{ZmPc +M}{0@1_I@^bR7uJ;f<}f1d46hHp&n_pFLa-enc&&X|&DkAj8RKHeq8_u4y}+yhVW+y0n*Pj#V_z4>Cd +E~j_ugoisHr13qN6}}5TwmZC21^*=eSP>`sE61_I4`b)`$4$h#**oh-4+d-$JJs#^FXb0s#?Je{*g{# +2JPQ?b{-_M&T&oX#7>{;O#Z`!Pw*Q!5>g-$y&`Sm~c>yvi{maZ$o>`3_eSh~+r(Ze>x~LVtPi^@cq6f +YNriATcebKAr%b?X?j_Jq#=jMnyuysq`gTy@WC1BMEq1cS6PebAM36ppx{Oa(i3-4iKa&GW@r`&bpb{ +n7DsoZ*iK7;lJt(}+zw6YbgO`(^jznP0IH$^n$2Mb +?!iJd7_3-4<;}!=xA*_>@c?LLSHX#C-(@3n_YiLxI>#3%FRedtW>?#9%y+(PzJwW?5b|AaqrVQz?JOS +Ee0{_QK*^cL^GCEH5iAgXOpSh!V|a@f4aw>Lxkl7UL%8ll*L`(SON{X(-V+sZ(3W}3N8NGUmhG}%k$K +$N9d(^NyAdg<)IYENqZPD=ajE5zsq$QKhML+KV|aP0**G8w^QTztwm-^Mf6aa^0@!J%@q_rrzZpXFG_ +MSb%2RWB7zooUDQmPX@AwTTrL0(r(ZW71Uv6kt|)TTr1>h|vf|{#s3=~0sOFFE^{!6~YPwin`{H>z4* +nf8uIjDkGax-hFe}YB0kbJ65j%FEHX>Rv_hU+$t+;9I#o6GBqKr|9ye_uA_W4lmfl;w+ie6Vh?$c_zs +bchMCh|^51@1<(bf@*~^eFKxf4 +m(N5)qOL}gmq>Y*O9zk2(0Fis;8RbQxuBL54z2;kf3~vUM&SrUj{m%*wMgIR46oTluGR?GlFJbRiF@I +CEI2@f6&-uL3iK9dFC=H;KrvO^%ye^uUGJ)ZmWj@Xv%E$qs1`@KGnHcl>B;SIaM%$^)*^gL)a8STVKN +JdyF{~oo4@(vP*&i`mXh~mp9zT7hBKQn-e>SrD$@)0_!oPFPtFCtoh+O`Cb-f%KTPKN+XUBl3+hi3Tu +b9U!8Km{7oeg05ZCy5{f;`%pp#$MiwC`Xm_%>YR(AYSc0vh3#nw6p=32-+in8f}k6Ex+R2jaEg8hOCS +{p1H^8NdGhceOFjvGs~t*YN|a=ku)P_m$y?_b-=OT^*z56JZHw)!_Wd23(bGy8@{D^usdSIs#uaSHCw +SsZ(bM=_>6nthXmeExE6S+jdo1Bhr$PLDA@MM8ggT8?L(PJO^cOaW&>eO2_ODtOzzZ0hzbfw$VjL-LY +5x>=r2j%bO1cyuPV~QGPjeF8o8271OTz34qC +@Md8grOJulPYA6nU#W18$V^y^h8RsMy){ts^VL +1sU>)lYmD#c33#2!fy}6s9*iys=^k`?M99j`!-|y=a8o!*%g{W<*Hty}IsCRvFOznS?ceyb^{&6<#yQQOBJ_xL;XP5e#&x3EGKJs}uu=| +L=0bc`fit|IEEjR0G;KN_5by>}JghuD|kAjpqaA7zQi{)ywE)e)eAGP!lA;~Sc=()3jb$GG%;*)P|ci +VBC?>GFZ{8s`#4AD)VdADe6r1g8|b^ZC6F2=tQ*~SEPOP_@E*P@c?)(?fQ#`Lgh8S3=Ifm99VHh9sxrS~pE$FZE1C@iDZ+MS2d2A#rcpPdt&~9EW_JIzm3FI4+X983&LNgw +i53Bav`T?FK7LIk~r4obJRyuWmnA&}S`9pTO$EU-%&H~x!xTzPBBSXv`NJ#T_VuT?wkwBAQfz!6v;gz +1w5woPC6 +9iFXM(@mP?7k!&JBb;#Ba$tjXOBp*&z6;4*!-p5mjl`?>HV6VJn9bWkMiKOs6} +>j0es~TgOF%AZ<68be?vX#^;*rLtDVj`msHP?NTFK+dAFcKw@AXXM+vbz7<+uz=C_ +`^nn{tvdm|Mr%@Y=ghv?x(GgA}I>OFbIZVoP;5YpfMcAKQ$uXwvuh{BawG`WcIF{d=Fs4-@8Ui?P;!v ++J}D-9e`^J~PE1Do +`-|}{QjbwMch~D#0P;AfV!S7Jh?s$~!1)u2lTCjbd-L@@mD-WsnE}87Xs%=f-wh6v3C!#;rU^=_}O1{ +N%)YIuI-Th+X$GcYiI*x2*AHNRQ_>Z^2eHR3Nvkm4S{W;qk2y|ZumxjzT6){id6eD7Gqw!hbpG@ +7w*fj=IreqR2*df>lV{=RzPzghmidLVfRzv8byWtnAj_mQ8^jGP-K!2%d(>2B^c6os1Qv;8zC&%txxG#jXaCkG`$7ETPn9$gf6J?SX;VX7JO%4Rliw$J2u(?ti +e8I4%LkL&#EI;)8&IJ2LkQr^yi@AD(^S%7o1mq~2zVQG%rNE)pvv-g{H(ak%kjY^ +p4h<8`^+`VK_lEngrg7a8zss3|0!Trepfw)9|5hw;KZ +ykj!Et!^{v}`(g$W44XdH*|PiqL0HwNO#9+yVo9p*L^+o*U1?cwbWe-h-4ap7KPKzv?xnZC6}2JcsFa +$v(ih~5+Wn=ZiLjzI~&<10%3GlKU}^`=NR2;ATl`W-^!jYp^0pfh +Z-m@dPGs+)pKtHt4eGZ?acqA+>|Hvr0eAY=3k0-Dnm>w#cyBapzBL+Zj7pvu?IEnIhMmcOnZx~#a(mS +$1M9x`3Jwm}dgIrI!?O+5^O0xlZ%u}XXC%JW$E}b9wvShTja}>WSNk7K=jDz6Z-1|QxctjZz4ga~`%F +FW*O61dSt0PJCH`rJz)ws38{>yo@VPNiF#y=iMASEZ+@7=>?ND&sqz)2^<2QmBSvd5JR@4rZoH15bicc*xR$)xPf23(%!qmw+O4 +F&;}A8y{wxDV9vZr&i8j>U_4%r}-gSr}+T&m(e_t|u@(Qkv!GS6lVOcs-Mc{2(Wfmjs9>{Rmy7wMfzK +nbga}^X2s(B6Y-`9unrsc!Zn|Om47I%5BV+6+Ap6GWs>Dw_6Ctz-;SxdYy_$+o&=`9?gfg8mva47!%r +|$Q8L*98W`rJ2qId*eVG=l@MA{BW1@n8ohQ+Sq=rf)_Q)w*)>x3!nF8|H}z3Bmw1@P>3Y2K;zOl3?5A1|)RDoYNZ?SL7u!(-q3|Mf7H$V(bU +^LJrVKcANAu;8a9{E8O+Ro|&l#18Se;zkBYcrGue@PEeK$@*B_PIg_juuj9$`)jf#idHhmG!L_Yu_59 +MfH&h0$X+mhg_`dR@ko1M}|T(U9$Rq9=}^nDXV!0$-PT +JWIEisoZJ@0B7mmma;BbopdRltjqIqQz%cI8rcjN$i7ZdPi7*N;q~^$-zUmAv#qS_I^)@D+HafvT0Ba +%#PS=#A8zFxR&*?rvgJYWyet2g{GUVr{+{(W@9=NgJ@*s4$0>xysEyVW7=lCF-UUH0hC`orSZ$0LN8b +~a(f3H_bkEVkdvm})6LjCfwtWL8-|&xbd(h|Z_3xMz_MWavzb6fCw|&-@7958@o?Y5y_hn6S^h7|0}x>e`WW($;ZE=$F9!GAM{xJfgUSStIxm&GU-Qi{1N%K +;qBHVzwTY@-`cx=%_0AHd)N2Q`)%(^zU^I>Yw*A?u{U1-jg#m%XOR=qTtl2x3ML_)KkVS>*SlZS-6$9(i;}oMNM~+u%wBy +V+OOir}@n$|0hr{c#+rv`98 +o3C5atw;3O`0D2GB8t(PMb>1vbC!^(~_hk0hQTJwY>)U|HCmT#j*RFUGigKD+0?QT!|QU0!eh|KrpT<4;rWe|qE>(EICGeE{8WuK203 +lz>TSulJ=WnuJjb$0-V-;Js*tKxmRiF_I!tl!Orqfv8XM4~BQTO}__gkmyd7A!N5c&XPR{v6lu@J6(? +7KFitX(T(ktjaMho9*#iX&YwF3MsM#WbVt(NKjiJ)xhDXS9hJ6ku?>}w-{9XS9*}Ie0ojMQ#(S`SLt+ +}*BO-ec1=@jhzy94BwNZ8=e*1wCJ5r*_j*AqwSH{3^EQi006Up{4%?8NHALp+g*B$@J^aKA~jt#Q1UK +*0&l^Wu+Sr4BZS&aSr`BT0!MZXw2*~0KcwaWHRc8gck#`_S{XRr$PjtyVOj4FUFZU>irC@0?O)^$35% +om+tc|R5+@5j#(YCylB(ED-V#}j@;q74T>x=j)N9p#X5gAYEsO}`xj_Jg`e{gMGFw2xAj-RD!7n)kEG +!nnVbA6{PU0KdFGUuVxBcyGL49`e2@cSU;d+xjW;u|E#{bOQH7_+wk*pUPbJDi`2u#qnAi*?rBa+)618Co|t_-o3Zi|&Ab%c8Bs7lKzJTi8Anl`jQY11u_3)M^q4XbX(BVM>otF-u0>f0-TylO_vq +Z`kU6YMcfsdU;!|91K4@_R*Z)DOi09m&YRJDSw7stI#T_waT(qufR)lM2@MjLs;m6G9yd`z3%?B +@^pSswVVpiN3Q7b+Z5O0^7II+z1*fTIG;C-HG<9vL`Hg0a>440>&>W@`GVu`;2_i0+0!TPSW_(vqtDi~(xE@QB6pySlxn +W&si7_)&>%hAs0QU@ZlYE-0UhlEa+`uV1wj*CQ)K7QcUmQlxmoA17k +za4SZkouQz+T#SltJ`aNHZVLj`@#hLwmkV5c_~7+axU5D+i-=?iEE4e`p>%;A@i +2#0{?NZb*2Z(qNSyF~!LqIfME!!nPN^%^N>gQ3lFdyixiw22#O!Vi^>UA@Il>WryF+V5HM&GCSt#?3! +N=+SXai_VIF*&R2hSf~S1^JG@P%X7VVNlbNmU8~x=RIi-LJ^wx-4^L%Ew=0qq9kD<-_RWxU!}eJq+8Dmzo})*pWic`FtjTUN9P)` +1%vttR!|A67E+&2MoEDX|SvhfY4q`g25DOv(l+0OA9+pDIiVq8dY}g#n!%#R69&O$DTExQR+4xWP`8c +zr7T;-(Yr2aGH9Xj+*$L3_Lzj%lLVXRzbCu5b8!g>5xm=1X;T|)=hm3Cay^?`ymVizHaw^kD49?dHKh +i220-7?6a~Ls?u#jjj(M<+=icn3uFQ?!1@x$XPm#RE_IKHZ`w^affI3gpFuv7DS-Ey`aC$_4G1+^ +h2MGKj_VG)|u%K#+e8NlN*=&e*W)0J^xqt{NRay>wZ6VjiCgE($J=nF_fes0wD>ABxr&_5sV-Ra${vA +gnU{alDx&{p8g{Cyc7L4&`jXHYb=BIu6YdEDPxxIwwuJ~_09CVdSmZ_M|W+ykz=;Wobzs)eR3X`dQ-0e^t-Tuf8O^dQLY{^TC)r$8V~*rP +l}vpnr8rzfQ*2>SA74U?cR6Wg~vCpgX^{=;vTRbV)A6H?_+!8K +IB(lmi^q|nclgp+ +$S9v^Zf3{~Azu1Za-zRMSG@?sh@MejRvJRRdIONtvwI8Q*!HH!+1&Z}ZRU2RbGAri?8sTjAjjf>@xy~`1_>Ge&w2ZR+u{O +ji1hF$AyXr;#JR-(%S4HO}Qfwihk;LvWF=*ef<6!XFIxWT0189+*bU?%P$eY?KqTe +X!`lQ4s?$eet~f`dJi{8cYl%n#&77`$7aBLL|~KO8yId1K1|;eGJiKBeRpPln=bE98tqxX4U{*TzU>Y +BC=YlK3v4GK$gah4bpN`&kTiPNLu4PTdE+wjt`6KZJ%#U)iEXVZ^hfP}-;4C{ZzIyr(r8{d?{FP8LyB +4A{_5!C@GovB(_XCC{Mx(ww~-k571KT-?aM5RKSLVufoVS@u?*`Q1pI=;d$Y*;D-r|$=?3z#YT!Rv_Q +$GsX%75Jn}6*=y=}-#agU(X3Qu_#z|1OzVhe(Nb0$oIX=3&g% +<@@Q96?(S^E&pm7IIp8fq)?4^~mbXxyml`PXQj9(>V%!&s8v`NFzeuRdjmuc$csVu3%_y7!^x|{>fU~tLPLWlnnRHiDOE +&9U{O|ccSyo*amgfn+-D!2m$HAIu8n7hSNC){5^hERQ@rohPNUg4vsY_RE+m0~MbTK!$Efb~!t~fZ)`*bqkJ1RW< +jTqqmqlwF6>=bB}E^cZ*Oe*jW7G^@|S%s4OooHLES;~{Wu`K{RD!ln}RL^mTK@IMcvf@-P6+-)9tfc7 +%iaf}Ks&I|t9<};@H?jc?Uxwo4OL_&*fRE?+%;e$}&Ii7NnA_J9$j>arzV-6{P_Y91&Qgqv#~{PPC6= +jhTDxj8y4#B!jiJM^_=qulB50S9QCiaq9Dpiq5IXm^ZYAA +=K?7w?WYXHq;d%4o0N#cQF}g+xJ#iYPaVz+pPg3 +emPVDo{Mmjib}(lY8D&_lm!~@JRq;V2O`@J|L=cR(vndg(%XeZ8O&VYjQj{sB)@7)9{WCf<>{e-dK$d +uig_yoY}>@0FV<`~qJ?H%Y+H0A +2{kJU0Pn;}`|Dlb^|MzQ_`7d7cEwB99`9JYA7~W(uviqzM)ZPLNY1( +I&y~~W^bay4esa^0UZ);Ba^P;Ft`|drv@0l0ay9Ibt%ow#NhVg8dvb%vgw)a7V?^JXAo~O3Evj46qDo +XcE3KZ>hYP&BT?SD2+jl{c0UW&aFCG^)OUx;`!xwmipw(Py|>RtJ|OLBTIc*WnuFn!y|@6$8?=)TUKc +XF0~8;hr??<5`Gz`Ru|q625=J36kOt4MJ&Dz;Jzms^2zvMJ%O+1j%3wAmk&y(rZN7p{O=D^d`qNM%$`K~NT%!rZ6j(7s((+W{B-Q +&W&B{>`JcTEV1FI|&CB>HGyUaduz}9%KV_yregoUaB{7i9uu2r4u8->=jW1v>Q_xbld4R7Q;lO!Cg2L +k1J+DZ)%nczytS3wN^8AQkryn1wdE?sak?!?}FP;-n0{mqr=M1OP@&46q`!|I^pA`*lsu=jeZCes7SB +Am|n=;G%ph$5E_}6P?wx8_3xNUzs7x?7lpQUncD4QG*nNnazFH2zT=5cFO6tzRZM$-dTRK+rOSNY`p% +F^3PYP1olIVYca?G~MF@R`DdPJ{JfU5zXKa+(`8YO^`K=H=du0RX01tpDY#v-yAfqqZy>|Jbyp>Hc55 +Da-e_mT5XWSc%Aw@b?$b|A4;lkA8(d5&3xv5V~nnj3O`yMj;3zw;lh}sNi0d0`I+Dd*|2NJaf}?G`7d +zHaSSVNBU6Y4mb4n^*62uZy!t=-Jvr5Vpc%y!MW(|Gl0FD&{Fzc6qCGbc9Oj|C*6kw{RZ;3=iMg{rF% +wsyLg}GyGdPY?+HWRro$Qfo>7VH`C~NPk7x0FM9{kib;G#r9O(URob1+85%De)3U@zF=#S%mkJg?`Uc +N;I72(W4V@--i2_c`E=;^|*kk=?D-8xUgH=Ey)w>-slp+<5_);T*rxE;)!oZEHU(NHW1%K^8hPu{y;h +LyID`v+nzI)9x^M@IG4`#`Lpj(x1+J7WEZs{r<8{Je_q!zBJVOG4+5Kw`C4=2}o9XCPlaebmU=O~F5} +xYTjT!8E7aP3%?9!o!!DLtPY=yX~OW;hX?#g})#xT_&zTutrlLFCm6FGK2?gf5oq0K~WWAj566*x +L{OoSataPyk`o|4v|D)VulHCIuif))y1w)iCfEEuff8?(@;`8 +LDBUfrT`t?ePLGpkb$bl#&_Oxk<2^OQX<0uW!>=uTZJg$}-5FC*DR<2q)*dO3i+}q!9;%F4UOdNQBc^?vQYzZzKhG_&O@YaX+j> +@tNaWh)AiR(GJj97G+)d+}_FCZx0LluS62r@_^?@IolZgUiVn@qAi1Eur{;KcEH<+>pxs_JO$^5D_E> +SJFX=8+FlB^`5ku4YiTrr9oZm7W%lZH+{WSzD2`2M5){YwYTW*WEa8G&kb-dIR@bxj|N%xz+Bq{StGQ +oy9^Rwm?h3g$!1p0VhkrXQqJ_(OYyoh0$bq_)V>Z7U@AQMG{iN|BPC8lcD{5YM+7)k=vsG5622SinzU +pD3o^9f#MDd}yb}9b3a0B`6KyP$HC|Qpe#dI#I4-`o5bSJ(#=4EkJg|nr~yNjzIj*@^s$kGg4O; +M2-6kKYc851ZF$Jxnc>fT>gSv7d`5=7CF2ix1^O0Dabg-`dGvc16?KOEI~@bv}vrQBU)6Sz$`g&0OqB +C7J*^N1jLcFSC^=>1}7D0qj>8r(GEAWu4XQo}o<&0WGn?(s0X_MBA!gw}NAkIG`_rq)^K*R%#!)t`%@ +?M`5ulhWaFyCm1}BDML{qf{R#;RDAxg-4hosDab-5;_v58+wOd$Z%DUVs~4fcRRZqf!&xGGB`Kft~Bp +BrpzoX^daTMgV`hY1Hyd)fVIZx-ica>@6r2Ba_&RA=v@(R>})Ti`&|NdyB>eDyp5ji<E-lNS;bnOl~58 +J0k}XM3i7gmOy|InP2~b?DDp&%e%YxyT8G?+HI>4dc;$ux>@TEYawsvM3Q{Fdf_`BM6vxe^liEL?Mo1 +R>v}@(2l%e&x&6KE0t){Jj^3&O$=|SC6yP0NkUwNQH71LVTmMu@(1+AlyL<_^WKsUA0Q)bI%xyLMGI! +wx8^b^O6za{M4i8{*24v?O<=EAzM8R5i|H1?o;J{|&2%gJrfjVBMck}Q@;ojOX--V}|U4avb5exCJ!Q +&^Zg&%&5U)nJ`KQmBm1`J07HAnf0f@<@}v5$TJyKMr0XP^IWo50`M=fB(L*S3?+-$#r9tv(XhzNu#}w +LxDsMr-dg^9o+q8tA5BWNBKtT#x$6ZsihEx7l#*jN{-&jF>x{g#6CpRV|$gbkrITOn{@;N&?WOgRzp8p}HHd)3s4W&>|1%GCmdF(NEXsnXuzV;23Ou@(uyr=Vy>vRCCcmo@O +_&M}o$hJ@X*Zt2m}ge=H?Qm+F8LRn{b`RUzp6ax5vgizkaXE9cj(MTe}(uS{w-{TWc&>%r*cJbI0&&= +5Lzsz4E*Vcrn@)b$UZhSRMOEBaDKm1Uect+=SnN-$|IKOE=*Sp7Pzm-_Db2kFG4AiEN0L9YlT3e2j75 +QwQS@U4{>9*q>_>UViDzZz{CEZ$iCYyxgF=*9JNBgl2Riy}^m6~W1qns_lk@MtTrD8XqzHFhZ!gy*C69EZx445;YL(yb0u5h_=er*d|d>xx2=Iq=Ii2AB& +;twVINU?Z6C))?PZ`6V69o*t~&xFgujH)AU^kUTisyg=!0Tii2Mv5}tPFHjBi)7{@)?8FdbbA2UB`sy +A8?lcZ|Ka(dHn!^OUrRUcgeTf)>f2+-|)VX+xb-(Z7j%uhu7@MQ3+M0<=AAJVEr{=)lBF0M6C-lWRgj +08p$OWx+5``JR0HASmPh4NBwpbk$=)%KK`RpF0^SzED@6LJL_8Vkt0%VvmV&rJxM?w-NA-uZ6c+FB^S +W3jCU1`EByC$C{lJU`rnnm_Tvswn7LK>6;g{!2|ZJY4EeMk_jnR1mk*ZI7FCh!oC2eh!IoQlqv)j?4r +b7(~C?TKxzd&=ro^uf6qT_@xV23`^9o~G4lQ5p(-1Y>!b5u2 +l6UsC#Du+I*lg=}?Pi)3AxGw$6kMwM}376w%SP`8cegOH*h2ifC49P-)2tW-{LZ?;eX`>Mf=(IejiF4NKy2T +_22sJ(}q%`2}v-WEN=GfIVa}=^v)5kTfl`ngnleByhtERzcRA2J+{XJd*T@zUK;ddcq{#@xq3o)l2ZAVsQUr>DI6{IH0YM +v{{Mx@e+F@V%PNreWjtI%OA6QE66JsE@&u?#tFeLVp0fv4(1BdPnA|$+nKJ-1}w!4gd(>;au_PYex3k +BiZaC=)jemipSZGzeFz$E%zG<91POLs7ep?f>XUKD}$`IOx(oY*sj$-A>8d^?ea@s1uLYVRh&;QiuZ_ +^k~Ozpwu-G!>Hn6aA$IJnO$v#g7>fjk`QEmLr=hhgpw=O8!);kVWgW*we2Fi_v}uB%RLy3;38i`x`(K +*SP#+cw+tlSimQQ^=){LlOg^7_dq4^fhsou326@V8C1TH{k-STTL%8=oN*2=Gf +0L?VdD@Cy{t7FK)a*u#j2+SWytK}+F8BThlvH^geS#d#{RXlRWN2p3f>a=r}$xJ6dmQX7fEIK$Rrhhm ++!I^%F*t_<_L8VK;cnc#bt$mQrM7U@r;*A2*vFNNtr_w`Cb@5C$B+J&NOkMTxpezltCtcjj1TF#k6;K +DhcUtXty4-V2CMaM8fALDq>`>9wh4Q-JrzX2Qhmso?6wx* +&hj^^oxVqcVPdbAB>3-CHL~|;bNp7)z~9!6Ai9T3JlPxkc1evb24j0|87JRG-{f88{q1BPw#Rvd+;0f ++o6~PArqMoHN4!^w-#vmbwhIdFp*Pzz0eej-+D8nx7j7r-MQwO*(cb5w)4g<@VDD+?zm(u(>o*s)e?( +13!kQ#WCcrF2r(z#DthodD +nT{?&1u4!_B)ey*FcHdjUE^_A%!4U9jH3Zj|lmSStFuVdyP4k->XQ&~{@$!@W!mq3_n}Z +{Rt7+cUj&QR8>;-KCn6-!}}AcPY$x&FUB0_Fy%nCeciL5vpm(Y_+Y9j9vv9a4lGAsiIQRzQ@!Pp+ +J3mbJGCC3MN=q9F*lrZNa>ZX)&zn7^i?%-|vFX5^q*hju>?&wWJDZ?2AN0U3a6=iV9H_4~0!TU|_d9-$_dpUp3OTeJO*RDU2R2vMdjG% +p%Qe`H~wPAOb0PtGlP9{oz_zV7gTTO2b$ah=^3klXPx#uEmqK{7b9@CI4Tmi$Hn~s&5He|TJ4i476G0C*x#sxGp}?&!eksl2l&yEc +X(k!gwBDwNYp6XCZcZbNxJlBTeDHwO*pA4zV101yK&(xr@$PgKDfA6KRcl^L#1{LEA+!!FR~4Pf$06WJ+<@n +0-B6>3kLRDb_0ac}Lt37FL(t+rdpN6G{1nHmf&a2t$J>{GmUyHsVez51t4xdD07cKOFgHeNl-kUYb&b +*F>e|8DAOzOuIvUo)fXrh7&nJBxol_8(;k(yvK0|+kZs)}@!(=l|QtqP&Oe7^hJ`c}Xf0$2a);^x#-t{TbNGesm(ZFOWz+UC^&EK +ZS6(>c}B-eeN-A7|TE+TWp%)yY3+Yj+}VK8Ta`$ZnvU~+_)(Cs2mQP>wiJRtEnt +de)|Cs~p%(9AJBdE*z23luNC%Nn0tZl8H=*z%ykJ*5qiXbYKt!%TjCF1#@VuYc61$o-fg +k9W77&}hqcEA=IV+zB|1_8nh&|F0E>;&k&IlP54TGyt%kH`Kq*{Q=I7iODE%EabUGqA+ySCr9f-)e2O +}>usaY=7_dqDd-l@X^cqo4yzeR8i3d+ZP06~N>ai4*n)A+ZPX>XjU|x$@u$v4Z}5XhivV6Px??gF8k^ +HTdm~5Pk2=-zm5k(8I|9k{cWru_+c#hzMsR@x%%#iq(6Hu#-n=PraZrB~>Nls=R!zx-N%Sd485|fE