From 210780dd4ec62b92a023dfcdfa953720b93b428e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Posp=C3=AD=C5=A1il?= <55882695+pospisilf@users.noreply.github.com> Date: Wed, 23 Oct 2024 19:36:32 +0200 Subject: [PATCH] docs: move example project to different repository --- README.md | 5 + docs/Debugging-Tests.md | 2 +- docs/Writing-Simple-Tests.md | 2 + examples/helloworld-extester/.eslintrc.json | 30 - examples/helloworld-extester/.gitignore | 6 - examples/helloworld-extester/.mocharc.js | 4 - .../helloworld-extester/.vscode/launch.json | 36 - .../helloworld-extester/.vscode/tasks.json | 20 - examples/helloworld-extester/.vscodeignore | 3 - examples/helloworld-extester/LICENSE | 202 - examples/helloworld-extester/README.md | 33 - examples/helloworld-extester/demo.gif | Bin 866712 -> 0 bytes examples/helloworld-extester/icons/logo.png | Bin 131371 -> 0 bytes .../helloworld-extester/package-lock.json | 5661 ----------------- examples/helloworld-extester/package.json | 58 - examples/helloworld-extester/settings.json | 6 - examples/helloworld-extester/src/extension.ts | 95 - .../src/ui-test/.mocharc-debug.js | 3 - .../src/ui-test/activityBar.test.ts | 74 - .../src/ui-test/bottomBar.test.ts | 183 - .../src/ui-test/commands.test.ts | 36 - .../src/ui-test/extensionsView.test.ts | 58 - .../src/ui-test/input.test.ts | 86 - .../src/ui-test/menus.test.ts | 92 - .../src/ui-test/modalDialog.test.ts | 61 - .../src/ui-test/notifications.test.ts | 97 - .../src/ui-test/resources/problems.ts | 3 - .../src/ui-test/resources/test/test-file | 0 .../resources/test/test-folder/more-test-file | 0 .../src/ui-test/settingsEditor.test.ts | 47 - .../src/ui-test/statusBar.test.ts | 66 - .../src/ui-test/textEditor.test.ts | 88 - .../src/ui-test/treeView.test.ts | 110 - .../src/ui-test/webView.test.ts | 57 - examples/helloworld-extester/tsconfig.json | 14 - 35 files changed, 8 insertions(+), 7230 deletions(-) delete mode 100644 examples/helloworld-extester/.eslintrc.json delete mode 100644 examples/helloworld-extester/.gitignore delete mode 100644 examples/helloworld-extester/.mocharc.js delete mode 100644 examples/helloworld-extester/.vscode/launch.json delete mode 100644 examples/helloworld-extester/.vscode/tasks.json delete mode 100644 examples/helloworld-extester/.vscodeignore delete mode 100644 examples/helloworld-extester/LICENSE delete mode 100644 examples/helloworld-extester/README.md delete mode 100644 examples/helloworld-extester/demo.gif delete mode 100644 examples/helloworld-extester/icons/logo.png delete mode 100644 examples/helloworld-extester/package-lock.json delete mode 100644 examples/helloworld-extester/package.json delete mode 100644 examples/helloworld-extester/settings.json delete mode 100644 examples/helloworld-extester/src/extension.ts delete mode 100644 examples/helloworld-extester/src/ui-test/.mocharc-debug.js delete mode 100644 examples/helloworld-extester/src/ui-test/activityBar.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/bottomBar.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/commands.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/extensionsView.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/input.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/menus.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/modalDialog.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/notifications.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/resources/problems.ts delete mode 100644 examples/helloworld-extester/src/ui-test/resources/test/test-file delete mode 100644 examples/helloworld-extester/src/ui-test/resources/test/test-folder/more-test-file delete mode 100644 examples/helloworld-extester/src/ui-test/settingsEditor.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/statusBar.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/textEditor.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/treeView.test.ts delete mode 100644 examples/helloworld-extester/src/ui-test/webView.test.ts delete mode 100644 examples/helloworld-extester/tsconfig.json diff --git a/README.md b/README.md index 8d7e74de9..76387a36d 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Features • Requirements • Usage • + Example • Documentation • Known Issues
@@ -62,6 +63,10 @@ Make sure to check out the 🔗 [Documentation](../../wiki) for detailed instruc - 📄 [An example simple test case](../../wiki/Writing-Simple-Tests) - 📄 [Page objects API quick guide](../../wiki/Page-Object-APIs) +### Example + +For an example project, check out the [vscode-extension-tester-example](https://github.com/redhat-developer/vscode-extension-tester-example) repository, where you can find detailed setup and usage instructions. + ### Documentation Our full documentation is located in 🔗 [GitHub Wiki](../../wiki). Included are details about Page Objects API and how to setup Mocha tests information. diff --git a/docs/Debugging-Tests.md b/docs/Debugging-Tests.md index bc9f32704..d4c51b281 100644 --- a/docs/Debugging-Tests.md +++ b/docs/Debugging-Tests.md @@ -33,4 +33,4 @@ We recommend using separate mocha configuration files for running, and debugging To learn more about mocha configuration, check [[Mocha-Configuration]]. -An example debugging setup can be found in [helloworld-extester](../tree/main/examples/helloworld-extester). +An example debugging setup can be found in [vscode-extension-tester-example](https://github.com/redhat-developer/vscode-extension-tester-example). diff --git a/docs/Writing-Simple-Tests.md b/docs/Writing-Simple-Tests.md index 405cff69c..5714370bb 100644 --- a/docs/Writing-Simple-Tests.md +++ b/docs/Writing-Simple-Tests.md @@ -2,6 +2,8 @@ ExTester is integrated with Mocha framework (as such requires Mocha 5.2+ to be p This is what a really simple test case might look like. Note that here we are only using pure webdriver. To use the provided page objects, see the [[Page-Object-APIs]]. +For an example project, check out the [vscode-extension-tester-example](https://github.com/redhat-developer/vscode-extension-tester-example) repository, where you can find detailed setup and usage instructions. + ```typescript import { assert } from "chai"; // import the webdriver and the high level browser wrapper diff --git a/examples/helloworld-extester/.eslintrc.json b/examples/helloworld-extester/.eslintrc.json deleted file mode 100644 index f23e269aa..000000000 --- a/examples/helloworld-extester/.eslintrc.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "parser": "@typescript-eslint/parser", - "plugins": ["@typescript-eslint"], - "root": true, - "rules": { - "@typescript-eslint/member-delimiter-style": [ - "warn", - { - "multiline": { - "delimiter": "semi", - "requireLast": true - }, - "singleline": { - "delimiter": "semi", - "requireLast": false - } - } - ], - "@typescript-eslint/naming-convention": "warn", - "@typescript-eslint/no-unused-expressions": "off", - "@typescript-eslint/semi": ["warn", "always"], - "curly": "warn", - "eqeqeq": ["warn", "always"], - "no-redeclare": "warn", - "no-throw-literal": "warn", - "no-unused-expressions": "off", - "semi": "off" - }, - "ignorePatterns": ["src/ui-test/resources/*"] -} diff --git a/examples/helloworld-extester/.gitignore b/examples/helloworld-extester/.gitignore deleted file mode 100644 index 37c922cec..000000000 --- a/examples/helloworld-extester/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -out -node_modules -.vscode-test/ -*.vsix -test-resources/ -.test-extensions diff --git a/examples/helloworld-extester/.mocharc.js b/examples/helloworld-extester/.mocharc.js deleted file mode 100644 index 8db6d5b1c..000000000 --- a/examples/helloworld-extester/.mocharc.js +++ /dev/null @@ -1,4 +0,0 @@ -// increase default test case timeout to 5 seconds -module.exports = { - timeout: 5000, -}; diff --git a/examples/helloworld-extester/.vscode/launch.json b/examples/helloworld-extester/.vscode/launch.json deleted file mode 100644 index 0f680305a..000000000 --- a/examples/helloworld-extester/.vscode/launch.json +++ /dev/null @@ -1,36 +0,0 @@ -// A launch configuration that compiles the extension and then opens it inside a new window -// Use IntelliSense to learn about possible attributes. -// Hover to view descriptions of existing attributes. -// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Debug UI Tests", - "type": "node", - "request": "launch", - "program": "${workspaceFolder}/node_modules/.bin/extest", - "args": [ - "setup-and-run", - "${workspaceFolder}/out/ui-test/*-test.js", - "--code_settings", - "settings.json", - "--extensions_dir", - ".test-extensions", - "--mocha_config", - "${workspaceFolder}/src/ui-test/.mocharc-debug.js" - ], - "console": "integratedTerminal", - "internalConsoleOptions": "neverOpen" - }, - { - "name": "Run Extension", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": ["--extensionDevelopmentPath=${workspaceFolder}"], - "outFiles": ["${workspaceFolder}/out/**/*.js"], - "preLaunchTask": "npm: watch" - } - ] -} diff --git a/examples/helloworld-extester/.vscode/tasks.json b/examples/helloworld-extester/.vscode/tasks.json deleted file mode 100644 index 078ff7e01..000000000 --- a/examples/helloworld-extester/.vscode/tasks.json +++ /dev/null @@ -1,20 +0,0 @@ -// See https://go.microsoft.com/fwlink/?LinkId=733558 -// for the documentation about the tasks.json format -{ - "version": "2.0.0", - "tasks": [ - { - "type": "npm", - "script": "watch", - "problemMatcher": "$tsc-watch", - "isBackground": true, - "presentation": { - "reveal": "never" - }, - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/examples/helloworld-extester/.vscodeignore b/examples/helloworld-extester/.vscodeignore deleted file mode 100644 index 6a2cb87dd..000000000 --- a/examples/helloworld-extester/.vscodeignore +++ /dev/null @@ -1,3 +0,0 @@ -test-resources/** -*.gif -.test-extensions/** \ No newline at end of file diff --git a/examples/helloworld-extester/LICENSE b/examples/helloworld-extester/LICENSE deleted file mode 100644 index 68daa6eb5..000000000 --- a/examples/helloworld-extester/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - 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 2019 Software Freedom Conservancy (SFC) - - 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. diff --git a/examples/helloworld-extester/README.md b/examples/helloworld-extester/README.md deleted file mode 100644 index 469b8f6c0..000000000 --- a/examples/helloworld-extester/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# Hello World ExTester - -This is a Hello World example extension that shows you how to set up and run simple UI tests for VS Code extensions using the ExTester. - -## Motivation - -Our example extension gives us the ability to call the `Hello World` command, one that shows a notification saying `Hello World!`. We would like to write automated regression tests for this feature. - -![demo](./demo.gif) - -## Dependencies and Requirements - -In order to run the ExTester, the extension needs 2 packages as (dev)Dependencies: - -- `vscode-extension-tester` - the extension testing framework itself -- `mocha` - Mocha test framework is required, as the ExTester uses it for writing and running its tests - -This example also uses `chai` as the assertion framework of choice, but feel free to use any assertion package you like. - -Also note that the folder `test-resources` (which stores all the required binaries for testing) is excluded from typescript compiler and ESLint. This is necessary for both to work when building your project. We also recommend adding the folder into your `.gitignore` file. - -## Running the Tests - -- Run `npm install` in terminal to install dependencies -- Run `npm run ui-test` in terminal. This will: - - Compile the code - - Download the latest version of VS Code - - Download the adequate version of ChromeDriver - - Run the downloaded VS Code binary using ChromeDriver - - Run the tests located in `src/ui-test` - -To check the `ui-test` script, see the `script` section inside `package.json`. -To check the test code, see the `src/ui-test/*-test.ts` files. diff --git a/examples/helloworld-extester/demo.gif b/examples/helloworld-extester/demo.gif deleted file mode 100644 index 55fdd1330f4e2461e7e8abda7cd7b76dac162625..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 866712 zcmV)TK(W6^Nk%w1VSWXy1NRCs00000Ax;1)f&gs60BpwqZNva=#sF@;0B*woZo~lp z00C>h0c^toZo&a>#sVik0w+NNEn5Tx0|Yl_1t&oTC};(R@&=6a2O~KLCOij0s0V7w z2ttkvdeRJNv<(dm4-gR#5e^U#5D*X)5OB8<5fKq0E)i<45^$gs5)cy;6BHB_6k4hk zmn9Y!78W2S7Z?~97$6rRG#D5d7#JNGl-wCxks2Bo8X6iJA0ZklL>g$R8yg!PA0ZuO zs~#R59&e`~f%G4Y*dQPvAs-(hA0r_kAR-?dBEL5yB{L&GUL?aiB{xSU!aXNul_@DH zDJwE684)TgFe)u6D=0B5EGaB3EG;c9ElFN2N@6W#lrAbNE@Y7}9StucA1^O3FEK2O@^T%9yO`a*0}GN)^&(O5~^G|mz3 zdg4mw>5)1qn+COkvJBr>OHaHBX0>8MtCLLsGsm*C)=y^J?Cb08^wx7Cn@n~sEYAr$ zNHzU5v;9nvbrxGi8+dr! SoU`A(CxuZ9Cp1QmZ-peZBBb+umZbHbD()5PesV-vJNNyS40akLUHhZwKT`AAI-F z`>($Op7C4}{NX=db&nYy^8NFyayHy}qPx2Cp0P3IJ8yX|X`btx5B+A64Eod8 y@ zz1mmbnOFxq_UaQgK_u$>o14D&j$!k+dr!egmWEeO*S!xN5BuOl=JzsReg=nsd_-?J zbI&JE^LuW60&eun(wB236|eo`cv|)1hkHVD@BIfqEjk!AKa`-Lma)J8gVCR8=GFhR zpSqv^xB0x=`%i=HFaIE`1g0wd0#G 7m~(0q1~ zg!)SBZm>Nt?*o4@1SxF(j kZjZ@|4gHH7JPyrU^T+`t&gJq(JPh zE)aK!-s(jC@XZkKa1bZY4H@x;oC*Su@7N;IIP#A6F0qD4u7Gx_@c?lX1u sg30>>I-2p4DqlKZ*hm5$`2(ikWgh8Te0elCgg;X6DtnI z&hYyd@ffwk6@AbdzX<66yi66HjQymsJTegjv+ 4-)%vi&Bw#f+`^WF&B-|AoVEy?k`wk zOCj;&|IQI26)6>2@V-(`IqHxi%VPm2k|Wd69-C$vEoB945hTYi{wgfuP_iORF4Cgv zJ)*EBgQEwvhbG5~A+^vtiV!FB!zP`_C#lII>4Y7pi;{#=KY;Rgl9HH$a3m{gBb(AZ z$PXZ=@{e>3Ca)qCud*XmvJ|^Amf~(-tfCpik}7pWz&`RUKdBR+D)1`lB-zq9JQCjK z(kV;M2G#H`Bl0W%b&)S!k{>;hxBwGJ8Z99UGcg-*DPu=59rFbllXM<)GApnu*OD?Z z^ZBSS`!cgLpAQ;u(lbS~_uB9>NAooI4m5)jHCYq# Rs0-AdCgm-9J64LKzfI;r#3a`P3dGduf?Hl0&D zy_3eSGaA2hJaNo7yOTW8^Sh)|a?-OsB}^jE(>>*Lv+9y1=kq@4(=QPdKlu}@B9lG) zGeGz1KLbZV4HT^i^lc7wL66EZ 9NHuOUkX+p6R zL`n3G5>#vdN;E~)=tPf3MP1a1Sd?a7bVhZ^K{J#_arA*iR6KLEM;&NA3)Dx2lz^J^ zMu+rB#|KCi6iJy>eZn&|n>0$hhdYf_O09Hvo^&;@bW4ZFJgbyT!PIn=6h*_dOlN0I zThvU|^mK~UL)Y|89S2Qi6i(?hPQz|=tg=q^lxwKeP51Oq`Seb~5>N>>X}r`=3pG)1 zMovFQQ5`jDFceWAbyC+zH+oDK%3IW=Ek^Q$2N$4zv6|byUSAMjMq>Q59ZHbzxGq zRZBGq|I$@u6;?P^OK0^~ZzWPS5m$MYR62B5do@@yrB;bkSdA4^R+U~zl;md8FuKek zFsWJp=|WmH!X6E*AxtD&1ru6vG+DoeMzwWY$ASlbfMO&<$RvYWHzEzJ6(OR74;LZ` z)s;cLRatP cUuD}Y~)icb14-VERcz_Q$ z!4c4vA9+9y{GboYfFOo|4*&rVFo_JxzzoV@V13j^F?B)ZKoU6NWi>$%hF~Dl;ANk{ zCjfyG62Tyb024St4&q}EIAIc8stzXMWjO&84&i1&gJLJ)Cxn(0I>8YT@F4s^6FT8# z^*|uL;1ZA)5)2{@Gy!R|mJ%YCMu{~!D^#cS0BMod6DWac&43dwfoW%;TnXaO8sZ24 z!j)op;0Y+ z0zNi(bMaQnHa8*gHgwB1b>RaC%C(A2gkmLu2lh#${ c;RzCNTTj=(K)2*D_q=cb4?N*z10jrBw{U+JaTWI S~rQ-7n3Bo6T`Jn%5@JkVQ~QlZ%?;h^EN*JC{`2t zfCtLJXD#*zyds^_pc9_f2sGh*@wX0mzz;aV55{+O=Qe-I01~nm5NNbbft5j3_+>@5 zsa%$7ali~Zp>6@e5gcI;d@BtC!4VRn4~&3d^}r8s*o6H+4#sx~{D2RlRe~YGeBrip zc>sS8cVhQf;eJ38YWNGX)ek5)j9Hft5+M-|0caIZWAy-w9RUz-77q|15fFJGtYBk} z01yCK4rU+?1i=vkSuo2Wiya{lm=*^fnTw~`5%|D?2cirP0g&rp4>|!7?nDlz_z=)o zCOnuEQdl6&028Km2wImQYW8QJ;1V>!3W|UdG@%Zz;As8e1_)wqJ)sW&%GC_U)(?sp zAw^X{ 5UCne;3yven6T#fts^5dnrMXlNl4{H){i7-Y7PDU-l9XA$Y~PV{t%i>DFxl zA#%l;4+f$S(0P6}VR|uIm?2jZz!?YhU~DDV6DDDfa~PsEff5phga_gW_&^ghVU~~N z3Us-531SAaH)&rMohKJ*HDPeWZ*E6Anz5FMsaH^AH9*UCs5Jo+@W66e*PDKr6Aqyd z0=E;am 2 )9aW zw-Y@2UxYYrVE}janFj(PdC4F;DEps(n20l0YPUAP>lO$9j6jRmI)2SJQGU3gaUgp; z0jdLGY$ |$@rU*Kp_x`_ zA>nl^w%7%kspVFupWr<%TynkqW`B5kf1u1Ifr2M`n+4+AW4Bxhcx)Lur8k1x3;fK% z_JK9(3ha1n$=1uaRxqDe5+DH)M7C;Gw0f15L`@C{D0{@ES NoH=Xm1(W%pk!o`T6$4gvwOIRO!PyC5k0aPRg9 zFyY@3;s;jS yR8n(0~Dl3Jnv8VW@}dGZGNC{pl3M&5KIYwmzi8C z0d6^AYbAm8d6<9efVJy@>+8U4Qy-2^*v|_B&slwDTUQQ}R%AiCa#NSz16=3L9^lhn z($`*YtDOf3m=a86o;_XdcYco7m}qqc5^Q^nzF-I>xWrj~!8fAt2cmGN9l?J&4SJTz z@%(3hpv~8psVCh>jhGuNl-vXV!~sGMr%sZ1;4s4p(-RyF6Ls>#gU2CGn)F0Gq)C&U zh(7`i#B>FRA5EP!m0^ey<&Q+3CjChNnTXS*h(joG+K7V>!IUU@%+Tpc(vu%N s^8VjaY! zOPfB8I<@N6tXsQ&4Li2%*|clhzKuJ#?%k+i#E|l@gq7jMiyJ?VJh}4a%!~7W4n4Z` z>C~%Rzm7e-_LMUqmE=ST6Q}Wb8cQbI@Zk*}U&d3^G~UrmhImLyn(-q|Cz(SSGyH+y z6PKu$QXLt&g&9sd#Z{O=JU~MKk|vZ~;$9yP0`eYwo@itcRp@QS7>J>L6`CeuRmB4y z?qMPxCzmYL7GrQRGz5ifVFI6C5lJ@QBrV$IA8iJ)G>IgTI09iohOr0VB$IT4ltc-& z$OjLf88p^t+il5ZmtKAeW|(4*8JllX03bqhYOcv Oc}=p% z3_Sc`g(i~>)tDfh_(2p7WJoezMuG5D#8Q38^}{5bJj#=wIH;(}7xU3*Q)fn4>Q-Nz zB=TuW7mnA-ew1kT5`cZ=2p )PbWF5$T}`Bs1VJ!ycL>644WsXe3vANPT7oCX^WQ zs~_%hBFI_`35YDP7zHx_-xH9yN68^k{n?jz`_&~^khS4Ct&WG8>fUISS-PJi4l-uO zT5j3NZ@>Qj3vj@5nhAh#Z61s;!U8YMaKjEi3^7Ab;IYRZqxodeOAazbE>C8pA;%NH zHn>` g8ND&n>Hc|m;X|+dYs*agm+}vZ@|^DAix2KI&x`jQYf7Io zX3*22e>OEkn)ZzU@eF*KzO>L*?&i4PhNbKorI&NAG3K%B&3o^@|8A$562Luo@x=p= zeDcaK58ZsbXU-j^4DsbSfS !1lwh{6=AaD^;vp$j|s!GENHgfvvs3vY ors&I17IT@*Y^F1xNgF*T^Ow-9 zrZumL&1I%?n#RkfH@^waaB|Xt2IJ=3#EH&ys&k!mbf5~%c|3N?bDs39rxM8t&vV*y zpZx5nKR5Wcd`j@21TCmR51KcEl~bT4M5sd_3ekuL?>A^-Xu>3l(Tr+zqty`}@hr+F zj*4{uq$DkA1Ap^Ckh;mFEN!VvH;PY{hV-R0t*K4>=}wu>^rk%RsZYHbQ=K;Fr$jBP zQHL2&p$_$^Ol_)DO{q|&F7>HYt*TWQnN+FL?W$bus#oRcQLQfLt7I*!S+y8cu^#8F zY`u->HugNefd+J|8KBls(g#Rr$q0ME!vS3v*Vga>5PKM$ Xsn#o2cC)h4!;{8yi9>viHHB-9Pln(KN>E}Ft5q!@6lEW+$fR%6F_wEI zp)^2fA}^RIkLM7 S#65QZ zdBP+-afl8@MP<{$QzGDFp)ZgG5|V(@Xv;Dl91Ubxfo-llx2ass+IPQ*krsGHQ-(l@ z=UJCS%@wM$I@K6NDVXp>#rROMoH67J4%$Od(5JZ|sV_E%z{F_$;0Zv$z%K Ab zT&|=DKIq|ZKYN+q;kbClJTWnNMD`!5c;dAvNrNDc)Q94hmOg>Vh#&eOxs3545s)~< zzKWKTG9+YQm7|Xzj35`PFo;}zaD*cQVFukeLKBGiK_Ae?hnCDGEUJnLgWzjj8t)Uv zF_yEO{qmKL{Qwe_@GTEUk|RxALJkQ|$+vRU2`yd0CesoGVx-Iod8x!tWA?-UdKSbn zD}1(5g~bgXqPw4^Xm>w{NYxC08<$_j#6 >f_^VU z j^_TREPBcBHN1Sfe(1F z)SGjY=FSA2D_d(!Oa`(aP3+v|>%45d h9Q*)cRWj=0poRnL t54(YEuMhr$py&w1vz)hny7+*3F)sTzfNWSAK{Pg;)>4@G}28}c;{XutfoI6Wsj zxe6w7ceISz1`?Psch-SE-ujq`C-v4IO8zQ+&;)DB6@YBT17DZ_2)2d?;(-a#7ZaGE z2cKamn1B<7!6SI!AP5l^Ojie&5ENUJ7UMx>{O1Wfr)6@HFPz{AgwZUQf*Zi485n{n zc;E??zynXfBJb6IBvXLcG=Q1agJ#78qv8p!LLqs<2lJs`oiK9lkrge2gRMddVYV6L z1{ES0KjdQu`%wp w*ZdWec#wJ}#Pb$lTI2iya4ase`Oz;2W!KRECO zfYB2-^K6Fme?5^szcM-GayCC82a&}aKY#~(pe00;27RChIK~t3#}g^nim}9Ub+(P) z2##r&R^AwnuSdRqB|J{pgQARgdKO zj{`}NCKXovSda;+kQw!k1h|k736TfYkU$ub6={+7l#XY2ksHa8=`@jQ)sZ17lGhZF z@HmnuiITyzj~bbhE$NcCRFV$)k~2w@rF4)iS(7=blb7_7VzrY$36zXvb_f}iMQN0F zq kp_uX z2CK M@ zv_m-#S{Oz^37wD#LSt&ei317OE)=0FpBH96%Ah_&n$m$EX{HGRrU~-Fb3M@>1Ys!( z!2{J&rQ$IuLgN){kr2K1qAW^L3nh?ennpT-2^FIUd%y?PcqQ1lIdfG$JerL>U u1zlhpaHU*x7%AUeSE6kIw4;_+Q8LWMlQE7S6$CTeKQh98bl zgCr4OzGWEbrZqf}2G%kI&B_pGHZA@Z5xOO?>}eZ6Koy#>2eD!hS0Emi$Q_uP5W$6_ z6mg>w5hK_*uXPikN)@wZ^mJrlKEIMLWMO(j=LbfLD!k|(f?z1)L9ptlt`3oOfZ!4C zbr=r8b)GW=2w`0bVh{#533sbS>d<;qnqYyAYT`39(`*TrmS->xc&d zA4gk?Nt<+wg#&t!5YdNxg5o5sRVCO}6-Og?#ioKigJ)zg1Lq+!b0G ??LpgWLgokH-f%`Dixu(VoMT6Te41&0%dnh+>7buc&htLxq zLAmf{xsvb$e362QT8c+%X%IWQ2?D)=0C;C+u2Z`fl;8&y$hX6oZe{QVF`=n1;iHrA z1s`*xqe&CT@&vpajpF0~vW;RHn83a9tGsXWw>q`JTJ&_8p>J`jx{}MYp%N=+rVuM} zC_Y1R4I8~>K@j=l732vMNk=ggjALVwxN^q>m@zF8QhP?qgqLD#w!s(^5sfCsbsH8D zUmyt?F)h&rfp0Yyk(-(i+%Ticl}h|XH*0>++kHLbrV9}hl*kae`m`ZDBV7R>6*z}c z8#F8oy`zB{l7I+@;CqN52u$~Dg1~5;fCvh_#dY94m;f1>g0i$y5*sq3oPdS}{JTz^ zHY+Kwgq%cBY#34;DpZ_wOa~!s#}M8j#&fv6+4;qevx9&W8W*gg-8VUS`UOLPAE@QD zxp7__@e(znB#}Y?5oxfmmmzn1_7JCew>Lq@h%6>dyqmhbM2cJ(jO=vcMHYA#2nK;6 zg$Kfy?8UeY!j;@JWQ-YF@_;k*0~#9=9ztO_U?_5k%9;?2KX3_o%oB1TD3p _fopG1daTD93*K%4l(Gw1{!V(%Z$7>&(ap%~(>tHlZc$F&^R3 zDqI_}6yYQL0VJp_bVh 1dP(q9#P3DF^R}*iswfW#0J81{IF$!&*sYzWk4?!AqYw{7v@rku=91z zix_jkh~{el5JXrn*qAS%y3z|Xmxuh-Jfw>Plo~yg26Yg~RgImM(`t@0WL=jAAG0&I zC e|-@Qz|ogL;)-m@J-h@IZ$%`oWQ-q?|s*B#%w1mD(i-}Ox$p54p(9ZdO6 z9RTkC-_Wt#4m{w(B;Wyl;QUhHD!t&ql;G15;SU~7v`v>39!nD*9U6||uwmU$+2OCm z;m A2zl z=s3RWvhgc`aJzI%IJGghb>MIfCkQ8j8ZRs!7gHTSpk6WoCOi^d{DB{mvuf@Eq_18Z zt-j~Z4jY(y>?6%F)m6NyA?xb8BnTT^=R$3z;U`uLfV;uFW%ea0h$A C8i^j~9IqM6Ab;du9vH9X(USUeKZ)h@i!0I4~;HVk7&K zaENjh+9sohxcQJj9wsasv |R*1v4DS06Y zuR0zYM-}_gWI5vpmJ+L>i+oq7_gHbY4gIs@v3h^PXqONOz$GCq%%EEKGRk%c$rfK$ z0bF{)2j4OfIFWFKM{3z-qjFLHl5q0_(WJ9+cY3g&WiVa-;SdrH5PER`@Zf>N;6a25 z6)t4h(BVUf5hYHfSkdA|j2Sg< UN01>!jwD&~U<@eyQdnWx(&bB-F=fuAS<|IS zoH=#w A^&tBq>Cs*5IU0keu@A#OVu;ACx#zdNKnCo=%#A?#~u?!}pusdP0G7u{wPf54>CEDBfZ{Wd& z4<}ySH%b5@Y%XWs+_`b+(WOtPUfufjhP<)znM4_>ra%YFaJn@AHDMh+d&F|Z;WaYC zw0;O;O_+9VLPxs`a}uP-zgJG0+HViuc$j1?!t~ON2f85fjFU;` ^W%mzl*(|RCqU~EBs1!Yijt*_IE#ncp4dY#PCCPGM;?3h@kbzoWC%Gx zoHO!BB!yIRNhX_g^2v<|lCq9NKnu{I@ggh8h@)IYiaqztLu;)0Y=ciRgZyf1t^JbX z#Kpt*OQXyW_iK%=`@Ev$EHk2-s!vT$#K8y!Jw&iQKMfL*hdw!}&9OpRRH~_h$~x;H zf(V5WN=`fV^ixo+Lk<)qOEs0IP*YWPRaRT&=u)ZzlMjdgET O<3@CobV6y!|9O1QBKr5u`6oJ1l61w){wtHQT((6T-7fjBGqk#EjNZYY`2Rl1@4s zPZM!D3<=N$>67=Mw%&8~UVQV_H&o; xP3Cr8Uun^+K&6 zKep=CUUJKX)jot~z*RuK`Y1?B+xF9OP}r>94-cpOPz=B{Zu4^naQiq&kIcvg(L51x zXp|4z61!5;E44f8haWI?ggjdhcKT_kqt*!}e(DJL>LjJsdTXw`e&|3<>TpV|(hMq* z6PEEp*AavC08K6&5@Q!XUSY*55sPcX<3P1$D5x#}P4F zC%(hO46>yvNRqnxFr$y8RupU2FcsCyS{`;Cs|?O_?#QV|TXSeaq#)7GYuanK-C!7E zkm4UXu=c&V+k+Q=_*Cmi>Jmy| sJ+5?)f&A ?kwrR_oG$9rTNl6Zqzyu~7 zA%_Z?hX-7$;w0ptpn`mkVaAKh4+^6RunY J@7#ff*Kh?%D_l6q+w1Au^X|>P(+552~%ak)Iic;hBO#K zUP&`s8t#Irf<$son#4gL0?{;_(WY&Jm?RETq>00Hav+ytB_0m3N*-)zXg*0pBKaUT zT^drE%VefPE(m}>22z>=Yi2dAdCiDaGAG)!NF|K`n@Q*)4SsmrL3X7HKBPep)63qx z7$S)ZrBe^+vK%(;c~5+T ib^dsDS6%JemzAF_(fCwd>LI{cj0TPfC zHWO$?Eh^A`_EVY{ SB}o zT*QX8xB!E0b*+0{>}HoIDEWtSrh6*whF84fC2x680)>C9 >wBdA23WuYCh$FxbA$idx4;W#aDyEzJmeT5!2o`6g)Mwx4CkxA z6E;$YJ^W!1hZsoQr7wq FY-`QCq$`3Z6r}hDF-~{ zGSnbe^rvSH;#B9BAnD0aV~4_nAqWByChX>}_t5LUHe@~r?cS|3EL`F)+Swld!8|81 zQfyy)5;Yx(V_ z&~!6EPq^+NMjKfs3*Hbr6@1l|{GM*C Dh|%Z2ZdL>ldMcQZwDd=V{t;> zl0L}xApUNC4_M#-gHAby)3XP{?Lp>yxSuYArR;gDPv8={!XEU1how>C<$6e(#*KP# zi(t|=IZtNCMUp=^p#~y#uw%;`oaaxo#Of9vS)blBqxK}i5r^1$8V=zIMAV@SfLM{) z&Yt$QugK{TJ%reMsN9kLATcpa7=7d*2uC>L?l`c5ANcTvKsdr$h3~@;05SFsr2+7W zXnT9^-UmQDfe(p*gdd9Vg94Qy5Ms}~90Rmz{K1AV6%%=Gw_f0t@A>sy_j=Q?as?sQ z Krog`&^hKx7-QiJOmUe`ps0wOzXkKOtkXgI^Ob{0KtAB4T`{-lc^)2k zjorY3BP@v57`{k35V%1UyFj^vfWU;<6}|(IyJ(cFIEY4>72^pF)f=>X7}2kb%Gq z_AmmmGY>q_gt?i!)!_pg)FeL;pU(0@0*gPE r&0Pl%tHp+$_SG#t9cUhFj8`3KUnwRiMI zAnX;nU>&50nYK8YR#FQX=${d}!mWV8WLXwONQ6W<1Y%Q&X#^liU>0Uc1e1C~X~7bA zc^J!Klvym4p4pkWi490_mX0*Pdh9Y6+r^U%u<<}d`sjn%xPtkh3(LV9a|1TGh@rIq zFt^2t3mE(XV<{Jfdx&WSwxGNLDLD&pxyXkxzgi)P`dh`(0mjJKNh$h9bzDg&!?7OJ z%KZ98Z`_I^z@OMLh%uA|IgkT*`n|`Igfx(YE@{To%b`vPoPjVonUuz1F_f?w2*Rn2 z)-jX79L0@{N{^gMkURth> V$FuUxV;qsPdEFCI7>F&P=H_&)tvkw>gcH;JMj zNDCLC9vH-dEAWowd6Ok-h=-I6)nuQfxsZf18x`>+KY_}UL_@?hm#NT$x}d(;cuX*= zOe({&KQzww8V?#YD(341FVZAC)C3pW1E0(m7@>qfNDKq)4mp4UC)B?oQo4r!NDQ`7 zwKBLrr63|=$;kFJzb~jFTj>+NfPo)4kQLdLft(Obm;_7$z`DeYGE$HqQcfmAPT4b1 z_i_rqfE9(3q@ptjD*%MXn~(K)3P1psfly3GJi1Z}C3bs0P*OUglC*Z5I0v1$A&`SK z7y@m|H3e-j1eLQGeJ@l~2sx;WEBd=P=?t>ugdHUte{3!1N+zVkyQD%02L(HYXizJx zQ6mF0m4wpvN~$t>paGf$fhir`2n(IyxNEBndH64^`5kR8lvk(juEo z`GZpi+k=%FDU3@9KDg6K5E&SyQz%Wzt^`yDdo*_>R7B+nuB6OFB{1IqC<_Jp(?$){ zlnAo~om2q}7LX!SOzqT%m{B$JR8bw(8Us}^BUMyQRS`4QEK^liebow+(m{n)TCLS5 ztJEpARbAax^NKwh Vn8!J# zR&CwZw}RGR B1Sc5T;+QrA{>S9zURY$8@hrB{5-*FA#Q zDAQMe{nroj)@21)f-TtF;lX<~ScP5KrxDn7Wmt%f*nuI}gq2u}y;xA;*CfMOj_p`a z5!8zHSdkrB9$D0EC0UeB+3Aqe opjR=;F)}(D(ryUaXda;&$TB@a5lbzbC&03^g+HcibuN~T-4YIEt zTcHix93xw_-C47Rv9xVlm@V3qbz8aZSgsw|xxHJA)mX8`TfVhedyU(^4P1cL+p`s1 z!!1~cjn~6nTzy4Yz-3&>J=esY*~qP2cBR Ec5&HY?%?OYQBUDBo2zs1_p zP2FG>T@F)S*EQD31=`o0U0rot)TLeAMb+5d+uZHlRK?ue^ s8RT9o_5QUggZ**5zLC^-AymHQw+o-+F}G;5A?M-8$-3 z-1U9m*;C&1g ;0m7L!g62@E;I;+2|#$H1;&F{cm-J~;oe~hGAI%T-e4BCGxRN$Nq_}b zu$n9A16g>53Vww>u!1YV16FtiEe)6!9^yLV- Y8Igwz4mFi5@QD1Lk7`#$h)9#^DN{g{TVTL7wC$+uaBTV=IsZ z63*is_Tx>4g;|gUOx|KjF6AP#-R2PEmQZ3w#$iwZggO8OPgr6{mW4#%VK|OsQ{Lqs zv*ek;13&oTHim^n$l@pX0!YANM`ndRuo~myWoWiB;BAg8FoiN!<3$Dq30~l1p5<8p z 2TF&7`?t=+l;41)xa5msFo&{MT<#Wzw5ld%BX6FjVgKd^z zJecPj?qht`XM}#Xc+@i_xdKim;R6nYcea8j0E9L!VJ0r&gHC9Uez0^V1vV~Y1C|9( zz+jdD1$$oOf;NRJ(B+PP>8rEWXhRY?*n=PczF{W5Wgg~XM5yIgU<0Y7k{>TbJ5a0d4&`_|qDk8qo!0qz=c_wW{ bt<<)T@pCA$U@%asMBNv_x{|6$+@gr|?B y#*?cyWq;(Oi2PshdoflI(Mmq0I b{=-4#z(LiQgX*<|8nRpYb@%*^ z{W`CM+SBgOSX^N|7_m5jmjLjsGyseOK&&uOdjO0T10?NHpaD=-msS<$cJd(v1C4v1oUuJ2CnI(4XcbT7IP z={#pne5InEU$1-4>3GgR@LYK2x#;D&BnlXL26%tnIYPywBG6fw$K#aDQ7ifPN1{4) zFkPh{eqVlmdIsoQ^nj3#fPhy{EI(;bn7)(O4s>2^>ySrEf4T&|!k~$G1s@+uD1y}h zeWoP<&cZH6u;* eATB&V*Y%oDCqpy;`T3q0kq6D#3orQk5~QBZ z_U6CfA4rk+0?`OM3fzjK36~O!Lz_1RQRvvjlS*6FK#*{wdj%CsYJSXGyvi }Ta!W&E`9xjHVgBiWu}nW0-J;iSl}7yRW5WfoQ;p@F1eWtplPkXiN~eLR4-<~R zyNj>Swnv=RDe<_nxzL}g^uTnVcOj%nS_go7dkzeyW;HO<>!k;0Ex13dL_FVW0 U(!+^LV8Ec4o!_W}OANko<`n3nY zdA>ix+sPR)_Njp)3@N*u^@UO%&&RI>PP6ynZ9~#SJt3-A`5xdTV$+4-X@-GoyQDYW zqJ6DRC{tR4%dcVlNFR+W#|E3!XS9pPbrm{gn>w!_@7 HeVrk>y#zg4{p&O8|C8TC|9igM_Wy0;%kvp`{-cYFx*`0$A zBDnk*KekiC#xA7@V?C-E&bHn4S+0c~TLlWnNM;5JVqNU@)LhOuDxUu!!k{6L{`6}^ z=~vuf*3B-TIS$IV=avUbckMH~q0}Od!oUK?a^b4=6XDM)@VP@Y3f9OBR(`BozJR(k zdGvy=zA}k8VRYx1qiXWS$NN=N&R=O5qwM$8?Z ILPy-GeXjw1sC2y7ne3cZNAuiladNy3~u-h-W0 zMF$sfJ$mVy$U||_s)_ocn6D2z0L<(y_2Cp*h&wfnDF{A@eeg4r+az)LI=c#eDH4PH zezukT+A g)S8T9I!3}M z)%m;K?yB5oH#vXN_*=Jrvv|y9wKf?PYx83dt9!KQc=(-a#XQyQ+q`U@x8bL*D53)( zkAgbHs?&og3<3Zgs^j}dO%d5sUscKSd5|jJTuG@t9>l%P4w?2DI>)^<*0H<(bnvFI z!nT&vRbnWbB K>b~DcSVdZlJFXEP2t?hltMWJ zs(_&tdc;|9B2;H=l9NeFQ!!KU76@~Q@!nHEWoG|I3BCk)5thrn_+0Uc(2H1T8Y($= z3;?9p^<8-11XF%<{#K~Xa3=5N{O86f@P?VjhkYeD|5CpqG7=+nB@G%_7%|I-r!x!i ziv!zR?m|%jdPxl1F3z9zoE3&fb5lPT-gcFI38BcEsUJF~@Tounu6R_C8X_}uVKy?v z_MJEF2i;-brATeN)<+C}NV2)StS d5 zl$`ZmOFOS^PALFHzKn1X3n@Q02IMN(p%bw?Cr=4z{%K^!WS!%fomJ2?s@&tB;vW_# zHAMq*bB|CUNfv%N2h@4HJhkQ{T|dk9%z+slNFo0gP1Aelo`V}`W#p{KIZAqi(3ngL z*771SQMd|SiLAk2z7+#+0j@?Wh5;0kLwWFAOGJo>{TZeVnillhI^|rG!YS}Oznl6- zI-ad(XwBfh`;3E7Ptw`E&%&q<+4D^$Kk!&e2Q9D^ti#rkC_uRTIE7ac@FH*J^typE zh|}Ij3h=~Md#v+585w!UtD?Dx!>UBxSR(3a-vFfz7y7o)*BFR_a}%T<5aKI)cO&CU zpN*+R;>1&WZ$YsJ$Q_FJ1&?E?_g;6LNq_bX9sOYK3hMF1>t!!$B+)&u0#B}PSKM>E zU+r_MY<-EJBW5>(U;H7=Y}Wodi+vykUjf^i919mFd-l^ABt?(gx>~0ST&n22FpUfn z?1z@$jFiftpJA?NY-`em?hk1=S;sv*inwDnN5I0tz>)bYn#YeajYqQH)nglge(`!V z)lWkV?JcBzuTIW#OV=2?8eL&1V%5%z)rV%>V_IfA=aHj%o0Zt_j#Mfp*#w;5*%+x7 zF&-REdz;DPKvuJJ0GBbCp8Uq+@)%za(7)lsd6S#M93+*7CyBS?{g=557wA>aTMvPx zbnChBd7YZu-dw9@w6MuesSgz+N;K#&p2CM!CpP(;gS&Lbgu6Z}XTDwcbC|3a }-={@h&-MY1(Yrf=5 zj(cb~1+I`?KMHMgJ+m (|5)#~^{f$Ls%q#chVg$BZ?n)rzMT #1T zBgXo$l#(0DTsQp~RBs#ww<@6-Me>-CX_zp3qz5Ur?AGLUt24lJ2EZW&<~Ai{d<6PR zhA@`>M;1tWOTBAMPfq4m6=T _7wlAIa z;Ug)VuTlYA?&mPM>Bw4JYH$?Fx!O!`{`2MW8CiA!_i+n6x>dmi)9rC0@kzUhZFhDI zyeD&ta}Pz-GOBh#A>TCt#S|r?8KiX|cDVqUZ}iJB`tl-YP%(GT|4=z^VnWV9-O_t( zvTV@SQqg*=SM^fdn{ktmR3T9Tcj;BNm3@UyAEb@)>?=8TCEeudAxC0_lfBI&v( zM `@5X! 5w# $4Q{LmX@Dc~LFdn}0)XCJ z0G6Y-Iey-Bq(GRJH?N;!kzZ5Xk`5=bnRbqf(!Qy`RY4}1!p|WVg_~2~yD5nDF$1yH z8z_kaGOCAfTA2ngws(H@CR`H(Ba={H*d76sZoDCN^k+5m2vO5DPLW5102zB)n% YuZ3)W4}A^a@F4szOgvceco288=& zuc~USaGsCg7>JAx0Gq%}IfLxZwV@={qE;4wjBE-#8d_W!TBA0Ckm)d|KDh=KXg*Ms z-*dMya^l1w~!Jp#kMW>!v&ow*+h0iZj`z3CA&LIa_jy`k+n ze}H}5Y-SP*hj{E+M(t;5IOIBktRtzuMN+9ND}O;rS}L^CNeF=@#K5%dX0ED1y+2 &~Gkj$IlKxxXYn%K88*|nRewEDNy#b1Y?rV+!N@dkWB=7xU=*0bRmqq+y zn$P=ItKHs-e#!FNWib<$qtbi3 zuqx*YDm>>vj@n*&LvKs;6vq}{j-{81FQ&+1bmXm+h-XI)+Vraz@|V9iZanz_4M=XM z@I4_pF~#$6;EqAp&CWnY$Je*#3ROvhZ-v@2_|AJM50h~s-ychU_WDV$c d7C)jUv>{M;<)SLt+7uVU~bm7n!6YuUNZiD77MfPb7(U@~OMN5s_oVgAOu z<$%dTYq_Eif-6JfwjawN`0k|Ah3+-TlY9A3I0S bhI4Fj=|nLTt-? zL(|=aWt$uD{+(dR)n?&OkCjnvwp{I*TdH&s*7IGstbm($;Cj?~7R7l^%2UlNk*uq- zymqtW!fIk7W8tk|rR?U^S6>3|&Wo&mwGjDgXE*CqGUI7C6<{|RzB(f-vXD|T7b9}D zq+~XyWT8=HvAtxmUu0>dWNBLD+d|2=+a=4ZBHxco$lrHFe$bZwU>05BE?wahT@@)^ zm3lU>xK=wPtQ_y>A=E#rEutA@8y_ib>)08w6g95C6ken}U-IPSOS7R3pJs+X5P*N- z3;)tQPt1XARf^0t3NOoxl2%Je3#Ds2qQ|Bp0J7*hGj5$*Y=aMXK#K!Pi-E4=Kq_M3 z*qCDxu}xFlriIv=ofz2(N7fdD2I8O*Vz5{oEL9AyF9yuT0ZMV;4`PrG9ArR@!prX` zRCG(cWGkn1J_Dj?r2rXjaUvLK8Ng?rE0+j5l)Mhrc7#v6wbE<63piPIio9deS$`Yw zj9Gu3`RWRbuLEo7x>jC?hy5i6cRyA+)D__@Kwk5d2B(91(mKH@jKTQFUcbY^JqPAT z>uk>)xSs@_JfqFS@cazNhA~7WeC|?>01&E*qJlsGXZ9f!PyiJ`h!cPSuu`Of0dO*a z3C^jCOKb9lGYFb=;?i3Jk!RJDRNrN^g|bT6Om@D@?1 KnoP-4*#Cb9FP-lhxlBd@3|3x0#Za zNCG*Sw1jYJR2F?MxB6IczsJd@s%mPyJ6WTuWU9_(b9t&~H~U>9229PZS&f@%31VQ_ z($i9qqL``I%gm`Ro9~H}crx8vBhhRXmj7z=W?0$c$Gkg*rhT>Vzo+Ir=t SX7eix2wiYhJ|bGaAG{e;nd-;X%riFZ~U5yKB>#q2yTF z#`^uurH_RyoUa-VcS&D+QguEw{yf~<{QhO&!v``M02Lr&Ak0=oZ#Z8b(FY;5MD#`8 z6qxa2)U%rLXSK+i3E*^EnhE3y5STrAsKjbESRf~FHbkg$X*N`>UEnMBWLEk$OlBeP zYq;Fb($@$S^uk=EGPCtulqz5T+-ps#Z*y;SZ(f*>zN=?F|JJ}Fe?G><>DzoPI^e=W zoOz7(LcCQ@{zAgj%5Mva_U#uIlN?8^7n5BU@)uJ)cD^m9VxWRcX@1N$OX)#;1xp!N zspX~2$eV)SvZD2DzGcT*6nx7`a$5eDn-(CroR@XdcF51mDOfHjs$5| tgVcgl5n69$)PK6(#%fu#-p=X#W4(hXP-vs`T Dja9=R@92{%GO6+I@=o`Z|U1^e=@Kv z-X1Y=UfCW+2MX_unaA4he71@}^jxIUP2QQX?-1Udbc9_F6)GDp-ktW?C9mv$!N5fJ zh<+?~dow}&C3~}2>D9fjkt!nlbJ6;C`}1*@CHo6W&a3;2X@MdKOIfjY2jB8?OAeNc zs#Xua<2pnRe^iXx9j;U_mK?6u@2(!M;bEdjq*j(^N9ZrAHgR(rZVX1QpSrTf_R# zer}Ihmj2wCbYA
zqH2fi_ (tB v_^=N@I+R-~ zp)b%i`B|P`?k1qjuRa)Jw3Wfymv>XTdobK>E0c#NUsXkY=yk$YmVj2ix_ - zSXjQMrTWK&@vR)0zI<)x?vE)4Te&Ej0^LCM;SBceJXNiN+p*olIkMaNx?u%(bJaf; z7;P6A^cCn;b$=>x+b%@Y6dH7>kCY{B7g=c)8jW_3RMu`6+lLjJEUJ&zj&GN^^c9-! zc8@k5Y?oqaiqJ5Pv1axiT##1LLzbSgcG;bGkzqyV{2HITjdsf7`id;1dp`HO?Ubj{ z6kDlij1ML3ROD$D+vxX FLQjU#$Z(t= zzvc{;@m@1)KQ2JJcZSw|uZ4&9U66|AEPdkG3pu1}2!Giu!_~)a?rEw{j2JMBM0OkF zH$N1_>?`--UI&V{EHY4Yj+bM Ejy6>B|`@zRF+V^=XTFbW+4~Fx! z-xuijE$h`Ce8PplFS6A7ZZvT)Qr-W)#JTUg>DPC3RCtH{C%u*rI1a};wJXbF`+itl zJ^V}vudK+`TCp)c93ShitgPx=v2#D1AktP}e>vh- z7?^wF*{}q>l5_l;)m@3ZpORJmszQ_PB)-RgY8I((X6YvdTs@jWMpU=*Yp;hGAI-83 zRJTj_uZO!IedVF6=~U6)c%67OCqUMz>DKSxh^af87mKLrwbb5Bm`J*xu=l*-io>&H z(v=zGkxM$BDa%X@M+>StwL`Hd^XjWVzv)KQ4(Dob7a0FsHW;WKsp{V@asPRu^r;)` z(B3Ia{Q1L5r*3?-f2XqU=Zbwq-Q=S7ZtcX+RhNOf>D~U_#>1a$7`l2QOlR+gS_LUc zr+$`YV6Xk^@p@!L{T#o}ez)=QM%+OCg7m ;s=g}dv;Yq<-vUC($rEY8_~_HF?zRjgDfo^wS^_U>&&jHb zw3GaL`dAmhaTImb^fV3F8sWK$VL>CmU-jE_y@1Eun?ZV>yz2SkOT`+64>g5-6VE=f z6H0i%1d;o~^O+xszyR2sKsJMbxm_>#CCo6t**SY;k0moC4FHZr&glb|`OOeSAmkkw zk`DJx1IQCFCJF#rln>|>OdbWA3-qKpu}QUiL7M;&9DqjG`@AXuj63-Q00+_cq>93@ z=fPlLHe1DvAbHRdd_lJWP&9ys0JtGwMtgE-iUO#}FeC7QRu+Fn0Y9BRKgBU?<1zo+ zd;VrtfJaN#{BZ#~LH^cz*0xIl_N)P^P!HC)K)1L+=RCm4)0u2mra<8D2nhS9A)r7> zPW3;IfFBb 9arbf5bpVbd~m;AxR3BY2}Ki^1i-`kKu}LZ*hk zbz3(R#T|%g{Kn(%?Qg`EQ1WS=Mvt{MaB-&eK;!QSIQpLV7Xtn(AmG-ZDu40TkfwCl z@I`Hv jW4 z0X^@}P~kcsT-)s;4|uLFAp=Rde?q{mv^$h}psirS{R`3QG<|QU8F48=(>57Q?|&iS z|L+L6*D9d>E=2!_DJQO4Sj5x8$OQwF_ekfx6tiw9oBmHlz@yikA8XDzrBI!A!TVlK zRes`1D^6=~|LFQZ6#>1<7?KEnrGdpu@(lk;1e`7n1;4U+^rn^$$Rt(nm=_#80J~ zI& o+@5wResO)$UjB4osH`yc9F~Gk%ZjT{~iJ!EyxVi^gH*zFxanKeBQVl zd!;E@O|FTb4))JSz-EqP(vz771!qERUiH)cR}j#7;Bflzc=xF`;N8!3z-a(^Z@>|- zaneheH{JojWZ>7K;uxqS`vFyury^AMmG(t1AZ4(p$L`e?3>1;Z<4eL*W<2}(qw4fW zT2{ao0}%ic!vLw!C}3GBVBXp2m?{!LiSeQ$04Q_;lZ#$S?XN~+F~5 QZ#G+lF5}X4x}lCa% {IanOpMht&V;S~<*XXxQu3pdf@*kPp z{|scdyHhTU|2Hx@^4GDE0d2~i&jTWAf0N1m1;{!?$wynG&;FXpd3jZt-FR}W@_Qy% zT-MCAEJh9aH<{eO0Wvp|FApLeuA=(?I*{F-lL{s#NZ)!)ks9{bOm0;pX%)dF_x0O_ z7enPKyS=&czXRF9=3g_ptu(k+o+3*(AwYI39T}GQE0g;_l*yrEh$x=xX`Q|tlhKs= z5E;2N+-)JvQ`+!3B>SH;xj%rccb2(suT3oc9oACwEBnM=yG;MPaOd8C49GN_ykqY5 zg1L`)S`0)e=_)xFnj95@Xp#RZlha(3o!IYp>HqC#u_%AIKY*dFNP}tp AS|4k+rIC9EE_kG4S4++j__Q9Y%u}oJaoWf&(Ab~39 z Vh$uZ6mH^QHL=hYJ!?4&z?&*c6LWSc36M~f)B+7mb2RtCq< zrT@)LZu=YCf1Jtv24w$mCKtF0;kU okAW=MRR_#j1GnQVG2^>^oei>}Ycu<}+ zf?7aTqIxF6T>wLS@_|LmB0VVfrt4v1og}UekNUf*_0{&O@{C0ABDKZ#!nGy>Dj*%e zJsn#e@G|?1O=Fw(fw;0HA}3pB0ikd#gG@N3PEv&~ZX`E!N#mg107pz^L>C8Wad} z#uI#s${`J4hV%R_c*A>ve-GZ8V4gI{S6k=3q3?hkx&TUhj6u5RAHf^m=i9E^D$Hl+ zvX^ZWU^Un6yZ#@ko4Cva1lp&-`M1ceaMX7>*Yj$%?=sBlhKrwkoS%jjK#SFiNyh(b z9Dq{H-^a<{AkW`~)rykn0W}D)u)_FA1z1)G@L8Gsk-Gi!4zK?QQn&0%^Ok>`x@ktT zzc-(G{rIr`uZP$2X6vzf*X d|I^j9M)^YzzE9z-G2 z#y=fiHy7oKO>T+(?1>fy remlJW26 z^Sn zkXqxTu4w*!hg _*s-ZSO;-{$c87syLIs&HMG z5be3ReSN_BA341K74qs$ygj)zxkeTLpNG8v_2IRqbfX^Rwe=h1)sW9B^Z5J)^0enu zsqnc9&i=aoB9i*SG6PD^OoJ<$zYeeeR}QZykQcCqxIM|tjWZCIA%I^B&d#!A`ZGxV zCm`?dA6`WbFD2>t_!j;E!d|A7tM#T~*un8IIebFOe+KgY?&0;?w_t6e%P3yT@np^O zH<0&t53h@(0}IpQry)L%93yHOUU5t1e#iRCrX?_tL|)!l3nM(~srix_BjKbjZ0Q^* zI{?+G`mY^c>vcagx+c2vtX*`@V2B2!Ytxr({udzcKRmqp`N=Q;e48MX*S-j+_%9z` zod?|eSJQU!mVChIegGsZ0az%7NvE^N_>vy+fUPh&@uipresjR!Kn0i)ccMbSewg5d zdI5&&Mk=@vA$_r)+n*j-!w{H#N_zm172^SAOgo?&Ys~plih-O1?Efim8_V^I4|p}C z|9jphh5>hC4r51yltz*hosJ_4QA{CPei zdH)Jw+phxLuL9h!0^F|x+^+)MuL9h!0^F|x+^+)MuL9h!0^F|+#DBPf_;VEZs{r?_ z0QaBVK>RAe{VQxBeih*Ux`FsrfctwJh=0`r+&}L&`l|r )GkA0^Be2$Ukfz`E%;_s{r>$>h`Mu z_m7!Jeih*UHOwQw3UGf)-F_9|{t@%YzhVIn2>=1qDGL6^0C)1h^MA?!m!wvnqvcIn zXp*RY!6WBP8lU3)cMWj&Lc19K7z7E){e|e?4RAlkoPPA47~m?4C#vkNYi|QYttNjr zz&-ht3@Y*XlL5{wQiHWw!~OTQDP`4*4w*l#O-)0x%2B#hW!ZPcWT%$;elx%&( nAw}==W2mX5udZsX65E9A39=ww#eev1h;U@{kV2~>N6ERiX8Zft6Dp;^lCw W-Z(8Yd@N^PB)?+6IIImaR$0v$^Q)f^VFM*lyn|&&XK*|7I zB2oTkfRo)ZQCRZ3b7Fui(1VH2!n0;jU#>;_q3#O!Mv57$ew+yvbL!-Be%#0K5G%7_ zU?8(pFF}yC!j<(YeX_dT7YSB4LkOdSzsLyx%>bu6jX0+*qi+#BA7kXyH6LplK)De2 zFh*@5-XbS>A;G4yYa!9DopLeh`H0$LveQEFVv5^N*J7$ClxpD~R1mQx;#>fAZQ;ZH7NIj=G_q0a8db~CRj^h zRQ770 C|GFCj9tufDdu zaHR&J-Xqosy3$ipH>%hxRCgqG(Y9gc?zbW-_GKzzT$u9YYNvqG;XBZWvPlsIc2FUv zmrCYqZx86!W>~-&;Rx{okuBudO;2Mh*+<89&2dnjf$P>sZ6(O%ZcUxA3MD<2L&uTk zc8lI}A!p%Azs1I{MCZ}FceJVz9DW<6gq*~6l 3dp^=|o|-W_B26K_+g8{1$|hZD41JKYLiA15*hbxQG27@+Z=n$`fxffT zl|fNMiaN)S*xi*3AB0^UH8#G#J^Vq5%j09q#rsEt9URx3Y^L*)HKn?cs#;M!?#g|? z8Q`v6rng @Np-Ln z`gNVz80-2XV+u_)(0g0-Gn2gu#hEnF>F0Pr_;;U4-cd>O90f3Y?|n!;k%C1Ac`BUR z8;XqspQ6Y6MqV_UQk;TnSSca|dDwZQJ3ky#G{IyqvIAQ`E0S$gTTk803c3*urw`6+ zJ)eLJ)|TW|&WLL{d;4ABo%#&O>5MjE*{sk{7d0dcni|ag&T@9;4WX)8ZiY<`crN)q z+Mg4Um-QS7|N7*?5vlr`d>NhRZp(CO-XQ+%cEp+4jSO(xJ)~Vcf>-hAw1QD}q!Yy@ zAE;cMl<885l`b+Ax*v0c^@18pj_#9#A>Q*p&$q&OqXMDe^NM(@wu_2UAywFiBFWV~ z=XdCXKWIJ_cDSN>zj9EBJz@G1{|44VUg>QAi2*M2LX@@9$M{e6IhV`xwXC0)Cyrs^ zG7T5{9Re757vvU|hCXWsD`y(@W1*6Hz%aM*&6GXI&TEuDC;E>+uT7T+ERXK+LbL?r zzjWya(6*-SDCa5uI|jJyCGk(QJccr=z Y)Ywip*tc{-6q@dnGnZXR35j z1|5R0OHK@M7EF{{eYGPcMv!9rmltm~j_Y|(&i-zIYhjOSIAAKhG^J_svHKG~V4ms@ zYbRp~53*f+1V=m5gbYCYb^RR!+-L4BJp86i^Qj ~U8sO+-D{lxi zn}_{ofO9VIy4Fl*@V5rI+tM{enrAMSC@?o_M^N9s2vmZmxR|8R+p}HrX9L{SOW~)F zHH;^Ac&ch%mi%Ub1D@5di5ABBq!xZ&(q{SaX9L_b{d!jIRfG%5ch}88R03D@q~*yB zec~V2&p)qC9fA+9LdI*E%O&EP0-Zf#k%zIZ;{THYuE>ymq8cW%@Gknx?4uq&=Q2r) zzcIj7X-u3RmTJ0{QkL-P_I#IV4Y}Qt`@{hEm$m839uJGL9M?Wfqk6a{z;} -SIWgOO=;jhn>++NR77kmpJ`>>Xf$E?&jz@Evo?JuTd$n=)Z#wT z=U&ypXN@k0f_v!C;6xOZwe#OKz-d?2j`poO)g4Ze!mH~4ziZR=lwyl}IFO~%A@SxJ z$s!Him9ytYAul==nQ>z4A$N{unFnOrrAyYsUmShqrn}OqBC_%N&CwhmS?5Z(e#u5m z`O&;c#Fbu4k GjCc zhAsW)?mdr=_r?Yqcd7<{uDX*CiFDV=pAAbtFZOsIEUBo4-^YQNg762k5g(2gb;t)3 z NAhPAO?RMi;77>0HagH-kE3Z(d%Ye;6nfaAQm zZednoUiOQKQ>;F`GCt=FeE3{^%yuc}EWOVIFy*=4V%4WOT`)Dyuk2tx0&%{w)xL6L zzVfPWvUsoKQ6E-T- !eDl&<)Wy$4;FMYr zW;76L+u?WTWNqpaU= tvb+SEYLI0H5m3- zR~lk35ExL6baXMKRE3)BIysYr0=-y+U&{nX8w6Xk1lhS5`nv=rsUm}|3@HViuvXBA zR?x?>fiZC*1=S%%d%kfpL5X9*$$P gS;HG+vClfO{Q{u`fw0E_ zsJcC(n}=p7jrtWXtVtkz$0cGfE+SDSJi#h_5q@el8-N2)mjkFPRID!Qf+X{Tqy(H^ zkSN>H2&oq8*BI!NNa$2v1ba;s=jSM^DzCoL2teK=h?yzb1*wBVmXWAnlwiu5$TZdf zbVtyMx5XSq*+3?RllEYb(-4hIQ7E=(#rO!GD}HAUk$kSNZw5tD<@-Ix2VrI2pz)A! z5~3SG8-<3lU5PgN{MPhJ@Qp4X6~ou+uE-xZkWe;PP0Ba#t$cMq2k8XE3sDHEOj<7t z)Oi1`TTQG7o4;ASA&cs3a8&f;eD5dUqCZ-_NhVOY^U(D3AmRbBuAgJ04dY|3_;?wH zKe`g<&*mFQ8Sp4D)D9UnfJW3KDJS+Qj9lZ3J|~pyW8yEoE(nNDru0oU41A;#Hk5`a zBEg lAy}6N7Nd@qQ|R z%9&JyO;k(Wxq#VY3!~YOK8#NR9;6}J)1OJF5o?lQZmA-lqtmW9-3oU4c_E#LJ!4WW zeS Q%Na#>H3K>34g)Kls)GmdybuSj>U5J zW49cOgd7{eoTuYCR^v|g%Q??wa~-;!oZNDs#O6LQ%5^=+c|nzDFPLYmo@Zl|XBm?B zWI5M~T#)x@InOa9*MlnGygSd^Cf_$C-@hO~usc7P-RUirlUa9ACuQ75O_qV6tI;^v z )GS-nYE;zjR@9kL)LmQDJ6_a( zP()xa9+E8{HYy%*D;`TI9 L(%*vL`Q5CZ+LUk)$zPO(JlV#L~81kV( zbdk1f7$BQ{>8?%bfl=vEZRt)(DS!h9_+I+c2uBvg!4pfNbvRfe4y1uY_LS0w;!bhA zV>rYi>ToO^IHtmP9HFIL8o1NcWo#GA&Kj3-UoAUhjN=b2<0~u^x%iI1uIzBUOp<)D zT+F>(ildz7@SXHTImcnSa8J3+_j2XBa@nipDuoqliRG6 nQ62*jUwrSiS-{_D8;_m)?y9F41-+^bwPDm|Ty zyR8cC3Jca`gSum?{EVvu+^d5UtC`xXaGfPyiG}v={wBHA(Z)3~?lp0VHOFs_6Y_10 z4y(OyT3v_)okv4La%%DtYYXaXi>NJfM+|fLK<6WEY^iJE{IwTIp86BD^%HfChjsYS z2c 2u=AExR) zY`Np%NqDMyJYo`0dxS@FHqpy9F`6_Xp5poN5Hx^76W_!=*~BA6!6ODT 2UJsa7pTLtMBlb?C?D5z;Jf@JZ-s;ZF#5(eAEjGB71bI>$Y3hw|7po zpWbN~l PqA6mg{Xs0)Rpuotj8saD8WxT)Q>m$y1@OCpWuT zdAch-da9FpYU_LICwm%?dZaYFbB+KHi@NiYx-~JqvZU@l=B_e?;ZP;W9@}!YxB0n8 zsl-vUxJkG4QS*IlpJ@^>+oLqwq<_A?FGmwNnbe0Q0g!~Y)gNu6M|~Sfed9-fWzODR zMDNk$!12)lfQuku(mit22A=A_EYvG$GO&d07sB@K^!Cjr^^4T^Q`q*?+V+hIwLp^x zVPOOg;X#i3Eev6U5}NHHNxjIlp$mPGvjC8wuHQiKqd~G<-?gGaPFsR$(tymg$_7BIweLnACr|R7BVl8n~%7=r7muD7pXiR38o3sG4vuA5FU^Zs=9t&;{XkQLc}D zG9M+wBBfSZfG49zG>DZ4e3k|%&I7*x^An>O+!GB#B4Mv1q2G@_^U#bSk-)ytQbydE zcqBynsBe9||Lm)eaWsPqoPZ!PxF+iJUec%9hKc&AiN=+dr(yl{KR-s{3-|9cV;K+BoUy*K~4mzb}e-oiOr*W~u~*a8DcG?3<18{1%t;&Aon< zU3hLsZffsnWKMYchSn%u8qfw0W#VZ8r9mBe0HSt%hu7v1@^g=;MizxSn)`@wtq~9r zY>Nk-N&YULG{l$&xkWoBat-A7YW{Z2Jge?ESxz8B b} zhqy4L3#ZcR<`C`$B7wfzl%nYFR17uoM5ZnT?TAD?CxMV!Usr!DC5BNy6(Qzw0kNN9 zqNMSJ6cW`365>Pa NqWY;2x*|qB~j%>LZSWN#W|^}@l-mv)e ?aQ;9h@yChM!ZTJr}?ml{jwLHN}xjm zPo)7l2$LK*;Ia^a(|(^L4R{JShSUXu@cVB+EJr;6MtkjZ>H@cg0YZ3Crq{j@X@9x_ zXp;tIM}srgmO;b=Azk1l6JTD%{^cJB15<4o10YV_?vp1$Q%(bmxDR7LtS)l`TfFu& zPyax!&9;#>H>V$LicC%GO>cT{ZyL)3l^$%ZAb=`f6c2=;kF;Y61ZulT+t5|2>-Iz< z9yW_00~D}v;*Z<;6kGtn8E`=8Z7%myXF@MM>cY~fgPQ28O%NCSnzutU$_-=%bXB)C z*)D}Vm?b`c2~qUBS1q8OX;q{{7jW&>F@*i@l5WP0Fzy=(cfZ}v(Mp#0XTP_6x8Po} zX +N(M zK1Q;Qgc%4Z{RUnYj|HTIpa_b#u+u6jCi~A9`jW2)a^F92T>e!2pd;n}q0{PAgBR?y z`~j9tOb^TI?cF@sF@W7yYleh)2z`jQ1tt~|b9Aa-bG>Qui#3l2`P^;1a1L}{=ym|3 zqNka4_&EUs)pQ~IsD%g^vl<_(qP_QgF#NXb;wdW7m^qIrGi4j=L(_Fo_Oq;S^U*iN zSs^TjrWg#;Cd=?KLnM4QGw5@zqPW`mSo1P9{!~A4^$WRKLjryPYF>C_HBJFQGtBBs z)7QF@=0oMfni(e6fBS3@C1~%pC`U8$B9@AgLy1O8{Z3{W4JZ%oD{ts>7SuMLM Q