maas-1.5+bzr2252.orig/.ctags0000644000000000000000000000007112323254361013572 0ustar 00000000000000--python-kinds=-iv --exclude=*.js --extra=+f --links=yes maas-1.5+bzr2252.orig/CHANGELOG0000755000000000000000000000000012323254361017306 2docs/changelog.rstustar 00000000000000maas-1.5+bzr2252.orig/HACKING.txt0000644000000000000000000003602712323254361014307 0ustar 00000000000000.. -*- mode: rst -*- ************ Hacking MAAS ************ Coding style ============ MAAS follows the `Launchpad Python Style Guide`_, except where it gets Launchpad specific, and where it talks about `method naming`_. MAAS instead adopts `PEP-8`_ naming in all cases, so method names should usually use the ``lowercase_with_underscores`` form. .. _Launchpad Python Style Guide: https://dev.launchpad.net/PythonStyleGuide .. _method naming: https://dev.launchpad.net/PythonStyleGuide#Naming .. _PEP-8: http://www.python.org/dev/peps/pep-0008/ Prerequisites ============= You can grab MAAS's code manually from Launchpad but Bazaar_ makes it easy to fetch the last version of the code. First of all, install Bazaar:: $ sudo apt-get install bzr .. _Bazaar: http://bazaar.canonical.com/ Then go into the directory where you want the code to reside and run:: $ bzr branch lp:maas maas && cd maas MAAS depends on Postgres 9.1, RabbitMQ, Apache 2, daemontools, pyinotify, and many other packages. To install everything that's needed for running and developing MAAS, run:: $ make install-dependencies Careful: this will ``apt-get install`` many packages on your system, via ``sudo``. It may prompt you for your password. This will install ``bind9``. As a result you will have an extra daemon running. If you are a developer and don't intend to run BIND locally, you can disable the daemon by inserting ``exit 1`` at the top of ``/etc/default/bind9``. The package still needs to be installed for tests though. You may also need to install ``python-django-piston``, but installing it seems to cause import errors for ``oauth`` when running the test suite. All other development dependencies are pulled automatically from `PyPI`_ when ``buildout`` runs. See `First time using buildout?`_ and `Running tests`_. .. _PyPI: http://pypi.python.org/ First time using buildout? ========================== Buildout_ is used to develop MAAS. Buildout, if configured so, can cache downloaded files and built eggs. If you've not already done something similar, the following snippet will massively improve build times:: [buildout] download-cache = /home//.buildout/cache eggs-directory = /home//.buildout/eggs Put this in ``~/.buildout/default.cfg`` and create the ``cache`` directory:: $ mkdir /home//.buildout/cache The ``eggs`` directory will be created automatically. .. _Buildout: http://www.buildout.org/ Running tests ============= To run the whole suite:: $ make test To run tests at a lower level of granularity:: $ ./bin/test.maas test src/maasserver/tests/test_api.py $ ./bin/test.maas test src/maasserver/tests/test_api.py:AnonymousEnlistmentAPITest The test runner is `nose`_, so you can pass in options like ``--with-coverage`` and ``--nocapture`` (short option: ``-s``). The latter is essential when using ``pdb`` so that stdout is not adulterated. .. _nose: http://readthedocs.org/docs/nose/en/latest/ Running JavaScript tests ^^^^^^^^^^^^^^^^^^^^^^^^ The JavaScript tests are run using Selenium_. Firefox is the default browser but any browser supported by Selenium can be used to run the tests. Note that you might need to download the appropriate driver and make it available in the path. You can then choose which browsers to use by setting the environment variable ``MAAS_TEST_BROWSERS`` to a comma-separated list of the names of the browsers to use. For instance, to run the tests with Firefox and Chrome:: $ export MAAS_TEST_BROWSERS="Firefox, Chrome" .. _Selenium: http://seleniumhq.org/ Running JavaScript tests with browsers on other platforms ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The JavaScript tests can be run using the `SauceLabs' OnDemand`_ service. There is a free version of this that provides 45 minutes a month of testing. To get started, `sign up`_ and go to your `account page`_, select the *Account* tab, and click *View my API Key*. Now save your credentials:: $ mkdir -p ~/.saucelabs/connect $ chmod go-rwx ~/.saucelabs/connect $ echo "${username} ${api_key}" > ~/.saucelabs/connect/credentials (You need to substitute your SauceLabs username and API key above.) Next, like when running Selenium tests locally, you need to specify the browsers to run on. At the time of writing there are four to choose from, all running on a Windows host:: $ export MAAS_REMOTE_TEST_BROWSERS="IE7, IE8, IE9, Chrome" By default, when ``MAAS_REMOTE_TEST_BROWSERS`` is not specified, testing via OnDemand is *not* attempted. .. _SauceLabs' OnDemand: http://saucelabs.com/ .. _sign up: http://saucelabs.com/pricing .. _account page: https://saucelabs.com/account Development MAAS server setup ============================= Access to the database is configured in ``src/maas/development.py``. The ``Makefile`` or the test suite sets up a development database cluster inside your branch. It lives in the ``db`` directory, which gets created on demand. You'll want to shut it down before deleting a branch; see below. First, set up the project. This fetches all the required dependencies and sets up some useful commands in ``bin/``:: $ make Create the database cluster and initialize the development database:: $ make syncdb Optionally, populate your database with the sample data:: $ make sampledata By default, the snippet ``maas_proxy`` includes a definition for an http proxy running on port 8000 on the same host as the MAAS server. This means you can *either* install ``squid-deb-proxy``:: $ sudo apt-get install squid-deb-proxy *or* you can edit ``contrib/snippets_v2/generic`` to remove the proxy definition. Set the iSCSI config to include the MAAS configs:: $ sudo tee -a /etc/tgt/targets.conf < contrib/tgt.conf The http_proxy variable is only needed if you're downloading through a proxy; "sudo" wouldn't pass it on to the script without the assignment. Or if you don't have it set but do want to download through a proxy, pass your proxy's URL: "http_proxy=http://proxy.example.com/" Run the development webserver and watch all the logs go by:: $ make run Point your browser to http://localhost:5240/ If you've populated your instance with the sample data, you can login as a simple user using the test account (username: 'test', password: 'test') or the admin account (username: 'admin', password: 'test'). At this point you may also want to `download PXE boot resources`_. .. _`download PXE boot resources`: `Downloading PXE boot resources`_ To shut down the database cluster and clean up all other generated files in your branch:: $ make distclean Downloading PXE boot resources ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ To use PXE booting, each cluster controller needs to download several files relating to PXE booting. This process is automated, but it does not start by default. First create a superuser and start all MAAS services:: $ bin/maas-region-admin createsuperuser $ make run Substitute your own email. The command will prompt for a choice of password. Next, get the superuser's API key on the `account preferences`_ page in the web UI, and use it to log into MAAS at the command-line:: $ bin/maas login dev http://localhost:5240 .. _`account preferences`: http://localhost:5240/account/prefs/ Start downloading PXE boot resources:: $ bin/maas dev node-groups import-boot-images This sends jobs to each cluster controller, asking each to download the boot resources they require. This may download dozens or hundreds of megabytes, so it may take a while. To save bandwidth, set an HTTP proxy beforehand:: $ bin/maas dev maas set-config name=http_proxy value=http://... Running the built-in TFTP server ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ You will need to run the built-in TFTP server on the real TFTP port (69) if you want to boot some real hardware. By default, it's set to start up on port 5244 for testing purposes. Make these changes:: * Edit ``etc/maas/pserv.yaml`` to change the tftp/port setting to 69 * Install the ``authbind``package: $ sudo apt-get install authbind * Create a file ``/etc/authbind/byport/69`` that is *executable* by the user running MAAS. $ sudo touch /etc/authbind/byport/69 $ sudo chmod a+x /etc/authbind/byport/69 Now when starting up the MAAS development webserver, "make run" and "make start" will detect authbind's presence and use it automatically. Running the BIND daemon for real ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ There's a BIND daemon that is started up as part of the development service but it runs on port 5246 by default. If you want to make it run as a real DNS server on the box then edit ``services/dns/run`` and change the port declaration there so it says:: port=53 Then as for TFTP above, create an authbind authorisation:: $ sudo touch /etc/authbind/byport/53 $ sudo chmod a+x /etc/authbind/byport/53 and run as normal. Running the cluster worker ^^^^^^^^^^^^^^^^^^^^^^^^^^ The cluster worker process also needs authbind as it needs to bind a socket on UDP port 68 for DHCP probing:: $ sudo touch /etc/authbind/byport/68 $ sudo chmod a+x /etc/authbind/byport/68 If you omit this, nothing else will break, but you will get an error in the cluster celeryd log because it can't bind to the port. Configuring DHCP ^^^^^^^^^^^^^^^^ MAAS requires a properly configured DHCP server so it can boot machines using PXE. MAAS can work with its own instance of the ISC DHCP server, if you install the maas-dhcp package:: $ sudo apt-get install maas-dhcp If you choose to run your own ISC DHCP server, there is a bit more configuration to do. First, run this tool to generate a configuration that will work with MAAS:: $ maas-provision generate-dhcp-config [options] Run ``maas-provision generate-dhcp-config -h`` to see the options. You will need to provide various IP details such as the range of IP addresses to assign to clients. You can use the generated output to configure your system's ISC DHCP server, by inserting the configuration in the ``/etc/dhcp/dhcpd.conf`` file. Also, edit /etc/default/isc-dhcp-server to set the INTERFACES variable to just the network interfaces that should be serviced by this DHCP server. Now restart dhcpd:: $ sudo service isc-dhcp-server restart None of this work is needed if you let MAAS run its own DHCP server by installing ``maas-dhcp``. Development services ==================== The development environment uses *daemontools* to manage the various services that are required. These are all defined in subdirectories in ``services/``. There are familiar service-like commands:: $ make start $ make status $ make restart $ make stop The latter is a dependency of ``distclean`` so just running ``make distclean`` when you've finished with your branch is enough to stop everything. Individual services can be manipulated too:: $ make services/pserv/@start The ``@`` pattern works for any of the services. There's an additional special action, ``run``:: $ make run This starts all services up and tails their log files. When you're done, kill ``tail`` (e.g. Ctrl-c), and all the services will be stopped. However, when used with individual services:: $ make services/webapp/@run it does something even cooler. First it shuts down the service, then it restarts it in the foreground so you can see the logs in the console. More importantly, it allows you to use ``pdb``, for example. A note of caution: some of the services have slightly different behaviour when run in the foreground: * Django (the *webapp* service) will be run with its auto-reloading enabled. * Apache (the *web* service) will run with ``-X``, which puts it in debug mode: only one worker will be started and the server will not detach from the console. There's a convenience target for hacking Django that starts everything up, but with Django in the foreground:: $ make run+webapp Apparently Django needs a lot of debugging ;) Adding new dependencies ======================= Since MAAS is distributed mainly as an Ubuntu package, all runtime dependencies should be packaged, and we should develop with the packaged version if possible. All dependencies, from a package or not, need to be added to ``setup.py`` and ``buildout.cfg``, and the version specified in ``versions.cfg`` (``allowed-picked-version`` is disabled, hence ``buildout`` must be given precise version information). If it is a development-only dependency (i.e. only needed for the test suite, or for developers' convenience), simply running ``buildout`` like this will make the necessary updates to ``versions.cfg``:: $ ./bin/buildout -v buildout:allow-picked-versions=true Adding new source files ======================= When creating a new source file, a Python module or test for example, always start with the appropriate template from the ``templates`` directory. Database schema changes ======================= MAAS uses South_ to manage changes to the database schema. .. _South: http://south.aeracode.org Be sure to have a look at `South's documentation`_ before you make any change. .. _South's documentation: http://south.aeracode.org/docs/ Changing the schema ^^^^^^^^^^^^^^^^^^^ Once you've made a model change (i.e. a change to a file in ``src//models/*.py``) you have to run South's `schemamigration`_ command to create a migration file that will be stored in ``src//migrations/``. Note that if you want to add a new model class you'll need to import it in ``src//models/__init__.py`` .. _schemamigration: http://south.aeracode.org/docs/commands.html#schemamigration Once you've changed the code, run:: $ ./bin/maas-region-admin schemamigration maasserver --auto description_of_the_change This will generate a migration module named ``src/maasserver/migrations/_description_of_the_change.py``. Don't forget to add that file to the project with:: $ bzr add src/maasserver/migrations/_description_of_the_change.py To apply that migration, run:: $ make syncdb Performing data migration ^^^^^^^^^^^^^^^^^^^^^^^^^ If you need to perform data migration, very much in the same way, you will need to run South's `datamigration`_ command. For instance, if you want to perform changes to the ``maasserver`` application, run:: $ ./bin/maas-region-admin datamigration maasserver description_of_the_change .. _datamigration: http://south.aeracode.org/docs/commands.html#datamigration This will generate a migration module named ``src/maasserver/migrations/_description_of_the_change.py``. You will need to edit that file and fill the ``forwards`` and ``backwards`` methods where data should be actually migrated. Again, don't forget to add that file to the project:: $ bzr add src/maasserver/migrations/_description_of_the_change.py Once the methods have been written, apply that migration with:: $ make syncdb Documentation ============= Use `reST`_ with the `convention for headings as used in the Python documentation`_. .. _reST: http://sphinx.pocoo.org/rest.html .. _convention for headings as used in the Python documentation: http://sphinx.pocoo.org/rest.html#sections maas-1.5+bzr2252.orig/INSTALL.txt0000644000000000000000000002545112323254361014350 0ustar 00000000000000.. -*- mode: rst -*- Installing MAAS =============== There are two main ways to install MAAS * :ref:`From Ubuntu's package archive on an existing Ubuntu install. ` * :ref:`As a fresh install from Ubuntu Server install media. ` If you are interested in testing the latest development version you can also check out the very latest source and build MAAS yourself. .. _pkg-install: Installing MAAS from the archive -------------------------------- Installing MAAS from packages is thankfully straightforward. There are actually several packages that go into making up a working MAAS install, but for convenience, many of these have been gathered into a virtual package called 'maas' which will install the necessary components for a 'seed cloud', that is a single server that will directly control a group of nodes. The main packages are: * ``maas`` - seed cloud setup, which includes both the region controller and the cluster controller below. * ``maas-region-controller`` - includes the web UI, API and database. * ``maas-cluster-controller`` - controls a group ("cluster") of nodes including DHCP management. * ``maas-dhcp``/``maas-dns`` - required when managing dhcp/dns. If you need to separate these services or want to deploy an additional cluster controller, you should install the corresponding packages individually (see :ref:`the description of a typical setup ` for more background on how a typical hardware setup might be arranged). There are two suggested additional packages 'maas-dhcp' and 'maas-dns'. These set up MAAS-controlled DHCP and DNS services which greatly simplify deployment if you are running a typical setup where the MAAS controller can run the network (Note: These **must** be installed if you later set the options in the web interface to have MAAS manage DHCP/DNS). If you need to integrate your MAAS setup under an existing DHCP setup, see :ref:`manual-dhcp` .. note:: A more up-to-date MAAS is available for the most recent Ubuntu LTS release in the Canonical cloud archive. You can activate the archive with ``sudo add-apt-repository cloud-archive:tools``. Using packages from this archive is recommended as it contains important fixes and new features that are not always available in the Ubuntu archive. Install packages ^^^^^^^^^^^^^^^^ At the command line, type:: $ sudo apt-get install maas maas-dhcp maas-dns You will see a list of packages and a confirmation message to proceed. The exact list will obviously depend on what you already have installed on your server, but expect to add about 200MB of files. The configuration for the MAAS controller will automatically run and pop up this config screen: .. image:: media/install_cluster-config.* Here you will need to enter the hostname for where the region controller can be contacted. In many scenarios, you may be running the region controller (i.e. the web and API interface) from a different network address, for example where a server has several network interfaces. Once the configuration scripts have run you should see this message telling you that the system is ready to use: .. image:: media/install_controller-config.* The web server is started last, so you have to accept this message before the service is run and you can access the Web interface. Then there are just a few more setup steps :ref:`post_install` .. _disc-install: Installing MAAS from Ubuntu Server boot media --------------------------------------------- If you are installing MAAS as part of a fresh install it is easiest to choose the "Multiple Server install with MAAS" option from the installer and have pretty much everything set up for you. Boot from the Ubuntu Server media and you will be greeted with the usual language selection screen: .. image:: media/install_01.* On the next screen, you will see there is an entry in the menu called "Multiple server install with MAAS". Use the cursor keys to select this and then press Enter. .. image:: media/install_02.* The installer then runs through the usual language and keyboard options. Make your selections using Tab/Cursor keys/Enter to proceed through the install. The installer will then load various drivers, which may take a moment or two. .. image:: media/install_03.* The next screen asks for the hostname for this server. Choose something appropriate for your network. .. image:: media/install_04.* Finally we get to the MAAS part! Here there are just two options. We want to "Create a new MAAS on this server" so go ahead and choose that one. .. image:: media/install_05.* The install now continues as usual. Next you will be prompted to enter a username. This will be the admin user for the actual server that MAAS will be running on (not the same as the MAAS admin user!) .. image:: media/install_06.* As usual you will have the chance to encrypt your home directory. Continue to make selections based on whatever settings suit your usage. .. image:: media/install_07.* After making selections and partitioning storage, the system software will start to be installed. This part should only take a few minutes. .. image:: media/install_09.* Various packages will now be configured, including the package manager and update manager. It is important to set these up appropriately so you will receive timely updates of the MAAS server software, as well as other essential services that may run on this server. .. image:: media/install_10.* The configuration for MAAS will ask you to configure the host address of the server. This should be the IP address you will use to connect to the server (you may have additional interfaces e.g. to run node subnets) .. image:: media/install_cluster-config.* The next screen will confirm the web address that will be used to the web interface. .. image:: media/install_controller-config.* After configuring any other packages the installer will finally come to and end. At this point you should eject the boot media. .. image:: media/install_14.* After restarting, you should be able to login to the new server with the information you supplied during the install. The MAAS software will run automatically. .. image:: media/install_15.* **NOTE:** The maas-dhcp and maas-dns packages should be installed by default, but on older releases of MAAS they won't be. If you want to have MAAS run DHCP and DNS services, you should install these packages. Check whether they are installed with:: $ dpkg -l maas-dhcp maas-dns If they are missing, then:: $ sudo apt-get install maas-dhcp maas-dns And then proceed to the post-install setup below. .. _post_install: Post-Install tasks ================== Your MAAS is now installed, but there are a few more things to be done. If you now use a web browser to connect to the region controller, you should see that MAAS is running, but there will also be some errors on the screen: .. image:: media/install_web-init.* The on screen messages will tell you that there are no boot images present, and that you can't login because there is no admin user. Create a superuser account -------------------------- Once MAAS is installed, you'll need to create an administrator account:: $ sudo maas-region-admin createadmin --username=root --email=MYEMAIL@EXAMPLE.COM Substitute your own email address for MYEMAIL@EXAMPLE.COM. You may also use a different username for your administrator account, but "root" is a common convention and easy to remember. The command will prompt for a password to assign to the new user. You can run this command again for any further administrator accounts you may wish to create, but you need at least one. Log in on the server -------------------- Looking at the region controller's main web page again, you should now see a login screen. Log in using the user name and password which you have just created. .. image:: media/install-login.* Import the boot images ---------------------- MAAS will check for and download new Ubuntu images once a week. To avoid having to wait that long, you'll need to download them manually the first time once you have set up your MAAS region and cluster controllers. Do it again if you add a cluster controller later, so that the new cluster controller also has the images. There are two ways to start the import: through the web user interface, or through the remote API. To do it in the web user interface, go to the Clusters tab and click the "Import boot images" button at the bottom of the list of cluster controllers. .. image:: media/import-images.* A message will appear to let you know that the import has started, and after a while, the warnings about the lack of boot images will disappear. It may take longer for the exact boot images you need to be downloaded. Give the import time to run; do not click the "Import boot images" button again until the script has had time to download several hundred megabytes from the archive server. The other way to start the import is through the :ref:`region-controller API `, which you can invoke most conveniently through the :ref:`command-line interface `. To do this, connect to the MAAS API using the "maas" command-line client. See :ref:`Logging in ` for how to get set up with this tool. Then, run the command:: $ maas my-maas-session node-groups import-boot-images (Substitute a different profile name for 'my-maas-session' if you have named yours something else.) This will initiate the download, just as if you had clicked "Import boot images" in the web user interface. .. note:: This API command is only available in MAAS versions 1.3 and above. If you are using an earlier version, you will need to run the shell command ``sudo maas-import-pxe-files`` on each of your cluster controllers. Configure DHCP -------------- If you want MAAS to control DHCP, you can either: #. Follow the instructions at :doc:`cluster-configuration` to use the web UI to set up your cluster controller. #. Use the command line interface `maas` by first :ref:`logging in to the API ` and then :ref:`following this procedure ` If you are manually configuring a DHCP server, you should take a look at :ref:`manual-dhcp` Configure switches on the network --------------------------------- Some switches use Spanning-Tree Protocol (STP) to negotiate a loop-free path through a root bridge. While scanning, it can make each port wait up to 50 seconds before data is allowed to be sent on the port. This delay in turn can cause problems with some applications/protocols such as PXE, DHCP and DNS, of which MAAS makes extensive use. To alleviate this problem, you should enable `Portfast`_ for Cisco switches or its equivalent on other vendor equipment, which enables the ports to come up almost immediately. .. _Portfast: https://www.symantec.com/business/support/index?page=content&id=HOWTO6019 Once everything is set up and running, you are ready to :doc:`start enlisting nodes ` maas-1.5+bzr2252.orig/LICENSE0000644000000000000000000010436312323254361013506 0ustar 00000000000000MAAS is Copyright 2012 Canonical Ltd. Canonical Ltd ("Canonical") distributes the MAAS source code under the GNU Affero General Public License, version 3 ("AGPLv3"). The full text of this licence is given below. Third-party copyright in this distribution is noted where applicable. All rights not expressly granted are reserved. ========================================================================= GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 (http://www.gnu.org/licenses/agpl.html) 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 Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are 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. 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. Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. 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 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 work with which it is combined will remain governed by version 3 of the GNU General Public License. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU Affero 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 Affero 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 Affero 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 Affero 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 Affero 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. 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 AGPL, see . ========================================================================= maas-1.5+bzr2252.orig/MANIFEST.in0000644000000000000000000000036712323254361014236 0ustar 00000000000000graft src/*/static graft src/*/templates graft src/*/fixtures graft src/*/specs graft src/provisioningserver/* graft src/metadataserver/commissioning prune src/*/testing prune src/*/tests prune src/maastesting prune src/provisioningserver/*/tests maas-1.5+bzr2252.orig/Makefile0000644000000000000000000002664312323254361014145 0ustar 00000000000000python := python2.7 # Network activity can be suppressed by setting offline=true (or any # non-empty string) at the command-line. ifeq ($(offline),) buildout := bin/buildout virtualenv := virtualenv else buildout := bin/buildout buildout:offline=true virtualenv := virtualenv --never-download endif # If offline has been selected, attempt to further block HTTP/HTTPS # activity by setting bogus proxies in the environment. ifneq ($(offline),) export http_proxy := broken export https_proxy := broken endif # Python enum modules. py_enums := $(wildcard src/*/enum.py) # JavaScript enum module (not modules). js_enums := src/maasserver/static/js/enums.js # Prefix commands with this when they need access to the database. # Remember to add a dependency on bin/database from the targets in # which those commands appear. dbrun := bin/database --preserve run -- # For things that care, postgresfixture for example, we always want to # use the "maas" databases. export PGDATABASE := maas build: \ bin/buildout \ bin/database \ bin/maas-region-admin bin/test.maas \ bin/maas bin/test.maascli \ bin/test.maastesting \ bin/twistd.pserv bin/test.pserv \ bin/test.config \ bin/maas-probe-dhcp \ bin/twistd.txlongpoll \ bin/celeryd.cluster bin/celeryd.region \ bin/py bin/ipy \ $(js_enums) all: build doc # Install all packages required for MAAS development & operation on # the system. This may prompt for a password. install-dependencies: sudo DEBIAN_FRONTEND=noninteractive apt-get -y \ --no-install-recommends install $(shell sort -u \ $(addprefix required-packages/,base build dev doc)) sudo DEBIAN_FRONTEND=noninteractive apt-get -y \ purge $(shell sort -u required-packages/forbidden) bin/python: $(virtualenv) --python=$(python) --system-site-packages $(CURDIR) bin/buildout: bin/python bootstrap/zc.buildout-1.5.2.tar.gz bin/python -m pip --quiet install --ignore-installed \ --no-dependencies bootstrap/zc.buildout-1.5.2.tar.gz $(RM) -f README.txt # zc.buildout installs an annoying README.txt. @touch --no-create $@ # Ensure it's newer than its dependencies. bin/database: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install database @touch --no-create $@ bin/maas-region-admin bin/celeryd.region: \ bin/buildout buildout.cfg versions.cfg setup.py $(js_enums) $(buildout) install maas @touch --no-create $@ bin/test.maas: bin/buildout buildout.cfg versions.cfg setup.py $(js_enums) $(buildout) install maas-test @touch --no-create $@ bin/maas: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install maascli @touch --no-create $@ bin/test.maascli: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install maascli-test @touch --no-create $@ bin/test.maastesting: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install maastesting-test @touch --no-create $@ bin/maas-provision bin/twistd.pserv bin/celeryd.cluster: \ bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install pserv @touch --no-create $@ bin/test.pserv: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install pserv-test @touch --no-create $@ bin/test.config: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install config-test @touch --no-create $@ bin/maas-probe-dhcp: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install maas-probe-dhcp @touch --no-create $@ bin/twistd.txlongpoll: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install txlongpoll @touch --no-create $@ bin/flake8: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install flake8 @touch --no-create $@ bin/sphinx bin/sphinx-build: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install sphinx @touch --no-create $@ bin/py bin/ipy: bin/buildout buildout.cfg versions.cfg setup.py $(buildout) install repl @touch --no-create bin/py bin/ipy test: build echo $(wildcard bin/test.*) | xargs -n1 env lint: lint-py lint-js lint-doc pocketlint = $(call available,pocketlint,python-pocket-lint) # XXX jtv 2014-02-25: Clean up this lint, then make it part of "make lint". lint-css: sources = src/maasserver/static/css lint-css: @find $(sources) -type f \ -print0 | xargs -r0 $(pocketlint) --max-length=120 lint-py: sources = $(wildcard *.py contrib/*.py) src templates twisted utilities etc lint-py: bin/flake8 @find $(sources) -name '*.py' ! -path '*/migrations/*' \ -print0 | xargs -r0 bin/flake8 --ignore=E123 --config=/dev/null lint-doc: @./utilities/doc-lint lint-js: sources = src/maasserver/static/js lint-js: @find $(sources) -type f -print0 | xargs -r0 $(pocketlint) # Apply automated formatting to all Python files. format: sources = $(wildcard *.py contrib/*.py) src templates twisted utilities etc format: @find $(sources) -name '*.py' -print0 | xargs -r0 ./utilities/format-imports check: clean test docs/api.rst: bin/maas-region-admin src/maasserver/api.py syncdb bin/maas-region-admin generate_api_doc > $@ sampledata: bin/maas-region-admin bin/database syncdb $(dbrun) bin/maas-region-admin loaddata src/maasserver/fixtures/dev_fixture.yaml doc: bin/sphinx docs/api.rst bin/sphinx doc-with-versions: bin/sphinx cd docs/_build; make SPHINXOPTS="-A add_version_switcher=true" html man: $(patsubst docs/man/%.rst,man/%,$(wildcard docs/man/*.rst)) man/%: docs/man/%.rst | bin/sphinx-build bin/sphinx-build -b man docs man $^ enums: $(js_enums) $(js_enums): bin/py src/maasserver/utils/jsenums.py $(py_enums) bin/py -m src/maasserver/utils/jsenums $(py_enums) > $@ clean: $(MAKE) -C acceptance $@ find . -type f -name '*.py[co]' -print0 | xargs -r0 $(RM) find . -type f -name '*~' -print0 | xargs -r0 $(RM) find . -type f -name dropin.cache -print0 | xargs -r0 $(RM) $(RM) -r media/demo/* media/development $(RM) $(js_enums) $(RM) *.log $(RM) docs/api.rst $(RM) -r docs/_autosummary docs/_build $(RM) -r man/.doctrees distclean: clean stop $(RM) -r bin include lib local $(RM) -r eggs develop-eggs $(RM) -r build dist logs/* parts $(RM) tags TAGS .installed.cfg $(RM) -r *.egg *.egg-info src/*.egg-info $(RM) -r run/* services/*/supervise harness: bin/maas-region-admin bin/database $(dbrun) bin/maas-region-admin shell --settings=maas.demo dbharness: bin/database bin/database --preserve shell syncdb: bin/maas-region-admin bin/database $(dbrun) bin/maas-region-admin syncdb --noinput $(dbrun) bin/maas-region-admin migrate maasserver --noinput $(dbrun) bin/maas-region-admin migrate metadataserver --noinput define phony_targets build check clean dbharness distclean doc enums format harness install-dependencies lint lint-css lint-doc lint-js lint-py man package sampledata source_package syncdb test endef # # Development services. # service_names_region := database dns region-worker reloader txlongpoll web webapp service_names_cluster := cluster-worker pserv reloader service_names_all := $(service_names_region) $(service_names_cluster) # The following template is intended to be used with `call`, and it # accepts a single argument: a target name. The target name must # correspond to a service action (see "Pseudo-magic targets" below). # A region- and cluster-specific variant of the target will be # created, in addition to the target itself. These can be used to # apply the service action to the region services, the cluster # services, or all services, at the same time. define service_template $(1)-region: $(patsubst %,services/%/@$(1),$(service_names_region)) $(1)-cluster: $(patsubst %,services/%/@$(1),$(service_names_cluster)) $(1): $(1)-region $(1)-cluster phony_services_targets += $(1)-region $(1)-cluster $(1) endef # Expand out aggregate service targets using `service_template`. $(eval $(call service_template,pause)) $(eval $(call service_template,restart)) $(eval $(call service_template,start)) $(eval $(call service_template,status)) $(eval $(call service_template,stop)) $(eval $(call service_template,supervise)) # The `run` targets do not fit into the mould of the others. run-region: @services/run $(service_names_region) run-cluster: @services/run $(service_names_cluster) run: @services/run $(service_names_all) phony_services_targets += run-region run-cluster run # This one's for the rapper, yo. run+webapp: @services/run $(service_names_region) +webapp phony_services_targets += run+webapp # Convenient variables and functions for service control. setlock = $(call available,setlock,daemontools) supervise = $(call available,supervise,daemontools) svc = $(call available,svc,daemontools) svok = $(call available,svok,daemontools) svstat = $(call available,svstat,daemontools) service_lock = $(setlock) -n /run/lock/maas.dev.$(firstword $(1)) # Pseudo-magic targets for controlling individual services. services/%/@run: services/%/@stop services/%/@deps @$(call service_lock, $*) services/$*/run services/%/@start: services/%/@supervise @$(svc) -u $(@D) services/%/@pause: services/%/@supervise @$(svc) -d $(@D) services/%/@status: @$(svstat) $(@D) services/%/@restart: services/%/@supervise @$(svc) -du $(@D) services/%/@stop: @if $(svok) $(@D); then $(svc) -dx $(@D); fi @while $(svok) $(@D); do sleep 0.1; done services/%/@supervise: services/%/@deps @mkdir -p logs/$* @touch $(@D)/down @if ! $(svok) $(@D); then \ logdir=$(CURDIR)/logs/$* \ $(call service_lock, $*) $(supervise) $(@D) & fi @while ! $(svok) $(@D); do sleep 0.1; done # Dependencies for individual services. services/dns/@deps: bin/py services/cluster-worker/@deps: bin/celeryd.cluster services/region-worker/@deps: bin/celeryd.region services/database/@deps: bin/database services/pserv/@deps: bin/twistd.pserv services/reloader/@deps: services/txlongpoll/@deps: bin/twistd.txlongpoll services/web/@deps: services/webapp/@deps: bin/maas-region-admin # # Package building # # This ought to be as simple as using bzr builddeb --export-upstream but it # has a bug and always considers apt-source tarballs before the specified # branch. So instead, export to a local tarball which is always found. # Make sure debhelper and dh-apport packages are installed before using this. PACKAGING := $(CURDIR)/../packaging.trunk PACKAGING_BRANCH := lp:~maas-maintainers/maas/packaging package_branch: @echo Downloading/refreshing packaging branch... @if [ ! -d $(PACKAGING) ]; then \ bzr branch $(PACKAGING_BRANCH) $(PACKAGING); \ else bzr pull -d $(PACKAGING); fi # Make sure an orig tarball generated from the current branch is placed in the # build area. package_export: VER = $(shell dpkg-parsechangelog -l$(PACKAGING)/debian/changelog | sed -rne 's,^Version: ([^-]+).*,\1,p') package_export: TARBALL = maas_$(VER).orig.tar.gz package_export: package_branch @$(RM) -f ../build-area/$(TARBALL) @mkdir -p ../build-area @bzr export --root=maas-$(VER).orig ../build-area/$(TARBALL) $(CURDIR) package: package_export bzr bd --merge $(PACKAGING) -- -uc -us @echo Binary packages built, see parent directory. source_package: package_export bzr bd --merge $(PACKAGING) -- -S -uc -us @echo Source package built, see parent directory. # # Phony stuff. # define phony $(phony_services_targets) $(phony_targets) endef phony := $(sort $(strip $(phony))) .PHONY: $(phony) # # Functions. # # Check if a command is found on PATH. Raise an error if not, citing # the package to install. Return the command otherwise. # Usage: $(call available,,) define available $(if $(shell which $(1)),$(1),$(error $(1) not found; \ install it with 'sudo apt-get install $(2)')) endef maas-1.5+bzr2252.orig/README0000644000000000000000000000241612323254361013355 0ustar 00000000000000.. -*- mode: rst -*- ************************ MAAS: Metal as a Service ************************ Metal as a Service -- MAAS -- lets you treat physical servers like virtual machines in the cloud. Rather than having to manage each server individually, MAAS turns your bare metal into an elastic cloud-like resource. What does that mean in practice? Tell MAAS about the machines you want it to manage and it will boot them, check the hardware's okay, and have them waiting for when you need them. You can then pull nodes up, tear them down and redeploy them at will; just as you can with virtual machines in the cloud. When you're ready to deploy a service, MAAS gives Juju the nodes it needs to power that service. It's as simple as that: no need to manually provision, check and, afterwards, clean-up. As your needs change, you can easily scale services up or down. Need more power for your Hadoop cluster for a few hours? Simply tear down one of your Nova compute nodes and redeploy it to Hadoop. When you're done, it's just as easy to give the node back to Nova. MAAS is ideal where you want the flexibility of the cloud, and the hassle-free power of Juju charms, but you need to deploy to bare metal. For more information see the `MAAS guide`_. .. _MAAS guide: https://maas.ubuntu.com/ maas-1.5+bzr2252.orig/acceptance/0000755000000000000000000000000012323254361014560 5ustar 00000000000000maas-1.5+bzr2252.orig/bootstrap/0000755000000000000000000000000012323254361014507 5ustar 00000000000000maas-1.5+bzr2252.orig/buildout.cfg0000644000000000000000000001114012323254361014777 0ustar 00000000000000[buildout] parts = flake8 maas maas-test maascli maascli-test maas-probe-dhcp maastesting-test pserv pserv-test config-test repl sphinx txlongpoll extensions = buildout-versions buildout_versions_file = versions.cfg versions = versions extends = versions.cfg offline = false newest = false # Since MAAS's main deployment target is Ubuntu, all runtime # dependencies should come from python packages. However, it's okay # for development-time dependencies to come from eggs. include-site-packages = true prefer-final = true allow-picked-versions = false [common] extra-paths = ${buildout:directory}/etc ${buildout:directory}/src ${buildout:directory} test-eggs = coverage fixtures mock nose nose-subunit postgresfixture python-subunit rabbitfixture saucelabsfixture sst testresources testscenarios testtools initialization = from os import environ environ.setdefault("MAAS_CONFIG_DIR", "${buildout:directory}/etc/maas") [database] recipe = z3c.recipe.scripts eggs = postgresfixture extra-paths = ${common:extra-paths} interpreter = entry-points = database=postgresfixture.main:main scripts = database [maas] recipe = zc.recipe.egg dev-eggs = django-debug-toolbar test-eggs = ${common:test-eggs} django-nose eggs = ${maas:dev-eggs} ${maas:test-eggs} djorm-ext-pgarray docutils crochet iscpy entry-points = celeryd.region=celery.bin.worker:main maas-region-admin=django.core.management:execute_from_command_line initialization = ${common:initialization} environ.setdefault("DJANGO_SETTINGS_MODULE", "maas.development") scripts = celeryd.region maas-region-admin extra-paths = ${common:extra-paths} [maas-test] recipe = zc.recipe.egg eggs = ${maas:eggs} entry-points = test.maas=django.core.management:execute_from_command_line initialization = ${maas:initialization} sys.argv[1:1] = [ "test", "--noinput", "--exclude=provisioningserver", "--exclude=maastesting", "--exclude=maascli"] scripts = test.maas extra-paths = ${maas:extra-paths} [maas-probe-dhcp] recipe = zc.recipe.egg eggs = ${maas:eggs} entry-points = maas-probe-dhcp=provisioningserver.dhcp.probe:main scripts = maas-probe-dhcp extra-paths = ${maas:extra-paths} initialization = ${common:initialization} [maascli] recipe = zc.recipe.egg eggs = entry-points = maas=maascli:main extra-paths = ${common:extra-paths} scripts = maas [maascli-test] recipe = zc.recipe.egg eggs = ${maascli:eggs} ${common:test-eggs} entry-points = test.maascli=nose.core:TestProgram initialization = sys.argv[1:1] = ["--where=src/maascli"] extra-paths = ${maascli:extra-paths} scripts = test.maascli [maastesting-test] recipe = zc.recipe.egg eggs = ${common:test-eggs} entry-points = test.maastesting=nose.core:TestProgram initialization = sys.argv[1:1] = ["--where=src/maastesting"] extra-paths = ${common:extra-paths} scripts = test.maastesting scripts = test.maastesting extra-paths = ${maas:extra-paths} [pserv] recipe = zc.recipe.egg eggs = crochet entry-points = celeryd.cluster=celery.bin.worker:main maas-provision=provisioningserver.__main__:main twistd.pserv=twisted.scripts.twistd:run extra-paths = ${common:extra-paths} scripts = celeryd.cluster maas-provision twistd.pserv initialization = ${common:initialization} [pserv-test] recipe = zc.recipe.egg eggs = ${pserv:eggs} ${common:test-eggs} entry-points = test.pserv=nose.core:TestProgram initialization = ${pserv:initialization} sys.argv[1:1] = ["--where=src/provisioningserver"] extra-paths = ${pserv:extra-paths} scripts = test.pserv [config-test] recipe = zc.recipe.egg eggs = ${common:test-eggs} entry-points = test.config=nose.core:TestProgram initialization = ${pserv:initialization} sys.argv[1:1] = ["--where=etc/maas/templates/commissioning-user-data"] extra-paths = ${common:extra-paths} scripts = test.config [flake8] recipe = zc.recipe.egg eggs = flake8 entry-points = flake8=flake8.run:main [sphinx] recipe = collective.recipe.sphinxbuilder source = ${buildout:directory}/docs build = ${buildout:directory}/docs/_build extra-paths = ${common:extra-paths} eggs = ${maas:eggs} ${pserv:eggs} # Convenient REPLs with all eggs available. [repl] recipe = z3c.recipe.scripts eggs = ${maas:eggs} ${pserv:eggs} ${common:test-eggs} extra-paths = ${common:extra-paths} interpreter = py scripts = ipy entry-points = ipy=IPython.frontend.terminal.ipapp:launch_new_instance [txlongpoll] recipe = z3c.recipe.scripts eggs = extra-paths = /buildout/creates/an/invalid/list/literal/without/this entry-points = twistd.txlongpoll=twisted.scripts.twistd:run scripts = twistd.txlongpoll maas-1.5+bzr2252.orig/contrib/0000755000000000000000000000000012323254361014132 5ustar 00000000000000maas-1.5+bzr2252.orig/docs/0000755000000000000000000000000012323254361013422 5ustar 00000000000000maas-1.5+bzr2252.orig/etc/0000755000000000000000000000000012323254361013245 5ustar 00000000000000maas-1.5+bzr2252.orig/logs/0000755000000000000000000000000012323254361013436 5ustar 00000000000000maas-1.5+bzr2252.orig/man/0000755000000000000000000000000012323254361013245 5ustar 00000000000000maas-1.5+bzr2252.orig/media/0000755000000000000000000000000012323254361013551 5ustar 00000000000000maas-1.5+bzr2252.orig/required-packages/0000755000000000000000000000000012323254361016066 5ustar 00000000000000maas-1.5+bzr2252.orig/run/0000755000000000000000000000000012323254361013276 5ustar 00000000000000maas-1.5+bzr2252.orig/scripts/0000755000000000000000000000000012323254361014161 5ustar 00000000000000maas-1.5+bzr2252.orig/services/0000755000000000000000000000000012323254361014315 5ustar 00000000000000maas-1.5+bzr2252.orig/setup.py0000755000000000000000000001100712323254361014206 0ustar 00000000000000#!/usr/bin/env python2.7 # Copyright 2012-2013 Canonical Ltd. This software is licensed under the # GNU Affero General Public License version 3 (see the file LICENSE). """Distribute/Setuptools installer for MAAS.""" from __future__ import ( absolute_import, print_function, unicode_literals, ) str = None from glob import glob from os.path import ( dirname, join, ) import sys from setuptools import ( find_packages, setup, ) # The source tree's location in the filesystem. SOURCE_DIR = dirname(__file__) # Allow the setup code to import from the source tree. sys.path.append(join(SOURCE_DIR, 'src')) def read(filename): """Return the whitespace-stripped content of `filename`.""" path = join(SOURCE_DIR, filename) with open(path, "rb") as fin: return fin.read().strip() __version__ = "0.1" setup( name="maas", version=__version__, url="https://launchpad.net/maas", license="AGPLv3", description="Metal As A Service", long_description=read('README'), author="MAAS Developers", author_email="maas-devel@lists.launchpad.net", packages=find_packages( where=b'src', exclude=[ b"*.testing", b"*.tests", b"maastesting", ], ), package_dir={'': b'src'}, include_package_data=True, data_files=[ ('/etc/maas', ['etc/maas/pserv.yaml', 'etc/maas/bootresources.yaml', 'etc/maas/drivers.yaml', 'etc/maas_cluster.conf', 'etc/txlongpoll.yaml', 'contrib/maas_local_celeryconfig.py', 'contrib/maas_local_celeryconfig_cluster.py', 'contrib/maas-http.conf', 'contrib/maas-cluster-http.conf', 'contrib/maas_local_settings.py']), ('/etc/maas/templates/uefi', glob('etc/maas/templates/uefi/*.template')), ('/etc/maas/templates/dhcp', glob('etc/maas/templates/dhcp/*.template')), ('/etc/maas/templates/dns', glob('etc/maas/templates/dns/*.template')), ('/etc/maas/templates/power', glob('etc/maas/templates/power/*.template') + glob('etc/maas/templates/power/*.conf')), ('/etc/maas/templates/pxe', glob('etc/maas/templates/pxe/*.template')), ('/etc/maas/templates/commissioning-user-data', glob('etc/maas/templates/commissioning-user-data/*.template')), ('/etc/maas/templates/commissioning-user-data/snippets', glob('etc/maas/templates/commissioning-user-data/snippets/*.py') + glob('etc/maas/templates/commissioning-user-data/snippets/*.sh')), ('/usr/share/maas', ['contrib/wsgi.py', 'etc/celeryconfig.py', 'etc/celeryconfig_cluster.py', 'etc/celeryconfig_common.py']), ('/etc/maas/preseeds', ['contrib/preseeds_v2/commissioning', 'contrib/preseeds_v2/enlist', 'contrib/preseeds_v2/generic', 'contrib/preseeds_v2/enlist_userdata', 'contrib/preseeds_v2/curtin', 'contrib/preseeds_v2/curtin_userdata', 'contrib/preseeds_v2/preseed_master']), ('/usr/sbin', ['scripts/maas-import-pxe-files']), ('/usr/bin', ['scripts/uec2roottar']), ], install_requires=[ 'setuptools', 'Django == 1.3.1', 'psycopg2', 'amqplib', 'convoy', 'django-piston', 'FormEncode', 'oauth', 'oops', 'oops-datedir-repo', 'oops-twisted', 'PyYAML', 'South', 'Twisted', 'txAMQP', 'txlongpoll', ], classifiers=[ 'Development Status :: 4 - Beta', 'Framework :: Django', 'Intended Audience :: Developers', "Intended Audience :: System Administrators", 'License :: OSI Approved :: GPL License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', ], extras_require=dict( doc=[ 'collective.recipe.sphinxbuilder', 'Sphinx', ], tests=[ 'coverage', 'django-nose', 'lxml', 'sst', 'fixtures', 'mock', 'nose', 'nose-subunit', 'python-subunit', 'rabbitfixture', 'testresources', 'testscenarios', 'testtools', ], ) ) maas-1.5+bzr2252.orig/src/0000755000000000000000000000000012323254361013261 5ustar 00000000000000maas-1.5+bzr2252.orig/templates/0000755000000000000000000000000012323254361014470 5ustar 00000000000000maas-1.5+bzr2252.orig/twisted/0000755000000000000000000000000012323254361014155 5ustar 00000000000000maas-1.5+bzr2252.orig/utilities/0000755000000000000000000000000012323254361014505 5ustar 00000000000000maas-1.5+bzr2252.orig/versions.cfg0000644000000000000000000000452712323254361015033 0ustar 00000000000000[versions] <= versions-dev versions-doc versions-auto [versions-doc] # Versions in Precise docutils = 0.11 Jinja2 = 2.7.2 Pygments = 1.6 Sphinx = 1.2.2 collective.recipe.sphinxbuilder = 0.8.2 [versions-dev] # Bug 251 is problematic in 0.9.2. django-debug-toolbar = 1.0.1 sqlparse = 0.1.10 ipython = 0.12.1 mock = 1.0b1 postgresfixture = 0.2.1 saucelabsfixture = 0.1 <= versions-flake8 [versions-flake8] flake8 = 2.0 mccabe = 0.2.1 pep8 = 1.4.6 pyflakes = 0.7.3 [versions-auto] # Added by Buildout Versions at 2012-02-24 15:51:04.865203 buildout-versions = 1.7 coverage = 3.5.1 distribute = 0.6.34 django-nose = 1.2 fixtures = 0.3.8 nose = 1.3 nose-subunit = 0.2 python-subunit = 0.0.7 rabbitfixture = 0.3.4 sst = 0.2.2 testresources = 0.2.5 testscenarios = 0.4 testtools = 0.9.34 z3c.recipe.scripts = 1.0.1 # Required by: # collective.recipe.sphinxbuilder==0.7.0 zc.buildout = 1.5.2 # Required by: # collective.recipe.sphinxbuilder==0.7.0 zc.recipe.egg = 1.3.2 # Required by: # oops==0.0.10 iso8601 = 0.1.4 # Required by: # oops-twisted==0.0.6 # oops==0.0.10 pytz = 2011k # Added by Buildout Versions at 2012-03-01 21:05:20.109266 Paste = 1.7.5.1 lazr.restfulclient = 0.12.0 # Required by: # oops-datedir-repo==0.0.15 bson = 0.3.3 # Required by: # launchpadlib==1.9.12 # lazr.restfulclient==0.12.0 httplib2 = 0.7.2 # Required by: # launchpadlib==1.9.12 keyring = 0.7.1 # Required by: # oops-datedir-repo==0.0.15 launchpadlib = 1.9.12 # Required by: # lazr.restfulclient==0.12.0 lazr.authentication = 0.1.2 # Required by: # launchpadlib==1.9.12 # wadllib==1.3.0 lazr.uri = 1.0.3 # Required by: # launchpadlib==1.9.12 simplejson = 2.3.2 # Required by: # launchpadlib==1.9.12 wadllib = 1.3.0 # Required by: # lazr.restfulclient==0.12.0 wsgi-intercept = 0.5.1 # Required by: # Twisted==11.1.0 # lazr.authentication==0.1.2 zope.interface = 3.6.1 # Added by Buildout Versions at 2012-04-24 11:28:06.120704 # Required by: # sst==0.2.2 junitxml = 0.6 # Required by: # sst==0.2.2 # saucelabsfixture=0.1 selenium = 2.39 # Required by: # sst==0.2.2 unittest2 = 0.5.1 djorm-ext-pgarray = 0.8 # Added by Buildout Versions at 2014-01-20 12:04:40.492787 # Required by: # testtools==0.9.34 extras = 0.0.3 # Required by: # testtools==0.9.34 python-mimeparse = 0.1.4 # Added by Gavin Panella at 2014-01-20 crochet = 1.0.0 # Added by Julian Edwards 2014-02-14 iscpy = 1.05 maas-1.5+bzr2252.orig/acceptance/Makefile0000644000000000000000000000647112323254361016230 0ustar 00000000000000# # Build and test everything in ephemeral containers: # # $ make # # Use a different packaging branch: # # $ make packaging=/path/to/branch # # Note: /path/to/branch can be anything that bzr recognises, so an lp: # link, or bzr+ssh, and so on. # # Build and test with a different Ubuntu series: # # $ make series=randy # include /etc/lsb-release # Default to the newer of Quantal or the local series. series := $(lastword $(sort quantal $(DISTRIB_CODENAME))) # Default to the main packaging branch on Launchpad, but treat Precise # specially. ifeq ($(series),precise) packaging := lp:~maas-maintainers/maas/packaging.precise else packaging := lp:~maas-maintainers/maas/packaging endif # Assume we're testing this branch. upstream := $(abspath ..) # The container on which to base ephemerals. container := maas-$(series) ## Convenience definitions. define ephexec sudo LC_ALL=C SSH_ASKPASS=$(abspath ubuntupass) setsid \ lxc-start-ephemeral -b $(upstream) -o $(container) -u ubuntu -- \ env DEBIAN_FRONTEND=noninteractive SUDO_ASKPASS=$(abspath ubuntupass) endef define ephexec-make $(ephexec) $(abspath with-make) make -C $(abspath .) endef define check-service test $(2) = $(wordlist 2,2,$(shell initctl --system status $(1))) # $(1) endef ## Top-level targets. test: build | services sudo container-updated $(ephexec-make) $@-inner # lxc-start-ephemeral does not return the exit code of any command it # runs, so we delete any existing packages before building and check # for their presence afterwards instead. build: source source/debian | services sudo container @$(RM) *.deb $(ephexec-make) $@-inner @ls -1 *.deb @touch $@ container: | services sudo test -n "$$(sudo lxc-ls -1 $(container))" || \ sudo lxc-create -n $(container) -f /etc/lxc/default.conf \ -t ubuntu -- --release $(series) container-updated: container | services sudo $(abspath update-container) $(container) services: $(call check-service,lxc,start/running) $(call check-service,lxc-net,start/running) define phony-outer-targets container container-updated services test endef ## Targets that run within an LXC container. # XXX: These packages appear to be missing from the dependencies # declared in the packaging branch. define missing-packages python-distribute python-django endef test-inner: upgrade-inner sudo -AE apt-get --assume-yes install $(strip $(missing-packages)) sudo -AE dpkg --unpack --force-depends -- *.deb sudo -AE apt-get --fix-broken --assume-yes install define build-packages debhelper devscripts dh-apport endef build-inner: | upgrade-inner sudo -AE apt-get --assume-yes install $(strip $(missing-packages)) sudo -AE apt-get --assume-yes install $(strip $(build-packages)) cd source && debuild -i -us -uc -b upgrade-inner: sudo -AE apt-get --assume-yes update sudo -AE apt-get --assume-yes upgrade define phony-inner-targets build-inner test-inner upgrade-inner endef ## Dependencies. source: bzr export --uncommitted $@ $(upstream) source/debian: | source bzr export $@ $(packaging)/debian ## Miscellaneous. sudo: @sudo -v clean: $(RM) -r source build *.build *.changes *.deb define phony-misc-targets clean sudo endef ## Phony. define phony $(phony-inner-targets) $(phony-misc-targets) $(phony-outer-targets) endef phony := $(sort $(strip $(phony))) .PHONY: $(phony) maas-1.5+bzr2252.orig/acceptance/README0000644000000000000000000000122012323254361015433 0ustar 00000000000000MAAS Packaging Acceptance Testing --------------------------------- The `test` make target will build binary packages for the current branch using the latest packaging branch from Launchpad, *in a clean ephemeral container*. The `build` target will install these packages in another clean ephemeral LXC container. Consider the `build-inner` and `test-inner` targets as bootstrap points for further work. It may not be suitable for full automated end-to-end testing of MAAS, so be clear about what you need to test before investing work here. OTOH, it is a good place to quickly test that the packages build, install and configure themselves as expected. maas-1.5+bzr2252.orig/acceptance/ubuntupass0000755000000000000000000000004012323254361016711 0ustar 00000000000000#!/usr/bin/env bash echo ubuntu maas-1.5+bzr2252.orig/acceptance/update-container0000755000000000000000000000137212323254361017753 0ustar 00000000000000#!/usr/bin/env bash # Copyright 2012 Canonical Ltd. This software is licensed under the # GNU Affero General Public License version 3 (see the file LICENSE). # Exit immediately if a command exits with a non-zero status. set -o errexit # Treat unset variables as an error when substituting. set -o nounset container="$1" start() { echo -n Starting... sudo lxc-start -n "${container}" --daemon echo " done." } attach() { sudo LC_ALL=C lxc-attach -n "${container}" -- "$@" } stop() { echo -n Stopping... sudo lxc-stop -n "${container}" echo " done." } start && trap stop EXIT && { sleep 5 # Allow container to get going. attach sudo -AE apt-get --assume-yes update attach sudo -AE apt-get --assume-yes dist-upgrade } maas-1.5+bzr2252.orig/acceptance/with-make0000755000000000000000000000114712323254361016377 0ustar 00000000000000#!/usr/bin/env bash # Copyright 2012 Canonical Ltd. This software is licensed under the # GNU Affero General Public License version 3 (see the file LICENSE). # Exit immediately if a command exits with a non-zero status. set -o errexit # Treat unset variables as an error when substituting. set -o nounset # Ensure that GNU make is installed. if ! sudo -AE apt-get install --assume-yes make then # The installation of `make` may have failed because the package # lists are out of date, so update them and try again. sudo -AE apt-get update sudo -AE apt-get install --assume-yes make fi exec "$@" maas-1.5+bzr2252.orig/bootstrap/zc.buildout-1.5.2.tar.gz0000644000000000000000000120763112323254361020553 0ustar 00000000000000‹=¿²Lzc.buildout-1.5.2.tarìKŒÀÝÚPÑDÎ…Œ‹’PÁ)Ê$ åú:—ßb£ÃW™ ±å(¹.sbTs4m¦ÌLçC±âdiEäj ÓRÀ|â<™b7¡GP}ñ áL ×ÈèQ1“¹Â>DAEUvú ÛL˜H‰Þ°.˜r(’ ¨4¡¹:¢qiØ j€¹ÓÚ˜¹)ÔD $v@ ‡) 7J²qà‡:Ô{9:4E23À0ª´FH‘É À[9Ôz¥‰øebþPtTQ°ÅÂX&±£A–<Ï n‹e”ÄMƲ0=3~fY¬‘‚¹,Êjsz§hÁ=aL?# ©4bEÖ§„K®Å5,¢#¥RbS£'T1FÎs]ŠIr=.p¡<ʼn«›À*¶W^¦,áÍÕ%*Àr¢aör€õ¥Á%ð`„¸ÚWÀ¾¸Æû:.' ¬4›ó)•ÅÒ``ˆøÊT€TÝ0Ò8ÃDSÜ&&)œ©*ñã¸(¦Ï76f³™· m_¿ ‘Ïaý¦ÊD^—¼O qPÎ5@á8-‡ ôÊØ .m«ëkx:Ÿ&í)‰3¥ߵ¦0T$„@éÃŽ\á™d$S¨hfÐf=KŠ1.P’cÇ¡šªl”I”Õ>¶¯á6ȤF§ªÅÒ+€0ù\Lu ‘@!¤N¦ÔÇpóB±´P¦²/¸¦L ‰âŒ<ƒláI±㊯XöœðÇZÒ·2¾‘×D7'Ó0®DËUµ‘”Ûž@Œ´ù=ï´g¢%7JÔˆò è["ÓŠ#2…ʧ¹‚ÿ 72Q À­|×>H(&H ÂJzŒG: N?–¡|zîM+Õ•+ë:†Ó&þ !ª25a3kŒ@Q”9šœ±¤5cƺ€‘8%Ú5–-”)ò2Ëì9·ê0py™µÎ+„­±|ˆœÃ¼½={×ñú §j;«øÙç¨Õ:ØÕÕ ‘üêŶð-€Ø`€°·W w‘óú÷ss‘óÀ,r`a(§n®A‘hNSèxè¡h]$B@wQ8ÝI-„kâ„ø˜È´€¤³^À}Ä˦¹c9¼ó¶^yqoTÎFmÕÌ7ES5CC#…b8Ô,Þ¾él¤iRc@¢@™eŒœØÒ=}Ј‹$ùŽöjŸ(ºóX$ÅVq&ž¨P¹ƒXÕÄúfEÍ)29Ši®@1‚ŠhG?é²1«uC^[`«0B')ÒÃAØ"GÔ\¿äVi‡A²„!Šx5åTîXÞ¢Á‚q€4¨ÄÁÈ’i™VþêÈSµÞPg >YÓa2šcwh[#+1ÖºRW]¦C"#Lp~i4+ç5lÆL?™ '͉J³1­p6ô^c%uñèš/±Õw¬ß 8¢s/Ä/®Ó¯¤rÑ3Ý“9 5p?°åñ½ºj\гAÁÖq™FŒ5ÿr."º“Î…ÂâENa=rKæ½Wšt÷ób»2KÒ4 š‹rPÍHa-5²³CÓò@µ´È¾Ò1†Ìæ‘̯ÉS"!a^´\È V#…óƒYBSgS¤sv æVhAÖ!³hsáñk·¢ç9q€þxJ )ÏNši±‡N3ªl2õTRñ(tœïX™ :ÒÀ‡–¿oP«èQ3#Øhui'RÁÈ‹k­‡.ÂcQƒ†ð/ÚÄì:ñFÐÜfdp 7®Û@åfƒ|²*=¢²k9¸…h#'·1€ŽLõKÂT.¬‹ppf5“Ç5!îSȉ¬ÇŒ€‘€çœÁÍ5T Úõ4M;ÐcHjŠ_îÑ_• Vi+Æ9 u4âéà³T„±º¯Bñ¾.…¾ežƒ,D5%(ü­ÄÕ±>ž•sRcÑŠðü-u8m‰åô88¾v´à6E/rRORQñ³ebfa· Ë‚ˆÑ}]<²óÄ9nµÙáƒ@hÖ4ôû&Î5µÖ ,§À쑵Ùà=”SÞàA ìAòfˆ§)h„ oËCŒÂBéÆ 8þaàVŸ6¶Æײ‡ 0¢½ ZÒ…ùÓn‹Ìm‚ÎØDÌXO&¸¤ó)ÉNàÛ‚jìQ肾ÊÕm¢KâWcw=‚™"},OEW­–mtåøÊZÁzvJÌóBü³°f©ÖÆC›íÍö6ïM]…vKvŸ¤»†,îèâ&äñ¥¸‘Ô x(â÷^,j’e¤á¥A©h±TX={W“W½+nežÈWuóêÒ{Ÿ¤ë´ãžx’ ËmÔMË*@}›%À£ÚÙÆ5`¯ãù–‰‰‚­2kœ—¨%v8µ¾1äœâÝçR4hj‰:†jUC¡ÂÂ>PÍÛí¶s’°Êô"cæÍáã­V ÕòV&))Ôù&²¬IÒÉ­›,B‡ømÿÉÔ)cõo ÁÈr¦Ý›CV'?ÝoÆä£.vtÜ–*À(:ÆýÖ–3_´ûÚšÈüteCøpHÈ+oÝ™Ôé”"@,4ña x$K•ÎP[û•V9€Î‡VvXÀûV§äü/ÙÊB"ÛMa‹2’ì4S æ9õ‚.Q‚zU€'ZâØ¤ˆÏ…t¦^up +‘#úXÞÍÄÑ~÷ÌaÉ+SµK™&ÃjõŒPš°…¬ ìë*£ˆÖº8HµaW¡^1TÓTÏÑùĸ'ή3l^¢ZÆä: ›À¾Äšø#ì­¡Š¤Á3’ŒmÜÖ L>Ø”õ›ÁNÛ‡ˆ =›D:D Xx?!ÝúË2ÚP¸.Ó*áÆ¸Z¸¾lo‹$MŠÊ vQ!9›v²- ºr"jNãüMÐôü;:t¸c½,¯Å¹ÂS<ûX¿ÿ$¤Fn«A›Eq ‹bt5v,g#.z¯}€ÞçÝ“~ïàB œýÞÅ«£nïø`"ô“WGo÷{'¯›âåÛ¾89í‹£Þq¯CôO›€ÀÁr8§‡¢ßë4ÅñÁù«7PÚ}Ù;êõjŠîënï䢠ÏðÁñÁI¿Iöú'€@:üºâ¬{Þï½z{Ô=goÏÏN/h-~_nYYY¹@ÍB–K®.¸-hE.šßÍv§½‘g#Š’ …"ÚDt,ØY´5TÒÊ /«Øb;0Cr¸ºžã†«Y{N{j94Î3Ü“­jÓ¦”ßtRýãíW//qÛçòr­)„µ6\‹":ÆÚ+wg´:«4˜m†šTPÍÐ~ãbYBô…‡i+¯%X­3m •¯„u— 7lq -ÚSjñçXf:Ã͈60²mÞDƒæl̉üÖc0wž…Û3ÕÙõe½;Oƒé3oT^bcÍWý ÿ‘5Ä m‘/_\|ªqcùí&hT5YMîÁÁäq£)°Lø‡W ¿Ù‰ãׇM©±¯gYªåp9^aéSóFÍñ î®ØcÚ!![l)§ÒÜi˱Ù/QE’ªýУ4âùs±+Zâ,×Ã’vð6.è’Q£é{æÀgt@SÔ÷ÐUÃ{KÝr˜(¼fíìP€AÐÒ*T¬?½èá è_è¿—èÝ c_O¡š]8]NÅ¡%ú(¾ŸÓí(ä2OÑÁ2ï1P"U˜_ù[™§{ »óØP÷ÓÜ‹²R;yX7´`I`µ¨ÆïÊîÕ• ó™]w[x zÚýg£ñœjÿÞôÁ@uûÅ1h…SÃNÆÊì%ž$%¹ª± ´¶c^ì¡sשÈAÕÁ­;l°]oPéR7¸ÑµàÀ2lu‰×Üœvû¡Ñ法ªÆŽCÄ—öFÒ#À¹ñàƒž–eZ@Ý÷æù…] ñ} 4?õ±ÒüåÌ—€¨ßŠ0½ªàó@ýº´ÕßCÐÎé¥g3YH¯Ÿ—ú‡dziäHíÊÔØ²µÇ¶Çý¿Çµþ û?ÏîÆ;›Ïã¿oñy5–ÙµoCg|‹›8äi‹Õ2sWðÖ¢eGp«™1A2kÜ ¬­Îf§Õù—ÖÖ³å“÷àŠ·ðƒç(=NŒà ê=z#x‚A7áðºk¯GU§Œî ž)åÉâBÊÿ·øXA¬£n`ÝKà©[<\ær¼–Åuê=—¼P¿gÚ|ÈÃu®Š´ýß<þ‚3ÀÏ?ÿ{¶ýlëñüïµþP¾ñÖ÷Œó¿ÿ€ëÏå_}ý7·w:ëÿ‡][¾ñÕÖ»³õìqýÿðëÿÀk!÷ÿw·°¬îÿ#'<úÿßâsQ%…{”ö"¾sð€¸ý 38HÐHRI ÷Knk$œô„›ù# iS¤’ÂØ‹Æ†Ó•\º‹÷ùÎ|ÂÙÝJš„¢ðàvÉýSñÉbU:MžØÓ Ü&ˆ(CÉ%7Qöe}—Ìðú¶ð{&çÆo9,±Jß´˜Ù'2 îO„"!ü”%æ[MµáLê\0Ûò^¤…—:¸ ¾@ûRF8s¼úÍCòc™Y‚oÑÛÀ¯ž^MYÝ·ŠÓ®c=I>(Ky µ7¸¹Ír™º)á£IŽùx—½ÁtÛÔ¹Ûvœ“‡»9©œ:Œ1aF–ù°>çê~O鎒8Iºß¦<§çÏÜ(œ§I§˜å®ù¬Óe#øƒç6-z~ÀwõþÚÆuÜ“Êe‹î á/<ºhñÑütIëþU¢U•…‹½^¥òQ mé$XØÖ1×Ubö (êeþ‚¾åLä+*ªS¢º±É¹ÁT]‚¥Yá­ãaûà*4kd°o?`Þƒšb°Jõ Èb9¡¾wF'?Ù4BæD‹òÀh½jmv‰K GžÎ«³e>»vI ÂåiX9¡Í8O°&Ý᪓@ÔÐ!f!öa ¥jùPÚʽÍ`Ñ£@déy‚àÌdžÑ‹.˜4±®#È8ÚGì©ߩƳ»ˆYK ¹lÀ¡¡\iÀ×ÄíÅx…ýc”Ýáó®£è˜4@=¡š< —Ôe/šsŠ7I ߨ-²ŠbnõƒvN-íC,”\­«lR¦âz8wÉFt²É×êñ-ʱïdÜÅ«MÆgà’Ó´®S=0áX¸¼·2-çû†+"^IOm=bÑXo¸ó±!%ÐuI™¼Ž•¯ßpY‚Ÿð¾a&#ì`S<\>~j ?ü¡<÷ãSäÝ«î ÕD× Éõ2:]ç!ú“»DdS¥_]-é««ª¥LiD eÍöFIX$ x“š_]}b¾Ðk”¤d¢>Ƨ̲MŒÚ¾ê‘+;~§è!Ca#¦&SDäQûjQ¦?&#vPξ‹y(¦ðiÍ–¯%Ey»tÅ”F|(-Gt@[ñ9&ÿ>”¨˜¿˜ã‰Í-hÏž¦Ôt7—ù§*]:ºq•x%üÔ Ý¡Dc¯6ÐaP”„åáxAcóD¹ÆÃÍ´°úy"1[¦JS—·:BË©}}jN©z鈦¤âVÍ!H'þ%, ÛšŽ…¹macLd*9uÜC_ö[›*Þå|û6Mzý¢"Ö7õm+‚Èl” 4¾#ƒ ‚Ê‹^°vÑ>!æ¬Ç]V€‰2½Z ~‚°ÏŽx÷¨^Š \8 ž*€:‡²þBFõ²€i{hÔ+q7¿ÆDZ•œÔ ôu)Æ•¯ë¡E‡ ¹•̼+Á¨+á‹‚Ï pôÒñ®®š‘«¦fŸ¸ß9O®È?E0§˜ƒœFÿ|Ú šê»q‚Ï›çZ³Á˜†ä©y´ OS ÏçÄœn’\ÕcºÖqçÕc±%ùft©GIàÄÈÆfA,ÖZüDÑk[KÒlju£8õ6ÉíCw :¥”œHaöX $VOta“Y zÔÆùÃ6¦˜yžõ¢MvØ(Dü ÖŸ°'¾¨BtU:ù¾±Á›{hŒs¥ý;G¦ŒQÆF%ž­®±¢|ñâ…˜å «üNËe•ÇÙÏŸ¬‰{+ð¾¨û¾`’±Èeâz[Š6Ú·ÇÒªmõNÀm߯¾€ì´·}y@¾=ñý*§®Uý˜žaÕÁ<Ä÷\–¶ØCh—¶u@ŸiNïlQúꪛ°½rÖ«.v"†<Ó×Vó„·šI¦n ÛPÔMtÚ[éÊL°ÐÙ¾¶ÙÞŠ7ºÚ ^Ý–OÄÄ}ìÜhß3Oº˜»„'’ oËQ×5Kƒ-±…‘ÔÒýÖÒOu­ç´°{á„Ù)¾EÅê½-«[¢zÒ‹ëY†ïùaòœ¶80º«+â"“âò‰Ã‡mœ^•j° RG¬ýÿ^šêwð¦óßWÌÞfÉ2A»Gú>‡ûë=ÂY,ï6£È8?Þº»YeêÞô‚¯?Ò?4öu9'XŠ¥^Þ¨Eoø.wMçâ­çõͶÿ ZûÓì4ÿOY£—±êˆùƒ‚_zØð/ŒÐ;JÕ¸g…¤ôsÿb/m³YOƺüüª/‡8à=žýÔszrÖí¿qþ°S^¨üØz{Òû«»¿ô'zaôk]„Ÿ—‚S¬ÿøGŽŽÑßo`Êkâ;t8ÐÃx.~89=?îõ~>¸|÷¦×?¸8ë¾: PßýÓFirK'œìV{G´.¨îÇ—GÝ“;ê¼`×ͧ¿`%—6—õö¿ÙûóÆ6Ž+_ž¿ñ)zèä`à¦ÅfÂäÊ–s®,éj‰'#ë@ƒì@ÃÝ):×÷³¿u¶ªSÝÕXDJ–r& TW×zöó;-m¾ïÞ²ÄØü7ÑðD¾}½ô†¢¼†É™iKô A©Õæøq³ÆÇÝÅ»ûKKO½³dÑjº-ir¦‹êŒs[ŠdN¹.¯á¯ŽtðZ?üæM[ÓÿnrLX¦8z3Ó C,¼Iwp1lçm²ÓÉ)PÁÊuZÝbñ(;ðP €xÖ;ß(=ü(iª%ò¥bn %›Eƒ`(ŽÅ<¯U¶å‡ÁÈ®0ZAèiƒVÐ×bâWG{RN6mlÚd®úO=Bìj"x²íqè g!2ò~¢^¹/,=ô#á£îÐÈ9öÂt¢9öü'þ·Gÿà±å}Ý=8zÓÞáy¾®| ãÈ)»FBíίžôž€ &‰ + ©´‹R©zðMå‚)(#%Û(Ñž ¢»éÊ—Ê,¡±kÝE©÷úH™I‘ºH.‚OÇ#°÷¸‘Ág†ë ÕÂM!ϲñ@Ô60‹¤Â>!/8ø|m -0–¾²ÆR¶€~ÊwÆ Ø±Bô#vTñ¼›N kîRÞÎòäÅÿyŒ‡óŒ$÷N½Þ›‰j¨ð:³£¸ŸÙh×e»ÑùoÍ`š@PnZLÕ@pE6ÿf¡ŒÆ€+Ðz__5ÇÆµf¬ÉÁQY»TÉdž›èd*PxÂPw`7 MöPÊž(líwÙ%8ß:†ÛY+Þ9ᵪÐc: „W$–(sé¦\x–A«¡¼[‹IÛâbòe”÷pµ¬‘d`H¥YÔ·3 Õ‚Êov*©ý¶‰‡³aÒæ˜hT$€¿šå Ú_˜@pÂþz¶Y uu2–7 —ù„šâ°ƒŸÃ¶ë°«Œ Êsąϳv‚ÙdWÔ] “Ëü÷÷²ëi¡Ñ!ÓÅ}½Äwž§#sRÃó,5² ¹bðoS¼Py41ü1±“7üa¨kˆyÚ8†Äg³ 5]ÉY7o@[Ó0[ù6C@á_„(´¼¤(ÙÉ*±fílÐ`c°HÌÙW;BßM’©ø ˳3ájDüò|”®ëpSÑF]"'‚PéðÑ õSøGƒad¡Ÿeam´á9òXÀlÍ"cúJ´Ì´r¤:LuJ˜àmÒâá4Z“2°tq¯6æYQ¿Žá"F(à”ÏbL@ä[ãˆ* íᜱ|¼U¼ÑP—ðñÎNFbX7¸YèrfxŠ¿¢Ökð'Ü-sgË877_*!û7wÚ8=­ÔOOšŽ\n’ØZ7NßÁ£!^Ó4ëϯàA8ªN„•«®e²aœeÎ{­;ð±Í„ì£èÀc} ?&g+aåªOBl ‹ãˆ‡Ùòe°ãf³ù£Óò<>q³yí¥)‚ÜÛdP?ó¿ŸÍ‚Æ?ÇÓ¦}ÐôÛ.‹Q•aaƒ]w¬Xµë;œOÌN’RÀ¦ÄhæœqÅðÒÙ¢"ç²ÈÍZqØËÝþ˜¿:÷ SóÎ)}»z0Oö€ŽœÕc™ùûÄp#æ8ak"ñ@GÊE^ÿCs[Á¨ rå 7­ü?züøäÙ‹“¬MÔk VŸæ¦£õÅM© öÁÐ6àÃ.7»ûß›>èí_PÍ!Þ ÞMòz:4†Eœ4ú·¤™&o©ˆP‘[*ð  µgM‡maEŒeÑð‚Ãü–x~µD€‰ó@–“17”J'!X°è,—qe”,ë:ÓSKŠž!Œ»ÅuAmÓìS2· á´^dÒ‰¡"ð};@# £sÛš$èNï•+€Î%ArõZŠ‹M„˜xë4ðÉ+²ý‘.åAp1@=M¥H—¦QIµÈ)$ó$?ç8ô‘ý¬V#ÅK—¿pï HIßF ÒI”­ŒŠ´„Ò´VÌtR«°ölú"súí×ÜÆš÷“öE8é—™_GAÂw`ÕQµj* ÝËøá5mWfÕ±ë,A7N¯oTú·aëν=vð…¢/`пM’¹Œ†3HЬ[„ãÆS3íÇ(…pžQ²ž¹J!ä6'ZîxÃÇ÷°º;=ÈÄÜWôž%†7øzÆ/³† YÖ-‹Š–l¸³Ïw̽Ä+¡â"#­õCÂÈ+©¸™ 2 AÆK:àªÁÀ kï³ ²%!¤wk[X`A…Žv¢"“Ê9EF†>*O2û Ä%¡D6BÙ0“Q†#¡ˆ(:M²‘ŠSâÖ+â×ã’ÄsÈëÞgöe6LÊõ8GT]‹VUás*!w¯ß«‹Ùvu zP6.Ð4x«:S'¹‰<†ññZÄñpëÓ¹×@Ë:,7´xÔw¥„6“ó\ð®íB ¸PÂqä½;$³ñ5UËc„.>6B^kS¡ê©–é©ÊýyÑØ¿¿Nãún/‘aCT2*` =<“xhc}\‚äV¦fb'¾„à×uÔ"-J$´ãQ4b#Ü …žƒ¨-L«#cCâ %+nuÂå¡|j–¹Õ”õlßžüÍOþfñè[Þ‘qEè>/ vø.`³… aÝj.u÷tœZÔ2L |EiQÌ`Ìmoå†á¤âUg«îåy–•¦¯{²AIhNEõœ”›é)Ü`—‚å«–šØ{«€q¬mˆX2Ž9Ï“/¥@ó=;AèEø§º[$^¢…ÒLªØ‡i¢aÁhI$‚``™øÝrí[®}£\»ÊmåÌ!›:ú±©ÍÉþïøPܲ©_ƒM=O¦ ”["Nty /°µ&PRIJÖlƽ:Qb®\ä…&ê\DéFÇÏü Ó [Ÿ#“ük› ¨8B’wPo©ÿ07s 6fJ¡=  çF#oXÿ¤ 6 ùa;Œ1—@•tˆ!¿(òR¾f3[Õ©ªCÊÙšÀNôÌŠ»µv·~J¶ürä…àðü­éoÔ–Õ!…€€]Ь±£‡BiKÖõr,ìgÄb³KS²òwA¿•áw+1úØøû­õØ_‘âžkGæÜÕñ|u ŠìàM3œÕŠêÃr9ñN<)¬¾œ¾û/á‡ædCd-ÅÞÁ@÷âÐd€2š‘~ú¾EMJþ=Cæ#’Š€Ý–ßayÊp,6N™"ÀÆ™Y C<.¥¦q5'0œ]Œ¶Ø¶5ãcäo£œdJ~ñâQÞg¨;(‚1`Æ|”œµÈW!>DêÚf¡7àæå{¨жö8›#Å…Íÿæpd²l4Iš!Êç«ÛËk„õì§ÞølV…è­MÙzIÈ% bº *—”nôE—F,~.=gЧ/JW¢3¹\õ%hiÑhÉ®`¸^èÖòê“ötà|Iúíë3ÐëD~\'[ÑXÑ¡ùB+jNïH‚ÿ®’P>Ä2¼+éÔñ’† ìUO a$Fu$1Ø–¡4‚8p[4î@B µBËì†ùP´9£H#¸ãß–ª˜ß™Ö74‡„H—®/á‘AÀ‰àhØ’½ CcðŠF©Òq A@‹žBòÌÝ·©Ùµ©Ùa$ŸЙÝù.U¨qøØÎLÉÕtíSKýþ@'u×Ôë¬FÔT´¡¦Éõqª{ìà@üŸÄÅBaà§==hÌe è¨þBÛÅ»Òg"P•Tÿ!ºdŽÒãM‰ ÈQî1õ¥{’«Íqfó¿mÖ¼—Üú~BÉÁµ¤’ƒub õxç@Ä;U% ÁTEp-RTü”´®‚ÿ+Ok î©ÿqÿðþýþïÝý½[üßßMýׯºPÚæ¶ìmØš"°LŸ-6 òxòK?tÊ~5袱.C¢C1D$gzŒ ־ދ¤Ñh`ÁÍþh¹ÏÛìø‡Š±ý>¢ý~ 2F;.s•qÞ˜+„t5Ù¼Ñ [yž`'x›\u8”V•ÕyÍí_ÛNÞ¼éqbZ´ÚG•:€‚û[$ ðm¹n]õÒb9OòÖ×K óh÷ì´ê&äžðEî¼Ï¢€‘?‹¦ØV I{Ën{ô…k»©6–Ù(Íè5ix.¤ :^}^&µ_ÿ ͹ók;\VZùãÐz=7׸¢›ð@…eíÃTÛ.­6?$«½Xá¢Ãï)š·Úx~Pº3'‡0;‹ù$5ïûqÖl«IbwR!Ò mR3ÿi™äWýA–MJ3Ú0Kóå5;.Í»æÑ¨‰öÏêÁVß/{]Ö°ê«Ùlt¡çôИ,(ô¸ÖµéÝÁOרð*6V\÷&´mÒ#m7<ί8RE‚ìtØ}\v@}2"²¹­vù5ÒHÐÚåks½~£ (KrG)®¡U-KäÌ<7} ñR+žð°ÃèÅsȈØèA÷‘×Vm`— ¨Äò©}æTþ´ï4¿Os.‹N¤h¹¸¢¤bîzzç·SšÊ±}÷¾ÔñзWóÕ²”»ôráK÷W·C}÷t€ª×œò(Ë÷ý¸†øÏ T¾ž`ßÿÐ@ÑV®ônÝ–%x6Ô¯IzÛÏU«7_߭޽ReÔ¹¾½HŸÄEÂ=:¦â—‹awÝ%“ëàŒ^íÛû¶â¾Ñºö-d³?Mûqh†üèªe Ú†©¯oýmýÇëØDZYcZWÿuïþŠýçÎÁ­ýçcüžVÙrù×ד ÉT2ëíåùw¿ÿ˜h³Îú»îþÞ½»P©ÿv÷öþÿnì¿÷nM¿·¦ßÐiq–]Ë<~n–wÒA å€]ÉMíÉ|¯³3ñ¨iHòÝÒ/ðYG"OÙX •¸­ð¿<™! Cú3vð`0¦@òbµR@êDT ܲkÇXÅkQßΧOg±oi¥²:ÕLG)UƤ"å üE€9 ÝQ×úÅ&ˆþ1 J-ôh9#VØCô.©YÃ%We•É8Y]Y3s•"½ªlCœoи˜‚ô«¡ëÐkS½¥^Üäþ%³8²öÑ_vÍ’îšõ\ß–s3zò1Ó?8êàŸ8 ´}5£&y ×ÂúéKx›z=Yï¨2%X_¬ºÑ÷¹ø¶RRY` IKXЈHP° ¡ç½ÐæßÚµú˜É%ŒÉ¸[÷[eÚ:qƒZ@ïuL>aƒ(åcY([-¬ ¡#µRá$†ß,X Ž’/ñ¡¶D`Ž OMºUw>uçú4Õ‹ÑâÇOŸâæ¿­Fõáá™å¬í•´såqøýçS>@s¡_Käõ *2Ï ùɳžD_?a}— ´Ú)ò®$ú-¤6×'J°bƒÚ"ŒN ÜÁ¿‰>¹Y.{i}ËDºN'ý­«Ÿl©AHÆÚ¸pÁ' Q®T@>‚V,ðà0BÜgÍöŸ6§××"ÓŸÉyƒËFP²…%½è¶©h³óÈŽý ˆH)FÛ…ÇE¢¾3› n†–ü ø×þ'ñ?è÷¡d¿ßV=5}ÁÇÛ6âÕìˉ}í‡ËÑ,#µ`0½X˜ô×o`! Äf1Å2t ¡ã1ÐÛ'_IÍ¥³Ð9L¾0Pp†ècˆï_¾/¸8¥²…¹_†kÁ%8 v“Ÿ±èä~ý!eòÈâãÍ”*ñô‡W˜/{°ùX)¬‘šFéÆMUÔÐi h‹Ð5)Áó‹CLUšóÞc+žÁUCÁ#5ƒæÁš¿Q•HÕêH5î(&`.‹œ7æ»Ë8A9…©Y¾Ô–î2tâ‹.2r[¹ÊR 9ÄeÌSAšÃ’»~u0-Á#!Dz˜ûŽÓ wpõñƒÙ<›MJ´6JuÈÌâ' .õ|iäxi:°ÝbN³ålÔƒ¬ÿt˜ÀðÙî ðRŽÏ¸ 8(8|Å"EHó¸lhÃz8ùÍ*¸³RÞ뺈¯›©Šík"ÄÞ<°ço sÕ]úˆ8®R Î¥»(°(ï½\m‹òBU±H^ãÌ<S¥S)9aì2:q¥‚ÃÉ k³KoPÃÞÊ$7ç¿%hÉ–gç:ŒŒY”'ÿ‡k3IócÂÞ‚»Æ›<饩ÿe¥X=:„dÃ%\ü…Ù*ò`:¦ nîÑÇ:çæÈjMáƒÛYV>”~òÞÔnÕ¾—·\B\ôq8sj< r¸oyÿOf†T &*áɑüy$Sô΀ˆ±(ëdÆ>ÐÍ (\–~7¬n…ͨȓBæŠè)†‚Àö.Þk%â` ’J0 «˜vºï0ÅÛ‰,ª‘ÈNúV‹ [ÝrPvªÀ"Xi¯¬d…1] VEŽƒœQ]¤ j7™¡\&Í €#1¼ÅVÞé!þùª¡bÖ¨òÔþ‘(µrIó¤ ‚¾Îü¯L(¦‹a–ƒ”?BAyAfggF+èfÎCmÜŠl¿®êÉdkâ£Ï?>L=«õÎ ÎÂJÈ`xRñš€‹nÈdbAðh_bÉv:Õ 9ÕIîêkÕ¸=b›1Ÿ=®ÿ ±{6·‘Ë`ÎLÁÙËÊ’ÑfEÔ lá¯;R‘í±™Ù?S½”†ØG.mB­•+)¨ˆ‘ î­áÉPÍÖ‹¢a±šÏÛìs*~ÝY³½;„xqé ˆïÜðìUef‹2Øåì*bû;“]WŒªáŠQUŒ 0 U à}—ÔñL £ÑH#RùRÊËYÈ(¡¯æ-hÊRNuG4-é¿píƒÍAÚ“¶#³K“lÞ*¹~:ѶWî¶íÃÍá…ܯœŒ•ßú˜ŸØlà×~±²Ì³À? aÞKóŸØÂ%*³A½÷0~k„púÚ·Sü}oñnQ²ããa(qþ0»œ‡f#¼äF~?†µ ß&ù±—žÐ{þè‰û«õºz36DC¡@ —o4RÀosP¿GÍ~ ôûMº†V€O[l}³vÜt‚Dûýåoˆû°9þÃ^)ÿûðÎ[üÏòc¶yI¿ßjÎßžõó¤È–¹aÍvo” 'F¥ÂËQE)iÉEißb?ü[â?lyñßûþ˜æ·÷ÿöþßþ|ôû?Ȳ%ÍwoêtÅWÜÿ={ÿïß¹oîÿþݽƒ{ÿݽ½ÿ¿êþÛß¶#÷[ÒÿƒÃ»%üŸýûwnñ~oø?ßB¼Ó-üÏ-üB~ÿZHLÛpæ.„S$R£ÑxAáxŒ[Á…sÀ¤JKAÌ3$t]wµ‡1$üÙÕ`ílè4=É*é‹Bp9§†Tyé%ÎD—@ÔÉ"Égmà•h‹ VC¿Ê‘B8ÃÿtÍà·w‹K³ h™O&é@þ=è(¡™Akš{¥zÏࣘš2‰ã,Ÿ¢Aã2°5ü?-³Eb®¦S!@ýð¨„ø‰–’æÎ‹pˆ£ÏØžc𮑠/gÑ$žfEº¸‚¼ðK2kÚ^ ç ô9l¸¯pDŒ»È[éE’ÔûÖûçqÑäÙÛdÖÅÅyÿÃ!-Ò G\¸–­!,”CaÖq1Jr¨.å´÷ÌÐ ÆŽ]¶g6»/†¶~Û"¿:úqÖä¿TVØ7¸ç´ú®AòNYt‚m(–ÊšœÈûê X‹P›=ó!ƒÛÒLŽõøOž=’™•?oƒ1mºœAAˆ?¨.Ûq„(êXèŽMQìdŸaüj>"«4D'bìk60üRœžc£åô"V d§Âj¦¸¶ËŽ%~=ÿ$‹G›.õ€qt‰Zy:|{Õõgó—È cO,ÇÆôî5‰2Ã¥’`"rìâÆHzÈÜúÌe-wÍy™Äg¶òrd´7MÀQq‰îmØâå ‰(ŽÐ M‚ÔÎ8x+÷Ùü·ŽM][êgv‡Ü¦à´GøÊ Q‚ŵ¹ßf1’…Í>¡{ ½›~à´ïµª§uÔÂó8ŒE¬äÅM'tÀe«77ý©5_!c¶Â£Yl=õ9¤üÚGX¬£]”öÙ¯ÊaÎÉ[hÐÒ~ ÈÎòlˆçpÎ sªâÅ"o]tÀ /ë÷M€I“&C­.zòeûøxßû:®‹d¸G_ï½é4•1§iî¼£ÒŸÙW7ÀˆçÉ4ƒz‰ WÒC/Å<›·Þ’ýJüfJ=¼°VóŸñE Ös·P}Zȧ=_,æG»»ó$~Û[@$Q´Åж]8c»ÉÏ}|&ÑPžŠj'8”®kÒËò³]ý„톈¢XŒjŒp.”EÖ7º%xæß¾éˆk­t($2w§?öù­R“Ãhøk³î'€”„2MÌÅ™¤o!èÕóÇ=‰JÁ’&jÓÕ `Ï­Š;„Ä<°“0èF(xª.û.ygdà(?-ª#ÓnwÚz"ÏR $²dÐN}›$so*HéÏ2,‚|‘Ppò,Y€Úk@¤$i‚P§¥ànÁ1þ·ÍMzñh$Ñå;Ý‹N´Óírzžùcþ¼ûw£>Èð<™Ìw(0´£c*aUrþvÂoћ٠¿Œ*9ïf ±É—‰¤yu_?nËÚ| ™ÁÞh̯̘Ú#£¦œãšš•a‰o¯fÜÞ›—Ê!€!íð°]_ÚF#O—‰)\$#ŽïuèjžÀä|ìgÔÚy!jHÌâÙpÀ¼Ü8&RÈ¢Ú½ÝášÀ°·nA:‚=R ‡Þ›Ó¼Ã¡Ÿ*+û"ÚùÐJéÞmw¿bT7GU>÷ÅŽÙ¹š­ó®âª½“†}jø±7Ï-Ø8 ÜþË£¯Pž$Åcí6zvë½ò§³xòy]:8eÍ/U³ ¬¡úîÆ™:‚3ef‰Ùô–º E·³Ùì¼i!¹]§&ÛµrPÅšŽ]v<™CJTZû"®?_C³» Šuü·D‰¬jý°SÏÝÜ•³ê$[‡•¥O›çê§í !«ààÐÖ6ÈŠ6Ïÿ 7FùÅÁ,Awˆàœ¹;B{È|Yà‚‚ vûgÑp õØHoãå ¢AÂ5Ö»Q‹ † X³#§ùq÷u³;lvBϼiè΀øÐ“òo(ŠÇX!ÿëçÍŠ8©Zu#&M¨:¿Ã¢¨Wké&â&¡ùÎQ¨àëä¸Ê 2Í£Ní v%érK/…²lJÏÑJZy Í(þ£rAc£Fžò¬ú 7|£?=À+o(Á‹lš,RÈnô„å¶€ævš•ï5T…11?xò£#5UñÀ85¤FY8£'íÄÏ}ÄR:›vÏüë ¯uÛÓà—Q«ít±ÁÂÊA®Ü³éô_¿4¤¦•}•¹EÉÏ +‹õùÊ"@‘WÌQ=–3Û±‚Fß0Òøêx¯]>žX¤j8Ú®_7½&T4ôð¦']w=Ëúc£òb§/%*ùùuVæ¥7­Ï?wÏÙI”lNAó$×ö2£l©ï^—å ÜÚCÉV#°_àjÅ“Ëøªøk[ªê)<‘ˆkMÂL æøwƒÆÂ^CJã"1OÉÑ3£à—lEñ†¤«Yöð4&¥²»õÍ?Á#W-Êm §X•'¾ Õ…›"õ•?¨i“l•N»bo“çÑâÿ'üoK‡O7»ÓŸž¼•»–óÛ&Ú4KÓ|Íà{„aÖÚ'ƒ±™ä ö% >|V¹W×’ºóŸ´ÀnT’ÍÒ±.Gw]r¢y­é²ÜŒŽ‹þ56÷›æç򵧿<$tièàçÉOK#ƒ½ 0Šp)flªîQ ¢ÖŽFåy1%_=4Q5ÿùç®5 ­J/ívOôÖ†YR¡V%ÌA:dLzöàåwÇáј+MP£î5XU;ÏŸÀ2Ë—Ì­ o ®øYô-Z ZñáÖc­#ÝÂ`P¶o)#¹[O*F:$º>vÓ—|Ø&‰Øh­£_›®D'5å7’ñn$*ŽF´&'Râ5òé†Y#èdñúhÿ Z=?'+=}*ÄH0P«› ßZ(õ¡¥ò‚ÅW·½gô× üÑRÜ#·ç„7ú:|@ÞXþP¾ö½HÝ·-u#; –bz­\•êQׇ\ÞJoÈ`š„íªT‹˜l }xåPá“ m¼•ƒËëŽ=¿6]öØRŠ‹oü€Æ,:öü½.ouéôà“ý4-ihrmxHÑ_è‹£ ¾!„¦oj[ÈP/*-’‰y1ÏæxÝ‹DÚ„öž ¾ôÃæ…¹…-?óÆQhñº»ÿ&@:Žäpht|Ì8ùú6ªbS¡–ëß7›Um7ËÙÏéüš}8ðÍkv$¶ŽêQž®Ù—çìÞD_Äį¹_h¶»î%ƒåÙäŸ_¯Éb¿ækôšs>å:ü·G/Ößp>Q[ÞiC›P`îcœ ØD ôüõÐðÃl"°Å›†u‡êP·vaÉîHÆÆkE‰ß4pukØ öT=„/±NƒàïC£clÉ1}-c…¡R _“w,9T–FÍGÒÎ¥ÓèÛådaãqè«~2|pÓàŸéôa©^ṉ"ÌÐâÅ%cxx<‹Ïü”PP-•IŠÿºBÜËp3’%à )9‚Ÿ›\]fù¿òn³Ì'Ç.$qžö ‚áï]m©cìs cdJKßjöÌù{­9Í›6‡ˆ+ô´×|f½z^+vÙý«Ù<ŠðœÿÒ±{…!Ÿýrwü¼ ,±V”,¨Òˆ°îíËÌ$Ø…A JÇUÿÉ  JD!o±þð ›Ñ¨"ÍM}0ü¥_ÄãD‡ 'qQ¤ã4{êß<™µ5œôÁr”&³aEi×L[goo²ìß?}q=˜ƒ¨i4DLõàËln>7Í^ˆØúP óù׈ýR­ÚF=NF'´{óÇî}ON× ïÕ:}´ªÿ-²Q§ê£éwPÿ;Ø¿wgÿîÁ½»¨ÿíÝêå§Ñ5zŠÏ¢™d,ˆ5ãu£ašPåus º>´-½ÀX|Ô$1j &¬ØÎPa‹g®6Bå¥S² ÞÓÆW>†X`”ô É,à®j!ihõ¥‹µÌ•©|fÉ%GÒ´á)ó¹ÏѹQ6183a/¿É¦Ól&74z‰IºjLÿ4ZZæÐÂ;~þ‚TFˆòH4x¼D‚”è|ÂåáÍýý+^ѧ¹h›ò9t`¸Ú ÁÅyŽØðéÌ,dº@RÕÊ”SH½ê_iD`r]ÆWX§#O’ŸÄ5yÍ–`„ÙòÜ¡Cµ¶ˆP§ß#69B'`Í3#žÑ» (™ù }"ÒÙ8£4’!& ‚•G1L¨’Z§«z€‹ì–Ó‰ˆ'"R£‘ ²©Q†Xòcœ,†ç´”#ÏìÁ*Pê7E|Fn}#'ãµsíáÅ”¨"+~x óû¼ÿa«ä‡Äÿ8Ø+á?íß»»w÷öþŒŸ^µ!`ì:2ÝœˆÆçë~¨ˆšiˆ‚Üž‚ÐnDK…¢Ùr:0™i249UÖxfD÷I2-ÇüƒÕÑ–Å2žt¢9ÆVoöÓÔ}`þ:Ã_ü?§.åøÅÉßSÎĺ†¿ÙÑî®mÔ-Ò³ÿål/9í÷D2¢TA©m ìXÏæq¼œ ÏçF5ùÚH´/óp@ƒNaºŸÈ×½Y²Ð¦œÝ/ Wx‹²° Î#å!ï † ñû¨ð`¡<ˆ9ë yU'0]²4ßÈ!KÝz¾²Éˆª•Š·:\Ei9Ä(øXDØ#fåg ›ï4ÊÉ …®ŽusÙFeÈ~m-` 2jBVì‚•Ð›Û Í¬“bw¿w§>(êq!q[fw$YTóqÂKgïNïÄ pÌh¯QýŸþr~–Çù ˆãc#¬OŒŠ+ªJ°jшµ( ¹~Ÿ;Ì¢šÿ–26 9æ]^ņàitФËÇ@íÊ\€¥-Hí¹a§Ú^E¹”1€ÌFq®lÉK,vl¥'á@z æPŽ5Xã«òøµô9Òî£FkCƒägÎýb£Û‹.ëåpÝîÔ´¶Ùð8È—Kz¤ÆÞöÐyôs0P>ÇlE:`óÆfË\WÓ)–HWïï =;CkǨØ5à³"…„#ÊÜåÁúÕÜøìšk(Õð²b±i¸_Ù´cÐIHOÎ1¾ÑØïE¯?Fí݈VéÂAHÉÅlÃ+“·5w –þ€^lWCR‹¸x$c$ȵÁ™83œ}™€ñÝPÜóôÌìdpÞ+%ZaÆ0–ÍxzZ ߢ*É¢©V<§§0ɆNL¿iÎD¢À|®xf^§óVW½GºÅ˜R@”AZþœ×á%¬Ã ÚùòÑ<íÛ{†•ž_µBs¥À £¿¦xHí†Æ|!s4OÁFݤ†ÓWàVƒk!c1ó® W 6û=$ÞG!ŠX¡"“Èú˜Ç:¬ÍφÊÛBË &, ÉõÀFÀAxS‘MµWl…YQ' ¸™Ý„éžžB [×+¯®š”ê×âJ$“tš"œðYù!­H¹l‡ O¦ˆ:d‘ÿ>BXJ±Ú,¡bt û|N¦” Ø]†œgIGà§ÓÓ5µLÔLRЬàº-Ý ø^ 24˜ØÊc®@I©ä’+é<ÑÏ1…ÌCÈ0 ßâ2—'BF±l:™Ùà ¬xåÏVé®÷ö|f€ª§3²3ièvÿ Ð?僰õÉÍä“ÂËd³ñJ¸š'f¢5 h;„WšÉÇg˜›IkŒ¿ë4Æf›Î'W]—¶ÄÏË d“ÉŒU®U ¯Ák˨EpTTüQâác. fÞˆ .U'‹GL$W‡D\I,7Üm„7=E»™»wp~Œœ•-a•|–Â` ƒS$Ic%ï­`ñ~F÷x­7Ù.€˜y¿!d Ì]æSvT-Ÿepk¸¾³iØÉ,Å@]íñd0:i- ã”X2šs‘¹p‘#ÁM!€ (© Ók|oF–QQ!*g̶\Xp\|,äÔ™}Ö°ë †%ZP{`¸6/'Ü‘öQÉçMxÀJñĉ)¾L(W¦Ð¬ ´n±¸šXzêf&&ˆ[…%†BÂdANé(ãÓW->mÔÅ•+ ”.è–-Ì™Ž±žv‘Ñ>XÁ W yÃê7”ån퉫¤¼X„=K#Þ„f9Ê,ð&E0)œtõ#Ç3Çd`Zy®Ý ufWÃÖhR©ÜºòÏ­á̢̌xÛÛiÌ'K ëc#Éá½2à ¤åúOX_¢a±h ±Z¼bÏPø‘]E\ ’´cÃz\¹5=–úÛʬM©ìž˜ßYª±ÅØ5¹Ñ°8ÈsewGvS]½Q3çã)ž+F–íˆÁÍB9ý@•ÛCyAMcŸE{ð…Y@ì³P«%ÝT-H¸3Â"-[C”›‚}„(±u %šn$€5V `%éK& K¨ºF´3Ö¢„2u‹É˜tjÞ ­,øéï/Ód#ߦöl [*ì¨Ë|·+ (ùR†(žƒžáª£; |aNI‡ƒÝþë»b‡‚Œ¥n{¦h¡àZ õ$f5Ìø–—4ž Q2ÃÎô È\Ö”WÝé°VqzúÙþá_6Vi˜ûÎ AøÅœxÓ/´²µy’¤Ì¬~¨í¯–^ªòúD-¸rôY?㢆xÙÌ›ðÒ„/U»CÂs€>aƬD¹À²Ìz!a#êò)ÛÄ,ÕñFgBJ0NHáµ} 5Xji­¦â±ÐGô/7ÝófÊæ[äJ¯âLZI Úñ"^`ÑØEÚ0JCZ|1RÅ[Œº$g¦\_¡à…­½7Kçó„ËòÒ3RuÝ´*–RèzÁ%pçSV¸ û×ÁlDV;4º^Ré÷³sd$F”’!lÜÁgrëqEkï»$ _¢î üþÿb˜:ï˜øÒ/^îÓUaóg0z™3|÷:¦Î.·;ïÿûWÿ/^*76¶PK7ެŒôuzè†JèK0k9E†ŸeNI"H¸61 4ÝcÝµÖ FNÏfÌ÷Y‡X\fÁƒÌ»£tÁ3ŸGöîú´ ¾âìð/X–6±³Ò´,c&Äg/NÌHyÚ¢Çh@m+UñÇJ<þBþ%'ç?ì°MiöñÈ ÞšS̈.– O‡¸Ô‘üÎP#éâ‹§ØF$ûH@ÀŒ;+À·6Z±=Òëyÿûid#Ï~ÛníÄh$¦P<¤+”gQEP¨ñ¬ÃoY­z_DŸs˜À½·>@´q6ÓGÚZÿ¤}‹ØŸ›‘^¤ùÂè= Ëi±’lÅîËh¥­ÈµkÛá5ºÝYVò_ˆýžë| †**¨P€Þ¬ŠèÈAKÞfl<.[ÒÙô 'ÁÚ<dóDbí°¤:8ô”u¯ ·dÚCÆ·Õ©ÍsgyÂ6¶}¢¥tŒåRà%&‡âbaU¦³)œÞCc‚£¡–äx7Ú,­MVaç&–-‹ +p„ˆåqœ“³$à<9ËÄú ¾v(„ÚÊ»¨0."¡>Á<ãÑ…9´sæ¥ß ´ÈfÿdqœzuS‘ÑS„®ð’†3™-2R: ÑD!Í–h1x5ClîÓSµ6Õtîkðg 6@éP}¥´˜,#˜ä‰Qd}¨{Rz=#ý@ûyˆ —J¾H í\aØ*¶µ¬[7 Ò6 @ ‘mAÎQc•õ€sÁtÄ”#Ó—“1F€0eÄÇd°MßÜóBKÐzNñÞs|@¼/y7Ǥ4…Oë8B3;^`[cÅÎ Í×t2ž˜ÛÄm§I<#¥¶c‰dùO{'Ð^–³ådÑ]daA ‹Gmòn:ÕC§Ã'O¦:oH³lœ›\ÌŠCÀ ú"KN|þÁÌù ÜUò{¢I1ÔÞ¼NÎúÛ  üÐ‚Š¥ò6óS‹ÿT‰ª%þûþ½ƒ}…ÿqˆø÷oã??ÆÏ7d?û.-ئÙ‰G"jìíïuáÿ÷Û¯k½F‹1Õ³¹Ì'MÌ~ò©¯g5(²Éò…´cN"Äa)ÑC#ý÷Ïž>ùàÉË#t! ’ج+4ò\¡N 5‚FW¢S;hN Á4F’6»Az&æv"®äí÷(mÉЩ ë’÷cSÊ@Θò¬œíhÑK9$á/¥øV²ôV+Þ¤œZ\ “èˆ×”bä.ÐÔbØ$ ªC Q…NF/ФÁb«cTT§ï´^\{–gÀÛ`ÙJË¢Z ö]æ.ÉBÄo^†¬G£dy‚TfŠ3¡¬z»&µƒ"l®T×è?}~ò·“'÷Ý÷˜„Hj <Ì"°JPêD cÝÐ ‹hŽB“@žžÞˆ[ºòeŒh ²š‘˜¦ss$ , Þ¡Kºpû|áö¾ì|¾pO”ËùóµXWDðl¬ç>[³6 ”6"R Í•ìÍŒóµxÁ(& Û[“>%úI·ˆ£’)€ƒÈUhQÓÈÏ@Q²pøñÄtéÄtM8 Ä͉ ²ÞÊ'ú¾ëýCdItÛfÖ÷kîÆ\6 ܆èìž½ í>t÷«½è„áˆ7ðQÉ—„•i#qѕī¢;r-P°ÃFrœã<±Ð ¥02‰Iµ€o1°¥ÁHîˆnxDtèŽ zµ¥Ôî“ìhíÞ"±?Q–]J¼´ë †¸‹ÜAdž;—¨ž6X ±•e@I7$tuñ*çÖ24¥KQh†Då‹6%BŒ*òG*öVû*ϳyòðZĪwx÷Lau/¢ÄR ½ñxKâ1HðÓ˜ §‘f-aÝ‘¶>yúòÑ‘¯Çˆš“]ΜÒ&Ad½¦e@VeN¾×Ü’4Ë{ž_Òʼn é`ûŠ(Ûçk, ­OžœŠ!óæ{³pb˪;í­¬JÏl"ø¨!#ZâÒi)6À)§§tFºÔï2‡‡^[´ëZ•aVkjЏiÈ:_.Æ"Ž'öÜ´ÉÉ=UÕž] ŒsÉÒ<¨-ß¼]°|‰0‰ª W,>ƒº°ÄÊÖ€Ã׳M8^ àäÈy›pHcWeÃes\L½üÀ^…ˆG(òQÈAZØsئÈà(Ž¹Ú¨)1ͼ—B¨o¡Š‘U÷îÔ°N Œ6œ®ºœ8r8`O@ÅšTÔõ¾•Q><_RiIÐmÇhÍAFgÓöË[åÁ7¤Ë F tü[MÇ`Tª #(²áÛÄÐÄtêB©))={3|‰yÑH1˜ÐZÃ+FH„‡)1:9Ÿ¢>OŸBc®žµÎ2s§ã¶64H·LëÏX‹!CU/Ê”)îñÕ6úÀãÿJi“Ö~ @\°_è˜El3«('YÃi™Cè,¡l¼o¶‚=º~Ú‚„”” H•qPæ1¨6*´&Zо#|Çë^ ÜYƒ+™•2HÁ9Ê-Ë@¹NòžŽ Kh‹üú®§-¡ñÁÀC¾YX¶  ú¡²€ß¸Àœ«ˆØ¯µd³à‰ö&¨ÄŠöv‹†|¥n 8/H™ñŒ%ßáÁwxJ6zÙ³Xúzx|áú˜S` ž%oȾ,¡Œm”µ¬`ô‘ø]¬MXœv¡†®°O"Buu´Î8ûŽb-A2{ÆÅ–1Û¢5"1Ù’WÀÚa¹G_@%àkçUb|XNh ‡»ñ[¸oÏ^=XH:’ ©äÕë_™Õ…×ý ÷‚œ"ôæa’º¸eI΂oí9úª¯^çýhD‡¬ŸåP¦ò¹¥à`IÄ@Ûe>>*Åáµb¼ÄÕ¢åîµ-—s5®2Sgp0¸0k†öÐf (9n¤¶¸(…øFÚËU{÷ù0/Q³«0´âL?KÑi¸ŸGÀçd.0H ¶>Г`ÓRP \ÍWœª÷-aÅYžˆÐqÌ…[,[oÒé4j“‡&'q”fäŸÙÑÂ`‹ðhçË…"Ëœ¦½¼ô|žE‚¿–Yq€×FC´ÜdtkÍØZC±hÉ((3'½³^Ç«ÿÙæ¡|“å;`NB$‰^ð,*5„æPµAíYM ¿ò!æÞ¤äÙn¡÷âÕ`9[,…à‚³‹wÕëßåìéÝ;û{w¾Ô±@ðhÍ–¿*t©¬bªÎ%21–Du=NÙÔL–õNm‘y¨õ\tCîLy.Â,QœR¯‡ªÞÛ¦Ûã\«zìótØÏ nÇêéw:æ?wá?÷ˆUÕýOt ÒÊ›í¥­>cÓ­ô]¨7“¼ ´;O(ý~„¢w— ‚[E©±g(0pl¸nUÛ똣àc¤¨s´Š¾ê‹÷¦µ`/;×Cu°XWòÌlÚ/óy†)‹¢Ð¹žÒÂ_JØ«òY²VZvAvç©‘¯G]«*V“‡¤"è0E‡²úaÞv -H¬»d10h™˜c+I“d?ärœ£žgÍ5»=:c…¨F‡dàÓS¯Ào÷â‚“6£òWñÌl¹¡,Yd‰&3j¢$úHâé’“V© ne3]vX".ÈEÉ-–¼¡UÜõÄôŒ¿ôRCa¶"%É}ã`V'û°[<È—LóFnb쥻ˆó4{:É3w¼×œ@ކ&˜p ÌÖeÐȇ¡{Å9Š4¶B-RFoÔ.ÓJ-å@[IMž2æÆÔT¥p]2u}„UhöÉOK ßÞ‘÷Ùu¶Ã£enDå…½”do²»Z>RB»Ì!'3žLiêfóÎfT U÷¡gÅ%è”a†kh³HeoÀ|wÿ »¿6†/6«ÈÏAšŽÞÊ`€¼hQ{ö³¨Â8Dg #¥g¸¤gé àÑ(w«¼ûUÊhßÙÏ^·”XÚÙVŽ.,y‡á€;͈xh,´Y€XŠ’¶„ýÀØBa‡c7¬qžú6k&¨ƒL½zeàï7+K K¿ßÝÛ¯·C³ýB™/â וšp±ÉD½Ü¨”µgÌvŸ{V£Ò¹ Ø ´,@Ý*Ô9 ƒGÄ Óˆ$ºß«€#ǾÐâˆna1!ŸCú‹Ó¢áAaYN®ø\!^8´±À’t2[ÊUû{ƒ¬àüàÙ Ne ·ãû‡wiYŠå”ìâæíÇ.çÈbfRH‡oå> pQÜßîh^$ŒrѵnCeΈ DÒ9ný†Õýl)ô!Óf¶-ó×ËÜê“ÞdôNÿS Ëq{P©¸ý¢ïݹw¨*½ÑT¢G§ÒÅ2sz3AYµ¯§]ƒ*Ë Ä˜R&[2#Óïh;¼ yGq5dÆ×ˆW2Q{t‡š|…’ê½B‰á³ ™Ò©½€>3Ÿ'£íK°qXrèNe/ËëÈGžŽŽåž:–÷ê¢mt„º Ê`·Þ¹HK.,Á[Ù4]°VFö@„:G›ÙnzÀ,æòûåâ¼M®ºäÊžÇ)"d‚Uä¼Üä;îyÄIHÎd¹„"²}»CÇÇBNC±Y@ëXžàW*Ó¤”däwНÌÄÂŒ*DÊPV™Òû!XÒR4‡¨–‘™¥ìDS‚ëñžjò½PwO¨-ƒ*³¬ ¢›î¬ÜMLËwÛ!òKíå¼×=¨)ÅžHÙ6?ê' ¶ôØ ³¶ÉÛ5bÕ¥/]€fN"ÍÝœG[Þæ=PÈP¼ðÒ*ÀØ”Ai­=Ë“$¡à;}»¡±ŒPòjŽžP2Š0z5§ÜÉΛ Š2DÅe™n¬}†ôÃ9£~´­:‰s×€î™ûuöÂbxާùÁÜÞ5²%ûÍYöPë¿fŸ{nr®;zÂl%/,/±j¿lÇfá®ý…³²æþŠC$²æ·y2dšÜt7Q>m­@î4žð-ÜÒÖܯ÷îáK؃Q*aÑèú?z>‘Q—üÿhùõd}2#joúUË̹,Cgã´a‚ÊízTÚ95Xðˆt@T…¬F%}£+žÂíÞ=—²"Ykç [¨˜MŠœB1ÐáqCz{ÑwTÌÑ# ñjŒ¦½zþ¸ ˜…òØk”3‰®kJ£”@xÀ­G¸)`‰@UNVZµ¼-Á®¤àÚXíUAí›ì3‡¾èyÛƒ±â‚™ƒ±5= ÍÒ!E™/®íÙ*ß«ÓíìÐG'JØÝ ®S‹Èi“ZØuˆ‚EÃ?¼ûw÷¿<سÅAmX‰ Æ£HD6y‘2a©"§Ksñ+'ª²o]¨I?€%1îòÕã…¸70›mš’fÄ¥ÀÑNÅ÷œ› Ï·z\cN¤"¶üvnZà²Ãp§‹ö§H{ŒFÔr¨aMçyœ£b>MG\ß7zl1c0ØHІœLÂ…¨vF€ÒÁE­r”¼ëxKK®D=Íæt{Å µ/P¢±c´£=— $4Aâc.Ò˜;K.ëhjCt1°…âÁ£82ŽÈÜH÷O5–}&JZcΪêèöÓmðqî]‡n#X³U,îÇ™X›&š“ÀÎ$¥Tû8ü²†ž²ÅI½°Ê C%>ñ¸0Ëá,#k~"HpzìB|uS õŠ Òˆý³ÛüNÎ0¹ÓÊ'rX°\ŒÍÄÁ¯¨¬A¹¡¡}‹´•SÇŽ0²¬ÄŒ©,¬ò9N¿ü HúåÃðA©.DI¨y:â8#'Ò¥ÃHƒëÛ*4 1l+ƒ7D8E]Ö{±…b¼Üò:»¢®«ëJªƒame× ¶À ȃ;ŽvîÈq+/Ë'_Úâ?”+«Þ©ÉÄ“ ›&)‹ï¬»—éÈDôzˆ”͈GâÅC’Cmγ¹6ëÓFC¥\áú:b'^N«ME!?©Ñ·¦ô òd’s¾4Ù`=ì…Ì‚c0°¬Nsì‘nbkM@V³9U`¡7âMj„³Q¡?'Ýá&‘eÉc‹Î=L'l r„„’Úý &§ºÌa U" âA‰ŽLsvõìÄMy¥ppïÎý£è±”"•’Tñ͊ÏÑ¡Š9OåX($5_ ©1ÿ·–ÔÔ]0.Û 7ÒÞ¯šÈÞ²ÕUG¯%¶‹Á…€OìB/ÑJÇQ¸ÖXëÆ_Æo©¬¿„¡Û_G¹bµj†Bù)[Θà;Ã5wA ¨C.âl‰)­n÷Ü<ö¿ºÉ;*X‡`ã!U]ô äàè„Ö•Ï0›ôUl8³x«_prÝF¼·ä¸ô+çzñ(z& >ÅsJà庸hL³Ez‹?½bn*BÖÈ•Z84 ÈÄ¢lAEGî›va”/TãfÒqyyYI-öL,0´s¬PM÷FË £„RÀ·•we+ïv¯¥žÚ“fA‘XT‹øb…a±?1‡ì -—<è=$Lk‚&õb–ðN¦µd5úÞjU¬m"¤zn?Æ dù°{væü„âcEÃHÉDZ† bƹ0ÛH/Eõ:áÿ©8ª3ôÔáøøÑˆâ5…æ,¼åÄ+MÙDLŠºdt/ñ’KriA¾éþÊÎÇkäÀpYG’«¢eZLƒJÎPJœ| ÒXDÙíA‰¬ŠÒB !WFÄà ¾Y5køj(ÝìHE5'Ã<†³4§£(8蟖GR¦ÌáOͱÁå¯Ðæò$ˆH\肇 W†1ØRñ¸¯ähûwîíßq¦Ò‚ãa`Òˆ ¬ãáÀjçJe3؉Ê3Д`b”7Tü ñÓgfXÒCF+ªútDï~up†svær¤,«tS5À·,\E”‡çænB/÷ö¿üÊôK`ÈO´Ì'À(’dj‘èÒ™²ç4^Þ/k¡°V±BÔĈ$°ß;G2Z¯µR²Cíìî|3_vx!íÎóþÝ{{÷'£,2Ì©ZŠtηÝÝu·g©ßGýö®ÅÈ8!sÄW>O¤>Èëú!€©¦*@Œ$}ŒS{i¥qŒæ0¼9bú±âP£°-üxNŒp”jH6C¾!ÎA¿ùÑ*ÑGIHØžÝÚÙp¸¤ìªÇÙ™ò@»Âvµ䫃/¿2ŸËDæqqž;¯±äpp¼d‡{_ÞUþ£/6ÂÏIž1â«ØbÉa/%ß<¨cCŒ·õvóeó¯)ÅÐÂëØßJR ù@#=HškL-8<Ø·nq+˜ØÐÂDP&e¦Y•€$"¡’s+ÂÈØ6µå•dÿ(« ¦wž.8h¡…‰ñ{Ð5!SrV$Cš:ØŠ%E©õhËЀûû‡wW·“…Øéæ™a,.žADäùÂûÙ¸dCšŒÕñGY4¡u„î~úAY fúÈcy÷ŽÝIÌÀ/Áñ*;¬œk—À36Ü20’ž#®ŠF$ Ä \ðÎÀñ{Hôÿ µJÆ¡¼ìçT,Ø lQ)Bn´±ú^³}/JF‘6' ¯‘ÚŸpÏ[}>ÀV/ºS°Oy’<< ŽHF%ÎZ˜—æ’b ö¶£°„° èñ*LžÄæIUL¾!ú§è-؈+ó-§EE¶BkÒ¹†Ø Fª·zNÁ„TôÈ0³"BVDÛtÄåÜ)B1F(‘•#VÊV †–ALwˆcãƒFx••r(bJ5A}‚‹“<ØaÉd/Ô¾»P{÷n–&;()eC\9Âñ¶Á)óœcU<+k™ò²ûÈmáé2d|vUmPC gk¬].6Ún𒽟臦@5´\j‘]*QFdªñ\†…³÷é»rKÒ²5+im†ä‰àOV½<:¸I#äX¥”XqƒY?˜YP™Ø±° ±”†IÓ| †ª¾ýÚÆò–¢ßbkT$Ó)-.E…¹p¿XâŠ/9i7„Jä``8c¡ê¹²¥©{áˆG%þ"›,§é 1Åœ8ÎÚ“éÊìÑd©S\ÏÅÅvriˆ,Ô÷Î J@ <ëǽCè¸Me8O&s…|$¥r¡MÁ±(ÙXaß]vëb9èî}y®qgƒ ô>IŒòýÊÌÇ­*¢*ÂñkÈŽ¦I²ðl9K˜‚ªváŒâ蜕2‹Ô¨Q“ðT~1õãªkW¤†ËÏP9(–>‡à:”0lNEqÑw ·ð—XŒ…Ö#eÄ×LÌùÞÆ~N­>¤špùÞ¨>·AÓºÚFø)‚Í\rZýΔ-¸dh©næ[<ÊÛ†! /0S\-l9 ¹ñfº‰¢± lÀ¥0<˜¬ïö­Ó'Š…ÓºÑ‰Å ŒŸ¿ûÂIh×»r¿léWÈsr× ùÇhD‚p¢‘Uÿ\ oeé Xi¢µ øãÂVb"6² ê¸|˹bž>R­-8L.òýå/aAŽqZòl» TÎùQÍXë¨9HgÍNä &µáùzEà§Ó²1³ù$ž-QÕFìoq±~JÖ)ññòL҈͇SKÃö­÷s¿{pg{“þ#‹ië…BÊüˆ æhåªFDAüï*K›|qtÐ¥gF"my³3½Òí'v3ýRÍôàúÔZb)bò–lWøò‹l¼…ƒä¤°`ùZâzðì¤ðÝy6_N S/!“¬„w³è—½1Þ2F†Ñ†ÒBglÓ8!õÜê½u' N°ŽÉº’‚Ar toGËàÚ·ƒ(=XcŽùª¹—½â‚Rоùû‹ “Ý'ŸÓ=öØ»­8†Š\XtÕA‚ÈìrÙ üjÕº¬Ðú ÂmQ„Ôÿƒ;÷ YC¿»Û5fsðel€A;gz™RÚŸ,Ó½›Z&JÍöš 1î¾ê AÏ ¶ø c½[(c ]+$¼Ö¼Hûõ ÂB1¼¬‚rž u“¨•PË&·šVf]}ÆuN‰WXû¦ãRÏr`—XþØ ø8H7•¹]a=í@:+Í9Qb¶Ç Úü±#NŠq=³É"{ÝŸ«vüÞö”ûÕL&láH9dŠO›»¸#ÙÛhû7b Œ9kË™vÉд”Äu1ÇbÉ1û5ö»×§ÅËÊ\ÈAc<Û€ù¿sMm!ßa2ƒHß•þ•ÈI‡‚ÚãV‹}”~Ø5»K]»~&°‹ éù®ÛÂESÁ \**¿Ñ~Ä~Ì%åB *æKŠ[¦LqšÂöÕ.ܹÎ.ü=ˆÁIèã (ú‚Ñ»\ಠuð!f=°bú§Lg/¢ø(G#—~‚_cp7–èKéP.X¯ZëBy +^dCìô{Çݨ¤Ïç¾7òI¼¨1¸À‘I¬Ì¸=>Kg™€MðôƒGã®YXI6½úo·W6ôzBØ"¹Ó‰Õ‡ Ö%PïØæ%Vñ¥°S66¥èš5ŒdB‹Gu\Ó0¥5+Ù]P•3O¤& [Oy‡èÄΟŹá=ÝbqQ,Ách™Ê[ã,kí^ôtÆ1ä4í‚Æ3ÁœzìÇÌX%– ¤ [ÌŽh±i—»èK‚’¸x6:Ò2,<—MЭ·ƒVÆ&—ðx7 ¼ƒêóé‚ôÚ‡.mØË×SnÂi7Fd܀͙Ó;æaW”x.~\äÍW¾‡‰W‹¡xmÕ™6Á»V€ýŠŽ•¡4?åûW+ïÅ :¿Fdk@öÃ½Š¸º¹n­N‚Îð×¾Bâ„Äí­Ro67ÑÌJ5¡•½s­‰AüIšú®ß«Bx.#K(ò½¿ÑÜjNÄé½û÷ïGQvS)ûËiŸÊ×JÌ:Ü⟖€ ,ŠÅØ¥°SòÅ^ºU•–_B³ô 6ˆÊx4°‡ƒÿòþþû ÞlUÅ@†véå4{’·XìOP€6M ¦þ´Ñ(¢ÕâÅ wÐ^= ”µÀ’å%—tæÈ½†s \bDéD´¼_’ñ^ìÊßoØõuh|ÖÌ*^‡18D,¤HVôäVÃÛ`@D¸¹=÷Š Ó‚H½Ø›‡òÎ"d¢¹¯L4nL¹Î/Ñ) ¡«€ògá:¾4ã{nÆ´¶[ {w¿zí~Ô‰¾ôü›ï̧¾>y|òòèÁßœŽš—éìð yÄ`Çcâ»æâÑ'˜î1Žšæÿ ’Ã}?ìímîü±ØiFŒ†Ñg¤*SÂ"pôKÈ·œRX7Æçf»ôLŠ$Øç°á¾ÂEÇàpm˜óõ°WÄQ¹ÒÉdø{ÿÀð†¨gtí¢OÃýQ\œ÷_@¯ï¹!ÊÀ2¹ÄNÔì¾B&/«v 7ß´aX'ªê³Ôx7šö²°1¤c„v—Êá¢Áü’J9˜n4–‘_r”Bk”¥$oJjÊÓá[€Ð˜™@M‡(§×¡F7‰Á©*øˆPÕ3„×Àì"ùLR¾ˆÆ“øL ÷K±ï™|g» ,²›4±®8•øÉxqǪB•W¨w^‹§ ÖšÁ®hÃ?cúÄ¡8¤í”«t_PéG£±L%*w\V~ŽÃ6¶£ wÓY®BÎÒ¹üâµLŽÖaœ|&±[ƒ«¨7Gt¬…¯@œ^lø[ÏD}nZ¹G Ÿ¼íD¥}î¥P"´ÅDÆœ“–9$€®Ùº0›ÔÇgûýfÛ¦œÁ¹Ð­‹ž|Ù>>Þ÷¾†£–Ñ0z¨Ç-ù#©Ý£¯÷ÞtÌK@Ùê÷²ÝVäî3 W^O³¿L‚*yDÏlžÍ[€éšýÒ=öˆnOtç¥Õüg|7Mc§ÂõY=6”Yt’ømo‘L°dær¶(óÛ.™]UɶÙpåÐàPTÅ4DÔÐOØnT‡Ã<ÛlþØxýðÑ‹“çFdxö—ß=}‚Üý᣿?züô™Œ`qòøáÓW/ß—{Í€7†eÍEY­æ; Lÿkñg3ÃFùenæ«ye áÿÛæ&½x4êÓôZ;ݼt ºŽÇÈø'FëÏñ"”÷!hz0ù‹ÅñŽx_?.ÖÇão!k#ؘ-w^mT¾nÇœ+ÞŒŽ;žþÓ‡ÏZm” àWºÜ­]­&IΔ A{„ƒ+Æ"[‚[.y¬IÝÊŸþL\­_wP+‡W ¥¦•ËÒ@2ƒ&Æ&Ø™€Qkh}ÌŸHgMKm¤b¤(€ùjúv”ææCœ·L øŒ21šÜœ$´a²ÚïE~E Y?O0þ8Â}¥1íôŠ#Wš¿à:5b!‘ÞS@.ÝÚ5Õ,2lžæMl¬ß¬lFFqB%BŒDa Eµl³ºF“ ãîŸ^mH׎EH홌º¥·±ÝïO þÁd”VóÇüGLt1ÿmsG¦ýB¿&l{GÌÏê`ðÙ¥ÃEˬŸÙ¤c9‚#Ð%“øêx¯-ë¹êdú=¿nβþ8~›4ßè=I~~Ý„‡ÝB6ß´>ÿÜ=g_e·Tm þío$OÚˆk ó([x³O.ã«â¯m冰Π‰†3c#?ÈÜ JÄÈÊŸ (?÷”ü’âü!õø °=Žyð¥úúæ@SÑ èÅ¢l¤v³Î ‚ÍŒoteP¯[m Ù+þ¡"ºJÝEÖP VŒ~QT¿¾MøbzyÝ$ÞõìÁËïpåB›“ Þ߇žxÍX†ÓQ@Š”™5-ÏÁò'Euðƒ)þ÷þwT!Ioµâ1-ywJKµöIp9¡T¨eZu"3Çcó¿vï2N@Ñ7Yîf‘‘LÓ«‹Ì& h“Ôî†õ›`ÐßzB¥·lR#Á¥RªVIIÖô ½K…÷ŒT‹1Ä8¤–tcJ¬§™ìWjP!WŒ¢­Š!f8õMÏBº¸D¥šØ|`k8ñý¥~«|l€5YÊ"x‰t#ˆ)‹ /ª\·Bà{?Rl6Ɉ±¬%~Þy¾Î0·„kSë§Y^F)¶óAä¸XBðŸ ý(%Ù«P(tdb¸Þ%Úa5V•MF iõƒÙÜ&Y'’‘øç85“AŒé;ÌèŒ! Ð Ü«€«Ž!…àÝ!cë ]†wyž5 ³±vÑÕ,žÒzš‘=Ë3sSâIÃå“*yÈQE]]E¹©Ú"§ØõÈax"Ä-Ë ˆL »âæ¦Ð‰â ›×ˆCÈt|r(Ý[2cñA¼ÿè¹VUîŸí(s¿ø£þ.g=,Ô0%œb X‰ÛÅŽ R±:ðÅú° ¶àfy…ØÒ.S¼,˜ŠfýwS#ÞŒ¯*hf’Ûp°#m~è'ä>Î,Xß»ÑpÌ勽J(D1ŽÍƒ~gþ}ƒ…{x &ú½Ç9²xÚ°}ä¬wIòò^.Á²°œ&ìÚådqÄ•¹ÊõÙŸ63Øïíc\`–ñ}Ga•Ç»ë}þ³ ½ú=rÔ4<‡H‚1¥¸AE`øû ·ß[13vË]h©wfÙ[Ug9¶—É4?ÄN½õÁ6 Õ 'cð¯8'UÌÚ( §S9IÇæ{ï¯ùÒ:”õuÁÚxÊð.@Í"9˜‹€É#|&Vï{t|L“AtQ€©à’9Þy€FûîPà>–?úÙ|t ?‚‡VwÝGP>:ÕtÅ"%vØæUf™]ÐÐ\B¿ÙËKj…:ËãBŽj+¨O%j”1a]ñÌŸ¤±––û‰m‰OüTã*¼¸&‰ZfCWQJ΢‚SÉt@ùaߦ3[rA_n^'B\D2’ÚBËø‚À±XC¢H£Ò¹º.¹°¸8Zš0·„ä.3[7R{)„Ì0› ‰‚ëåè¨b›AbXR<;ñÒçÆ†ÖS­§¡}U7”lÁ±ØìJi½°Ú6HŸÚ1à§PÇèˆÐáüŠKÊ+üüÀ h’Î0ŠÛØ’£´3 ·ò°€,ªÁBèÿDiS ~Mýä½¾Yž>Űc2þ´½CÐÿîÜ3_ÅÏ´2íoõ¿ñ£  ^½¢:_c†äÁúç.ýsÏÑü1ÿrW~¹×ÀÈÝ$zþ÷›) ¥áÊæ‰+QË©›Èx¥ø*Ó[¾è3κ3×íÙx*fšI’¶$RêÚL~ÕªéA† Ó› ÿäöÜÙØKŽ¢ÇÏWdG˜üš®ÈAïÎ<<Žv—E¾‹‰Ñ»ƒt¶kâslH˜‘ܽÙwlïÿ;qáÖÿ÷«í¿™qvÖkÐîGÜÿûwoý¿ŸÚþ¿xúêù7^lïZ#ÿ›¿ãöÿÞþììß9¸õÿ|”ÈûmjƒãÂ=§?ç¿ñâ/^>ú¾Oqxýï=~†SÌxCâè!Õ±±ÈF¶¶!à»ö7xh” w˜Æ“Þ8§ŽõgðAmPBc¥»²A‡yW% 4jÏ÷³ÿý·îÉ“oŸ66¹õ,VŸ Ĭl&¯>e÷¯nisú¶rÞêöÙÂbÕ·’zw«ûZdó>bjèEµ@3ÕÕuß!|ÄyVx³s_»“üVèØ~zÐVªùVv¨¼AªË´~ÍN®ÐÈìw«¤ô¡^$d {ïû`¤Çwë_¾$îkŒ†½[ ‚ÕÃê}¨GùjÅc}³—ãô]mvªé½þ‹ý¿³3®Qh† `ÁSœvÍW€ž_sˆ\žcðkN¶Äï~>´Ö[Vïû»št‡¾ÿþÁ““o½xÙKgÁï }m©zðKë¡OXWµ£Ï·mΟ¯iø©÷|™˜O¶{Êž4ÏÌ^Ú$ÿ+oü¯ô„ýoÜ®”>¯2ºp‹ÐN¬jh>Z5œJÛ­:Žçéf½ìõF}rÓº…,²Mú´¤¢Ë´b£ÞåLüNä-*ÜhüçÞá}%ÿCü×Áþá­ýÿ£ü¸ü'¶³¾i`h&óÞ[Ù¿¥ýo#UåÆîÿþÝ{¥û¸w{ÿ?ÎOã5„Ff›cõ¦¡’ ô9°!/€ iˆ…úîMƒJ[ú(Ùüè!|߸uü–ï¿6(Ü,ÿßÛ/ÝÓìÞíýÿ(÷ÿö ÜÞÿÍî¿g¼ÙûX–ÿîÞÞÿ³ÿ·àöþotÿCŽÄÿïÞ¿åÿ·üÿöç“’ÿƒÈÂÿïìÝæÞòÿÛŸOêþK|ÄÖïXuÿ÷öî@°—ÿ÷îÞòÿòó}²ˆ!¥ËØØG×xbHý‘6æ5Ô׿4^,§Ó8¿:Š^.$° :„ªZëÕ/ßeSÀ0=3[PËyÚc‡ÀYÂßúè5,ÍwùQô_é4úv9Yd3þ¨›Lãtrý3þ/tW ³iƒ¾ÄÙ&dÓÄqÎ?6ÕékW£~*-ì/½&¹bâÑQõkÈrøºŒ[Á©>…WwÃöçP݃b–Rd‚ÁL˜B&éª]/ŠNT¿„þ½r ŠfØJõkLÍú¥uÊEÌùæñLjB“÷JÛÝ4¾$Ì%óýTyv–ÇÓ¢#¸ž»Žð¶ºn„Ææƒ5(zᕼ„Ôê9;„RPVîÈí(V¬Å|]ÉÞ—L]÷"ApÅD1›3ö°Ö-*ÔŒ/ÎäÜgÌäËèߘСu {ƒ` ¢Lç¦ )âÅcH·Í”ÿÛP>†!vÃÛ®¼óm–ít(eªCZ®íÍ­TZpÒª6ðkwàü]ÿ6s$°f˜úF­dƳ¡ÅЃdt3.'…ÞÁ± G@«ûRkÑNžjèèdœb;NJ÷Çü}~ø‚üNƲp¶”iÞ1gÉž9µwš7¬8í‡_ŒшŽ0 _`»Ç®£Ó‡†Ôbm¿‡\³g\×'Ì{ ÐñE2^N¸†%l'¾w¤»ìDPaQ3™ËdøzT·ÖPáËËKÇì þKpDÏÉ‘S&–Õ†ý¦ïÒ÷±èl€nžúÚ^Ã\S[<×Q è@§`N& ×8Íi… ³¥c3»Ó\wP½8±iXµØGÖe8?]’ »ÔÁj3ˆf×”Šî¦„ÒYXÂS,SJ“j…åãh¹w˜fQÍp™·¨à^5Q0¼ZúJhÓšõ¯´÷7óâ¼Mêo ž0ä"Éç9 ]ØXDVTuG9{ÒÂRW¬ ÇÉÔH¯qScáhH¸ÎãB÷¶~ K\*ňçKu¦§OŠ ÞEGL@¨O™ÒŸ* d¥«N¼•ê­¼èF…RTù¦7Ä=¸(ª;¸3DµaÖ˜;Èßð9‡IwH÷b¯Óêqƒ\vˆxÃKy’Rãv‚oTº+DåYB8įò,¬èœêÆQIV,áÄÀY:_Nœ3¶»`ëNCm»ƒì@7˜™m+Ëh𦳔ƒ] ÒÖ›Uqñ§ÔèfŒZä«>¤b,xrf#Wo¯Šâ‘2‡±ÚîX/2c)‰%,ÇšÓcz5÷§ª”/õƒa\>èß★ÒÚ_h5è[Q-)³e+'5LWŸ/gÜÂÜ$~ŽpnÙnP]c.\G™–«ÃÌG Ž©ýRh„=wbo‚|ah)#ôc0¸íÉÜêp[-„Ù¶ZQ«pwõ0(nÔ±Âûõ¨)‚oU,B©šV›òd䪫‘ ¾ÍY–Ê "„é²Éì,µ£Õ ¯»ôÝ.žowà &rí*hÃåH'1¨ ,¿ÇôéÅBJYêWÈQ/ò¡GlkÌ3Š]/-°Haf[Pp©Hsõt–1ØÅZ¯¤çNT¯RmZ…Љ—µ2.´r60]DÇéV ‡Áf{óˆ4ÖL†Skœ1QÁG;î\7ªšŽÒ<ø>­‰­,-{¬úïD'îþ1•ÃÛëî›à·á“m/“akÚ © (¯áI¶…QqÀà…!Þƒì]V8™N^µ|‰d¬úR¾dœ´{ 1_hm—Ž5ë/-Ä2HøË#0.Òò±P•5bFG¢´NAë+]e¨0oIìÓ¬X ‘«9Þù:”a'„ËÃ/„‚õÉ…†×ÔÊtÜ™uŠN·ËOåü ¾©Z}^‚ð]¢?HÅ9ïÛ3€öÃ6èS½sr$ê(›K*ò¦U+¬AVLÀàhVõf¨):IÞU(è&KËÐ@à£[Ëü¨ž#ÖsÆT^/í©¯¸œö­–ƒ] ¡õ„\,Æ<%@ˆy2‡úª7†ÑªgÕ5øüD]7ÐkÔÆÃsÀÔ$SÛ'xÕY~U8D_Ã\Ì›Þ'Ep4š!¼¼à¿È/§Åcm‰Oà%Ù•Ú€³ ܦpÙÙÅS"Ü-åI0bÚÐìˆ\xX2Îl—V ¢%EL%ÅꦞFX09¶{0‹?|ðŒ›„Z|©â]3Ûx’Žœ§è{s°0II2ªÃÃìç„`ÓÌì*A{å°•ˆ¹ºá(™O²+ô'O³,8©€ìlîòéYBÛϺö•5ê^£ÒmiíÄž!…ÐǿΕaY9±\­jæÚzÀ°¯Ü2.lŒmEŽÕoX¿´_/g#6uù4“LàLX}Ì^-Ò Ôÿµ„ åzû:¼ˆ]†+×SB5ÌÍ@þ™ B¢ÇÿÁ’°Í˜¾^žEÏðškŸöçõ?­Cƒ˜•éî'¯sePï'RædWÄõÅÉß"0 ^3Ë?Ã_‹Ì0Û¨[¤gÿË©cu^3týCcOåSÒ…­f³~™›Ý-ë~Pà¯k¡¥(‘\„_ÿB;2*©öý|ÝOXN2]D„ì‰tÀ'i=qäÏ$ÁáFú̈œ“#H.°”ËxÒ‰æ›îqio•Yrë=®n©ïfýX[käì9¯Šo“dÎVSŠ÷@y ì,ÄÒD/>ØHÒ^Å5\@Å1^© ̤P¥Ñ3Q##N®Ž"(wk.=ªD”_í$Ó$?ƒhð§¸ØbX9e†$i,± É…Þ rC˜Î“bw¿wg7 !Õé24Ôôg+*“-вùKwáNï8)=T믥VØ”f  DŠÕ.g¨i ;¼f‚ÔÏ:«’nAzcÉDÙ>Ñ•8§X ’c4©ï)×e“)Ê+ °–&x(ÖŠ6s!—°È©=7ìh 6áխНÎFq>rùŽŒjÇ*íÙÁŠ9Üv§'€.”° ŠáX‡¸söxA ¶—Ö†ÑbŸ9T›®ué?‚kŽ…»à1nר-mì“ÎÄÓ…4çr¤õ»[b–¤D¢;}¤ggÀvSV¾.fæ`3 Mà¥#´çÐ.Ý‘˜Í£)*S€J×’T2‰V? Òîý^ôŠmN0+ïf¶j܋ن$€Ì†á»ÚÊ]E‰DáÈ®˜.×-¸¸Zu®®á,çF™G‹è Á›L®Ð z%Ó²ÐáÑééÖu.OOÉ d$+í¯¢3æN¤‚ÒÏ3óz]BzÕû¤{m©Œ^$´y§ãcÎ…Y§¶Xº §}{ï ÆyÌ6~< D:a•oíñØÖúq™§ êu<Êk÷ `–àZÊØÌºÔ aÔ¹ÐíïŠÎÍptŸJìÆÎ éŠûÀ àm¤å‡@4Dqg›–î;ò¦(›fQ˜«Çóì³±¦¹ÓSV,º^H ˜& â´9 zYNOh›Zþ¦š–ªÁàŠ nšÎpÒC¬»®æ¡Ü¬FFÀÈ0;8ðÀèÙ]ä¿l1p -Z§°–c8+yŽËð`²Hòº\œKŒ×§§z˜ŒˆhíðGÍ´lÏ@?ýÙ$tcTÂ.Ï̓(âIEÜ)MóDq©&` I$V%Ž,(²YÐÏw:\P%YåB›]-5³‡MŽ’%Fx†K4¨·ç¸=MàjéŒjLéêvÿi¶Äú9Ño‰f {\ËÊv¿yRÎ¥°Õ8ÏR4KIkŒMs\jl¶ý|rÕuZó3ß +‡Gâ=ý¥‡×yäĹ058Šº R-á™'gæÍhî!?Wöð•<\MRYÄ׎2¤DiQ,åËy4òm¶œYÿ¯¬Ó[pndyÐñ£Û…Ò}f­þ!ïBíï¹e–¸F£¬˜o‹°#÷;s…. ^Ú2¸µD‡Ös¤.’YŠ¥´ÊÔú<¢r@k…ޏú¡ S…µ§pðCc5&³¨¯ˆÀ÷fä,ÅX=©H†›Dë]’S¦V×ñy¸sHÊ>qÕ1¨¡Èßà æI†ò F°ÌlÁôP|ëJÞ·•2 ú2¼\áB³z »ÅâJ×XÆ T±<õxÑ`Ô"0Ö˜‘ÿ¡ñÀ+CG…ø§sshàé˜%ÆÔEåãÌz¢4A?£ýt!Ó¶ºì^£I{…‚#?å©aeVG’ØÕ0âdh5F™%lEpPøÅPé(ç ”ÉÇ ŒÊóí^¨SpjëªàJÂóCË43i³ˆ~ð¬‹-™, Žd£ S&[žZ“évc`î•r¬¢è®\ÐàÎéh1G+`ã+¶Ò1BáTI#®UeULSÖñæ ØòÀôj«€d¸éy%¸?±€2ŠœŠ‘Š;3|×Iî5Ä9pÞžây$ñmTT{¬Aõßóä05](@¹ zÜ·öžÈkŠ B· ¶!¦—ÙÝV~)¥‡%h¬~‰É›Â¥‰‡â’,“¿BçÜd2¥$æX`°—ÂôL^.^I­ H‡ ~ºQ t`Þ%]ì™Q–ˆÌj¼ÒÂA¡:ÃØ&`p”†á‚ EÝwä3CTâ¼;_ua_*ŒJ•D\ŽÈ|SC rE³jæF~Ë[fvTÜ Sý&Cq9”b~µÓ)i‘§§Ÿýçþe!¸<ž!T¿˜›fú‡VXxb’Ù…ê`õÃíÕ««—¶¼žQ H}ÖÅϸ^~5Šø ^ò6ç6è*”óŒyÒÛ®Aº`:•Ѷ”²mXÕS£µG‹c8«X»:‡XŠÞ¡¹“ îóÂデÇ+™*‡Èòhú¨‹œs´ztWñåüx¿ Áʂҧ͇äùiWØ 9“È;áL.Jj–ÎçÉ‚”zö‹Ë’*Gå5+]vY"w°>jW±3T…s#kU˜Äfp ¸¿##É£vcô­,!9¨NFQ]ˆws\‘¦_¢î ?^ä_Äü»ÞqîbLÏ/^KÒç€>y›¿{¢iî¹áw­½Žé“§q„ÛçîÝÿž¡"í/í`ßé"àܲ•°Z+³þc=dK#ÈKŒ¤·Š/÷Á"Ì›±tð¦­{°ÖÚæÏ,ýÙŒå*ɼ̢ñrÆ<4F­‹k=÷¬«eé<©;…£d,ËÑò¾ žø$§‘ ºoN\GUë€É|Ñ©<Ľ?1‚_õÛäÝ"ûH[íê÷6 ù¸Ù¬~«¨XMÿ˜ÚOXv"÷ˆGñ-X¨ª­Ú«¬f˪+8¢¸º„Žúó«~x%aùƒ‹´z‰×/ÒºMØ`Y*íÓ Ø0P·–0å¾Ç êZn¶74ÿþê³Â6˜Kh«OfbH‘4˜lCó1B;AÅ=O ñýž™H?i* O¡ •E“Ì”\Dt6a¶æ X*±ž ÏÔgp¢ŸÙ_ûf;@0ÍÊk/1‡D8OA*/"Y÷‡“8·±¬P·<%[klËp¡_Þ(I¨aSVø&Â|éf­ÅŒDÝCõÐù8Ö:`+‹ÎÙ¡„{-ƒP|)…9Çê Ä™* ¹Ì&€µ‘PÙT R:1Öûf-0?ŒòSv²#´X륇›E$`ô\êµ×뵫OÕQl’JŒJ$Jú±¨ë•fƒ¾k#ÌçuS~k¾©<ÀÍ_7KbAó ¼…Åˆfé¬Jé¼÷:èÐ á ¶7X"¿îö+ä&®×ªÒÌI…ÇÑëêz}¿Ìœ\­úI*Jâ ¦èMßšf«ž >h‡×‹ç ªoÔ¾{ ¡×?c®¼NXí¤|#ç<ë e¢Ï`àÚ4élY¯’Ï:NO;%W’Ï0Ì÷Žfù4¾2Dî2p…žÚÀ_CËct=à 3Á+®´ mÙG‹³R%·uWu”7(þy¹”<Üä"™i‹Y<2“²ƒ5T|p©+†¶(¢%g’œ¡ÐîK™/X]¶6«PRQpÞ“¬_?øxÄ'AÃàs¤I5ÊÎë²ÊO¬ Pp ¥ :ÂêG]¥¢Ð í§Ük6+¢ÏãÉe|UøykÖÕȆHí䉵 šôAâêÄ“Jøy`&®tN@Ï©ól¹‡VÛ|]»¶Ž3‹tgYÉO+~GòrHÊÜtT !â “†}›SÐbφ÷;¯Êž>v5Á‰³>wÐw‚ijp“iÆ¿ŽAŽiDdòG‚©Šuž™~Îò„}–ìKAÌ8[‚e{¡Å %a£o\,¬)QA¬€Æ GPm È{0ÏÇa}?ÚÉ#I%._žEOÖ8Îý`ÐÌòÄÐè¼µ~ϯKI¼;œC‚H•ŽamÏa=âÑ…¹Jtt\õÒïÎ,†ÙIJúÈ%®]å'=x£Cë á@%—ZÓ¹dYfº9‚–»W3Ìü>=Uk[=¸@Ïe˜MTÅ ?æUÚØZz–Q"Ñ$Q¸#.ÚÐw.t¬=éµÐ¾(Û·õÔ„Ä ¿@Z.k$Ú2^K9M5ä4U2çC*¼œŒ1Â9>.“iúfÀ–öoÆAo|-ì¼›r¹ì¦‰u´SÜ7FÕm€™”ƒð]Tg㉹åüÌ4‰gd êX'Y¾Å³ÎÞXÏÞ –ôådÑ]dÁG‚Gyòn:‹ W«æÄõÂñö|#-¶ñ…lB5;6P‡’ºW“Kaý¢îŠû=ÓäÇÉ% ©,’99Kéo}üëUudÕÏ+ %µ&š»f#s‹Ív‹ÍvsØløÀGÕâŠä¼[àã§UDE—Xp\<¿´±¶Ä¢Q*…Ù%aå@'eʪ?ì‚_%'“3ŽíSáwY[ %f“rKšÏâ²£Õ 5®zõèr<¾—n[•Ü:^c±(¿"­™¹p‡ƒ‚úʳk.AaöEÁÔÙ¾ Tä:áÕ*Ê Š¾§q’}©œ³ŠÃàBÒBÆÚW9"GW–ôÝkÝZz¢ný)ê_e|·$êVü^:OsRâ…—÷ï€Sø… 5OPv€öÊKò²ØÞïO–m…ús ¶ gPxhŒA5,a± à`;,Ì “Jzh &Þš@¼Ï¤Þ@ðùüªœ¶Y›fÒCÀDÁøàp1˜u‡ò(dRåù+áZÀ%`kÉ.&$ÒÂ)ó•›„c—¨XuS\“)[ŠÆl!†IDqÊTH,Jùg½› \K@·\Ê™?fí °èg¶¯£C )j3>'»ù¬È&l²tºœª•@ÁœU†:HgAè#!Ó€hIÓU'¤¡îCÙß5æÈ¿üå/ѤhѪôe&¾Áo„ÙÝÞGÝȃy*7×Ã.ú çŸü”wÆ‹*V„Š×Ϫ5MoÍvÝL¶ì &RíÌæî^ï^w~uлSB™Âv>ˆø^ ¡· zE=ñ‡#™ÎWG[ÎBwÜloõòó à)m²*È25$:Ï{¨¬èÀ ’ÿ&8Êd¢¥tÇ'kFÞpÒD0†ŠóÝ8Ã<+ —±¬!ë‚Òk,É`2X žÏÒŸ–‚æÀR—méeÏïCñjç@àEòŒfF@U02äªp@\–ü9M.ÎÁ'ç=ž$IgS`8ÒóÓ2¾°OÉÐX™â­‚‰ƒðˆ/Ï“5¹Š0rÄÝ4˜Ãy2™ƒÖ"Vø’@¡RjâVžA@³JtjïehÔ u ÅÆ‘“ëЩ9×@H:eEÞ¿pÙ›·~Éì±ÌÉÐ(V¼|á=“7!z­l¹¶k. >ƒ¹xyŠÖNŒ‘²,ǼZ®À„ä bÌâ’DO‚M(ßãúÄ¢lŒMÉrç7Ø—™dÙh ‹H²ü»Øµ{‹9.àljZC’›yý×6› yOÿLÑXfWۙȡDG€‡>ÈÛ¡VPút·N%^Öy‰‘eÇ“ª ÙDÊx¾u_RYA¤Þâ[jV¥‹Äi±H-!lˆë ¤‚€t´‡¼£ãѸ]6€ÖîÒϪÙzÓ²il†Ê,ydœŠbfR #Õ ­Ïìœe—³IFiH¶Çsft·(ú6ñò<ã¦'³Qò—ºkË4ウ6"–¿K¶ó8Úáö;QØ“õÀÃ0#œ%ª ÀwøG£-J a†´£¥`ù;ÔØ² w³>ã‘Á‡Šû©(n äÈ H>_0$b©,3”B–ÿ8¢BœeOb°œ2X¡ËD0ü¥d“¤F^ ¬ãã,£Ö& Þ@·EL¡ùöJPr«!«ü´%®D\{é=oÙZÒxE8ÔF§'U^j ×ÓŠ¨R~2$²}rVoãØÐIvv†$*3z”®—Rj_yž|ÍßÃKÖ6–<‰¡i4ÔQ Jp;:ÿÑ> v`ch¨q)œÆë¡öyV±8_ £Ÿ ÿ„Âs^7uüÌ––†·íãíÚö¥˜˜´ÀÀþËü«×*½½½bHÈÀ£Ó34ñ±ù5É[.X¨—äy–¯_Ïæ7ñ Æwäæbÿ± ¨»…fˆ½æúµ(/^´v~+»ÌcHÔÀ¯ çz„ójž¼•aT¦§öºó_{˜“à­XmL8ðƒ¢dµÏ¬Ü°¬¬Þœæ7eª{ev¦éþ¦„óBÙ§²¼l1+ÅÎùè~KŽ’ç »°\®^ˆúaó€ÇbKƒHìÌò°JðÏ“ñD‹Q¨‘šä82<”1­”On2@2J‘Æ 6ZE–‘H N)çCåÔ­ž•O+Mœ‡³¼Rˆ•jÚ˜…c-æy ‡„¥À¥ló¨ éXÅ7–øtÆ ¦e–#ZŽ}~Œ„ƒŒi0d)/jÇG\eÛ¸µ…’á%>Þ+g>òvS7½LRd×N‡ÎRP/¤º¦ÊÈå;•òÞãÓ©+ˆ¼ó²Æïj+:ˆñ¨T_ÍaOsÅ)Žî$R¼‘EWÖzè2t*Âá_…³RDog^ò¢oj­Z½µ Æû aXÒ´8 ¬³5ÊWëh %Èu `èkA ’]Æ=ÛtàJ×-–ƒ–gªWàë8§¤ð4înàõÎ óöû§W—ðu=iýo„ÊöÂ÷¬ž2¸²™ŽŽ±¡q˜Bèà8Ð(W¾ Ë»±'¡gVÞx‡À [ñL¬½œ)…]ÈnÉü£îðT€x‘&^ØÎ4+2DÉÇeD½NYym˜£d?­$ M*xÖhòÏl@ÊiuÝm’C±”pEöÄi§Í³XBâÙȆr-Ú¢ÑV3g½–´W XÐå$Œe‘Ô1=»—b8p3Ï*• È·GÉöFʺŒ\^ý(EƒÆ~"×bK°¤‚Ä:Ä RË5-8Û”"‚D7DyµD®i\lAxËì—¦ƒ"m?Z3¦ñ|.±Ne®Gv º‘fæȔDzpܺç½.dá/|P¦ Á®óÅÚ—€ëc†á!€ d—NLø ¢…uƒ–yð*á—çIIØ IHÖè`­È¶B ÿà2áÜCfVæS6Rš;–à »¼6$,óà© ÝÈùÅtƒ¤ŒG0xǾذÆZAPc´Î,xÛѳºlÄ᥎ðaø·ªb¡¨¤š$½ ˬQAžL³ g6·™qÒJµ¹¿°»A‡C+5à„€ådÙÈQ¾†R,¡ÃoŠ@µÊD·„”—ŽEbõ'ÍÞ°õ–#Ù;¶–lŸû¨ ¥Ú~=îÆAº;æL—)ŠŠ¡Ñ¹ò4+ëë•í_.yžø:Ãj “âqUªìŠ>UÕ…ÕI¸zÇfƒãæ8ïQIÊŠÁÂép-¨k¬߉[Šy‘åU.¶ÊÓ‘•¿WÑjй¬HÞ œQ$_úxx¼Ê ®Ö5K.C¡ hhh­)ÅŽ$!{9ø2¬Óó~HlÒ3¯;[ˆ¡kýÂ"£[ dÅC̨^rrR({xϹy–S¯×K÷ú2.éëÏì@úðÈ›>1"à5|iì=¹dÎ/}±®­ùJÖ›‹&æG½‚AèR ­"Û6§â")´t©+@\Ë+mh„%¸8ç# ûðÉZ3¶ [q©G;<²°ñ ®Ï¥G£5•±«y½&“2üB+/*Í7¿„;kohcy ¡Ö0r‰~²âÚLïd/z¤ £òž)ä[ȃiGïŒ>9èbJ‡PäŠ\÷¸.áõq:*{^]ƒ•èÆÁ:YÚÅGæ¨IÉ‚5L)cP+¯È«+*cßq–gæØDšï‚^î?G×È ÷@O ƒ»Rqôüу‡ß?ê-Þ-¬×!wñE–¢˜ †XŒš¼Œó™öùà!µ8ÖÇî£UjÀs±Ò×»Nnèæ¯(tžž-~‚ž'¦—:`TÖ÷çUÞì&×x›á+WÔ)/yg¥…Tu ¢Ö^ý×Ò²ú6 ¡%®-<­W¢Iyze¶u<Þðî’‡ï Ø‰9zgœ¿M˜99€4Œ°u áGw/)N¤ba­ÜkÙ€ÃÝ/j·\€¿Z˜dâÝìC†nóÿ½o¬ö¥\ð¢H…Ó߬~º`{QU{[¡-I¾–¸µž”“Åw‹Ñ‡UHJ°5‰UˆN¡>'±ÞŠØJ_*:H‹çfíWuX 7dHa ~LÂC—ŠH±!±¬huDÂ{Ða½óØÊL›Ü¶“«®ÄÛhø':aG½Í“Ïk/ _RŽX1ÖHÄ4–ÅiT‚=‹Ò0b09ƪÀMòÀ^¥ô'ƒ¿°i¼p%ÅØ©¼RœPØVqÚÄê<ÊP1Ä"ª[¬F uÙ€²ÔP•£è¥ÄjáÐ(èæ.½E¢»<¡°f¡ÃÖ¤t!wѱUpl<ÓOK…P(bSÕþÖc ”“=ÚK–©£¥6&Ü û!H&XA—³™ »Æ,6›Ö´ ­àu,ZfE囬è ÏAíJKKŽKnóp<±b¤Íj_ó«²£¿¨e_é3[&!GQs—^aÁøwEHðÚs z-ùû¼S>=ŠîÍÚS‹¸Êô)*Ó|ÏØƒÔKÌ׈-ïF%ËûGŽ< •€tþ°–›ŸÌl±NÙ‘`Q~eOQŠ›bÁœoA×üRñ’­£ý¡l7héóRö¹zfåh꥖s ì] ÛŒíÀÏŸ¿~üàÉÿ~|òäÑ_6¡Î};Á¾j?4¾ÐÖª§-d>Íãïï_|÷÷{ÉÛ“‡¯ž]íÞÿóAüž©ÜNEþ7zãn¢äû…ºz*bµTg–ýhõö÷·>Î^˾GÉ>"À HuG$0»×q•mù㣂®\äºp‡9òGìÊ#;îyŒBë$Kt‹n••Êô´¡®ó!ù”µÛÖsªë²2o¦¿AîSÙ©í™Ö3‘ËG&VŒ›uy1ÐgÌÀ«å—Ë!¶cý›pŸ|Ž¥é}$¡èW;l*‡I~í½®ÿÞ9DûG¿3Y¡¯ŽýÍówã¢1!ÄÄMüR‹l®0qüÕ,\ZœÓÞ‹S,f¨ló)½ÅèbXúHÇb¡cbé‰{—Tª{la›ð¯v¨ô‹%dmüžÏ¥_™gæjñÄ cFž5Ü ”š´˜O0;ð7h¥ Š<ÂßìT§÷YÞàÒÓ2WP[`߸27;ëÆ0h¼~HãÂÜOL̯z?+LpuÝ[®ÅÒÔ»wïv·b]äc†â|øLPL-Då%à>ï}\¦§hˆó«æ×Ã?Bá¿^OX ­ ÚçhX¯ôÍß’R,±&„IôÀuäf[Bµ%^½£H‡¯8Èä$`bø¡$“´pE´$a8\æE4Zæ¤*9÷° o:EæÛ6”“"ÁRä­ щQ‚X¡…KË!ŽéÐ>+#»Ç½È8…$èʃó6¹áC%7Ôö÷™Qž$ˆ†Lܘ„à¢U¤€)å•ß®ö¢E&$ð«#Õ‹*,§n‚0lhÆž•Cö{†¥‹Ö𼦋žj}&F´:þ|ã$ w?Z›pÙ7!ñ²$®™)QÙØB@SWoW5§5é(`/í‘‚QÔä`ȱÝèÈ—ˆáÖ‰5ëS7n4}ãýR8Š_/‡ƒbÔrD&°<ÓÁnáð:\0Å ¤CÕη…'îv Þ!ÒêŒt $£òÖî²B‚gYÅ`ðÞ†àGÙ@õŽ¢/=~|òìÅÉ‹O[AgÙæË µFØ­Oñ˜!± £'!Þ´ä8`Ö“uOÕy Q²ãbš0ºÏü±¾m#jaN¼iê!8q~Z,*àÛ哸ôËۯͿ³,Ú¿ÿ&ú\á„ëÚep>½8¦è—yë^Ú¼¸‚Ôò"<Áª´™—c2IÆà=Og£*T ~¼iz)±¿—ù2©3!ÓwT-äjžÝÒ–õ´¥øT‰ËÍRŽ/bp¤n]8f #LÆq:±•*á(I½aU½jqlvåÉl\¾ê%¿ÜìÛ”ÿ[­øV+¾ÕŠÿ}µbѤVÞ‹E~µúTm©[ß~}ã:özviý6;äeZ¿”?Q &X1bòqŽ6ÀÒØ˜B†„€'ºäLÃ[YüÆõ| Í“räÑïNn¿Õø?¤Ö÷ÍÁû!N> "æ‡"ÚÙ(-€pÆy/úþ PÛ–èx¼4²ß*ÿÒtÙ_Î餵çý j Ç—1”YžÄÓÁ(ŽŽBåÇH)X)Œ,Òib¦s|°·¸.榀G×¢\*??d.!Vœ4pgK).G×±U`MÇ€±‚ßÒÖÝCéÙ⊊£è`鱃‘à+qôŽvᑘKV»,úVsDLYkzU`ýA g{vð)ôFžp¡*£¨a4‹ \S5¨¡ò·â g¯cŽ}!¸ÙÒ[‘)":†~ò,ž=(;l‘/\þˆs³žŒ=ã´¤æJh)•šk¥»™Í4Î #·¦jØä‚j©JIŠ9œ Ñþ]ð”ê12(‘ó*Ÿ¼Æƒ\P)Ü pÚ&‡Î—Ò¨oµã[íøV;¾ÕŽo}Æ¿WŸ±%aNÄÜ"üØ:1ØSû×S!{ëÅq°a3åç!F Y;àiwë=ÞRYÐFBÇÃ…TŠ®Hd™ö%ÎIKGĶl2Yb1HD?[æè®ñŽŒ±€üXÐ,'ð|_>`þRp.hm>EUCìDñYœÚ¬>‘{I`†¥€Å5'’ðíõÙ·Šæ­¢¹¡¢ym-êIv)'Yû}éŒSX»w̽p¶á­eê£y‰C÷½¸±…ºÇà%6|S-Q\Îônu0tMù‚"`Ó$kÄù$MòÕÕÀlš<¥–*Dû w”ëv”°Ý iq€9ÑrüQë7•ZÌcÀHW<‚5Ü ‡,€Ÿ‹tAèÿ´Œ[5øîhŠWAΖgôûLgdסún6”–t¤òÒbUñ0S»H¼¾hhM"1›’åE N™·î4/Ð[¨3Ö„Ç ^Hcáìa…Áy˜†E, >Ê£™%—E9Ö@/~Z"` 0”"jí¼ÙQ%nŸÎïÚà¨ÑéúÂ;“Ÿ µÒl¡47Z™! ¹+=Ç" hâBÃ^dÓˆ^)’lZL*v ån¦jçrÖ)!Ww¨~‘¿ÈFˆâã˜áÚš\r_ –Š1Öl^ãÆ-ÌýgiSóÊ‹vŽv:ÑÎà?„ÿ´vhª;í›Áá¥\†8:Ëan”Äú8À´MèÀzXz—Hæì@zÔð-p‰'s³5Ëi’«*¨nTèüje½i,昦Ù(´°@³F‹ŸÜ–ô«Æë¶2‹ws—§RP¯£¡>9·+®¼WáÜ`ª0}Jè)P *¿ŽÓ$ÖÔ‡ebq"€ ÀõmrÕÅ‹nhšoÖ§Y8€hÅyyù!FP9K-ˆuÛ²Æ@9¾yúý³W/=ìÿýÁãW:ÑÃGß>xõø%ÿé8ÈÓï¿ðäadOú®½mÓFç—• ™ãCâ}ôÅ“§Ï¿ðøäõøîäå£Ï|óhC™¸ö°ÀÏqåg3€°ÁÅkÅ.L£ P¼†ËFò„O+¾è¥ö»ƒ:kÝs#Y›‡?ßúÁ¹¹zɨËÅ>M‹²4±A/õÌ·’R\±ãŠ"´úalÃr-üTõ„ÚTh•­T›½fd®‡ò*½øwÌûº<š-G‘¼K†¸9T.ý9Ùz³¡‹å€9+ŠÀê' 3!°Fq¼ÅSÌOËGjËQ³NçÐÓdû[fÓÈWeܯîc’uIª=Þò© œ»ãèäÉ·O·xÒˆ7†´l½\Ùx RÑök„zcÚ¸ÝýÞôQ¯B ¬ JÑ]sêâÉ{L•‹ã¨ö’Ö?*¨r]4šmÿê"3äØðö1oñärös:ßþ…FÆ1²"j³á_ÑmÌ–8°65Êþvç„(ý*ãÂvý…æaù{œ§ˆI¬•ºbV\_Ó2¨üJNîEè]ŽÞ¾Ìœi—¼´åkP¬xÕÌbª=»DTÀ­Ac`ÌB©v7ˆñÙÀµ‹cØÜµK®Ù‡ðÐÇvÍ*È´:OrÕ—ËÞÛÕ §wïî+³ Ó²ûª‡®p[á÷=PÖø¶¨Ãë錞\ãÅE‘Þ{rKhC÷ÇXW0æW Qó•²YR€®NÐQ.\Eª€öèý ®Ÿðz[9T%"ŒÒ4qÝZP›¯c.°””T€¹$ô“EÀ.VW]šÍf³jDVn†ª9q°lÅ;¦Œ„ÞÜ®A膫|ì ¸½Yë?Ú›ã{\`õ¨<§jGFÀ±a} [²bCÚè‚)ZÝr”2º%j —“8ïøQ–Kk*‹r9Zg.bh~ó±®Ñ5,êÒbÔYôù—B·2¯r½òâ7è¡“Uif%ô( ¢‡ý%ÐÏÎ’ðûÐûµošýá_Ö¯"Õ/»@hÂͨ9Þ zþ—]3îOÔí)’˵kxÎjlûuàO¼` ¤‰–ëÐCš(Â!é'—Rÿ½—¶´eCF)X(uysz…Õêã ÕÀÒÍÕ£zv„0¥ àžqY=Ah‹ ›¡!ºWã{¤²îU'»!tŸ¬,G®€Ð\z¿o<½r‡(úž^:=$Lè¨zŸø.­j_¹V|OÂwº?Ó;¬‚K)TH£ar1¿:7i¯è˜ÊÁøà\h(왘’×%ì¡enN{ŒÌ i˜t)‘µèwnèË¢‘EÜyµ ¤Ü¸+·‚“E^N½žçz*×°dq Ëb)²´Oàƒ[( ÙM¹¼Š5Ü{­XÂê` >x®T#.ì+íâÐß?/âz·JJ…/ŒûúS>þŒÇnTÕù·›Ní­¸9[ÊÈbóáÔo(ux!¯†m×AûÜb7ÌŒ ¡ˆŒ/åJÚsc²]±¼¨su¥³°XDR†Í³%½TA\˜Ê)v†±#Œj¯‘³Ñgƒy¬ŽFG÷šk(¼#,^r7Fâ‡èÕnQ6¦L¤ti:,xœ"—õÅYÄÕ¥2¾~=¹!¶‚ƒ žMV'm ™žïÃ8úð6 À)½€êÝŠ]ì\%qš›Þg[ŠiX³©¿üÛƒWi÷²ÿëË=²±ÕÓ´Kx I/\b:™hâš’|-Bã†~~'§s`‡2,ˆpåH•;)Uu„ÚU%k”Úri ÚRáUŠÌ¡é'”ÒquiJµq±¸éhDI;ßëÜqiŠÆê$CĤ²Î,,¡eYú‚cU˜zâ%‚|ú„òV-ÿ(äÎ ‡0$Â5xu•¨JÌÑ-±üR²,!”˨TÇXóþ+–Ìßѵe$œÊKU]mõˆÏ‰ø}®”E,NTÑ:ýï‰PBK½þ Í|ta¸YY€zÒª?–x¼Hòòˆˆo„) ô·FMkƒ¿oÉê¿Yý=˜~ÿDóÄ´vzµ¦ñ0Ï”«j+©ø•M[*\Ú³‚pƒ6Ê“T?ÂÒ’\!ÛAàóv\.èüôôÏǧ§¬ÖÛ´ý‚Þrˆ•b:Û+!ÿ,Á¡Z³yŒm¿ÚçŸë4lOÇIö«á(Ù$ËqH£-r°å@Ê9¨È HQ ïUpn¹Bán¿}ëÈV®&^2ÿ{ZõÊšÓáQli¿òõþú Zz-°Š›±2©miõy+€vÔÖR*¢ÝKE5‡àæ°½1*Ç˰ÖVmýHrÌ£b^Mk× ð—×’9Œ—rtÔvf6cš“ëW|Ÿ˜X"`–qlè líº\ùD 4.öŽS¸þd¶=/üÚä…ïÇH¼½7Ü ­Jÿîãð¿‡ë >RO²+_ð2G±9Š›õð>ýö£ÁA48Œw6{Ëáû¼e¸ ×Ï"LdF~)}¬5n'AÖýŽrÖCHR¥Tå@•*9o|ªläþÍœ-ÿàtÉy]»\Ÿñ]…¥)Å'¬;w¼1_˜óuÅw6x•¥1«ÞtPû¦.Ÿ´M&5YôÀc5ñª­;ƒôž/އ‡ÑðN4¼»Á‹fˆþNëôl6 aüàË?×çûÑùûžë®B'ÀÈyºÎY<¸é³èŸòt"ï~¼ãhß{îÞË 2u Ë‹-m4žÈ–úÍ!²r%ÄhA5©ªéÔÔŠzE$%€%¹þXøLõXŒÌ /Ö"lÎÿnÔ AÖfN& ‡5“üŠ»òºISj¾Áà3 1'ãäÌUÖäàëèÇQÒHîhL(.@Zk5¡£fûÍ–âõº5ù€‘¾5‘´ÁiSx- j'ŒfåÅÛþ«©1§ì)kE¯d ™rš™_›o~ ÷·i˜î >Ôµ°L‰R÷û“¹¥¸Ã*ÔÉz[ž£ÍëË{ ݶæ7Wüð×kuA¥MŠŽRw¸8Qûî·ÿ9÷‹xœDãI|FþÉâO†ÂÅ“+tØÆùðtÅ1'´(Ÿú¿eKs¯ÿç}}ç~$öÂþ$ñrìšß›˜R€/F¤£ö˜?Þ‚âØP})'<¸´$¢äìç~@Ǫ>?±ñmLÞI]{0_7Q}Ù¡”iþ¹‹ÍÊ¢n°;Á >B±ªùæýù ø K+ÎÁ°xyžÏ ã¶Š9ăÎÇ¿/)µkXñ6ký¦ôËw¶6]1 ßѽ é²Uí£$ý…sC’‘«-Wȯ«ÛÔåI¾çèV.×Ax¹êTóÍßÚÝrMºŸÎš†×¤jH*|îØ|À)ß O¹ªcßW3f‡( ÕFˆ])¼0Rã:yD,jíöûwR2 ÜHWå®ì/ßKÞ@ÆðFño!_µ/²EãÝ1Äž±myvŽõׇæõ†>¼2—Æ´SŠòîµr?Ç¢WqŸåo1¯›°ÄfbõÿÕCIÞÃÜWçöC±6áúýôÞ›³™_3ñ¦#ah±âj…–_±ê}3# nêf^.¸v|ÖÁÛ2ÏNheéEO¸ö#ÁÒŒ)Y‡Œ—yÄORaJžéÊÎñ`ˆ¶KåJC»5`š„òr™î ðñÇé:Z)8sw­™ß¡÷\6ãîÔ9ƒ¾“r¸4Æd2xà1®bHÅŽ£Åt|ÿn¶?!JœÒÈ„øÏ[ƒÃvñá¨FôGÌe6o9öØ/. Ìò™íû¬Ðþ'HE÷ɶøê€¾:¸)êzð Nçx˜c6?¤¯ßkú¥ór““>¼ißÁŽ¢;ל۶ ³vPÞ(5Ûz|ì¹áXÄN|'½Ð⮆O %#¼£ίNÅi¨2£“6RÐg1 G%hiP_=\lšÃµ VµE<ž˜w&#÷’^‚¥’€µ‹Óü90äJ8¼=±þ¦Òã}Ìdv²™út Í5îD;9Ê;×¥Ó -äõÒBþÞÒ‚?؃m» ÓÌ÷o@NÈëå„|{9§¼Ì!}¹}úH/ÆÚ…k'©Ñ,>¼9·Þl™yµ‹ÝüàZë~3Qdz3¤c·êíUù+9&x0ºÃH­ü'ÉC÷«7Îqâ••ó»÷C½ó2|yÄÝ1$Ó¯Èx™X^–1þXa£]ΈêB" ÑéìYÓ'>Í8÷)+ÅaÆ– ÙÎàý–šZöf?\ÉʪsÐ!$ó#–”ĺ¼ã"Åu¨‡B@œ‡-¯ b!˧ʀ¼àJČۚP´7¡ÂMxp‘|j”å£RZ‚›²#&Mó‹¢üæÓ]µÎ%:RS¾Ç%…ûóæj7ß§EᢸŒËBÉ“áZ^ªŽäFÉ86b)ʵÕ~”˜‡;€¾ÄR Ié] n’FDª*#¨²QP П :¦9£~HÖS5$%YC Ë{„^å`›à-Ë™C¬4ߨ5ä`ÑR§X2*™$alÅæNB-Š‚\ÒCˆÃó(Ô¨N´x7ÂBg‘û;”¦Ë’ ˆÓé0ñŠáž¿¥ÛfVž-1•ŸgBþòè±™²‚P§&vºœR§{2Ó"< *ëßC^™LÉx˜(ŠF o€½`þ-¡þ”Ä P$¥‘˜*–@®²%Ûó©Z¯cIå“Ö«>ެ²u~mÚªíÅK“°]650x/z†§C ËÚ#î²b›ª«Z_Å PÚ©9zi!(gB,ývª¯Â M—*4™ë£0|E.ø„Φ gƒ2Âm¼àâY8FªJæ—¯ÃT¶´¨‹ q˜`SX_ˆÂ;wk_‚‡-¸´‚ñÃÛ‹ÂCbcK—Y¹!¢ÿOã«A‚ñü*V çA÷̌î¸.‹ò±ËVÒ,Üõµ0 µœP̋§½£Ì5ßœ«aîf•ý)÷k3ÕÄd¾ëx•Wv€:Ù²&È zì¶*ÈæEí‘Ïî”)ë 0¤û•î©$AóÍ Õè¸^‰öµ¯ÀîåÜöù<µ6ÙÖÀ’‹ %Y¿µ¹” 3VX᤿éK]醯§L^uɆ^ô}üVÓäTðC oá4á‘S<_S gå»Û«oçÉOË”­ï†Á+©°²)ƒ¤Bβ„¡ãý’Zœð­.ÿ¿eÍxŽå·#&gëíßAîþfƒ7TnȯZ …ÙyÞõE!¤uÑàCú•§~-t¤bÓíä†84êvËÇG»Õ¸»Èvé“M kˆÂ`iØ—3Íà„!ËOÛjsËLR‘HPm/q¼U µ²ÞÛKµ$çqaVÀ!-|œØ™Ë+‰eˆ‚Î2]Áx††½ÐÅ9.¶6Bïã.¶ ø—råò<"Ãö¦%Bø"OÏÎÀÉ닸ñLCu=%ïöÎotçãÝQ:F?øb»ûÿ±îmð8=_ÎfžÎ^*Ê÷ijU÷÷½iÁšÜäàk»:øAì¶Tˆ-ûÓ¾iÏüïït®9Q«û+m“kdÕl¤L@‡¡ÄÜ댌JíÅOZos”â>ì–$œdÁA#œÚÀ~ÆÖñÎæ˜Aº›X¨|´*iTÕa€yÑðÅùTÁâ3«šÌb®}„«†‘8d˜ ›8Õâ’>£0ô¯Ö˜B=;ç9Ûcf5c*ÙQñð-ž-§·Ä*ÜA~h 㟀ðDJÆ\ˆÉÑÁø©:N…¹Iæ$Î'i’_Oeƒ‘o£³±Ž–A½zëÛ™o¦¶ô¤UÐáïcE‘þ ´g’Ì í ¼Á] ´Û«LnÔ®ü±À²qÐ%™°£~²©âE´–×Ú±f\ 1TïHÝr&M²á>É(ˆB•+<géËòh!hâ1hb¤]QdC00ùâÜÃ1_SöëVÿõÕùŠò¾•b/ó¤ËvT¾s¿ª!@”†K0Êù„ŒÇ·†ÿ7$*­…èvâÒM`Ê×oâǑϞ—*O*\"'|ªÆ‚j%ÉÚ"’5ëü!e¸ªRZ´T¸ÜÏC•b¥ÁKªŠÐª:ÖOX–Kmwü°ª¼äÎ’Ý~Å;P>囩5A(P‹ÁÝ +ím\âFn'Ù!E«\jF‡É ™%ãtQöC5DQB¤ õ­0ôÂÐÇTÚŸ \BÄÕŠÂPhál9$9zÊ9œÐæ ’X•ˆ†Ž3§ô&F_á8 8 :.lO¯m"&˜‰,|oñ&z-=Ù_ìàÞ¼ ›§z­Ó;!&ͦdÊQ=Zæjt»çÉdî/ü3$Mƒ¸H‡2™ ½sø Ù»S‰žrN´hc½ ? M_^Ò陹šAÚØ"C«8Ía†æ;~_9ÔÓ¦ÝTY£W×Þ§sŠ2¾¶-ÝaI[oÅÑëš;š ß&‹>Djèxýž<84bóˆ›ÃK‹Ä y¢7Ý‹’À14¬ ƆÑåI>È ¨H2¸Šö÷8 Ë}Ê‚ "øz}U¢CÏËÁkË*('.;ëu溻ØAÞ)—G&+¼‰ðÒý©ÄWÍ=ðø+ÿq´€aL?Äþv9öw- 7+sO ‰ØL³QâJ\Gà`7k£¤˜ @nëÔ4=AGÇ‹|\„§¡×ϲY÷æ‡0Ž'…î‰jIÐ29y›5»Oe³1UÇKÑ‘ChDªº"Àï:(oÈs?LO·‡ÇQÏŽë}ÂÎ7V9ô_v³:¤«Iy)Ôí\EG¸ƒÎ$QK'3qhe`••tàbV'd1̈ëy[mò L\´‹Îâ{6ß?g™1šú¢r+›Áûæõ×ÈN· ïDBo¡Õ$BÏÁ…½\¨^R´bŽº«dŒXQ¨BïùÌöêi‚M`²ê“WY,ZK£©õý]t_u w<½Çn_ kv»ycõ?âFÛeâmÂúLC«KXçIu—zl½r1Ywn š‡¢±'qa(§ÔŠMè+-¼kË:ØM`Ï:}ÄØ^°O/œfÅ‚a'WtsD§4ºiCûñ;iª*ž½hz >ßö \Ì¥›XY¿á»çY¡ÒQœáÌÅMAȬlD¡Aê‹PØpTE~ÅŠ^Ë™çÈr=}ÌMúíÕÚÝFÑhƒR\£ýëzFû¼åàÚoÙ ì×èðÚo9üãT~Í,ѵ&Výø~ɲt‡”Œîà ÔÁA¸ƒƒÚK†;8¬ß‚I±º\I×ì£Wò·üí`?øéAðÓdãÈ|žÎ*MA)7/­(|rPùä°òI¹L~æJ —¿ }†d§üa™F 'ØP©’òÊk ?üU–ëio-Ô}€šôí¢ôÝhû¥ê;ªè‡ñb™'ÐH¿û,=ù6}úåìêîÕ“ÿÙqø_ã—{ïÎJu,6 Zõ#ßßlØ•ÝÿSa ¾îeðƒú¼÷Œ>æŒnnƇï=ãÃ9ãÃmf\r®Çé'¿µôä'Ýù(rY¼ˆ?Žhf^´‰tvçº/úÿŒØÅ³»É;£Q|h‰ð]r&,'²Öâk+ |œ4°÷°zç=4qéãù¹Y|’ÃÞu¥¶Ê Ð}Ü)õq§¶ƒÒ¾þûˆ€É«¯>ñ)iü‰;Ã6=Áel>¿Œm| µ¡ÛßÊó»Çk×Tzñ÷ìdä@ž0*eÊr ¹ÍÑ¿¹|[f0·"î­ˆûï%âVhæžtå}ך÷ëÌ;ÄF>üìCoÝ\Ø×¦{å,u ñH:†¼QÔ¦¡qîAœHë„!1ï_B´&¦Ûº ee­FÇ¿ÐPM굡¢…=Ì$Ê}K|(JÁè*0–CHoY†È–°uþè×´5–¬yþ—û½i¥|]ÛèXQtœ/«$¿º/î„¡ž¡hbrRVŽ öª9ððà{Qè)ºPNà"ãþ ñ¾>»Ñ&Ò­v`ü&…ÝÊ^ü&¤ÛÖŸìŽlºï'Ù0övºý„eZKl•9hcdÖºƒ“!:G´J#ò~UèÔ•¸ÅjËx„ð ÿAheª‚Zv!\v-ìÄi< ĶPµ–¼‹Do…ÛÔô©«bÁ2þúeË6¶àÔ=‰'²ëVJ)ðWæN½MÕâgQà‘Ú¶æP”šRÊqÑ®j©5$’šª* ¡lIo„*ìüÔfãÜW5 Õ…Æ\ƒúçW>Ès ?É_Ö<Š™³Áçà›ÐCíkúý<Éreóæ]oo«§p´Û=ÂKºÝCþ>önPʸÓÛÜè´…|â !¶i¦Õ®02œ_ [ ÉûVþ6fÝë«÷£ÌEkõzû èRé üT…Ó_!NäS ¾•¥ùÄɳGË`ðÅ þǯj{s2¾†šWÇå¸_þŽ_v¼&ˆGnJ˜\}hâcøÇ–WjËg€£½Ýé݆ìltÿW‹Ê1÷ÚçZº@ó~²ð˜CùºN( IŸy’”#XI˜ãøM›Ã!ÔĆñêKdX!I"%oû‹ÍíÐOSËÚgáÍ>ë= YQ…Om0§‘R§±€ÄÚðµâHÎR˜ýÁ økÇn®íã°e'Yö6B؉äv¥ÆÇd›œ~ôÛ•vuøöAµâ§KÚ9Ôu[‡DûE¢]˜¿H=,£Ö v|›í?j‰9Äw²%¥Œ%¡l1\Û½ü2Œ&­? …guѯM nUb:^ÔœhΈ%ÝŠS¬<£”[On]N´Z ]ÿ5›Á›d}™ºK#EHû³du¼fñD]s®öJ©1'O¾}Êyf×ceØÑ{Ñþgy"Õ‚Êôm¥½Úá×ÜKÁ`Ð*tîÞ%$”O‚sI€¥(t€.’œ¾¶éR´—i,6)U,u$l‘Hü,âFS£ãC´Ê^Õñù$û“E¯{àÚs‰2 Ú†)WI?d!š*Ögˆ1VŒ€cvž]þú+D¾öû„ÞC:Åv®@eÌÔèí6‰ÂKÂωœ9¡ÖF8ÒøAÑ÷þ;ü ¥ÁC¤J§ÒeÀ£ë_ý,¾MFG:Yý8ú{ïïù-ü­pŽ6q‹Ê»½ä]XÚnžL G^YgþÀò»çYöÏßÍq]›ywŒY‰Õ†¦ šb€v ‰LºóxøªzT:.›a*Ä©"AÖ™‡Vº{˨%µOy ׿£Ò7à³á”‡†›eSÓª¬¡¸aZâq4¿Zœgþ$!×ÅÔò5c\YÔÊX*§-ÆÃó$¸ç:ɬ2¹¢½–<*_ˆ<|§œ«—(0\Nl Ž1Dnª¹Êè«–ê9¾ìï ¾ w¢©^jcvA) _!JTïJ¢º?æåìçt|Ìp°î(™CeÐÙðJ6¾ºJZ<ØÛ÷ãÁdœ¨H,seˆy¦y3V ”ò4ÒþઌÕÀ•¤\ªfO¤9C"ÍÙÅShÊïU~T ÉuØêMr¹H“KBzGöž-8éðPYí2±þIûŽ€ä¿†y«æj³@¬qbf{S¯hm—@ç1¨„ G¼»§3tx/GT–n)äL*Ö´`:ÏëÔÈ…‹„S‹À¡Õ<Øe€Lh_Ú4R‡Q`œ=´{ù8œŒ v6É…~·­Ã×Cô=]ñ2†*gU§¯ùyI 0¤+’…‚Á'!Ù GãÂ^–lÕ‚ÓÌÞo?,Ç2V¾\˹*O;*ùÔc;«ýîçlžô>奯ʼ1n±{§§ApzêžñÔä&âä2¾ª[è“ñоAJ5Ĉ€J¼ÇNO׬›yÚ‘ˆè«î‘×)ç!„Ì:!G¸( Øä•©—€ˆ,w:7tîí̲Uwš_NÔ©~¤˜—Oq úþ±@o:^Xð€7¿ïÚ#Çèxõ1·Þ)ÈAþ»ˆk31_°—¾~0£„Œ÷ÈÀ TJ¿tìIx ï¤kÏ*.Ò%l´uRÁ6€F³àCZ¦åQG[³š°E­½¢®uPm•¦°Ì¹Ñ\øQDa1GÄÛc¢‰ËXdãÅe‰“ ´Fr«TÌ)C#»0(/Ji%>ÙbQV¬DÝä«.“, ª°0W‚5²í½¤ãÈGO¾Ò®r,g‡l¿°vÖÀhßg¿lv¢Ðû|¹ NkÁÈ-ÏK†Ð*Îa˜gEa'j8ð#è0•R ÝÓç3sjòÏaS§ÙÍSköÚnpÃãÄ×Úëª*ã ©”Ý=CÉE8s>}ýÇLa9Aó…9·€1­÷ŠÉH?£ NPúJźlA !)§ÁJ2ú<{I:)9ÃŽsUºŠŠHš¡5]5‘¸6meî´„Â5À`„ÝBú 2®#[v}Nvhöj¹»Ô‘f6ua×p`Að”úùùpØcB¡–ØMA³ƒG¶-€îŒ &‘é­#­ª€³`Q2§¦–ïí·ÖcÅÕQŽÕë9¶RUty%†D^Þ\PoðâË5ÜÂa¹Ì¬Í¦$p bº9EÌyVU½`PF§‡kGàË…Ê;ˆF3¥‚A`˜!¢|AÑ÷ØžbÿÔÂQòŽíú#40§ª„c„¦ø÷8Cã%\îêI‚TŠ.ž"f=ß‚ÚóT­†ÃÇ ãÁ®ºP>BzïãÔÅlé­¶e+p á:‡Å‡§žÜ?̓¾ Ÿ«™þŒî*°Ÿ%|’ïõ¬©4(ÉšÞÌ\ãH¨òœªhcoSoßKççÁ3û(j)ÈÛÛÐiùÒóð1Ì«³\WÒÅòÁ2t_Hó5ši µ~Ó¥!« º†.µÔ«é8, <À¸ߟŽz+õÍJòÈ 6ôŠ )y© lÆ‚ˆ¥#çœÕmÝS[E~Ì{®³spÿc¯ˆ¥'š\Í©¬‘Fë_1§9¡ì)Ÿ*û*]PÓÓb—Vö5ÚŠàDcÍØTM±Ë>µ¡ƒ¹›Eº 0€”œ¾|òÒrºõËh‹üÈ´„Έ8¨l¢à¥–ŠKñÃg©-ɉT ,¸{f,àEÁáEä½*ÊS<@î3.”ÀTÏ5«Ì7?VP>É(y–Ì’\*uh×ȱñ È&Ë– ¶S!7šOúÔ¶œž¢|tzjVà;£b^ ë#­*L @wKÁéi§læßõÁìÕÍwj˜1g½å˜š•L½W1Þ¹:¹˜ ÍâúÌ ÙW…ÏuˆÑUçÍc¨>9 y]Ñ„ë=¡O…^o·ðÔ£Ñ×ü¯[Äã„tŠÖŽg Þi<Ùlx²I:¼â˜Ã+Øc¬žk¶çÑ»y’§ÉŒª¢]%ìR¿©#¸öL2é§ÎEÿ“Îç¢÷À«’˜@V2sB¥žtç:F#Çðù€m…êäªç$4 Àz/0{k¯ª`¬VnØb]4¹PØÍFÇó²ëê÷hŽ£^âÆ*«{ÍÞ–€³Ar%Ò¿lƒë©O:þ4YÄÀ+J†\X§R»‚“pø9ˆô¦½$†J§æ;WØ=á‹RY¯ û ä¯¯·˜ÖÚK˙ߵ~ ß¡Q¡L¼ÑÚŒLà 'ŽŒ¾çì\3µž¾ÉÚO0eµÊ5œaÀ…v˜ ã )h¡­W‰jd1/=ÃèûŽóx¤ãHæHR/X3< ^;È+JQ¨"°Ä_Þè²-!ÜÈ3·l^%¤Žlv6«ÞQÁV 娄Z¬Šsó v|º¬Ã>Z¾\7DeÂ.^Šì®˜Pج&ÍH—«¢úÕ>îÍÍæå¤gîˆÙ!ZÍK Máê‡å~q5»ô;T›©ÙÁÌÈŸ­Ò£íĬ´Ú^´â£ÇOž½8yáõóÙÂÛ»/6 ñ W|¬k «[JÄ+"*õ½!`…²¸ñ €íßà±Áú}0_öûí5­é>no3½òŽâVš_ïí½1/x]‰•Àsï1'/£;¥# ?o6Ìv{ÀØ n¨%ì™1,K2»HólÖ;K­æ³¼üîé“g^~W>Žª?^Ë"™ÓeMfh××kÝÏ›7þ:ëf_¿:yüðé«—ý§ÏOþvòäÁã¾~^U7>³ªÍúžKýÀƒ» öÙÏø/#¡ÛÏ^¹®³ñ@Csݶ٠]ë1HIkŸG}¬7hæ¶÷ûÓ8õûÍꎄÞу֭öævU!±#Œ;`5ºËÌÉ óÉ˸øG˜ÐŽî Š[/ 1l}dëËסž¼÷õ‚ÌýRb¤ÁöiD¼]¥B”}9™ð¿c²€è€¸ø‡%aÂr¤mF åeÐ!’²“-,¦…¡òа‘€®!4«ÅÛ¡xÑÁjåðà×añ7Åã8÷VDÂæSðÔ¥?›}õu¤GyžA)G?a}ùE!©à`wý¡VŠ;X#Æýz‰ŸÖîmªö\CW?¸–²~pmýàúêúÁZñÔÑdŠ:‚ó”Ã̿ϴv‹ô¥€E*Ù·I½"ËèWçq>_©Óã•åñ}ئ;ÇK!†(b±œbÝ SAŸ<[œ¥ }ÄO¬æð•å\9À´>¨ÚƶÂ| p…æçÕ˜ÓFö; ¦^%æÁj*Åð’ÒãlLõÁ •@PZ³K,R‰|Ùòì|A^ñšúGÑ4I”=¤²¸Ip*ÞxÌ|Äq¨êC¬»5È‹’ç ~È ‹F ÒE4^æX“®‹Ûï]G•Ê"Å.{%CPâá9b$å^éÂYêñÇYj–/##ôÑ? §¨(T`߹雎˜[U.–êãuQÀ-¦ÑÍL“äH ôi›þ‰÷C&hÃEƒÐ¿A¶™‚—oèé—RtNnØ1ܨp±‹nV¿IÏ0G$‡|‹–”çœ2µÞÒ°âSYDðà IœÏ%\ ³MÈ’P5íTå¹´ƒ¨£oŒ‹Tâ^¤|¡Û ò»/aQܹ…+å€qB­)%UGªJ‡f”F9<Ý8Q Ð--º/M·\'ÅB á ƒ‘â©£´ÛÆöáZ+!ÕÝ®ÓS­So¯¸Ãî­ è໵J9Až¨Z¹vT–j¹0ùÀ–{tLV¢S^ 9•¥±ôîlžP[@ÏxÅí<š§©Œ ûòòÁ¶€He)œ³+ÞFhO_H“˜¹ b¶ÙPúJ=I(€¯N5bVÛíâìÐÒXZ~¢T>.l":ašt ½pN ûçH)ÐJb‰þd ·²òÓö,Y¨‹WYýPÁ<¬d™ 9q9Z<¼™¢õ,’ŠCß?}v=çØ†>$ïɬp€bè@,_ª<„ý93¥è^óʽԱ!6Ön¿w··'JÅ,OOW暺[‚»51k „Çæj/´ËÛÍÚ›,|â.ØrÁw»+ßÞ(…´0Ûqº( ™Èk&¾sUB×Çinˆ˜Ù›¹…2‹ ´Ç4‹W…í| ùP(‡JTn-wv4éÒ’xñDÏ8ÑêÄpŒwDàÀhVˆAz0–^wD!ïØT0äIàÊM±Câð­!ŠMNWÆl@éEÇÑùb1?ÚÝÅ?{l:éAk7$X¡ÓÚ4ìD ]-äÀ_îhnP‚ôzY~¶[¤Ðã.Ò¹¬á¿=-tQ.&2;Eâ .û¨ºÑr61òQEò`K}pˆa†f¥mÂÈJ¸ÕŽª f%-EÝR½vÇ<ºcÃZÜkò)‚ÈYîã¢.ì ­OE&;uq§6–ÒUCaÂ,ô„×ÊŒ0ƒt7Éš“üCÚÞ¸à<¦ Pí…ð€dR6;Ÿï}¬uF·IÉ5éa> J=‰àAO®¼rˆÚÕ!6iñöfF¸ !仞ÍWS4‰~ ‡ƒö tYïÉM 8§ýÞÞjÇíƒÙ•™”÷µRk;p(odð%kÜ–§€~hþÎ_±ÈGïµ:m Uä‡À½Ÿ9är7w½À¸ vv»`¸ „û ApßðB ?÷BÀ„f»x³5H½ÎJãÔ(k¯rÑ1«Â~_è’˜.‚>›UªþFeA*pìËv³ã#]ìPÖ¯ÙŠ*F/ðŠÂ© ÕK#rs€õf-DÙ¯[Aé, öq©”n·ç~#ëú‡¬À¼YµÝ@¸T ø¯~]´ï.%l…úÞüe5‘ûeX(²}9ŸSr8!!i¿j—.Ž£M 7Ýѹμ=xüàm}ÀÂ%/=€5†YVsSm[3­ð½›Vß,žÚ†Dóö0Õ¦GÖšvB–>÷ Jc¢Òè$ 5ìâñBE]† –0øb ÐAJ×°ÜïU}g¿„¿Ùt7Ÿ|„½„XôOIIÚøe–ìŽ m-Ø3ô‰"‹²+u¬c§‹0V³_7X³mx ‰9ß§™Â)œwYCó0On6Gð.E“ ¹"u¼¿˜fáy i[£ˆlP §_¯øYSæ¸Ô•‰&Óîhæßˆ÷HÅF)€Å0ßá[ ÉöšÊ>6˕蜸ä”ÈaM{%ÞÜv#u‰6jœqn¾¢ªÊ$±®ÂË’éÁÜ\8ùŠ­ÔQaåukS#UºtÖsPIb¥xt@O½õâx .%$S×£ ¤„:‹XœëýnÚ˜¹_¶¨œQö2:"˜„•óÃ!Ù¸.à \:à ¯Ý×oÞÿFæJÖÁ5«¹³ˆÝ2цêJ‡û“WMÇh[¾H!\ 2Z=‹¹N4ˆºû„P4ñ,Kã!xÌ“KsâÉiinÏ«ç£i z`Neóèyœ¢Ów;Ô¾ÚÜ9B¯SŒÐzD-ê½6íZ>k^rç(¢& €ãO&tÚ‰NÅ;ÓÇ¿]ÌCÙ›qjÝ¡xTÂ0¬æ< 3¨ðV fÐ=Ù'÷$\}s„Ó·Htæ)´•BëˆË$žsÎÏ0Æ’ÀõÄü_„xª¾mp† ™w^ÆÀ*¾iÐèx# &ïâáÜ0R œYð#Ü•Ó$.®¤¶êé ²-‘g}ÏOtÇ æ,Á‰!ë0JÎhh–±¨Ã4¨'Ráöðy%Aäs5PùR&„a—ÁiÌ•* J§ Ï™^Šj|q½tüCòûÙx‰EfÉzÑ7gî<o â =%ømÇ“MŸ›0¦jy¦!Ę=À!sQÌf•Çü%O{8§åNÀdk€úAÓù6 «›7œi@\GÔMOíçB%ˆL¢ÂëâØ#ñF6 0©…¡+÷vª}”Ùã €fI$I¿í- ú'›N—3¨\q)†°“@4ë®ëð/§ýPpÅY8üÏhuúY´!ðLïºvÍ-³lÅÃT±É¡©½úlÁoý"É/’¼Z±¦úRèr…3Ê –‰¬BÌ£?"$v<)Z«Šˆõ)/Ы»2ª6éàíݽÞá>:çï„’Ó¡ I¡ÝýÞAmËQ9Ý}øe}Ÿžb\[ ëÆ1ˆnhCì¡z~SE´þP9<µ‚Cô›½f¶BA(þ“ºƒuIãY5g#íÁ°²fÑsþèV† p«t~9Ù jsºÄˈývðùDuøašívôLÛ&å|XD›Hzt½j¸cÈßÖhä/º3%0ŠlŒzuQœfu‚1œA§Hg¶È[UXD™™\÷àÕâ¾°*± ˜Ì„þ휴Hå|Íîþúãh›Vƒ[uí×™zŸÂqÿcS] ¨ØMß„ Ã/q©i<úûxNQÇÓ£Ð'™Üò‹l2òO‡¥Dh¹£óÝW×=¶záz áIv‰hðÁËKtQ_Ý}[5ö)/ à6ï×]è}ÿóWR5#x¥7¹îûCH Ã,.áMce$ŽQ>O&s³T¨Ã+¯…Û”§²‘J¦š`$…K\v»_%@G×8–¾Ž£îÅFlø•qÆ”·WÈy¯w¯vV–²åPªØA±;¸éƒ|Pû‡Ó¬ï\°àØŒ^P.ÇÝ'xç©ÖcòÈÝ EÌ`Éô!×¹s=££ò(÷楅¨qcp\öRRR‡Îå¾…Ä¡î¢Ñ•á´ð®àh°GEÓwT4%îPoSÇ™£nàÞÞ¹ÍîÜÚëVe„9@ô‚W©k¥Ù»7P)Qu ãÇp08­'ò’yI©?·nÕN˜èB…Ø#WøÏ$;@Kô‰)€&rAJã„•êK~o’*Ç‘éª'ª¿§rí+ "aS‘9½]Xc·Æ*yÉÒíé©T•TaKåwÒå¦ –ÂÓ™FÉ"NÉM$áíEO ‡}’ŸÆ«'Ç) ´LGxIO…óÈ¸Š­˜ÂL4»£0Sì‡ñúÕ®Œ"ÍÙBâ7ƒß$÷å§a´ðÊfôýûԤXN{51“`ñ0wô»—/ŸEä (»’8ZŽÐ¡SzQàÆ"º*ö҇෠¨jŸFÖn‚RÝcæPé\`ESbzA<€ eï½Rüè2Ì.ôÒ²S[wE¬ èçIq®Õ‘ú&`a‹á/ÜE]ucŠeNQ§ºà|å1—È54—õá 3\XdnÒ㼦å/Õ¦˜WÚÜªë Øî¸â)Ý (Ͳò¹wŽU[$®z›¥0Íl‘Vühsxe›ŠšÆ"(²ô2ï)ÛèØ~ßòÏ#ÉdÉgÕ×Ûò$›%«W›oûáyjÄ,Œ±ÆA T{…Î]ÒÙƒÈÜsê Üi×PBɼ4öêß•Ê0SPÝ܈¹s€“çšqÓâjHȯh{žä¶2R\º.Š5aâ®QwGFË\æëù±×l*a§§^ˆ)‘=rTâ K^Bûæ©ì¾gqe»š‘Âf–-hÞ.OyÄ*à.‡Šr d c ù‡¥Âá$³C†¾Lç “Jx”® ä…BT²P›òâבZ:7¥ â:…Qó*bÆR¡3(NKôG á—ü@™ØPgÎ)8×*ãaœÚ2©$ç)F ÔÌŽsü]+A;æh P D8•ËhãvaG]¬Z™ ¹®=Ö×çWGáó8Ë]ÌPG¨%)$dì:â[¸Ûµöw”œBè‹QÍÅ(#AI”ͪÍEŽbîÝù$Ø ÄÑÝÀöE'ø-#­ãs¦¡<ˆ æöêGߟÈu!GgåǼ¬¶zçÉ»Qzfޤ¾²kiÅúëæíòCç¡‘4`·•Ã|™ÇÃdÉ­iV@ Îb‚€•F“¸ÐY·ß°¬Ì›¢Åçhš©¯U„&ǀ㉆à}{èÂê iÂ\BÙ €˜V‘!Ruø•¤|¸k£@ü@Á€Ì4°A$lBÃ×¹R«Î˶‡dûKyÝaþšgƒ e@µÈ–9G‡X_Z‚Þ ,=6,Zmå-ªhl¥ù*aóARZeBÑ¡ï+ò’.}[–‰>¥>qkÝ€:Ž‘%£2i¯ÎJCßõ{¸†¨¢mßÖ@¹YiÁî–ï3 Öî\;TµÅ1¶Œ­¹ªZÍ@Á𴇎t} $·½9E}¯ÃÿÊôT® bÇWOË+…µàDªh)ËIÒÑ'ša$A(6ŠŽuJžžB›ÓSçÎ2+4Mt†Ä)Ö¬1ŠÍ¤Œ×{o6?9^·Mµ›ÑÑͼ` öåêô­°ü‚ ß¾eŒ*‚G뽩›¤/»8ÝÐа’«8[QGç!^&†Ébb¸A– «Ÿžâ;Õ‰dF7#œ H êåvÒÇ¿h¶7¼·øß--»þ»(°/¹Ø,·)ì‡ÿOýÔh9%;NÇúV׬¥K§¥%pk,àœ*p± F‘§|…ý»+–” #pdˆ¨Ù¥IÑ ­ðÍšJÛÁ~NÛ–6±æ!¥®Ägq:ë”WË•`0Œö÷2ì‹Ó°Åœq>}Z§H¯µÚ–$°ßÔ®”<µ6B«$¡“`îŒè^¦ŠhúÞt¼D1µ7¸Ü—Ü;3}”íŽÞG]úÕ¥_ž\…—~Pß]!8 ÔÞÕæ*L 63Ê|'%–3‚fRr|ž3 Ë"àÿAPìåĵòµ$ÄMkwŠ!¬¼ ‚ÃÚÀýAínüFa·»ŸÂ½ú×*RÆLëî–·vJvn³÷€ä Åh»)j’Q¨>3ò+ŸC û³vìKÇãÐm]mQä›^CµÂÌéZž¯[5mæ^ûnT>Êë¥êkñ¼Û½ÚFÐ9ñÕÆŽv¦ãß’qU—HöÇˉT>gé( q†‡ak­›ïw½Úíi}A9f{ï±gL*¢#R%D~#h³$HÝ .]ãë\…—_ C¨èðÕ9}mV~¡†¥z7ëøßX׺®zÞ¡ †§}+SÀûÒžúu}?Ƨ8[ÓIŸoë+’eâcâ^œº’›ÜæOPXÞÒ°ÁmZm ²¦å j Ü]R@Ô|ž@VtÈTÃy¤žãS§hÓKÕ]%‹šÝ)]Y<¾rl Ì¾É,²a[Ä”ùR[4\‹Šâá¥Tèr×½x36•èåêÕÇÂQÌÁ†_,]¯~Ïx•îÿ½ÏO‘ém>Jäå”#Ëðšš­.¹ R=Ko“dN@s£ä,OÐ@ˆVÃ^ô-¤¼|–‡`䘌ͳw”ÒúAÐ#ºb´çh·Ö¨L åõÆ"†à~;ƒgfKíÞ½èaÉ;R½’¡¢YÝCœcAãa;ØhEi(¸A¸PuÔã:Ї‚ÖÜÚ©Ùö¾âíï¸ ý5¯i®\艞+4|ò±’<•ð…`9Nˆª'!+Hb šÊì¬Å÷\¬(ƒèY+XÑ †>ñN¥‹ˆXÙ B^]Ã*õ6èF†Ò–¶¹ÊÝ?¬÷ ñMß-¨fu ÈTªÅN¶l‚ÞZ€»)%âè¶Õš>_:s&Fåìd…¨xk÷æ8:4Í(Úlá¡L‘ PYà_´+øVÓ¸¤d˜kšgÙ"ÄenΖJ—å­¤ŽÞÜ9}OÑ.¨9À+'7c|!>cÐŽÄJ!xSÕ“z3\\˜fÖˆ³Ì„™ÓP% º#¥òhúRq´bŒÓ}i󧢄\Š %YBÇpuÄÂI XV™Ó¨Æ±ãödv«ÞãÝ­S%%Il½ð}¾7-Qà@Y¸L·.Gé3”bI9_éR‘m,¢+H¶S@!2’ÀÉŒªdðDØ# w߈SfZ F¹UÁ"'.Ö÷åÛ0€>b=T ö‚ï}5¾{ÿ«Ãñp4Ü¿¿ïþÁýñýƒÑ¯îî5¼÷å—£kò‘þ¹ñ+=6ƒ6æË¸ I‰õðí'“% .›-3ºlóŸ8Ž3ȃ¸?ææLf+tdm*ÌÞÂÖä^ ØXÇDÓbl|0/ðð{çë¹bÄ EGÛs<\`åv7 ñÒ¨7pȼ»ˆÒ¡?N[É Ûö6H 6ªÍO¬(SŒsìy…{|ý1oµ£ããH«o X—§[ËÓk‚€_†ý™UºáŒùàý¬¶å]%œöÆÁ6¥ÀÈ_ë&CÓáWÂ6w¸Æ;“6†|F‡æu¶"È[|¿‹áŽÛ±V–}Ô$‡¡Ä‡¢örQ®Cãr†`׊ ÀÛWœÇƒò€ÔR»»‡÷÷F÷îÝ9¾sçÎý»_Þûê˯âñ—Ã;÷÷ª1ðpFü.« ü~Ó»TšÁ7êýŽ-}“ 5`IiT a’[!ŽðM¯qT35\ê^xé~í4œknö3ؼH§é„ì'¾¯•7±šÕ{/ÉRpÛ"$% ƒ¶ø!„·³d±fá*„GÁ“êoå+^MeJ]~Ão0XÑ:÷êÅô×Ar¦7"ó.²J£›9D‡i•”é1=`l%‚R©Þ˜'È@TDÈÀb³À&Áã›øûë…¦u$7üd]Ö¢ÊC°i(—ˆ°cÕ?¿úˆ&¸ ­ZK­ýb5ÍÍlá6šõ9úÀÎý߇óöš[ìÆÇP´}Wbm¾¨©]»ÍORîá™ vuòÎ\%Dë.Ð.i¤Ô<½P‚(Ž-šdgéÐv‡1ìªîâÂ%×}ˆ"ãS<òŽpÖ@]„à¤r *ˆÀ­g¹—Pþ'Wʳ’º2O§¶üÔiiö‚õ„ 3A+’ }s!Eëá#ó_)l^Rõ˹÷2§&NºXäKð#ÔTr²!a,ðhë´äU>=õ™„J”ÈV¥2‡x߿ʉGôâ_<·âp:M¯ëV„>jeÊê”Dg‘Ù±hÖê"Þ‹ ŠE–TŠ%·“p“eŽ–È*"¤Aví Q™¹ò;.2bìC‡™·A ìõÖ·)ÃãO~Ùva«Eêu»[ NæjÆå•˳Mp†­Î/Iì#ÌÔŒeýtÿwr…¥T Z@vÓXÈ+Ûd’’1ÌrB*@¾À´êfîKü»¤‘–#3ÔÈp¶ÄOTdÂ•ÎÆF'qŠ…ºaÜ®VOO­ •.`Òý–Å2žœ¥Â<:\­Ì¯¦`£—1ºº4RDM(MÓD ¯‰°ZÍ­–›g§ ;ú%,€ô¸ÝˆkßC£ÜôE5²uý›ª‹ÿÁ'~åÌ“ŠEBM aüÀ›‡Ùt€òéŒ(H˜Õ4J÷µvßЧ›˜ËµGí8n`_–nïÛ2yCêVTÈÆ:”®¾‡z¾òÞ×»•N‘.a|Œ»Ã›¿I¾õ†{  #~QÔÉçÕè¦&:vSDÉR!n?ž”<HÀ$ ~‰Ù¨Žj¯W>‰ì¨‚Â[”ÀD†G`q<‚Š%›ìûm/9{PÖìX`“l¼¢>Ä¥´7`.uÒÝS9cž3²à9q½q—L9òª…Õ§Š0ˆ Ùä+ë…½ôt$Oè]­4%W#¡º\«#±{Áü"ô@Ûxc¯†•Žg7]Ÿ x~aº%   ª¥xo¨Í%t1It¢rÜgg¿.n°~di¯ †$ù”>ÕŠ®†ìUÑp7¨)ùCâîÁð=|Tˆš£HvŸj\Äé$f ºŠg-Ž7ø(ôJù»ùçóÅtò—?²ÑÕ_ü/âè·ìëi{ñ>]ß­¡¹×û9S/þg[ô±ècË>†¡^øÓÕýIaßL»(}°úi,O¿»óúwu[ ZÒø0ÜË.žø?ïâñ÷¾ª«MÌðÝës”¶¾ÄZ‡åw8ªYDgµ^qOK7ô‹&½ŠÿìóK5 ÿöèet°·í{M›ÍzœbMÖ3¹•uX(>áâœ1#òJ¹Jt;o®[£E#üi•@Ô·+÷: ~¿Ü9vS[(úE¦(ƒÅ|µM_4ÆšÎ]œ&Pê”ôG¶YÅ‚it2\…f¯îà©‘B°%™qžÍA}´ÅT+%ãç*ûÁ¢_—±€ ÒÈ$­ËiC½Öd¸ÌÊ<îÕ':Ú Ð[5^…’Y°ƒõYdúšRë›Z÷ŽVù‚¡>Ǿ\#¼Ud5…ßüÌ¢<é–oåÑû–²ŽÆ[²_§ŠõØ[˼ü¯ ¬âoð¢úPú‰‹³®¨’14ÅA2Œ9ÚWsý4-®Wc,+² „ê:Âu€Ý‚†•úflƒƒSRç`b¯(*‰Ú—%-Šª`€¼[i+m:^.˜¬fâ¡›«‡ ËœF'oaqà§1ºé@w÷õZ†R“Q%æWëW– ô`º±Ì‘vêêR(LÜ~–:€ÈNi¼Ê²PóK¿ºWÙhP µ¦\¤g3°Í`‡xø6†ÊßqßÑ0ŒË¬ŒÙÈ !V`r*SE¨YX¢ŠHë ¹x€Úid@Ëð ªù«ÒÆß–žXêc\ÞOT£]~åwª²£k•¿iyò(C“~· ’^øËõ|ÂØE4¥œ<ÐM¥£&Z blLL¹{~à [µ_ !F‰1Aât¸4„LÅ.¤+xbb©CáÈ1dÌ`µE.ÊãÁÜŽW;#´Rº’ÌÆDQü\•íÑ@&Ù¥TWDÂlIišOÞriȪi߉+Uüq½?0 Cý’S–A+ªÿ<ctÚ¦_ÓAZeð]QÈ}z½ª>h‚•ƒNn«þl_õçk#Ê 5~/]€b+q2¸îé…FSL%+ŪtR“0çkˆ÷omnEÊÚ"^Lü7ÚÙÙù±±†Ù*Fë}1«Çf¹÷©éq%ÒUIØx²þP‹N&P~±alB"˜‘x]¤(Q¥ŸÎFºÈ% cT¤ÎâóÁä©«ËÓ 1á苨u3u,8÷*ÔçMi€pq•ÎÌMgh¿’´[™žy"HØ^©x3w`,J•Ô±V¢Áü}N¤áD…9:€ÞE¹( ŠÚ‚ƒú¾‹ÀÆaÐer Áô ÎÉÂ8yMj:鬊CL»É;åò-Fe0Çã#¡Úê¨|@Ô|<þ?o(~ÈS ð½3•ö©Ì|抹¡ÎMCrlrÜà‡°Ì5ëE=o«U%ÈäAyiÈL5,x16ï¨ÑÍ5dçCRŽšYIüàÑZ­Ušà ’œá§PFo½bÛç—­ŠÆSþæö—sÙ¤¤°µ%å©7À¬Ø¥Ëx ÅVïvŽ5 “|šr]ÊÉfÀZ€ÊSNò& /Œc¨ àKØf½Ù•:›¶d›5‹a2k¨ü«TÐ|W”õ6ÆdnµI=/%ÈÎ`+õ¨ˆ2$M;=LYÀÓÓÿ·k-W»<' F§§@Ò}aÍ Âü%¡¢<àˆX‘A—æÎ\—j’ù⼋kÚ®ˆ£âœ ÈÜd5{ðù8VÒÕTæ{d¶k¦ ìBÖ<£ÆîÇXÅE«'àØHéÙz> på`‚Ž|•ÐÁ rsÃÅÁ›5Ág$‚£©m®€ÍFv“ÎÆ¦{°~œg—eŽV„Ü…U8Œ‡û{²©Ù@Š×W)<ô~·åV¿€›!Aઓãv;Zâ»ò€âY˜ɓ«‚2ù\¤Ù²J3—Ûê§iÄ’!pox»»„¡¹êÉ4.§PØ Ð[«;ѵê.ŒÄ—Ý ²¾Õ®0 °8ÒKÑçÑœ µ-±f‘ÌŠä}÷‹È“ ŸNDX9=S šÃ¹‘{Á”E¨¡Ú=.Y‘T§¸!ⵚsø¯„C¦:Ô”âÀa ¦tÛ./±x Z ¬\Od€\+›9BÛÍ0ÅÙÑt¡¯†„g³l)yþ¹2c9KÉ €R=ø´ÏÎC1â2øð-–{eÊr? GWÞãÛ)Q\°>&…Î÷XQªW0*gÆjÔ0hÊ*µ‘w‰Á/ˇ7&°ž‚ò5°-;9¥Àae ÊšÓÉH\X:ˆ¢çr¬½f/<ñ„jÙ€ªáþ Ë x™5«–SMâ»§åηSzººV›b`¼%³‚þÆ(@V 7 &ø+˜]°_Vô’ÙEšg³×Íïž~ÿ¨ù¦Þ𠛊ª„2'$½—ùhlXÒU_õ²ÒŠäfX¯Ö­qå×0{Õ¼Þ¸µJï}ÏQ…/B`uæßÇqÌà*¿ŸU0¸•¶¿ã&úÀÖ‰í÷ækÏf¦;Qh f|Y|B¹Ç:­Èu}…èË‚ÊÇ$³‘ÂU°碅\~@õ¸(IDÅÑǵÜNŠR×¢ý½äþýƒáøÎÁÁþÁa2¾7¼w'6íïÞ½{ÿÎ^Åܪ{ò¬®Þ+Ö_«7°n‡+3 Lbxߌþpÿà~r/ì}&ûãáþhß¿¿߯N"4þ ‡^>žk~2Kþ#L3D,P qb_ªÅzðµUãILÓ"™\sE¡ü2£ÚdaBýЗJËü;ÑèÒhž5’TË 1V€Á";ó^ûÿÏÞŸö·q$ù¢p¿½ø5ÐÑ`I-nӦϕ-¹Í3²¤+É홑ùƒ @‘¬€B£Rp?}?û“±eFfea¡ä­[ši“ªrŒŒõDù¾ôŠª5ÆŽ#Õ÷ÉÊÔZ—JýJx É'nJ¢˜c¤DBùp™]X5½“Ëÿ·¸ºwòîÂÄ.~©_ö¢üU¯Áæ«“Ðýyª~{Wfö›_6÷ïýy˜Žݽÿùý»Gãìîgwÿ|84¿gG~¡ËfoŽ]wÕìg¯W/øûÚæ=ÝšJ‚`ШVv¤ÚRÀÉ&yÕº­ŒìÔµþMˆÛ°¹ùR{ EH³‘ô3-–±(Nv¯1´üƒB«u±yóŠ÷¨•8`̘rZÊ¿¯²ôíºGþ€çëå%U(ð¸Ê&ÅÒ‚»ŽTG‰‡Dùkxpb3"3˜ú(§-ñkÑa¡Ã$ùšwë(¸©ª ¨ÏXr<E‡°à¤Þ2»E;0—n2ö;A•§UðÆ%¡UÕí :0áVsÌu•0è1Þ¯.Ö-6¥ê_*+[,¢PŒP1%ÍgkêÑ;¬Œ9°Õ&íPÉä6)Š·Ú X’ѸêƒA‚*À*#¸î+¾q”ýùzGD ³ZBa†²?‚Õ×´Uy?mciÖ…Ÿcអ™Ê­+—vÕíç€\F1”m3„y>îxË܇0êe&ÅUœh ·±kåㄊrd¶w4ìÈR•¤@Þf\8 ANø¾˜aŸ¶h­Nu[te®§Ï^|ÿðÉéÿ<üøÝé«Ç/Ÿ?üæ±÷_Þ¯äTYžî`¥6,æÂxD« )ÏOâ®jéœB‹!DÁ{„Õ=+攸bïE«}‘3Š”.¸¬[¾é &Bàîjض¨•rgx÷Gî¿Äž~-H ¡«š‹)ú xßCQ©Bã‚áW…‡Å…ì»zVÅ9”Ü5bÔbIAqŽ‘bªùÂù4&éÏëä¸sÓï{+}Ó•íßÙgm®–Å4]æ#9ƒ ZÙ."RM¶¸>’‚Īšžp™¶d(y QÈÛ¤Ü/ÃCƒ/9ÚR‹væ%™› ÑL¸*3æy¹š]WD8&„F ºTÓK!‡‹»ág*Í̼5·ébœ-Ž7’­~¡Kçz©µ‹>ÿ¼ÿùç5ÈsãD/J؈úªwx`ÈpKŸöŸÆìôÃu]þ.Ú¡(ž$¸AÕj¸ž¥z¯‘æÒ­ÐÄÕpË-HF3Ü)@$ò¶'†t4ÎÞíò @+fqÝ$û*Ɖ ü\ÝcÕéx­n@DÚÔ*«Ðã|´ô&sâͬ³’@q2¬…„]"CÍF—݉Ò7ækWiOî ×ÔæôÅ´*AèY¶:û”÷~ðw\ª‹ÑËEó·¸u'G#!ïxëÓ…˜ FnXí2›œw0ë ‹g³¥~ðÈå;÷Æv¶¡Ís+'¼¥6Õn«¾ ÊVù»¡\oû/HÐY¨oNV™µ¹§ÎƦ¸ %=Ú Úäê[3°>0¶é¸Óç}ßÙ†>üv¼cf€'²f1Âéì€[º3¥Ö+1EÉZßd”Ž%$:m”7O’¦^³}Ôìàb=˜ù Ùã?<29N^‹Ï!`^ÇtDZgÿŒ7ÛÙw¥Ÿ×\^º oà ‚ªBÆ?ÊÍ!SMT~/È+ ×I´<ñ¾pǵhnzõªpnš·â¾+Hœ:¬ÕVEý–jìrŸÏK24¾Þ TÍ{Ï}Ñð¹ÂyÛ1êjíÝÇÇ‘·¼£W‡ççÝË~Ó•½hÔLÚÿRë+9åá Õ‰QŒéCÉ=Xbu™Ú•3÷nLT™_$‡ƒ »‰=7“k(K`wDÀÎlS Uˆóš³¾c”9w•Å1Á#;s(Ððfßîp©pÂG”Í}.×s¨Ëå}¹w±ôz>1_ÚýévÔ“ófôJMÅ¢X‚>à4m,cdÍø¦£U™•AÁÎ=±oâÍ8E£–é„0êë˜Ê®æÎ#€ì-ÃêAµ¶0t‰Œõt—l)äÁ’Õ ÅЖšñÖ #6¤mf‘í³Þ 6€%Òt$±m°iÎ`% %l¢Ù|8ãbXLÙ.$˜ûYõŠ˜ý¿üúÉçÿùäôéã¯*m¿Ì ?¿ŠÃêÒnu ´ïÒ=(¤Ù/Rÿ¸â„  U…aÀ~݉¨m¬nµª®´ †ât>ÏfP³Øë¤SyA­hßL«]ðûP"þ*-T›Ø*´jë.ue&ûºòü«Y‚˜)kÐݧ¡}ÖþU>Eö+Ÿ“:޶„bTŽ®ü‚Ð8'˜p oµãÛ‚ëzŽy¥ú=Ó§Ú0Ê_ç #Lš6?݉&J"üFí !‰¨Õ¿T/'›&(ÁÕ÷ C€ÝʈÀÙä¸I6kû«Ý1Œæ%Õ”ÓF›J[öÐn&¼ûìF~ãÇuÛHçû¤rä¥%BZÐ ]¿}Ì{@‹¥ºpš'VÞbUC=³Ý†÷XÙ„dØú3ÇpÔ·\Ö*¢P^ø4Z…×2L`kD”<ïðåÕ:û|ÙZ°Í³t1Éü¢;¤L<áÕmEÛmEžÙN¯“äË$8­FG uË“ng·<ù;3U–§Jôˆ¹?-W(í5Y±k¢ãfÒ`ÿ=qÀ÷P… ðÓÁªÐAÿÁnŠÐT[DcGEG]§È˜¡FãB9ºÁè+«éÐ,¶9ç#Bp0,”ÆJ:¦‰ÎD¤3b3\…ñz” i•w?’ê#7ùÃYž·ùÎ ¨ûG8Ïh!2j4èìårAÖNøéd˜œÈóhƒü¬fñ`e>æ3ç­%§Ÿ€:†9A…®ØA6EœÉÚlàHÏ_ÕFˆ„þÁxÉ?ÀUý£Î®Øo`{Ɇ)>{!|×4XüCßnï‘õä&obE—›¼È|¹iàd~ZÈ)G`gŽ{C¨%VRÄ]T%:8¨fKÐlegKÄAê2 ÕŽÖ»i–2|ž6ëéÄÚ:#ŠÉ8-<›r†n°a À‹Äxéa!Ðs°Ù»9šXQôÔ¬@N5õˆ‰!B`Ÿl̈âæ1ÂÀœé*è¹U y+m‚:P!_ž`Õ`[fâ‹|œ1t9V•6R'Â9ä¾ï$ ž¸6à‚:ƒ¢§Š}qnÄ…A›¼ÌÓ|š¸ÊÀÚ '”Ø(·vyE²¿ ê|”ÿäÀäÓ>á¤å 7ò†à ï;ø!˜6‡êÜÜÏÆ üž¨ï{èëWŒéƒ÷úô0þ*ùú'~ µïó÷¯[àjB¸SqO"çß,T%u>ã×îf8{ݲªo묻gƒÁðö}½ó¡Ãâ­·7ÉúÅ.ûDéöáζÃj¦Ô¶™Á|ÛDb± 5Ñs{œ´_?2Q‚yÍ: Ùˆn~<ÀxŒkãw<|hTRË]B*ðEŒ9Ê—¿¹CÂ邼†µ:%@»ötÎm­ž(OnP¹³c\ïH—_35òÎêü|ÇÅ>­‰ì$›0B•ñåûž‘™9 u±‚²2þ¢URÓwz‹3Ô¾ÏÉ>B¬èØ>|\åukf륃¸á¤)[! , p/ýä;#G´ØÞî @+DöÄÔ“öön4MÍW@v=’#9÷¸pÿm¶.#AÚÐ/¼§_%w~ÝqZ±ÚùºýùÑýÎ``Ҝ啕üƒt¶¯’E åxcŸáäÚÍpŸo—Ç·K0¥´•`V øj?;0ššiÝñ¨}x¯#×`eDû_|Ô/ßÜöšˆ>t3òµHGÖ/kO ¬º3"pysØ÷¿Qõ-€6ëv¥Ù%ÃçáÝûG胞¦ù¬¢ý˜MK—ËEÛq¶ë`Âm.ÎOÞlŸ?8Äa`‹uIçíšÆ·‘—]ß{çº?¡í<½£û4=wòª“ü€Ïke/6½)´õ%›å’ùxᮯŒ>ßr ]‚·é8Û%74-Æ«I&EŒ ‚1yøü”D­”zÕg@r!éß#O¼—¶6»œ6 Hœ·FåBaz›»µ9K訶ñy@€„ ñŒ¿‚A[ œ8¾ÆGe=ì/³åó6|ÚÙ·†Ùf³ÝKLæ=_ÍF\Tu¦+Ç¥b±â¤_yÎþT{„‚Àê¶Aâ2̾KÆÁ°jfË„ÃAÕé _:íC÷èóGH •1k£~°è¬¼Ž3±eh#ôüæMЃ*ÜE+GIÚ>Ö„Š54rd uHòQ²x¤`Ù†N( 4ÂÀ´¸½ªý›7“²ý ]=ÉË¥ ›/ñ‚êÓép‡K]È…[ËĦ¤%%[ûBõà&À1»Ìx,¹>œ\X#­õG ™Ñ?ÊËù$]G¨=LÝüëŒCmfÉùl\\›rUTà,0öšÓ`ä¤a\ê2`ÆŒÉo­MÍFÎ=?Ïß G»Ì&s¤h8%Iº@¾”ç¶(ýLÈå‚|)\ÃþšÆ]|²D—ÿÑ.‰ü6BèÖÑA¾@ÄòßÅ ;}ÇQbE,¤âW—Ù¯6F4vV»Ûü,W8’ šY‹¬ÆŠ$UIS€@‡:­™ñ¡ vZfÍ 2ôšC`kþÉ "£:a5gõÛÕpìAEVŽ%=󟳇Û/¦“õ T¹¹‰—äS5XÖð=vF–è@¯p½u)nŠüA285e­`7¡^ ¯);°¸×h²IrÖùøK‹sh+þÜÓ½ªÛA$|!Û2é²Xr˜·ña Œ÷!¤q{²“øžN.ˆÁïôë†*)‘ ÞßY7b] ÖÔk®*¡(R'žÆÛ@.Zºç;e‡+Å?‡>¥n>“Ø:h.Ü„/*%ÉcŒNˆí ­ '­V8¡Çï²Ñ gÄ>= ` 19›0t'Rì.‘×ZHÚ³qºÓ+¼FfÇàý69{h÷/°Ò%}ãk,®ú"fóá}óÆ(Rm€a &÷0µ%×ÙÐ <êo6âĸæ:Cµˆ‡´¿µð#ºæ´Ä9kXÃ)cÓF§Jtâ~ ˜2DZ0ƒÝáN»0ÒL¶,3³ÿÅõ¬ g®z»ÑSxy¤‹<è')O–D s°JoT˜l{Ìùï€<Û±e@õ–‰‡ë«s %¢ÆÔ{åʯËPËËÀI‡Üx‹q P’xû5õߪ˜PP£ªÿuhiÔµ,æÉ¤ ?wNQ:h^S¨Ï'u7 šGáh9 ÓO[äšå¥puŽQ3’ã½ZçåÍ£Ôë´ÈóÕDŠñBÍaý„9ÖP’R®Ü4hîúìÓ†d ˆŠ’Z1WdY{7pÑZ/èj¸ö’ЈˆXuΩ °‘1IGò0…;ŠVǼÍ$´k¾tz^aÍÔ‹¾B”dÙeQç"s0k8 |æÇ£ú·=Ë5qåU°Ãd±2¼c(áÓÂ!NßÖ•ò/&¯!FÙtýQéÐÝ—2>[»¬;,å,¾üá²î¸”œ9˜ã¬Úª.Þ·9(y‘©KJ9M’ßîrà…E(Ó€·!±6ú÷šý GϲiÁ- 2#÷¢xŒÈgh 9÷ÆXTIÔc Çè%O¾ kÊ™‰RyT܆«t‘ã”ØÍÌÉóÿ~õݳ§·í²•ýºfŸY·KaÐÅO4Ø©jà§¹_4cföÃ,×õ€(éÕ„ƒ Ès‹{AˆÄ{t;#ŒMÁWæV}·ï28k½½þÅlºF^ÃÛ Êç­1¾ ¤Í™Ð¢VJÐfNõê)•XY!0`oÿÜ|“Iô¤ˆÃÈÂ-©S½×D\“’"|qAõ'R‘,Þoª«ŒXókdhq,†4XaÔ‡RûýFB+j%†/¬Âš5E0ñ¹ èKÆ*9ÞŸºp²¯.°Òò úSu‘»Rë6p\óX¾ðò:²H•TðW4놯¡M˜ÃÓ DIbÙk@mÚLb4Бá ÉI BØXï ̰Ö7k„–Îa ïOXõö˜-÷±WK$&І€åÁ]Fð¶PˆU\¯c?x-D'øŒT2±.à„v˜O SÝ9W¤”-ŠVï#4ßÒ’Ä…iõÝ6‰9KBó)æh—.#Ê)¨&D†ùB±AÌŒ»©DXÒe0 €†ºRø~.جˬ,/ üõâñS÷©µÊðIƉöoÐTú6˜/ÐZÍj±*µ:_@7¬7r½²:•ý]½e.â49‡ìÙd²\œ\╘‡ ¡çº¾£{UðÝ0f|“Þ‘‘Ãâì:ûÍ·o|óåžo€ ˆÈ­j]¬ó>N”Hœ«jÊ2Õöƒ.@i LjÂ*Ù<²šûÃyF—å&"V@£"Œ}¼Ã°}v4‚éê ‘!Ç3SI„4Yö1\WË'u-âÜŽtC\Ž6Mœ¿ÀjæÓ¾‘/œ+/}>Ðð,;¼ÒîZ‚*˜Ûl–Ývdl1¬áÅ+H¾ÈIOƒ¥Ú²â†…)Ø_ñ§öüù\@D~ é‡|¥Ü°“bAþ[( bº5`³èþ‹Œ„Û/Üð(žDñµ¹Ò˜{s¨w€gi¹ÈUz¾1ªÉ O_aØ.ž+»Ó†áöÑIkÛ•&ͪ.×b°dÞ \*–›C“ƒ 0‘Õˆ»âî^“½Ãd@Q¬Îµ—|½–´äÉVþ†„i‘4’OÌ>ñ„P7ÅâÓÄá¶"‘«ë†‹ä†Ò (+Æqã\ðFé ”íO‰æá@<À·,™äŒÄ®5x››4k“—ùÅ%¥=\a¢¼d„¤e^ž¯œìDvTˆd|ZêHÌ`tN±$÷8Réo#+Éâ”éUæk#7 TnºÐ‹|šé¬FŒ(3Éáä}À¼SCc(¾«¶Bø½M ¼¬ dì…ÖÓ[e©^†LѼ(‡ãqNdì °}ÆÀ” «Ÿkó¦jJ#>ìGR=¡Z–³f È]Ù’ ‚ N,EÛˆ¢¬dÏèœ#µg¼ëäMzîbÜ …èœ 4Y»ÝŽ ÷lÅ”^­U€D›#P";c¶Q¦µÀ^Ç:½ŠÌVT †t«˜x»Ý½,V‚öãpt¯q£š§´…Q= Ý'x0ÄKm” ã©Yn4¬ FmÃþ4AzŠ9)‹Z1íÉ"s~TIíÉCK W>öÛ£ =6)5'Î_el˜ÁØÅ‹U½YʽSz¨:t4Ì^¿ÍÖ×Åb¼qÏ1¹á¹!J³²x6M[?¼xb.p*Þ ·t7AÀ/'ã ¸û¹ïq¡¼f(ö8AµÌkn~°ÇCɌӞÉJŒ}§ õ‡.1Ö+skŽá~]Ý…Sås"ˆ+‰“– 3Ö˜¬{Ññn;‡t=V³Ÿó¹?†óIz!â<ÍÙ†Mšž3ô9üx =reLôMzX¹*3Ò¥"£Uà”Þ`g×…Î&XäB{år¡•6·¦µë„ªË,ƒBî)ÝG±ÛGäº,ð#˜qAéV40w/ˆyAèš¾H¯éfì+f.l«P½WW‡À¥ü]š[ê¡Ú‡ÚÎëË ù¨OK Ô]ëTžo(Gm L3®÷§–Cý#++Æn±Z &a_ñËÜçÀåé^W\/ðtª‰2Ìr°^þT”H¼§[ÿðÅCÄ»r[ÜË|ŽN ¶cÛˆXQ¥é2/•M¶²þÕbLXb Ò…X? yؑ٠$U¯gu»7T‹îÚ‚õY?h!’x‰øôóµ™sìžë½´²m¯oQz€L¸D\ûeÒ„…ïÉZ5QމÌr‘:x•UxŽQÆ]™C ºÆ`òš_¦Ð­ø ‹n mÁÃb:ßbp4\SÐ<†ó!>út…´ôY)bhH”Uéã·®©Ønï&CfŘã`@©Ð—¨*\W¯ô±jfbù?¹ì¶pŽm5%jø§Þlħ¬Bo–8ž%Hõûòr9|õå°¯ýÜš/ÓäÒÐËIs˜_@±ÞAÿÐÕ¿j~ýøË;©ikQÓR¬™¶qiãhÏ6îFÚ¸»g÷F±ÙxŸno‡(¥˜’FÒ£VüÏöhã0ÒÆážmb­ð§›ÛÉÞ-qÍ䱉àƒÍo£fv§ùýÜü,^>°@z"Æ[¹ƒÿå$ÿºjn¨véxŒÕÞi33).›cUXËÌ7Ž&ÈpM ë„´›M[ÙªéòY÷´dFÆ- Ñ´891ªuF®æxæ? '¯o9ë’n}¢>û´E›/̼͊ößùH\鸼žLØÑУïµkáØêÔ?fÎäa­ç¬˜i­ÑÒ8ÔR3a2sy¯‹¡¢Ê}G?îv4;;~YsEîœ2‰þ™ùÛh’›À#Ï M}eƒ® x*¨fb6ÂlLåC¾ä ‹‰î.”eU f¾Ä;©1aËáÉ~7ñæ$€kÄÐm xµ²Csìe*’å5©Þ"±'OÝT ’Ñ(‡FÕ@(¹i?è"6OP´…ÓJÎÓIBR² G‘-³! „šMPïË,[Ø—ÄùMìä[˜wç7Ü®IbWq~®4a6=¸\äŽô³|þ·[ë½’¾ptóµöªó1Øý9úPÖÜ*ޮнÀæÃ¹×Š @µ‚oÂ,_9(~ ÔPœò÷º@@¸µào!”í„ý1⌠Dce¼·ˆVNo¨M±·l ’ZÑ µ#ä•ÑKãWGW!onçÿ½‘êû_UF¯¿¬ŽF‡¿Ôý°ý˜„úÁÞG)öÜÑèp{qbŠ‚Ë,] ^_Ÿ| úïK¤@‘þÒ}ëÝgZ:@G¡älv˜#ì;ÐÓÐÁŸ:xÄ\y‚EòLÖÎÉx•§*4Ö³ý˜>§ùÅ¥!¯ÂF¥Ö—õûEU7i¡R¿¸-?91:Î/-ž¸Óx×û ¨‡Aï„üAÎçÁ¯rŽqyxÝj: ÏëU\Ždc0ƒKkîð’ ˆ˜íÝšÅâ3N±ÎOϼ‘¿—¬ªÚ] YUF§dÕãuRúÏå ·vg5äß{³>ðyþxqýúä%IüÀ)]oéç0h?, …Ù»ñ¿ÈpŠi†‘2”K¯’ÍY3Ù>Ȇçâ9Ц̖|[Ø€³®›¦kônê|¹IatIJ–ä¸ U]D30˜Pæy¸ú4†¸të’JÍ.8;(—ñ˜%É%‹S,úÒÝ9줫 3¿¬Œ5žÛø»?mv'T½>-ðútÕ9i¢Ù©2×㾬ꇤúh”¯¹9lã,–Õ*aƒLd×ÚQ“&^vH]R_€¤..Í+ª–Z9…Ì ×§sÁº°SW¡B9“üÊV”õ ?Ñ€b_ÛâË÷k » ÆÔ*‡r æ¼ S È1Xz@’û@7#|—Ç8’ŸÃÅSq|—ÎÆ?šº¤Ï •„¶[uÔ\ïÀäATÙ9}Þ7³{R@‘‡M÷Í©§`‚?©“+?Ø©K¾ÒŽÐèÑ‹¾ý+Ç=ÁC”òSE…¥Q0šöשç–Ýir!¡º¥O=þú‡¿ÔëµïïÖàã/ž½T‡½ 3ÀPuˆ«‚rßä?[º*ïäaÿA÷ug£?šdé¢GaŸÊŸ±Ètì}êl)ÉÂ^/\þD€”³È$Ó-Ž“€užÞ ÓÐu ÿ_çW§«]I*Ö–„g!æ)Ü~|‚Ÿ2öÞ½=Ç­=&;êIÅ’ºW[RˆM2µ=¹uóf×àpm ¾¿ê ó>Ð:³ú$ÕžýÕ,Žÿ~·Z\£ŽÙv|¡E°ªzü†˜ÃÍ :“âz@ï¤ÍÝÕÿö&7dçÈž>À]ûƒé’/× Gû}÷h/ë›Í`œm& œ'2Ãý¬” Œ©ž Eî&ô5TÖÚ”ül®M¶´-±ÍXÀ s?”ÓÒüM¨<œuÛJ_Vâ å­ü3šÈi½2Œ©âV eÕ‘öÃI‚z¬ÒüùBžÝÚk8l϶!ÈåZo~u Ö@3Þc£áµþ³X8éª2b³‹:¬F$0?0Óðjœðç";æL@XQ½üC=m`€»jÖw7hÖÏÎ!•lQf¶lÍjVò*WvBÕ–,E¥S‹yåƒÑ?þy2ú×ßÃÃØ>ÒóþË܈ÏÃ4™=ˆ,]„‹†N7{ïT›ž¢Íwui*xw™¡xßyIM$©ë”ìM9b ý9îR&KºTгZAê¹IâUÿ€‰ªš8l˜)‹[¥&¹ æ!˜†°œ¦¦_ÞÊ¢›‹š@á°©EÑ.fËEAi¤ºnþ*¹è:úÜÛ¤å~4Ië&aBцڻH’\^ x a-)d :IÈ0Ô[‰YÓ^tO„YšGšó5æ75I· ˆJŒè6qñ“¦Â£°AŠ ¥ÂÀµÆ÷6$œ•Ç ´¤$R¦ø_'¬»cá%ãR¹„¨÷·™ý0.[LP¨ŒØg(¬6€W£›x»5Rté[óá:¢ñÔöЮ6´}ò>B–>ì=~h“ƒ‹âçáâ{¿‹ƒ/¨³®72{œi|ÙY» fAHÍ™Ô kê³Kb€\¼Ð+;›ðÑCŒ1ˆ”ŠÖ˜C–q[¢°yŒÂ MË‚Õud~ ]pü«.mgÃ`ÍóÅ$­1¨@Õ̱á„¾U74OŽ½Ë¡ïQq¿úpLho—ö{1¹-ëÚ¶ÑÊ8@ŒRsÅEι‡5‘v>®ý«ãUw®X¦a1Ž“o ²”ö Uptë­S7ÞiHÍê!ï¿goœrw¶$ü‚×ÿ#—$äghíà2w¨Mœ`lÓâmr‹‡Y)µÀ½Ü{eMð+‡[ƒå?ù!HšïÛJ혽›«Øp–.ËHovDÌ !!çzbuÝð1h¢‘´}el9§àˆÐ‹£YЏ°Šè‡=Õ.cR*ƒ ‹7ÇÚ/¹LÐ$x8 mp9$´ÊÉ%˜SÔÃ&xH® >j2F¯™j*_m8#ðä¤)ÞŸÄÒv‘¶Â%&>½7ê‚àðãD,ÊN9=‚¢º„Då%·øP¬Ò,•Ôb(ØïÎi¬ëˆ¥j gsíç+C§oâ2AÎùQòi²µhº(¿JŽ’;ч½G[­:–H™:ž@¯¤!,ËÀɯZÊð×ioŠ9ju6î¼af¥˜qì¶o¬ì.˜Ðìt“HSÓPsãÛæp’h#ÈÑY§ŽHÙcÎv0Gul7k¹îîNµ°›Ä,tÊuJz‹ló+I3²¡¡(³c~ÆÝ˜ ênMš”=*ñOý¬‚Þ|ý´ÿ4妊¿˜s†)×N\Wºàj¶yÆ®>RììbcòYÐBíåàvšxB]ÌÍk%\X×=ˆIù@È!^—ØOƒ Á7êü@`þ‰jose•àºÞÉ<û…ì ‘žP$jdK4ÖYr’;ŠIÒspÈWNUO°²ªCò‘Èo¤/H¼ª\€«\dåˆY¬ˆAqL?²Aå”_°a–:‹A7ˆYŒtx—ÃǦ:–½‹i„`Ë0¿Ev‘.Æ“¬ôJW˜:‰ƒVÔ•™¶b T-–aµÑu+©v>ž¨NTüµØ6Ô&øöHELäà q…°Ù„JÕ4ðÏÀÏ!Jx"¼½Då¢BQ]”UEs3²mZ{û¹Î…f”1h?{7Ÿä£|9Y ‚<îÅ^úÕòÒªÕê&rqÁ'(*Å:Æ`ë°=ѳq£ÔóÁØÀ6cÜGªÙY¦Ý œ-1,T^ï‚¿IA W6ÃYÛøïr¿€.šZ„pgø’­Êe[².”¤vÞ¼éúÅö §¡gÖÝH¨F ¥,ˆE‘Ž.)Ük&•Ù„ŠÛÉ€8W¡‰¾ífP¥¤×Ëúý.ÖÄ"+kÁþ$Â5ôàx=y¾‡¾ŸJõ°Í$Ì3üÈRÕþ¬PJÇ4¥ªN䣷9þ•{u ´übFñl0I3a/²EYã,:¸®Ù©‘ƒ¦F+/$ rÚ¿ø MpµJT=]Õò]5”t”OòeNÀ6N{IßrY\×íÆêfiSB`:@!éø*-aÑz¯CK…ía`ãv "é"@°–,@ƒ0 ÙTo}óZx {+¥*»PýCIÈ4jÆÁ$ãÌ|9ÍgS=ê× Šû"W yæ 1²Îß^ U;-=½ÎÈ»ù(DVõ'dLÊO»)%ËœŠ¿Ózt0½ÒDðtŸ‚]¹„ÈÌ•› ÚD¸  š»NI^ÀY®!vÁÅçxîY«Y"ê8/G«ÒÇFÆêïä7 ¸&o, â¯ÈØ ÍCŽ]ú¬®ïb˜ÉMêÚú(ýÂ0' óaȰh%¦÷•±à^ïH+†d¹•}àÿ«ù·{S®@ù¢\ŠBa«ÁY„Y²xk·6\Eè?µEÎn3É‚-cØæh‹Sݹ´ÅÁ‡ë¦|4L…œ¤¨ßeP)jCÝÐl »¨Í_­¸ÍT‚*mef¹DlI”Èjälé¶ôýërÃùL~XùJ:Ú 3ð#Ûø°Ùºì늾f5"‹A5ÀÌr幯¥"‰E¦rØÊ~x>Ý Ö=„ gd'€ `ÚS8Ÿñê1ÐÄw„j&£J¹([£š^AáÀ¢†º´¬Ã*Lf„—Á¼žd·úÈ]*å ¨B£@MÍ~+^ :~h’ÝI˜×Ü2UEÚˆŽ7æ€{¯’êã³<ÏÀÿ%B,SU }Pì¶SzA´XýúIÔ–€;9IZ×ùìîQ+ŽždOÇIòZ—¸‡ùq.Ð{«³Ñ¹C^åøë®_«sVi$3jÄG67M8¤ ³û?J-Á#Nð†3ävKÜ·µ’ÌCþUáõÁ¹Ï¹Ý´ØR$©/bª/È«à¶:¨÷šÏ®Š·X¼HÓ\‡Õ´u1•¹ª9 äÕ3óEÆòN,çiÒ‚QryÅÚˆNs¦YôA©.£DlQE)²kê[™ó(]z›–Ü22Õ<ÖÇɧOŸ½øþá“Óÿy<øñ»ÓW_>øÍc¯…[ÿqgU.î`a•;¦™;Tè¨ÏÇUþúÉçÿùäôéco¹æfÀCbHêõÁñÁø"ƒ8œÖÄâNÞ!P kÞ‰>TÞ<Ûg*¦õØÍÆÏ“Fõ ȃ©áyƒA«}ä5Þ‡Çb@‘`Å¢’¬ˬV´GºTnÖ¿ïéb˜bÛçvƒj¥sÖcåZbŠÕ”šK@„«Fßk±žìZ)„Jµ`Þ-TîÌ ˆŒàEJ3.ÓY¬([7( »ÂÂI »ß%\ñÑÓÓ³ÌQ"ºuÏÐJÔ} “ࣹ¢¶®’¼[/`|ª©ÉÈÌ=dˆx@E•$¼P@ÂÜ\f±ZDgÃT˹¥¼·P×¶‡Å·dó;5”ÝeÀÜï_•û=gbEJïÕSz‚6ÙxMAMä¡BÖ×®Ë éˆÝŠàDF`’TsR+¶éÒ#ôQó*–6”ªÐN¨­@≊+¡’’Ézœ5Ó°Š?S®nû4 8ºäö…¾ß¯ÍÕAÃ’.-fç±ôñéÅÚŠï…Î Äñ#ØÛÏ3,êŽ#]ý’ i›–ÙÕËtÒiz`µ]þl¾Þ tü®µŠ52_¿Çæë_T«¹á˜vS‡^a]k9$’á»âD‡ާgåÓ²“øCü=\u¿ÏµÈnœ\‹uoîv-ôVð |ûM²Y¦fxùU'ù*9¬^|.åÜMæ)`cƒ-Þ`Ðn^dKó}³Ó§_lc¯ Ãjå£ãéqà°‹ ­ê2dCUÒ†îM×W餢¸Œ¦:N¹ÏÍÈ„zy+þÐ.Kcoý‰×ähC“À”qœ»44ÝÐ^BXmXõú‰ðž¼>«Dm—9ÌóµÙ-ós@‚|»ö=zÙL¨›üãŸÝ¤)ÂQ³K5s!“.âÕ®£FÙp|òvâ[æ=€ýD6zèõA|òãlRo£nç Å¶4ÜÙYxTdTö¯žhlÚpÇÛÃtf„–“¦Ymdq'“bhŽI»‡tCû•rH†'±6#xÆJ‘Ç:’¨òy–n„ \äˬÝJÙÇgx«U¹šdú-FÍÊW$û\óu[Dò®ÝiøÍ4î ¼cFЩh"h;¸?m%©¸“a2 ïÔ×zz)ügÿµ|"k;ežs¯ÈìcB¨È|õïãÆ\æèK³€äÒPVúTâÌ ¢ª+Û¦èôn-´W»¦éùxN~x_ÇðMß h¬|m6ìÌK@»Y‡HöÊà3מ_+Çbòt]†PaC6'ÀErª ŽaÀ—­;¨:7%9lh›¯V‰u©S‹ü‹«è6Ж]ûíîáO‹¥k¼§B±ƒ>¡Àþ Õµ:_Mþ£ÚÍ…oóö/$}ã2l¡·hUæõN]ßÁ‚ÜMww>œâd…n‰ìÝr‘reÔÜ–1ÝêéÞþ¯ ÕÄ®J—êpßS§Û¯í*Fô`sä^ιó¢PÇËüõ»8]QRÇÅ¡ê¶'¯ÍHÏv²#b{͈Õ7a¯ÿèÆÅúãýo/çĽ÷:ØÑÛ·)m7·ZéäÛ8ÌÐs-Îh)Èèç+o[ŠbO3 M²ËëŒÐ¯]‰3°k.!þ¡ö᯿œmîCv»F'­ÃnrÔúÏúG×Àûž^ØÅýN0;I>ä?“¿´Â÷»›«ƒøo­iàe¦éûwt¢ù3;iÙH™ŸfFÞ]‚8Ð4WD³óñè}è£Wø3 Öû_ê¿ÈŒ”_eàzó£j«k}@q!Ò•cà°˜¯*ƒ¡ :/.@ÇÇ¡/^Îm¹#7÷¶ˆ ¶Ü¡ #Õ‰p.»nÁÓ'©UY.„ï «t°~0*¦†üЗ§f„Á¶nÒM!©ZÄÆ$üaªŸH#OLßÂwÂbÊÍOøQ¯‘¨Tâ/.L £ò) Ðùø¿› ®îMt¦aê5“.ê7Bçiô!Ÿ¶O†Å¶{BÆþ[*eÅn¾-X%³Úòà}GÒ}oèXªµT¤Ã~Ú¿Y:Á¬9=€*®i>îü’:'Q…qÁ‰ùè:Ý]^Š:é:Õ Ö0—Mí!QþѵRC‹AtÖ¦ã×̆͡ԡ¼b€h%°_"ÎËð21¯BÄŠ¹y {Z’z™Ú‡’šp@…8láL.*–wáî+÷³ ‡§z«Ü^ý Y%(S¡q’öø·UI,Žwç1¿•ÿüߌÅÜ4<à_‰õ| +øVð1¬àß!¬€5ÝúTÑ%wÌœ$T#Æ[Í;7*ç¦1yÙè—R çËG¶ñt’/×R;/®Îç~Ð*'O*_2zäÃ| ÐôA.û•ñ‘ i9lú>/ ÃÜ"¢¤Âbº#¡±«dÎy¶@ØtCÑLˆSßËÄùC‘Üò¼‘K²É¹¾#8²Øf—÷Üõyæ=(¨ˆƒ´T¨#Nrî»áº²ÓÌ4+Y¾ÞH™€S„ÍxñÊ|:ä2ŸÐΪ\¥“jæ`K,¥žÚÆQm<v(>d9 bÊ0_N 7†<Ê2wù‹°šç«‰æ"C÷†T‡Ô3Ö) 0•èØnæµ­^Û„'îeÃp®†µ¾‘¢% :èˆõ0‰ŸާàŽdá˜oFF´-¦ùÏFáMªlO×0À†fv%TñêG1oP€÷ `¡ˆ\Á’@ºCø²ú(äÉ €Ó^f 'ű2¶ÛÔÚ©iS9¢85&å¨ñë\‰X¶D¥žš&Ösª…GƳU È€ž…  @J›’U¹ð-)ØoÖMÒnp¿Wï*ElãpLïÊ@¦¾‰•ÐTïáØùm/Œ¡Æèäõ: ¼ÊÌî]½%ÖaµíMFºHƒ»ê™ X0žaveW«Ó€X³I40ÛV.Qh䬔[?ÿ ËR"G˜¶ö‘<~òäôùËÓ—»xKBF=ÎÎÃUn¿×3rXE¨»Ùl>+ri!çÈØ Åá- /Q>¤üƒA0¬® ® †MT`â雑UZ”1°ÿ­êÒGƒæu®î>ïF=Ñ΢¶}Æ fPc6ë„Bÿ2"¿˜kпT¥!ÅÙ KE¿gúT€7‡H3˜ÌR¶ùéÎf+=¹¼ ÔÀؾQû‚ê±o6¾­Ô‰EG¬)õÎN´^G]>ÑG„N ¡&†m¥°}«ç…mÍ1 ”ú %´nÒ¤|zô .»w´Ó\©r ü†^Ü¥ü…ÊiÃRuÉhÐæ yÏëVx€¶ÝÁÁãfW66°ã±Ýç¼ží¼Ø×j¹Lv•NŒ¸¼Ýxí8µ¹PéÐFÊøÐeÓE^FÅ1.d i]¡Äk®­‹‚¢ÄCpõÁ9ÀºfµíN\‘pãžeæv,ÁEÀP xÙ*¥™ºx 0ÌoiŽFÞå~£f„#…O<Èð¸1ê ˆ%byŠðF ìG›"@æ­¶/y|GSY}ë{Öæöë_ˆØpS6™:5- 8¹àîçŸ*C‹ åð–_·¾}ö ÅLp«'Ãôgˆ_ù'ý9¶ÂÛõlÿꆑÔѵìì­æm Þm•÷¿*l‡ÂÃ+}5à’J·[¹\È@«ö¢–J²ý%©‘èG¬½†þQÒ×/ãJØüðôô¿D¢û?£èX¡¯\ S†$ùÞºj‹U‹úM…ÅêOÛžÀƒ@ÏÀ.Þù½éû¸Àª_Þ@¡Ãœª¢Qç_Ý>¶zfhe'ÔÐYŽú¸Q¹¾ix.P¤"².;@²RZJ€Á—4ëTácsCá%/UÚ¼Ÿ£ µx5?*Zÿ{+ðÛ8Ã/Áöâû?¼›IâF±–{G\Æ Qý÷ƒaAPsYL7ˈ½5ÂÌíaذåß\ÞâQŠk7™c[_ðÏ>ýh‹"Ûiîf;û7ÐTƒx8•ebx˜åsZ€”ܵÍyƒ$Gi^2îmz¾d?²_båFÂX]0B˜˜ô‡Þ¼ š¸žôYçã]ó¯j,Þ¥"ƒ=¸øGüKqà¯Ò>íͤwZ>æÔU¯”ÒÂÙXfû°\@inA{à5%ŽsI*UK -뮘Y à³2[`‰Åq:»08Vä2YRL¢¹JÒRv)¶Ó[í†×~ZB…œ+eÄ Æ–áX[É«+Q©.øxÆyà¡–£1š¼_æ ˜àäÝt’8,µçE¹¼Xd/ÿß'x'\P)´®Ÿ÷ìD‰!Žs ÚÙPï¸*SBJqV¼«§ÙÈL /§j`8½0Ú©eë“i:3? êûëu¸nøÌw §²Í ªU—Tñ/†§Ÿ©[É(|èQ…D$s(|Ê~eê8¥ÊlÇMqaõºqA©sLm~™%"-*ì&NÃɦ`ð¾(Ò‰;SæKç÷-5ìÚÂlNj$¨,¶÷=i¶eå‘^"5Ü¢BfágùXÑ˹lál”uØ® ÁÌvP°Øò¥KU× üW¶j2Úò¸ÇÑj1{àë˜çœaÎÕÂZRØpŠ•i [;Ï î>ɇ>@ͦÉȨ栰ÿ×÷OÂOÑÂq>ŒímRÈò%Vu™ —Eá…ð:nQü¼Y­‰‘g3çîWYâÞ7j‹/Æby8>K¦WH20/+`âfH52Z®0è«@Y,Êì³G™nMj Oó‹Ë%Uõ2dbVrÚåbÃU ó$h øüÜèj²ì[ó+E°ûl­Š+æ…Îw}¨@2!æ\®qLG{ ›1ÊKX³Ø’>rmÕ/¤Ù•êá~Õ¾¡>UcCŽa‘”£L*àª|f²#?f鵪U ¼‚U‡šÈ)H–]UøìF9‡Ú»u$z˜="ΡZ˜=vj/ÉfxÈ@œRØQ³fLãþ¿©}™élÀú-Y$ßícŒË/¯¶¸²óùÔÜ4CaþBa õÁ ƒ‹£mO0iÙ_(Põ_r \›i¸ÓQ®ªÜL áñÚmïüÆk”‰€O*4--Áù»R¿ò|¸ÀhDF~}è'AE§¶@¼ëŸyÚÒîÜ\”M +é‚c<ö…J‘N‰ˆj“¯°Œ†1ÉÕª0~9ˆÉÈè&VÌø‡(?@ÄG¢LñxGŠ€w^aŒ¯4Òð ¤NÒ¢Œ4°(V—x ƒL‚TñÕò Ƕ9l%#Þ³ÔlRƒ›oÝë §°³]8sÍ«f{Ú-t,ÔÖÀ‚ªY\î•D•âšsî¨Ô‹¬#ZÙx¸>Ъ elø¡P'ù?r­t¶Ã!›±Z蠟›¤C NŠî Ÿ—4½¸|¶±FeùJ2-t¼Ì æ³Th6kâ®*ŒZ•nQÄe8Ô ÉÌÆdO¨nhPê¬Ñ`0ók1ŸšePsÇeˆ@39YFëë¨V3JÊ ÖàÛåã é›1•œ9£Ý^äF"¢Ò¼@Ñ¥„hˆÞÅÀ“ó…ýèÕô}󯬿dºîÓÚfoÞÈ”¥J³ë¡ë@ÄØi(P­™ê­²bý/">”MÝ´ý?ß3Ôæý“@»IËߺíi¡Ñ檩¢Ý`Ϻÿi¢µ¼ß·–×2K JÞõû­ÆVåÃo¤*‡Ê‡¾­@©´Pm‚ÔüíÅúºü(£>{0bÏÁöV*‹üQõý}¨¾Öl¨ ­ÏÅ P7Ñ41@úž?êÏlýyß0éíjß{ÜI¿„²·ý|(·ö>¬ñ=¼âž2霷¥-Ufäj²¥†Œxž/lViœwÔ8!]Ä6&‚¹Ä‡›Qp¦  jM‘LŠ‚RÉ#Êê$¶ÁO†™y.ûÂP¥Qùi@ò÷çæt)hQ'˜ðÜ}Î&Œ^^Ň­3L,zƒþÖP—-©p©… ô4”hà ó=Dd ‹«Œq½°ë•*O5B×*Ú—x‚\Ð7ª7U!—i’½SÞ/p‘èYî6ù\¢®{v5÷€¡=¨÷¥¶KDæ- vÙy¾¸†¯¡p§}tÝB}¼…}S >*#¢÷{øßRµùñÝ/ïÎû)6ïLþQ¯ù¨×|Ôk>ê5ÿ†zdZd£—7¬.°R¬E÷Î ‘âÀw\3·×Ë—VF°LÉ7Œ.„m dMãGduðÔ-u Yåß±‘Cê~¾;ê¨TL±aÔƒ¾>ÎûÃÖ,®€®¦ƒë±VX•|˹y¬ÿ^qÒ jfXevü‚¦·Õ„Ås®2Á"e‘œ§ Þv­5aÈï  6l }Ù5Êk¶. àÕ «;˜8½¾¦Ñ A8Ac„pjÆ:ö€{¡&Fz]!ÓXR¤™ä(›/mJ&À Ï2cƒ“€ú¦!‘%C6Â{VÓ6D"+‘£Nùf=›9€ÌCðU„ 9¡ ï˜NÌò×`ð©'W膙eKŒ¼§ýßÚöu“V¼Èþn¦Î+Õ‰¤Èèƒ'‚š)È7SÜ\‰Í>Ö©­½¶K°%c¦Éyv]­¶RW<&àTëò;ÈEZ9mcj£¡Œ!Å3ʘyleÄŠöµ(' ¬à®îP¼g¥Ä: œ*²‚ôLù˜3­…—üËlTÌÆ]ž‘-—¬‹L×èVÛYô£Jq…ƒx2𤠒‘(%Õq°&B fýxIò™^3£†ªˆý½˜½ ÞΩ| Õ¦Z%ËW/f¡Æe5)ãMA½{4 MÕÖír_“óf«Í%³Õt˜-Ü(ÌÚ†ÒblÑz©bÒH¥ ûB[?¼xÀ ­a˜Q7)\- œ$2‰Ó­`³è€Ð‡²[í- úM Ó+tŽÙ æëD²`ŸÉ®uK(äÊÜÛcx£ŸÇ/çSö^ wµ¡ú9SÔ)tä]‚—ËåüøŽ¹ˆçyŸnã~±¸¸Cöé;] 6çð¿%æŽí„©H‚eL!·ˆ'Ãøˆ¹ì{h°„׋Gßz…›ˆóºGHe#÷Z°àd£'9:ùc8…Ùšœed¾4:˜ùq&ë$¿˜ œã©§U˜†AóðÖ‹Å \µXcý¢w§¾˜ï+ÛB½¶`˜ÏZƒ%•ÏœäË¥¡Ç¡Ñ2ÎÓªfV·ÝÉ’!!7HZ-5H ^ýDY ²¡›¢tRÜFׄ·†Œ4M—£Kå ”˜¤ê Ciá¡Íå±9ÔÁá+³t1ºÄÎPxœ¬{Ññzdéj­†¬qXGl…„ ×ÌÄ6óúŸ¡æ»ƒaGÙý£ …ú+§»H•b ÚíeæQ­I,!ÖŽí‚çéj²äÚEBòQÖžø”œÒü½“B(?öÚÂUå ß`½ü©P]IÓwÉŽ­ëGÖŸ©¢¬½^¦é|ko¤‚¿Œìv@ðœéËXSeýËlbM+>9°3BׇUn4¡ÓºÉÚ±#!X%¤ZbÐ[&nyæsÁ½ÚÅÖÏ”Öo¨ßœˆ²çè8j6¾%.Ñ/¹šÓåWÑo¥™Ë¯b­”9<2gü{¬Qû(;çjµåkPþñÏ/bo™ÇŸ=:}zújðíO¿Q_€Fʶ¯Š|¬åù2öóõ³!’Ä'Ó/‚¯¦¦ëçëÁ©ií{>ï¶›Ül³+ì&Ífç oÎçvóêÇg•ž¨•ÁÃñ˜úlOÍÛ†?˜Öž¯OgËÁ·‹bú¤˜]´:~›Yµøú>Í=þ¯Wÿ,lÔð$M—ÿŒ‹¡N'ú+[ìhVöšÝŒ²á]Žˆ|@s£!{ ßááu­){G9¼ ÁdGÐUeƒ‹ÀPà¡!8~eN"\‚”:ê0 ÐÙ° §>ÿå ¡¶øˆ1—ƒåð|ËÂD¬*a¤-†KÑŠÉ"…µWøµˆðö‚zZ¥ìj•B2€QÖ€±×ÓhÄ8Ö†å¨5tá§1«–,G«‹NÌÐôY½žYë²uì»ö8)Ø"L%n3þk-p°spÁëÖêO.á;<üÞaÿôV³ü]/ðç"®w¦ìP`_Éb)É+^ö´ÞN_͆¢ÊÀUO¢·4n;Ø?mäÈLÎãÿߤlC‹þ¬{äcèô@ƒghŸ¸[ó·a£Ø6·ƒ„ŸÛ²ôuváÕ ¼„b´Ôr1LÕã>6¬57립 aоø——Ëéä«/‡Åx8 Óär‘Ÿ4‡ù¯°Z‘æWÑ¿¼“š¶5-Åš¹aG‘6Žölãn¤»{¶qo›÷éöviöÎçÔŠÿÙmFÚ8ܳ£Q¬þts;êhPÁ»¾}?|ûþö·‰q6¿¢Ÿ›ŸE×çͯ"Æ[¹ƒçåË;xxjdu ™‹pt‰yràV%–™A 3‰Â¿Ñ×W#PP–ëî\b#í#ÖGƵ\ñà»âËp—"ÚcÏ,¸ìÕÅ`髞òÌ æÉ›Ü®•îbÎéS¼;À@B2Ùð²Œ!C·w6ù~vöýB/¡_ÐyoðkAWJLÖ´Ö”16Égè[®c³ÛaV¡ëg©­t"¤s™ÒÍU¨\Ôq‹{µÛã?„#úélûQ Kä7‹Ó›n)LOÇfË?[‘9¾øôôÛÇ/_Õ}Þ°ÌW/?|ôýãðSëË¿úÝ͈Z=ÎŒªÛ/fMå>bwŸ!>üÍçïKÝ-×(;o[qÖ†‚‚¤Ê9§Õw&ƒhôÿ0Ð†Š­ÂÞ¹ë1 ;YšHª— á8j©ž©’sj§ó¼¿–«ü–§jÌ_Mª¶/¶yÑhÜf0£‹E rÔäì.œ¯-Z&)˜@^ª¹á i¶( ?ZcH ³ŽÓÉuº.=¿Ê|‘]aá&¶*ô)¨É­·ŠÝ§Û^Å3ˆ%–fTõfÌõefúM‡b[ˆM3³!G/>ãʯ„é;µá?:—YW^rä‹Âó”0È–È û’¹F¸°Ø0®Øl´ T¹+Ì2LÌ0%!U7*âàÆ”2ŽCûÅ¿#žÒúÛÎ#€6þ·Sç6ã¡iÔ^ Ç›âú­ZÚ‰$õ”K5 ÿökÅ46ÌÛŒ"}2*„”CR/š¶2#li!qz1ïY¹²Jl쨚X°gÃ4_Ó§-j€ÿpÁüåñ«äèà ¹}Ø¿ú[5r]Î"É“$´Ý‹öÞ©æ''ý#È`¨“{>ˆ–ž0{¬f?çó±]Åʧ÷îA‘RhÆ{'þ=ÿn‹é-Ò ÝKšó}Sÿ¾¦Ó`íxì5 xÃö¶Án÷<-–T_´ë íÜš¾Iæ½»›5w?l|šqO]<0;_à,<º:vœ`p/ìf¯­Ñ‡•íys‹“WÕ±:™Ýhñ€MWéÐ4:W:;î4`hFd¬Út·ígîçsü Wâ‡q`‚úwM> ÏZä­ÏÇ;æ¦wÌ–»ãã¹> »ÿ=siseniœÁÑdµšÊés¬ÎP¨E@ÞÂñÝÐ iph ¢#ݶ7 ΂œ²J:M0Òç/É~G`ƒ¯5båˆk¤¬!sÑS¾sŒ&oÓݰ@VC‡ü#J,È'†èb»«kðN †]$ã]ì4{xx6BXa¦eN– U94°Ç.2sÿ”ˆÔu:C½¾ò¬Ð<ª¬f."Êâ½PenްÝn\šU^[‘‰k£º¼Úf±aÒà(K΃8R<âùyrÞ7M/–%lN»e'ÕªyC…Gð$Ï;8$ð—1wý‹Ü¯¿¦T¦H¸ˆó©ðx_ÌBª‡ °ÿ} ·‹Xf¦ò ‡UŽy#§£o†«sè$Óî‡á‘0ËxýÁGîFdiûÕIå߯×$h¼(æ†Ìm’Ž0ñýK‡\mDML€ÀMg˜ ¬?²eÕÏAÿFƒ?YwO•É+T Á\yÀ^ÏIoÞHTûUß¼1WÀ€kÁ_öæ‹ ÁðŒãšíÿ_ ej'úíD÷TC¹h¦rrúlìéç“p\‚yŠM= ð¬fF‹¦™Sýs/W„ßû’UŽ<¬G>{ó&êR^æ#~RÈF©BÒ…”–ÞX\™TX)£Ä„kB€àËlq.&”Õ)m¨a¸=ˆ9ŠÐ‡ ?ߢ5ûCŒLò[@ÃÚ·ÕÐwhEšóc»à¯pTb“ù:9@Jÿ†œT'¢ ’|g^Ô~ÎO¼Õ×ÀÞv”´zðÿ‡½NvEŸ1¤j¦ãt™&­ÕbÒB\Q—€0àÇœ”]L®t,ŽvÖš%¼sÎ,#‹®A/9ýþù³¯>}uŒq C#PÁÆ÷:]ŒKËòI¾\»(h#vŽ%}ôÝ…´/gæt›ë"æV¼ÃKVìÉ~;ŒBXõ’¯…‚9äºtÐÆ¨³é $Ûš @¨)ÅÙ#q~vVH§#ÂÒ¬gíPF¾¤ ìX4ÆRúî"GÉ w1K?ËÀ†Ð´(Ì¢ⵇ†j2: d]S#(—.ôB‚ÐÍXÏó‹Õ‚U@QHpËà–A±¹g]´\ü– ˆùÌ®QÁÇ?6¨\ ˆÜ`¦o¶:'Š„ 0#ày:bÎcùPƒ £;%M<››ðÖ#E =½ŒTá¨)ê8ñ2…Õë×)!ÕI™ àSCòÆN;6$ »`t?Ã#½@ÓqFqÈŒâàϽ£Ï÷cO³k)ˆ³÷’—|Çû¢ ¸0ä ×p¶eÏ5"PBþ|@;¶ z—cÉ 5âÑó1Nß’è BfnèÐÃ1_d=íåjÈQ+„x@ÉJp()›(´gžY"ÚlÃ?–  ÿz†-f;› ¨¡P…Ù’C?æú17Öyþ.G—®›ÒÜ7CóX’BØÅ<÷gÙ?ºóàèîýÏ’c0#йØç ׺rZ‚P¸Ô6B‚‚lóI>Ê—`ñàc‹w*>dMcª½ø#™%“ €€–kÄ™‰ÞýÀ$ª%PËÌç¨ÿY”×|½vÐ_ëÌx´›‰ ¨kàÑb˜­Så¡JÜâk+µ2Ãë·B~$wôpmUõÖõzÀÞçËž…wa²'»ä|’^$mÃS{$¦V½XvÈOÄQDšÏXÁVK®—ÅB  çÂC|>µ6A¦rT a7×0#¹ Xõ„ÃeÒs°xNÓ±­iq¾‚}‹ÞAOŸ½z|œ†Â(§þ@ HŒ8mD‘óåuÊèªT@ÕÈ®½ñtz±è»ýôà?G—EÁ*gþ¥Wi>A-1‚¡"CñÆ·È.Œ3ãn¾·`6úF´á,ª¯ ÿ¢¼B(P3ô®Õf¼ëì$£K#²­õ¨½<ÃÏé EYòZãÌœå‘hA8lÿG<‡¶‘kªàï;êDÝb&`ÆGã±ô×I<ä®9ëp:ˆ"äí2ȎĨ¥† À†ÙQöÔˆ½|¨fÖÎþŒW ¸à¨§FRÃ-2 ¹J'†ó“@'¤ÅVß™bMh–é›Î2%1þ²Ò0f’¬ŒV BoŸg„E9k%q(~„Õ•ƒ´!ãùnGðÆbÂÌR&!vã7oölU:vb±Íjn¡è4÷¶ˆ*±›€ØV ¦ slD#0$õ™·Y6ç.­î€zÂåjá•q«þ9WzH±‚æãí fwø>³ƒ{îÛM÷ÜÃ1ÕÊ ŽËbô63wB>c+HY0€~‰v5ä„|á0Yy7:"ãÒH(`Hiü)¼$õ\Ú…áQi'z©ZÆKÝñ}POûpyˆÿÄg@–óðŒ|u¦ƒu!'p–Ò‚ßµ;ÉC3ܬ4 \f£·x ·:Á• ´®-Ue©ØL,[.·&æ™6yRÝ`Ê$…Œµ7/$è>du»ý¡tŒÝ²qïÚ· NªÃÔXUj´þh‘0ú3(e¦hÄd¨tUgcoÒìI:añf7ÚV¥è|AjÍ£ürt0›í;‡äVOgÏ«) x>àåPIî.å^¹н­8\-‘rÙO«š’¡lB±¨ë×ÛCréÒHFÙ‚åìì{Pí½_?è£ß½ÏòŒoŽkÕ 6 )%Ÿ¼ËEc—»ZBmD%¡ +qÛÔC{b;VÚIÙTèí ß.Fæ²ÓE«U!a‰5ôî L…N©eåE|HÐæ]e±Q+èΨÒ&£gò¼÷eî0¬øÇ9ò×X_ˆ Eòç&vÿ[ϘFÃJ·Èp@QFrº.^ö°5TòýÓžHDÍ,Îȼ?³³É”ñÙÌWºšâ­Z(hÔí=Q—A7|³ƒ…aѨ“ºîÀÏ}û¨-„qÐLLWÊúý®3tÎ/:5Cü¦Xpý¯KÈÛRɳõŠÈb– TP˜-‘ÝHøW€‘©+σ6§d—6&Tü0\Í–+¹PÊŽ_jiƒýH1‚;ŸšïïÜ;<¸ôçMÊ$tj ]|žïÎZ§•£/÷@ÓÐî4ë¶“í¸R9ÔIÒ~!6ÖŸàyFñõ‘ŽFëqtèTû”‹¯çùJa{î]lÊÚ‘îuÍîÃ(qÔÿì [º-A…¹TßÅ‚¥ÔŠ4¥FàëYpWÊ3,®…qÜ¤Ž Í­zuqÃÐ@Ñ…ól#Ϋք®!½Å¢Xø†$.ic—IµÉ{Úœ]Xop}€Åw6Z5sÑyžôæ« _š¶Å`àZ¤sÃ’ÃþÊý!ÍZïÌ›7x ÷æ¹Ñ—Æ=kª8IÎÁ oF «¢/pÔ¬@=Ä0½QŠ÷=°^µ[q)H°¯ãb„VÈpÏ­ûÅÒ‚°j²ÿC cþ³ÞfíÅ1T5•¨`ƒp=†EðÛjïêŠêÀx¢¾÷H:3¤•¢o}d™4jæZßßÓQ)á ›ËØÞÈVvfÊæj‹Tàó…~~²QaÛèMs-2Ÿæ/©=¨ãiŒf+s’¼µôð #‰|´¡ ÄÃÇnâqIk&ò‹ÁòvI¢·ì‰-Äf‚ù!¹.·OòÚÌY0¹¶fI $ÁFÇâû'–˜§ta?0BìsŒ|!c') :_TuCŽá_˜‰ V D’GŒ8’}—ô}Ê2—õ*´rAvÐ5öMó‹K‚jX-†|?Z/ èKÆÝ*½–(ºg‡AÒ3kÅqÖ-¹Ê±0¬¡|Ay4â³a€@ NZÜĵ’O]ØÇ%ṳ́.Ž]i,RBÒ_¿ ÄQŒ‰ÿ½'õ»ÄÆlÁRAak½"ʘÿ¶mºVaô“ªuZ‡¼yØ?rüànïðÏû¹ãÙW6¨šð@ÁéLKáyÊÈÍŒ>Òšq¨q}¶ï¸äð Di—õ^?r¢xr‡¶›ŒkªòÚe¶n-øÌGï'À9RS{p³©Y£÷ñöÍfÐYµßݵßÕS¯9à É9ÎŒ ȪëtŸB øÓ]o]ò' ¹’›ùLÂÛHá±@§Ö¢-Ü .cdŸ ^Ñ;ï`ÔÓÙ'cl‰ûÏáî³CuÌŽ\{+hÀÝøûP¨=žãÆavãbTê0»I>„ôŽ;jPTâÅ]@X]Qöp ö—#û[T!úâ?ˇ‹rƒùzÔRÙÉ3‘°Î5iÄ  üŽ¢MÉ‹·ø­D¢ mÁqöøÝ•—Ë c àñÕ­ u "jR§Øýõ¦›I´.s̹MüHv$}*ÎÝ“¸¤òÎ'±~S̤T#ÔÏ$ÄqIÿ2·ó¥Ù¨þt|ŸÆžC²°‹]`£‰¿ SÖ»ÒòÒÒI3ŠpêÏâÿ¡‡ø¬áÅaE‡®L4öã b1¡ 7×ÿñ÷¸rv!áì‚8ðö £¡ËB3²ê"KßÂì&Y|Ìi Û ‹Èid[6í/Š·PÞp=ÅŒÒö1$·ŽîÜÿìn'ÎáèRùsïà³ÞÑÞ—Jer8­±ÎŒ+ÐgÁ&ëoZk×*&‡#Ñ5‰Š“U“UÉO ›Ëg{R1FÔº<1Ú˜?´ÿóÓ@/^½ ìÀ-Øáç7½íl<•´Æf{çÍ9œÞËešƒmcÔÆ÷°$¦ùÙƒ0’º„^òja8 ÄX•‡~ME­2ÒýØÔˆËh^7: ¤Ì©€I½ºcz¨Cq¸†ŽñGRÒ76Ã;ñÍ×[ Ézê ŠD˜a$‘‚Î’eHàšQ[V ›µG]ÍT¬@ÑËÒYygôïߧ³ò;pY PˆÖÊëË–6ÓÕÆÁ&îc»;ºûùÑá—<Í©¬*-üÒ‡f7² NŸÊá³:®Þ§åÕ¬ÿ³¹ ñ2Õ]IööN¹™O­sÕþb®àÿm&}òçÏî|þ/Í/GŸ}ö/ŽèÏË›bIl³édÛBùÝâšc4z ´.îÔ+2[»¤Ÿž$½ÃùÌ%úhÁ)aï,âi°<z-KÖjp°]N2ž{á*¬ ,Â:7ú×@±Ò÷Ó ¸ö’ü¸äÌ„déE"aèŒ-‚¬d ]3w¨|üì‰xýºn¶’<Çá²]®²yÅRæ7Ø‚£L cÖÞ¤çû±Ñ:rY1×zãÞ­¨iÂR8E³Ù|¸dGÐcà'Ç.ìO,Ô_¿ÄYk–W’šf‹–iì;G ÔdnÒ² ¸UIŽ bcØ©ókHŸ…dÔ\±ÐÓ[[SµfÕf{,Fñ—b¹<_€)è/é¬,ÓÕEÖ1Ìôo«ÙEg£ï _ñŸƒ›]ÅäxA2 …zsJ€4ÝIiPq:FÀÃpî½Ïpè¢Ã¸µt*®x@”PþßUÁX/-'(·H3éï‹5ÎË˪‡‚¶XmhPÌ¿ç%ϲ|[çpD]·,t0l åjøŽgA¶©±ÿõØzÉÅëáö›q>5!L’ä~d”QlÚ4ÖÇhE¬DýñîZÛeöÝl?xÓ%^îÓt²„ÑX¨¹ï:8Ø;qŸ¯º}zÍñÖþö-}Ûñî€S +s$+sÿ&ÂB9v ÅKš¼;JWx[ö]*· V\‚έrg(Õ±Q1õ"õÌ•×O¾3_›Ã)6 5…JÛ6h9’^<)ýØÅpN{*õfÒ=×ÍF^c ¹u¿ ø]‹•52i=R’˜|ÔÍqÒñC’+w¡'ÁÕëG!oàWˆH7QŒ1¿}!˜Ì ˵ú„Å&æ©Ûa‡ïÎH¦è&»%ä™èÎå¤ðšD#',¶‡÷ÿ|tpœ<’ZLÞj“t=2¶$šËj¹†±Ý¦ÔKþš-†£-Î5fIbì´%ÀÀ 2ÍÉ¿odM gG_Îkvú•LA7Fp.½!ÒÝÏ- –[yÕ=Äú¢®àÔsV…)!;vºHs &HJói>æŠzHp4éØâkÖ‡oH˜4•à :phígïº1¸ a©FÅÜçZRÀÍÏ ªíX‰èè¯ða`Á”èâl‰GJÜïUžz뺂m@D‡ 3$#nv*Idûîâ/ê%ÉAe¦íU%TÕ¤xàõ÷äß“tðkÞ“ß0HÄf FG˜Ù5#BÁYŸš½ÁKœÏBhí‡æ4œ=ï‡úDì}úÊ> [#ð<0kø¢ oo†þ¨-ÕnÐÑç¿ÕamZ‰j,Z(P2ÇÊÇBìX+©’i¯¨¾`îže^bm\ûê*2ù‚ˆ{Ñ+•+0T—’³e[0sŸ=0Œ‘9~Û©&ùÈÅ8äH~ö¼“ÑÇèøÊ¤Ì¥˜£ Ë{Õt¼Â07€‚?¦ŽÅ.žÒ¥miµA&aH )rúʦȪ󤉢N³îXô_+½*Èg/»5814Mân¦K7ì]çãú £ÛÐÐêÖð2`ƒ´aí™áÒ—Å\»yénâe h°pa?ؘ‡dSÍ)þhž-Iq6òóûR2\®ÌW6‰ƒ°‰  ½»Á¾ôI×'Ñ%!:•¡fðÐq97 '•E ¥U Üs\Øm+N\Ê-€ù_NWµF´3ol4X±ÑÚ<_??uKòA$£÷î'O 6$_ÞLÈ[•¾À„X ÛbÌ‘åþYX®ùÿû{³Ü½§€‚1®«+Èò‘¡^,Þ²×Kg!è›Ðn$«˜Èy18ÛÌ:Íê×á3Y‡7¹zö^ £ÆpBAíRñÔîI˜-彇ù`aæ4§b¤½B*Þ°D¬–Ù ¡ˆê×ã[ÃÏÍ«Xü`à !41šEŸG‰°›œÒþòf—p$‡“EG«Ï3¨q+‡‹¢h™¥ eÝ0—$/Ó1›°å•Bˆ>©|Šþ)ã´XæW¸¹Ó5KQ¡Ð#L'èb^2/ä B_Q|X­œ±ï/kΨgmf¹××× -°j‚i†z A®\ù7>Æ(AÂE»/‹Z?±!ûB:÷{wUs”¥tD§–¢…oNsÊá0;‡ë‡ã¿8Úóá‘g£sᆩËb¼1vyU>Ë—^ô¸µÐ÷Ö ÂÖ%t.½pÆ  Øâ©6§.& º«+^—HDD“ÂJ$¦—ºŽŠí®Êó)ÞÂhN€ t®D –8Ì—Ñ7+£ ¬&Z,À™¥÷ÈyÈ׺y¹¦›µ¯÷˜n P©±T%6×ߦ»Ù`cdh|bôù¤Dð\±ûÝ0R7<)lŠÒÂä-|“íä,}±š›fpu U–%' Ó² ”„9¼¹!W¤þ }( ×€(î%¥¸$<§¥×â0VîƒH0‡÷Þs.®’ã…—`ZEsÚ@¿À;Ââ×" ÁNU>³æˆ“tq†šRâû ³Ð¬‰  &/zÈÆõʽäþçGŸÀp/.F°K QÛ‚bïKK¥g@ë]^kõÁáŸ?7­ÂÒ6¬_[€I§Ì²)Z8µÍÙ¡c÷2‘ðö1°n6‹R$8Vó±bèÝÔ¢%a§IóN 033ƒ­D×ç³û>;V¡x fÅJ´Sænާi¼•Ú[äž»E~U„}ÆÌ h'(H­‘³`A4Q©ÄÒ1_ B[Vkż<KD!&m+¶Wäu)°6Ò2p€Ç` ¤&¦lB|-ˆDÂ$¤ð<ú2=+[fS>9¬­VqT‹'Å…Š?úóçF£qÒ£EZ^f¥ä8âðl¢è†4OÉÜ=øó}åGÏÞåK‡Møs¶(Ȇ”ˇ 1~Úl2¼µqKˆŠ!Ú»B´we©™CÇîúVà‹ª5r£À5¥A­2JÛó½R(­¯+ ü#!52‰UÉ} wSÝu;j+#µË’°dã¹ d¥ÃɉM„”°š—Ôóª¥qAãCƒ-¥aþIqµ7 Müìðîý»ผ.ÅO2/ÌÏê”Y·82‘´b6ÂWRM³sÄAEÞ¿“HǤ~¤Hýþï‚?S6¶Yn”јªŽãÕ8|ƒåð¿süo“ BJ";ú¸€BDˤ˜IÊÃ%ñViäplÑýÍ:DéÕ÷ÛÎТè o€tð0(Åœ¥~4AA‘Í÷(ÝI¢?œ.8ll<R[ö¦à]œòúf‹ø4ã£ûQ²pȘîªÁ fõ¹W9äñ•ÑÙ‹¨7‡aºt\§Y©Ö˜aÜõæ5âò^[U4[â ȉC®.s([ >Íäáøo«RR0ÈÊ€c'# ä˜cÚMi S±¬÷®ªÌ³ŽwULVÓ|Æ6E=ek†iÒìõ ÓQ¼õÕՕרµ¹”r¸_JJÌ´±9O–Ê-s*öe6™+Äj:7ôLɱ (éZ¥¸ž™ÙУÞÁŸ‹;gÛ¤ªxáÇ¡I¡ ~ªV„vh›%äI X0Ͳ¥gxÇœxÏW:`ê4¹dã‚­NæŒq–’0^7>VËÞ¥äµL-´aäW*–»†± ÿÎÃSÙ Çò—p·ñzå\Aª·ðFBú„Þú$’ŠOöä¸a/Zò1LŒ”’÷@¨g´¤~gCË)®—ïX­`æ[RÃmÇÈàŸ°"R©”½*!r·hT l‰¤„Éû0†¸•±d~Lqí`²á XY™8dÄèYV|*ª»‰šzÂD$(o±¼wÇc”áÖÔÀ¿²kŸˆ#³…4%hí¨¬×a†ä;ïú]FPŽîÏ\ '~,ÎE÷ÚZÅc¨) øPÜ–6;ÝØ cîxÇ!ëÝæ³V7iY(ŒN¬ý›+ºÏž 8Û|zÏ#Æ/àrN"Æ. ¥—®.®Ë|8­åù‡6é°wtï—w ?¶5º¼pÅHŠ‚ Êw¸ç%Ÿ–®¸ å_êù’Óä¨7Î/Œ¦ÔöVIµv—èVýÊýY­Üѯ[J iêR0ÀÓ)ñÈèÿvq¦®´…¹jQPK🟖uEÆæÅ|5$™Œ\j’ZØ+bà÷–O¤TÌ+À*µ¹›i àå”r/éØ ðtázý!A˜ö¢ákXi{ ÉŽ¥”Y7¦‹êØDƒcÐÉY†ÏõË+‚„øæ¯/wº)&ã²|ö«ÆkVì`¥­5̰"¨0%Ûÿû°ÁšH%–e̬xtïA4–ß™¾m©RÇÓR²,V Ì €I‰ÂTkÓ8¼M¸]~«í"(8ï ¹ÔÄÞ]¼øTä®ajã§âÇZ— “¤ô©¶¤JÌ): íB›x‘æ áîⳚ\‰Ñí^­nw³³¯1ÄhÌÖFndÊÄ6¨jâ‰5àÛ'[Vo^9d„¡²“um-L`sh€¾klÁ \ìÂ…Œ¿zÆq_Qâƒ_þæþa& hË8qˆ>Ÿ*ÇAPå<Ÿ¶ƒi‚,¶ IwƒüJ€øÄmwqQ¿÷ÔÜÿõïàUeM(`1Å|¶[‚ÐûÎ=B•£lƒ„Á>\- ˆö ¶Û%ŽqòÓH9üÊá·håÓGráâÒv“!íz16´tQýÐQj “>ˆ.Ò͹Q”ÃŽ‚L9_Q%!=HÂជwUÜû5©â¯QÜTç;Ÿ€ÁR0^!ñ<ÙKqÚ Mù !ªf³aY¦ô!.))d`ãDÉ÷+i ÏU‰r\4jXR¿ZS[¿z®èئ¨èqœ»R¢þÀnp±ÙûoÅ2]snYcp΃¢ÖÑêÉwt& P)q˜Õ›ê?ز=ìzóGeYYlX>B?éyNmæ|3°Êƒyˆ} â•íÇ!ü5Ž ¾Ì^¤NÒ¦Å] Tn<³ƒj‰9’‚@À¥7ì‹ô-öŸ§ #côÊ墒£ä_n·Ï‹¢SvúɳÇ’R0V,$ÄÄöÌ E£J—=Ç´yÿì‡Nì,¶—NBIbÀ $²•i‚á;MôµJZ(?A &FÝ2,.nO{ä`È<¼qíe Ó`T¨(ÖªJñ°êKØ“¸1”áÖ~”CÀäÛ\ú­.Þ¡²`•B'e×êMPʜߊÇiUÆÉ"}WôTà­ßÃÚÂÚj$v¥K‘(†qKå¸ð*8’«àà&æ÷7iÏ0 5‡z7tVkg«ÄkhN(ÕáüÖ# CdÑ ×æá{­ÕžüæÁgŸÝý,ùRTÂ]µA|í«7Ï|gsyËý}óÄ`dkÄQ:Å€]WsДÛ7¨ZäA·wöî”~trþìð&“3¯U&wªÇ0Aš’B©Žpå¬cÂe~ HZM?Ÿ$aW‚ ƒ Ço *š9)&¼ÌD®µ6¾<²¥žjQOùŽòU/þ‹Œ.lÃV3?ÿš<¡€Ñ~E•iQŠ”ýÎfO!ÕyÔ&å>BfËbæ|шßr`lˆ§®ŒÎÅŠ.Asø{zNÞ§ç˜Ûn‹ë¼ô2åx0è‘G{A‚Þ1)ýê#w#þ6/Nºôü(|!k¹ûuŒÕ9¦Ñë@l0vû¡ZOHz9…×_íír˜ê*÷•ÝÞÜš{C‚#˜ÉÕ-jêG—EQË‚™[Íßó7/Õìj«(Âá\~»TþO°¹©|Ùæ±ÄÝØC.ÐæD:h9/¨þ à€Û‚cü\€Nb'c£¨¢g‘Ý )æýPN+Ã3Ù†­7¬W9žªÖIÞ’36‹÷…é_©9¤S'¼X ,€L‚”‹U¬®¦ÿG‘•äó vBJð°Di i=<VÖ^Ê0s· ë¹£Å¡Kû#N© ¶Á&¼âÔŸ;F}p´oQú=éð©¡!hßÀÏ7¬$ÖRïn[ æŸÕá xµ í{AÆ$L¨ä)—¡÷¼K¯aÎŧ8WÓ1{ã0³³eP´ª¤H;°ÛŸŸæ—A®4üi£€ÅZå5L íù‡Oàæ‚iô·Aç3wÝjØâ“êNˆÖéñ[í‡ñkwü³p“«º*(Ö]'ÞüsD°•€¼Dˆ²¯ ýQÿ»øÔªOׯïº"|@fKê­‡ŠÃ8†Ÿu Í6²XŠè^°¥ëTà|¿`'»Ôª®[¹ÛWŽötoáõàþŸŽéäí°N¤Pg°isœD\ÆÜZoœÀç².¹„“DŽ`"]à.– öDy®t€›×e_äjNh¥@BPì üÄl}®·ëÃ÷·/©*Af,”*¹Zª°ê8ÁnùÆSYN#Cbú–*C|ôEΖå}ü†]~€•3û­ jnhÇñ„v9lD­ Õ”Æûä|9wßtHa>Ÿ¬2ó  ÀJµk¡Î$P4µÅsd ½ØÖê«7ÐÊßÛ¾òÊhðÉ'Ù;ÈkDÿä“Oô4§8¨ór ë–£ͦ—øO‘ïÃRˆÍn©á$»Ažvœ3¸’)6R}rÞCY;ß^Ú¡ˆö˜2†1ZlØÞe×ÜlðQ§¶FbZXC¤6C òŒ2Ø@C¹8Lðh±&‰™í%V‚ZM¶+fØ$ËTÅõ²©ÜG ÀIœ”mÏ.˜šºH=f3Jc˜¯^õ‚ºR3ž|õ@÷qãn4Ô÷ÁŒ/  ×f¯ÙMšý&®Q3iv­XgXpGú)N êX¤ 0ù"üU:ÉIUöK^ ¨ñõ†Ÿ1a—¹u4A:X ŠÚ´¿C‚ŽTÃF™\8<&¸¬¹Â·lܵÃ" rÛ|¾ ßMêe˜XŒœúâ!|fbÞ ªwV—J„H®lK ³j¥÷ÖKξË8êKm*·¼Oö(©×âËÕF.ï*cé| Æ„¸ƒ$eÒWžb“ªëÍL»ðC…ãKhÑ…z–³É:&\ùDÚšL>,—} Í,ƒÑÏ [¥RQÛèF ~p$WÜc'–W¨b–Ák¸Èdmk&+??D‘Íz¯Ð´‹ag*ÊÉ€«”bF½dJh|adrÝ©cÃGjØÁ,h1‹>IÞP¹˜eÕR ªÝ‘:Fâ7«Fn‹M^=[š ù`z¥’<+ØÞà76<æv‹æ…Ò+¼ŠâÂ_ KºŽ Óò”7a¾N~Qõ¹Gœ2b>ñìå)`(Ó6ÿy:yNÓâǼW_sóyðeq¾¼›â#5Ðcμ6AYê½^|‚UªÀfeþ`uù{4müéðO¦Þaÿ~ÿH ƒ|À>Ì¿Ïàçág÷ñçÁá½{ø“ÿýéððÞý{÷ï~vï³û2_ÞûSrÿ×X€Ì_$ÉŸ8{ãs†ÿô/÷¯vÿ­–ý[ìÿƒƒ{w?îÿïcÿ –Þ\ïµÿê÷ÿîáýûfÿÜ;¼ô™ùþð³Ïÿ”|Üÿ_üß­ú¯aþ/ù¦˜¯ Ô±=ê$`!§ûù›bâ-´ø 䊠êÓ-PK’ð^™¼ÈÌj_´ R’¼\À9æ×a°ÄÄÞbmÖðID蚆þÊÙ Xäôž?é ÆÈȌ׾øü‰äœ¥#t_ÎÖ”F¦Õí«ïN_&/Ÿ}ûêLJ/'æ÷ç/žýõôÑãGIóáKów3yøô‘ùßÓÏ'O’ÇÿõüÅã—/“g/’ÓïŸ?9}üÈ4cÞ~ñðé«ÓÇ/hçÑéËož<<ýþñ£nrúô›'?<:}ú—nòõ¯’§Ï^%ON¿?}eºxõ¬kð8Þγo“W§¯ž<î&ß?~ñÍwæÓ‡_Ÿ>9}õßÝäá_ž>}ùÊ4ýí Óðãï?}ÕÅ~{ú꩜ié[3¾‡Éó‡/^~óÓ‡/’ç?¼xþìåcÜ‹K-—“,/ͺN䯢”߸g£1ÎÎ¥>Tøìj+Åd’Ec†AßÔXŸ'3¹¥F’!®ÊùаóŸAÊÛr¼×Óaº×¶ävÐk À”¬/€a˜T9‡@‚Dk]ÅÜ– BÀ,@>B Zè3z”#9/rTŒÆÒhHJ9ØŒŠ„-ðMߎá#zêIÅ7§„Læì×ý¾jeœœÈKí} ýãKX•[M -îõ‚Š"÷óÒ´Ÿ´ÇdÒ;¤<Å Géu}^¦si’òLݤe>ou\s³ÒTh¾¹nuú¸NI»u¹º\µÂçླ+é “Vœ:¸wpÀ¯ò¶º¼RAääLì|y욊«~g\¤Ü­ovðÙÖE:ð( Úlúzà¡ Aa]4Ét§¯ãì7nBô-ܧΜ ïñ¹ Qø4Ìï˜1¢yë$ì¸Cç NÚ „€«6÷ÌQ®| ûŠÑ+óó%=bïyÒ Àn=4Ú™ `¨ èmy þc†nÞøÓÇ<ù/(Âô¡å¿£Ãûwï&òÿƒF4Ÿ}”ÿþpò_\ü»ÿûÿ?Š¿ñÏÜ…’*¤-7äk&gû%J„ä*ËüªøÓ”iߤž:K¯5²sätÐt˜—-0iN>Ö¬¡"àú¶Â©! ¸fË>0òçç3¬4%^LŠ¡üÎp¼UAwþöb`úD„ûp=4‚”|²°¿)÷$b€_e-B«¯9¤o>*æËȼ\„ñŽKäæÄ±WÝ~²¶¿ŠL*³ÝÜ~¯®ûQ>§ßA1_@5ú‹l Õ"Û,<éB$à×V7™¤ÓᘜUÇ É9$@ÑZ%`™Ed0¨,ù‹Òn?–ø öK/vHB<#\„Áj1!Q5›]å sâÍèÚØ¼ÅŒŽ¾Ñ3o´(4¶US?‚ ]ðC¦G_>¢€>žàgíV]úÀ¦§ r}¦vëuÚûù ÷ù§ýÞÙ§¦{#:6òr`t›»G ÔŠ5«ÀyØZøE ù'ÿ™>âê•à‹m·þ–^¥fæYË 3ó<­‹GÀý5¥a\fxŽàÌÈÞfë““–kæõõ‹gÿùøéàÑÃ—ß ^ C{jX”m¿eÄ¡´(³HÒò-ŵ¤µá˜H•”F@íÙh_©8ÞRh1ÄÐšŽœ ¢š’ä»â|²]i…Àì‹2›Eà..1„¸(Þ‚Öè—ž67Mï%ÔVΤ© ‰ô˜0“N R°ÓýÏŽŒ”Dx¢3A!âvš×ÒaX3pWŸ…<ú‹A4eAéYz±ÌLI?ižrL”›•@Ñì®×_iÌæêJ ´”n ¦û7oz½YÑóÞz#e„;o6MÁ£ìc#¨­ÐÓ´²´;†écµ›ÊJ³Ÿn">Éž¢“Ý+bØ6 pȤá§P0ëD6˜Ó̹5É~Â}]™ƒ‰ •pÇ`pàׇù,]¬;ýiNöÈÛbÆgÌЀá/‘ñ;znP”¨^Á‘Þñ|.³ež•íÎë–á]ðpë¬ÓÇJF ¯¹#8˜#ÓŽhyóX`¼op°‰·õÅ}Û0òÄ)'7Õ×PØ($– b;†Õì lÖxÙþqc·’·Y6çðƒéb|ôZCã”¶?í7¤×9aÅœ[5YÛ—™á@­5&ˆž$¯ýå?"зÞJþ3ä?NªÏè9ñ¥·©ë~:‡_ÿ5Òøæ(ˆM Æiy9xÙvDîLl¨(÷þ|ª/ÖŽ[µ@i&‚eÓ‹ â ˜äš …\‡Ž5µaq·¼”U1¡IJ.ÿ ±/‘R‚b&U)ïÃiÙý}K"¹º\5hÇIÕØmÎ ØŸ*œ[s‰zCʉu Ô_¾£XÞ.@B#£%†B&,Íí¡1 $YŒX‡\*ælÄ·°42 G‹¹säÀÅRˆ§KK[ÞîÅÈŒòÅh5¥‚Ý-ɱHý~Ÿá³Ì••©Zåè§ ?Ä ¢‚ ûÏÁn×¶©×nIÌ•Ù{9j©¼¡Ör±>þiÖRŸ(¨7ÖˆwÒãÕVhè‡Á›“2«}öÀ|qæ†G³<Ñs;}þXf~ÞAùz5nF1%‚Í6¶Mmj±Âμ-Ò&•²&1Ïi={/¨-‹fo•I>$V æQŠâÂÀ1ÛFß³7ÞÆzR®êbr H †¿R+.;Œæ9‘ }uŒäT̄ڥS/9˜œÂÓùa§ ™iRè \TŠfíŽ`¬E:­]Ɇõ[‚äI* Ëža5„˜ÿ®ƒÒÝ·øŒÚI!™Q?ÑIê+£>hdl#à`báI«´‰[tç÷^VF! ‘YAˆ/âë-Ád„LGÙq;ØìËMfÜ톫ÙruçQ6ÌS# ÁÚ¹$ìVBkד€SL§<ª)0FÚ]Óá`Ô¸Àb1“½iOóÙª¤FWJñÜn$s¶£þƒ®eN×™JDºå‘즽Ζÿ»Ãpû°LY®ç„º\Ú﹄„›äÖ›74A³ÐF.ÌõÓAm Iٻŵ;Qb „Yz@‘.!LªÛÅAq‰écá„Ù2Ñü«,È+ ¥xdXF#õ›A•$-o Ø:€a@4lb—˜ê .M ˜±™Õ,Páp%ãìÔ>ÉËOjŽ›‰7Ís˜qÉaµò€Ø‰q’ç”Cßœ¤0â Aˆª×“ì†[dT1×¢ºšYqf™ŸþJ{}ëaˆì¯ý‰ÒÍ)ýäȽ(•óc4¯•ºRÎôW}‚dhãK±/^{iÄÍÞ"˜£k$¬/šþ3t1McÑ~]‘¿æ¢;Ç?9ifƒæg晕)0.¿¤;·mv±aÉÁîŒ;”8ÍgZ²Bû¹ò `µl{Q6×gnæóÿ~õݳ§Ï¾úNxÂiçWƒÇKµ£ðR\l €€Ø]W. ÓHWÇ{"ËÀÎà¼uf`X]a »];©Â»‹'ÞŸóvËÍ¢Õ…t¾¬ã=CÑþm¦ûÕÎãFI…‰¥»ç½ß…^OÌÿ:à Ä#ìÜ—¾°O‚¡ïÜvì +vC"+äe£´ãš*~¶Xs:¬1›.„ ¹ç¶‘&o'mX·ã† fÎÃaÒI(¤¸4#«ùã2Œ•œ¥íV¿¥v¤³¿. g ÀçèˆéÄ™Ÿ!±±Õ{†¾µ n³b× MáKD&OŸýðòñ‹—§¯Ÿ´Þñbí;¯çî ûíÁAæ¤`îùL umú¬«šÓòÇÔ TcUž«0²ªllöÔ±¦/HBm##2¸ÿ™­ƒcKä:€œéa«ºŸäS£AõþêªyŒÜ€Ê*<ËûW^f“ÉÉ«Å*ÛöàrœÏ*¤ºõ}o}) þ—¯=ûáÕ–×F#ÎÇå ò6¹;Û,wó>Τ›à/,àéc#êV 37l¯íŽP² ©¼4_WW½Î¿õ˹Q”ԳʂŽ&z]$ù·"ƒ0r)ºÚ­öOã×ý³ŸÆ¶ùÑÿÄüò¿ÿWËvØé_,ŠÕ¼­râ£Ôç«|ÜøöôÉãÁËo¾{üýãÀÝÁµ[€CÐ?µÎ>ߘâô]a”æçÄ-NÁKÓ®ózõõSî´ÿ¢ 浩ڄ e‘˜ËVdbK}‰2â–#¿Èdxp céWB€À™S¼mSùcóG79O—éää[À·W"°a¦j)ÚæÉNx+ãÂÁI s§I÷«#¡1˜%H_ìûÁOÛú2³Î³.Ö îGW¯ÀI»õI«Û©&¸HOPª;fÕâ” b Âç]N#‚:È(Q¢µŒ%Hª Þ[äajEk†–Ú¯Ï:X;ßG,Ïs€3È}x4K)RêkާÓx¬J%s‡¨Ð!ß—âLã’ò ¦µ®”$à·ˆ@®Óu)¨ú™Ô½€ÌOK@0Ö‚À˜¿ÍÖ »Å—Ÿ„· tiJ†¥ó†¢[Ó´Ó‘ ›ëL“HË^¹FÈIì=ÞRÞ&E±Ê‘Zq®z£©9«Õ–º Ñ¢§.—\@Iì­DŠ#;©»*ís;·^Á<úF·¸o½…%‰‹WôµYMàk´LÕu¯Ù‚×jªÝÀ/Å9„÷‡ªAˆUM!-슷N©öMa#WùÙÿú¯ÿ"M±N k ¨ŽHbîbà‘¹£š½†R‚¹½øÍÿ:Jh5o—MRÌ· 4°ÒJÈ[ ,Ûþ ©\ÅWMîpØÀ&áE€ä3t ¹ ¡{àÅ¡aô6Aaªh¯ügkB2­´¹¾+@ÎZvq|¬VP…v’^X@QÆApmÜ¢CÁG3@‹Y³`gÅLëËë+–]Î)”š¸¼k©ib‘Mسhäß…­NŽÜ #z„¨¡€Štº Æ‹€s–Þšš—P9¤”­u ±y,#ý™ ðCþÜ"̪=»‘m)-¢?Œót¬ €4´ºæAxµm\Ó9¿9—HyÇžXر.mU¿êÄ€¹Ò Eƒ7Ì+:˜:?1Ó ;Wl¹ÌAŸ¬é 7Pz–ùPæ«N£ç«îJáÆ™%e¤Ü¶8ª4å;º¶„`›À¸ò%–JƺJlÂûÜÄÓ%µ¼Èz—|Þ°SÆfƒƒ>sL ’}×VlÙ61L õÌŠ(HÆÃÏó K8’PAq|®2á妶¨) ¿˜ÅÛÒÁ‚þaÚúpÎ.'Y|¡– ýâ(4›-¯¡7”÷ú’ ·ª`úo?-–âxü<¹û磮c²××ךǎ³+sqÏKøOïeP©Ü¯"M=A·áÊ(IÆ1F,èÝ58P ò$ !cýáÌúõ€ •§œ–˦#ÊA[Mo?8ÐðbEOZZI p ð³Øgx¡ui(BÕžPÌ@n%"<ÅùëIÒjµ~R!ºÀü~jÌ%ªÓìÕëã³/ÜfŠæ/õÄH™O^k:÷Ë[òy½í&Wbz–¯MÓ²Ýù©Ta–£x¯º‰ã9›µ¯úòaçää>6¯Ñlb¦î¥×g!c=ûÂL9X²[rÜ(«j8´¯pp6]šÏ¾€ÿ´;-m+fE„3Ã<ãí?é#©7o•º§âj·£‚دѶ"¶z(©Úe º²µà€Sbà cIÝô =˜Ê»êAé'À´0@ˆK¿Wöñ ØÁü¤Òºi\¶4øðY²å4œÂÈ;CF¤ª½Ô@K4òD¾ÃÙ´;‘¯P=®{Ï)ô'¾=ò¬^ºö¬!*ò²¬³VËÔ½Ûκgw°˜%It 7¶X¿›µË¡ˆ³îe@¨¡ì3Z}T=WúFÍË< þjhK'=[=7¾Å*¥KéÒ;Ç•A’¿Éù&ÛÍȱär«P¨Ž ³¢¹ÙêæÜD:O°™f§Q!l8,F…¨a‹;ù4:oa¢!j­sK^ÃEbë®<®´¥‹€ƒé?ƒý—ÞÝÏrÙ6O¾#V2®‘]­S¥ˆ€É"„sô–l©¡ãêv@…³l±lt£-wÁ°µ-ÓYöÜ÷*ç$ uOU‚mÁöWÀ ›ôÂcè[¶%`þúφfwè–‚Ÿ° "J¡»Žß[ÆPwÍD?÷'ºùöÙ:÷m—YÈ{òÉUVv°Â¦ÚŽOÅ×ÃÃIÜgÿ!—p§Êò0$ÈŸhÚḾJN‡—©Ò{Ù¯´"É\}ø¥ÍÑéÔ ~«ˆq“mc™£újD¬|æbU¬¹zÏFDÒþtCãõMYƒzü/”ˆ‚Lð¹p 6F‡~[ —êÂS4UûïT‚üu»•|Ÿ®‡èŠÄz™5A¶‡óÖ]gA;˜Ü‹$ƒ^=g ÉÅð`1?Iˆš ± ‚%\±cqywÎø[]Ñ6w‰EpóšaÑ}²eh\­†4¥ DºVÃæÊÂzlü«QoûPJ•ðÆÈQZ¶7%„túbÜE £`ŸñubZä€×4ÖªntœIÍ;âë\£­\ÊJaúgµyw™ÃÃàò g]®¾DÁ]V¯.Z¯u&צý’~ O>ÆjúiD)lÌMmßK¹Û¿-¾ÌNL`‘C_ã§ï&잯ˆæ; έm§a[ïg¥­Ê¯ÔN³¦85«`ƒæIƒ×ÂûÌÖ!?”bß Ù=¾M<™#gQ¦³òŠ­áe;IgPK¤9+ºM©ä)…µGÓT9[}*´ô»ÛbE |ŽQ*ÖÓjß.;GW/ýÿµÈ¥Ntïö;+!P¼KêÆAtÂCï²”U*ìì/èYrQ¡C<óNèÐÆ|=Zå`(œ³¶‚”é2/!Béo‘ý½ËàÂ:ÄÅÊhèœL‚rxMPž÷Òf.èhB¾E]»ˆ,°ºž±ÜF¾kM"®9ââ¯1¯°1&-Ñé=ü˜SjU$Sºó }•²ßˆµÇ~º‘ó? (K˜¢iЧN’ `3S‡J0e¶¸Ãk™AÃ5æmñ¨‚L·’¾™0Ý~ u¶)]®›jØü¥óœ£r¸VméxQûË×öÁiî¢t¾[V™cìZ> `ˆð×¶¯ÊRíä5üBбDëÌ]>¯ •ôç‹0R0cø y^ôXÊËæÒ§kY?Cál´tÅp æfÅ"Ô;·ç4¡}Çjhä§ÆC3Ìl¤II-3i^†T ÀX?¸.4E– è†7&ecL²? e›GÿúøÉ³çƒG§/_Àåû‘NT‰¥wJ§éKˆ;‘Pâ#ZÄÑ5ó ¹˜ˆÝÀ)ÞšÓ®¿¤pÆñ…Ô3´œåS[qp–ÙªïÜuT°¥dvZFÛ<ð8ÝzEàŽ Å¶º¸ÈÕ³!n9ÇS‹RÇK ¡ì)Ua,¨Ì;²Tîƒ#ÝyÛ0’AÒ1YfS†_ól‰×ìßûø»>“àùÁ;@<‡t?À߯ÎÌÿcÔñÉIk—ÇÛ󨺃Y³H0¤p¡¬´¥ ›þ`ÏëÙ2~S3"H‘ÀÖ¬LO‡ rŸ­G§SóòYxRÏ#ئ>.ˆ°ÉF‹¢ª‰š+…Ée=¹0-jºÑˆÚÞI %ßEç¦ šÂ§0íEƒ‡ðº/¨@s¨3C¤¥ÊGvÕ*iÓ|FG¯(]K3½þ>{Œup èNìc¦õ¯Y¢Ø!7|9ÛÂX*ǹ–‹Ò–…Âzüõ9Þ¢JÍm½¿˜£@¦ÐO3 ­º]!c[ np| 4“&[¢ß¡›®‰QðAõü@±å"eß H·˜FWAdœPÃÛï5»ž[«¬0xT91ý|²*/ÛÏ⣭ȼZÎW¸»ß\óå=ˆÛ/««â—vŒëÌ Ò¡e¯ö ²²þuê¥ׯž¡Y;Ìi›Ôx#Í÷Ï?><}ÕP†K7ÛÆum13BiÄôÜ×¾R½Í“W]JõΪÝÞàŽ¨ŠˆWAW–è]Çõuñ·‚)˜_8«»µÇ:‹cŽ`ÌÛÃ×Ê,F<$ÕÓ+ùiF[HâAtÍ'EñÖ¦ÑÚ38rÎÌZJ£€PÓVåS2\ûe‹›ÝZ‹wu5jÌÆ.t0Š Ñn~#ÙSÂïÌ„›Éíš^Ô¥þUrX»ðjÓT¥ÕinŽDlråF l8“nÈšŽ·6‡=nfÓdSlvNŒyšÎÛ¦O0ÊNg60V¶•˜æ0ö„$wªHNqaûæ+‰Óÿ†V“Ì÷¦Þ²ïÔÔŽ=2hˆK»”£sì7·»äi;Æø2J§¬`Å€û¯µx‚w±Ïº… GP†ºr# e·ÆYÂa#„4ëe0à- Ó2ƒ]m­Jщn[Am×[#¼²3›Ÿ®Ôˆ‘Ç£O×›øzf8¨º6ð‰`ÆÝDž®^¢ã³ýn]|‰š;‹oø /`VÖM-¢ ±HöÜ8îõ£‡”ç2~‚àoO@R ›;mP˜ëƒ 8©.ÿ™P)*ˆ|ÿy)&€:°ÖU…ô ÑúÎê*èÔ™JŸhƸ—¸%TÙ´µü[ =Ð6lÒ$tAõÏX½Ò@)¡Þµví7 ÐFsH{ÏÐlC#~éÐ$Ü×Ú‚¾x„Gl¿ÿ0‰Í£¤8r™lÉvçÿËg?¼øæ1úþwØHÎôY§(&²öûþI>e°“ô9LŠý%ª¾«©°7úü§ÿÑ…[ï½…åúÐs¨ÝOÇž Ô€à“+?•iKü|t•ˆÔ^oyýŠ:9ŽZ±es΢ßJ?WU£ãdSãöúö57Ö ‡wôæbž&»íqûËÚn7d8WEO^êêpÄW`Kâˆ4hØ*‰^š1ÕUU4¾j òÒö÷|À|{\çí¨aÿuïP·Ï3µt¦ü.˜­»I·åùn0rÇ]— 62LÛ0ëèlt:°·‚'aõ¥i¿[œ`çfóÑáèí7›ˆÚp*øü†6Íù–WDëªÈÇ¥@Õú¨˜çÝé÷׈PŒƒ†TÏÏ©Œ Éðî‘7Ä`Í"ëîieHA¥Ì›³bj[rq–µå©™Ñ‚¶¡\PžÈ~¸xÎë =2sÖ .É‚³ÿÂ…p<§Æ)‚§L¼cV× ž2s]%/m#9G¥|<—\èŠ oYÛIÃ×QB·Dí¢ŸãÃbvWvŒQF ÌdúÄ®X {ÝJ^`a]9V醎3ÿ}O €Ô&´ƒý¬týc†ÅŒ”ƒŠØz69¼»ñM°‡ÁûHùýŠç¡äâ„×F@޽­Ì’§óú¨ñ¶„º[a·¡›Ð Ò2bæ¸îÌÇ·dáîD;»ØkõF+ƒÅŒÇ;p·Ë>˜uqÌõÛ()?þË_PLŽÚÈÁUÄ3eÕ‹áz¡p;¡Í¨ÍªÆ Î>Ü»žü·êíF¨û^K]«áw¦0gTŠ¡ÌÛ†÷É‘%ÀÖèýÿÞÅŠžù²¿ÍôÏ¡¡%¸y·ÛÂj[ÞÑ£ìHϦiG³cw³ÄÁ¿i¶LÇé2­ZÐ..¾çïÚ[¢¶>cßþ–…;»µ‘Î>ÓÞ>&™Y\ÿòG»enˆži¢~ÀÖöAmPvu¶WMg{tÔÙL$jö[È#^賿šY`ÀŸµw²sïHã»Qš:D(,ÖtP£Œ‹Á|=jo|êV"Â\ÞΖ9ƒ0ý••„[c¯Y9ìf‚G„¼bÀp çøÆÈtd«” 7Õv.Šblz.V—ýZ{Q¹¿ñz»û=Ø[£Ž¶o;_P¿L9Ó6š…èaˆéždKÏ [·#PáÝ6ùòxãRÒ «ÁM ýÚf¸ªð§ÚÅ ¶Œ(ý,ÑWØc~%qýÇÉŽà5›<AÌÌìª_ŽÒYûµ›òY§Q+‰ÁóFG©Œ‰¶NànþÅðH‰º¡§»J@ž]ílÿÔ#Ÿ‡˜5PN/ÂA™ÕI¾!ÖOô…zÀœ]Â$ϱüìì­ÌKÉÀˆ \7ü7,4FX9Øÿ0°õŒÍŠõæÈ­‡c 7Bc 6u{Aœ3‹ÈPnùÑ”Øl{!’§^ ñÙ3S>©€ötõènÜ\:IßBз’o.³Ñ[”Aö Fo„nVvÏ; ÓÂLˆK—/£ÐWíx¦Ý®¹zd£6˜3µãDåq5v‹Ñ®¼íg}uv9[>¹>ÇeƒPC:@¢í’Ÿ ©c ¢®÷ ã?Ùû€šge6ˆ¿÷#R§ŽVF©)…€gï$K6PaŒ°'-Šm s Þ¦óÂEøœ‡…å†Le;žŽ±ð#}Ì[^eánâU ¯?–»Þ!êÈecEÒÑD9+<—Ÿïþ¼‘ö¯Þö¨›z;Å#Nüôbi¶Dæ4Q<ŽÁÇRd_>ÞÐŽª¼‰‹£•“ ¡6u©©n­˜gÎÖr‘ÖY,ö¯E½]'n[Rùçí! 1VO#·¶ÞŠ•7,åþ3½›Ó(~'Ïo×¢b>öh^ÜÙàRÈne°LˆaµjiB…Þ‡­K¬a¤Fï‚Fêüî1Ô©Ê='-³p£ÚÚ·Úøj~’Öl¥BXW3˜®-º%ƬémêíȽ¶éÐß©1!×–k~Úbb®áJÑ>»ÔˆDÒ½¾]Â¥Kñ©µ›²U>ju9ÞS·€Nž²³õe™[õšÒî{ª‰,€·åª¶KÄS< ©å….ö±RÔ|Á™è¯{‡:,Ú&³ˆdç¼8O|ׇmÊ9®òL ÂJ¾ÛÉŠßñÖÊ.RIå}¦¹,0á£^xÀkÎ<‚\ VÉhkžãF-}œ?^W?Ò;/ #Ѐ’Õ›ßU=ø‚µ¦Ÿ”õnòm¬¹jªði?Çuƒ¨Le¥)í’{öŸ]•àKQlf«³q°Íˆëë‚âQmZš†çs•òنɃ¯ Û]ÍŒ¤æ­µÎÀ¶L¨ë²Æ¹‡•à©4U.ÆTîB‘U³Ë}îƒòÉ r‘Q| å€6%ÔK5§jL ÆŸ¥kŒúòh?€“ëÆ,ÿh‰8…³baäuC Z—ÏgƒóôÊ|Vœ‡z³šÀ5¨ˆTvúÑ#h¦ =g˜¿óÒÕü6\gôֽ⊎^8óЧ¶´µ}Äk?ŒÅ ßžUó„αXï+’C£2QέSX™R½Zßà¤÷ , !yeׄ—²šAí4ªu'[Ç0 …Å9\hfÊ6$´o˸¹†<+¬½ãÎâ5–¹©ç·’ç ÞoIÜÛ -Œ——=Ì® £RÿI½­Püƒj‚"¼ ü]ö3¦|œ"q&£õh’ämãÕl !z€U 3”êÎg{ˆíyNÃÒVß–tÛÙq !·:ÌÓ° Öx Hö?Âë×ùxÍ ×3„úáììËú’#3ÍÝ@àxÕ¦YµeZr£Ò§>½±pöM1;7d΄(7˜‚ Yܧ åhk{ ¦$°k@iM0)›;?TDé&§í©X§€— ÅÐOìàëjC ¿)–ypEEz†qnh$œº7³SgIد†~6´‘^˜cÝßä¦SbØfg˜/xŠÛŠ9ÆØ¨ ­n øÐ~N·¨Ývßn¦•âf(ªÀ+%Ãz¡ê6ÕdwùkgYlo¹,v&žc’ÏŠyI•H›ÀbšÃe^F|îK)þ섎~c7ޱƒÁ#|…¯u%ä5ÞeÅ ¡¾X&ëm¯Iòº–+ xëY,0AÌ^[˜Ó6kîã‹ wâmFÕŒuÅkeÏDAÍC:ÀOffZ1ÜllÚQoÚ?î­›vb‘oñ°6žÞkoU½Xù Ñl›#Ùö2M»`(æïœ[ A¬ZNnG,"5 :&ƒ zŽŒ V9ĥؾ¶)tmŸ°µŠ˜ñþájD…uƒÀoeTÖÙ1úc>Éÿì˜wÉFôâËì›]64Rq¦3}ZBÚ¿}g lì“b؇ÿ´7å%ÆøIËeŒF> èp›ôgKÌ‘í±ì?’¶8â§ {R­Hà©·ËÍæÉÛÛ"÷ûGi j#N¿&[ýC®Á÷’·®'_þV³g óh5^œEâ•ð»Áèü" ½"ª&Ó›ù¾Uëo ˜m±æCOsÙ$xÐts]ã÷8‡˜u°Tlâ0RÍ|TÌ—ýlŒP‚¸]©cA±7ƒ#Ku£ÈZÆZÓbé¹øÓ¸aÔÏN?µ—xµ—³ÝB…ü°Å 7çïa‹.éJ ·‹­í9c„Ҙ': Õ"úû>œš¢‘uUµ¦¦#–7,¨pÒ;¬NDx€W`ï7 Ô;ôd¨¸e>Q94>@Pm?ºæD8þj<bP7®kMÆ“¹m£µ÷[èDÇ«³&wi¥Øc ª‰m]4åzÇ­«Bµ×šÆËmø–*;MaKûNf׺Yç‹ Ûi2µ¡w{Ì ¦ÞÝŽ»úì¾á›7ZùH1Ï]îì';Ž7¨·×0½¢r»œNöá’÷ïâjE>¨üY[è³¾Æç¶’ž®šgÅmÜõÊynªÞY_¸skÎ %:oP‘³RŒ“7Xðz›ÛžÿÚûáÒ?ukHÀz²6Ý0ÀÃ4[ !¢•„â+ýÔ½´m‰¶|ßmDWNÿáѬ]Ç~@´Šv DGÙÐâD le^½iÛˆ{§òµŠŠ7Ðìb|_Rü0´F÷hÌÑ–¿ï¿7jª!MNíi0™ Óö'ÚÂë‡(~ f‚Ÿ{Ò§ŸI‡’æ&€ _E¨ƒ@‰Œ4áðš8~™£Íæk˜x»\XŠ.Wçç¹ÙÀÕl\p#!.|e¾Óépœ&Ç4iz’­+ºú“é%a‚¦/?” ÁÎL[%˜ÑÛÔ§R˜-¯U­=ã0wªÓGuÞk§M av"h`2Oü¿WX½<] Œ ~â– \Æü¢‡ …P¤mal')ô±«Ò)Ø{\’b¯vãa"s¦`ú66ßÀ¢¼><ÛåÚ<‰佫VÍ86á„{¿fÉ ÇÔAÇ¢ ïíÃ…Ô]óå[Á·VpÖ5¶ÍÕ¸:¢Q¹u‹MÝV(ÔQüéöNI¸ø¨i¡oÛ b@7"‰µ,._‹Å1z±büÅbÃíǯÏÍŒG $0xˆE¥Ùˆ²£gG‚úÕaßúé¬pÔi²¾tÝöË‹u¹…’t±žøµu·JgãÖü׸•¼$gáE6ËìpXÍ0¶¤}f‡Z›Wùï¾Rëoº“;ù-µÕ„õŽŠË‰8] 5¯0Îä¤Å¬0Ÿ-³…™±ù¯z×¢‘j’<¼È#ø*ãV1]†¾a¢h6›¡‰eÖ1h®ô;®ûêÓ¡x™¦§¹á •©Œd•PHr c ‚søÎsä7$‡Â#PÅ*r[¨K®ÜmVºž›Bp§‘5l7áX:pbs-ŠtÄfv åfÀÀ*ô3ûc×½#Ò¼¿žÆUR?ÍZŸúŸ~Ú’ZOL3à¾yÃ+þæ=êT:>…táÆ-¡jd;’H´ÍT;R¾ “Uû¦­´Ä‘ð6‘–Þ‹ü‘/ùÑȉÐ3ŸšÛ g2ªåFÄ\×Ç•€-󩲨8ó‰1®†¿5_‚áá·£•Ñ{¦ùÏ™þ¶žŸÑXU~É_ÔŒg_6HÑt)€…AåTâeÌ1w A&Ú$/%¿Êú[1„®£®.•j ! ±Ài‚ù % )kJ½N×D‹x[š‡Ì¶[h_Éb¡‘ùˆÇ]»…xÖ.²ÏdtY%—• Ê ø7z½Ežo;|Î ­•rAmÏ@DbD) ÈVJSR¾î×/žýç㧃G_~7xi¤ÄOOŸþ¥·XbÚaìæÖûÙq\EÙŽ›Ç&»Žã{úr`»Œcƒ¬ˆ©KCïÞô öf»üV:]:­ë«v £k— ÃuéÔŸX¸b¢_Ô«äz¼'UVWÏ¢ŸÚûC×bO8ã*Šòãú”„‡Fôþ»‰´ðZÏñl¹!:®à†¨ÐùpRŒÞâ>¢§¤³Y®Ø01õ|;pì©“T%lŸ £T½þ·ÑŽÙ‹V«AhlFjHÆ*cB‚™Œ†œ`ù7-WJ¶›ßc1ªÌæ$I½&¹Å½ÿZ¿{vÖi课þáôÉ£g?¼<{qú—Ó§Ÿ ôÃÔ|Ý8Œ>Ûò[ ÞÅÀž(Þ·#ÓHáÈl™ížãPð`¾nÜnÇÏF «g„™–ùÄ|¡ þËzí©o¼‚lI*õ{™.æ>fõ= W•ù»FÔ1bTÃbÂnït¢.|,BÀb² tCºtP„ŽRsæS¬õ0¦'K?Ð.6D¥©ñœÙWl)©Pýà^¡æFÙšl<Ï€7¼¯XÇwQ'ê^VìAƒ3Ä,¿„Ÿœ‰/õ×a:¦ ;ÀRÅ9¸€Tn¥­šÆ {qÌÍ“üÎЗÿ"`ê}L¥ˆgjj u ™K©ârE±Þz)¥‡M#³{ÀùT;ä„ôR  ÌNÅ¢„lßLÇcRT„ÿè6lü.. )ÃZ§* OH$ãwL)5o³µïÖ䈞C0žHDØ|lV‘’–iár6Ò«ÿ…$Y'Wéd•éU‘N5w o¹t´\áMõŒêUßÒ„GÄpõàÞuƒNp­Igã¤Ø¢XòLÊçU6Úð=¸3Š™zÏoO^¿æ&eŠDœ—hÊ0Š!ŸLC¯J ˜îWëyFÑÛ­Çïæ†¢`Eo"în«òa_é€ô[µ’&¶6 Öܧ ÀIZe€„¢'ÎÉeönË÷©äÂIj«:y‚S-Ò'Žn¿`ü4#`š\< RЉe’1`#µ RHÁ5…`|•Vb¾ðpAEŽ×TfÛ…{¾?-Æ+ÓňVŸMøúµt¹\”[ ƒTÍﱡÚÅ–Eî&zT öE¥ÝË}(¶ÏÀ?ˆ’Ku-¡%ÚäºÜåJ¦vu†ÒüØÅÄUúãøu[bÚªµiue@ÁÅÝøê®éK[_Ïî×Z©™¢lv˜ûfŸLÔjƒL³%¹¹N·4aÖå (›=-^ˆœÆ‚aŸhQ¶÷kJhª´ŸÍfâù"7Ó´²†%;¬ç´šLø&(ôM%vÂêõ.W;<\îÅÆ;ýwzŸõ¼ ’>g«é0[Àkç†÷öóŒd±ÁÕ»Ô }Çt}ü,5BS6¡”Q–=Ü’¨›Ô_u…zŸ«C ‚ú(Åk&~C.`_Ò!ž6"ïNÀ€œƒ.@ŠFéå×rVÌ1ýÙµh» êFçìXvÝ0φïHPÛYprôÊ*fy—ßÃÀ>’ì(ït·ºm©õÓì§™U‘šµ’Oå[N(Gù!]dmÇ<ÆÙ|yÙi½Œa"HŸž$ÍŸf5ùbðq§‰ˆŠïSá©æä¨ËZnÕÚk¥[-ÍFýK$䥴tBY¹ ¹™;jfÎF‚6º/hІ½½y/€ýÑF$ƒ¡®ùœ|ó†™Ú·°,µumbŽ9Êw΋âÎ0]˜ÿý|ghÚ$s0s ~ K¥ ¯sFšæ‰õzfù~xzú_Ý€%4ûý&ºW2‡–[¥Ó˜ÈéW˜M(´Í¢Ël2ç‚duWŽÏÀ$HQRsèEÅÇ\ÈÆêĬq~ô$’žD’úC WpròŠ™ñíR#˜ù©8ñ¢‚¿§ú ö{ñ¡5Ñ0xB§qzf±ûy3I4=N-ã69ºÍêÚe‡Ñ‰sK?´¤:Œ»íäÂi u[ÙM$Umj9ŸäË`K"ÑÊó7߉_ƒ:bÛĘHÒ‡[?YtüݧG›{*wKUZB‰E&ßC—19’˜eXºaù2ÿÍ¿§7orºÒEYdçù;òmeËëÌ´o9[öpÄæOêôQm¶"Ðê‰JjØáÎøO7iuyŒUN!Ó4±ãR gÎöÝ–fÂûVã>Ó3}š#ú ¼= ïÆ–NŸ×æÚ¾¦Ê€¾½èumb‘›ÒJÏ®ÌÚÀ’CwöÔ¨¹›CQJþ¶ižÈØét i¢dŒ¶mäoVb@ß#åÃÝÆƒåz®dÿ±ü“<„R¾ÍîW­p•½EK™åo•y4ç`ôvmî¬%Y¶,Iœîy)Þªr Dú£‘ÀýÊuYQ ¢lX6+“zVSßXÁҧ刅† íÌòìLœipÏîU¼Løø–zôDŽ+”k…•aâÄ€¥æüÝE>âh¯‡bĿķ¼J|Ñ9òÛ€¸M?=šäØP§±9mß<ÓAD/ F4™wÃV(kÜî@ʱ ¡RDïì1Õ Ë¹ )Š&9äC ©ö¯¡}жmGT{¾u`„D— Ã~"š|nîöªGv—nõ Ì//"wË€¸;7éðmŠç‰ø¯GR *úrZŒý6>»_™–á­ýpɨÅÈhÉÍ¿uÂdï² Áj¸â…%se°:ë]Gr5k½J›LžJ ê¶g†p|å[|–UxTkÀ ^2SÊ'Å:XæÅj¶Ì§"óá`2ƒ{É!QHrÐØÚrGÀ Ö toÓùæÎüŒÓoa½lq&l#¶|¶o˜œïP7T÷¼hîmÁÛž ‡Z'M„V²Ô?&D hlµad|ŽƒÈfg*“ˆ,6á±Õ‰+£ó.&k0|ÕçÀÎTÇ .]Ÿáz üøZÃÑ 9ËE~ëXiTåÈoHÿòû cJÖQݶ¥ê4µÒbó«\ 5pá´[öb%éÅ«ží, á ’«y p´@lª\é§Êæ(A £c7 ¾¸ÞåÛÕŠ‰u£èlBõU¶§u¶¬€‡îYÿ˜t*ƒ‹ýöî9'5ø››2©¢7qf·¨cXw}‚^ l˜åEÇ^µØ{Ö¡ãݵÐ¥+9]a~ï•ÎÉ£ØÈ8¿°yDhµˆÑ*Ó)ˆœÖ •ŸoKe2wâ$v]ÿ¥ š²ÇØ©4he§ÿ‘jÄD4µr^’,` i ÓÌ ¯‘”o0òü¶k,_U–LÒE5ÕÜý~·<¨$Ò ý Ç;MË·TˆëÚ/„¾0Ñ~è}=÷c5ÐßgëðÚ%=ó ò\ƒ(YºjAèá¼&Y×õßâàÓY>Ÿ›†nåC¶…•¸‘uºÉQ§Ûñ€í-Â{$ÞµQ_œ`K5Æ ¾«RŒéif(‹5¤ ®–‘J–ýjžxP–GG6eËsO×Ö"—ñnYß³%‹ß©‰ìÙnéP“Á½Ž7¬î`y…+æåL{†ÆìÄ@­(¥VÒ0Ihxœ/®KyÙõÆ4ýi¤:q¥ŸMÄšþ4ó¡o„Óͱcàâ‚ÛE矾\;µa¦A:ŸM†éV'µ'ç¨ÆŒ:‰È£aB,¶Ð›%`ûPˆ›<¨-2Y£vQÑß"A}øÙ]qH JªfˆIutŸÚ¯Šì¦OÓÅ[²Ñ#ž©ÿm›wh×ϪmÊ,²{åñÓ‡_?y<øáåプ§¯Ãgt§®F ïž¯&fãÈ«ªmŽVŠªh+2l«ã¿Y‹¼£ÆJM8ƒºîıð©æß’þF 5•1íatøÚn>Z3ò’Ìñ6Æ–#ÓiÄÕ$>ê^ uVQv»¨(K6Îïo³ž/Ñíâš÷¤þßΊë±m¬9U¹ØÃ·xeɪêÉFh¾Þïús³ˆK[Z2ƒúV˜òÒæ:Øa\VTËcVaB6ǽŸ ûG5KPØ’µ+üܯ*!>ÆÚmç08« žúïUÀ÷1ú-Ø9y›%kµ5h—]cö+ª';zB¦ÁþÞØí£›°ÚéÃñ8„­H¡¼ä2[LÍE5FƒÌ9`";û ¨¼iÔž®µ"˃b?„(^Wv_yÿ=Ÿq˜5ëÊ/# ™.RñÀyݳþžP&KLÄ”Yõ£y‘Ÿò ¢ê¸sÛ«¡ž$ƒFÝb·‘|“‡Nõ'#é–´þÆ~ÉDÓ†Ù"±‡anâ?¸(1-¸à¶-8¸z¸N°Ýž1æ$›7„‚íFA–º~Õ[*–kz€ñ…ÜÛVisP.á”ß¿üë7/^é:¼¯¨,ðlœ.À½ñý{XLXõÒï£E ²wý}U,5¬Ü-.ṵ̀dCˆU^ÍÌ~ä6U«V^¨þÕËße hJN©Þ’½8ûEa™ö“„ <(4jÀ:6+&Ûƒ8Û±|¹Ð†ž,9_Î÷×¼\)û­ä›O?MŽþœ<~gÙšÇ㜑†5M»FÕrÐÒ«fò…¼ºî˜“¢™…,þÖ‚_“¯¾ú*q¸þçó ³oŽúéQ1¢ ßK*zPþôÓñáù9®d±øé§ï׉}^¢¢0æWZÉÞQÿAÿžùëdÇ?ýDá*~*ubyhã›':Úçaɮ̓æÀžùO›Uö—´§E ¹G×ŗЄ¦ó­$ARóKéž}Õì’VrÚkò%)H_éšæ/Q<À"i ­ëS_—ýÒÌSY©°J!¾Ž¿ákÜšîÍzîLõÒØBl9l©-iZhø%<à@4_AmxÒ$6Gêw÷›1µ®iî¡t†Øµ¹g®2¨M ±l~ϑϱ*“<ÅãªÏêïRÒUéŽØ@ýj$MÐn—‚ÅC¹)`¥å°Õà+ÑRÎ_ •J„¾7¢™Ö#åFÚ›çæ´ÀZÜÊVàçdãáíJ.bXf7ZÍÚU¯–€¹W8GX>¾¦Î«“ò'ä!¬ùÆ®]¶ÛÏ·eÌѾt»ìSº.–5¥Ü¡üq*¹‡ÿUu‡àoè?÷ÆŸh{| Z12r 3¿ðë×½Ã3H^kÝi×Q¡º2øôgÇgÒ½….e#S Ò ¹Y†Ò®2¬Š²ÈG®Š¼0¿ˆ³&ñ)ŽÃ~·Î³ Ò0Ës6..P>i}‚÷ …~mÉZÁcÌÚè±¶u÷¼ZM‹%¹÷õÞâÁËË×Ç\%á^3üT,–zPhÑwí—ÂP¿kPÉ.=›]\¸Œ'5Hëî¾vÍ("\pH/%À‚¦QX­FU™®ÓÉÛ ,Àa²ª¼R!Š|¤oý¸É¨U‰“,#C—ö;±ÎÃôEiíÓÖ¨¦&²™[í;E´zù- Z&×i ŒD,!]ø ‚K`ÃŒ?OÅÛx˜ùùŸØÈ¤(Þ²2 Ö ÂÂL5£âroýðÕXG«ÕóÏ×<ÒC#ÈfÓ¹í® n Ár%5½E=v°-#oÒd)ÐSî'ÇhÁRœ®Tó:‹mß`€WÄ`ß(hTä…VïY+Þ­@½†„Ã.Ýzõlì2ÄÊ ×—kq~P_}Q8ˈÿ4¾ÎL†X£åJ×h‰µjÆû§ÿüJ®ëöï÷џGwäÓ;Êï·|·¼IæßƒƒøyøÙ}üypxïþ„_ïÞ;úÓáá½û÷îß}ðàþý?|öàƒ_cV ö$ÉŸÒ¿­fŸ3Wÿ¿Þþ[!?Goã¤ò¯ÑP¡â4^óÆ©uxD ipÕ¼t•× E[åw Õ0¿¡óªvúúÉ«­`º»Y².V‹†´Ô…?),ž¤r½ž£Ò7o8S@|oÞ ‹b U(Qøæ §é³òò¿Ø<•è§Ýb£ñJ@¦léy”ñ¸ áé¥àv &f©Œ=¤÷æ ˜šªÒWÐÍÄô! ©MÍQªùƹ j†9áh=-–ùˆCo †=ì’Xa­ºO¼ƒ/aͽÉ6Õ -Vçææ¢ ¼Ää]5,òþ˜;hµ•€XÏ&H“þÌ$Ì€Šç@’°ÂBPÄ'¼¥Fg.¿™÷ÀZ`î¶çÓ.ªm«~ã#Ë_þ¿š_,Ò±˜9nrláÿ÷î=8øÿ݃£Ï>òÿ_ã×pfxy>ºêÎoô¶ük4^¨b†úžv÷#{U¾U0“)ò³_!ù Ô‡­¶e¸Å|’õ˜×‚Ýñ˜¤m˜liúGº^8ÆcÌE‹ 4œÆü7I^Éõef«Ëa>ϲÛà°xW˜{6®<6ïùwŸ×~bhghÚâ4Ô„Ì`·ºª$yÑÈóÃÐç3†HÒ×pU¹ Žnм6Ð µ;ææ€¹ãäUClÙ< ‘«°gø£^‚FÈЫnkRÏ\/#^¯f’üKdf°š1‰®éh¡ Šoãl7‚»hÔÔ®k’^¤ù¬ έ1WíÁ/ÏDÀÔcÔ¿’öзë\ºðèßú^.v5lU³LGéR(»¨27.QÅah6 Kv3Ö˜@Õ’Iž«º1ŠvƒBŽ3¢jœñ¨XÌ@……K}¸†Õ]ʽn¬°:`Ë™L}HÙÁ|)™-ƒÕìç\°/úý~]<&Ø¥ÙF YÉ#,N×4‡äÇ€ÔÕôó%Ùh¯!æ™”¶ürA£E±‰Á2†Î±åeÑ­ œˆ3Kyq"¥{}²&à.Ê–F¸%ÓÎ(…í5„ %+f=1¢»£$á--ŠæxöŸ, ù«ß€=9†9 €$"ñN™m w#G›ÍO’J훾ÍþÀyoC0‚=¨±@Ë×Ú¸n¦&3ë//~nyþ?€ìln]i%›WfŽvq+yE>z9Ža­ŒìôI^~bËD^M*ÁãÈÑ@z›¯ç9¬ÞLr ‚—MìÇCÖÅâ_KÉ‘b ‹½Là­àv/½yö =µ¹[ë˜àïq[¯ñYqÂ@®'$ò2â(`q3FñÜ9ö«û‡Ç,êíhWFç5ñô“`ïÅYÕ°TÖQw$W–„œ†ÚúħòP; œryâ‚åc´óŸ¼†3 sÙœù@6Ê»õý§-üèNË®¶¶¼ÿ˜æ^*Л]ßJˆ0ÕÜ0öl•»ø¨|T–âÉ‚9໳:€Ýàãdë^6þýäodÚ(ÿäÈÿ‡wÍãåÿ_ᇮ>|~Š·,Â(, >)n;YèOvþG’'3…áûWù«FN3Wf nnþÊ&™á46 Äè¥kOšJ'ùrÆ?Å®¸¡Èze>Í'é«Iªv%žõ<»f¡O5zÉ×k¸œÓÕd‰Bxi¨‰yÔ&bú ‡ ªÜâÖ0‚ÀüžàÀ¯K Ç§Í:GÙÁVz=Ò¼áJs-Èìêà‹Ñ0`sò[ÖWÜHTš¬™Ì)YÅ.ó‹KÃ7{‹ì*G““ˆ¥YÞò|M°°Px;?ÏY\ƨK‰„€˜]\— i^ pNöV‘ÐÇNY&“.Ó+PàsYR¹‹tÕ©ò©­rÅ8Å(bs69¯'Èó @7 ÞGFgõ(5A ñÃæs¤lª0óƒúoiâ à<ïp:¦˜d,^åâJ‚9‘iç¶Ò.MõK ߼lÄ#)  ›%HÞ¥Ñ]ðs.Ý X¤Þxä¥Kë#¹A+ßzSUÚÕ” ™%¥uGf¡¨š£(óÓ´™sõ¯1TWz³°ÄKT‰󢔕´h‚x¸uÓœ`ªv‡!À]A6o7 0±å¹Ñ¬Š­£tψ€]]´eᬷM©Ò÷êZ™¶ƒ€§oŒ7Œ¤[qm„¸×³ØDÃO"'RÌ D´S‚5&ÎKh$hó6ú혮[T+Žôbsr.\ÁT»(†”N8tªÊ"Xl·ÙúºXŒ½=B9D¥‡fwþ¾B7ïüðâ G$Q@q¸(p¾ÌŠÊAjˆ8 ú' ¢"ÌÙ`ðÓ**‡3’NL±ít‚â„ÊJÜ5„›7Е -œrr1©,Ç—Üsæp§Ð0Š®Öt<Ïu(8gwº”Ñ*ï+ÜfjÛJ¼Rœ›Ë–‡\Î8A€=^L´ÌÏŒ3Oè+Vu †µ«n93Üå¥t:¢± ÍPè3’“’¹ë.°öò…Q‚p.§3Î7AËši×Ã(Wæ%Ô¦ì8€§ss©:z‡«hÅñD´?Ìß± èñ@àéôF,)¸\zós#‰ÆxéDc–—F ò”5É_&iiš*³ *…D¯‰p‘©˜o¸'ɵk4$ è¡-”ä]‘ó†!V]8Y÷¼ñ„ô®õ$êã|’^ÀnâE;ã‹Ê° Ó’bþÉ÷*%êe¸C4eX“”S²#Ã¥éX‚E*•3³q^áQ®µº®`³ìšT扵\¬Ñ³Ž»Š\@e¡8,íœÙ^]FòÊ ¡˜´ÜEi#~¯ÛG͘˰F¡™-X?H×|¿IfÈ›àûÔò__fÈ_ü½i/¼vȢ̜Öíz°UÓ,[ra’B¦ÖÖ¸$qp ÈCŒÉÒ&­÷øåC§N T<î\ÅHýjBœIëáY‰Jëpè°Ž"qÑJºÂžPvkÈ.ÞiVR\›téHÉ1`¯vËlb^¤¶HøšEðOØaÅHŸÅy8 g]>I’ ždº<‚ ™VVžYÔÎ8uhYÈeq6$= ÛC~Ša®@Z…¡[‘è{ôšbû´BÐ µ[i*Ÿùâ'Ͱ¡ aÌ>"šÂ…_"„]#šG6‘úY bo%1«7ɇ Ø}+$ªÊjÀ6®R ˆãˆÂÙØ›‰‘Jqs’WË2§ryv6-Œ{ïõ¬¬jG^bÎÉB¬‰%¸ªäצҳDx.ƒ`…½¡öÒÊB½¼mDh™c5Í¢/ˆ [mz¨SM¼WûaÅ$ª1Þ± “PÊtY»F kPņ•_†.“k–8¦ ((´–ΈŢÁÏÍB ÕÇ€Œ˜–Äz¸S¬gˆ†^zsQ±ŸÆòbò?‘„H}I@xcšÏÄ!âsKf-Løa´¬ò™D/(Ã%¼j±&§lø5 i)ʦÉF_^.§“¯¾ã5å¦}™&—fÿNšÃüra{ýÃÞ|}Ô¿ÃæWÑ¿¼“š6A ±×÷|÷(òîÑŽïÞ¼{wÇwïb£ö>­Ÿv´wØ?艂Þö?ÛáÝÃÈ»‡;¾{4Š½ÍŸÆß7z6NòÐL_ >ˆ¿EfñæWô3þ 2]˜¸^ÐȇþÛw"¿¼ƒäÙh<ÉÀï…âsª.ù0ÚFL& pÀhØøÆs:nv¦×ûã=σ}jýb¥÷ܯ[0¦“CЭ3¶ÖoõSlðMtEÓ0-)€]Ó¾„|áòx²@`€¸¦¢ UV—Ǫ¨ÖºÆ·–öQH(fV}feCŸÜk¢¶Q™êèÇIÖ»M˜á¤­â—Ì„#¼¶¬rZèÕðg£ \¡Ò/{KF‘= Öiý0¸€fAí̼ÍÑÄÕ‡ÞêcñêRlv[Ö «¿ïæ»8Jk0噈6:`àAtzÑÓ Ï]UÚ] Ì×2Å!!Öx~•§@'5}Ló‹KÀ8¤CàÛÿÓ!ÎnÒB¡~q[rrbdÈ%>ÝœŠïôZÌ€ª}ðÑóÁ¥wœÏ3h\è“åO¢(”YÀ4&Ý9Di,ðV°¸B •hðΖu¾šÖŽ)\PÔ<Óv·D•}p놵B$¹¨@œO÷j7A× :QDò‚ÆÄG4Ìvì`ú  {€»Ÿ¤}E2‹)èn_÷Ñ1~k¹'Ÿ'Öq-IŽ7ÝìÿrkÄó¶½—øãqm忀pZ‰IF-Ad/ÙB¿X½^D¶^•lqüGÝÂLÇ{.qE|û×ZÄÒùG†¹Ð^’$'^ôpû¸m¼¨ŒÞÿQ z©¾2ßÁJ²Û>˜IÞ˜ü`)¿-¬Ü˹C¬³" Œ0248y­Ëjp]{ƒâE© ‚Ãÿø™†xÓ5ƒËz r…ár˜™Cã9=G£¢õÕa: 5Xˆ]†ÝÝy˜G3Ó&•ÒzúIJ*cýͧn;΂+C+e ¬”]E³'-¼;îP¾÷u–昄gJËͯã;gÆéL˜®µa1õÒ=]—]aë/.!Ÿ­¸™™¶F[KO²SR µ,<Í,Œ×Èd>t¾2è8GÌùù,Lè bê€(žÉ'#§ƒ@‘˜Ÿ‹yÖØR@c€X/ŽeË´„¾¿C¤¿…m€ÿ l>|¤Ýª£®ªá›;uìþŒ³'ˆ±©±>äs¤©ª0ðþTž|¥ æ.˜ÿd¿g@ý©¢ Æãøú¯SÏ\zî.ÕÖÖ-Yòèñ×?ü… Tö¢Z³þæ¿xñì7 MFd+@ŽÌ í ¦i]ÁecÜ]H‹ýÑ$KÝñhÊž·ÈtlZêt>›o%ÌÒ ÛðùÆ"ò´1Aî‚}žÞÂ_- ¸¥FTàwÃ`;|·m­~WÜÈ„\. ¼wëÏqéÉ.rb-#;½+‰vÍKÙyZ»7ãÉæ]!ã ׉D'äE ÏÌjf3?&M$f«1÷™¾ŠÀjâO:T»)š“âz@Ï 2XYU‡Ú›ÌÙßÓq}¿ä©È‘¸éFµvÇÆª»}< £íÅõ–g1‘ÞE ‘Îqj_òg)ÙÈC†Sâ( ;3„ð]s¨Œá–°v¡¦pVm{;ÛYîãü#¹9ý@Bq¿=»Ê‹UYIÿjð”ÝðÇO`˺Á°û.z†@b2OMo4?ž‹f,ÇFrný44wëVF€L)7³ tƒ«GlÎ Ò4ìûïó²Ü¦aÜUƳsñ]”¤[ÀA@¨ÚøÊaÂ:b{Ú¨î†So´‰ÿøç†müã®í!¬í#­1™ç^~Ás “Übdø`a‹p)5>HÈ¢ WllWD™¸R@S£’´A¤©›buÍwà¾w)Â1]ú¨ü S¡Q©3¡Y9NÈÁb€P µu0;D…šº (JÅÇ̰¸] £™¦³ôó ^©£a}ÚÜ/Õ, “Ç+óWÉãèSil ãH0í.îÐè‹m-AHÍŽ™` ÈÅI’àLGjµÄ, Ï«i˜†ù¨9_cØX ÍžAÌ,-•û€°ÀÒ† (±Òšte,6d ÕTzU´ßLŠ‘âð‰“ÛåöW¡º~ÍGm=.”ÉÁ@Í=* ‘þþdaþ»mn¼L&3e¶'%ûe8\›eSÑ  jÊØ6wf¾Â\NœN®OckrÅ[¨¤.2à.yQþòøÔ:(†N1µïÚ‰W*Ò\6ï€ÎþÒ¾Ûp>Æ|¼i™œÛ :ƒ˜òE ~9z"$fy ùç˜ò9kôIKç ¯ùÜçYû @¿ò&ïlÖ¨@×£ø³nø3È"%ù<ØaÌ–h°Û+<•I oìºÎ1¼ oR•*/B©ÿr_q,L NÑ<¿?ð×ᵪªÅµÁ½£K°}”:ºA…ÔõÌ ×yyIuÐÀr‚ÇXGZã_dé ÎA˜}£Â¼H\°"̤K2n±LF™­$Ôù7¥dÿñØ2Ú`E_ÿƒmÀ ™_±jI@Ð&I(D w5V—/hRA\Ê¡²›ëÜ Îò†v³ws£Ó怗Éü “¥è^3¼MSåÒ‚ÅæWo–Š­U»cµb:r «$W\ÖB&ˆu=Á6ºƒšW4ÄŽM4tx¬†ÎNµ[Ž 6^æ£E>6 êYú+˜>‰íÛ¶KÞòÕò§Eï"/‚“rÜ2»ÀQ„#‘9-©ãí{ãc*ýeŸ ÛÕx–lÜNMÁ:í^€ðn!$8 ZR,„Jeø°EC43|H.oÞðûoÞ`\RÚ€˜½žY'#¹i…¢û°8<¹½iYÂÕÀe›×DJ³Áµƒ{Yÿ¢ß”7¶Êl%üßÉ‚l׳ö)˜®)¬ùŽ¿¢jAþèQJÃ0ØPóÑÛÿ7KiD¨2¿˜‘ÿž€,hÄìݰèPÝ3:ª8ÞÀìcÏ¥dNÑ׉.,‡ý¨pæ4Š"&ì8TÉt”OòeN –aú–aqfR¦rÉR‡¸À`¸°Ãéø*-aŒˆw÷JrœUø:®çCJFàœ”%@gÌùȇ ÉB´/‚hÁ"v¹všVLàDC¡Yª&úÒ9÷› &Mòüb”™¿…z‡e±Z@…{-‡¹( ’ŠÿeÔI=a5äÄbpeÚN}÷è€`Õ/x ž\UΙƒßL°ÌI=aqÊ“iFð¿q6P0Fù[=÷‚•ü eœ—£UID\6씾Åd‡@”þ|Aéb¬sFÚNÍá½Èü®ÅÿÃ[Ùl¬¡lŒ Ÿ\= `ç„àE·Ñ¸ÛG~qP£òÄüT”zØ[?Ì5EQ)¿H- Jð±—£‚ ¯’u¨A–Ïø­D¨!BùÓ„f[®RLA{ì>>Ç-‡ÚиôP ô:ŸÝ=jùYµ–ºN’×^‘Ë!Xö‘„€nZ¨‘TÊÝÅ^ëñå7ÏìË®jÞ#Hs™¨f~¤úãÝäˆM€öÜ „4p {>ä_ð8TÿFä/(E©LR2þŒE)ð…:ž«šãÁœ‰ZêÕ·¡;Ó•QÏ: *Iï~ùo¸OÌxH{y¤¬}ÝT]Eq¯‰Q¤ `28ŽM/N#/ê%€Õ‚U«PнWkºëå5‡`¾6«k~HàjGë ã@»É?þÙMšr¹6»T£"™•#¤ YO?;‘šy  ¯Á•N_¾>ð'3Î&!õ4†ÚÒP§VxPÛéÆˆí«o±£±Y@y¬=Lgæ²;išÕÁ#~r1)†† ÛJÙ“mÐJx&EU¬7˜4…¾^Ò­“*ªd©w°È—Y»•²íØŒ–« Ø$“J1jÚ(eVÖ?ø¸-¢T×îüf„gM —Lãí€ÚJR1?'Ãd$¼üµn ÿÂF-Úä¶âà{÷¨Ì.aP ˜}õïãbí¡…Sc$Ö’²W¦â߆ˆ¨Ñ ª¯=×ÎÅ41e+È«>†Oúö‚A#Ãk³°gø»_Ø$­sòãµç?Á àÃ×øu¡ìÇŠD!`2+DoqÐry[!ËÑcIÆ3Û4•<ª ñ7ŠE~ ú]Ô‘³k¿½ vYxCAn9N˜Ý‡”Ç-Ÿ’½¿°dÞú@ÒNKÉ>5Rªy¬†0ëÚä ÝMëÇÏ0YIÍ©EÊô®òm­çaû?›q†‰jäAWwÙ¥:pîÕ)!Œ|1ôqÆ›6{Ï‹B‘«ùë7¡V¤p²„úòÚŒè,j7À÷þuÍ­;°¿µ¡þ8Èr—\±.óç»Ã¥šÝÐ"×PK\ÃT“ªo¦oá³aA>˜2þ ED¾ hì…šC´Ê{Á¬u~a>æ‹«³ì9L½×ÓEèè çÞ—>M ‹Ïɘ~ a¶ˆÛXavf¹µfDÅÇ€¤Ý熎€•X *–ðÓþ½ÈÒ ~`ÍQ ¹SÓ|ÜyÙ›v…ÜÀ@ƒ1p§»éᨸã¼9|±÷‘~k©ÜÅ–PARÑ }œLŠXKš U¼‘/‰`*Cæg^á”æ˜.¹J›+¯Æn}… cˆ×Ö.cyxr¹ÙòR¿Ö½BBé, ƒP0•KaPZן±_Úñ=b»º]~ÏGî£{æ£{æ£{f“{†%úúð­Ô5Õ”EªÑbªyFÔÞÔ7fw\ ¦2¸‹ÌÉÏG¶Q£E.ׂ¹WKr úà jå @OÈb˜/±Îª¥Âþ*±] wdÒyñ”Vµ;ôœ‹ÆrŠ ¡gµÊÆ<[ ì•Ù2Œ|;õíV0mŽ»ŒähD¹Ì=—MÎ÷qDÍÒPE“m¾FJ”£‚“–*[Í]Î <\W“*”r>öÈï1dßô ™ÁæÓ!íÃû«*ÒU"•[¢A•0ô£ØH“vMEN9Ý@¨ ©ÑlgYæ.>Vé|5±ÃZdhÞÔïFâ‡ôÃ¥©è¥Ýcb„ÕG`¡15&œ˜µÈ1{V "’*Ýl çJÇ^¢R剒4ߌŒhSLóŸÍMÈ‹^Yn¨ìݦQªmsQó S 1ðä!ħn>¤¨drÅšíЖˬÁ-Ѝ…ÈnÚªcCé§P–×R9Ô1娧ëÜ\…›¨BÔÍ«ë9a/ÛJÞðNBò.& ÁÖë vt£¥û ¤¥Kø$îcÃè]aç“r‡¹/¦u¥p«o4Ô¹zÇÄoyî¤@ÙõzÙÞ!t{FÞŒuPm3¦ìGÚô5µ'ÔÍaÓsvu>¨¡¡nÀïiupX4ÂŽ6™j˜Tý¾óêÇmÑEëÖµ%qy Å@<¶œ:ħ£Kð„3øržQË8ù€ ¦wñ´5æ #sÁ–åÜÌ"ËÌW_-ˆöíŒj!BÀu‰Êds¬¤Qa%n=Ùo‚¼£¤æç é é€Âòãè`»/P¼ HÊb.Y›t!ªáÍ5–7>0ÜíèºIZá4µ—”¿ª ojËoÂrsK–°Z~;:ùn×´ïÞk'{ÇøžFÒ¯®q}ˆ€]­£ê¶-ç¹)ÞÀ-E¸þûÌTͨҩݰµ,–š×œØvjÑnÛ/»ö«mæB&iù– ÖÁEL²ìµ÷äÒÅ­ Ï[L `w\ùU¨(bÈ?… »ï›SªÓïTƒ¶ÅeUò% |«ï”¾Ê¡plM80úù¿úîÙÓç_}‡µY³yK'ÿê‘òNt´=ÇYr’Þˈåf‹aF¤™Ÿ%Ÿzz1>šÍ®òEÁfþ£?*,d*“]KsÅ;>Ù%QZØ´–[ˆ–ÂaôÏt™Íéô¼&ºä^ë—Ï8×?úiÊžƒ‚¦{•µÃk ælgJ½ÄP1ô¸íž$éAÏQ¥ŸtÜþM9CåÒefs;£Ôåì"ŠêN©‚µò»i¤ã±º½Kád‰À-$îŠ`-§sÞ±¶c(xø.}x):FYQô«´· e[—. S(»rQZ™®[}…™e/—(”p4ä­ŸŒè÷…=’ŠÔiiçã'ONŸ¿<}¹ÉÚ)Œjœ'ÁjµßΊë†µ5›Í‡ãqEs)mê<)wZœªµÐ¼D¹ƒâìA÷]É.—¼1'¥cÍHlKÒÛ±éR Œú´Õ™0»»¼µdz/žy¶?Æ;Fؤ̼ñrã_Fd×5í¾n•m ¢&õó¦µcÈ)å6ÅàʲÍOwâÖ=2=tÜØ>YyPõÐ7ÖVè¨"+˜+¬žRÐ\Ýîûć§˜~³Èº_)GRßB9¤2e•UP8º:¼ñ»I“8|ðéÑv¾ß;ŠŽ™ À6´æ.“/TL2B‡‡ÁÅÐÖžgöuKuÛ™Ջ¾°åìCÿgµ‹…ð)öTfWéÄ\ßÀÓŒ Ðî€S†ìHw1"lFÀYXk‘—x½3àœ„ó†aÃEk…2„¢ 7Ä ¨‰µ;¾`èÆ3ËFP`j±HdÖ "!$+VjCp #‹LçBˆAcf#•÷ gÖð€1ʘsg7Ї Šè{MQ­n/m1Ô·¦ôöÍíUÔ"\TmrÑ{5à໸G~²]úÂ|â„§×­oŸ=C±ÜAÉ0ýâ“à~MN§-¹þ@ú|7ŒŠ®Qg«ø #ÚmÕvg¶áe•>šâŒ¬tSá rA;ñ¼Ê%Ù&’ÔHr#ÖBûªˆ}C —r󇧧ÿ%’Áø‰Ø>D&Ddêr54L¶ä›¥s½ºÝªþÃZˆØÓ:¿´Þô»s€xEN»««Wpç¦ÇMŽZÕè„!€1:ƒPŸÉ ¾"è[8áH €‰£;) ¥Â`šMªò àå™—*-‡b±c.¿ýÕ£¨ˆõ¯¥Õ´yÚv:q»?´YeÛ+ædïÈ_aCýâ'CCPTYL0_Ú\yà…¡gcW¶ lt»+5–J¥(t“9¶ñÿìÓ¶(æfÿ¤p<‚ж4gÛž{-ˆêì.~ÅgÞ È1—ŒK“ž/Ù?B’;]êuÎ/  ýÃ]þ^@k?'wÖùÈSoF¥MoÒ¶E¸ØGŽ´ã²ÆÖ³–YíAžxAÅ]ÊñzÄ ˆ_™BcvÔtö% G¦@õ é®™fP-/§j 8Ð;Ý*+“ä뵬 >óa=KfQEeUའ‡6k(°T# £'€üh“ç”Ï~ê0%ÄäFã»â:CèqA!ÜL>ü*‘,‹±Õp‚)Æ.ŠtR6̇ίQê´û…YìÔÜ`€¼÷/i¶ÅÆ0["èܲf!gùXí·®ƒÙI\…»|a!¹°„ ”H—‰W‘ÓU±Àê¾ÜÓhµ˜€ÝâÿÏÞŸ·µ‘]{hþ®OQ‡Ž¯$[ƒ§4iò>´MwsmüœN‚yEI*AÅB¥VI`:·ßÏ~÷šöT»Jc÷ûœ4 íyX{¿5D ggìÂgÖ‡P×`vˆ81T`}-"q¡Swù‚›Ø51Õ÷°ûÓgSíY~à_l¦«³·~O|a ä“êoѤ ­õ µ9¨™@p‹» ’rNíÑÌæ$TÊ© o¨ëú5w)°ÐAÚ)-i²rÛs.¯jÆIYh_ªOldÞ×@zPÖ½C´lœDZÑÒ5`¦PrR¾=ãíA›[‘•šól™p4^+~ ÙLEšçß;J9!š/ ÆYÆ™¨GŠÛZ—C\¶z½f˜U žLHý”ÞðYÖÄX±‡Ã4Ñ.Ôûzü!Þ^°þ*Ê«¢zªmÛ÷bõª/§ Fà ©È8vApÕåÐh´žÅx\mH7HŠ.X·âoð#S»U†QRcÐÚ_H°C²EN¤Ý`7+hØî»_[?Ø{ô içŠKš§{C2g¨¹dñ—¹dæÑg .G:Œ´ؘ(øR˜%v(=¢gÓ µ<$«h&õ'8T|“Ý»-7¡8@—8.ÆÀhM„S³‡§ÆÈ6ØŽrI B-¦h€Uˆ+ ñR‚` >O€œ§§jµÆ×]Z»ôôT¦&Y4L­¼<ÆE 9¢ÌI& è\u²H8^ ã¨n™O^»‡Iݤ ÷c+êÂý¢Q•TÞ-Ötÿ\Ñd{û`„vÜp—|yxÂÒÄKîNÚ¤p…/\ú§åÒjjtv·Ûˆ*™N·²áž|¦Ó¦ÞÀy–jšª¡¬GŸYhp¯£z–7ªk—ë‹Hr7"‰v[°B—AÌ{€“®ªö0 ²ÜÓyæóÈ37uóªfßoAƒ?†i¯º¶kZ…tÜš„B@´[h€Þ"%Õ±†ŠUìe£•.¼{ƒêZp„q?5H¼K¤˜LQ³y<Îs 0ÇÈ£F÷û©ú>½ÏYÀ±1ù© ²¼t§ê[!ÀÂfòX‹Xìt¨ Òº_ŒlЫ~=Ò¬z¢¡<¾_Z(¡¾ ~?¿L9N»\ó³I“¼Íá„¿lHÀ‡xœ~°2ksÙYJà™qH éVƒ¦.VÙ‡‘C©×¹bÖŠB2²ÁnE ç¨P»êïÿÕ¬[sU—Ä/ âÕóëÅÒÞ…ŸZí£ÔºC{k'¸/üì~ö ?û…ŸµøYñÔL='þÄvØÄ ½ S Ê»åDpê»N'Óy*˘8dC‘´Á$d¶C,¼hÔçvЇyÂ.??t hFEµ!ÅŽF]<ûÅc+:,ÂüjýÀÖŽhŒ`‹ÉÔ×Ýù‹Wã¤<ÏÝ\jé<æc¬ƒÇȈQ#9v²ÈãQ2ãí²¹ct•ê º`ÙèXÚ¹DŠkÜjdÔÊŠhBTíšqÆâ=ŽÜËœ„à:ç²:UWú838—R‘ŸžÊÝWc“Šò‚ÚÚ9;¥DB 쳞!tÒV@KH§tbBºœlsöJ S’ŒÕ²¯AJœè´Ðàÿ‘p$¸ìQ÷S+·ÿ»‘vféOjj¼-àIhnÿ·¦îuükfRñDr9WÄs×Ib}ÔsÆ¥ÉÊúÝ›'­m»¢Ÿ-ð7„i³JþC=Û:\›[,É͆¼)è.@o©£‹[æŽÖühð_‰~¼%fõÊc%Ìm=ð0ï¸éþDâ­ØÅ[‡Ú¿èCûëoßî¿x~ðö¨wðfÿûýW»/z^HbÍx ¿[¹ÅªFë‘W›+JU~Âå}éXÙˆvýJ°Ýƒ@H4ÁïÄ«ÝËDn½±v¯XkÄ÷̇aDnýuKcp‡œY{#‰GéUµ 4¢ ôn3ÿï­-<4ÑÕ_íPŸ|¡ÀJažÖÍ(ww‹ügJ©‚` ”ñ¸)ŠG˜ØL¯<6‡é Ÿ ÛïÆÁq@eh€ÀIÏ©*ü–M¨‚ÉHBk×SkÌ¥LBVµdrF8eŸÎ+ØÝª“q;M@~&|A7£ñ¡Íc_o2OýtfzSs÷¹ XÔ†@j¢ŠKê¼}óÔàUG3r;Î ÖmF/¸Xì#ñ ÄD¶ö¡nGjN ljGïMõq,Þƒ°Î¤?¬wHÐàˆiÀ——Ëø™Â›p&ñ1 Eà„[(LÆ|E¬o4©«½#ÝñCÐ逯ai“kRF“úCñÄêCŒ—_ÇÙÙ$Ÿá\öîP5$®î!½Œhm\0s3Ý! ˜÷‡u(Øô‹¸PF+<(íÀ8›ÏÕyé+nq”u Š O!Ô”Iú"ÍÜz™¤6Œ0•³Ží4U5#óE2œ[Út±5G‘¼J»Ú7ÝÊ>ëò"Mfƒsl™ˆñudz}ªmÈ!!¤¡ŸçàgΙ;!s@.ÜðÚi‚’ˆý&ÀŠÃy`õª•(ÁEø¿HÙD`  5¨ºÐ†ÔÍÁwõ £d1ž3Ö®¹ )‹içáæA8•sB)ŠX“[ÜkB Âëá™ðùU_+úlI­#ïVQ"ŸœÏ^£ƒ¡óX .>!®pÅõ:é2Z¨Úî¶±’ÐË˪ÉAL1 þ$¤Çï*…aãi"æM(:po•  >1"ëa™BëÑ#Mñy’Á6ª‰¾Õÿ7Œ"|þ7çS)®>†L à¹4Pwã%æÊxžŽ8kFq ŒÛ~ù+”R_<ßµÔûîí«g¥Â䆚—y6þë?Ì+½¾>èã–Ü¿ø+¤D{õqo_Õz‰LÆÃæW_kK‡íxm­õWȩ̈G?è©Vow8¤¶›ª´ºOªöëëýɼ÷×_䓳æV‹ÚHM²¢›TßûÇÑó½—Òˆº«°ß¿[aX%Úg0Mú³÷²Ö¬.—oS˜1éø(Ù"†èªûÇݶµäš~ Ø ¡Ö=w#Ž›€`,|@©+sOÕ‰¢L!&‚•óÀÅOŽ=L´ÙI´ 5¦Áe,¥ ;-É`Q‘ ZRžxò 9š³Úó$ƒ”‹aò·+dO-ù»ÄÂI¾Uà:(úº4‘}i¬iT Êø©-Ë4m$€¶Àú™mG­IÑØvUÐÌ¡#¸c³h¿Ø­„ NKLÇ¥¼¬<ÌÎf÷mu“ìC'{ò—'ŒL9FLrX(˜ý w£X`Ù/Q ,£€©?nè9´¥o"çÚÓO‹&´ s׳Õ˘‘„þæ¡÷ ×ÑVüpÍPèš|¿d‰Do³˜`©ÏæH.#x†-ÜmnÓš)Uï ô£AP¶ö•- ßœÏ/Æû¦Ÿ¯YžÄç³t´³ÖÏÎxE¬­ý-øñ7ë‰jc浪~ú[º[+Ö}¨ûpź¡Q;ŸV×7G¥ûs6¥Úîg+ÔÝ ÔÝ\±îÖ T›? ×·Ž(Uõ>XVë±_ëqu-"(k£Ÿá2È«¸·míoÝÚëxŽ¿YÇCÍo¤EdAœ£?6¨÷‰¤$}xèNP:³²¶¨ë6Ÿ´(€;Jc SÎõ€Í$C·£ý8uÖÙõ°·Èy2à[GŒR%VyJÍ‚±ci%9ô8!¡ Æ–œsrÊ‘ˆ#½Bl E€TÒ þÏ’]•澃“^ý¹R­.Ü÷êwõv| p@ú$¨‰~²4…QÀÚ1‡%º”E’¿#ç` ½7ôÌ´<®bZ~O‡ Tìqø¬AÔÒ¡(„À¡LQÄñ‚ s» k¢¾ËµV¥Ña3R¨0%¬Y†hiœËXÿM)áã2T„K@  JF '-Š„ ÷j @„q>Ö1uòSÍq;ÈK]`7AŠÀýÜö¬FùeŠßPÔpëFeOw09;t§¡ŽT£õ¼}ðš¬B·nd¦È@ĽLÇù”d…3Bë 5grÌ’F4¡®È×¶] ÛÑ,á¤nÉÄÉ‹¨eAK}"¢0˜$’ 3Æ%º)ƒC—ΞÙ ¶*mЊè±?æ–Û-8¾f#ûšô½F:nÒ …F—G)&†£sOÊ&‹á`I†™ç®‘*5ÿÛ¿Šâ7© þQ[Òï†÷‡U1䯅§Í•|ù;ýv½Ü}µÿÝÞá‘ÿw—c™ÔGoövŸ¿Ü“¿´.O>óV’”O¯Q“Øø£µ%Ü–M{õÓsw”—Ö­Š*æñ}ƒÓ4ÃC#®ßrþiö”,˜=ön4‘ô²}{2ìí³L)Šv%"ÔìRù Kp1Í@û¯oÕ]žÂ!‡†…äÐ;Hv~Á"/Þçlé% ,òˆW Ž,Ɇk"@H hr„ÖA+P6+X£Ù&Oy¨ ¦eðg–³~Ô’xžû„Îp8ìo4±òUKmô¿ÚÕíÒD|SAºðo¦”+æé´lX-ÆeÙ7&Ù—“xëÌß/¶žBŒÁ,µÓ8—˜ÙyŸ!w2C³Úcôg? "_%×…£GœÎÒKÔe)§KFÙÈö1£×²‰D× ¡œ_tb{§EVÍÐtRm:˜/InGAÚ¬±Y‚íÈÒc´¾Nèà€!‹t|±°™“¢2¢ƒx#µAõlH¬¾ è:ž¢‹\b5éŽ /tcЂðoKÃ^M… kâ[bPýа*IÛ¶íg¦Ùï–åÄYÌ­a¹T¸A |Ÿ’Å2% Ú¬à,½£T=®ö…»>DРԛNðefEë8G@UkXžÎôAƒ*ðŸ=®ÀKõýÞQ¼µ±¯ ÑSÒàw“ˆ¿pLônÁ–•µº·9ÙÙQB*xÀùïáGI1_¿Þbòs6µ°†ôìõ_6ÅëÔŒgÝ-F_¸ŸUˆÖƈ¾ª»ºÒ?Ž Ã[£·žöueÝGYö ¨M0 FÏ«‡*VÇ«Ôð!õZ“Õtáá’Œ!ŒÒ}˜Ø+™H\Å@™nÕëw|-Φ^áŽ3F:vGå> Ϥ8°°Ã„A8WL•,+7W»û.'´ì9]¯{¾ ¾âØ_ÉÊgKÎüþûh`û¯ a·#S¿µQ¤1Õa³œ \s…¥Sl˜ÛsMÛnðαŸÔ":€% ª¦[G#0ø ’– µ}׿W¸1ݹ%……9oæüÜŸi¤’D´/ñFà"†è.ðž©Í‡Õ·sBŒÁS‘UvÃ:¹°F£X+ˆ1ÞOŠŒ$% Ÿõ³TÑÉ#ž÷'(”ÊÄ\¦mr™Zn­ ˆìJvÎ tžÖ±©É{ÒU^{‚wqÆ îÊîŸ%a%‹ÎÏ:]cXjA}X½6`[Úþà\ë«N³Àmõ -zNÜàxÛK.; #ædЀ]ÇìèëèXT ŽÎo&zÆÏøh‰-ÎDݺƒÅ Ó©‹$*‹€Â(µ°Š2¬¼*ìü†Ð(òÇ“x $ûŽP ;k 5ò§yËq™›Ïcé`™˜Áúí0ÓŽ4Ti-jó”l™Ëš(dã‘g'"ÆÐ5)ÉmÔUMÌæ,f³¡ÝðJZf%ü¨uKSÿljɿ“÷à._óõ[hÒ=ÓxªÀÂúšŸУüD«‘>Ï T”)ÃJJjW=ÚÑ(“ŠåvwÈro@|ï?ý1ÿYK‚rÕÖz1¬ÿyòøñŸ6¶6=ÙøS¼ñ9`T&Žÿ”ü{19«-§ØÁ?ÞþË»[D;òäj´®Éæ¯ÅÈRì.P)´S²“¤¸ÈS]F¹L£"Í1cíÅ;D0… ¾î7† Û<[Á~c„ a¿­bØ †Ûd¸!¹ck—gt;Î$^;ŸEâRÁê@‘àù< n¿ËÁAUØk@”Ôß‘Y‰Lì1cŒ' 5ä“Qv¶˜%þc·Û‘È2kM,”™G_!Ú“Íc¢–M\Aò,½0¤Í¨oÃZSÅ'¯%LÉ%=op_q+ôŸ³÷º^dI"Gîô_9ždÆ’£îçç3P"‹‡ å9ƒT™ #z•P£"jw“–'ª^‡Ín¼o©6,j†ÆAdÄßDÁ:Õž0z›l0LôÌöbqRCJÔZmuã·^ÀëÍAKÜ›¬.…|2Fbsd‡€·ðfaˆÞDtŠÃО¼4³vš×χÙèšü ZŒŸ=q00•y g!$wŸ.F¶r^Œ–£…yH cMXüHðÓ±LVófmЀhÖ‘|±­|‰ÍCö -R-Àëâ0¿±Zí-/Yoä±þq£´(eæ–˜pvmÌTI‰ž[3x/Þ^‘L_óþf"tuÔPéd£ÍM>u'ÒJèãQ5 ®!¾ŽèÁ`øÇÃdUXúÅùöˆÍ¤bÔm4)ä(~H°-z|ÎYqô‹| ò÷…z>.‘å¿L „#—A39Ftàj¶IcsçéX;ÉúÛëêÆ=… æÉûÆV¯/Â`d1æfZµfýŽãáØèlR’óîÖ¦7TíFËÉ’:V”Ž’«dŒ'e­¿Ë‡n¸BFêÌÔ‰N H ±¬ÛKFe7ÔhÕ6~žCºx³œ¾ÍhûŒ¸¦n²È¢¶¨€'ÀéQaÑ­²ääeŒtºÏtÒÈâ<Å[2˜åE_,Æó̾…Ïå$xríʇYqç“ì§EÊMù5×%ñÌX«:á<¤çù…áTâ‰bdl÷@|Ì‹9„«*'Ì/Æ&Ï,†'C¯=¦§Å¬^?-²Áû1[ÒÕý‚(ÞGˆ\®ÓØÛ·êš‚˜Í †1ž§ã)p§âðå=hQ6‡<—ËN9vÔh9þ0xÎC£ÐxèÆ&`jÁçÔ“‰–qå‡É<ñ||™!%½a"šôFs4¤5Ö%Óè?Ô ãÚÀ= «„l ¸?.ú+º{¤«ÛSÑ®ìzŠVI¡KvÁô'»ˆN6ŒVF$8ðr锯äï ‘R]·oãûÅϰ 5‰R£N³Í¼›ö Œø@U=³§ôâcbÔL1ÓN_õ”A:ÔÜÀÌ!ÁH›¬jü5³2¸§Î‰RG\5'¸üðT(V¨¼œ{ØDæYœXÐIN/ ô ¿Ö(ÅÛ^>;aTØÓБãé ?[Hý„°A¶ ±éÕ¾(²#ƒÆ€õŒ½T3:G¦Ë=›%.×ÖAºÄ}(/Z»7tK"K³/£v†ÇȶqÌleÃBª‘1P$±ÊGVr`ß#,±àqÙM…'§4'Óy1Mj¢Ÿ:gD" WÄ)ã5.·Ä’œ´,×LJ˜G)0â÷<  I„ò9ØT]¯ÁkOÑ›lï@q‹,ûCƒ3­íÔMéw%¤ª¯Áÿ ÔBÏue2”ãEFf:N:U8⚬ìïv%à`ä¡ç½›Ú¼®e%Úr{i™2Á£ÇkŒ¯«í’q-˜–í­§Ô ·y®\B®=朳î-öAŠ•¥Ë7•Kk¡Ý ½>yƒJH7ØwcÛ1꺺õ+ÖD$Ö`6Gk°{àCµm^˺„òƒq¢¸Œ—ÐèvéK8ï!†W¯×„WÕH1ÒÑÿñ€¢_a*„¿Š§ùŽ[³T??n€ ]°©Œ=½eÔý'ã<Öô´qrÜÐ{Þ8i¯Ø7œU«µJå8…€L&+àP•ò[¸½µ늆Úb€êz¡~MgM½Ú­n:›å³êuj£÷Ô…¹WHòq‹°w5À°Þ¢ÄKçlj–d…£Èé¾U”zÇߨŸ0Ðkh¡åŸÏÒ9c ,D`Õ‰Í:‰2¸RÙÚÕI1¼¸g>5ºV+Û0‹L\+‰‡sò‹.‘7=Œ——@#­…V¢ «¡(<`†gd0ƒ±ÐGô°e±á¡@wÄÇ_N©GÅzüùIO‘°Ž ]Ì0í6~¢ybnuü ÇåÓÌ_Y o1UŸd}¦œX…^[â¬È•Y:õl„\1(Ø…‚scbð6\©•ß§ésP—Œ"ì¡^<˜0àóŒ[ónE‘ˆ‹ÀÏà½ã‘¶Ð=‚T#‘£¡1G2æ¶Ý%2'Œ2Åo ; °»£_“Vá~qœ¨ ‡¦3qËÆÎIó^44I5D‰ñFE r ¼öF,vvGÜRzfŒ8ä:w“p/‹C“ŠtJF[ìŸqüZ©U.E)²×% ™Jpš„æš„ªDZW8àJWöîN<ñSï™Hs˜B·tÜIESÖjÙ ì¤ç"ä#P™éˆ+WØaiÚe¿imàÈhÞ’€:O ø6Œ×ººÈkä1ƒ™’&Žp¬±KQ§¥@I¦èΈ£0/·]êR FU-øAcCaøÒþµ,œE?Xñ1”x¾0n;À<“¨îÜ ýPÙÚ9ßê@pl¿TÇY"ÚÈ‹°›è4CB+‡A#6õ(rô0ÂebŸm‹IM·”Ÿ¹ær6œÛ‰R.|õï¼OBEy=u6æb!æ,‹ÌˆÔAèRu ®T¨U¼jh1Ï'¶¢T§æb¯ ­)I “¼3Î' PÂPizxL°’ŒÄx”fAû¤'JÓÉ dä&² +A×l•°^ÚÆ–ÌÙ]KÝÁ}Q«Ñ’{*†&b&²œùÏ ["1³ I‚…÷B^’ÑH+_[#Y.Ýuº‰™\&Ù˜"*‹0áómºQP}NÐÜ(ùCpiDÅËЇ§U›äm2 @;ì2 !@ {Z[Å ˆêkß:Â?•aä>7iÂE¬\  ™*ž+=ƒ‹Yð”ı*~±à@Ȇ2Ìa†¼³¢¹JŒÏ¢uc†N–µ^‘M#öG•Á§VØœE}Ôd$6R›¼ÈÓI«ãô»H ^6ÅÉíÊEÓN‡z7tv|-qà £žSÈs½ˆ¬ÐZJ&„‰“„Ór'ÇÚSÐM±¼ˆ™„n˜˜„@ºŠÄC3Øf—«ÏRI¥é¢ì:P¼ø,Ë‘!>}«âîN{|0^µž3 Ø<#>¨»‚¿iÚ!7 ÆtŒbÌ´µÆÌ5$ ÉéËp†Ô¤;6ÐÙðÖ€£·AQ`ƒ8´¾Üð£<–¬0¤á¢ì5¦ƒ"§Û×ZÞ7Òp¹š7[oG“-„NkÎ2ƒvDÇ_éŽ{Pô¤G„h4f}ޝø”6XÖBÜ>ĸÌ&Õ4Èö8I¶Ðš+ÄW õe–”!n¦t’ÊJ'¤––]Xð¿EÁSñSWzÆGl'^ã×\¥N¸G°Ê†¥,hlÇǤƒÜ¨ÅB!£qò‹ÛHË“yŸÓ†s0lÅÄ^án¼g-·°(wBŒ&l gQÕœê‹zùÄn¤†ñp ×#ˆ9ÜAÌsŽˆ•¾€xtÒü‰n<’#¢z?ÕX’Þ®Ïnûl–/ \Y½3 ¹åéøÁ5åšT/š9² “ƒ— ÖjŠö@b¤‘N&9z£\%3x(¼BÃJ€¿«“k P“ ¾_7;¶fˆê¯µ˜A(ã± h›[VèÁ±Î„o„g­„ªìÈ2éoØ–ƒì2XïJWæX¾1­1]Ðmãé°šDU×ŵZæÑÈ;û¤?r8CÈ rÙ wupécDÇ6/Eyà윂;ˆÃGX šŒ¢ƒ:»§¤í×Àåôv°Í‘Üo47Ï"qá ÌðáZŽ˜³œ]æÂ\°$ø³ág$·Jšl|,õ'@kQ‹AR8ÅBÌmíSfiò.»¦Ö´®¡eX2dk{¬À âllk:mæûsùZ‚-v\¹áŒ-ËO26 („œ˜ÒŽ,ÒGÄŒ9>bÐít¾F± Ÿ æDv®DÉá3gyi–PÂù>XþˆÄ#³‰®h) ‡?sk6Þí«¹yÞ­ceÍ•ØØ±Kóô‘q+«|DsÌ~¶[ËÙ¬Ó0GˆÅÛ*âØ ¾eØÓÄݑǙýÀh4þC¿û&cÛW‚î̤j…|†¶Y mD€¢úÞ^Y4m©7…ÛeØŸBéñ”{Hý´'óÉ *f™:ŠÓ—Ó1F×@¸8­D¢6’~:.ØF‘3Ÿï2îÍZ5Õ•œB…•p²zÀü"áDÕ^îÁèsDeíz‰øª“ú¢–ë>|X’Ì5hSÞò­/ƒÌ!Ý»%®ÖÝr|{¬qvñ›¶€i=%ž¹Ã]þä{ŽaiŽÚPƒÓ<’žŸeSìvl»ôDâJ_Æ^UàAˆ_‰Á`1+âábF¬¢Që· £ÌòØ‘…"@VßMfïð†ˆSLPja¥6Qxv2‰¨d±Ç°<2>h}T|qî vŒÙ:ãWÚhH*t:Å %áÂÔ ƒ·Ád¨m?¡HˆÂ_0 ã²ƒh£H}3ñ]ÙºŠžfóf…ß](?ùrOÃ8ìϵ²S ¹‹mWzã}Œ7à]yÞ¡Wà-=KUt“)äkªp§+û™6”¸ˆ[е[ãjXTøÊñª=’Là]TmçÄ»T|îËôq7æ÷}>â*Àé$›/Z¶FJŠW£$`‚­¤šmý`y%í:tô&Š<[@ä¤ åùÂíáö¿pû«sûÂyÏëДCÓ\QFøH9áÎd…äo=ê·´¤ÕKƒv&mœ©éʇ51i•”ìÓ8dº`Oé?2ïäkKÙEb–úÎÛ¿y¾ê¿@ùh9DmôI6wQУƇY>™uã—×1¢BÃ;t¥x›÷ºRMô“y6n®Á9:ËÁq•@®­qrÑ&ñ¶ó®:òIðK5Ì­ u Œ_£bXvðÐÔi>]£†Å(n¯"#1<ë>EÀgsÈFÜÆ5ÜCÀ `Å4Á\ਊÀ`0Ûª£6óbÎ/Zµa³9@Eú¬`†U‰w_ïãv!Ëá üTQS¸1‰l=y1,¤@‘+çlº³­ýV9Þ|®îs‘ÕðÚöZ;^û3üçü§¹FSXk­qPòsgÎ)Xù,‡ÈôašÀñ`$íð‡8¶öjÑ7ÔÁ{œLÆSµÄ‹‹t– ¬Q´ãóë©’ÅåZ£,ÂBí‚9¥Qè‚£–el?~špÕS‚nÛè?ì›”ÚïF»èê?0y‡¹4°c…–A²‡iôS­@׃T)à NÞ§×Jö3M²Ùjm©hœúªî,ÓÁ_Ô\SCóÀ|vðòõÛ£½ç½¿ï¾x»×ŽŸï}·ûöÅÿ©¯_î¾zÞÞ‚>k-ó-} dY[=b·â¯Þ¼Ü}±ÿ¯½Þ?ìí¾Þ}¶WÁÓ”6>Þ)ý Gĸ2$©šÎõ³Öau$£—z;‘©®ÝYª¸ÄsÅù¨Â÷—œª#œ; ò®ªÌåÕª©¥*@8@Bš;Šª§ɉUߥzô JïŽf$Ã…™1qùøWæÇJ! Vü‚Ýa)®¡¢gSÃïK×rÏ&~ì÷¶¤—ôC:ÀÅ#<äìçtéâC•Å*v4#.©ˆæ°C)•jJIîFo —Œ‚ÅyÚ}L"´üTê°PDJ¸Ž’Ý;Ä¥ì,)5†}݉÷_}wPS²ó¥ÓËG#x%—Ï ùc=^í|bMû¨˜šŠ®Ûé¨]MÆ+ ™¸¸thËE%:¼ƒÂïò¦‹\‘ E“؆PS’rq-mP½mêG.l2¸æ#»l‹–ÄÂ\ö—¡6»É]«>HËîJ>HÕ&"€°ø…$;G¡\Àhêëtô+¨9Õª]øjÎ.~Poâç]`¤*tŸÔ@›ù¦lB5*´ðÈ 95ªTŠêC¶9íhl,WpGŽ\`êò´BW9NPÖ»±H* ¸–Fd·Ô8ëžiNÚº6 ¯E ¿-ÀŒâ³#ù€>FõÜh4ŒRÅRw½JêÇÒàÀÍÞ¡ŸÛx­ì–[õ9äŒjÇþ£UŽïºD´ÔÙŒP@ÑhLÀ‰"µs •ˆÊPñ®JëQ:Ì} ½ƒÅ8™µÝ„x¥s($…¯ ´—úÓÚXuâ¦hí½KW-Ô¬ Q•<#Åo@ñF;«¿ÖOl±<®^Ê×(åÜöPÛ¹©¾þó´Þ žÐ_ÖႹŶ¨ž4ª÷˺Ï'ÆþQÀù”MÉDj`c…ÐEž Û4`É×îÞÎi×X’¨ÛíévQ§žá ñGº ³¹$cÂ`µmÂ&|cÎh@‘§GˆÁt&ÑϨ鲮˜Ò¥”v°¾A Õo5©¶ì±vqì~È=v3€ÔÍùä³YWNS>‡î]ðpœC"x rm´™¥¬Ll°OPù€cT¬vü$iÌ.HË—BLæb¦vŠ5j04tÎ45X$O¤F‚:˜d’ÄÀ RRcx3H³ÛBØàüÜ"Œ3BÔf…h‚hL#3%vâ@¬^Œ½.0k„N†òp,±¹±ee‹næw³Ó+P•î5ÿÇŽqŸ4‡µß †Õ€]ë„¶5T¦•U7KЋJú,Æ7¶#2%ÀƤF—„,s%G^ï?ô0®ªÏÃ*h6 ?›ôz£kŠ©™TÓ–’4*IYAJº¤T&ò=KDÓhè¾0&ÚÂX!õ²dµg6–6¿¸ÈæN:E$¾œC¢»âæU·pxZ˜Ä”¢¹f6;²j¨^úíAëbèó&¼Ì/ìF‰Ýqê¦ôXvS*û—ß-HŒ¡Edëó½—²ÐfälWœ 95D:¶‰Çl˜Î**ì†bC”4tAgH]Úâ' ¨Žr«#÷Ÿá8‘DŠ„× o–MâÑà'2V>‚§‡äì¨qiÿ—¡ÉGÑùáç,¼"ÂAѸú¾¡cƒ²nŒz¿!ø/7ÐaÌ’„3Ówð4 Ípû¿äò‡¯º ;WB™«ö]úŒÐsî.Á¶V~6wÐÚîÓe¾o1É^©¹l÷s+[|©]u÷÷ Ç Isp¥£rß”Çë Ã1ùäé‘ÑÀ~mªPrúB>yø-Š.¿?"°¾JC Ë©ˆ›˜o¸Õr#»š7hZî4¡ H-|ßÑ)jˆÒœ‰!rSKYNF§§ß윞²Ø ÃI ;]9ñé0rœ7ù43ì–²aª4% ²C¬?_ª3Jú¥ÕHI?gók[ Òmó)¾èÂÙõ팚EL‹ü+Š6×h+øTDËTƒUìA_›¦î7>G…ß“àb(Û¦1åã|†] k:ØZÒÁ–ßÁV©ƒ¾e2=ðZ9Í›iÙf!3–ߎ´´’Š’§HŸÓj赠ͱÈà¦þxËþxË@ÉZ³ “Ê}?µ‰~ðÛÖÒ’+°^SËUk0Ǽ_t‹|Û ©~+u1ZÿùHð¼ Z¯¡èœä!š8±zÖ‹k¬AwJS_tÒè '¡C †ò÷Kw"×Ã’üŒM›]?ÿª¶aV¸¹# õí¬BgT¥›Ñ¡$ðsÿ»…ÿ}X¾@X¤L:ô¼ ;q¢¶|+\k•úý͸¿÷ÆýGáV®ÒÊ`3”GAWÖ¼˜¤o´—YK³k”ÔqÍ2B€©Qƒn–6H²c/Û%í[¼y³½¢çvKö¹4½¯ø¬ÂÔØnRµ¼PÔ~=Œ“G¦ô] µ´Uj©Ã;ÔX‰ Å4E2U¹—Ô΃ÁÃxð(<4DiÉ@ ŸM.ì˜@lìÑIùœoÆçUç`× VC؆ìËMöpë¶{èž‚;ÚÉÇw·êV¬ÚQáãê¥ ÄL€xmú}1ð‘ßœ°:{=5Og $¼x‘,O×=Ts³€«v ‹ñÏjgpvQ3o·ëvBï;®Úqƒ†Ø8Aã,¹îÐm’yŠLü.ཟ G‡ô^Çf9¶N*Ø‹esû 9vÖ ³štN;N2§®ÞeLë¤þBqû"ßV¿.Íètȇ¥2ìûXýÚ~,#£÷ßΊýZžçÂaošéb9c‰£Ì=:L¢€Cþ&̇)+«}„¨ÜÏÙ´W$£4“3ФHçU79_£Â9™ ΓX ™Ìø4}Ÿ,„.ü~ÌÉ£¶ENî³þ6Oo]ýÞ@+ì#‹âNGý!aVÐPè—ìoÙd¿N”pNFåA8n Ûµ>Á×\ýxŒÅ +"O´>‘>Â瑦/=Lð1»ç (Sæ/~@»¥›W¿g¦Ø#ñ7™sü›x3^rÛµÞg:6Ol¸-~­Ã>¸6‡§^ör‰ÿP_nË÷^±÷àô¶Üéù,ûòV;+ΩóùæôГ †ôî¶ë†üȲáuƒíycˆž8 æ´-Žˆ_ö‰¤Ùjݼ²'}T[ÒDôR€ÚžæQg‰"´\‡d@"ÜkŠØ¦3$ðXÌ/„îgU;9ö¤1$äÏŠZ½.ûv²xyT‘BkŒ(Ä›^£³ªFÂñ®’„•/’k €sA`Ðq`Òì±z~gç˜?BR€®LíÑ=š¼cº(%€ûÏ9‚uT>{O‰R)œh>™égqÙW‡â“^r¬_¿¹îå†ëÛZžhR‰AÀûÄaéFk©zv3¬E„ãÇg´ciÔô³ì2KÆŒiL0¯€­ZVPf\¬A@Yä„ÐÑbäÇe{KE‰ª“,Ü®¢Yªš)@÷Ÿ€õp1 çôùÖê"·†ZGç&Jº֜Ǝ“~Ž,<›Üâ­Ü‰çSøw£õnR^õfã{ÍþÃVqûÛßCuÕÊŽC¶q:0Ú‡L¤W™Ùæg¸å›¤eÜ´>Ú¢¶nzë·>Ãpql[ÖØòéCúèaíp½õ¿Í Þ`˜°BühÅ1-#˜¥öëÅÿ(Ä™}ý>1y®2+…É6ŽIÈ'âp{ôݳ©O&œJ}&á8èÃ{çì\åK0£Ti…𨠱1W½ô'àé"Y#Í ‘9ØLƒãÖézˆ)Bà} ÙmÕÑVhð‡™ZÖk,öFŒK:‚Û¤uœ„dåU>” 0™oß¼(¢¥^‡ÏÜ¢$fVm§CÓ°ƒAÆ-rU¸Šëc^t1±þE€¿4'™Š÷ÐܼyÖ§—Ï|ÙŽ×fø6¬­J/€ÊÏÊT~¶”Ê»nÕuZG$Q9¥¦žþáàåÞzײ~`XĶN2C[¨ð#ŸÄ~®.xКØ0Fbhl(ö<„/¢tr™ÍrtlоO,ÐXoPo˜ÏL]²%ü#)¼a‡é8»P4jÖµí‘ãaï<ǯ÷tÜ€~Ùü¥¸„0gð§EùÈ BvcñHc©š©õ6nÂÀÙÜÛSõ÷Ójs«7'ðýÈ/Ò?¶ ‹ò´.zÉ6Ÿ#‘¿b²ÎpÌÚqçm[„=X–YZÐá…}q¶WzÞ6þ˜2jíy“;2ªFewBxfù/0yë* Ù©ÕÅfV†,ñŠ åj~A‚xv¢â,¬,hIp]ˆk[Tp¤¦tJ¨ÿq÷Í«ýWß*¤íŸ,]-QNÞB+RæµW8 /†JÍ¢…ÑJ¯CD‰Íà>ì,qpÄs$€g8Œ¦Ž~{O&*/¥ƒv®¨™nü#3ÊV닉‰j©ß.7‰¾X Î#Æ G&ƒrtà'´—èz- @ð8ˆ#Ž…Ð, ž]ßX²²¤ØOб­Ðº2 ÏÆ¬e$C#(VJ7¢z+ '2•%Vµ"DOºH®û)ú õÓÇKÃÀV'JÖÀø¥¹¿ÝpøÙTÓ(ÌñÆ9ªXŒÉ¶dW!àçˆ1ög$IJüuöÛÓž˜"ZÓ1½\UZ‚AvHÅþ‹PÈè=Xó)ϽDn‚vjœÜ+ìf©JM`u9=ÞÇfÝr¦¤¦T=í£ËaV>¡+¸ôO¤ ¾¾`jeCUuã—É{¬šИ@AÀnâ–Šª‰9Üsÿìw5Ë,ýi‘±vI=@Ö+,ä1Vº9˜ ﹌i\™?>¶™<¨;òÛ6_ç²¾'øºœÔ´T:ŸQÉ*Yì8t(i VÉ ?U]Qµ¼üEBÍ_E†Û‰×Á ¾>Ï×é“P’pe MÐÁ =²¦rŽÙG h\‡ÓJ0({ÞüIòSÑv¦8‡c\B_cCuïvq$ÙYgz„XCS9Ãfh>Ë 3Ïz@ÚúYÚq˜á?èÙOÖ‡Ùíóð=øTçÙÙ¶7‹ÉÄ‘14H™®áy ë߉Љ‡-¿X¨-È,Úó±~#à)·µ8üöw½bçÂJ¨ Î ´ÑeqÑq€N´èñÅFFD€ò:ë`I7  y¬&\‰/%ü†!„é;™ÛÑ(÷L‘@vÝ‚,óp» PôvN:k'‘GÐxÐG[Xa9‰t’#ÁºöTŽþáœå´IîÛ“³ Kîý4Jì7Ôéí¥§xŸÿ„ˆBbRÑ$ª‚ÈÆ5{&úš´47cIadu<)ó yáÈ T«§gR/6pnB7áœS¤€t‹;ŠŸ€›5@¸èTn­bÖÓɇ°£Ð‰$Ø@?ñBƒ\Œm§Õ$š!ÈÆ»±ŽäU>GFPqÃ0¯ŠQDP’¶Z°‹"€àOx3œ–çü"F¬.F”„†• 7Þmÿ ÁC˜2N¼”éT?4˜_û -A·˜gô6>åÅü¸wù‡ÌkÅ×™Wæs !q·l×[‡y«ËLró: ãVñþ¿–¬V 41Î$ÖÖz]Ÿ_ˆ¸’…höÉzs?á’ÓRÏþ´f”9Yú­Û¨„¨ºÑ CáÞJÒIÏ¢qg Q´õÓI:ÊNQc…i@÷îÜÿ›=Ñ3Û ¾ i›,.úJ ›Íµÿ,±!¹wylN((a?ê2l£ÂK×8ÖŽÄ öix‹â$>–šú=ˆ“R³¶ÞvGæä*˜—µs7ÕQêt %<-Äk¼zý¤È2¨ ¥%"­}Çæˆê S,%;çÊ ÑÔq‚>SGïxg€R+ÿa¤ê3nÏw9Ðî{eëäC ûkQTIÄ'Ð]&MµÚâΜSûô8µ^’Cî …nü:æ¯1Ïbª†€Éì:—ü (Ñ}rÐk'õóÄ” ³¹ÁÞ•æS^(äD Û(YÛCõŠEŽØÑV¡äÞƒF‡!cKç5þ ²"¡ÇªóS׺9©bo©XNéK8¸é¬Ã> %`¢N.TÝF#ºTù0µ2‚!@Í{%›ž䢕Á’¬ &Aóvó“|Ò¹».0““ÕaXÑ4M¸—ôBG¹s ‹N ˜m×>Ù|õTÎf‡#‘LŽØ¥›bØÔ€‡·iâÌS|Ý~®œ" W3Ž$¹++dm¶Â¸³o;mЋ6"Õ¤a£ÓI“4{p6m( âY’Ë$#[2Ééj¢…º}ÙX ´ !5ƒY¿ò÷ùŽf.›˜º;A‚¶HßKf5w:·kÌÛîWfZ‚ùgn»†¨Ç¬ì‘|µôØßÛt¼ð÷ÊldÂŒÝÂ}‰8Q*º=Xî›DÛ"Mÿ´žÌf wâ®îo7¡J6—MÍØØÍx_ƒ¡{%·÷ܲº˜ÂWÞ~­&Q2ƤßóT»—sÔ2™Ç”ÖL‹¸(Ksz¢C¯^f‡òéæd€ë\6î$D—¼8ô¢³”$‹®>Ð ežtgab³0=¢siÕÎà¡MØÚ\òŒÓO¢¦O|6ºænèp€>:U÷ÑÉšŸÃE •¸ð!¾J o+8xl¯° —ƒŠ]hÜïö6@O—ñåô9åÕy*Ž]ðh³`­#/È+ï$+]uÇžyÐÛ`Gs䇮Sùß‹¼˜sø÷øšN¦ðÊŠÒ7´Ë~ 'A(÷ù("e”] ó@E›æ­Ú”d~ž–^dÙ5ãꬅ•Y»YÒKã[ub}ŒìÍx¸ÐÃÍ›j¯†›V¶nÜJfrøðÆ­<üv­Oé ]©z°‹o²m3¨Fã ±+lq…­p…­R…‡\áa¸ÂC³Dã" ‹Ö‰CytÕ§ýMç¯-ç/;D}ëüËWP”¯y¦ðÛ–þí¡þM`»†q9¯ò0ŽíßMzÛa¬ïŽ  _¢xºª°ês Œ—ïz9/­¹=“£ÆŒ¦Ç¨xÖ—À¯&˾”Åê¼Îö¿Ëþ2¹~|ýê_›‡ÿ¿££gŒ¯UséÊ#Ú¬N`E6ï`ˆLAª¯¡?ålÝx[Ÿr[7ŸÁÃÏàá§œÁú°"¶öYeãß@f ¸†ñðѼ—É<¹›'S5z5Ý´¡?ÿG=/æÞI?(Žéc_âNȽËÌ]y‰ L (é`ÑaáÑ ˜p_>.Îéa÷¦¯¨^y»Î#®ó¨²Î¯ïo÷ ¶i}t‡óqî©Ùkí‘3K@å­>‡,lç¢20ý›Œï d0“ÂdwÍ@î aiËÐó˜f_ÕëöŒ_Bõ…eøÂ2|–AÓ„O4 Ýþæñè6ó°Éݧ›ÝK53d«‚,7`õíâ¬ÃM²þ«»¸ž°ÛvÂ^ÎÊjœG,m *þ$aÙ&·ù±ŠäÚž´>}4*º8^:díÏ'Íf·Ê̲ٽKéýC|c¡\3xF×øÐϪõˆ StÂmp–tÐHέÀÜ,l×N׌Ùb#B^‘$¿z7ɵõ P]ÅÕ¯Êtèµù,ÜÆ®Ö›íåA3Á8$KóÏ8^N.kmoTG6;5÷6Šî'Ý5ûRqÖËgRKŠ3ÿ'EÇFÓY~‰¦M=G=!ê?[¡¥1çS¤öp,µ±jÃF£ ¨>üt0˜K%/¿$î|Ǭ@[ñWê ¾Oç<3-•Q›å!Wó¢å Å+ŽÉV ýÊöÚuFFhFŸ®Á8¬"6~:úFU× Vేkð—^ô°–‡oì­õªZ¨©¹jy]ÆÑ]©4Žbµ¢¼$«v×½û¯Ï£nµ0¹Â;EM–ÕðZšâø<òç~Èë)‚ù͕ϙPç’<1añ ¼l#bVÉzVf@<ô~%²âÜUL 9÷š<ûVQ—H$t±U“;‰øeðgÜØÎ£™œ$÷ÞÕå‚ü «]œéŠe’Þì^u¬*«\«àù³"{±2GPyhœ5×᛼)& p³4õ=„ýe†Íçê¶h· èX,š…8“1\M¤}Á y°•Ê@KäÞ€…(I¦s]µÑ…&¡Í¨À€bŠßrŠÛ ²z,긾HCbœçïc CH݉2ˆ0.4°í_Ÿ{°ÝX¶ b±q¶Û±pŒÍ’"‘ÀzÀ@µ õø¸o?Z·|†å0k Ø¥ò,{ƒ?D^•‘Nú {–R6«®Ù Â6gÛQÇ+5™­žÌ½“¾I‰¸1² £#šõàÒ¾#còè[+sõR/JHù‹#B¤³tŽ8—ôÍ8u޶6ëùºøÜ|Éä!W؃‰qˆKQ÷A¾„va‚X’N"ݹ ¶ÿ<¿útÕõ9¿ª]ˆÀ]k5•­%ìÛèAÚiòù‘û1•3 TI½!Ûv<]üî?ܲN;ç—å™ oB¹«×Ùà}:ܶƒvâ¿wÿÔ‡¹€Ó°;Û!u4¡ éËÑ¥éÌÒ1ø€AóèµI%á‰éœçÊ÷­Ï¦8®Žö@ÝAo[S@}‡"‚Ž"igš ÞšnÈÇÊyxäå¯kÕç½TY ,oS·q»8É<‘Ú³¦¨^t·Ý‰§˜03ýR¨Ã{9¾ü4”E·Ä\-Ý œ§ÎžØNœ¥ÁX(û…Ó”²U³Ã¯5 vœvú¶¯aYR.Æhh¦PÜ!Úï´H©åvüŒ%„YÜæÚ=’8БÀËbòs6uŠ) Û¦É3 ®eÌìln`k£/´;3e,LšM~(™f«–}-™  ¯#ùѸ£^yE ÔY¢Œ?:²Èô'ù‰(˱Yz™¥W„ „ÏI¾PÏ&„!‚èUªõúmÅ‘-¹‘8{ƒMXlˆù‰ãòõ®ö è¯(TÉ9Ãà‘Çk?$øÔe¤€=™“…ŽmgVJYx®j°Ë dˆT4Vq!ñ¤¼Ir«†q©åVr.áp„êÙ8ïv_"pæ¢q¨ggc 7¶qŸ.uµ³IH¤΋Ø+Žk{½\€ÄSœ9èݽþc)¥lÀ`­[•ýì¬ôÙÏù4íÞ8rÈŠCDñé´‡ëéi”žš:ÈF"Ô¡RWɵ,Àþ¨¦ à:Ôe¥À',~zºd¾ª–º~s`­êÎ)6ÆÇf&’ …˜Ì0| «t•¡C.’þ‹©¢#pF9Lk’×Ýî”nuydAvû\3 Ñá"€á z\u-‘2¶üã•‚?fÀ\&Úóø­ÕSRVIjÓ Ï=_5äpǪ™'y…ÉIDÙ Ëœåœ7-ÓD©…ƺ'L-SÔàáÇÎ4ºc˜ç¨#WÁè.U-¦7'1. ¸ E>š_1¥ì§¨mào3!qS:’Þ #"7˜¤5CReUŸž…¬>ÌÂuytnrd!\Û¦ „fÕCÒ_h½‰ÍMÖYgR [­Ls¢Ü˜V<Ò‘ºŸóBcè‘eÌò¢ÐP/Ä4”Mü‚y-ÜŸ@jœû° ùÅä%{£7&—âF{Sf5ñÒ ?V£¤¼È¨óâò¥”©—Òºå€ kÌd^Ù!&ö¡×=-‘.б„àj‡0o6MAîËÆÀ=å#J€h$<9V]QM4ø44âÆQ¬}Á°U¤/ð㺰D*Ñzpâ‚D¦[z¥»MšTçü¸ÿÀ …‰ãæú??t9H]¨ V/hPåg]HnÃÈ K>APQ#ÈæäÉ–| ªBߦÞ5dÕ<³¾"-WªýàBà D—¯^0ûÃ4UZöô/AR»¤ šüÃ|Eº‰ 5Þ½|m·à´ßÅÇãJ|›&”q“#jdbäUØyðŠ'ä‡ÓLÊ]qÔÍ©Q¼!*36Þ ÄIÕÆjñ"zA…ŠâyR [õÌôÖ§}Z¶nû¶¬–¹ù™$c¢‡^Ÿ­õ?WùšoU<çwï˜÷ë¬êªìýÖ-d­[ [·‘>¶n/~l•Ø‘èy}Á…<`w¯—ù0­ö„¢¦‘$ÙÙ x•‘WiÙÏÑqtmª™ë|•€"‹ Ä“Dó!ÚhX$è±ô+æÁQŠÍŠ‹©•†}L™Dgâp-ã<K7E®Á´!æ›zÕXIâ*q¢2è%eFÇì|é?ÑŠRƒ_¤é\ç|3‹–‡ìôoÒfÆWQ@KÃH â(zóÁÜúÙ<-fˆ —’K¹u"?"1ÎTk¨ô<û@Ñ›3ØVÄïŒæFS†§-¹Ì3µ9)‘æåF)Q,†sÕ&hÆ ån<39î ûô$E7v¶˜¡-EµKoxæG¤Í6Ê*x[!¯§ZÑbNi=gc\•ÇwAç:¹Yì×è+‰ùY¿C‰ð »æF5*¯gà š8œI‘&³Á¹˜Ïápi_1Ù³‹IC £–‚´mŸXc æÚ³l–ì7 ˜\”A¶WDx%¸X‘Ë¿í# ©Q)¦ü<1ãBf8‹ˆTàWª9ÆÔ!°H`dx*ÈT7€> ¸vй1§úôÔö>õÝÓJ*nRç:O©q=V”[ ‚e/ú¶w¶ÀEöµý™¡‹‹LMß3¸³”ÊFº¬öëЛ:ð@"@êF: ‰Ás0CDàÀˆôé l¸z!™ÌÇ[mL§äÕS‘ž¸Êò“ÒéàèQcá-'Ýt‹‘ç;[§¤ÕëHòˆzÉ ¤•/)øø›ËEÇÙen%æú)v`EÜ *ð‡Ã%—Þ²¢çÜC}X£nƒ¬çó0ѹ¿ÚühæÂ~ŠÁˆi4¯«šÞºÐ¼õÛjìm§ÚÂBæ9!šöŠºk@9±w¶ø¡Ó6%ûãöá:¢cLâ]¥'I 1•ÇÊŽd‘#"¾˜]ô‡Cb ZzíÀCÛ*u0ufÅûÕz\/Lˆ7Y¬ŽÁæÙÉ\‘ì5ºiGø„ov7\ÂîäÚŠÿûëXÊ Øì•ÃZ€W› ÓøÑýMkÐâ•fõ\’Ɉ­&þÝÂP'Fú›è+]o”¿ƒüãŸñÄåp\¯$3º ¢‘&Ý|3~l zê/’K€Þ6žhù¤„²û"P&Š,l#Zs#ÕÖ(B-e9ƪ2­J\—|i2ÿ”BÐ÷ÉYAŸ%™5ô²íÀo¤»‹ŒaÔû¤î*jUô§ù\ÛuÃhPGU·EΙ"  ÁÇÖb:%ghP~CPOTyQ¶Cü ³%·ÙÐÿ¬Ü8ofÒ²OòŠ Íl™X•ÂvïŠÜ.þ|É¥ýÝmÊž–R#7SƒH '¹}R* Ô,àd4OgQ(dN˜¬Ó^Ák`å3´œ"€/8[L"ô(§°¶tu’BsMÌzáx:^œeðÌ’wi¤xÝqÖßÒ%PŽ!vÐ8è>sü b<ÿ6§báL€²*:žu"þã ûœE(Ô¨bP+Í:xÁDwë ª`„4’€µ°°§§¶RIIò˜‹/æt£|1FÒÆ ÑÌ”§%XI66)K)æ$+ÎÓÂZÿv` ÓªK„c‰o:%µ` ´vÚ£›cv£— f…>7°N˜]$!Zíg®#‚sVú"]äÕXV²ü³:ç#dšVƒ7ˆ&Û\Ð UB5‡ÊË×)MÐb/i… U7ä’µUæv -½Ä’θ9½Ôt·æú‹yi0ÿã›Á ÑØŽa1‘{»È·a]OÚµu½cì·ÀkZnä÷• ,JZCÇ]*b ë¸ÊgC½ÒBS ²DèùªìiR0¯žÍ SÈÅÛw9ªRH¬H t‘Û’…ÑÞCˆ&ÓF¨^ôäy/}$ï­_­åϰbÄçW·‚![Á?¬ä~UÍ¥¹^¢jÛœÔØÉp~/"Fps2¨)¢?xOi³ÄKO”ƒTSIÚ/ã$l#¢72'Í ûÊŒc£5®d¦óG)-ïÄ.ÌÁ˜qI÷®_5ýt Šv¹¶Ü"¡‘® qe3–ðåÑ=‰HOv>|ˆ¯ÄBÿÃ^£9* ùùïþ §ÕZЕαVLoîP †Òï=Å$¥•8Ëq¨®›OV?éœ’Ó ©¨;€B‘£ˆ8`Ðvÿ"-,ªDPgr™ f6Wq*’›:–}TD} -L&y–@îÛYz¥N)…Õ)|ûæE|‘Ô ¬.8O0_*«¹*»RgpŽ pÓk<…r»ªµzí¨ªŽjü2™!Ë‘êhsü:Uœèi;>í^ÿŽN}íÙ©VŸ½ ™\4Ó'« økï%äÕ¿=RÿÂUQG({—ršAyu’"Zœ¾„¨óu†¾ ä/ê)v8µ¡´‘H¢FUÛW :~ˆÎž²°AO4‚ôC2˜ƒ F‚fü‰:ÅU=M“âZ0ÜO-}»†>Ö™Œ['«­:=KqÀHS9¨e)$6§|i£2À•vè»oY=ô‡–…à@YÎÜ‹ƒsñ¡FuvSð[¡c¦º2òÕh`ó$]õÔÞžçÃâDIõ¤qÃoÛ:ÀZI0\„±Kd`ªØ„ư©Æ G­Â·RËÁ‘Ê:Yµ ŠÎ"œ=PðÄä@ o)l·#Î0à‡à¡“)?Cž‰6kƒ È`%@þ.­œÚºä|€€XEÏJ±T¥Éûî¬~ùÅÅbÈ•`çR„ëY Þ릡¿öºÑŸ>öŸ[𸻵^Ìë?Ö x™ÈîüÃüV}l¨O66àçæÓÇøscóÑ#ü¹±±õôñã‡ÚÜ|ôøÑã‡Ož<~ü§­'Ÿü)ÞøÓgø·Çò8þSòïÅ䬶œ©ÿô‡û÷b0‹Å, šªcEåÚïL!Ëe?‡0WËm/¿ÛR†½ÑÛ±v{·° ‰*aô¦×Rà ”³{»#–?¬øTl‹GÚ§Þ—¼œ?ØŸ†qÖl[€TÙ*ù÷ ê»ö6ZÕr€#ç.×.‰` ƨø-Û“hsà„µ=5á‹%4þê2sÎ":"­õRv{²ÜKfgMˆ 0Aë­¸ñÀiÃ[࿚ž«C8þ!bz›êj~³«zÊ®è{#oXßÿÕáêô°žnÕZ¿z}ëJhÕ5½/³³NM°:…Ì­°±C7^N}Œá£@BFZXn(9à8Õ)æ×ãT»ëßJiX"˜±z$”»QP¿Á'YÖ[ǹ÷ÅœÚ/±CÿűCG¯ÁÊwv,ØP#òºAêŠÝÈùæ²{c–7õÔ;¯>¾nÅ_ÝýúkT'Vy¬±ÊÁͦ£ý>£ÍîF“u7?’žKë0J¶x{E-P_U°/q™(Ðcb“PISë%¬w•©£åwyÍ€8XÄC¢WôLçõ²„¦§Öí-—¶É/n@gzýªû ë9Õ,–½P¥•Ü+ã4™¯oç @ #…Yd¥þH?LÇÙ 3~tM¢ãÁzŽÉÈ:Ú¹ìÝ0wFYðë+X9=È vJ/Òn%ãtÆÊKx«’ I«Ô½®œ]ôÕÁÑÞv¼‹Ã—ï»ã„ná ¿IAÿ®Ï’µ´b+Xr´âfgÞÂhRµÃ³ ½ið19*Ú3<ƒjÂ:ÁjL6^&š¥$?ù»e¾àV©Ûu ®fjš›Öªo×Nsã Z‘16»êÎA6÷ù#VÞmQ»eÊê›èÈ(Ú¥Ã9§š"¹†ðÐszÐú(Ö“YÚqN‰Œ0Z2Â_ þ<õ2¿æN°@yÁªÕ]&Z¿ïÈï•M–&Þ`ýükC£ŽÁ™1eÑΡ}Ì€‹ºcNA¯YÐ…‹Æ¿í2t}ÏßëœÍìÏŸORíôÃ(¿ÅäýÂ%¸»íí²Tü™•)ôöÕÿ¾:øñÕŠêÙ`-¿ÊZ¶Î4î1[jÈò‹eMdg‡{¶ü*hGÇîžnv7»[§²‹ç`ʣЌú­æ¯¶˜8Tg)ÝU»¹ÖÇÔþE×rRPâ¡Ð©)™Ð³ØŸº¶j&V±Â1Ò‰½ÐŠâŒŒ¤‰…Ào+a¬¼Þ¿ŽâaUªVÃÀÁfy¥O~“Òô‹ÒØênžþÆN¾ÒM‰È\ÿôÂ17G7pà E*ûCdµø¿‹“ì¸]ªaHE/Gü¹˜lÓS+‹G§34ŸG.¤å¯z ̰nuä¯Uo‚®¼ô쳂I-´9ó¿2ÿiÖêS©šŒÅ1ó¼”HD>¿±ÓSKOƒ’÷g;UŠ×`£ÉrÚªn¹uOãûÉdxßõ¸&’uzúÛ¤ÁÕgô@ƒ_$œþ'îhts¨‘§FH’|â˜íM)šÑýìÜe•7ºey1F#¨;¬Û”Þv.Û¥9ûÝ•ç;ï&ï&NÉÁ8/ÒfëW¿Áƒø^á¾ñ=³PŸ÷E/4­'×~q ÷Iî‰|l|§ô1š^@?Mø%ãkB"A .ò¹ ¥ìpJÆ-‹Àê$B·ˆèøÈc, @õ 8UrŠ-^ÀeÏSÁj-kwnXAÁ³@æ©yÿþû+µ™…gS5ô Oq_Üèü¨K?šÔ€ çç;6\?:&Ù¼Ù ;X|ÞW§Þ)Ô& ÒX­åOÇÚ§s˜Ž“ëÆv¼ÁT¬1Ï{Ãl¦>sÖø¥LP¤pè§;nŽÒBRP@OǺ"›°,Þ¥”¹cÑ!ÕÄ0jj‡TÎGß`ur` “Ùµq²hU©±ÅU/ÕTBÖÂáTiwTk°;VêïU· Úkl[®&NÃëò­´ÇŽWK`³ÙºDÞæjâót@Kè–†ÜúMúÿ/ÿ hÛ[,ÿØÜx¼éÇl<ùÿñYþí.æ9D- âo刿%¸Æh§ò£…&±™H±¥m‰yH†Elúþ¬§…´Ò ƠԡܜۥocÊ÷z€œÖë5ÖJî@±a,2{ú8òÕ/ŠÊVY=€ê‰a™N¾ ‡¡A?pÛAþYúøàÛÓï¾17]uB‹´É=„AüI×ÁEÚ^[ ÕòA.MSuØêÚ¢ Ý{Ì5ÝŽøâïÈZxÁø7?Ÿ Åîv "гm€Z"â™{y·é6N–– Q†ñÀåT#eèÔÅôl– SöídŽa®õÖà%ö»³½WKg`šÏ}0_<·Î¬YáŸ;†!Šoè.iÆ:ä¦k­FÞÒT‡¢$ è'¨¸˜°¬fœïÿÊn¤3~Ô¤wÐÑÆe§Ž9çèúPrÝçôÙþÚEÞ$èCqɦä6(m€ãèÙ¹I*Àâ RØ@½öû®£KÚÌÏöö°†T¾bä&‰ÁGûyKÖšsdc–ÉšSppD½K0ПžÂé,òGòÄXs*Þ0ŠšÚ"‚C{:pAÏ`›'“yóVÁ7«¸´Wù@À3• ‡Ð xA6Ñã“"¬¨4Ežv‡¹¥&Ûy¬ÖôBÐ7lyPÕ‰’ljRñõ¼îÛ´ºm­ËÓ9ûøÈt…à»×£Çaså‹èû&U:cˆ…½‹~šÃ¦×xK´V¨«†¯±`Àè3P‡¦TÓT­dZnàâM­ÎѤ½J«¬ñ Ь FÑO¼Ao;5Š#›µå—¥‚ÿ Lç.+{  >Ê*¯ú°œò.ó‚£mÑäÒ­í’²£´¥\²TÐßRkåÂÕ|’ªÚC¡Ü ¥×K!Ÿ4J¨eÛî"tßÔE>$´[¸ŒŒ¢ˆ/Mø€ØžMÕæ6²í/?Ý£ÒÕ’`{Ü-)/;ßi(jÕ¦)‘Ç2Zß9ÞÔmv§V‹²òÅGÆN‘Çg@ò7!¼¨WNÑz]›ŽSA‹‰u»" ð^ÌÒbŒJ¦Þ[»#B§šöG–eñ_üø›˜Íi©(a¹-…K|&‘ÙB’Ó¶ü&P#kÌp¯¡U`âï}w5¶zVqãkXÙî“0#{#–õi+0¤8Ÿ!UCÀð>†N,°þ…íÙéðQ×þÅÇʼ!æà¢èRä¬\Z¸™èWù0ý¢úèc¾ S¹“¯“ý)NÓBöƒxÁvoÃ+üêWð®ïŸØQ0·h?…¾@®§”^Œ’k‰EJÄ4FDR*ã/ªó46ˆZžÓuÉ:¹L9Q§ùª„­ãøÜ©[ôÁ°4¥ÖJ¤ºÇ4µ*U~E|«ÆjH=V… fÏoG›ó*—Û‚™‰•Sí²ƒ9àXæML?áB 1vÄÞ‚ÒS ‚¾ ×o›£ÆV”î/Ò„“!E~>¶2cçħùyãŽD‰¡]ŽÝç„FzÍP¨eÓÅX,F”@­Kº"Ì\BJÐØ°–•˧5 PY:‚.¢äl7l§òÐ)Ç8# fWQ\:?x8‘KÉR ótBÍÓï„ôk\ä‹ì"pN³k—0Õ:nÖ$+§éÖ]åÖ~àSòñƒp`+õÂ*qþ7Ä_øbŦÊÕõÆañ5Ç¿|‰OÇUѪWè¹C¸!Ð`!à“³ôŽ1ÎÜ€›ß:ìÙä !’úòïøo¹ÿú ¸•Øÿ¯'OŸlxþ_›>üâÿõ9þ=K()í²z_Ç0òsDæ))Ô*ÄëvJš4H&”Ùa¨ˆâàœ¢¾ÚìR£¹Ø~6Îæ×”!DÜÆeŽô\ÐU¥Q‡=L %Í)~ß~ ñXºÁÒ  2Ÿaéû0ôøD#cÆÉÖ4³òŒŠ®Ò†’G(X¬¥Éø=ÈK¸Æ=Ó:¢ÇWÔ?½VOõìà·vÇENɧū. ÷ ¤¬ DáJØTA)Ë ü(B]¶ÙÜ}[Ma>UÔÞ*·˜ArpV>jZe©hHNÐêŠu)VîÜó7ÎÜ´ûöÛqÅJN„©ûÅM†­zØàä-¦røÔÆoÓt™Ó€Ê˜c•ÇÃ| †KÀ_uù#,âh-•ú bpômR(9 ¦Ç›Â$’ÎR´,o¥Z@bAGEÊàçœaŒ©¤•¦Ä) õ¦,%›Ë‰¦E×J-ž1Kff“€YáÔjŠS‚Ê»ÈÃl½Šcy®&ÜOf‘q—©Ä™®lQÖC l…Îífd%sÀZ’w~vÍwE7PºYmÖÍÀ¨mŠl :­çï'%ó®2¯R…ü“FVGm>pœû’ç…½Ù,ŸmÇÏ$C‹&@ ŽAE ¤JX×Kî+ÕFn&(“°‡˜K•çs©a+z;Ap,€‹¤@ÜP;× êƒé“ “n Œ¶H²¡É$C¤hÀ”¿Šòµ#µ´X£ ðlCzkBv*R.9YL&› ëN.²É¢‡.4V‰ËX¾…HiXYC³"f#¼‹sÉ‘ZÂê_ë Š&ýå…v’ࡉž±«¿¢ë4¦1iÇç’‡žH(xÌS ñÅ¢o()öÈfäS"qwJô½eÈÕëØu³r"ódBøº²¼ô u§˜RHSS#±`tD*¬ÜtÎ…XJ¼ <Ë->ääÚÀò+tGÇá^Õ×D¢+hÑÇ^>r1¢Ž*$c{Šã¢‰¶¢N?NÒáàë¿ Ÿ¦OŸ|½õõF²õõðÉãGÉã¯7“‡É£ÇΣ–‘¸3qu^t!Ÿ ,#µy¼qÒŠ¬U*o(|Ä0Çp+PÛáQ\ !Ûá)•¥>rú±«Õî÷J x$mR:/8ûp¥$""ª‹èËB>6]Û…oÜ.CtÜágäzÏq€œÊæìmõ¨"ãhYDõ[{Œ…:pxì~ö‹»85û~Gq^mÏ…ÄlZy£TAÊP. ‹qùÕÔæiw–89K2 ò‹-aM<±UºeÚ‘‘j¤·®ç]Ü0å3à˜¿ÌMÎ. ÅPœí¡ÂvxZr³f¶ZŽvâwM<$º ¤pBrdÄœÐÖÉ& ²ôÒ‚ÉÉÎIb FÜ^uLVf{LR,1 €q¾Qè8_—ó!¯ (šÍ À»ðCÊVç"B±€BIâm6¬tˆ"1f ÄoÓÅ”˜¯%ElÀšt!‰¼eÄ ‘ Y ÓÓÿ·®%Øuž\ÆSH·vj¿™>ã`á³ Q Ñ|ø•…:›—@e›Ãt:?ïàšµ"[b…̸^‰}‘iÈ.Œä6£Sd£—© ú@sÝ$1C„"kšÂ‘IXa:8¬’”¢ªÉVòƒã/ d„딀`9S7Dz…¢(bsqN…Æ^x#ÕH_€ àQà"²˜g@é¨!A&&ìôÔáAÔ†ÀäNOùÈj(ø¢i¾Nðœ¹2MÿÕRhêŒ)† <èâþãKÑQ>ž¨ ÀëÛ§4Ászc®È§‰t6XŒ}<x]0WåbB¹ö®Ùl°¸(æÉd€°É-èèaÍ{dl"[­90›ù•üò|î‚2Õ Æ :•Jð€û~•”ko€¨0䊸̃J%rßG®6ÆÛ1!hH6ökA—ñrv³”m^^F´ ÕÖ„*ŠY@ýŒ›?À# ÎW»¦l…д†<Ãïõ•”¥bV#ÓBQMæû9…“M~¥õ'2ÀWÕ¥ƒ0‰q‰uj ÂD˜d’Ô¡‘½5 àl\౨§ÄnWpHTC6¸ÄoPÌ™h‹¾Q•(™ë=BXÈÂNÒ¹³Nø`€5^Ή!`\]Lׂ?åK¯(ÁDIâ“t”že$8Ùá"èüÃ2gä¦@ ížßqRÛ­ó®eDÉ8Ï»YA—”#J eVŒÁІ'M#l­Ugÿ3q¡Õ:í9Š­ÿgÿ™šøÕ”üAÃÉú¼d@§áÇÔõ¦:­—« Tk‰Ï1žY [Ô¿“x‰ì'KN±ÈÍwcñϨêuEN‹cö'ŠÁíZÖË •?‚ÑvìÏít>?¼ÜÃD>¡5yËhkÓÜÊbð(t«V­ 4lFnØòe#)µ|±¼4 ²^'o¬Ø««Ä”+k°ðw£ØÄUXMËà,©®w7êÓ;’Ϊ×è[G–U0¨â=»ønjc…zªŸ0Céù#âŒXhÓQ ¼·TùêspæR7Ü}MŠí»ÑÔ€g›su;q¼¹‘>}º5=ÚÚÚÜz˜Žž žÙØØzøøëÇ·†éçÿò¸ßW¿§[O>’øURŸô…•Te6‹?×Õžá¬(zÌzœ–[h]w_£TªQ'sÃ$Ø»´§u6%Äs'óˆ^5É ÈÚ²\%ŸÓˆæ€zcÚµëÄ„£OYî­NÿÚbÀé°Ýª¤Dµ„µÖ$& ÉÞªÙ„TG ûÿläÓZðësiLÅ]ü<›ñG}= `?éêßvÕ?›ô±å¯v®WXÙßð±Çqeóçé)¿Zx°´ÎØhŸD/ ™gÀ¢Ž¯?,í Aü\T`éÚ¡wL §ýwF&?Í!H'ˆÉxБÀz$ÆÝhw¢‡â–8΃D bôÂßÁ(ÈKÏcìÁ{Ú6‚ªx5P²÷Nrϳ+2RIä¸rÚ$Ë5ä·*~VÀ—ü€·µä{ *ÉæMZ0îÙ8ï'ã27ð_µ¼^£›ûÿC ¬ýôúÓà¿>zòøéSÿusó þëgù÷Õ]þ‹Ôÿ)Ê6½ž¡³9hÅ[jƒ;ê?_Çÿʧ©úrçV‹|Ïò ùDæ3u‰¿ŠwÕµy•O Ű‹­¢Í¾ÈGó+Ð>Âï‹>êå ½ìbêïõ¢?Îñ‹lÒ¶jˆÓcÆ[ݸù¯×/ZÝ8Þu<²Ô‡r«)Û3½Qµ=8a´G?ìƇßý¸ûf/V¿¿~sð÷ýç{ÏãµÝCõ÷Z¼ûê¹úß?éç‹ñÞ?^¿Ù;<ŒÞÄû/_¿Øß{®šQµßì¾:Úß;Œ¡çû‡Ï^ìî¿Ü{ÞŽ÷_={ñöùþ«ïÛñ·o  1~±ÿrÿHuqtÐVØ ·sð]|´ôb¯¿Ü{óìõéî·û/öþÙŽw¿ßÝux¤šþîjxïåÞ«£6ð»ý£Wjpª%Èm±¿Þ}s´ÿìí‹Ý7ñë·o^îá^Üí‘QoÂß“y&@°ZÁÐLj‘1Øc´˜ Èc6úóþp;6ä(VDbóë§êˆmnt6¾îl<Š76¶7¶¶?üW|´ñÏÐz±Óä·ê¡‚àŠC|äSõXLrùcœtÔYdÜ,ƒXbüáLàüBÿ•ÊoÅ9 ^ÿ•Þ§sý×¢Ï6õÈ …ôcôßæW~*Ÿ³Cþ »Ð…Õ{:Îú[zºÁbïì,+*ÉìogJÞHÅï”þŠ¢Qq=¨—å,'óù¬™À×Á‡Ši'ý!¹;LòíøU>I[QVô®²ÉÃ-ʤ­ƒ=1c~ш" K»í,LÊ`ae€V5¡ÕêJ똥P£‰j÷ÑÑšÃMêÎIbf—’ÜkMÐïyXi.äj"yú·ZìPVÓ„…ºÆã*¶M1æÇÀ®mš¨â-hêÊ4!øVýeÚg–¡.<ÕV# ¡Üg¸B¬ÄJ»VèäÝ7Gª´jVUJaÔ‡/®uÝI©&¸k*Aƒ¹ðgà6V= ’è XiÕª/QJow6O¸Q§þ#0;õO2þay(ÎŸŽÆ‹â\ÎPž¦ú IŽd7Õ›¥·¼Ü‹;=O~'håJTD/ßõž½PÏ\ï»ç‡j8’X™N“gÑ…Ýp jqº˜ï4$p=\ªÆ Â8†´ä«ãƳƒo_¾:D'‘Æ_6ø&¡ÔoE÷5gE¤ªóMçéx¼s¤ä˜ºBêÊNvìÖ÷_ïÕ—‡Œì7ª žÕTÀê†ÅŽ» 5UÔÒí¨ÿÕ”àëÒŽóv bhsÚÅ™·cüÝoð75V}µpï,ŧ?æBNbIÂp³+ â”%àO½Êh3¡6ä1R’éôº‰Âìt^Ìíxp¡N¤R)vð55¤;ü”šñíËÆÚ½b òNªÈî>CCŠÛvݵ0^avvâ´$(€AXë Ö% I¾ º¿FÜ kT!D‰Toj„³t:kBÇ º«V£KgÓèSbÍIh–b^š „Ø¶÷‚¹¨®ú‰W Èvb­Þl1!TsΉiRѹ´¯D§±¼M¨1–Ÿ'•mxÙ‡V9Õ<:Ü¡sÈ>¯>V ò³÷ðB3'‘¿Ý°ˆ?5Z˨™š±Y „7u2õ™™#Ù£4z¯w~@Ê`þŠ çœØ ¿É9âhKÕÿAØc[[qŠ”·K§ÞÂy1P­/úBã «C1¸’»;­ŠõbΑ×iÙŸÓäj2Æ·ñuïÇÝý#çD„¨Ó {d¥7 6Á§„Ž[ˆŸb–’tƒ åá×\¾¤Ç’œíÓ…µ‘‡`9¢CµÊÜpéN¸Çj‚ò·3lPUø½t+™;?gSyLûP |C÷«®O§?ÝŠÓ§y¯{&oÄÍ'Ãu±éŽh<1D-ëËì¼]Sg)ØkÈ_Ââ†h)zÑ1#pÑë5ZÀ›u¬±[; ƒ%œõŽb ’³t(KrQÎ}“K +B‡œo-ö&ßÃ{Pk)­¯³øó³í“æT?š,ÝX7x™w”aò^q¯xÇ×P­#ô£ÖU]t-¦JÒo6ºVÝYNýSl"ô¤4¦Ü=äúZ3Ò¶•þÙÚ×5kþ†ÅrauØÊ\Øm8±[qcaŽìð—.©VÅ—Yû¤Îs·²Š8<>†üªvA¥6µ¾ÌKÅoxJ' bÿß5î]u4aãá,ðæ+Ò0Ê··NÖ_ÎÁoí [¡c6!®°ãþwEüÛíñM¶ù–;}Û;ý~¯´å+n{xë—nø¬F’@Ü}cÆ hä‰5m‰Eo´TûìZœ&pÈœ-ùž~Q‹î»‰I’±vÈ:~[mó2™eØ¿±¦®˜-„Õušb;D¹G{LfCç#ßÛ5 Ý‹ÿÓàºm¹5¿ˆÆ&Éæ½Ådž›ã¤ŸŽÛ¨igžRý¸ÿþÊ2 P4ƒù³\™Õ~%€*®?åÒê«÷WÝi>mêú!Д~¸Á S’¡8Û¨ïºðŸfë—Ã"WçLg¾¿ÑÕ#LªYž“{Jœ¡t‹qšN›ÝÍVøì4Ž2HeˆQjÙ½7àJñR¸ÌtÖ£¨Ô&w¿¶¶ö=Ÿ4ROœ°UWãžÆ¾î!>m¸Þ4¼WÙsIÆW‰1k¢²JŠ—n'þÏ/ËTäTô>=±ì-U"$«¸]õµÁ¢OèPÒs4…”Q hÕñ}•Ñ·©$L‚w^­ê…>òðoÕác}¾Fèªãå,ÁØÖ„©¡¼¤xXƒ=ÊÎ?•)ºô¾"ÀolÁ½üÔ™ÉeJê¾ÏÜ¢ÌM„ü‚ïŒjlV!únœiÞMØ)Þ¦ÿ-Pµ,s„Óën¢WŸ\f)~M( ³·VIlR Ûöw»EsôÉ™ãNßúP³T‚V!¬^{;5*ÇÓØùwšN†®q~Öf.üñãî›Wû¯¾·ç¯bÅR Þ[}*0€y)ÙŒ DKÊUª/˜rŠP€]¬[1¾£ýqà†·†tГ%lš¼(ªÜîL݆­õ`á9döíÊ›CèTêÐŒÜ]ÄÙ®Øù5Ì—­®^ÓæñI˽BMnV$Fƒe$fÈiA8„8CQ¬Ã"s+ŠtÆÃE* m!{65gÙ2ˆ7öUð1!˜±²ž8V¦•O°ÿh§xÕ‰|;mÎIkDºBõ{¼³ŠãF¯7Oµ|êM+P¹i'ú¤Te–ž)VVu¡Ö+}êµÅ$ºÅå,5mÎð·W]C·êt©åþ¤WÓ(­(Ú :)zÄ炽¿‡ÚrvÑ€Æ_¨_Ó™’¤ðñö‰Î¸âP"Ù{c,Ù“rö›d}nÝÉïÅ-e°*ÚðøK«Ù[ ¢M®RÙ|xª[O†Ã`Óåu¯[^ý>åÓ¾„êÆÁï†áùçKÇ…E&S÷zŒ‰çú:¯[ÕÞcÕøÏ¶(¥±ü/ ¬´Ä¨ú–„r°½£c…6A'Üï›  x{ÿ˜@?ö±!SºWÚ¥ÎTyèºÆ… ýcB©e~j³’> øŠÌhÉó&°òXP—£ew}€˜‡©†èõÓu,ЉÈ1ÃÐ÷Ô¢Ë[wÐz=¿P†µÙ… ž‘RYšÇŽ;pÞ3ß7}û^±zShÔšdÕ‘Q§x*]©e­Ò©/Ílpšh gzT•Ç fýEB¥|ŠoÀį†Áb.à @ÐëhX}»‘R~PkkL[=/£äßÔÂc/à>e§Ú¶ûoøG¦Ô’¥ UtâjxV3â&k ÃÛ *È”N°~ºÓù¹fN?(6¯CI;c€sá¬Á>›Œ8©¢ Zè¼ÈãK½•}‚óð-¬¦š+˜¹ZÂM‚Îà Öl§{^ªAÌ»Ñ ¿›4<©^¾S{QþÒΑŠ&ë¦$?m• ‡ƽY¸\×ÊæYªç¦öôh©k¨ÓOw%ª¨¡¥ÃêùY¨ÿ@èEÀžà/€öêÔûjÃ6à±ú†¹t¯aE½ "—2èV^—Ç_¹õ‡ºyr,nÑE8ºF\rÕ33L'jÖÆ;§s/Ç‘y<(AÑôÚÕe“ƪãï(ËÂbƒ…¢¦ÙÏV½ÓÿôúÄSqrö¢òªxCѾ3¡qº'ÆùòžG¡[…7rMA0…“3W¿ìÙYá8ƒ¸«H?hµKÊþ†;€Æ¶7ಹÃ#ÅÛe2þ‹“V|ªNP)ÛM€4/½wMŸE¬ë¼Úqà•ð¤É.%ýl¢^ÞLÂ…ž‚UÆOÌÚŒaéÇ…ù`ÌîÂrgÀ— ÒKÃOó1zŽ‚Àzá~Œ" ²ð‹ùbîbë·Ý[§>ÇŸmoÈy\ýbýåp˜ø[ÛÖ6’l•†'T„t`µÄÏw«¥»½§Ýø›Àðà§ùX»¡êünÕ²X0/×B;ĸžb´{ãg­¦6òÀ’ê?Ú.€ËÇ¿iÞÓx)žî9ðtsã*oŸÿJå‡áÔFÀ¨ÆàÇEM7 £k~ úÛõà*÷zÍ"ÚýìùÙ¡5£ª¥®WÝ󘂻à`7é(¾ÂÇ|µzऊ€‰×ðÚÐAdsJ1Y"û6•½”íð9‰Ü=Fó³¹xþÃeÜ=ÇqPšUcúŽžZXÑxë!¾¡¾¸”¬²^©q~f¬XnÒ+é´hs8gyxæXS¼MhÍ9Í •Tìexìf_K [3F3«aÞû~ïÈß5°tªƒ°ÒCS'ŽÉ„û¤¢EðIÑÞ‡lÙ-è:軞NPpà WÖ/5çAVLo„>mN±" !ÖešOŠ´¹µ±Ñ 4k¤ÈÐmGô]‰+¹Í<9Zî›çˇOdüÂh®«Öñ ý¹Çã7eº¥â†a3Æ_û@º/ÒiË?à;‡^é`°­S±F6)Š ùY¿Ë“aíÿÕ*«J/Bã›óùÅøoßôóáõßt{߬ãß߬㗮¸ðWÔ¿µÔz¥ÛqyVfPçJtWD¦Á›Šî¼H'gósõóYsœNš ‚¶V­}t=E{/pÖ8àF ¦©X4__¡>‹8ö’ó‰þ–­î²³úÇÎò«u9ï@œTyYKS¶>¸Â*¼Z•Ñé´þ1Ò7æO\o”¾‘‡ÍOo’ø|–ŽvÀ©ÿo÷ŠoÖ5åLdO2þR?QeΑQ1tšùH–¶ð×8{ .1aVÒ¬ßhÙÁ7¯«ïÛD´e2ä8#û·|RžEîEëä`íHZã@_g?|W:g+ö†Å>QwþÞÝþèOTO|4—¡^MÍßk2ȇ©Ëp^Ú`èá½"ÆÿÇ+‡•t¼Ù³^hâmª4‰®ƒFKúèÕgÎÝq´R·Á%É7ŸOAZb^]»v[øM«F×e‹-_¨)’8#8dhDƒ ³ÍÍ OO #WwáÚ°ˆvü~X»\$FXwéG“ÿÚý®·ÿjï¨-ß<ûßÞáÑ›½Ý—–£šàüûPK=™¤J˜,–wð>@þUé9øJ×DGw^Š¿àŽíh1ä:߀wAžhíxíYB®‹€•­Ú[ã½w”û´w¨Ü׺s^e³1¤C뀎4ïáoMÕž*»‡ªA4;öÙâÖ„ê«Ã0ž(ÑÒfÖý FÈÝ‚dÚ$ûÄbºcŠZ %&vcò§çq•§`”R5hŠ°Ý‰œC{`„ög¤]ßÃŽg2„-‰Ï/nÐ߃_¿zA‚=úb%HÚ z4®›z¹xÌp%áõÏgðºmÙ÷ÍñyÜz\s9>7 ÆÛª9ì…ô­Þ¨Q«ò>ª¹uíØ{ÀéFNê7÷¡»÷ìàÕ«7{ß½=´ ç³Ã½£[1\ÂÕÆ =ÕÝ}¦Su{+¿jŽ ŠêtgÆ”ê¸0½^c*,1O iL‘JŠîÌM€;+È…l6­2m4>ƒ£öäÌZ«D)ÖÛ|%ê!O Ù8YîŠêZvò¡§•tm«C¬ÁËÑÒQOоƈ¨aÅV›øJó“ʰÀÜ錡µR5ŒÛšw«)ÄpЮï”uÏHÍI´Zvhi+n _øÙÕ9PÛÊE\î¸+fé=(ÇWž$#Þ—î 8÷A‘~÷Âs‚ûô÷ãã·¥nKz4Kg?§híl^$ó‡‹uÏfùbÚÜ,AbéÕ\ïÞ5‚˜)JZÃÜLMUB•iƒìë\_C-ù!¦¹ãMv9cÎCµ?p;²FƽEË"÷qñ¬qüîÝúICÝŽÕ†åW94÷s°¦ç)¼ÜE72W‰ë¥Ý´$S§ëV䮬¶Š«Ò€qwÖ˜mÆñÿm¬Åïæï&ïfÿsòà^Ú(zÇGó“ã½ôäø°8ß{üEóøÿ®5¸øÉƒ–ªoE¡ JÛAÝko£éCµ4æcEw1]ÑŽ=ÄÆ;0 Ã‰3¸Uš,š¡Y5šï&ÿ§Õ‰ãæqÒùy·ó¯^·£†h sÞMÔ—ïÞmAh6Ž-¨}ߤÏQYaììŒL&å®:ªµáq÷äݰÙywø õèÉàÕ·¯º¯ÈâÍóýÕñß–ãÿiø­kñÿ¶66·žnøø[ž~ÁÿûÝáÿU>þn~ümêÈ”‹ŒnH˜ ºãl‚tZ:Å"`Z‰éRæbø8b¡p?Ù3š˜¯$°r«ûˆ`ØÆC6ObSª®ÝŒ@æ=É×Àiì@84ò; ` ’?5¦°wò»âzfäÕr;¼Á*„ÁjAH8ú\=¿ò7Ç/ À6 Î»º 70ŠÄíª\s¥L9óÀ—O ô×Ë reu8æ6:_?@¦Ü’[]ä0#€,ü7”j°'— ³tº<‹ %ÀǨÈ#–7©:µ½þ,ŸNzCu€{‡š©¨Æˆ)ÕiºQí-íeñ2+À—òURNÌœ V þoz¿™Hº]´Ÿg3V¯M_Pc])åur˜nÝKAu¦—{1nŠò²B«„D²v„™U0ÍÈÀ4ÙŽïAèQB7Õ äîõx„*A’:0KK2£8ÍC7 >O-¥õûôšü®ž?8Vߣ›ºý77b‹ üµ×{“’·…»„ï,ÙRý%•G¯¿ t ßq¿hYp{×VÂ\…ànõiWµ%vWùÊ6YbCåÚ.·©w¢X³¿ÞY»æ¯P1©…^.Ëjz´L$Ç÷ŠóàÕÕAêjô<“cþîÄž’”ñ­°ÖêÃ×®ˆÑO´¾¥ÆqíÒꊎ݉×î›§°©>æ°ÙVÀæ#•œ¯80¾EÙ^ ©…À^ £bw‰VÐnŒ%Aî<~pÒ[‡¥'0—  AÏ4ÒYÖH'ÜHÈLg€šB/µm률SÁ§{1©ºÕ+ÜgkwÑMÉÜæª+ov*xÇÍhì{¶ÚýÌD¸ÛZ‡$ñ›=É:¢äLÛPŒ®â–:NøMg–ŽSÐl5 E øþ°ÜJ¡ï03àw÷ÝÏ)$¾£CâU @Öw ©ï1\ø¾¸¦Á~6±"j·ÙÙ1*©¾ÜBŽRŒK—K9ßš˜ÚmðË”pý¯ýy—Ò!¨õ|ôðö«–Ó&”–\â.‡ðMWÿEnéT¢ QÍ€ “V*žÿ@¾˜¤Wj“ý¡pž‰RÿèÀî. ~¤¿Çç·CX ¥ÊÈáþé@fúF±R|’x©"™t:bM‹ÐüòJJïà³Ö iÇç{ßí¾}qÔûûî‹·G(ÜŒŽ“¾¹ ÿy™}È&5>©;ØmøQ§s/,7¨ƒâ+RíW l%‡ZKx¼˜%u[½Þ0¶¸„ÏÉ,Òˆ|L¯ipv?‰,¼„JóèJ$/²y;•$ Í–ç=a—ð(Ääûñ£Þ´ÖÔ{À¬o^„v=§š7) š•åy8ž³_õ°¸ŽÀÀ«‡¤Q÷¾50dÀîͺÀ¹XÍ«1 °uÜ,€‰FW".yZéÇÛ)JMCý*>ÌÎ뤀ì3˜Þ7±"’I¤¢6]¤Š ·ÍŸ˜˜[ —Ýx»¬çî2Ü‚`1| Q99n …Œx£ :þg/_¿=Ú{®/üꜙXƒrM³ÒBc@¥`ǘÛsŽZT:7úËò8–βîT‡íHÕKR^ ¾:¸ fàšÐ uppµ…ß5©l;n2gý¿Ü}õ¼÷bÿÕžŒ¡Ugò^©ÙkÇÒ±Í7Ó*{Nšþ/±ŒV½å¨Ýf?6õ4V3²ú,(…’\nÇ—˜î4lÍ+4ˆ˜;Vº£8v ×ã?¿´˜zÚd3Á»¡±Y$úQ7*_8ŽöKãî&~¥ÁUKž!vSE `³ñÿ«/Lu¢µenÖ tµ'M(÷¤y»…¶=ÉÕF¬deÿšñv´õR·Ê[SÎãêìCåµ^eJÎ-v¹ŒãÌÃ7œe¿æW¡ƒ²•Ï ¸ƒ67Çç<-×ï Ž´;LÓ)ö޲Wz–\¹RN°ó! ™e>—‡îøÄš †)ZI ¨Cæ Ù;j ‡VMÁR£øž*©¢1õ`X …Ø9ú©ÕæyLÆà¶u7¿ÏçóÑ rŸLŠ"YœY|†f‹D×±SÚ4{‡Žf˜"µâ  ¯RÊ;¦˜Ÿ|¬ÆÃ!ð¨=QOò0™ÙS“7#K‹.rs2jð² _‰É@æÙ|A,,PNˆê¶IœOR¶”¨µPT Ò '˜Õ,™PNžN7Ž÷§0¹¶ªkHD­­£ÀUSË»8;oü”ày‰”d²‰Õ†a'ñº8á;æa„±û  rñxS¿ŠóÖV:è7uŒ&ÉD"]ú·=ÞñBè)þ8 « K;)?—+T‚3fª]s˜sŽãל]N6²…7ÓçêÛ[J1Å£e©EñöS`Çt§ú @a”&H„n#ˆMÖ·± ¡;µ‚WqóôÔp¨ÀµîÉéi˹Åx¤q6€ÿq Me¶È`Š©{¡ÕY´I|:‚IŸƒ{-À§gÉà:–UªŠ„W' uxg¯•34Xæð&3ìØZûéB­§³DmÕMšˆÄ/-: HÍžºP'sPì žeKGqâR©D?A2ÀßD‹ÑS–n”ÀQìÈÖØþSá´C¸àÇð§Â.’úó˜Ò«¼êŠ 8Mý„˜œøC¨jX|¿?t“¸|WµåÅ+Ô>xÕIû®Íš™êʤ­3´u=ÑÖ•/»S«ísú5‡ðãM½¦©˜ñúþçþÇþ,ä»GGoö¿U¢Éa ÈÃñ»ß‹ßìí¼ÚýöÅ^̺›CUìï¯ö_Ù­ý°÷æÇýÃ=ÓÖÞ›7oTƒûßÿ-¾~½÷ ÍòGû/÷âïÞ¼T=<Û½wصâÏâÃÞ¾x¿÷jïâ?ã·ªíàUJ$Ç‘n,j£^ÂÒÝ_âTîè7Ni–èÁd6‹a­öË›pz.g1xó¦H@xH™:ˆÔÇäì@8ȇ)ówúQ'ñÃ:0ÏþT±>²,Ë8žêr.“⦬´Q£{H}¡%ù8°_7ׄz*ÔÈIp¶} Īâß5mmq¼YåSw®K±Ó¤Z“]7A _[TõZ#êõó|ÜÔa«óÆßTì‚yEÃ_ñ|–»äª­åPq6~t34«UǾѺá{\jÎ…µ©ŽW˜H¯zÙ„‚¦’Ö q¯—õ¶ ®Ò]|Y_kÚjó2°ÝÍÀz¡Á©å±ÀŒ#®_ E΃"$RNvÂ"¯´…ž„ÁµðÐÑ΃7"lƒôC\?¤ƒž0Un+`uîvs¹““¨€)Tk¦R‘½ÖÿzýûvËkÿ ^½FDŠr#ùÉ@LbQܱØ0ŠD$ÿ¸.üR‰SÞýöÍÁÿî½ê=ß=ü¡wØc^6^µE´GýE«ªoÚ߯t‘ƒi®8hër¡úýwH¾•‹gŸ ·¦Ç ”Z]úòzujíwåV¨ﻉµ§žgÅT‰ì#PòI1Ͱö'µ8€b:zž§œ`ÔŒ;9F̵ÚÉ×/¦û-0i™ó^Þ~ù4è¬?¸Ù§Vu#_Åkj[Öâ4;ÈȆú.€2½M,ã,¢¡‰‹ j¯Jú›NWš¶·+yO‡gNîè4í~ådXÐu`Ó ‡'9ãÐõbnµu•4…A~6Q”'¡äÐ#õSE¾p:…º°¨*GGRÏ¡úËÂW×jAp‚U˜”„?ºÁΈm €AJ ÜF öÀcçÉIÂÓ]íŸÿÓp“`:/L­ì}VF r„*ÁâÕc1@õ4 8Ìq§øVÊNƒþÄ’[R–Í–¯&>CJB½ŽÙ¿ )ñbæ„£:Èg„R3”œAVsY†i¡% X×$Õµ{Ûxå+ÝŽU×I@v¢Ã¡ùy£#r÷󷼺ËôÔaÛÈ–sV@Ü:6§1ìÑLÛ^Ù@a[JØÑ¬J-Ë_n¤Î¾^¿dµ½úr->òú;–¦\ѳwœ­ÇBÖ`+)ËŠ{WxgùÆj’p·cÉ€å2–îf§¤ûùdûë`+_Q@‘V¹rË@†‰¶ñCÊ êÄ Ã—v®Ü9Ð×Âi?X5ר£ª¥‹rü„‹dn_…1+± Æ«Öp€¸ôv{y¾÷÷½¯{Ï÷ö/ã}ºîù»¬~µ+p®œˆä(èXŹXG•¡\:÷´5‚qUS:ì^´ÚÔo7å%€Ë'ƒérÃŽã¾ó†•á´x®»0¿y]V™¾×íÎ æ9·Eµè Úo"ÌæTuv(ʤ€Ôê¡ÎFˆž«ñÞ¼¢µ]†‹¼€ef<´Â€+(l B©¦¦”lÇn“rêõŒôaJ÷êµ;=WcŽ#ôT:8£ß±«WŬYÎvô›LváØ@²U4a(>M¸˜ƒo28¸§ÿ=ÛÕF_uÏç×m…s3+¶¿JAbYÜjÆ€Ÿ¨*DjdiÎv"¨n:,°‡´F­šfÊ𬫫gôì¢òBªÞ§˜©¹¿@‚§&9ÊC‡Åöê…cµ7!¹L_ÅT¯W-ÍtÀÐqܽڵ{/вKOgÈý¸‹ój®½†ë|O1µÃY> –{EwíÆ®fpŸÚñûê°: µ&xüþ¼+¬¨On<‰¥Ã4³Ô³j¸ýnroc¸7[a¾<Á¶7â¶7§å µêÏÀJ[jŸ•ÍÒ3Øì‚î(sE塆/¤'á#Ò¤ÎÂ/K«FLBÓÆ”^?—vÑ·ðÆÁÀÇ©7[/)ÔH ØøN#æ”þ;[%ÿ’‰ñ÷¸7€²€ߣ²²ªk ‡Ô ?׫óìh¦25ϽfbD¡gÝ¡u±Ò ,ÙÐ{Ÿ«y_Ð*FŸ-aUd­·§Âí ð ªÐ<'&ѼǡLD%Í[hcë ˆ‡®¢ÚÛïIó¾n£õP—’ŤûµêVX ¿E©rüÊýáoj¨&±›«/oy­#ß}v“ܪXòeÍ’M¹+˜á*p¸ZUÌærzyS-‹¿¢µDµa!ºÁ•©án£Ú)sRãP:÷z)Çûôðˆ ¨Aýv0kQG^̱÷ÑÉ-˜ìr«¨( pʨ*Š|\}ÍBo{xíÇÂf¥J³®”¥‚ûÉZ4WÙïš*ÆPbÂÔ™×~õ—¯”°ÆTqwOß ¤Ï}!>þ&Þâ9¹g¨?¹ ªƒ0Þ )ê Ö<&‚>âùˆ¬­ÔàòeÅsVËs;jqJQC´nC!êø!L6l1•Õìf%ÕL>ÃÚ—°º/›ÆñÊßÑÉ.u>»Ý”OÐ Š?s’x+B)ÂX²VùÙ4ê JëW‘"Ý17¢ácÎþզû’²gœ¶£Z=`½8{ËuC Ót;¢{æžPï¹fMË®ºPÆÅ¤l 7¾â¥¥å„Ç÷õÍ”Yl—WAk›5#:KâFý%¤´øÅ‘€¨½›Ø0j  ÖÁžrFD®Ú¸(|ÌUÛÈÑtÚhÇ#{ ’IÊZWÉb.z¥ªe»ÒTölx+e*†zFÁ†ðXL¬=ýÙF7CÈÑ£šu¯FM*2Ý7ô´]m2DoŒf çõo;Átu+ ž\ÎüoàFJ³ízˆ5ÊZõ˜?]Лv}Ûwªµœ¿_åsLûÛR‡ÊÏTSΑwÃÅ®7ßrNù(W6Vé2ì“]öŠñ°½SzHž]ñbÄ1hÔùm†&wwÑëñ)‡¢¯*9¬J‚êž: iüƒ6²[5Xö’‹Û‡·Ðkkk,3Ä|¼ÌiƇ÷©;½ÖŽ&”^ØÕÃ{öšÜì!ƒ';ð’ˆÄáOÜ*ž kå‹ò*s !}_ö8å/‚!E §t¿^Ý'*²UZ=`’;{ÄéäR U!õW6ºÿúŸG?¼z½{ôÃN) ‚™ b3¸H©•Ä0¨°"¼Ú:—¦U#‚Ó‘ƒÒaHü®ÂH ‰.0™Y]aÞ¢%FÎ’è×4€šr,î͈‘!廑m¤f|õšV7•]%‚‹~“Iâ _{Î'_uì½j¼@>•Àæ*[«„š¡ª‡ï«T›_Áf#n ¸ÕÄœ•ó*E\g9@}%ƒ÷lûl°ë(dAWÌ ÒðÐi»ÒoX·’Aždókžl¶›..Çzè‹\%Ÿ˜×ϘÁ5<.¥ÄsX»°™¾D;ª”a#[V£’: ZõjMzì_8¡´z½n²4³N·]4o£úœÌ:(´@¡C³dåˆw÷×o;Z:Ý’¤8rfUcµ Þ¦‰ÇÁDÁÍ ¯00Š#/*T-ã`jõwko'釩"VŠ.0y[Ì»å¹Ew×𙕯òá2Ò’+=c'1ß7 g˜ ‘:ùš*Ûø0º®äÍd‚i«UŸ!³«‹{Z'N5%³ô§Bÿ¨…–oJ†Æ!Pª€…mVçh‚OÇ—ióXõæ“¡UômZ—¢¾°÷¶ÎsÛãcÁi{U…ù½Pþ/ïBŒ‡¥|ŸôK5mçë¾I®ì¿}çI*D#ý@Y>-ºØŽ‹PaL´Ý{»W.éxN–܆8t†˜8¬q˜W¶ší'þ-èÙÿš’8¯„k¼ph:™!ý}ņýÿÖBñ{¡ÞMâÖ1xÕ_9¹&²BC7raDç¨h´ÁpkšS«ÚkÞ@½XV%›7'C5Õ_0Æt·²Û¼ÅVãÝro¾ýÛQÝ£Ýø-§Ï{”ªÆÐIÇMô¦êpxQF!õ§(=[A½ºÝ™£v–ai`ŠVÐÖæp“h©å³"µz©)ý‡i“³V„ŽUå43´s;BdCº:ü{ûlÈÃjÁnèÐο¦l2òdˆ ]Ç#×wbñ-N¡WªÞ~re-£Ça?`¥QÛCsíeÿÆp-mˆ +´(LåoEÕ‘&¾:ÞQ`/µÊ 2ƒwå"-ŠäLÝ­û^üh–WŠï QI-.ÀŸ~ºË<Ÿ×áU<´õ¹:ïc§Ê¡zh“‹èóf(¢‘(ïXððYiÉJ§ÏTõƒÅ_å1·©ÑÕÀË/Ubà3Ìù{Q‡“| ¾"³\äùQœçW OâÕA3¿í• 9sTŒ.¥(FþžleË „Ôç6+j@±öóïdÆMiË|Ò°‡Òª±aMgù49#·Î²­STÉÂ2L8¼âÍZ£³N´Ý[¹ w«:_”àÎ9^TÍ;æöJ7±~EdpÌõfÿhÿÙî ŸÉ•ŽÕÕ,m™X›¾¨Ãu r™Ò<Ñ^ ùwS*ØLÚ!"Akû%ÒdC9[Üü½b­4¾ËtÖÏ‹l~]iQÑ%ÔrlÔØì–`úï’³jÁ)˜fqøV«Þ!èì˜/ƒIDŠõñ–ÀžÜ¡-ê놦{ÔWq§†Ütu?¡:‰b²dP C,fDÀ„üM0.º#AQ–>›³•ˆúnØÀ†q °ëšm6>SY -+øÊßÅÈ1áÇU"ÆUc™=Zæj@³âÕ0¥j3“¹•ìÜß.>ÎÍÀÕŽ½Lfª“øpnê¿6ž |ñ !hÆ­ßðß²®šhX³ó­Ÿ´"ÛJˆû ùpÃôƒ_5ïÆÝo Õæ‚í/aûh6‹BÈÅ+㥩«„Ùl2Í•‚샳} Í)·ì‡&ã‡=Á—Zžà^ufe¬÷” Í.„®…^?å÷BÓ"¾'vSåü›RºžPx‘6PŇFAÏÙÈê;F-à›RÊÊ IäYS§ÙÁP¹  +`<ÂbFé¯;ŒÇ5½v‰kY1#÷u1˜´ØÚŽ–EŠƒÑ½Ø:t'N£Ky¡NÄØJÓYpsÖH¢%V÷Wú@ä,A½À1ï$c7kKôMkzœa®»Öª=aÕ;…¯¥&¥4·ÎÖ aO.’i5š70©’4+Ü*5"(:›Š^t~ £%«[KßëüM­&6 ‰ƒFuªÀòÁÆM7Oµos¡ï.½Rm[à¬pCx+$àÝ$V¼Ø_ßMxiáŠ×zZ¬µ¡ÊÛ}›k÷ ƒ§xºUU’÷â&ƒJi›`Ü>~Ä­µVmjÕ‚¨¹É(õ‹PÀ«ž¬V®V#ëøQÁŸ4žÂ¼mÀºJŸä/ßR°œ,˜¯DÅ“c•p‘ W€+ Ú@Ä+ÃÞ!ºàjÈ‚_ieòt–]$³LMš"y3Åk§ÀŒÀ¦07¸¹‘‡ ¹¤¨)ä^k£¤ 5ÁkÌi“|?¡ÉÎÒ³t’ÎdTcƒuõŸœý†¼(ÙŒQF=¬Dü‚ø÷[EüûUY Uù±î(}@D:£oè1îŒEªç~j9Ÿs=ÕL&¹J&s7G.R ׇW–h|Ɖ€ŽÏRæeí¤<~qcžA€Cy½Ô‹aüx5~?³Iö£Œ$\.Ð…ÿMe$¢WO^x™/ƒÃ5f%ë'’ÐD§5U¥×ЦMÖâ)½JÍ|Â{ ð8ëÏ’Ùu ¾Ÿ0ÕqŽzßõ|˜û²¡>>n˜É ',’c,zÿÆ‘y473 @"‹¾è¾^£á)ìu鞆“øE*" æÍËõ¿–’f@ R«I’‘äOž\M.Ñ5îuïÇÝý£vb¢±ý–m»ñãœê^ä$T™âÝFIÇÖÓš*®’Ç‘ …í .gu‡÷RðBuâ6Ë¡¬¾AÄQ@,Ç8¿zúòÆ>ÅüFÁ•ª&&è}+³?à‹;)æS€ÿ”… KÍ´S©€ªHQyWS3ÚªÆp;•)%i>CZoSÓ©>ŸQ.'­ý0·³¿÷¯¨°zQ(ú“|]¥^[‰` l阢§»Ú!Ú>ëábqj$o¤þ‹AîC@»íR8fß®žJ.¢OI³Å°‘¶ÙMÝ[,ýyIÝêëQÆâuaì·[&T*‡³1*£€Þ(ýBP´ ëÔb†ö/˜YQô^1 "þlV¡¤bk†ó^’±zÏ®K)KdG }ð¢»V“êF"ŠËü© O^~îâëF©/EF¢4$0­Q¯ÍzcDZÉ"°&Ô°ñ{Óº\*f¬ Ãv<—Âóôb ò½¢íün3GÒ:ÛS%O[myU#£0eBeÊC$/ÏÔ÷( - FB¡á£‹Ö—V[µSr<΍°CûÀ,eCQQ¢UR²V°‘,IôÆ”«YÀ~ P…“;—.žßа*+l^Ò tUb_Õþjö”OKý)ý ‹ºJœŽp¨ã:Uý.‡´Zñxÿx¥ùEË4§zQ-Æ­2x©FÃV¶Àܾmr’匀h¦$ê+Hw Âh5ÁÕVE¦7ô ë9…,u˜ý¾õÔÓ.~ëÿ]õÂ}ϱÉâOAôüWõefŬAGÖè¾Åÿ¦×' 7¸»Ô<´¨m¯³äꆭÓSô’€!5Î-DÈc Âe†á{`8“5 ©R:B£ I›­R&@®dí[áíÛûôšƒJny¯òù>Ïðˆ¥CzaV ç@ Ó±ßðª-êªv‹ª~‰irŽƒÚ¯.r†ìK¯¢"|ÙÔµÁ«ÔöK6ÐÀ.µã³Y(‡[ àVƒ‚*Kq0©j$*»ÕÌåP×:A>„dìàëXÁv?®ÂÉ’¹Îܬ5‘¼µð ’·?ÕÛä5+·±zÝ“ÕÅêåÝÜÁ,O>V>†½:a)¸"Í¡n²>Õa É¥^@½{‰›E^=ÜU²š¹ÝLÖõV‡ƒá^!‡BîÛtƒ˜¸¥Áï|bu³Ø…ŸmÒÙÒ¥Úñ±›Iqº0*ô Å#,ÊÑÁÓh^ð ”•ùø²Ê¹w˜«n8°±”ýƒÖmÇ2‹ùʯ¬Ä…¼lƒ Ì/Ó(ú‚yò¢‹ìfÉpR²ôÐçõb`b+Ç4™sÒ*ÝNéºtV½¸§2KC}…b›,Ö&Zá|M y].gWô9¡Qæ.šóÓ PæÏKRíD“0›î5¸ »ñO°«çþJ5ˆ¬ÏKxïuʧµýÉn2«?‡>0,kñ½ØM‹m»S­”R湚<Ó‚(ÿF->pQ%៊V·&\ùte“©¹PÏJ$eYøu&«‰C«Ï²‘1¹ÃŸA'a'(«”½6²–¶ïÊ¿AD…à*gåľâC ªÕâ°Ö‹W¹&.ÐÃÏCEw´– KÞ ÑàŒN=’_:ô­ÐvH.!)Åb×+#دN+=ÌinNßL Ät#uxü2E€ÎÙ°-ª&ÛÒ†EXRð!9n–Š´ ƒ &ØÆŸÿ,p*ŒÓÃjc-ò/ÇE¡*Þ:i_n;ÞÌÚirLþ êµ&¿‚JƒûºFãR¿Ó4n<ȼ86I» ŸßK[ù¬[_ߦ)´ÑÇîz´œPB¿Í•ŒfÔ¹©¶œ*ÕØI9>º@6% ¨Qod V9› ã¼ÐMq€Ña“º!ƒCÙ=³ –(Ècz—Ò&äÕÐ} ˆBª*ûÂxGƒoVµ÷°dº ¡‚FóøÏ'ÿ9þ¿¿œÜÿ¥%6,ªVd 2òŠw’ÎÏ»mt¾Ž»½“j¼Ý‹d>8§:-åVy÷çÿxµîoûÍüâ¶CѦš¸ÉxÝÌ>è­‡;ϦüiQµñåà‹&]¥¶Ž7···¼¬BPe¾PK¡x¹ÑñÖvgSb{ÛVÐٚƃ‹•BO.Nšd|ÚºÅã†ö5ë·!)OÕQ®u~—ÌlYC×q>éÞ¼©{°”­š©þíWžêyù_ÁkrM³,îtšfëéî4 ˆ†¸ù”ë‘äm¦Æ'gK×× ã¨ÆÁy2KótV· 7šîæÝO—Ÿ®Ï;ÛP"JlǃHÒK19Ɇ…ô 7 uËb°X<˜Þ€Mи^(YWÔj­zð¦]V¹úI,ÙgH‹Ô\{#O°Î”W½œ¶o€“éíˆ÷`ª"ò¥Küu8¦m—×ð«üPË/—ô@£Þäg%ÑïCkÔæ\;Ì ì¨Ã݆…Ãâp!Õ'#¸Cü'/ê6q‹ 2ÙtЪà4–.¹«ìibA«0ìx9• ÷èzš²íІLMñÅ¢˜ƒÚˆ°XÀ‡úZÂ/!ÞÖÊ–4›; êðTuË¢Yâoýúᜳ¦‘ò™µBâG];,X¹§k¼|4u# ‡áÉqŵ[bR´têwÿDéœÀd1Œ(‰Áä<´TºvfCUòÄôŠîÀ%{$kLŒôåy ‡ô´„õe\qßõ-4HÃdKSeãèä? ®SlÀÔÅCeøt‡Ë] •Y£‡–GS‰¤:j®¸«³8£¬„)s½¯¦uPW¤T™\Æ\«k͸zÜ ƒÙSp…A¢Ñ°âÉÏkZ…Š[«ò7»dÚ­ÝLsE¨ÉkÁ$u–Ó-¹hB¾¨å¿\uü|r^vøSµ•ô6çÈ5eO™/Zs¯ÎÕnÚ0QŠô¯µÃF Wåç<½Ü¦Y“Ÿéìº×Ïó±«ì¶4N.>ý÷Ùe b«©ñ$†`§IFIPªXÍã}zÊ Ÿž¶áäŸAcm+梦tŒU|$1oTã^µÀíÁ»‹P>ÙB³z¬¹BÓ'ÿ¬‹Kp棬Y„;—¨±\ðKþPÞÉe:›ÓnÐøøe·uƒþf}üö„–¶fLè ¿žh×–Ê‘ÓØôºðËÕô¶yE¨.7êQƒÕè)Ý+,f®œœ=Ú*w_íí0A{Q$`¨“±¯ŠßÍßÍÞÞ]žÜ71½›œÜ¯NŒÕøÿÕ|÷­6ܲ »‰?W—k™™ ̫ΨU6(0ëõZÀ^b6)ö¼›pA4¸Ô”›ér³Úr#]nT[îR—»”r'|"Zä¨ãml¢¶ÏþŽqvêgš-ËhÔŽ7é´hJ}únî£Î7mÉX£àªÅjÇU«Ù Öx7«¨2««4ª¨4ª«tYQé²®Ò¤¢Ò¤TÉú]ë{q &KëðŒs±*9íPa³µ]МúûíÈDB~lHIÚЀrµzšŠ+'¡xkûÄm×±WµÊÒtg <«»ˆÈGˆA0ÙØ)¯¼RZGÞšÕ²šjß+N€(Ú>&èa<³›„ùÎN±Ä¥ÆRÛAðÉ@~-<ºa†gãñåUN`8îéIH¬&ÏE½NÓ”4¶ö½˜QÜ74aÃ+PÄ7ÞÛ¤P¥Áß^•Kf×mzGߤƒÅ¬Pïäø‘4”Ð`XCH¬ã'§ô&ÝÈ~(%eš$ÿ ŽžJš¯àð.&âî¨Ë2ïBŠ~ p˜_a4ŒÒ wŸó/†Rõì‘aÜÒŽõ‘à3,:øµ"§±z›Çàã½€m c°8G=~®oX/+³qS6Ôºè›gMDÆiÊî*è¦P©å#ÈJ…ãmù­;C?ÓÆzƒ­´(ñX&6ç’ô‹ÐXÝA”h ƽ(.óRüÀ E Ö®Èç¥(Ñ×­nínº~ö˜­ñ:?îå í_ù»¥Ë&'IwZ2RÜ ,‡¿c¶B¾uV¤Öþ¢©ÆXå ±‰aš )ÇS"°¶ÉÔ¯j¹³D Ȳrrƒ•’XÉ FÓæhªïji è/ûv"P}Ñoé°×¿¶òÕS!jˆQÁünp¡Øª=­Ìð„²¡ žhô[+PK¦¨™;ýk] úÚ±P …»Ë&ÞE²”O~é4Á³f&‹J?¬l¦í½+ÕïÓR¬™~yY¶£òBòo¥hÏÔLÌzÎ¥4EÖ>ênš¹ï¥‘XÏl3••s8ˆ¥ìC«¬-µH?ýÁ­Þ‡4¢ž+*Ùï¤â·×b÷ܨt:K¨EŠãÃy>hzÈæžm®vUp4aœíÒÄx^õ&¦›.cä9hØø(;›ä³ÔN& “ô cr¬ã'ršØ¯p¸ØBc¢ªºönÂxŒÍËM[ÝÔŠ”.ëå–]@=¥<„²ÑRµï›:­•é,]™ÎÝ­Lç–+Ó4KS,»4~ —›ö¢Dar{)4Ý]³†­ŠE¤Ã½©-[Îõ(6«Ñªé åJx|ïpk;ĺÂ7›žÝyÓfK œù:ÓÔÝ}·E«’=™¡LÆËp#ô‘ã+tÜ ÇŸh½Wc›¹Q7üÄO Ãɸÿ`@Æ”² VI7"—(Y- Q_¡=E;Úñ¼§#ï=D› ®$»ÇxKˆ Ö7ÔŸLkª…  ´,ó~wÞïf 0ßyÌJí~ì†æx¶^' ò¬ã¨©qEçšûôBB8/…âÃs¢ñ# yÛ¹:ãM ž¤ì{2 ùÈt‡Ç'Tq¼¹}R‚ærc ¨‡òäR.û’ƒŸŒRM2”"’»f)¤Ž¢Öznl¬Ùdž*ödL½XÔÉí£”å6ÎJšŸ¥ÃxHx•IÜ_œ!K¡ÒÏRÄF'Ÿþ~ŠYÎ 0ÜCãl霢j±{‹ |'Œ²™¾µ¥ @^„@Xµs7©Eòni\‘Ñ•X| ÑŽn’ZU¾× }O©ÉšøK2׿¥žªŒi`E[ê0ŠîR¬~6û˜L•2µ¹ÿVkú/ìíRHPÚåw‘àÚ@Ð2±íZ,Ó´ïµ"Ò‹7¯Žö¶ã]¬‚¸H0„X· /BuÔbÁì‚Ðÿ´©­Ñ7øªêdÁqZ«7;óYüIm[­‰U»Ÿž'—Y>ëª1ãì-˜œáB¼…?¶ªZ’œÄÇIi=Hý%¨Dú‘ßùŠQ®Å{w:çéxÊVû׸TsOb À•DÃ~‡½áâý 8„¸KY=Ôúéô jÍqª ûœHîBM5çûyvè¼ÐêOÜêóô.[Ä–v…{8ĤF×P““ù#`nàÔ"…†}ÆAh›*·€E)Kƒ®w£³5 TS6M88ŠCÒ­äº8äy\äƒ÷é¼Ó€XÌò¨©@ÌHm Ü7Oú­,e®1Ï h”áR©œ# ¢5£ Ê¥ª)•EVÿ—É8%lOèÜ´È&0Û Ï€7Žz8pz˜ä“ÎÝõ‚~V PG_"ÙHÝ qÑ96¯=ŒH€÷Ù7 Eû¡˜HÌý±&„¢²°MŠ&=q'H·Ÿ.#àšÆñ€=Š7“‡bIYÖ´6}Á× úå¿ÃÀ{)ŸNü¢Ã«“Ë$cþGB*Us-Ô²™Ááóôª´Ûw4yÙêÀìÝ9²"þ}ÄrŠ;#7E¢û•™Y£`fÔŸÞsšÞsÀÙ%^^…}À>²Y¢-Ð®Š¸äŠü_ä3xIŸW½¿Ä€ÂhÑ¡7™¡ŽP¯ &\Ã3©äh1&.ê¬6ôæj_.xp¬{>üi‘ŽÕqà”ßEœôaqH÷ãÔ(UcÛŸåïÕh;‡Ä?ˆjÕô®yTN Ò9uq¶u@Ý©²Ó[£ï“zxóK¸Nîu¾ƒ‚åÊ©gTÑ}tc‚nYƒl;”””é™&4íÀ#«?†4rk¾ü´ ©¶e†´?zFï)½|œbL]X°<ÉØ6„ÅKGd’Ç¥wW‰Ýá̉:âû… Ì/ðõ(¿KŒ¦¬º9öö*Õ®$0}Γ7£ ''‰†iì¯ò9ßuRé¨!ϳäAµ6  =O‘£†`#jS`“­¬0{ý¥ù‚§ÌHɰëTˆ/F=6^ÂêvÌ´ô7qŸ€OÜ”^XFÞ¾„†&$ã\MnÆØi!“©§“AƬ…æÿhå”^  ;öA´žýò‹ßF/nÀvÆ ‡ÅJpø=”Rw ð· XX³i_ë$w§­ìŒÝœ4œ7‚Žq6—³+ˆ!VM·K‹­á#¨Èê<æ0;6‚j5¡—f«»C+ AÍ™pôR°o¢—RX2ÕÀ°ôÈcuäÌ›÷'a"âÔLf³drF£ ì²¶Y!ä‹7 â ¥¬£æ W}Œ¾˜eL9|¹ Ž&|CªâÿÇÙ{5Mxyzj;[óš"ÑÓ'κÄ0RŸÎÐçh£¢©éô#Ò4-‹¾èÃßãÜ>PC•FlE©D"ôvëÔˆy“ßŬP‚ùµþt¨ºñîxlðàþ©0Üß‘ÈÕxzžôSEpàì™OÔs¦åM¸•ïÓë=5Ó$›ùíÑ.ÐÆ¸íµíë +œÏ²3|(ð/j²©9xõ5Ý냗¯ßí=§4íøùÞw»o_ÉŸåL-µ8 ¹¡òΦãšEòœ«èØ`MÊ…ZoÄO·½°ÕõÂ,%cΠSî†ïŽíаo, œvÉ OQ!*27±“㲄íNªÓÛ Ÿâe+q½!8NRŹ  <ããPKõ¿ã™ýsô:Qû×Ë«0nM±iI«Eªo‰z@/™îò§óßæ“WÏw‹FE¤¡Œè²*¤P/íƒxs# Glèf~ZÚLg•f~¬h¦¼‹N*¢ŠÖÞV´æï{9m ±¼¢1Ñ^±ŽÔI[Ý` ~%ýMkY7Ù »¥/ígr›~H޹Ál^}\/«NæyE7rW9,EE7¿¢Éª¨#& åX.ëfGåKº½‰7:n6¸ê!P |Ú£6TáÕÛ×}ôpöƒFuŒ×´:Ê¥Ðùô±XL$·kÕ¬n?UdrõNqKR ?dKÃv öZ[HtåA¤EœW,b0ŠOɺ/JƒlM­"°¢¶öS²"·s`‚Ò 17¤Õo]Né¥ýJøïD s³l`w>|Ì%¢’0X‚X‘Æ¡€'ub Ý*nðÞPTŠ`êMd0(+[V\¸É?K¸Úw>–ž|TI7nFü´ÖzñiVË5œ7v‚Ÿ­¾Üä¼jk~댉}sÇŽxh œrÌÂQD¤xrÃòv£"ö¿ÕPê(ª{0¸¾XçÛººü-aøg­Ç ä|‚tˆ |AcÚH$Òðæ–Z…GKÚ•Iz1™¥DèÃogC¹IR/‚žtJ”qŸ¾’NßkSªa¾‰7ÐÄx‰,û˜õñ!PJÀyNТA•ÆÓÜâó¼må8´°ÝU›Ï'ݸ½ÀKªiÃ92y¬ìëR1ù³¹JcmËßM‹A2M›«áûæà÷^õžïþ ýq÷Í«ýWß[`½à`ý# ¥UÚš’Sp˜£Ñåm²æë´ô-ã¸é¾‚¢¨L|!$0Ñ 1äÙAçZ¿¾ÎX ¿€Ú¤áz\6Düõ>÷ø¹ôº…·ž ùM˜¹éqFe ðÒ«ia|~Ë¿6-ÆÀ-…'q€¶/]xc—g©Zù̲‘K1JæV¢åuOÉÅP¯lr˜â_ÈeÄÞGW‘°çˆ÷|N‡ý¶ZÌdBHŒOã‘E.Ss]¾K)R`ó¾ôV~µÊ®ï&‡œó†±ô}R_tÁÀÐ#CSÚ?ÞZ)…d’vÜ †G¬‚Y -ȨªV”Ì"Ï僕›Xê-PÁÐ="OŸÖ äŠÒ’Wù™´*8Ó[lsÉ·% €›8A–ZÏVNÈÍÆ:Úæí­õÂ5·Úñ#^P!Íb¸H‡MHI€mà >¢ üÕÇýà6šUpúòïNþY®³Ù}ÜÝZ/fƒõŸëòé:©]çæ·îcCý{²±?7Ÿ>ÆŸ›áOõïá“Í'ÚÜ|ôøÑã‡Ož<~ü'Uêé㇊7>Ç,à݈ã?%ÿ^LÎjË©óøÇÛÿ·h–µÒØ–iëþ‹hg¥QôóÀ<õç¨ëG†I†.êÂ< "d -X*<¿þ?ÑðרUŸ_¯RR -Ý+Z%ÚÑu¾DlÏ©d^­´Œ´c×2‚CI'‘ž°_¥|h™˜tR´f–m#”ç/’Ùšäì PÔZj`öÚ÷¡Ejî0#œK\ü´PòÆu‡€nL*òa…ÀRˆ7È ^›r"îíHä~1å9tlS¸ÄdžB§þ8þ–‹™õ‘ÜsVEØlÈŽ^€¡V͇lW‘eíôÌ‹´¢Ãaa­¿O š-Žƒ—7.//øzÐAö·lAn]‘…ŽoóÚÈãI[d„“Z«Œ­³2S^ìšÙyäzh/R°íóü}œÌ#tŠ@ONùð·¿ý-¦T¡ ðÞcÆ > K1»¦³á«ÓívãçÞ†ßÑ~o˜¤¬š½÷º ¥-ÄHëFƒâ¾¸EÅ Ì-@Ajâ‹i:‹ÊV1B‹i6l9Ëѵ­úÙ<ª¼µzmÀUHv5C¢4`ãöÎB¡„qÞLߢLÓ…‹@S0~fIÿD>–Z0xРÁ°Lú+u«°èÛñƒWo^î¾Øÿ×^ïÇöö_ï>ÛÂìX|Û”ŒKíž5£è Ÿ‚(„>1g9®]#ìÛsW] cvÕ¤±jqö^¼Ø}¸(&ðrÚEsJ»Ò‚Ƹh6  >o˜7¯³ÑUÿ×™^o)þDuEæ,©9ƒ•Y\K¬»I(CÆã+ÍÁ‚ ø‹ #ÊŠ3C7 rôL~¾Ž·[«.L×Y‘›®Dw=°¿EþO<Üš¬çÿmÿ‡jCÁ÷€"›_Gu|йÓÓÈé)¸»-Íe–ÑP¼¶éòž«[8N‹ˆ”–ŠàÉ” ÃÀe’¦C¶x$±Í·4Óy7ÚŸë ®ÏÏ/9¡Áˆît›½éS¶çl©¡g@Œò}"1®ñËç©H±¸èÂ[É÷^Q©ŽŽ^«¿f€ÀZ!•¢fW ¹¤JÊL%¢Z’`i~1Eæ€ècznE†°Šƒ)6Ïáò‚ºP¨¡ê0W‹’~˜w¹"WYÌÆ¶”̾>²ÃÇ?NÆŠw%>t¤^¶s‹è¢U ¯záêƒËlsTð÷4>#ò/_ü<¹LÉ» ™[µ²‹©ø°¥Yæ$û.~–‡¨3QñóòGXÄÿÐZLõ˜›è¹uü$ªÂ<Qgù?dØ'¹®Œi<®ÚÁ›G¾` ›gˆ›(ÃF¿û¼xBQ–H惥-×CûOo&ö8ZˆÿeÃY•D»}ªB™’4ðp.E˜‘LDû9½}ó]¿&‘Œ¿ïâ?´Cº”=Ü÷S@<´°-v|„uáÀk1g`Á­ðA³É0ß øŠÎõp^t‘òåÃ9{ÃÅÌq´ oB%h޹Uô5´×*Fëêé×ïmødõ“9ƒ .-xE¹PB" ¸d –.2¦c5sµ )wOžyÞQáÑøöù‹%צ¡KEåÅD‘Ñ‚AÓ·P/"„ÛS#?’à¯ËÎø‰UÁ Áظi‰dôÓs)XÈp!d~DïÜÙ5.‘â½–Y18GÐg´Ív>X”ÌX­Êmƒi#¼¿“|Þ•TS˜~™Á{Åú­×5¾ *c)p•+Þ¾¹åüëh=l2õ´ ƒ´´oêôÎIT»æ[Gï¯Õ¹sòtõL9õzè]Q[×l¬ÛѺyrÐA‹Þ àÔñí@x>•Üϧz9é M‡ö¢#¥4‚qÖ—cv1|l-k¼Ÿ²,†åU) NÑêTC•›_Ú6vSùàCÂk÷<ý ¸­ò)WgÕW w­X‡¸–»=[AÜ¼È Là®à@²•ÔS@Þßg̳ðâÙlL|‘„^i³fóù|º½¾Ž'êM'öâQ$zOðKè7Ç€•pÄä™ãAèXùEz…w£T+`¯Xýˆ†öoÕM[~¸o;ŒÏ¹w°°´¬«å¬˜šz`¾#£P[dlM‚ô{KŠ ýª l§l´ÅeËÆ'§ç2]Òh‡¾•·ño&&êÅ-1h›…„ù²7´u·Æ O´}×ÉMUí¥¼Bz5…™r£…(0„eðür|—wäm6Ž)‰DVâRвÒ!ÓæØíXã¬ëqTfĺØ+±vÀ.ÆŒïgBŸçç¤EV ¤H(ÁÊœžF…šñ¯U1‡ÿBp ¯lÎj¯ºdUí ÓLY@¸]ƒrï<åU|Ü*H¾¤BsÈnƒx«A¬FÍ*‡t¹or$L¼Eq» TÒva ,w´n¯Rð>a_j£ªWÜ ˆpcø*âW”‘A—œ{üïIfÝms=ŠIgMáÿÏúÇ\£'÷µµ ®c'sÐH„NÁ¬Å4‘F4ÊfÅÜbwº¨)öº‘ƒX#Y’ 1µâØrÓ! B¼Šã¢i¯Älj%ÞrqÁÛQ>XΔ©-ö/9K2 B´geB É*08S[¤ÛÈ'¬×& XÔR<œ¼Kµ!ÞËû«®( ®R£Ëö8$bŒŒÐµÇÀ];ç"/­5Äeã6äܪià›½½ »ùÙ¹¼&D~žàëkäj»аŸ`'‰ê&†à¡Ú‚‚ÛÏ™¦‘ !9×{¦ýãk£¹DƪçHì¾F}GßßÙÉÅæÖ?Åù•,–rAVJ«mO?1ÊКÑ{ÉvàY×xxý³’¤ylST!ÓZteÈw•é$¿Á|c¼ÛìÑ[iTÿÐl¬»FXŽH™»¹ þc‹û,€m¬Â:^$;Âb,L C6²_ϡ᪳T:àó^.7øÎUó´/¡RÇÏ !ü7DŽ o L ©ç3ðryRŠÝA±s4 þYfu03nv›?Î@²”÷¼­¸Ð¦Ч¨VYvçÊó¿™ ô)òC~ì_Û9'Š–—89@àÓŒŽAÕ)ÿ 0-+ªÅ§Ñ•µÊeŒÜ.0³Wd(…È„B€§ã7°P®";J\Ѭ¬™‰¯Ó9¯¦w¤ñ˜È6Œ¶¨G‘É;Q!Ù’ÒvTbØœ>#kЉcOf‘Ëž¶¢HdÔF`Hs™D;66tP$vä¿•ÿE`oVWÜ}H•2¡År‡¾¥?åÚµÇåU{ü>M§¨‡éÙ,EÁ¥ý®‹EcÙ#‹#gyhDègàZàÜH©¹z´üõC×DPäƒo„T™µ.ºña’ª¦§Éud ü€Säay—lZ1ÂNrAP=i䮓ȉdœ6` L1k¨wH“áªÏ¤®¿#>w7R/@R…‡Oâ5°:dìfw:s%-R°¾ª•ç:…öó õÌ0jf f°“)¯d6¿Cf`ÂLI‘tXûC’¦e6¯Êí´¬-öƒIN$TPàa)¹¹/s²˜(˜eÕªˆ#£f@«äŒ•äS°Ð‹~ˆíÞ(.NÈj<Œ` ~ðåW‹‘xL:ΡÁ¦–·×mP%ÿ}¾#6üæça‰@‰/äHÌÞYÊôÝNh£w#¡œ|MØsAnŒàÌ›r»WCˆ$:¯Š:Á˜˜òz¢vu‚i 8’‘Ùv¶ºñ óv‘\ ‡…nNǯ‘z_”¸\`Âóª8]vÌb¯b9Õ"¦âßuIº:Wi"¨¸ø–© 9Šà°â™#éðU‰üª€Û+0M3ÍÇûðŒ*>ŒΚ3{!•¢bªhñÔä#‹¨ÜÚUß ?7ÕÝ_œ¯GŸ~ýp46Ÿn>yºõtôtkøèëÇ›_žüå/Ãé¤Í·/mÉ(eU‹„ƒi"ÆãD¦ª%U<0lÃ_ÙPÇ øN‰–Œ#Í0“ÔwÞ=,Eê5ò1DP8^ÕÓ™@PÁ!ÄóT݆Ìæ“Á|NzzJnã¦;w¹—AšÓÃÔ­ôS@kÒþƒ€Ü– ãd†-Zj=tp+gÖlAL¶Í>ƒ ÜtG‘ÚìsÖƒ—ï¡Qzýcž†¦sdqK†ìÀp×'á¤ì’×ft2¾ê‰:•× xã"HK#V˜j›õ-…oƒ w9d4€iãÅd˜Î%1ôfƒ­ÔÀn•nÿã‡OûO†On=y:úËèÑ£GOÿåÉ×ù:ýeðèé†ñ±Â Ø„QÔáß«žMod5'tµm—[­È;t7?xé:„Ö[ÃDo]k :3Èæˆ)¤-ì`vg5[í¡Ös¡…Ðz†Ú(Æ}Xæù5 0Iç;04ºhšè'GÁ!S3F>yžR|Òܬ@iŠß_r.,Yï™}ª˜ 4§ê. hHÆlÃŽÔ…±/”÷(–¬úÈ:y!olèÝ-ñT®–ò®Ì§!͘\„2§ºªÊØæ†èíóK9,›LebÖóÄ7 Bíg<ìŒKpxŠŸÚ­ñ–‹~cñ0»ÈÆ$·¹:u^Tt’¼Jåó/Ρpc¼Jó<ò¼>æ†ôቖ*P/<¸ÞtþáÛä-¼ßò¯à4 •ÆÕl†O×"7‘cyU[ÊG›XÇ8D–ñcí INT=4]ƒ‡)‹+!'¤:»Jùq¬"nIß»Ùò+Ón~Wn¬Ù[Ж¢ð‡Êk›€D†€L¯Uä¤  ©Ñéž§+3šËŒ)¿/åýŠ[=ã¯*´ŠÎ˜Ÿëy5Î!ÀJWA›§ÔÍ&š_¡Fº”!Å.ä:ƒ|‚ý½^ôŽ_dƒtR¤mÕÐ߉Ç[ݸù¯×/ZŠCßuLäêC!PÉŒÆà³Š!Ûq F{ôÃþa|xðÝÑ»oöbõûë7ß¾÷<^Û=T¯Å»¯ž«ÿý“~¾xïýãõ›½ÃÃøàM¼ÿòõ‹ý½çªUûÍî«£ý½ÃÚy¾øìÅîþ˽çíxÿÕ³oŸï¿ú¾ûö(~up¿Ø¹¤º8:h«ì…Û9ø.>Ú?z±×Ž_î½yöƒút÷ÛýûGÿlÇ»ßïî¿:ìL¯ï5mj1f•#ð!õ8nV–†\KŒvÓù~Ç-qÒa̳‰byŸ›°ûΡ²’$î„ÎhrhJí@'¦[îPw2üÙh4ÞUãt—ù|´ka!X󺈪À†µ¤!)Ù'—r rUlr™ÍdêNo¼þçѯ^ïý xOR*H~{M.º §lûK)Îüò¹_î¨ÿYxÄ_Q.T'X‹®uäȦ:ø„ß§`adç" Ý9ÈZÑ£èE@–lWå}$/«~ŠºK†¤Æ”è‡ GwLj Š ÆÇç LÄÔ‰ïZ›%3‘x{Õ]Xáâ¸Aw¿qÒl¸Å­P}JW¨x⢋^.(w¸Õ:c)«»?ŒySÝùšÒ7 6òï¸aöHŽ7"÷h®JgtV³Ò™¥‰ %qï^‘ŒÔï¶éAû«z¥žÀò™ö—ѺXÍõÁѦ3Ð!ì4¦×Ö>Qþ9@· Žß©)^&NKÎ…Ýèä‡2äzw×ÝÛÕ/rÛOž€®a û)‘r”(±nÈ`E-¦°¬ºV®¥fG!›Î4­r¨ðQÇK2]Ù Ûͪšù;ò 2%]x{VÁ&q=KŸÝ¯_;/í)=C÷j½?¡ÇF>8Lço¹0–-¿aóJ†Ã#{ÀG[eíq[œÙYK ‘NmUÐ8ëÝâ cµÏ䙑ì>ÏGêç!‰L’5Õ\¶ÕY2ýÈNÝ"q!S°Œf;gÚ}³÷ÊüÕ8’ÔÌöÈÈ÷<žô†fb²e@¥Hí¦}ÌÞ·S+^f‰ëª ÇÅ6dšLšÆçf z—‡B¼9bŒ™¦æ*Ù4… *#ýÓwe`þ< ð·jŒÿÁИÞ`©mGq‚y {+¬×kÞOZÛ&“•]D$-Àl¹-Xy—›R f­š-ç›Åt˱#í{é*ç»JJ;KÅÒtÓäBµ+º™Æ¦úczÝ#¸jš¸kOMÊ%m÷{iç? ‹Œ5¶Qí…ÙÈÔ©í7ÜÎ/~C­U§þfo÷ùË=ø­±2=ïËÇ€ÒSëu(ýg ÇQ;™ßعÝú½ŸÛ­_ýÜþ&N$Âü½Õ®ˆ<<…–Sh³·UN6úð&K™ý‘hÂFynö2£T£ïá‹{údšfTaÓ¯ÇN ;jw«d2T,X‡ˆ2a´$ Àîí' ½ñPÛ“”§nkYVî¾ç¤»ÎË ï)5ÿ÷ §QÆ[ô÷>ÝŒþÌó.ËÒ|§öˆÒcNPN„콘I]L„‰¡—ÀŠEn6ªù+ì =ÜŽqšig³¼½ú+Ó .ÙN¬ ǬrÚên}ŠãñäUº²Óñè1é…‡5U´•M Í…½9æÍTÙó|ÌW:›Ÿ$­õdu§{ggÓ?à›ô÷ÛI8âuÇ~3ŠÞX©§Œp3á<³6š+ä‹VSDYLг ”I¢¤ï°˜Ä’‡o} aÌ Y»Q¾x+¤úÑù‘¤îNܹ¬%×Ö²8KÛÖ;ñBÿHH FyÉvÄÁMÈñã–Æ‰ƒ:×ÙG$"…Z¹”˽Î8Ü~awâî“Ò¨-RwÃ.MEÝ]ú­Û$¤Ÿ‚:¯ÖÂNÉ%d1H~`,îÍS¼+„ $fò™ 0Ü#‰ÉŸòÚmó¨´PL½‰D££¾‚ìm ¡Ô¢ ÐãP0˜³¨z<¼†xþydçhRÒ¬ïEøg´[õÐñòÇú¿õ /=¾†ÞŠè¥î­ãj?'ÎØ—£ô3„†ÓÒŽ(ÈŽh£×Ž•Æ±T™I]¤Ãc4þIÙ1ß,¸ýj¥“t&Éã–2Ó8 „$²\3Sœ]À]¯ŽU]fƒüÈúMÿ/ž·°uÀýÿÆ£MOÿ¿ùðñã/úÿÏ—ÿÍGÔ‹ª´ú¯8ÜVBr0ápjWäõÁ{’íüè¡WDäMÕ6Ñ~¡È[IæF&®ÛÇåNLºö ½füø c×Yg=l~ävÕ°³…­y¡œJk‹8OðèÜõãª)àCo Õ ËH EÅÜ´Ü ZÍ ´x Ád}¦ø Zo*ø Æ;;æiåç’¢ ”À+ ÃÉ Ø^„óèÞ.É Odåt™`@°gF«úÍùübü·oúùðúoôAŸÏÒÑÎZ?;coÈML±úæµö·àÇ߬'ª™×B¨ú ënên­X÷a îÃë>„Fí|Z]_;†ntΦTÛýl…º›º›+ÖÝ„jó§áúé‡9NrSM«z„k¡‡ÓúÚßèg¸ ú”ÀÄí |èÖ^ÇùÍ:OüHát‚g}œŸaD*I…öe!à/Ô92Pn£ˆÏr*mÝ ïFóþƒŒõò°ó#íwTãÛû,Í*7ñ‡ò´Nßµ ÒßZÔð!p7:ºn>…û‰L ùآɛü2Á¤ ÔËSÀïøØ“—­m½DLŒöÁG­Yu2²ãu•\‹ÌEÑA [¡ž#36ž c”ƒÙ…|º¢‘JkÍ¡¬C¯(‚¢…ª8ø°îìb>K,ù¶@Ç»ŸÀ×ÓeºoàE>rmK ,2ûÔS(ßÕàg^¼W©4þ“Æõ;Û89¦A“˜¢ì­Æÿ`@­Ò£w#W¿5Z}faONïV±Vª¤ ˆI“™a™"n:3ô%ñaÉ{%áÍJ‚S z éÕÅýO†0fÆôÛ˜¸I{׸j´ä%n6ærÑv¨¢;8¿È‡ÒÎÆ£Ör×È/®½4×ÞÿGÊ»wŒÜ¬v–¨£@ÑïŠÿÃ(èàþ–ò[yø?›OŸ>ùÂÿ}–»êã&OE†‹*ø¾o!~ ¢“fL3]ØJ¬þ× w?¡ìý››ËÅ'(¶ú¶a…”½­cgªÒÜz%†±õ.ª6ž þRnÃñò;;Ã%b‡>âlIQ7ÍÇÙàš?"˜5ûÍ#OÇ{¿ž!Þ`q’ò\:9©—(‡*8W•þ¥Ž“(Œ0ý0í/È”s‘ƒÖ2˜ ¶•ض|zåáû¸PCRÜñëbGHÐÒ1c­Ræ)¢´³yn%‰ä7çœÆÿ«OžŒ«ú¤gv‰Þ^² ­ ƒ¢·Qȇ«Ë3¬¹<ÃOxyþ‹õ?èXèŧ‰ÿÞxúxkËÃÿÛÜØÜúòþž÷_ínŒÛëâ¨LØqÇ*Ú.]ĸÇМ§Ö:£„"%ýl8L'‘*¶“mÇOOñ}:=ÑàºÇí]¤ópW»’ÓS'‘•̉$ätŸ HaNˆ­ÄˆlH9#Zœ,¯1ô|†ï+áS‰z€ÝÇNÉ7÷N÷s@}! ² ÄF6G?0ÌÑÒ BããHk’Ju\ÂS;@à4j‚™Òù,¶ÀýŸöZÖ›-Ñý F ¡IY ¨ÓV£;£DëÑ•Ú×Z¿B‚Êï,}nw»£ÁJî[¨NjþLE [Æ÷Íøñヷ˜y.l ? ì¿ä­Ëð^äV%:|Ô¯{<Ü.…{—qãqVô‚zjx¸>h¾¾Jû@1-Ñëë×ûJ9JH¡°]ÒÌ”÷ñv|­Œx'Ö»UÏó–ï¦,)­ùWôƼî¶Ó3¼å¡™­a±’½h+Ê%j»€˜ÍÁÑx.‘NÖá@ 1g‘Ã*¤j•ÜsZÆí€)ÒÜgE^€£øä†Nk|ÿþýo_<ûß½çê7xÐ:ká†~"jpZ\NÔÚžÒs+ —1(ìT,ĬN/ ¾ò5°ÚLJs®$Ït(ïi†æÿøGÜ©êÒMWv‹W·õ;¸¸ÿ·ù?4âV÷þ—[û_{kÁt ¥²¢X¤¥dUVp~~÷›70¦˜pX‘B-I¡&0N“Áù4v'é|Ýâéרï×·~½µ¹õé5<ÿ;ôeMž«CùçÿÐÇÛdæ/åCO…üc¿S­–±-¿ ËéFCäVŸ[öÉAÏ;I{hbBˆFÉDÁOðM\e´I̯eÍ ¢*õ~àbŸÅ´ÛqÒKÉ•É q–Ï!îX‘û»söÌÓ|äÄûzë{x‡zx‡îwIË «í)–„¾ ¿•η#¾œŠ¦u?P`í38Wdç}I ¢û›^ÿõ<íüåéïÿ?³MõËÖÓ§ÿŸÙ}E4ýÎÀr³¤+ë¶66Ôï®þ2@|ÑÿüQò?|ýÛËÿ°ù%ÿÃo ÿÃÚÚÚ·~ $@£ÌJ¾¨˜®;½Réø%g Â?iæŽÊ“öϪª0Hµ€ŒrB¿ºôŠB ý{PpX¥¹§vhš)ÚzN뎷Ÿ÷ÿfbgÓ¹Þ¡ÚDý¶OU³˜ ' Á­Õ)¤e /JuŸÒ 8[¯iUبì•΢ZÕ!·ÛK{æéSA³¸Q_ &2Â>éƒ ÷¥ „;DÈ+V_ªúöËâ6u©žmüÏÛýÖ¿¢Ö§wï6h 'ž 7v­S ïã߇—Á%Õå"JÓÒV¿ð&«Y‘RR_7‡ÙÀè¨.5¨ˆ¾©ímgçÔî¯ù†ª±³Úye½EøÌ:7OS=ûĬÐA¢Píª³¯úÔð‰†—4]NRrÈï*AoÀålh¨>÷ȸï¨6Ôœ{/mÄm®×žZÉÈ=«$Š6ÜZ%fôcºØ)µšˆª¦¶•ÎE>ú€Æ¾I}’ÅgÉÇ=mèlÙ9‹w´÷ÒVµ7ˈL–M üË‘%ñ¥ìU¶|cû6©¹rÓ­µñl>;û;_Š¥cq–/_î†9R¾{žïF!£i‰;guÿ\0?boN’ÝóÍÀN-J¦ò~í2iå;Y ›úÐ1ÍÜmšQÕw[áSiÔ%Fêë&+‰ÝU¶OŠ5ÚE_Ÿawÿܾˆ?’ó8ŸÖqkÒüetßÐþÕé¾M¾4±»}Zâ&åÍæi­§ì¦èËAëÕYH(›ÅÈà|2L lx?–0ŒN剒EpTdž“­Z©®ˆ:Ü|¥¥µ£ƒh‘ Î„Œ©ö Ö¨ k ¨´bìWL­¡E¯]k»sêÛ›µ{y‡)x½ü¹J!éP=Ń#q‚p@–?º«nå:ósSf«ŸÅc8JMé^ŒÇ¹JâÞH¡ŸÆ}Õ6zt™1îŽbÕ:E¾ØÐŠ3Ò7ÇcF-ëɶ׭ïÑy•äœö…Ò¿˜I'ÛÆpÖúö×_o=²RøÒ&§2îÒ©ŠÛ*^§"B‘E5+Þ^ÕcQÜ%üŸÝGðrçá.úÿ<Þ½óÿù,?Ê:rh§Ò,».F IÚ.¾:ÎŽŽýRL—«¥Òµ5ÔtŃøBTä£\銔±‘ZÜ%ýÝÎá.·žiëd3¼Œ†3âT¨¤{s –L"ÞÞ½ åºóY銪‹ÐXEùeûÿé v“_?t þÿΣÇEÿ¿­ÇßÿÏñóT¯®D[–1? êƒ ÷ünڋ笊4±_¥+'PÂŒmLÓ쩬Ë&1E_$h¥»ˆ.R–sâWID Ì/Ob?¬DË4#ö—b‘×oößö~«²©K²ÄQʈs…XIúÐy:#Ë„\ÏØ„Ò˜:%¶=I%‹ÃE[pª#Ugn©p{s -@cp20,¢6Ä:ÃQꤾ¤h;AËÛyÔhèÆ5¢“úŸgñ$Í´èÉäš8¹IXÌŽÛ‚îÉÏ9S} Éí­O-Ä Ð`)1"ÈßÊW«ªxB.cÍ95’·)Šá¼cIrLpr3Üì³—LÛ•ØÞÛ üß¼÷õ#EKûߊUª\ n¸½<,*\1(T•¼^H¨°¹VS·jê½a@¨5šBBïå׌ÿžÀÞ}×mú80™Û…Q`·ÖUlfiPW;X%Ðe¤½²~Aì–Úd×E¯]†Ö v9J§IßBùFJ‚A*Jÿnãþ ÔÂÚRІ*Pd31L*IÌ p­¯°¿~¹gz½`mFº³\qHñCËm& #´ú>3 >°o¹¥2³ý}d!1ë|2²±?é"ñ¨™ÃßÝ·¢‹RÐ¥D0 ¬®™ ¼`ëÄܨrSa uvé+­·€ñXÓúu› «|*+Ì¥QÑÉO†éeE¿Ö8½N˜¥'5ÀZ•­fYú²@*®ðD3€ ÕÁw…Þ›y2¦TT‰V6kaÛ1Ú §@ b\‘/ÕŒ¦&,0Ô\ÓçÞr«.TH…jïå_È}¶Vò6ï9—h¬t¯}a÷Ô‰¢[ÅM§.¬³t†c‘ûˆ}W myYzo/Úd)nâè<¢àzÞo½HŸëÍ€¯úRKÎÎ`³ÁT’nÚ»®Üß_õwË|l™‘½)5¯ æšsS§pÕ°vâ–ëlÿã”OÚ‰Ö²ã^4ƒ²Í&Ìɇ“ò²aïš…Í(+4>@ñ FÊ M‘r);bÿ Qg‚o.(4ø„ÌXIuÁ9Lò@iOÚ!CRUjKDIÂj‚Æ#Ðïq*Hç!Í‘ÆCN›þ°YÐ %çcx,Ÿµ”FD_âØíÌÂwjÆ ¿ -¨ÊÜô˜!8n¬ÐÚ~ÿ,ÖCý<—Ôõú—w†]Q˾Έ)ÎÝ|J ä.Ζ•K®0³ç¦DJåS~9©J5ÀhtWÈõ†pe¬ ZL£C?ø#µÉ©`tvF°9¸=ìð/9LP ׿ÌBVäS»ù%é sz·m8Xw‰€‹IÖŸ¸¼tÐíó µé©„Í¥3¢óÆÎ§Öd°ž'™Æ6£)~£Ãˆ¸Ñ®1P€z¨°Ôô¨X†…5dS1¡^Àþ΋(<€4a¦³¡¢¢˜$˜âRæQ ñ™¢iMªx¼Šrê~+ëйÖJîð­&U(çOÑ6ãôÉ$ZÈeJ–…š=꯺¶…P]œ—­jPþr?ÂÇ}:tÄ£±G„ …,‹‘ CÖ;XóPãmOj‚&2®dfïÈHf‰çŸ‹=îÛ®BUÞýˆ'ÙÌ-Ãæy{kûD¾ýWÉxg»Ö) ÚÊÆ×Ü:!´dÓMæF 3þòËjpd'y+ïm细] #™r®‰"‰Ð¥šžÕÅÚ´wôJ­p¢1]6þU”µÚ;=&¸½pæ/ÞþyÛÙ:µáh}$ß9$Žñx6¢CR§’[Ór‚ (êä—hµ|Ù%T£m`v@­ÃW¥5Õt$a7RùðÏáVÇ—®v\ÃÞ^bîu_8ÍUŸÅ¤¬Ã#¦X\ÐôßÖ¾}ýòoGݧûÇßuk§8‘ÿ¬ù:€ üÞ¶jþ,½Hñ@t=°°X­Jòñþ6,Œ÷¢Þ”÷÷¢Š·ìŠeÓ¨²%-†ÊNBqz0 µÑKljö5«J°@i#àCg'ÈŠpØüAŽñõ†o³¹MÐ!hTd!¬½Ž± ºí(Íó¥')p!Ót”ü+"A]¶B~•h[£"Á¢pGêܱÂ6rDêUÕ›P”{‰Àñ ?• ô¦´4DŸÒü)¶Ø«½ð^f>}íž$I]# é®»:3HÜwiúÁ“ì2!¿] Û¨LßøßT Ž”^r,Þx FŸú,Û$±‚=§‹1æÅÕÑ7mêŠ !AREKCããR§r‰¿ _¥YÎìÏÚSˆŒÔ‚ZhG¶âq:;¿`qòc2bæëÄú™Sþsþj”¶}¯gÂŽ·ZèOÑ@6ùÍJ¯ô QŽÎü¨QSÜ A¦š£ÞÅÚÝ 0Öqå#‚X³|KªÖÁÖ Œ(“.Ö})¡ä"²<¾-q-è_D0©Ó8C7¸¾è,%†”¢ªj%—xôBwÄCô>$µ§,!W.ó³B:mnCye˜/¡‡€"JíB.çJ'” Àú …Cå厔¬¨†):ÙÜè„EjºþtUõJW ›\ñ[öFU<—ë‘á{XñT?¶·U—Îy·[¢æ…ΟÎ!«éŽ#+g¦Çaãd'w­h­éhB‰þÔ;«8e‰Æ—¥ï·š:Ñ}¯j¶‡Òd¦Ó^¤G7Õ4KL~KHÖýZX»ïÒ$wÿhj^L¨ªðõÕ4ú€õ)ÃjƵ~q+!¹L"5.Fó®†AÍǤ¤Ú~‘f1:˜4ô;Á\XzYYíZ)úÑæ9×,“r½|ýbÿùῺßwxrpüjÿÉ}ÿÕïúÓ-àÿ{éªò£>ŸÔ-0ÿo7;ˆ¥¾"nMÚQ8Ù7[“ùQûˆœV›ØæMÿ§‹úgO‡J”ÊcÈ$žèn—øŽnSÓt»„¯®6–°AɉCŽZƒ[Ðèu€ÑVy h#(M¾JÎÌ;èåYØ&[‚“æxaÀ:G´0Hòc,½#S/9Wõ“5À‰åËU.Õ4· éìb‹ìcžô(ózÂömÞÔþÁj¢7Zù†å¹¨¬SËh¿,üY°`54 ~mÁ~X´Î×mc|ë?Ú»Î;ìšXìˆj>VêÀ°¶og'ý3£«-yØì-óçꘜ­Ø¬¦âxw$ܗй6LˆâKrÙ­æ)¤<‚¢BÝá¤3¤¯ =hT ´ŽKó@‹͖£ü±‚б„×.¾®â½CÏu@<µ“€½ÈN/üªš½ü­•è÷šç‹Áÿ€kŽ2'\ÓýsþÏ£­íRþ¯‡»;wþŸŸÿCVW_½y°Wþ Åìi6 yF ÷ .ü…1¶¡Ðvž‚´“âO‚ÜsÀ§=&™WÈ*°%«LûýYf±x !ãDºFrôKÆ´be@Î _ÚÒZªïHÕ¤ºßO•ÃÉ7-&i>mÁ…%ïðXƒŽš=²cc |™*uå4V@~Z [d˜c+Ø´š±§!ðÄ9!^–šzX‘vX¼ò‘Ñ(–L­ØYÙ´AB椶B®YU~¥ÚÜx88X0ÖzR[êblr}uu¼¶’µÁ¦s­Â”jQ¤œ/KßÉó·5¼÷ÈùÂñ_ÁlΩ¸Ÿo¾ìô­•)è´¹bE…î¬úY£rB=YŽiÍÊrdÏ›Óùò¤©Ä ºPÃ'ΨªDe ²¢ƒËjˆ»n½ë‰ä´wî¢ÎR9ÂS`Ë6¤‘â ã—Í»„ñ‚›ïG'±P'|ˇ }Íè Ðq¨þT¬¦Qó>úô»€3„ß“L¯Ÿ"מ‘…áA2æ’ 1Z* ‡£ÿQo<: ©¬Có`UÉŽxÀ÷ÏÎÎ “ÀQXEЦÀ8 RSù¥™ž›Ë"xÔ&*êyÔˆçfvK‰ÅñEÂ>›|Ä:ºPÇœ5FS¾ŽÌ-¢Ý•£Á@® ¿):Qš‹ ŸM& ¤½®ËerêÚhâD>s‰ ®÷!ž+'B|ûg¡ninÿV%Ý­³ý°Ñí‚#T\ܓ֟Ů0Ý–e÷) šç±Îù521¸¢‚]‚CĘ~hP­üá¨:ÃòJÈ ÆâÏ&È :Ü °Gð4xÿ^%ú<žï<âÔÁÙû÷JÀÎÒt*iAÛá·T;lDP},™ŠŸ,r_h ›e½ Ì俊êmiÉb6²xæP‚q~P,Úê¾Üë2¨(‹;¥—’7ãq½œÇ´Ñ–©—yË”_P¶Z“üöO?¤pݶ©ÿèl35! j͆C™U†Ž%ðÁŸOAj¡Tjt *êÃêEA_7X¹xP¼o7ŠÈôcòÛSÛOÓ>F;± ¦¡+ï\!¿†† ó×ÎRB‚ØÝhÓ˜ð}««ÇÓ7“úTC课`Û×_°^97XFÑÈÿÉ»j¾EwÏŸŸ\»› ] a-õ¢ù<ú0ÓÒµ¦ôg=¿ªû_iç® þ¿üþßz¸µƒøÿ[v·n?ÞDýÿÖΣ»ûÿsü|u«?ü/|’Næ§Qï7=åQø/8Kð<ÃܤìFˆ'ˆí./)ÆÑîƒèú¿ËÃ×1y1 ÚT!Gé§gS„Àßg½“b>U±§—‰ößÂ'ÔÞ«Yo˜ôÃç HÆy܄ШÅv{+¬ÿëÕóúèt¾ôá«ç 3b&¥MN ¶ƒööä; ¾Ç/Ÿ|¿ÿú „ß_½~ù÷çOÃýcø{#Ü?z ÿÿOþ÷ùóðà¯^‡/_‡‡/^=?ªŸ½†Š^4©ƒÏOŽ sPÓ3èß~øjÿõÉá“7Ï÷_‡¯Þ¼~õòø€ÖâvwËÆÆ†ö!F*~8è„Ñ }óÍ7›´Z›ß´6†ÛÛ‡;wþþ;…¿ÇjÉcaÒÿéä°&I“›FèZØ›[B–%KÉJ~K-æˆrbžpƒÍ£hR‡‚l{qúW*ÿ!·Mõëš—Ñÿ ÷Eú¿»{—ÿá³ühÌ Æ‰™ IÏØ€Éƒý±6–žM:6{¦K„¡¦žR’³óPøt–1ì2)G¸wÅ`=4º6æÎÓYí2T6Ûæ‘êsÞGg,…1w sŒ8´ˆÀFƒã{ 7S3œÄÙE4A3íD}Û° 9q÷7 ë7§‡ÈT d 1V&·_æyH÷Ä%cgY ¿»hÌŽÝ @ ÝüÑoLëMÛ˜5†^ÚJ)…öãˆÕ<%¢ÒÅ{õ"NÎfCðÉ“éŒ/ëaòÍÖ8ÌiP°’ã GîôRu„>žàÅ·T› e+~IÅmðMñrd™Op{0Ò¡? 8û‚5þ\³Óm¿8+† Á™€¼Éíáv@Ô¸0Æ |ÔwS³ßž[W;8ICØì3ŒÛ˜*+?©´ Ïìœ1F¶ô„b°™µ«1,ç}Ç ŸÒ/,¡Ö$WÑwø(ü>͆ƒßm,øôõÁþÓøÛ „Ë[ŨJ*’i“ÑG‡Ï°jT÷6¨ò’1UaÔnlµ7K/m8]ù¾d/f°Ÿ²½oÓÞ†ÿ]7EÉpo£—öþ¥|ØKŒ±a|;¾•26 8 š¨`êR°ÎRÇšœþ¤õ³ •ߥNËx ×†MC ó7<F礃ƒ„£ ç?+uÖ¿@Ø'L®”3'»ÝccħWâi¢Ç¹²jÌ›¢Ö‡¹µm°”ìªVȵ›q8Ûí]tþ»3üôÿùõ…ÿeüßÎcúÝÑÿC©Ç[wü߯EþßmÁ¾ùò”›wJ€/@ PPås´=ê^•ÕG d1ç$Kð ´ÿ¡úmòἛŜÈV?Ìbõg¼ ,_xù.â :¨¿gc„æŽx¬và°ÀJQñ*‡°a¡€Ä·©b w H·§›Ç; x< (M±õr/¬½{'±¥ö‹¯÷ÂmIQ,¢Q÷ª;NÇ]èò¯ ±¯n´#ÈßÈ®G©ƒ\UÑ)Z¹’™†“HI‡ ÿMu)«YTJ¼¥˜Yü‰nÆYBÕÅÜ?·…iüâ ‰Å!ì~ž4Gå8ëåþS8[.“%}iQÍc!? O(*T=ó„°–ŠØ Üæ­QŽÙ{Šƒ}â_ÈæYâëùËÞ8 :´./k…0ÖŠ€Õ@Ìi›9ø)JÍúÊšxŸeg®7KŸbš’ñ²YDqN­~kôñ(ly¦Òž1š/œ Ïâ«°Ÿ.|©› ý¦Žta­y¸¯ŠåAsCD¦/Z¼/ÿôv~ø-/¡3æ¸êÃÈ'™Ý¡L¬VþW‹Ÿš ?~¾EÒbÅ•gÕ+6|ô Hó[÷O¦$ÜȦîŸmZMá6š e¶~®©¯ˆ®üØáÙ Ø'ŒR;%e/XUT “y•¿„¸´G¢öBu‘¥&º—™Tª÷4U1«õªhI¾¢OõAœëˆw]ÃÛSÓÐ¥ÙÞ«)Tzí̯©F¼+³¢ˆ­@kp~Áe×No+O¡þâ^X纥ãf8À„®Ó\äéU÷ê"5Õ"rN#,ân’w£.¦&ý©­j<$Ô,ا‰ í`|0WÀˆp‚p©£Ñ:ÉXåuBÁïck(²ÅUÌ`‰i8Eˆp« 44J1¢ófZu뉈0ì17=gêŽÝp`÷ÍVzVìòÁá'óÚr¼€·˜\¸··ÕÞ¬Y “u[üá:-na‹˜ ZùV¶ëäÇs_ìŸ>Ñp 2—òïk,®—à²^(-g´Ø‘µa —i0ÕîY­Ü7ÌBÎ[ Çpkq\½iÉÜ«*K²Ð˜PÑ ©É†Æ»Œ;…æFï˜êUß2Û®ÐçÍš 69¬À¯¨å³iù†ÆAËSÐÔ„©”£)Zñ®0 Œ }õ§ª.BlÅTLëƒu¡ò{ï&g¼·Ò×È´Úø9Ϋü«œêzŸýüFëŸ_}PÞdbR,[ù€;ŽQ…œ« ] à*!3ð,KÐü±¢ñ#tÀK‡@üPMŸ.aJ-/ÝŽƒÄ§½éf _r³¨„¦i’Ÿ!Fp¹­WIÿC<èØLÙ^¸Ù~ôI¨ÛÒrÑŠåzzk{ɘ=ÙæÜêÛuá,«¾µ¼ÐRHÑgMqJt9PR gÖV»´Œ W°‚ä—ºàL”¯é¨Ø´wŒ½Ê1:;À×@o¥æj¦¿ÐËɱ–ùiaX»öš9N¹Ö+¼TÁ¥¦”¹ǦœÑ¨!\V‚ÈŠx§œìó±U×|uYÐkšrqÊA‡cÚw RçvøÌÊ´XYA¡Ã§5Ê(©¬jÈ\SmfàÔx#fÚa]or…þFïâÒ|»×ë=çâ}פú^âð]cÔ嘘Öó¸õÖGÑÎÜIŒ~i¬ ¾œV­U2Ó9CˆVùÒ%LØ|Ù•®“«Î¦F˜³{šŒPüKgëú¡“N›¢Àüв93A0"Ô^,nƒ$:§˜ß¦ùpãBF,ÌŠÍe4œÅ”Ô&oF [, é+0.Ò÷µ.Ùížóí"â±ÀïsRðóŠT4ÎËYn’þ†Nгaæ±¹Ámº5ôV§?²H}Ýè%çX>bš-¹haR ëìÜ:2™$**œÙùsÖÍ•Êb|WhœÄ®,'$ü”²ü„4­-Øœ”‘sŠI•®'|²6ë¸_œAh¡¬ï™â6„ÿ \"³éd6•­É™ap?>O$´iãàÜwŽ:°WI_³PÊÅ,]%`WŠÑú'¼!ªþ•â¯ÒŽÊ€°Cú¢`9`ݥš»e‘åïŸL\ù»¯»f',í¢)Z®Ê/TÈF)ÔÍ>æ7²âýጨÔÂS\ø„ŽB®Ð2ö ¶¬¥lÙ}Í 1vè¢Rvé9ë=a  ZþKÂtƒ†Ì¡ü§Eúlþ ¶¸ƒ˜ÕB¤?B Œ)/çÖPc¤³ojÛÕö­j[j°µxÛ ‡á0Þ¤AÞ—š»²E»Ää2ã½ 'ÿ¸I–éU W ¯P8"F°L‰§Ì|¨ÍÖÝËrÄ‹ä¤üÖ ô T0Γ–|˜¨ÇÂr¤œáäypÙ~Ä R”þ„郥Р¿‰&"„êv‹z¬Î›€ R÷z ÷޽o0Ä/ ñ cæÐvØ©—‚÷höKzh9üŸˆ¨,ËÎD1OQ[ÅgÂŽdŠÿt}az_Šb5$ü·zD¼e0ç«Ë;JÆ/ÂÙn?¬}Ú DGô9ÂWY°_ æW¯vâÅl…ÎhΩ7‡“›™}ÎÆ+6уV¯lI…K»[´s•—Û¢ijØ9Þ—O)™N³ÄsŠ”›hs“\èH+l²S¬êŒÄ.ïm›ª¨ÑtIRõ²kÞb&Ð7]TØí“$g÷l-;½(ûi‹]±òáÞÖ³Ë5‹Š¡ Õsס Û36ð(jgË7]7r›E'‹ZEÔ™3¾7ÈQ›¿ð­ˆÁ§áÛ¸Ðó19™À_ ÙHÿ¢²væ§þ´ÙN˜w¼/Cè_3lµpôå¸áÝoÅ¡Ö~q³RÞ2&Û=1ñÇi<¦#ìÆà_Dhš“ìi(fùú7åÙÄÙ(¥h Y™YI–°ð¨Èÿ6Ê“>Ó?ü QñL9ùẑ‰›Ös` r/¨¢å»mpmAÜêÏyt£+úG¿XñÊ3Y½Ÿt"ão&‚ÇùDñlFš3·©*Œy™…­VžÆ»Öt?®ós±.ÍKmDcMÙfc {?ï~³ý‡o¶¬ýßÏ¢ü"æë²Pœ^uGùhìçÚŒJ÷SLGòwËNc[Õ¸šÃ„'ŸÆÝ0½Ù+•¹;_È Xa¾+ð7cUD2ð©0.`^DÞ kÒC÷ž!Ô~­·"G ø"ç©Kz¶œNѧi·wî N›:ä0(«)ƒ'Êõß¶tÞöeÝŽÜÕ~¬•WáaWΣ·öÅMqøÙñ‚>Þ&,‹ZÜ1%J)/+°ÇåeŇŸfYçŸ~Y‘ãÿüK»¤ Îèµ—çí6÷ÄkΧ“Žã•ÃyV^€¥“»sÏóÊ:ûsЊsü)¦“| ‡ìF“zÓ €ãªsý9P÷ ß\Ñ``#ÜÁ­4ˆ'ñxû‰ *DŠ@. %ÇC¬ç%b™7-ˆf® GDs‹â ÚpŽšÕË$›Î(¼³>éÚCãˆx8fÐH ¤ÝÔµ³Y"u¸¦9ÞÓ¢{£~ÓE)ÙÛÊØQ’OAfC…i3˜¡k¡v¤¦(ûÑ#‘Ʊ6) k²t†þ×!» /I¨åå±°«¢ycIJrhôvûØD‡/r>̧ø_Ïý­üÎá ÷CY%ĽÄ#‹@â§ñ«´Ü¯¢l슜^Âzˆ—cê*¿Ã0m5b‚_¬œtSu»õšSYk´eÅÍö¬wé÷n·âÞZÐQÎYõqåSábÇÃÚç床Zöò9"ÿV:]Âú–2]N¯üc­ÖáaþTQЮLME›úqºÜ7%%;௃m$m3‡+ÚÇÌœV&{Ê3”ìjæx²å^%ÁØo*@„aà#U¹ðš8l[žJ^.ýÊE¸·¨t[cJ*¯Ræ÷Z•½†:x˜Ä=•]ìûý×G‡Gm,H;V]Y£=ÉÒItÎ?dí6ˆW,€hÇDL/QÀ# öBòÆ­$²ñ‹– §P…€Ï¹{f*Šºw¿ûÉiƒ7ý[MŒ, ûiqs˪2Ê}ÅpCY Q®>µÃòųC\o¸©ƒ«®½ÞlZŽxÓ÷  ‰²“@7`»?Œ£¬ÇôåØ0lôV0ñúÍâsA£‹e™¼À´ßbrš·Yð–ÃîL³PwÍ0Õìˆñå> ¤˜a/ptJŒÖ æÓäÜn“Ƨe »¤v|²ÿú$lý¹öGjŽ›©VüSq¥{‘¨E›Ã²úk{Å÷¨×™M5™#&ŒõãkP¹ÎÝ1¯>æMšlâŒÉ…x„ÞÔpZDÈd¤v6T0ëIì1sºtž£2SÞ~VuW[„‰!Ž„—h‰ª‚{õ9XŽ_€Jãžlè 9.²ækš/øv¼îèDvÙ·¬ö ­ËÎ$Ý€ Y>É8›DÞ%ä]YøÙ¤ ‡ÄqÅ:ñsã;Oû³| §œ:æ¨Õ-[#l2;]Ù<œGUÂu>´Ë8›‡y2JèʧT…JHG.æ  é+Ï"è’®:BAá†.³á7R}EÁ´q%BJ8P²9iü«èÇàÒ´©ÚÄAÌ ø?šÿ¬°( ½•˰LsÕ ß1 rC`ôên(WYÖZî=¿®|ºJ€P¸W…µ#>Ð+‡ÿµõ‘ç=ü¥ïq*ª#ݹÐ:©ºŸÓân7ŠqòSQ1óë‡ .¸oÅ…þø²W‹¨ËäðÕ¡vq ì¼"AAˆâø9»MΊµÑ½M9oz•bê(ªx¸@šE« íbè9´Zte‹·Q/äù'ˆ9Q5/dñªÂ_÷Ð+ýY çç§Åá%¦ÿ˜FiIXû3äoÆq©Beþi…èä[VLç"3`§Ÿò‹°– *†ú&GgéWâœpýª¶-´€;½l—6ïáÔŸ³ë:ÌÕíxi_RÇܼ¶µhãì‚?óhˆ`%g,M§ˆ§Tb>b»IGI´äŒ¼ýpóáÎãn/K?Ä@ ¹P—2øh¡°qCrØ›Üh(B'Ѳڋ§Ó8 ç1Ì "o̦Ê. ùP9ùP!×ËâèC b¥%Õ©Êô5Èõw4õަþ²ijy{¦£¸…{»HšÒ¼-ÇIäß7 /üb±¼8¼Ê' Çàé aÚeí숓¹ûW_…!«g äT)uìôߪÏf.ÄDìØAyñ„¤‚U„:ù\ÉfK#äÖ‰Œ»¼LWŠ+ª6ÕAðóàEz D™Mγh¼-° 2H)­Ü&w_¡ÂºŽt}œŽ[Òf#D!UçÐÀùruLúZ[vÔ¢÷Zr, {7SÝÉ.·VÑÜ­O%?ý eRÑ,¤Èéõn1Ma;¯¥žeéÕƒg“qÑ\\Î~²20Å‚ˆY¥§±ÓüªÅ} §¾]ŽúÌFö–ú½Ü‡C ‹@•&K'þK¦í[F“´=í\ÀÈüúWbx¯tQ0ŽÆŠH;ÕÀ{R¡ÁÝ“^lµ½—#Ÿ(9lŽƒŸLòô"¶(J'øÅŽí_>éØþÙIÇA0Oª Ÿp?ÊŠñ>å Xó°u´Jºƒ#uÛ»lGá°'‘¤ah¥«Tœ®Tñ·ì F7½ia'ä×ÇÂWw>Øn—µêº›‹HÃ6­B"“=Ã¹Š…5QYZ¹h râˢ˜uè6)ñús¹U`ry7w£Á€BTŒ5œtÿ6·ø*š^äBÅñÇ: |Ÿªb‹ø”à}9hBOS–öKèo“Zvy¹©Í׹κ׼ÎЭ¢^£ ˆcVë{‚¥ñ°OPDÈ:&ïÛ¤T2+õ÷Îâ.PpÈ€pwÁË TµLÊý…<—rèc§*wÁZãø%é@ncp‰Šãê®Ðë¢Q­­ §4·~çi.sË!Èžö‚7Q×`5-ú¥s¦‡ÿÃÙ#þ+@þÏ€ÿ‰‹Ÿj¥)}J<„¦¶ÃôÜÎ&H1VéTc1R’>Ÿ†HÛ‚ E!б#žÐ“RxÉÇŠhÇa’*]ËsÒ(º†ƒ.zQ¦âEÉÕÇÊB;‹âQ Nu²Å*rCˆ¯ ~{{›ímBö+øä… çÏú?mrÖ=ëÙý=zP>´j +yÛJÿÚ§ß¾ùk9õ†Õáöê,Dn÷¶›q„mŸ·ì‚uwöL—QØ„]ʘi¤C…ZÈo8[Á çá(Ê>P²¼Àéà²iõã^ÔÿwÖÁ_˜j[&µ¾ÀB·ŽåÛ\ˆ~U.Ä{î—ÕÀÔx™,µãWº4ÿ¨~Ú¶}8; ävÚ\±¢BwVýìèÍ·Ë€VãT¯€TM“ŸÐÞ ²6úys›£/²nZÞ,p™£!®ÇÎTÓÈU}¿Ö̱­†áMƒNžÀn‰¢FßBVå|¿i¿?Ë0“Ã`FøË˜“öY]×í4!¨1 —¢´!1¹¨åÍËXBËÂú(ÍI&‡=F.Ë!Ë Œþ=‚ý))–8• ;^ÕÒ¼†>ÍVŽp—_!êk—p±A–$Oj9¦¶?›'n¹Úc¬léü‚(áÇÚéuQùíßÖæ¦¢C¯çÝíF„!U‚õXŸ"¹Ø˜º—„¯ßvX{¡æ&òGŽø…(ûC×Mwîüõƒó×ï·Õå¡vmج¨V­ëñ|‰KÖTOíCõƘcbˆñG޶çUœBŸ8£!¥>»ÀŒŠ)ìtØêã1Æ6’#t × ™C; #7?H‘‘Jö jØ‹ò8yIrÌÞÆÈÎÃ4ýÂqÛ®!§Œà[tàéø f”LU:‰.¢3ô³4Ôt~l€tçiÏÊ èd+œl‡“p²ëÉ­·µ€û¤u÷|³}ov|cïϧ»«6w›ú¾r„ͤlÉl—í|ª¬&ª}óà:­ß¯™«”vÈ^í&¡!Ÿe {l›ÂWæLú}·ó ;Ÿ ߯aãí~ö³`|1'¡üp×÷û»S<3VàdÕ ’ÛÅ·ú%ªÅ›ý¶VÕ7¿ªCu·Ö·´Ö+‡£^—ry €MÎî.Å/ùäz©ºç8/¾ªŽ²eÆaÆ£$³(ãê÷¢åù¶œRJÀINWæŽîb cT(Q† üêÝ»ñ U7 ¦ùJ­¨ÂK\­Žt¼À‘DÔ [K\L½×7xPb ÆË\Ó»§[u^ÙŽÌ…”®:Ói§^kc#ÜŒ}uˆö1äÎ…9{g­í_ÈŸ/t:&h¨=q3+À ~‚õa¯Ê§­Žm^7…|)=<ăד~ª‹RÑ/¦†'ÞÔVJÃdÒœ/ÈDÎ i%"çT&ž½ÔÍÝt<O£bƒ‡5>»µzš'ƒX'೦õú:‘A˰ ¡ £µå#´«¢lc*¨§c„œ…Ô„_å)”.Ê^¤3¨t/Òqš¹ tSâÅ(8C–Áª~!7‚²- € \ó@¥{ =µI¤jÝGÛ»µÛ|²kYÓAÅþ”£„l ûV32,'Õ‚!ð¶A’3ûØJýáî …§­Ûºµùpó[Ýcò³Nú”åCe«$ÿ©äœ¶…à©C72IqKþU&^t¨úV™MGÉùÅ4ä ÂH|¹“>[{N²Šl³~Çq³Ô¢Ú¹’#¿OÆáCDˆxiçùöM+‹ÃÞ^:мö„þÎ&ðhMÁþà^/ é3ÕpàŒaSòi9‹§}Îwï|ÁР‰”ýz–Ç_SXÐÁYÙŽÙžM)»]¡ŸÜîõ±êv’ÝŒ뻤>®{¯ÑŠÖº2šE2þqÙ@À$æ> c½ÙÞío­ò!ÚÖâAás~Wʶ©¤2ÁÆ­LƤ+ëf€Ü ·Ék¢+ÚÖ WÜ…>¶¯µ ¨å­ðYÖp+ÜöÞ½¹Îª¤è*á™LxŸE—ð,=ëæ°ô¥Ä”>¼:˜ (ó³f†âNÙÉ%¿H¯ƒxŠÎœ7 AŒEûïUÚ3B J1ù¹Àg@ݺÍÒ”“1f´ˆ[ª7ŒC€Äì .Ä)å›IφëréäM‹@˜qÀEÍ`Ã+Â)èIL“Ì|ÖË‘§nïHR˜À¦kõ¸}ÞnºkHÅ*=¼u{àŸ*Ç^^ˆÛIµÒCUo“¯-« jPã¡€™^|³Å©UÚV²—_D¹M8ÔÇ[í-ËBO9$Ú“ªÀf{æ•rgà"ØCjñp'õuוC@W˜Äã/Þ¿‡3É'•Ø)N@üþ=퉜ï¡Ù¨+z Ô5uº¼ÿ(}yÿ~« ¿‚X† b·u^Ù fȼjrûD¦3ŸM•S^Â2i íœEý)û¾ÒaM {z§Ô>›ó.2e赇 ºáORkðaUÜ_]Þ5C›øÎ7ºm¡*¤ˆ…Õ»Âï†ÈäÓx8ÍÛÒ±?J=îÓvW§ ïn(BÑæÀÌÖkx¢Y²e\XÚÆñÇI*;ŽxÓda*ý‰÷_Zó䑘uû±Í‘3D2æ{XßEÛ0úiÛ­è\ìÖÔ1Ä4hמw¾™]>‚àUd`@Q¡°¶ÕÞ¬ýdFh#E›Ñº~ŒÑ ;–¥u·õŸ·)ãzŽ[¬^l³2€5‹ËÎnŒÑBÌ¡S ìÍ ø6>K3½ú@à›rØòiAáç&äíƒ*èÅ@ú{@ÝЛ˜Õ1Ñz‡È´M {—ó'‘¸˜â¡²ï¦.¦ƒÖ¸ªÎmux†<7Ÿlê^–Æî`ÕnŸèä6••ÑHa*÷,žÍ†|h0é}‹)KËì&ª(PúŒs}ù÷æ¡›óWcE¥–ÊO.T@u‡ó ŸŽzɘ‡—(™Ó¨2¥¾=¦«D9RYõxn•† éË÷wjÓKí¨Å¢„¦òYl`¹;ž­Ó J϶äÚæçœ9 ƒÇ7Ûž½·… † ú¥’YMe‹nÁDu ³Y¸bü˜¨23‰tkÛ[L^´)Ž9T'³‚Ïi;c\m>ë÷ã<‡=:œ+-.‰Í†ÙÁŠëV^²ö'ÐWV‰–fÂ'"ÀŒb4àdØ8‡êàQ%²¦ë(=KÃôš'~/tÚ6þlèç=Éâ)EN N¿`ŽK_ øŠ"È–`oˆqrΑ¿#þòPZ‰ò^gvϽ]|;݃!Z½éT'}­®Ní0_uëŠr×Q躣B}ܦ%•©ÜŠõɰ*ê³)á/N½à~aï~ÿgÚ<âÃgÉXg{Çè- |ƒ¹"fÀð &+Å@.Ø3¯2ÌÆ"è5\ ¼€n@Ió¦`‹ä³á‰š¢…Ãa×öIoÄRÈY:„?ѽDtŠX¯RaèÉ!muÑÌ¥!Ck§1íïŒüp,.“0¾_´ç©g‡RØb¤³éVÅô‡}»ç=u({#AÒ°7Í76',F fMI[öš’ÊQž««g•[ÕQUÀh¬v¿n„÷ÝrËhçï\,«ÚC‡6˜LáÅÜ^G]SüZkà|QDEöê¥{M÷ñöÊŠaŒQOQÖ D@DÎÎ@*„X[÷”¾Ë[Ab42ãøJóÔSÌÅ£:H ™7xØÿ ÒqÊhŠ¥8»•5ç\k2­ÊÓ4šo%ôët'Ã4BÂFZŸ&òŠJ›Â®eÇÊRxÇú`¥È-8û(;Ÿ17öè¶üm3©pÈäýŽ&ÄóŒ&„:ú0Àß AÓl^–j™ý„ï}9ªŠ…ÙÈ…M"ÖE%šê÷”µ›vËV¦eµì­þëäm}7ÞXg8ð›Ö¬72õYU8nÑÉÅ:Ì{÷²wcdáäIUËÞš¥;e‡gÊy¬Àù?R…æyeE»PïgÓú¦ÚB•_°¾Øå¥!kJª$7šÊ×âSSPû4«ËWç¬]ú '‹3; ¤c«®Á›vÎÎ'Ö\ë M¶ïºªkn¡« ,7<ÊLºÌÒêšò¥ÇKòF¦WKÁXev¥ç+ÛWý{‹ØºÆ‚Œ¼æU•ÜÖî&nïH)ñZÅ€çSþÏ#å`á2O¨a‹P{_!pzÅtúD¿ û¶Ñ®»ÀfŒ´ÊzíªK³¤±[{’ñ®íiü¦vŒs\VÔéèg+yêd+~¢´?È‹µ1e};í3ò®8Š4Ëbº4âʳÒÖ¶@x2$gU%+¢î&œÇ’åŽQÇ$¬8kqtªw[ì%4Ö*‹®Çø&±Ú-ÉW»\Çü ¥]FC˜‘†xyD¡Îÿà¸ý ÙÑN¢ì®$ð2è–Ž¨l–©]¹!q3¦¶ª£c’Nn öw–þå[ý$M§¨4›°ª ‰²=8vp¾Œ AÇË$¢®S/»1 ½úcÈ ðÀN§],o¿cU«Õ¥ÔÅwJrí æñ>PÈ yœYWÓeç‚&•(«5ÍÄôÓ(YÙkùòvo»Ópm#šµ´è}_% ˜ÀNQOqG|Ë9~Ü9ÍÐ¥y‚fNýÔ33”Åê_¨KØÁl}ÓLB}áòÂìÐA†>¦¢ÖÅúЏ\cå+ ‘èVÙ'¾§=ƒÖp˜…~¤@m|г¤3V830Ô1Ÿ'XA:¡ax¬™_bj–õD˜e º!í¦ZøÒn=Ö«ºVÍž›R€É¢²Mû²0ɸ‹ÎEüã§¿† ÁyÓ‹½·dÎZ8 ×÷­û’oòØW‘åð,¦šºkIQmn2“ÎnÛ™¤3M³>;¿ £w„ÔB“A™–PZ‰¯-‹¤Û Õ¬ [Ï|v1çÑöÎÃo6m¡o7RötÌ -Åðå2%bJ.£ uE6Ds!áB.$X“ «¸àZ\ˆ}­’Ë5ë”Љj’ÅgqfÈÙž'þ œÄ€ ÛFRI…0³‡y`FÒ Õân”uÉyršÉ(-Âè¿ùÄŽ&Öe¥ÜS#ål…ù¥È=Üô»Õ"$W`œ3p6MGpaôq¬ýG³Ý’+Ñwy gòJÄf¬c­ˆñ€n³ÅÚÜ”ÄC7a›Ñ­‡Î—³ó7c;À[t-¾6©¾Â Ø Ôm9»¤;¤˜Õ*üŽÉƒRÙÅ^ñNü¿æ-²š¿õ-éšr»d°¯Ò ÔKŠ&Ñv¥'k,Ö˜„×ä]…1áuû& Cö6¾85^Ë¢àE$AÕŠµc¼ˆd݇î(NAbŠ‚ð‡xܘ ¹²AF ^@|D:(mÓÍÛÂÒ?CF‹äbÜ(rõ’Þ&B^nK6@fMpLFiÍôýSî¬R#—š{Ê¢Ú 8–h8C&ùpª”$9cß"ýÊ{<Ƶ¯kššô#É-оKã¹vòÀþôñÞñtD´–2bò^ŠúSqö{aÊuj|¢Pda±­âƒœü6EØZ6ùp#C'ò`ázÊ÷/Ò<ã$-«7`Ål<šL甊Eº3NnnAœúHBd‰Ç^l÷ŒQ©À¹^¨µet†G²¹trPÐi_ÂîW‹GdÙ„ ©E¤°åá¾0ü1—IPUìóW§¾8§’+´Èì@2UÆÛv÷+ÖFÿ:•‚Îó%zïmÆÓª~J}ó¡2Xâcz(nzHA:¦í;õï'Yé¿`û_ŠUÆDlc«Z0%ØemKÂÝ2º­ÖöçRXòFNœho¦.ûú¾ÛŸd üÌ‹ÿò ó³.í\ŒÿF;Al’ÐJÂ~4(Å-Fý÷ͲÝr°›U¨Ê-_n-]`q .ÂÓ@k«ÍHN‡G‡Û¨°ï±š^Á¸±î™A¢9 a ™«^þ E;š¦2ó‹ø8$ÄzÅ3!~1gc ¼ÒÃ!¼=ù 8ߟ™b:šë%ïÚúÕ.+ðlE‹Ä¸-D4µˆ¬ò®3˜  Í€¾Vô{„ tî‹Õª ¥u‚{!$‡£ØCwt*ÞW¨jøìZI+ìKÜÆÕY±ÞÔüåÉoU¾ªN"Vh#Ãð»!˜-k¢—Œ} ”ë4uÆvç©hQ®¨`Ù«*ÆcXTNÏNãæ ‘T œûû³_•6¾ÊM™Û7¤kµnJ:[ö±çmþËœú³¾èJÍO5˜™$$áÞ¯2î°öÀšé8ìòM{Ô>²ïV¦eh{øÍöÃí]›„}/v%rÝX\ƒOÁŽ0v†ž‚ÿgmF• ÅŒ’K|ªlÆç…‹²Ém®\ƒ‚Pöè…xŒ <†×UVKŽ)Á$…›£G ó6 “Û( ë?€•fTB–{ƒŒæ €í hÃ8© Œ_J|@®YOVá÷þ,Ÿ¦£ä|ØÖñ³t&©Q:#wÓr—°*ɪ+^–c|D‘ÜTA †ºT0®ËæõiÉ‚Ì(ok~.’¦Ä~bŠáÁð ÉK¥O®bI£Ü¹ÿzº&lŠÿù¬2´&ÁdÝ2šÍükšY5#_qÞdÉDN¼ß™ »à ˆ­ç[ƒ+0ÌãböâaeenB-Q蘩.*mr+‹g«KûÄÁå~¸x³cè&y`óÆ óTzGWÌ Ž¯|Ó49A™`~:Wšbôñû`mBÝFWBÌᛇ8•ÝòãéœÜù²HÂ(—tÐ r?|–Jnßq©6Z™Ú00ŠR8—Aݱ€[m©»eÁP@y ô‰®v2›DŸ&‚ÅÙW¿bˆŽóÐ}è—®ý,‰‡l}ð•̃üi+‘̳ Ž;ýЦ›ï‹h­y2ŠJA 3‰­"ÒÎh¼ÚZ:N¯v€(9N|ƒ(:{2æåL,s”ó»Te<¯.‰$ÛXš‡{˜ž#ÞKÎMÓ›“‰Ó†?ÅʤCGÀÿfh:ÂØ’²ÞO½(s:Væùfi2õŠïœ¶jµõfñ)ÓJÐ*¹Ò€ÌmH‹…ªB–ób^s^cL„AËC‹T;ý©(&–@™, ¢K _û¬ákÌ—ƒÊ¶nh-] aŠ2‚À3o¼mW" ,ìÒÛ€«»žBž ªbÿh3x0Ô® ^8Œ½ý´^V/ŸþO•V“vÕZ@ÍkÀ Qå ²_º—áD÷«o‰l6v¢»)FY#õc‚ mU;ÿ6XЪÉ3+°w„×Òà.’~…§²­‹‹ì² „Œ‘‰‘Æoëã3dzçHåáfþjBá!Œ]Д‹N.9Í𬆆³ê¯nlúµãØšPk¢ÝDÁiýõ2Í• HU84R, ˆŒƒ„1p±2LØá|‰@¥æ}4³Ý®b\šŠ¯Ù`p oî`\V[z Ñ-‘§ø€KÚòZ–+÷{-V¨êËrbÖðfµÝ1Z×f´Æ·ÅcUæ¡•Õö3Xe¨Ix©Vøt1;µW@¸,u¡Ôr ^¯}5T&áÝ®·±…ÅĹDÖ‹ )†ÙÁfpù&3>ÊÂbÅ}6Ãß5Î=ËôE1Wîþ¸9uÓû~,WýµR–[ù ×»Öú$g¤#V˜žðç°¾Ý w…¦!¥Ã-×E=rCÈu,¯xT«¸ŠÊ~ç-VFºþÜuŸeúƒIŸŒMàU:‰Çu<;ÓA2޳߾:h–>·àÌ—\üŸk??>yúòÍI£Ü™65ÛîÓ\yW—wP)\{ä++KÕ`ê:5Rv ë“öU”Lu MKpZܽâ³þÇ‹ÕÙèhËáV‹Ç·âû“W–“Šû;íhq^¾~±ÿüð_Ýï¿;<98~µÿä@ë ~¡Á'8|4/ ×R$Þò°ãj˜V±íUйC¨^k¿Åß#øpŽ"=• ¿¸y¿¶úaí~U-öªÌÔËiñyõC‹Ëï‰^o¥èy)U³}½j‚…{´õ‡o6»ÅÖeü;HÇSàâQwš’™Rmƒ”×DùE—D=y›»ø‡Q–ävjJUL¹kvE|.”ËbÔÂmwÉô—1(±3˜Óó7²B#ëè7ó324i•Ð6—0ÃuAŠèÂEÛMκ(³—B7w ¿À‡Ã^¼³IÃí_ kc‰º é3­ŽÎ1~è S”™=gÕj7 £Ävìˆ?ï?Ö7L4ŽSÇÑCÎ(]®ÈP©\Ú!Îó„`éœTòSNE…Ź’ëüñ²PtÐu%*©rw“˜œ“bJQ†ß ›¨£Z\zÜOgÈ}Ær^-gšÀˆ‡«¦ĆÿrWìF£1»žu‚âñæGíéÛÈФVXàOð6¬aÏîå¨NJ ¼Í„’Õ­ÿfh¶ÛU¢ÿɿٕÎÎi1v‚ÙCvË|Vß&‡–·ð°p•1C8q2 °4ÝTmq²©šï‹§¹—5˺cxXñ%ÿƒ‰6f*ÑÞF´QÈM´o4üUÜ qL8%Ûçwpr7é¿[ôßmúïýw·Ä Q9Oª|¼^ª¹¨ù vhiYÀP•µUJm­Tj{¥R;+•Ú­êO¥mO—¼>ç([9 (Fó^Ž’<ŸÄè:ñ—Æ+¸8ьՋU«*RïJˆõ}¥°OñðC=4P xÒKpŽÒ›öU6š« +ƒ#m)ÞÎ’}‚,îem‘ß«5|GüPäƒí@Úþ.®îkÇû1ƒè¦S˜ìÈ\•S>*øÓÜÓÖ«¤ÿÆg¨=à'ý ö=œqÿ¦³×‚DZpÞ™hmêW;VÈñ€+ÙU*)ý¸7·?]ÚÄîÒ&vVj¢üzwÅì,íÁö5{°s;Ü^ÚÁ­kvpû³ôkiÿÖÖibœºé ˆR5¥ƒoÓ_9éwxv47±M’ŠÕ˜ñÙ÷xŒ–hðY³s²t'q6šq†ºzü1¡4Mº²‰á•S¯©BHeÌq±ÜW0zXúHesh¸ãŒ¾Ô-Ë‚)®<ÃfU” zàHÓ¦6‹lÔ`:F5‹p˜žz+Ó}_±6k¬L»ÖF½%”ÃSb‹ò{w@Å@9µ‡ÔyÅôè´D «Ä‘g6†ó`%êå]©éZŸx'›é/QEÒ)û‚®ÇC(ä“‹È[V!^H( ìIæHhëžÝê¢C©$øÄ~ºÄ¼_¡µ¡Q2y“3oWŒNÏF=Ä$TñßQFŒLJ¨zÃü‘¾n‡z´ÂïÑp(¹Å¨W"ÿ´(§‹,±ÄãøŠó™Íf±6‡°4äí¬õv´¥î3åáVUcéx8¿V[µoCðT5EVµÖ_¹µ·»§ØÜCÓì‹pwA+<üba½}„ =.éñ‚¶(~lý¦þ€MýÁÏÍÚpp­ñlmb+ßX­lmªfôJ8-­ßFm‹6n¾-϶ÛZÜìÆB“×ÛýÐéþ¶í;ðxíÎð̯ߙ‡º3»î¶Å7k÷‚öØúx¤;ñ¨Ð‰GØ &I¨¸ñP¥¥ºC_%CÛíÓ³?`2¶oüí›èµíMocøø¶ÉÚö-ζŸ`ããO@â¶w°Ñí]Oƒ»·Oå¶Rk­½·ýðºíÇÔÎ#»Ç·Né¶¿‘µmîío¢ÏFäv6Õ‘†ß|D."·³­;³åÒ—íÏFäv4ÙßÙ)tBs"ëÑ2Á›-¸Î‰œÓŽÄ-Br‘ϸüsÆBôZèqnG,Щ3K Ñ‹ ÁD‡üpzzÞ+…”ç'ê(p´N«{œŸ¯Ü®vÛñÎY%ŠÑTJž”×ñþq4êeuôgtðPãQΤF·‹ÝþVeÑøî1>0Ì«#–“ †øBÝxN¬:LNPÊV<5è tV¢lÖéòf%ñÖ}¶ ­ÃßIŠË3í’3szËX½ø#‚O%S8u0¨)·¬´_Ú¿€ý²ÚÎÿí쮂oÇ’ÉY•GT˜*’w~ »ÃÏkþR6\8«l»ØÃCþ,Ëíã;ÆÅ¾.o¹x˜•̦ø­sœ£x!Ø|¥¶Óñgb¼·Å*’àø¶i²NÉÑÉ8cY[ˆ€ÉÃZ/*ûEÅ™±ÇéË÷KǤãÐʵ}É6 ¥O MOÉ*ÎkìUŠÙ_âF‰+ß,»h¡ìEçS=ûaG‹e f¼TÄÜÌÛ–ĸø ­®Y Œ1Öp\y—ISºˆî­ün˜Ù)Ïú]Ü¥t‰,X2ú¤³Q5ò«µ®ØÒPnü(›¾t‚A<Ë~ì÷©a0x·Ûí®»¸ó9ÞH }ðñ ½´Þ¡¼Ê1²Í’’½á©ö3É»zÚ‹àüú¹ZlrYÓOÉm ém½ŒSbƒŠ¶%%3n 6Þ#u¯´ûÍkÞD˜W¦ G-ëVËpv”/‰…âI/àA͹aníº´‰ƒs[jÄ|£ˆ=ý«¹߸5!¡e¬`U‰Sw+ªPÂ{–(E-–f1¬W¦6(³®¯¹=b¾yëë.üÒE·TtÖ¢ë)/tcÅc‹›Ã£¶Ä)ŠìíÙàÅ8³[E?ðɼ߉°;™§0"™ïúi†w/a@zp ~FÝùƒÝH¯»Pãge&ÁPðù 욇•¯óéR†ÂÉ^Ötÿ,DIøÒa‚ÀöÙlÜ'LÉvŸ—Iý¢Ï¸âöÙ’/WeÐiö~X §ì>ëGº±³Ãìö-øîˆdò«¿×‘*ÛÕµÈ'óe¨—\hš·Ñí‘.bæ\:E„,Ú&¬ž¯ùºáÔB^ˆ}âéK1¡Cþ׿¶ž½T,NE¿¾í/~ú¤Qœ«´3S8úQ6@l4y„É\(‡fŸå>ì•{œ†– Ù ÿ£*ÔÑz`sŽ‹˜X÷@.#¡îTÄ'H÷ò‹3,ESÄÖÃ< ]%×8¤OÍÀq:Š$%'-q4¦X‰ÿG$wrÖD…ÑØNßn åÁ£c~ó¦âmåÚP¹. ‡Xe¾ÆÍ9ËWß q@ŠÉ%›ò )Çnš?±ƒÚÖýöEø…ÐTèqÞ šèP&š_Œ¢iÿBüö{)&nú„—‹‘Œx_BÇ‚â #Ó]¤ 2“K®˜ï ôÍÎWLz[Š£êÜ¡DíˆÕÊýP !0­Â»Š²qwS™³°ÅGŽ˜,÷ÔÍ1ãRÞ§]ɃV}ìœm”A#ÚIZÝÔÄdºÖùÄ~P5(ƒQÄ,™:EëžHãT_o¿­»× Û‡€úÉìšP²1®šˆëOiLEŸóTDáy4ìç8ÑòsÀèa¤qÄYJ%S2QÊ[LKÍüq¦’ukzÔ—ó–vLû–ÎOTs¡Ôô–Ë«i®…õ1ñæpŠ«*Ú¤ù,ÓÒƒÀö1·Ú°Ë±ÅócãŠ! g’ŒÈ‚+Ñ`eDŠ7èÅá0Ím v ˜²4v|Ô”Ô ¤½7š‰öf)œ±«“Z°«¬ß» ŸÃîÝX+ “C)I§®/h@¦Ê»¯¤ðàyàtTjldsSfjÍ“*a0HÝTkC¯ Wéƒ q®×$,N0ÉЪ3àHL‰Ît€:,!Ÿf®X#/”™0Óá£T2ÞþÏ À…*¹¼,»ÍLS QacœºÇx/Þ±4Pò•8Rk‘‚n1í\•fNŒ>⣣@6r¦©ç"«À!3¬o ‡² ±8ã?ÙÍZGq¼”#G«Ç€1e‰›t‡~ƾmþÞ¶ß²Fo×™ý“3y«ƒ©Ùh0 kmëÝx;ìœO󧳌j¶}ýjm7¶×’hG Ø»¢LÙÝÞÚÜÞ^´Q“³ÒJal³8à¸ê¬·Ä7¬PЧ³EcÉJÍCAS«mü(6_YÐÛüZ›UGöðmbN(³êëÔ},õƒo¶àÍE4*ïçÂW8Â7jn²VS]ZaZvˆ†iö§Æöj'& ?"Òvön £ÇQ¿Ã`K‡’¦VUiún>­™3«ß¹µ]çð¦ãn?"†ºˆ^×Û¡_ä…qK$áTå4àû{z¶p—Ý߃•«-'âaË‹+œÝœ’¯]툯nåÇbÊw´“9+FLÞ¹,ï·uòŠÞ<7–ÀíK£œ…¿VF´(Wg£U,K§E§¨Éœ¬ŽnŸ|8oÚ!îõzMþÂFld3,<ÛR›Êûƒ÷h6c]Ê?Mª15J µ¾+&UW˜úa ̶ª·Å$‰¾æÜrÞìˆöq£üöZ)—w¿‰K¸úp½=kWL•ØÕ†úîÞ= ÿ¨P&2O[¥¥ñrf!=‹Q;<óÇ2ª÷§T ýî¡9±‘ךþ²*•:L(¾Õ:¬Õ4+U—ˆ¾¥Œ•u4|7LÉfÿšW‰ä7¯9Þ{5†J•H´<=g>áÝ`¤žÞk~²§-RSÃxw|[¤B­xMyT)6÷¦U™ãµ€ÎW“ÚkÛ…äVú+K~Ô†¤E M«òü©/N}RÄå\P´1ÎFí 7–€Ül:Î #ïÀŸµ…=+6Çk|³F¹Ž¥íþ´èý5©¿|}Ó+ z—®Eóo@ÏÜ@œÛ"f\ë/“’-ÉH]±$?µû"šµNÊêÅ[;¤p2GÃ_å;ôí¶ëYÒ7¡Ú’&uÒ³%•:Ù°—ÔyGÅQñB"·U!È6l¤eM5ÍÅÌow¤Ñ"]ÚU]+W=JÆÐsT—ÏÎÎ’{µÚ:$3X‰pÙüžQÎf¯Í÷îÁÂ1œÕñ´ñ‘BùÓé³]y°Tê\ùèlØ–PÇüå˜#=ËÛª¦jËÁ]q/¿—[ÖÒÒ®²jY²Áî…uï::è|U»áçÙ…¥*zZKVóùbòTÛ8œµ´_¬¬L0°Zt¦½.œí¹ýÙÏ´½n¬Â–ò¨œ-j—-äÏìÃÍ™$!eÒ»ÁF_öI1=èàD"q]ekoòÖÆ-ºúÖty8[öõˆ½X”>K³Â&®L·P¯&‚ÍpËRaz 6Ã[qùUø=–Ñç9©”AÔnwÛ7àe|žCºÂ ò¹¨˜ž’bÚ€Íî¹Ø³kÓ•nþi£ÛQþ¶f5'. çÓ™KÄ®¾ kÞ ·‹°²´+¡²doo›–´ÖߪaldÍEî]v¡&å¾ò ,P¦.ä ×âÚCƾšRD(~EOŸ•ØX~– UQ‹iœ6fqajRÌJ©&è…|EÃúÞlÜp¸›á°»î^X{¬>t/ÕKÎõé¿+-Áñóí+éVyëTÞ^ö½% wï.S5Ÿ–«®¾¶jŸdC.Íf‚œb‡»˜K­œ_)ßô?½š[7n_üÙz&¥ña€pI?|5CÁÁSdhè·ü-BAÿøãÑ›çÏúéAE^>=<:<é>{sô$@A\*ª_¦É üÈáãó—½Çýiøõèœòªy5ïbdò šêú†|¸ÑTÁDo4þ}Vahë|zð“§/^rãArü­XM+íºîd.³k"Ihïâ2â’äí~Ši­ýÛ txyÀÀãñø2É`EÎã)§Ch©Ø Å3#¹ñ:Kiô^¦UÛÛBM§°°ú¤`¯Í„›(Ã{ùK””êÁƒ«««öé$n§Ùù†:¦*MèSþÞÍŠ•þ7m¦~:ÒŸ@k¶ø®çÑÙ§rfߪßÛ} å!¼h¿h0貓ãsùúW'n«4U‚ëŠ9»ëغÔ-U™uÑ«ò§€3qÕNMWå*>ÀS…áß %è™â#lVÁ!³zœŸÏqãÁbMXÚ›ÆhêÿV»­ÒIó•x±tøìàø¤MQ]Š^|Ýî£øÞyäHÞS®¡’“’tq`1%#‹ˆåØÚ=ާo&´ör<¼¤TX…j¡€û×Ùî¨puUÃp“ˆNJ‡Up38‰w­ásèÐ|-¿ômùrŸ,_üÒþ¥ø4ý²î_³òÒØ¯YÙµOÈ0õQØ©8“[í‡ÊµQ )NñõšPã]³Îç%Ô]Gv)*úœaLãhL{½V»Ùú&jý°ßúW·}z¿Ñ*=˜ÌëïoÛ§ï ìÖïkUêÂF›b´ÿÏQ|õšA3ê“,Å‹¦^å*/Œæ¾ù¦ýÍ7ŠÂK*±«œCŽ—EK½² w¢¥(ídÎÙÌôàë6'K›²ÝÃØ„SG¼k´Ï³t6QFuŒÜ)4¸3Zð“ù=Âj á[wHËßÔ£†N^£êÁt“ÃbJä ŸÂZ8eŠÚIކÿ’Dö¯dòŒª¥Ö¢šS£0Š›NEEa>xõ7þ¥À–⧘²î)iÒ¼mü‡Ü á.…¹%Y=Û…á, 5y%pwdvä›ÖšINa²h6“ñYª|Ï<+®Ç¼¿™çsüÃtU ž»Ûž¨¥“äö‰SÁ§r¿ëõ=‡ýÃ}Øôß Ñ9@^ÜÜ4…0¿ª@›NÕéÌ‹Y$“Ë&`mÏ!4Ù)œ9N"·òÄâ“&‚ §’--’ ²ø|6Œ2l\!êp›\QÒ"¡ê2<ÛnÒ°éÕ䨾á$h™™Ž„¹WüúéÁßž¿|Õ}zx|âh¾| r›&ÆþÒ8Iȶ˜ u¢‰‡åí_ êNÚžþ…}GÃïjh>ˆò<&¿O¢«ñ° ÏÂóWÝï÷OJÙ*%q'V‡Èn”× ¬f±³‡wÝM_åRºÖÓG硃?Zhd æÄ)Jñ=F¨ðœÎWÿ<ùîåÑ«ý“ïöVÑXð³ªÆ²Ê†¸•‹æ£{q³¼7pÿ4–©€„¡sVV0‰ ÐWáë˜aîìÜ•„exï¼t¨ ]ªsL¥¥XÁ.Ñ4ùŽè '|’»(oZN™kY´Ÿ—Ð4Ä‚høn#Ï0­íbû(_åL ™=& öšœÿ8¾êÚ}^Öß.äáý×ÈÛ=´å׉éqz%!ó”ñRpC§ÆKY€ƒÆ%²;ѸÆ7èD²¹ÙÞD7’"LágÇi2¿f“¯§^RÕàV½äنŶ-sã¶ eVPÄ¥m\%Þ.‘X˦‰uvßò=R E]ëß®ÒÊ)=-9¶-]^’`é6Æi6B@C 5ÑøÊÖ…bhé~ó~4.~õ»ÚýêËbý YàAÅfyö€\+¥{0!½êv{WäXõ‹d[»¾ ²r¢üŠê¶4ªEÚ$ Û÷ß)ã$LU Ì„×ÇzÄ_ Øt:bÜÄÈÊGL¶bý`x“)ÁXùn·xvq¸2VS T"$Pš:(÷¦ QÄV·Õ»^ÿËŸöÞðQÝ Ï†Ñ9)ßà,ü1ŒÆÑpþA™dý‹ä’`·§aÞn·iÄ<¯jÔgIì ç$œ Çü;ú åOé©Ë!v™á·ÞþOíô~-|WEó^Ž’<ŸÄˆQþî/ï(Ô ©6ÛÍg( u0OPuª›ðÏöÓ´Òîñ¬œ›ÔÜì ‘ÍÆÌª¿ã 0Ѹ¯ÕëµkB¢´·ôºu?šÆQö4½/üîD ¹Ÿö/âþ‡8ÛƒÕ”ÓŽß¼>82Õß®äÐn¨ €k~LI¾îgÌ^­ÝªkæË¿ÊÛ•„¥ü±—„”‹9ä¨k‚šóä|Me¢K4‚èo½;¾ïÂZþå±ùñÕàtÃ]ÜøïŽÃÓûLdß]Ã|µíCo'œïø‹¥m½m Nᑹ¶ÿ×LoÇû¶}Ê9»= š¯Úeœ¶¬õ¬cÕ¿påuºÿñ7R1–¶B2Ò[˜->֏Ћ~c?^\‚í¤ïîåôºÃ)Þ''X%½çÌäKëRpÒu:¬PåfRß½Û‚boÿ}YÕYÍ«,è8ŠjÖßà _ÿ£ýöòn¼{÷öݻӿÐl?X:!ßÕ‘^å„ËLŸ¼îpú’þ8::ZþÙdþ®Žç¢AßMæuøª±Ú¦ZgW±f¢rKYŠ‹;æèS0G®4ø 7rí›oàšF“l§£Ã£ƒ“âÛæ×¥„¾nuæ ¥þbpŸ,÷‘³YH°k-Ø×ƒ6ü_%7×åJ ‚™‚ÛmMn¨jRêÚ˜ó—Ðé_Õ Wá¬A¯W¿å޶J3 ÙIÚA­0\|×]ÿ–´¿Üx7~3&x7Ò„B©ÆÂX³Q«›–íÅy§ ¾kïÚÞ óèèoFhýŒˆ«*ÿ,å½×Aª£‘iNê$i®hùEŠÔ@>"4iýÇä<‹ŸÒŒ¾’—•ww„þç ô µFŸò^· “ù€Ž§ràÊÓ/Iî\S,â_ý:ð®g„nüPŸFåé«è«PíQÌ 4Ž3òp¢ýPËCxŒõi¾9:üGgYŸÆÊ›rÖ›di?Æ€Gê×»åB¾õÍ»vÎë»wõ(;¿l¢Wåž(§ß½«SV_Æp3Ôuà÷Û%æ_…OMò ¢R9»ôæ*S_{qsïZah“#‰,<)“êû4H/]:þÖ·›áÃ9§¿õÝN³í¯RÉêCqžƒ0›'ó¶¨nŽYÅÝ\¡žžàN8ô@^“) «×¨K’]Ù¸º,¾®RÙ)úã¿=m-ÈëÝdêÖR× Öµ¬[ìóÞ3Ì ¾>ßSý?zùúÅþóÃt¿ÿîðäàøÕþ“ƒðõðT©[¸°œ a]ZÙüøöþ|Êߟ^¼÷Ÿ>}}p|ügϺ¸z*v[&« Þïôê;ýq·ùð'/Á+}ð`Y ì&xvúãÎöOÒ¿§Ã'ß<ùÛñ›¾^ã>>]mƒÀ¿ž vÇ—ü²´ó«3-go˜ø×³ñØÑôNæ~¦¼üI•“PYL«fQZ·­_PéºZpROn@}pÙá´økåR Ь¤ef…vµ~¹òC”]WW›ûbEº“jéï·Ì/~uÁôP[£Gakn”0ÐÝqÍ•kZ\ÑÚºè¬ö?o¿>m·Û4`þ×ñ}Þýfûßluµ'C·ŸEùE,éSZ&L2¶Œbqª2KVvcc¡Äή¢p¼ÄÕ½B_R‰úZªóÖñ‹cZË·f%‘އ¸ãsaÚ¶ÕÝÿǤT\é»b™çÎöð+º½¿D£9+Ìñttw¦ê;SõÏlªÞzü ²TßÈÞ,D÷ùYòÑCø¯Gˆ¿²ÜØÖgÈŒkdålSÇ3â¬=LÏóÙní£Ùpø]4 ãŒÃé1Š#2)×­#å p¬aÉÞ1Þœ&×>†»8­Þÿw {à_úS¡ƒ·æ3WÜ.¯Ú¨Ë¤ˆ›™Âù*LÇÃ9úG›&s ç™dq§’úL±’X{õ”½ñ=¯–¾õ°‰x—²Xt»Ëv?ͤw_ <±¦@…îQà6_cƒF.$Vìás]ªaX¬_QTO«(ƒ´ÇÎ@ö3jœà2g±º0ì½LƒÏávŒ³.*—Ðm±Ž{×Pc~KÄ0ÊZXÀln٪ΊG6ÂØw¥Ð½çòEã°a ëöpŽñ…,¿Æ;Õ¬ˆ;#¯UWiv|!Õ•/ß¼~î!¯ÿLgDHúPF& \¦4çÞA¥@Ý&*N˜ 4oXª‚äN¨½ü0å*nQ®¨ ;õ~-“BEIMJ-t~=HòŸ3”‚æ¾ÏfCê|‡é•áFñÙŽú†Ô3›ÃÕ„àR¤ÀÝ´\‘–1êO¨•b¸A€Rfâ”fOD²÷ÌC8Qè¯ ÁîǬ,‰½Þw˜¹²Ï'cªIg±V›ÔYES®ÈóX;Çq¶>n¹™¹×øÍ2ø‚sa"Æ\¶lä.á0c2Z‘î””põ©qG¡§g…©»ÓXœžŠ©AhŒ.;Ûè¼72Ï5#ò ]–Lç5–ä»é¤ ¹ÚDMÃaò!7¶Û»mkkk24Ë%­âYŠ1@ÄîL1:áœÈ3§/©Ù2N䤵Âçiúº‰+i3+ØeEI ÈH ÒLÚŸ¼­ªy©e€&P©òwbd}ðŽ'P}=|3N>6QTÑ;ˆ‹X!Cðï\íüG ´A,´fjë+`ùZkýVÀÔ6†þAĵ#„=§`©Ö¹ºñÄH1’Œ´O"6ñGôÁ î3ŸfI¿9ïÖ´Æhñ)‚yR@.w"JÕdË4ùÀn-à¾Ñsá)‘ÀáàW%s`®pÏ÷ìŠÍe{ÔÞD=%: ]éº,)‹·+2… gú¾í6ÆÚ-nî%_N-ºyó >»m¦zDQN)ŒÆçCIo޶j@IÓãÞ²ïɪš¨ÏÛåÉâ~‹B£·Óœ$<Å>#T'¹{Î’DeÆ &´´T£ê‰H†x×ã×êäÑì¾9*LEaæØÍ3g"'ÝÓ¥X¼)qÐxÒÇ,M¬×Ì'pöÏ’˜ò€a‡YÝ~ãö?+¹üMÛXlÿÃß¹ö¿­G;[›wö¿Ïñ£ÓiÀzÇÐíÖkÈl­ÑÄ} ÀqWzê]ú]Ûìd_g¼ œw<ßyü‚ο Š¼>¾Éó¿µµóÎÿîÃ݇;=|çÿáööÎÝùÿ?O™{&¯\­¯Â@Ÿ³àëÊŸ ø.à¶jY¬pOMbÈ0ô¯ùˆÛLÆ `óN´Â79*¶úÙ6¾·¿æk'™™’ŸA«ÌU_ŽÐBŒY Ö!ÒD̈T¤¢–‘$Lu̓Ll±±7RUJ•ıZâoŒÆÈÿÉ0é'Óá\d¹6äiŠfQMþ˜¡zÿ^ƤŸ?°Ýxß¿'áÇ)`¸Ö%½„zïo±É,ͪMEð£Paaújú”PšYýNË&¬IgÊÇöG¯ú¸\ÌAª¦ç"¥T`DZ›YAqÕ“y“nûTUwäõHÿ§™îƒ[¢ÿðð£èÿãÝÇDÿ>úÿðŽþÿüëoC2þwÛâÿ=†õ¼ýèîþÿ,?_/ù  ~xp~Þ.«aYo,­!h·µ-ÝD“©nf®L<å™Ä=‹.Tß9”-Î1¿ˆ“šÒµA›ë{ɸèo‚9ÎÄ £} e «"FpïÞÑ}þ•¹êÓñÿwmYüÿ.žÿ­»óÿY~¾ºÕŸþ>I'ó,9¿˜†õ~#܆»?üW gûIš¡¾|ª”rO€&¹$Íò6|·üûkü.ÒB–q`­±BÒ3æéÙôŠÔ–9*›É`$ºCÒ&3Ó+vjïÕ¬Œzø<éÇãäf ®ýÐçœ8A5N)XÓY~WÍâš4hJK¡¦Ü¼Î>ÜZéè6jŠ&ÉòU¨Rÿ¼ÛO%LìC<¿J³â%mˆvˆ4 ÄiÈŽê£fÅŸ?¡ß׬@9vP r(Ö«âÔ[ê'µË(-{WïÜhA['ÙLjWéöžŒ«ôd¿5ùϺª?‘ü÷xwg³(ÿíÞÙ?Ïøç¼†ÙU7Än‡õÙX’4ÅQ ­¥oÄzOÛ þr;¬oonm¶6ÿÐÚÞñÙ‚k~´»WƒÚºîÙË+Ûjs¥[«T*ᬠŒ½ƒðråRWÖèÍÉJMæœýÛ@R½ˆÑZßâSÛIÿ"ø'¯"2Á_ñà6aÇ7Wêø½ Ï8ôã "r/Bç™ Fšlµ·Û;½- ~ ušô”»³ÕGè8ÝÔ8#Íï¶¶¿ñ5Ïx-M²ÍNGñRí;zÚ´Èñö…ÌM¢7N@¹cñ묅Ò9¹&DŽҖKŸh{l~ÓÚÜimý¡jBž%ÑÕ¸ÃÍ)Uz6Q‡ÀZ79Ö€nû´´µJKÖÈíHC”QIyIZKQNÎQ\»2XŒA,ímZí=®jo€ )îù÷Ú¯Pœ®ò÷‚@ Sù½#±Í÷S¸Þ7.´ydfùM‘g-ì!5J•*¥6¡ç„1U(S!†Ô)×®dGaåU ºJ±ò¢e¡YÆÍ€7ãû,ž¤?ÄÖ©zO{ãýd¢c÷èxÐK?¾gwOÊ/Ér$‰Ãá%ùU(ð Ê/ˆ!œÁüdyU)2iª 1i1ÞŸáý¾mæ5ÒËÖâ%SJó‰óØ´ÖS™²kœžÍ 4«¯"¥™3/1Xî-Yî?´6·¶¾Ya{©W`Ê…êáQÑ÷ðyU½¤!>ÅØÔ£ÖöãêSÌsðÞ2徭 kFê¤{ ¦ÉW˜ékSƃڂ\5.$ý°ó5ý§½BQq=Þ›ìEŸ§°Ì9Ñ6¥nÁÛ2]0Çp‚PÊI¸µÝ{(­onɬê3&)g–%ï^5¦¦ïM4`êÉ1VM47¾«ߪ8Ák5Ž®t‰ö’dWJ¾¥°fý¥—½£Ç|dˆ^i_ãì~­Ý#Xg#ß &G–j¥Y0(‘üN}‡Æþ¨µ¿{ã±m_Û–÷6Gv¨Ø~OEa#p1š/ß»M·|¤l@D^é`¨ž!àw.ÿ„ÂÐìî¨;VÜz£3 ÚKé^žDÙ”§™â å#¬Ž³Õ+¶=^D±¨° ´Ÿ0PñT…F©6¨Y˜$L”†‡¨‘޳¥Øajœï8~\'Ÿ>~ƒ“ \ÆmµŒ›­­GUËø†2­’DÔ·ŽžõçÜe ƒ§ºQ¸ê)Mõ¦Þ6[ÁâZËï¨o£À¢(§Yı 1{(«µ™xBs㩽žß8ã77æeñM‡º×€P.Ôk"âHûôèk}2×ÕUŸa¨LÔ¿ (\ôLn-l/;9Y ÕuEêÖÀõnòBf³q`üµ59híœûp%;VÇ^ÆN[ª0pÔÚ9·ŠØRqsÆzbsY“(“)Rá;eç N‡ôBá/'ºM‚ð}£Pê`[¹1©õÊå¨*Ï*V°°’†‰1$éÇŒ|’¨j­Qâ˜òÇU °¡È)»JCœ´7º@mò¶¸j-ظ16¬ÇUï 5.Ùå €ÅyÃ^_µ2,…œ‡Ê6 Mé…5‘N¶¤‚鈟ɪgXOk2è[Ï’#š=‹¥ô/¡9i+YM¬¢mCÔµ!µn MêÕ8pX¢“'dØM“aPá.tÈìUMn,RuÈWs8a½®\¿€¥úŸûG‡ÏŽOÚÉø“ùÿ“ÿkÿß¹Óÿ|–9žáרà `ág°ÿAfRÏó¬/ïâüÄÚ&<±v¶{?dÉ9H4ñ¿ÿ¯Èÿ'ëßÔt}ÿÏG;¶ïü?¿˜õÿáf[àëÿøñ£»õÿ’ÖŸ=ø<ëøŸïÖÿ \xôà3¬ÿ|p·þ_èú¯°˜ÿߦ×åÿ··noßñÿŸãÇñèOÏüN€^Ý¡G™(¨fûtl…µ Sk!§`ØY:ËÃé5¦ÉY€] ÞßvûgXŠ(4¸´*oAP—³ ‘ð¥ÒçªFYQUÄþÓ®CâJ4òÃÐ9hûu=‚š4š‘•Cj#[O"TqˆOÕøè5E™Ÿ¨^Ó©7¯ŸçM¸°Á$G,Ê ­3zcMÔHY/·Cx5ÔÒ¡  ¨Õ G)Ž碸¾Œ†É¿h‡1;d ÁR;¾[Í!VL0KËšÀÊ@¼)íéÅ SÓ8£VŒûk /µÍ:…‘£ ŽUá¢WD3„áW¤•RNuçΙÄ²ŽŽÐDÇ‚¨Äh‹Œù3Œ²ósÏ<‹c9µ›ÀQ7CÔÓ”\Å5øˆÁ¢T?P7šLm”S<_³Œ:¬pßXµ(hÓìi*£1¯QÁ'Ó)b%Óð,B´&Ø:Z”¶€ÑÔJªD ¯Ê–¥£våâ]û˜Ä•Êì›Å=a(¬ríˆ dCr[¯¤q¶W¶gÕi–IÐeÍk%/"÷¼;ë+Øbá7Ép È«ä>ñRüÓÅt4üóŸzé`þg~…Y|¶·ÑKÎ1Mbk³½ÕšÌ·Û;ä¸ýgïã?=ˆ Ž¬Pƒïó5¿Ýö|»½â·;žowVüv·ïëµó´ú{>n-T¬þLøk÷Ù ßny¾ÝZñÛí¾ïkyêÿ>þ8¥AnµwùÓÂÿWD9lü™ÿõ—!2‹·'ÔóÐýúíÈ?= íiŸ‚ XøæØ$ð(g¹Å‹àŠ0*x\Ã9[»³ÏÅiŒÐC'7…FMð–H‚ž¤ÇEôÿ "ÓÍ Ö Ì¢ÊêÊ^gWâ4@ó0¶‰Œ¿ÆY¶±zÉØì+íaÒÆ½ŠÆSm£ÕÈÕ½¹íD¢["j"†ÂÞ®oNç ¦ÐÒÓ/€H¯BîÞŒÁ« ‚®i:¬•Ò¤c*.ü Æt RŸ8Ë1°%J›’_]o—Y4‹·yÁ•‹ÛËÙÅNùxFC[FË}‹-÷®j½AoÏñT²,^î4²ê{ ÞØ‰¦Ó,§§|±‰ §ñq  õÈXÈé§–J"°ØðRÐe„XJògä\‚-,û’0K Óp²ÿ5Š’äÂÍU2³sbDKË‹„|pT:AÝ‹Ùñ„Ю¶D3Ìg@‰£¢ž%*<¹ˆÖ)P ™ÑºW¸oJÒå쥱N[#¢Ü†¸²aGíö7$QRXÇ’‚ªÓ¡Ü^ŸVg¿Œ†3MŠz,rÑ®Àj~ˆ³TëE¦˜$Në>è/BJH¥ÉÂ¥êWB‘$œh>0²Ú^Mð#ÑÑU2M¼Ää®Z´ûêA¶EL•nðXPá"Âj99 ‹ÔÝ>0(ÝzÐÀ ª´pYSY8ÈÜK¢xJK`úˆaÅn‘¯Ås›”µFè|¼á:q{]¸£„ZâÅm{osGII¤}Š]46¨™7¼>&¥‚g¡ÊAîí…µnw%ãn·ÖјoN%m|­¯K`>AAaYÖƒ!CúzãÝÃx5¨.g%+̓æZ¥SУ‘×:Á’{+’””DmK—nœL£Œ*Sf»¢ÉŸ›(4Ô¼›ÏЧ0ú¡–œp80Åãe2˜EÂI°|Nê·˜Öܱ|_Š´rGÏîèÙ­Ó3K–U¾#®ûˆ‹¡´fFx`OÓQá­š°• ám:RÉè—ù²H1ËEž„›íëù³¼´üð¯™Â8øHQËPÁÞü*è„üùÇ)†XÅì<èˆ È´€Fø¨?-¢‰|Ök^âVtfj“Åñ‡ßý ›€|Ú£Á"¤›PPúÙéQ¡Õ÷…(?é€!¨“EÈ4·;³ë‡Ù]vf×;³»"ìÌ®vfwEØ™]ìÌîʰ3»^Ø™Ý;Ø™ëÂÎìú`gvNØQ"BðY=Èɼe¼$öBjFq‚mvuuUʘYæA´ wj© 4ÝAžVJì†÷æq~áZ~BÌöBWà¼aˆ_SU·»G;¬kÆÍÑÒÅ\S­ÁiÞî_À ÷ACÐÙ5‹U‹è:#gc…è>ßjÀ8%\œÕaqü¨8Ÿ1†ÐxÉ[÷'ÞӴ眠@ÓϸÐï.u“·Bª¼nò—¹És`_âRÊib’ñeúÁlOIé^èÑ«`†Ññ0H'¼ÎÎv͉UãÚ»’Þ›VZ„V &5s–‡y¼ì»šnû w{)#yÕ–·ª²Dßü"îE°÷Â3JSŽ’U½Ñ&-v½á “K¾íìœÒ(¿úÝÃ6¨­-~±áÝj¾©ÝWÅw:ðA¹\*¼©=QŸ9±g’^½¹šºí“èÓ¶oU›ösÙ¥×ÜÓkî?jíûF£zç_³öš-ƒßmnws_¹›½k§´Ú33K5„-²óËFøçpËlë®Jòvá-²=Ý.OA·[߀{ Þo4Úü‹®äíVç6PÒïŒ:V¦ûB(ͳ¥cÎÂ:6M]Fêb»SÉ6©ãiL1W7¬}+©uJI§«†ªÏêЩ¢ï©÷õcч#χöàlᬕ;(sù¶œ0Ûž^`ç&s ±ž»¸^÷§áÆŽ6Ãj†Š4m4÷· ÚÃð[•Õ|b‡ÜÁèTŒC¹8©—o7ÝÁ âaq÷ÅÆŒ¯T%éµ–Óô‘ê·Þ¾D»0L *VšÜÉÞÌY‡ö·i¶aݦqgíþ0ͬ_þ;"fLæ·–ÿiëñ£í"þûÖÎîþïsü|u«?ü/|’NæYr~1 ëýFˆ)(ÃÁ5Ï38Æ¿ŒT(¥YÞ†ïöAyßåáë˜DÍA›*¤Èˆ<=›ˆþ>c¸7‰  ÌEbà:jïgt{žôãq7¡¢¿K&PJý¯WÏmÃëCõ‡¯ž+H´¨OÙµÇsF;°…9ìíÉw‡ÇáñËg'ßï¿>á÷W¯_þýðéÁÓpcÿþÞ÷žÂÿÿ“ÿ}þ<<øÇ«×ÇÇáË×áá‹WÏžB5ðõëý£“Ããëyzxüäùþዃ§ÍððèÉó7OþÚ ¿}s½< Ÿ¾nàixò² 8ð×óòYxrxòü ¾8xýä;xºÿíáóÓ6Ãý¿îŸ@ÕÏ^CÅ/ŽNšÔÁg‡'GÐ9¨éôo?|µÿúäðÉ›çû¯ÃWo^¿zy|@kq»»eccCo“P¥~8è„Lk­­‡ßln†&}:üÚÙ~ÔÙ|ü¯ð<Êæáï±® nè ìž§”Ä}˜M“@I²¸þL¼«’vÂôò£våó®è´‚ è£< {ulˆè(ÎÝ<™Æ]=”=†½Š]Ñà«\²ðèÈ×BÏš¡axO惘¹b°\ÛÒƒ8Î º€H’ô»è¼Uû O]³À&!Ôb]_‹µÿÌâlÞíÄ 7v·ç qoã¯Bô@% U´S‹*y’„|@ÑĦ´,Nr#ÿÀí*·W³×FãöÃúËŒLÄÕlÓüXã,¾-ßé›êú¾ {r|Bº§ír%6štugªJy:5p;UY¿§sº6­üV[0§Bë5~éžDyf­†™-Æó ÔéçON݆ ¼lZ"Ož„{ÀÞ›]×±$ALð‹”\ùÉ{_éeL-ÔcƧâEQ˜ÄÕ3‹•Ý”=SU&ò¶Ý\P¦‘6éó<çîq¨ž‘€\£kàŸÌQÊØR6cMÙt‚ÈÍòÖ¨G_èγnä½â…].ýõ×®,’ÅÓY6ö¦&ìsu¨]‚õ[—Eÿ‡ *ŠlSF± ¥ñ«ý^X”d8jàÛ(ë(Ô(iæzÂÉlguS#“ïF[WTUE°:ƒ]¾˜{ɸšá(¼ôð=—Ï(Ö¶ˆ½ é§Û¡«|Ý Ï1jØlu’ɺ´Ê×â¤|-š0¶\pN¼÷í©}‘‡PÁyÛͺ²D±…)Å{ßõìØCqª¹‘Òe±¡ô¾v†ªú‚ QlЛµVZÏj~Õ³uôÊw«Æç¯yÁ]UQ]­æ”BHïlê$ÏO<°‘yÜ¥ð’.‡íÁ'mܼ‰­­¯ÕßþÏÞéýÆ^ýÝÕýú_:oÛ§ðKãëF§øà÷¦ö(šö/n‰FUðžæ|i]g/Èãš³ô.3F~ÖZࣂª½#j’ÇúÚ/Žº=S¨*>IÜ-I®4o½²a“# :nƒÍ‘êPïÁFßjàê¨ë, ¾¶2³N-ë|äR+(É!/ŽçêÏ›MÖ®´ëêžÞ&g¢'Â/;Þ~в»ó~…ëD+´í8ËÒ¬^)]o<‰ÆºþR€Ý½¼½Q9‡Y”ä±Ã¯¡þð€ÚÛ8sÊL«¶r5¸åÛ„ù<¨óÛçY:›CŽ5 >f²è`Q¹òd}¥Ý}ô“”F*a†–èØôÔìÇ“©“–Ä76RûäÓ:þ^½ÊPŠm^åþµ­$kO²•~]GYÜ+Xþw@ÞLר\O/p¥94¦¢¹â¢ÐråQ摘ú*J¦H—NαO¥9'›,6Ãr•¦Ç_…dz±b¸`h]§èQ´7˜uàíy”NUxÀ›³Q`är‹ýrx¹Õ{´D# “P)ÛH…õ ¸ÜÞ ‚E/æ–’vöT„VÁ’«’½"‡â–´.ƒ½ê[¢ø|\üÌ~gëk\Ü»êǾoÜ;ÏÇ/®`Lˆã{jWè]R¥Wæ’¶úe €èùE“>óÿ|EI²,G¬ð,´†@’4B— çì!ÙW<5¶eQDn%Q푤í(ÎþÊI|¤œìÎ(Äâh,Ðüœ÷!jCŽß¿—Šß¿'‡UI*d2"‰ª1¥8Â>ø•iPƒbàg¸Cr¸,}¤3ÎEŠ §Ü:eÂý”y#óD¥ŠG»ÛOÇ—Àiò*p¿¨`Ã,´[\¤›/‹oJô ›~‹¿"sÐF­ìy'pæE.zaymvGàŠ.Š=0Cº§#ãá×Zx/tºÂK宫½Fl >ýÿþýY>MGk¸€,ñÿØ~ôðñmmmo=ÚÝz¸ýè1ú׆ïFN»sSs¡YÎÎA¥‰Ô§&]`i­6Žj¬¢Þjo×@êz´tIWâï–ºØUã<³ðUÖ;‰NI?ž—ê’ݪ,+¨]™ÈlÅÚÉ4åÖâ¿iç@>ë Ÿ#‰)ÙÂ’4ÅY<ÉêÅ:A¥ŠŸðTÓ1Q‹;+Á†Ù†ÇWÖZÇœ_¹Ë–ZömRƒ{;õQGëˆ …çä:{ Ú*?—êÙ—èjœèý’ƒ…»IÂ^ÁqIuyÙµ¼NO½úF,:äžOùªn£[`}ãÄÍ%… *ßA„jN'—£Á†mªZ6SÍjø]ñÓ(™ãX“ƒ,mëý4›w|ËJå=]ìVÐtˆfá.ßB–OE «4y–ç žçjË¿u*9vÀ5„ñüö2¸Î³¸0wÖ½^œØÂá‘Ù.ÑÊ_E0QžÿÏ›J¡2®¤—%K|F–\•îøç¶Ü…·ðé)G9ËSzRpz=$ e:D%4÷Žò\FY‚‹‘sjU»§âa‹aiq¡2; 8ÇË누¢AÊÐähf‚°9™9‚Ð^H¾^«ºaò!ÿ£øYšþÔ)šÆí¡Á`y÷¬7ÖRúÖº°œ²R¾%ªZšŠé/¯S¹·‹VnºU:Ùv Ñ¢egí6YlþÏI寽±5çû”¥ÏÌú–nx2äÔN‹ñûÌB_µŠŸbS›^¡Ë(®ÈYõ`Q/Ö¢¹+XH”¾s‘¨Ä#„sƒÚhMÒðô⮺ ‘=§)d®Èö0LzY”Íõß.”­U hûFÔu:,Å%4‚Œ%cKù¬j]àA¬"-Ù8—^Ÿ÷ÎQu‰DýR-ò¶)×|jí"\†·z–¬#Ǩ؋Û`•o8Î÷*9/¹JÀ3é)º6À_Ï©ÄBÌ©S/̓êÙ_sæ±ÆÒ®ØŒÆ„;­DgfK&±ìÏñ‡ÇŒT Í5Ê?ÍÐYŸj˜ Çþ´ú“‰þ=,¨ì“ï}ßö`ÓL`Ñ .| úÿh’,…|[Gÿ¿µµ³SŒÿÜÙÞ¼ÓÿŽ´¿fø¡ýW‡t$ ¹@æÁÞ’Ÿ 8$ƒ'œ°‘ÀÜH̪ç£>q+˜)`8Å p•(‰9«sJŽ|^ôjÁ¤•µ–Õ§–\ÐÝóE`”È0@Uò˜ÆDFF”ê™$ÿkÁ¾_ÂG=!Y‰åE“’¦™'Ÿ` z©ˆLdùIrZdQ²*raB6è™Ö›‡ý,ÐÚq`ZdfeÜ9g¡ô¹–s‚ÌÒXLð­&ßÖr¼¥RJW[…:k¹•¢N8íØ Ð¡NгÀ{#X8JÖ8&kê1Ón&Ã!!\5N«ˆC² ĤyZƒc/ãŒ,*ãpÍã,Œeî¤[ˆ<£T(¤Üô¤ÖX #&õoKâG+ÛН¼ø\ºøâP+ÒÛk±Ýv"lȳÃéG[yÿ,äÅK5‰G–Öµ” ø#!}Còp×vmt0ŠL¶øçµSGm'ÈÇäc;”â˜m§R®¨ü=¬Ô^EÙ´c+lª Ðþ3mvj¥’:^É)ç͹Á•fU}oRE;ÛŸÎ_û ªv+ó©:N›å å™nåáæ[ç’Ûu‚¬D Lg¦ '¥vµrI2– ƒžE—”%]2ÌŽàd)©æQôý‹Ë¿oüßoÿýŸû½×˜ïgÿooÏ‘èªÕêïçãÙàüÃ`¶=x6¸ÿýÿ=|ñ¨ø‰×Òà^ZõjÑü~öÏøIôlötëo¢o?þÇÉ¿îK­ÝžoN{’3°;X6ã\,öÓ¯wìEÍù}OVꂦ-¯Æ|nÃïVd\Ù †Ô9‡n 0}ŽQíÇ›·¶ÇBECMµ‹ÓR¤ç’¹^ËŸ/ý¯÷²rÒ5ys4Y?”µæƒ½ô²;Á$ «)xŸ¡Ül%ø²bC5W«_u…â;;Á/ò2³!F¤šÌÚið_w?_þÏõý¿WW/Öÿîawj<ûø’—œo²P²).W /Ñ1¹À8îÇyŽhn .‹W癥,%a 8Ä "àÉ›'Xá8°´«¬‰Î)y'@,-dSÎT¨º¨®ÎóP›œ0âG¤vJq·9á‰sF:2;–"¹G7:çä%‹–ê0v"pf‘Fh¦4ÙýY–é†þ«Ô$¦HexOØV[$ÉûèWÓ¢”I¹@ (`“<8„yJX#ŸÇQÖ¿ i‘jbxp¶ý÷5ë Ä:à¥LÁ±CdR¾A݃ù8%}· ¼€1Ù@B^Äáñ÷‡Uæ•'÷ïó‘ ëVÌᓆ|– ÀsÙ–ü)mZÜ«:?\NJSµËØfdr9)}D Ùéšú\÷Ç®QOBüX;Á*P¡ÖMüS)jÏ9ZÖ?pec›“¥¬»ãsEæeÔ:¦`ßi¤ >­êp¾yýœ wC¼q(d½’Ä8H`A ¥\5¨F6¼ jŒ†#Ę!æ£98¾h‡V’2 ‚Þ¨M;ñÆ+I–s¨!šDÊì_Äqç餘™¦©lw03ÿLgNB­ˆ$r‚ÝSÚê/rè“ÜVÔ)ÌÕ¥„P–ÈäðÁ– Ø©Á¼bP™z‘ XF”g“5c£}îKkòQ"kbë‡QvÃyãÓ50æÍø# 8P!º-Ò”°ÜEøxºx»Ž&Óyh4)[¬d]²w¨lw„§ ˨Fè Áü^Ó)&?J¦áY"X;€g½DôT1ìC!‰J1 Yåâ»)r\£±µ¸Ð.VQ®=Að4¡j¹S¿’J$¶ {Mk)†aY΋Õc+* mwY}±µU½o‘o¡L”½ø ɧ" ÐwxÉ”Lû³)K­8(3G$pÓ_¹b¬ÿBecå˜°ï ²C¿‰Û_)æîO<¯í‹?;O%?>†ç9^\}X‚dzŸ‰A({J^vÄRðúåÓãÓî³7GOF Šê—i2@¥ê¢é{5Éæ×£?Ê£TõjÞ=„¯^PWwê*qØFS5Ø 76¤¾ž¡öäû—ºFþª»?pÝõ”J_¿šާÝg°Ÿ§ãóúvƒëˆMâƒu>?øÇÉÓƒ/U%ãA‚üÑOÌ"› gl“Od$J–Æ;qØkò¡à o´†¼ö99°e±J³MíTœ¤¹¥ W-·‹=á¥'?„Ë(ÒáMd »®òœ dÄöùMƒ/ ´eAö4î'ïe8F|sð  ¹B²ST%Ù“Sò‰PΛ%ý¢I†`žÐ ÅàWrºdRÃÝí‚í{î7ZaÅì+o8sdé^†³náÓ¦}“ñ––òbYÒ5æn/…±-«‘õ\Ë\Nÿn%묕ÅL­;=ÿ!™tóè öÑ0:ç+(žþ6b4œÿ@w1p>˜œålTbÏpCŸ§|§é ‚èx?Rì‚çðˆJ{\E”RÛâ騥+"—ŸZðRÀâøÕÁåBxFu¿Ùfë} ÃúZ;hæ…êj2µ)‘Vz)ŽÕ‘²Ù!)(4¡„Œ‹ÓqGý,Íóp„>iöqϗ妷 gw†µa{Pk6N>¶’Gxäd<ÛÑ»U¡9†²VÁeÞGéTnÆqjC¦)ZÜOä¢66@` 4Ÿ8å,¨5ºz•ŠšksÁDpN1¡ì´¨>Ñ~vȧ+';Shr;Ó‹‹Bt¯ÐÍŠZ™ÓS;UAy‚€“Zjb%©öhŠfÉ„ã’qaÊä—“Qi/=mr"·¥®fjEÎTœ«ËõúáC¯Î´JdˆtEnÁQDD+ܳG\éˆqck”3!²þ"iûµ³}MVÅíbCö©Tæ´WqÝîÕ"ADO0“²ð 2¥Ûç&ÏUžÊïÙâ¦3Š*/Wæªv·¹ïNjJg4äO¢ÜG$‹ ž@õ;pÓZ»z]¢$cÔ AR‰¼ÿHß8¾ò]93°£Xn6Ör8ú¥ÌP÷Êl2É€ñ‹’-¯ ÍhÓqK∑”Jl2²´(|…ßK"Oq Ž¬n¥<¤²<Öd1k×UbJCÙ¥‹\ñ¶z‚ÞâvG–Ù0ï×ÂÖQíæ[J?åGËM?A£t–"ó‚’?:”Ó^ãö—T¨îEþYX‚oqE+zjeM‡5ò> ^^q<‚6ïeÔ‰b}$0(•ú µ”2Ž7 ¤“n¸é°’Psp) =‰ºªOõíѨkqÈžMq Òöév ¼¶‹Sîau¹›m«'l®*nN-)‰­?Æ1N©05Å´*±"1ªœd~A\{ô«ª÷ö¶¬,Ý¿T¥0ŒÏÁ§ •º•'>ÎÄy\ÅÈÜñ¸ Îè³’›‘‡.xõÄÁýe?¤(FmÁ2…4VÞ[ïÞ•êJÔ1KŠÓ»Hú¼ËDôk¼¿gãS@&%ƒB>ý6v’>L¼Úð &ûÕg˜¨]©Ç„6¨ŽDd“h/†RAbËáTIÔ ò°Ö ˆj:óüP6àÅíG@yâ–Ö HZ4Ž&áº×Y°æò1ÃølJ)é³ÂŰøeÍEi4ªBqÞžVް Vš(ƒæìklÏh"-®i"Ó‡—§ì8Ùy¥X“’Êâ Ÿx4þ©*?ƒŸ­Œ³’­ ™ÆRÉZ´à¥©ØÝ{ ÙýbT#¡ ¹c ¯<5+ž!È„vd̺Jõ ê¤Ü.7ñ‘ìùqÖ¹£—ù6¸5·üBýÕ + çHgõˆ¢,ë‰&´ ^lSª}{HïÞcÜ1 «îëËÐ2žÅúæÄ›;‹©Â4LH{œ#F”.Ô“6Èßr³6”Ú-Äž \ìÃü¥Ø¥½~} ]ÂMÒ\Tþ ‚Pd ªÞ@(…ìS¸c]¨owG.Öb¬½ö”·~•ÑPååI1žÚ§gÀNždR ×ÊÓ |9>Š)ÀöOPõ7ÅwQ¢5Éú0 /UG¥\S^íŸ|GŽ Y¬òcV“-EK­Ì°,_…{/ü*®ˆÎ½{uçq#¿»5¾Œ[ã¶®‡ŽŠv¹¹Vë³ UºVúBómH˜HÀ>máÕ>ôª“Ú®Èn¥ÃX\J?ÓYþÕ¹(|²sánÂϤŸÑÃÉFËDnW±aé\”=½‹W‰ˆ?L•>EÅ@8ñÊ+—­îj·‘Ù}ÎþŸÒ¦«—²uØJ.{ ™¯»/ å oû(GÌî)”å>;§i‹ò ‰ÐI.ù˶u`†ºúÛw w w w ·Áð+uÍ®ö‡Fòùɯ¸¿{!^í¬¥£Q6L`5½m;¯´àÅþÑ᳃ã“âßm1ØÀ#†UQ©·¯(õÀišãË y"5ð|×%XUV¯²=íšýezI{j¶Ÿ ÚñÜ©áȶEœ8m´÷Þ [b~$ŒQy»ÎÄ|Í>Ù-#Ý×.£a­ÉߨëáøѸÀÙnߦ;ÀÚÜämí^Î2×uœ^©¤CˆÚûÝuàÀ®lÛ³ÎfÉPw}[^¤0ûäÜáX¡FÆéþ6ÉÌ@°gý4gà/ÆbÁ<-S§oÅÿÄb¥sBøÂÝÑá5æÀct|²K5…ˆó'«îx›¢–U|}×´íà‹ŒÿW滕3À-ŽÿÇß· ùßv¶6ÞÅÿŽâJ‡\i¯P¬xÉ&þ•ž”žœ¿áDKME~ï`@~mø¨–Ë×Hÿ¸ ÿùÑÃÍÇEüç‡;»wçÿ.ÿã]þÇ_uþÇ@I9Ic~j”&rF¾DDx*_Ä„/>>}@E1ôòWïfÀÆà³¦Â6”Ë 6*«.µ,fÏÿäª Í Ø«›Ç ´þ ’³Ðy‰ÉóÞIÚ0ûÅ×{ÀÞQQü¯šá¯Ì½-“°˜`%›¥4‡;;€ªCõD×ÙJ[[ n Çõ5P˜ç{?ç à:Êàh°Õ@éìlëFV‘U¿ÇcJ3£Òx /ê:á„_?öìë_¤MÑ}1ìM„~x³qüqBjèÆÄ¡-RL £„Q u!ÙÃ#Ǽʎx蛎†]ŒôSIÈéudá;¨(·ŒƒÔébL%î5§dëcl¡UCüMS\“<à$ÓØ Rå¼|óâ)SÐà˳höa4»ûG;]cC~@¦­ö“û¡F»4_{—¨;GcÆ„ˆºÈuÝò¥«•žj¦$¶n™ˆ¼y[s@&Ù+âõ¯Ð‚ÿe°ìƒ^zUóW…³áô³†¯aRŠÓfƒÈvüÝ1S§«p׺šÒf©bímX‚®mÖž.Ú&î ¹æ7»1†3·æg@¹nc@À&óå_åÖ7½h|¾ÊÉ îj.;î*Ó¡ghõŒH#Z¥ê¶[p½õîø~ã/oÛ§ÐÑ:݈¿¨˜×!Û9»˜ uI+o[ƒSxd¼ÿ×tµÑzû?­Óû-KÖó?ZËÚÉ(»è;øaM zé#&¶üµäÛ·Që‡ýÖ¿N;XÁYšâ?èaƒÕh˜VO-_…Oõ`BJŸËIØQE®òöâéyײÁb©ÁAáI©‚S7‹šUb…ó-I¨î÷MO%zmaÞEI¯€î]~IY!}¥OªNÚªíi¥}ðõâ¼çv6|÷³.™j üí»ãðô>߫®¡Ü>ôöÄùŽ¿XÚÖb<ówƒûüÔjñwØüÃæƒ¥mWB¤c³’ºÝ×våwÔlå‡7¢#ÌøŽ”\ƒ”T|¬<îºë½xÃlÔᮨ£m°ñ‚à;£ñ—ÿ%ü˜ÆÆÂûÑz7€ÿÝ 5™7äW‡Øðn¶wï¶þÞþûJw¿63¾·ï¿{§Œ'tèÃÚª5@&s¾ErÙÇæcèÀ’¹0eÓÞ¿ÃŽÆkz~ô·Ý­ow+ dÈšJW3^/͈<ƒþ(úŸ³$˧.vÅÒž Û’–V®_´U)™Æ£ ôñ äýh4x´ÛÚ†¿Þî>|ôø_¿±#ÊcüÕ *aä ÖýÞ¨.Z:ï¾°·ˆŸØ4W 6Fhù$4ÅjTÅEc†×yÞ– ù.¿ßv¶OÃßí…õíf¸k¥1ý*|‰Žhèm¨å;åÛDg+CýÕv{·‰ÞjýØú¢ µ_YT¾&éZ|˜˜|ë8m $85î¬,§ÒÂGK_["Œ–iva޵ˆ[.uƒÉ¿>Q¿.a¿q¿¾ xã«¡Dÿ [ª‚­ \תŽ#}h…™þ½ª¤ÓZýí [ã/ 8IØIÕ­ZrÛßtÅÈy¤>›­‡­oNáW"öOÿ°½R Ö•o°êN® Æ.j‚«'~ïÆm\Kˆ¼AÒG—=l}ÃI¨L)@{M·‹¶dí÷ëGO¹nWL6Z E¨l2 $a{5£»ª5‚ߊýmߟUü6oü¶wvwîìÿŸã”¬ Ýn½6ùpÞÍb Ëkö î#z)&`õãº:*;¯žß˜ÿϵþµÏÿÖæã;ÿŸ»ó÷ó3œÿWûkëðèÙËÛkcÑùßÚÞÜEg?ñÿ{¼ûøáÁK wçÿsü¼ˆ§f”m‰o\‡rÿÁ)ï8POÖkØ$Áñl4вy'<&'vrˆEãèÜŠ€¥ètŠ|—Ž0Qá9T, ^Ì_RÌgòÀntï²Nø“Qø ït,Z1ðãÃNøïdôßä®òC Ž~râÛnoOcn©ß_Ë ¾µýnð§TBÿ‚ÐVÜé”_cÜÙ·:H,KI?%Á»¹öUÂ)ê+X4™ E“f‰Î1©Ø_V‚Éìr쑤ëea˜Â€ó<õ0"E×dÇ`Z³GSMÕ"¸¢’õ*É1BxßiRW7ŠæaÔŸÎú–ãͬ³ô<‹FP©Ä!úªêœä¥¡¡üqmÿL^¥Ù ÜP{`k"&;Å ÌŠª ? ä(0Û®R.£®$Èãš. Òñ¤b2œ3X_¥Á:S0¿ì*~wgèÖ–rþ$ÎA‚jOÙ!´/Å=%ôû,ÍÌ2³wOS W±‡fc8 ÀáÆ³sPDâ*מ¥¦_f¦D-×O‡C‰}„©q4ÐøMýýÞ3gä1‡Áá¹1E°£¬ÝI'µa;GO\>ë_,«Ëšû(7"ÿP}[‡Ã<£ð,އt,ÐsL5A±¯9EÈÈ5ƒt4mÂâMLåªk#ì@}¦U‚ ÷]ÃF1¨ڨ‡åYk®«§ªÃ÷OÔ&¸gž¦ýGqUø lö8÷£ë€ ÷þŽŸÍ†’ˆ —“ÚØU6Ct‡žV æ*îåècó'¡ÂWWWF¿døÏÞ½¶À,,bY.x °{” ©„µyèæ{ׯôOK®SºhkvNÜèêpJÞ€Œgˆ¶$ùUœdvvf!\GÎe)ùL:Œ[æEQ–¡DYRÚ[µlrb‘úKƯãIÆ©s5áAÇ"CWq[+ŒÂ ‚;ٚݡqa)ºo8åQnÑ$hW¸¥^µ}S_ ý[2ÿ¥òî"೚쎫²Òs¶&\Ê0͆v«ÄML3jUÇ™½T M]qByâl÷] •Må~²k[>GM¡N¹ÎQ$õ™ønù±‡@îÁöH[ì,&'Ê)ÊFN\ä²9ãÛ ê³Ùx Í­xBÌžƒbU‡g†©6Žšü¦åìsÜ‘|†ìZôqZÜoäËvÈP‚ÛtÅ®;yzïVêx~섺,V*y wÈ ×÷Ô:WUu^W*&gÓwU`q ;ašf¤¾b÷¬O<³+,wíåÓo1BQÄ Î‘3½…Aèä=’›Ë7ž–nÞ“þu5·þ]œ1S…¼À•Éî—²Ÿ²‚É;“)‡IÜ#itM˜Ž ¶.â\e c†‡÷²—¶ž`öÁÙT¸õãØOé3”gcáE#ñàuÉdÜ`‡ì N$?¹¦7ÿLg5DÊø+ M mF5 q±QlŒ9¥À¡vÀú'—˜Ÿz@fcF–PäY]EÑ¥€ïÁÔ*ŒaÇÉd64rÌ™^‚L¡4 £„¸™Ar6ÇjæˆÎúJƒ{Hoè¤ —CUP¬.‡í2Ý4B]Œ7£’, fÀ‚‹ÂsÆè$rÃèOuu‡Ã'$†EP u51~Åh>q‡j¨^Ú.ÀŒ(ßSžúC+e¨áÙà·J´Pè* }¿¸Sýtõõl\È+‘Xiµø>gT=íx=Ïzå9æ”(AKcM©­…ÛT¿T4›š¢ìœ8fÚùœ;eʉÞðÎ*Α³’A“b®ì–Z!7)n*õ«j¸ie²1³Žó€UÛC¸Sn'|‰RÝ,Ó{ÛΗãY3£¤5Ž,’¢hð¹J¶VZ°C³ÂZÝ€êÀ×…Öá"6CÜÀq¥yìÉÎ×… ÓÝ#ð$“1õôåû4ûÀ‚µ°jÕKSE¬¿’J4#ÈÒ-ìoRZ¡/HXÃ93|s!Jìf„c. ¼z<­v¨Of¹íq"DI«L?/ªšL‹÷N¸¡Å„é²¶ VºÝ­Qp“Ĺp¾>$”%ȧjª¨YÔÚ£ŽºÕŠ’=OÓAQƒÁ¤€ÁÝ7Ÿ'º·ùå˜"ê+¿{€Œç‡~“níCBsÖSù>”BMÅÜI;²”‚j§Ôæ¦ÈÕVϳ¾Cl(³S9k%|€ Y’/v n€‰ÚºNa¥¾ªðÅznXõ2ÕæYðíø"úŸ٣ȫ…Jbd+N»—e’ ˜ÇfiÂï£üS¼9„ž‰Š mX‰«Ê’Ž%yhDBIó¬°ºÔ[õ7ÃCsþ4*YdŸ7•»Hœ×ƾmâ!,¨M;”D^Œ4 {@í68‹ï^ú±‰3€7YšN•‹Ðcô½Ä<–奄ßÒe³rR¯‚iÞ"äššËz©CJ-…„;=Xš£˜¹ä¡J¶­´cÞ…yòj_ù(Ãô"c|¦|JÈk¸Eæ:ó d(¸:%+F*ù´á½LÒY®3ø@ ÖÌ4Íž5‚N«%…ßÒìÙ—)ðŸÕ0ü½rKt¾Ñ5‡[í­öŽ_ýÞ^9µ%ª(›Fx"òf‹V I CT8Âl’ÜL±ÌñÇ]ej%=¶øÔÚ¡˜Þ±úfÜg¤.{jß»‚Ëû®–rèNЉ@KÍÒY¡ ýÿ{à^éu¨ýÍ8³“*ž1^ÌK%“ÜbËõÔ åK2L‚Kš~ÈIÈñíUYï³nÀȦ±N²CØí:á;»:…ïæa¢±<ÿÐ 1š ¡ñi®Â¢j:?5Þ½¹EÝéhUR¨<‡,Fabi¶)5—ûήMN–ñþf¹Rº#0ÆM 7ª/Šò¼@;QK±d5j¢þÁ¦’ªm…¼h/žîÚt8Àt³Y:MééˆáC»‚sÓKZ9°WD!ìí_eÊ€I¶ŒX«Fnm»Ã¸®MZ2ì..ŒÕÛk·°|j¿¢êri&«,ñÜÅÛìÍ4&S#ý)E¹½|M™ÄVŸ‘°í!)BÕǤ ÿN{>Öãÿ!cIÆjìÓ·³óðuŒVsÛ¦ýuõgéH!½‚êþãT޼ ÉýLÊ Ïa`|ÿŠi˜‡»£üþ5Máò×…ZyrþßF«²š‘é¿7;Ï‘Ïâ.žG³qÿbñ¨O² \Ù/Ç`8U¬=ާ×qk÷7l2JéVûá*s[5Ãx¯@‚Æë°txOÀ‰›õcC^iO^Dc¿=ê°œCßEàá\p*gѰNV]ãÂÚZjɵ׸¼¤®™õs--ðÙ™3b)>ÄñD´¦ìïAüê=š!ò 5†ò90¿8·K+E5)ÐØêRÄõÎ;ˆí<í ¼ ýmÄ£8;Çý¹ ÓŒ¶N4CÒ}œt›?@?{gz¦‹8°ÕÞ} xàðôU² w5ùÁÀ²’.Š#‰ ga·½ëT(—’DÐÓp6N¦*AœŒ³p6Ò˪¶ø#^ rý"³ZÜ-ro™XºOI¢D¾ÌÇH™\—e)‡-n9l J– —DJûх’Nä ׳ÜPy)Ø´5Øy‚M3­"0ÿñ ʆ#ßP½Ú°¶•`N×ÕÙ J¯ öáé™H1mìqœt-õ½Å¾ÂdB™Ò5èn®î#<æ„”ÛB‹q£Bψƒ‘Ã!+±§> K*ÆeH!nm/6§¦¤@¢›}é%çç„o%₞;Ùƒâl†¤ ­tJ í´ g$õh›…BÐ5•UbpÕ½´{« ¸¼uNf½‚àÆ½¯HXmè?û¾¥ÜæéYTž(â ÐËäø’¦‚f€f«ê†Ä£ 7Ëó¤=VѰÃᜪs%1ÍrÛ] |ÿ¾'(™ÆÂÎq¸´ðJïß³B‰1¥ Î%IfXªÓ@óæÚÂöTõN ÖqÌ‹÷^||Ž-<·ÅÂQxßÕç¾ãF9ן=ÐÿÆ{:zCD¹Ö~ 2©È¢Z4 AUÞžÿ›Vͽ¯°ä—TM`º=Ø ö´¼xTTßoVQI'o0âsVP nÔGÿL{–™xò Ó dïéTòÐEºí¢.·¡ÑM9{!:âµÀ–cÏ4ì«èaÄü’«´'Åq°W0Jß7Ú¾Jm‡S²h¢§Œåüa»’˜¬pú’†ItgoÉp–‹';™ Ùr”š \œ+˰J¬»e‚FsNÓfs,g*<- \Á~#bN-nÄ”*Í o£.U¯Ê2ûy’s¿'bx”óBŠÉ$c8÷ âìÙo/i?2û6(:ªû-Ö(úo:|˜5Üitnb¶Ôm[OT3yŠ®Û93ÛèSNÓl£Çˆ?¥ˆcº‰w<° #\¸Ÿ!.pÁjðs2Î Ï|ª”á—ÑIØ aze;^åÆ_Éšä§òuPpt»ä“Dï¹G‰¨Q-ãWZŠp°«N?ÒR‡! »à%ç*C=5or¹-vÞì¯*·/ËÊ,o>;)PîMÛé}ÀèVÄ,Âm ÒjvܰR»% ¸âJ1™o4 Räû÷_ýî÷?ê\õŽ=ÕOpÒ ~,õ`–g”kH¥ÅcøÂ‹gמÚâ|†u$ü¬EÏÐë%›Åtø­°Ç—÷7$¶ÉCWi¬G:ËÕK¦bQg¥2é–Ñ k*éôÖÀ†³A¤!€ZˆuUywØ·Sd’aV¸]êÍc˜èMä&ÄßÛ±ÈÇQª's5_‰o L‚Ó˜°#÷i³‰ð-¿vQ/>Wžwêf2^Rãd2‰§,Ô‹ÕX™,#`ŒGÂn ‹gŠÌ9º"Û7JW‘QTùcuæ»pAðH}àäIºÁ„ 2É^q2 «ü@œ“c° [Ç®¿È|ù·œíÜ"ŸžŸœ’Äi 詹ÀïÃ9‡û®¾Ù„:eZ>sîþ—êÆÌi?5¼u'Sp uÈZÌj%ÏúÏeú5• 'äI¯_©C8Ú*L˜WQbÙÎW ´ìÃJm›Ó¿P£}êt"Ó«4<›åHꢨ:Äbj$^:‹«v!oÛ€ñö8 Nctv\ÓÊÙD•¹¡KjÛ;Ưü6þ8Í"Ë÷êp$톼Wó ¨YT¬¢~ mE1:ÈÞJÔ9’^yhÇ$¸g1”ïårB®ã?6P_#•†ÃHJ¦sNã=G µav?ÔTóÉOÌ¥>ü~°¾ºeÝATͪf¯(‡Y8G@*N"k÷ZEû²&OºÖKj78T¿ªç„ ‰0_™QÛ“=±NP=2>Žðj퉖ŎÙá€{›aÿRvÿ2†Õ<ˆQUP¦_€Úþi<&·råeÉÄR¦¤úÝüÈËÏ’°Ÿ¡.R/\ËC…Z›îÄA»Ýn”¿ª¢ØÌ•€Hd’¥¨¤ÃÅb=+¡ŠÆÖ3FNKè”'¶€’ž¨,>”Ò‹v×ëVWÐäNãFl¬0EÊ©óº3dnÏU©˜á ÷·åùÄQ5r6!Ô«iQ§3y{ôŠ-úÒû¡î^;š «¾RöÙC½ú8òvÀ²’NŠ'ÒXÎÑâ°\Q¦ärÜ †!umUr¯Ž÷ï›S’{aÀ{C³\šŽ¯€È]Åè®»ÎS+Økxz@Ö³`ÔHèˆ[Ò…­Ù'³%J®k8.Ë(ïÖlGãÊ õ¯ëTòOÝÝø2Û³hƒÒ*Þ›cè ÐvNŒEšœa|NL»ËeJò Êê¨BŠBã¦9ÚúÑÆ£lÜ ÙG6©ö¤åôlm‡"#nC¡³Áêäô®²¼Ðí§é]­6Ëï£áU4Ïݸ5mjE¤mä‰l4˃ÆD7."áמ‘\&¢ÑØ:ŽåÂæ£Å:_S®¡‡cÔ"­qZ°Ó*»#[9TÈÜ€t Ñ㊂†]“Wc/Š÷±¯Š–>15áŽÓ6³ÈvBÄ“¢p5ÕJ ¿È@Ä*b „ªhãÔsžÅb³[ Y`$·ýÔfwØ•D”¾Q>ÕªAÑzî+nAkYßÃ>86mû±<*¨ÄÄëá·dÉ:‹2×Ù%³,¾À|Ô—q¥ÝóÛBЬŽÄÂC¥#œÛ œhp G‰w€íW=s«ƒÉ€Eü·ˆ\»²ê=Z£ CkNaÏ .Õªse—1wdæðjîÞŒ)òûý{knËé¹êfÍU è4e+{PJOS$Æîˆñ6t‹=Û×CºîñtFHèJˆ¢q]KmQîD˕㳶‚×R SõM­ åæ#*<ž‘‡¡Üô¹LÍUÖm{ñj7è­ÏÅþT’¸O9Mv”ý‘ íì÷M^õ -"0“eàc|«²³!œrùfGcV5µ‚5ßʲ.ÖXG߉šôÙpÚš¦ìÁÇ B[yøq4ăLéü;®í÷ˆ×û›h±ö/*¬ØP:ŒÐíŠX m5GÜ­™_!’Ê4ž°±”ÿ¶·€{¼Ê†¬êqù¡¤–xsWÃlxâoî°Ùî°Ùn›d«jà\™"%.Åø¸øi%VÑ„æâ¤žO´¯-_ÑÄ•âèbô°r6 á2Õ¬z?ô„t¼Ž¯*&S"ŽõWèáAgÙÖ@+Ÿ ‡Ë Jš4÷ŠŠ†VèjTíôê0ÐE|'\—*˜u ¼F/V~AX³ rÑ {²;¦ç\9…Ø ¦†ÕöE "S‰ÌV^ Pt-”Fª³J CïDîðDF¶­r4" N¦,Ãè›fÍ\:¢fþÙëߊø®+¯[e÷²ã”)&%š:qÿ8EΑOQó ei¯š`¼¬to ï‚v–.Eòs‚ºŠ¦•±Eã¡0«`‹…]!ƒH—ÂCTñV8zÐyfñ&rr²—NJq[· 0Qa|ˆ»çc&¤ì¯v^qžáT F†MuHÓ";Fä¢ mr†Ñ“A2w6 ‡\zþ3Kú†bSú3“°``"/<âÉE\ &óQ3ªuÊh–H(´ ßàZ)”ܲ˪|íx‰[,q®½r¾××Z…Ð8gjéY”—â èû”)|éc E?9.öMž¨£êU/ÝXÐ ts‰ô~¥šÚ“yÁWªÝn‡¥gâ:LÏωD¥ GÙùR åKß³­ù6ÚYZXùà)š:rCM D OGSù4:Þ ´ .¸Ó85T~o¹UL/–8ÈØßù|î9ok¶ÿÌšº·îçÊòŸ˜$'Çù ~ÇÙ«Zo,Xf2hë´&>‡_ã¬nœ…Úq–¥Ùòù¬=‰ÆØ19#÷à`ßËÙënj_ˆíÚò¹(N^¸t| «Ì" ´=€ßÀÍu@ãª2¼\TPScÙþ¯<r“ÐÄ-˜m 8p¢Ô *¿Y¸:¨YY¼8µ'Eª;‡•©™IEKÍ*þµ`*µ•«,&™T¯Áe³ÇîâË'/Ï}ÑC¸Ÿ0‘«{„\E¼ÝǶ<|ûÕÙ ½º»\¬+ÏO»^8/âÝ8p*ÍšÞã‚^à–/yq²óóåVƒ$À5x,:5ˆòý„¶ü³ølh³Q$¡’šù8V<15—Ïf2D‚Ê¥ÈÆ )ƒ=˘%p’À“¼ ¡[mÍŸ–ŠŽDy%è+UÓ#€‰;#'[Šó /2Kž1…høÔê1É™åßXè å='g¹Â•£¤.ê?Ùü ‡>;<ãΰ¦Ü?©MqUtãZÊŠSâød­ŒúÈYM Ýt"Iéº6â<>:OP¼ “Ø9U&Þ©÷n ŸF\!ä}—V~—KñFŒ…,(Ô´¸=aÌ•„8šÈþFIÜÒðGW¾]áwÿÊ–"ü0v‚]UkYëm3jòØ £Ì–UØÀa]´Q®XÇs¨œHÆp;F¶â ÅdÜÖ%QÞàpÝ|ÖË`yL z95'1%¹#q·<Í5 ŽÛ­Ÿ›.à«j²å¿©*ÛqßÓrJo®#; Ec?A×Á3O}(\¹*,çÄú¾Yxâ ƒ]JÎd¬èÙØÉ„l¦ÌÝêO‰+i¢©®Ì¦byJ(ù4$×YZ^íæhºÑO ‰BÍ¡ Žv‹ü;í±pZžwäÏ”»€Eö”ÑÎVÏR ôgc¢Ï´¨“ˆGi`Ìö\òZ̰ %A³<®ºô¤ïJ¹¹£ ŽÃ8­TÚcÛßHº6&Èddâê Ñ%öCu|Ñ·„R*(_‡h*yë-Zpx¦C"˜2ÝP«&ºxL£| Â[¼~y8Äòðò“6cM&Êשxë±^‚œnT1ØjÈgjâ¤tÛiΧáÏ]P&/Á®²ÅêFÐô1&÷ÄÒS§Tøä¬…6ƒïàEÂ'qÙòqHZé µÈ:Bÿà*–ØCÕÍ´xOiO ­î˜‘S€ÃìÊÜ0;0˼»Î×wàósöéF6ÈRaçÍõ%Š5‘ B„ãyÆ[÷^´ÐE%¾b^ª¹[Y,,*i ’£4kìBÅ£ôÒ¨ÍõFdô~!7—¹/ôê¡Óa_s 4 ¼Ç2ÖldÄ_c*–ž€Ðћܓm‡#Ñ5!åÎ%gŠcu-ÖÔõ=Ù›:—.•ìý©våÜ~m©Æ@ºæØNSæ}¹²$Íëë®Pšõ'€¼ˆ]™a±DàñIqnUÎìJ6U«>v«SîêM N‹c¬G.+B §ÁµàªÝ¾²'-)ÅEÖ2±•˜·¬ú€î÷r!ž Þ—%Î;&‚3ä—½=œ»Ê0®Ú5ޝ|® ¤h x®9ÄŽ9!}8ä0,“ó¾uг̻hˆ±j»Á<åSdÅAÌ(r6RXúð¶1óÌFN­W¦ù".éÛ¯tGºøÉi—/"¼käÐèsr%7¿ªKdmûÞ#ÎÚ`sñPýH죓0ˆLо9°È¶Ž©¸L"v-Ù n¤„U•­¨„e¸8ãç£öñÉR5•òkqèRß 7¤g~åM\WRî…?Ö,eW­¾e•2&ü"-/ µÓŸü•5VÔ±¼DWkì¹ò~ÒìÚØ^Évx`'F•5³o1æŒI;YgìC&¦¤E&Éu[ò1^%ƒ¢åÕ¸18^‰¦"s±¦]ÙÈ 5“-©¢`áRJÔÊIòj’Êè6γ¶Mhß»(—»ßñ1@ò"5ðW^Â`ŽT¾>Øúâ =ý8ÕV‡Ì@>D—iBl.*bÉkò*ÊÆ¶Í‡6©Æ±F?81-ÊPƒ–#ô•¾Ùq2]‡¿6Bß~:)~H–'¡—¶Ã&Ь×ècU^í$WX›ñ•Iꔬ³ª„Ê‚âz;,=úoUÉrkBK™¶h·zš$•òhËzv¶âÙe ß9^'°õÎ%~›1sÈ=²‡a `+ª&ÂõîžÆ*9‘å «ù^}=‘8žý®6Óµ÷«†Iæ»[lÈx¡ëøç–¾,¼rQd†ÂÈoZ>о¨,½-–T¼–2k9)c=‹Nî|¦”>"B:TB´IŒ¬ÂtŠä9åëm[U—åd³ç0÷‹*,¹ ¤º@]Ÿ„§î*å¡•Ä™²âÙQ¼ƒ¦ÈÇV¼´Ùl;œ·”¿ ÿbX'ª¨½zðyåtSÊñÕÁ—€HÌ RËtƒ%*…=KÜ^ĨrŒ¬7ñG{U©?üEô8DãÕ 2c;+.'b¶-?[$â¼(ÊH0¤$ªkÌFuY²TP• ¥è•òÕ¢®VÐÌMx‹òîr˜Â‚›…í¶¦RJMíX…ÛÆQ}ɰ, ‹Ø”¥#õc_=éä”íËTÑRíî¸}$µ ³ñX»]S›ëðj†ÜuÂZ¦yéMš·û'‡F©¤&dz¹ßŸØºHkåº&ee'{Q]7é^¶BB:aí7¡Áø(&Á)/4dµ”-ìÞêi'ô˜7+w-9âZªO%‚Íw”=D½”:â¾å­° yÿÌžç>Æ ä.+oóñÎ#Ö,4ʯšFëN±7ë –x >æWÖ]²¶× Û•Õüõ']™Ê®dÏ,mM{ªÕ>Eöº†­víàÏŸ¾}¾ô·ç‡G^…:wõ»¦«]_ÿ|Kk}­!Ëèké«ÿøò»¿?Š?>}ójþàñÙ¿÷£þûÜŠí´ÈÿJ-.¹M,þ~j=ËcµgVì¤õv×·íßF_+¶G}Ä€êNH`vooÄEºåCòºb’뢼ÇfÈ_WÙ1ß“¢ÒN wÀ§èNØY(ì`M+Ê:ŸòžÒzÛê›ê¦W™3Ò_àíSZ©õ/Êg¢«XÉoÖÄÅx\ŸÅ1ƒŽ–›.‡¯m·XåöÉF~ßQÞgbŠ~¶ÍF®réæÞk¹?þ•#´²;³fëjêß{7MšB ܤ—ÿ?{ÿÖÝÆ‘­‰¢ëõðWd³Vm6‘ÔÍf™î-Ûr•V˒ڒ˽–—™d–$* Eרç錱_Ï/Øo½jŸ1ÎÓ~ë·ö?9¿äļËŒL$u³¥^]–ÈÌȸ̘÷ùM hT-йÂÄðW³qyuFg/A±”¡²ÍOé+ÆÃÖG: HoìptI•º§¶ ÿµk}àr Ù¤¸ç÷2®¬³p½xR…1#ïéFM^Í'Xø´SÐEáo+*CÐû´Énpåi…k¨-°ï Ü •›]õg¸ 4^?”qaí'æ×£Ÿ5!ØÞg÷£Ôbmêõë×·6]c†â|˜&(§²ò2Ÿ÷ß®ÐS<ÄËùUëëã?bé¿ÞHØ -ís<¬üæÙ9–xâ,F`€:г/¡þ$^½ÃD§·2 ˜þÉp’I /l㈖% ‡Ë²JFË’L%ä-@§(|߆ Rd˜Bв‘³5!;1É+´re9$1ÚÇcåd÷£—§]›cpc~,nxSÅ ãýÎO’DC.n,Bð±*rÀ”òÚo×GÑ*2øöLõªË©A6tcÏ”ý¾‘cùbgEÝóEϵº#iÏ?_»H‚ÒÝWV#ÜDuÄMWH¼*‰kVJÔ¶ÐÔöãª×ñt’‘޲û&J0ª† !ÛµH>`†Ö¬.ݸÑò«•pTﮆƒrÔJD&°2ÓÁnáôºÜ0ÅK¤CÓΰ·…§îq Þ!ÒÚŒDRQùÑïÒ¢ÁŽ‹¢æ0¸²ãäQ1P½ÃäÓ‡?zöüÑó÷Û@Åú‡µBÙm˜O“ó˜!±¡£R'!ß´ä<`¶³mOÕu Ióãb™0†Ïü¹¾k#ÙÁšxó8˜‡Ä5öiµ¨o‡”øô9ëÛ?™ÿΊdÿþËä[…®wì”!ø☢\æí{EfóâJˈ<ò»Ò^É$Ctö,ŸZL¨~¼cF Äß‹r™5¹Çùkêr9/>ò–Õ¼¥z_™ËÍrŽß3¸V·.ž3†&ã4ŸØN•@JÒoXu¯„^ë]yr‡W=ˆøËÍþXòÿÑ*þh´Š»V±XR­÷bQ^¶SÕ†¶õ Ù×7nco`gû·iP”iõVbþD-™ eÆã­¥±6‡~? OtÉ•†uñ·ó%´ÌÂ$ÈÃ_ÞþÑâ“J~ÜÞ7„÷cš/|D¬E´³Q^ãLË~òÝ% ¶-1ðxat¿6ÿ y¼œ-òÉÎ6Ðû)ôN/Rh³Üî&Ûÿ ÿó{øŸmZêöî6ƒƒÍ€x©–!MN @˜e©&g˜¶ØKŸéœ](¾â.édnŽf9ÍJÕÕͪ›œ]Ρ­7ÍÅi^Œbû,kôøÉmiá_ Qô•Yœ¸“”‡<‘†z] õɵ]ií» çK…é§ÔшÞ3 ¢öë¸üAf]}ØÖ)E'Èð\_e—=¼èF€æåzcšˆV\—Wb•ÓÜ‚xа;Â8Ç×O¿{öˇßÿùÁãv“o~ûà‡Ç/øŸN‚<ýî»O¾9Ý“~·»i Ó§Ææ—Œ¹ãcê}òé“§ß÷àñ£{xü㟽xøüÙƒ¯®©7 ü9ªýY ®„¥CñZõ£Ë译2•Ñ<åÓª/z«ýá ÏZïÌhÖæåO6~qn®^6êq³O3Ä"Ô&Ö¥¹ƒùfS2JŠë"vT3„Ú_fÅ6®×ŸºÐX ­ê õ„ë£WÌÌΡ6ŠǼ_‡³ÙpÙëlˆ‡CýàòŸ³†X.˜ó¨f´¿i„Ñ5ª£ Þby’Ô†³f7 QçÐ0Óló[fËÈÚ*îÛǘ§=Òj6|ktw”*¼Â~åÕ!ʪ=f5ô$¢¢Çã%0ÎÁ’ø÷0úµoûç¿Ù¸¨T¿Œ&þø=Ž7ƒÞÿû-3ï÷ÔíGi’Ë„Ú32g=¶}‡:È'Þ pÒBÃ>ôP&ŠpHúÍeÅ‚4~ÿ…}ÙPQ JÝÞœ^†Ia·útB=°´C³K=䨟!L)¸ç\V¯%Ú"èfèˆî7Ä©­{=È®A]Ç'«ËQ( ¶–þ¯O/µQ?ÒKÔA„ê÷‰ïRÛóµkÅ÷$~§ð3=b\JáB “›ˆùݹ™I{M—ÀUÎBÓx@ñÈÄ”¢.`-KC12“¤cÑ¥dÖbÜ…\¢/«Fqsäõ6vã®Ý .e9Eôú^è)ìaÉê¶ ÄVdy%‘À!&·PB³[r¼Š=Ü{­ZÂî` >x/è—ö•ÎvñèW¯‹¸Þ­’–@ñ ã~ý>“?ã±[ UE_v³À©ý–›Óµ­Œ,ö7‡ ~C«ÃÓe5»NÚç'!wì ŠÉøB®¤¥;˜¶íŠÌåyS¨+ŸÅÕ"ÒÚ0mž=éAA aª X<Æ0ê½FÁF_ –ˆ:šÝkî¡ðš°x)ܘH¢ßxDÅtš3“Ò­é°áet‰Ü"ÔWgW—Úøúýä†ØØ Z r€D6Ùœ´#($dzÿæq _“œàÔ×è£ÚùÖÕÎ6ÓÜôcö¥˜õï¿yðá:ï^Áöß½Þ#[§¦õDÂ)záÓÙD3×r”•+׌ó;=;¤‘aEŒ«D®Ü•|Héª#Ü®®Y£ÖV¢JÙ– ¯RtÍ?¡•ŽëKôÆÅ榣íX|cìsÇ­Y(»“ “4B›E"0XB˲ü;Ǫ1õÄ+yÿåG³ü­°;/qÒ×xàõU¢.1‡™åÐ’e ¡]F­;Æêœ÷wØ2#~GW¶‘p&/uuµÝ#>!æ÷‰2±9QÍêôOŒ²^êoxæÃs# ÈË,ÐÓVý¹¤ãEV†G"¾v¦4Ñ›6&d«¿%¶úkp-üú™æCÈi)ìô*Ù™¦Ã²P¡ª´âV7ÝQéÒž„ØE}“êGØZ’;d;È|ßÎË%Ÿœ|qtrÂf½-Û¯(Ò¨uZUï%Ï‹yîÔb|ZÃÇ[ Ѫ¦³¿rðO3œªu›§ƒ|’/.µûÂŽ¥ ÆQW:s*7aÕ¶Î\f:œÈ1½Äö»õáà´Žanûõ1¿h² ðyr88I²_OG)&E‰Sm0‘ƒ 'rNä q"ƒH"E}&|VÑi¸íŠ¥W¸5|øÞ‘BM¼eþïi×k{NÄ£ÄÒ~í×ú×õÖk‘]\O”IoKkÏ[´«Ž–JíY*®9„0‡¹P˜S@!ÃF_µ#m…9Šy7­_7"_FÜKvä0^Âì¨ÍÜ8ì8Æ2'7®Ä>±°D )À-ãÄЧø´²½ò‰ h\î—pýÁ{Yù½É¡ ßÏ‘¸ ¿7ƒÜ ¯NÿÝÇÿ=Àÿ½½š¡à+Í,»ö Þæ£$5¤x°ÞøW°Ÿ ’Áídpg½¯Ü¾ÊW†ûÉpõ*â,Ðif—Òä`½qÛéªî·U°R’jM jtr^›ªl äþÍЩ@]B¯+·ëw|Wak‚ü„UtÇ󩡯ÛIzgOYÓö¥ƒÆ/õ˜ÒÖYÔdчˆÕÄë´Šé;Ÿ o'Ã;Éðîš!ú­óÓÙ4†ñƒ»ó²™®Ïö“³«Òõס`„ž®C‹7M‹>•¿%мûöÈÑ0¾+žÞ‹*u Ë‹=m’4žØ¶ú-!³j%ÅhA=©êåÔ4ªzU"-€%¹™,|¦N#³G‘Æ‹MT„ó×Oj…$k³§“ÆÓšIÅSù©CKê¼Ää3J1'çäÌuÖääëäß[²¤ ÂÑXP\¶¶Ó:»/7T¯WíÉÌômȤ.›ÒkaRÛq4+/ßöo9e©¬s˜ü,Ý”ÓâÐüµóòïññÖMÓ}ÎDÝK€À”¨u_ͽ)Ãv¡I×ÛŽÖï/ït›v˜_ßðCn¶ê¢F›4åî2py¢6÷Ýþç|~\¥ã,OÒSªðÏ0.\bÀ6-‡g`Û@*Ž¡Ð*¤ú?Ks¯ÿÏûõEZBùý¡ø 'ùà·ã–ù{K ðÈÔaÌó· <64_‚W–DœÜƒ}xß Tp´=á‹ñƒ˜ßÄõàQêJÂü©ƒæË­j™æ?wñqgrÀ?Ñ6¸5Å ~„jUçåÕˆ¼¾@ÒÒª3p,^œåÃ3(ż­j¹Ç`³¹ãï£v…(Þd¯’ª@?¼³åŠýŽîUÌ–­[ö¯=ŒYHFs¬?Ù¢¿¶?ÐT'yÅÙµn×A|»šLóõ¿ÚÛpOzïϞ܎ïIÝ‘5øÞÙ¼Á%߉/¹ncF¿×0g‡( ÕF‰mU^©q•>"µÝÝ«8Pnd¨ƒp(û—ï¤Ao¤bx­ü·X€¯>ù¢HðnæN‘»6‡ÓSe4¤‹Ý5½Kú¦=ë,TQ2A)”¯ËzYƒ» ªbÅÔ8˜ I›p±Ê >ya¶Ä™¦—5 í)%àoºÊ§£¶-OϰÿúÐ|ÒЇ—C–ÒXvJYÞý¨UéïgØô î‹òÖu–ØL¼þï<•ä °ªˆ×W³{oÎg~Í Ä›Î„¡ÍJëZÞ1Òo2°T°qšÌ?ÊsI %ÞˆØ|Séõc¬dvº™úéš{¸›l—¨{l_—Oƒ¶P6k 啵²›Lv¡Yî߀žP6ë åæz/yYB,ÆréGz3Vn\g8Éeñ~Ô͹ýþýŽY×nu«<¸Ö¾ßŒDÞLéÈíún[=E«Ä„Fo˜¨/eè~ý¦—1YY£ßõ¤Ú™àË#îŽa™~GÆ‹ÌÊöŒñ6ÚÅŒ¸.B®ž5câ ÅŒk_‘³Rfj¥ ¾oE ù oö‡­¢¬ž8bã@r?bKIì¡!,;Îs܇f(Ä)pØð jó|ª ¨ ®õA\˹­Åî:\¸/.²÷³¼UŽB[pZvÂL£cþ¢8¿ùé-µÏihßãŠÂýus·›ïòªriч\ƪe±âIH „t-¯TÇ)r£lœµõÚú8JÍKcŠ'@_`«PžCÄ漋¤•°GDKÃ<±+•kÆË‚û#f# Ä}a³MkãÚ­­uÒ«‡¨Ûéºíã¼{¹¹AoE2A¯AK´q3!ÚŒÌJ­þÓÓïÞê«l  ¯Ë ¤¤ƒ°¨fLù|S‹H½;øDp°=¸" ~áÒ$gçyY`¢®­­  Ñέ}}>I‡œ‹36 ž`®¼‚ÉQ6ɧ†×—ý¶|®Éèø¬@hÏà§Ì+HO§ùI1RàŸ CéšðK#Zú.¤AÕÄ´D{›0dbVÌ}óóû›§¿{9ÒÅ4û耹ŽãþUÐ_t:&2y¨—'Íé®Q7éýÐc_š|v™U•\\¬uŒäðJRÿ‡ÎÇ#¾Ž­õž ¯Šùް­ÎþõrPdÊb‚Œ”ªS OæÎ«À`Ye'EÇ"ÂaÓbµQ†ýx$dX)ŠƒÞ­ÉÔü ZTHi*\¦˜¥L‚>h(öÇß?yôäï:P§ëxÃ)­æ½ïu³-| š^SãKZ3qÖëvw˜ÏU–Ay˜›d‘©ÊˆªmôÇô'èŽihÔOéÁ¾bª‡¤kdyŸÐ«l|e9sˆ•æ7j9Y4[Fe“,Ž­øÜÜIèEQQHzyXà…ÕY†¾ïFXè, §£‘²tY“u:f^3ܳWtÛÌ.Ã;£%–òóJ(^ž<6KVêôˆ].—Ôé‘̲O¦Êö÷w¦P:Š¢S›`?Z‹Àch?eéÄ‚TY0³CÕÁe±d>uëu")¤´~ø8³Êöùµe«v¯LÂÙÑÀàýäR‡8*–$îªb;j¨ÆXÅ#à´SCzy%(§PB,ãvëŸÂM—*5™û£2|I!ø Ñ– ƒ¿0ÂmºàæY8GêJæ·¯ÃRö´¨‹ yX`SÙXˆÂ;w{ÀÃVÜÚÁøáëUå!±±§ËìÜÑÿ§éå Ã|~•+†ë iáWfÆöG\—EH6pÙRC:•»^¸f£–ÊyÑCð´GÊÜóÍ…:ænV;Ÿp\[©&.»øµX%«¼¶4Ȇ=AžÓk»‚¬ßÔåìvÈY_#ÝïtO- :/o¨GÇõZ´¯ü/t{Ìô´³Î±F¶DmÉêÝh¬¥d˜±Ê* ýM—ØêšX7üzÊìU·lè'ߥ¯40MI ?ú¨ IJ\ñ|MŸ…w·_Þ.³¿.sö¾¯´Àʦ ’8-2†Ž÷KHqÂ7ºü¿Éž#¢ðÉß™­öG¥ûË5¾P»!ï´ ‹/мë‹BHëbÁ#†ô5:O½+t¤jÝãä×h4·9JnAVã­Eq‹~²nc 1,/ßãr¦¼‚0dýiSkîm¹Ij šíÄkÛ¨Ö~o/Ô–œ¥•Ù‡´ðqâgwÛ ºƒñ z£«3 Ð.¶7Bÿín¶ øE·²u{ž€ ‘i{Ë%|Qæ§§äõUÜt¦¡ƒzž‘÷ñίuçÓ[£|ŒqðÅf÷ÿmÝÛ(9}¿œÍ<›½¦T„÷Ô³¶û{e^°b×!|í7P„ßÄn[A…ز8˜öMGæ}Ô¹‚¢Úû­¾É•Yw)—ðah17Ä>#cgÒÃó'mö9JsKN²à Ní`?SëÇüçs, ÜM<Ô>Zµ4ªÛ0À½häâ‚bªàñ™Õ]f)÷>Â]ÃLrÌÄ]œj i`Ï( ýË®PÏÏyÆþ˜YÜ?Ê ¾BÚrvKªÒx‡–0þžÈˆÃœ q9:?ÕÇ ò¡°6ɼ¥å$ÏÊë™l0óMl6¶ÑŠ*j·ÓhÇvåë™í=i tøwƒ³¢ÊÞ3ÉfPv Þ®†vwÛ\î|Ô©ü¾Â¶q0$¹p .þd]Úh-+îµcݸb6jÞ‘¹å\šäÃ}R,P….WH§ù9ëòè!è t0Ó®ªŠ!8 |qæá˜¯hûõÑœ÷æ|ÍxßȰ—uÒe; ïÜ;uˆÑb F¡O¨x|eaø? Ui%D·S—nS¾ùߎ~ö}ÐyRá9íà}uÔ;I66‘lØç7©ÃÕ ´¢- Âà~þMŠV‡—t¡]umœ0ÔKípü²ê¼äèFénïð„T¾žYU€"½ÜͰºÑÞÚ-!n䆠s’RµÊ5¡f`T ˜ ²Y6Îaœº!Š" ©?*CWP†Þ¦ò ÊþTBà2®ZJc©…³åt•)çtB[7Hju0 gNå/*MŒ~…ó0Là0¸°#ýd 1ÁMdá{«—ÉO2’ý‹ÜË—q÷´3¯uy'ä¤bÊF±Õ³dÇ\^ï,›Ìý†¬iVùP3¤wN¿!w.ÙÀî hƒmìwá§`¡ëË+:=5W3Ê{Chµ 9¬ÐüŽ¿¦zÚ²›ºhôúÚû|NI@Æ×¶­;,kë·^ÏÜÑbø*[C¦†ÎÐßyΓCç >žðãðÑ*3SÅøMïêt»ñN%ô6ZmpD#ô\8ʹ%E+嬻ZňU…jüži¶ßÌl™ø‹UX¼ÊjѲZK՘ﯓ‹ô² µãùìð §}>l8íÎõ|‹m·‰ û3 ­-aƒ'õSÞÒsë‡ÍdÝ@6ecOÒÊpNé›/0VZy×–m°›Àžu ú:ˆ±ýè0ž]8-ªÃN.éæˆMi$tǦöã좩«x1ö²é5ø|Ä3H1Wnbuýn‚ßZœ•*GqŽ3—7)³°•é/BiÃIù;z-g^ Ëyôôu27éÃëµ»ŸŒ’Ñ­¸Fû×"Œö×øÊÁµ¿²FÛ¯Ñíkåöû˜§ò.«DWºXõëûA‚IÕÞ®¤gÎÑkùþv°ýéAô§1ÈÆ‘ùy>«=ªJøx°£ð“ƒÚOn×~¶ÉÀŸ¹ÖÂáïb?C¶þ0äQÑÆÉ1tRnm±²ñûè²ÜÌ{¡î#ÜäØnʱ›íqÐ}G=öaºX–<$›ß{–?ú6úÙìòîå“Û~û_Æ/ö^Ÿ},Ö`ZÍ3ß_oÚ‘ÝKa¾êckȃæ\yÅosÅ7·âÛW^ñí·¹âÛ›¬8¶ª‰ãü=€ÇßXûö“Œî¼½,]¤oG53ZG;»sÝýóߌÚͳ{ÙkcQ¼iður&®'²Õâ[+ |‚4pö˜°zç –¿„ô‘~nŸävÿºZ[ôw‚1î4ŽqœëoGŒ,^ýê=PŸ’ÅŸ9¶èe !cóó‹Ôæ×Ð30uû·p}àâ|í†N/þY‚?ƒœ(FA¥,ç›ÙþÆõÛPÀ|Tq?ª¸¿-·Æ3ßð¢k߻ֺï\gÝ11òæWûêúʾvÝ«0`©G¾Ð5ì²6 ƒr'HúàBZ§ ‰{ÿ²5±ÜÖ%-+o5†øƒ†kÒ¨[*[ØÃL¢Ú'ðÄDzŒ­Òg9¤ô† 0¤A¶L„½ó‡ïÒ×xóü_î÷ߦ—òurm§cÍÐq±¬@u¿¸‡z†¦ˆÉI X9€Ä«ä@âÁï¢Ò#Z ¡‚ÀUÁãÁÃûšv“S,¤k`|Êní,>íö';²‚ãÂðý¤¦~ÂNo­?qÖò›GerŒÌ^wq1ÄçˆWifDѯŸº”°Xc¾á¿Z™ê Vœc —Ý »pšO¹-Ôm„5ï*ÓÓk ›š1uW bXæ‡ï¾mÙÚœ¦7‘"{nç¡•ÿÊÜ©WÙ¢Þü,‰¼Òø¬!ŠàQ*9®v¦< …¤‘GU—…Xµ¤·Bvqjspõ…ÆZƒæ÷[_ä5Æßä_6¼Š•³Ñ÷à7±—v¯÷‹È$+•Í—oÉ|û½…³ÝìÞÒÍ^òϱƒZÆþúN§ ô_Ɉ‰M³¬Ýš Ãõ5ˆ•ø/ùÜÂÃÁ¬ú|ý~„R´Ñ®·a´žÐÉOu8ýu¢œó­mÍ{Ξ=^“¯ZXøïwxWw×gã+¡ùäQæýòïøcG+’xä¦ÄÙÕ›f>F~lÈp§6|$ÚÕøN/òê&lg­ûß®*GÔÜkkœ+ù­û lá1§*2òu“RÓ>Ë, 3XI˜óøM›Ó!#ÜĦñê‰KfX%E"Œ·ý‹­íÐoSËÊwáË”>ë½ UQ•Ïm2§ÑR§©€ÄÚôµ˜áHÎÒ˜ýÉ úkçn®íã °e'Eñ*AØÉäv­ÆÇ䛜&~øáj»:}û ÞñÓíEúº£C&ã€!±[™1z\Gmì2ø6ûÔsŠïd9Ê‚Š%¡j1•\˜Ú³ü2Ì&m&J§3Žº‚h€×&‡°‡j1.(škR)·â+Ï)åö“Ÿ ­Ú¡ë¿b7Øbª/3CwÉ`¦iš-°×,¨‹`èú`/(yôäÛ§\gv=Q†]‰÷?+3éò·uŒöú€_ñ(ƒA«2Ò¹û–°P < Î%^Yèÿ\e%ýÚ–KÑYæe´Ù¤t±Ô™°U&ù³ˆ?˜L5ЪzUÄôIþ+f‹þY÷!´ç e2ô S­’~ÉB4Õ¼ Α.RìdvV\¼{„¿•o÷*©÷PN±Y(P935z»-"Ç‚ð@ùù1šnmtC”ü·þ‹¿Ceði Ê©tEÈèæO?ˇ¯²Ñ¡.V?JþÜÿóZq ¿A+PÃá:aQBy·—¼[Û+³ ÔhÀç±êÌD~ﬨÐ?ðIäws\GÏVÞaUbýAó ºb€ö ‹Ìzótø ºzÔÝ05æTÓ ›ÜC­áÞµ¤ñ-ïÁÕߨ øl¸ä¡‘fÅ”À´j»D(nX–x”Ì/g…¿H¨uD55¼f,‚k›ZûkåtÃtx–EÏ\™Õ×¢ÚkÍ£ö Ñg@Šp‰"ÓåÂÖècì¦î‘«Í¾î©žcãËÉÞè—ð$šê¥7fŒÒø¢Bõžªûs^Î~ÎçÑ׌ë²9t /åà뻤µÁƒ½õq?L&,‰ªÌ WV€Xfš/c7‘H+O£í.C¬î$åJ5û¢Íih ,¡ ¿«â8h@‘ë°Õ;äržg„ôŽâ½XuÊᡳÚEfã“öÍòvÍõf#ØãĬö"¥^±Ú.€ÏcR AŽxwOWèðYލ-Ý*VÈ•TliÁt1ž7¨Ñ —A@ºypÈ…Ð4½$´iä£È<ûè÷òq8AìtR *ýmÛ‡¯è{ºãe ]:N'ªO_ç“@¡0¬+’‡‚Á'¡Ø góÂYF&×lׂÓÊÞ‹¯E†¹Œµ_®”\µ7H15'ØN÷s1ÏúŸÄ§òBãƒ@gÞ·ØŠ½““¨89qïxf J qr‘^6mô£qËØ ¥fD@%Þk''+öͼmØÈTô¶{ä Êä<„Ô‚A'”… ë|2÷ QäNç†oÂb¸•YÑv§ùãÄšgŠuù”Ç ï+ô†¡ã……øòU÷%F×ë¹ñ!HA úßyÚX‰ùœ£ôÍ“eä¼Gén  ü:2°§ámy”®#«¸IpÐ6HÇÍ‚‰ ·BË㎶g5a‹Zº¥¯uPc—¦¸Î¹ÖZøUDa1¯'$ÛS—¢‰ÛXãÅE Iz#ù©\Ü)C£»°7%؉-_€l°)-;Ñ´øzÈ$€EAÖJ°Föy¯è8ñÑ“/u¨[ÁÙ)Û_X?kd¶W9/Û¸Œ>_.HÂ^cE0J˳àÀºCå9 Ë¢ªìB~æ³ðAja Gúdf¨¦üuZŒÐ=µâ¬íoy’øZg]7e†yuž ŠJz X>X†ëY¾Æ2M¡×Of@mȚ‚®¡[-õŽk0ïħ£ÝJc³‘¼ä±„W°ÇØ=×ÏÃ×ó¬Ì³uE»¨ìRпi ¸öÌ2éçΔ$ÿ–Ïçb÷ÀP¨’„@¸9¡SO>ºNÑɱ|>`FŸ@e¦:¹ì; M’°ß ¬Þú«j«µ›¾X×#M.3‡Ùñºì¾ú#rÔ[¼Õæuo8Ûˆ±d—¢ýË1¸‘ŽÉÆŸf‹dEàÈ…}Z ·«¸‡ßƒLo:ûAf¸tn~Çê û¡'|Qjû ñúfi£¿4¬ünŒSøgâƒÖnd}äØÙ{ÎÏ5SûéÇ—¬ÿKVëRÃ9\j‡¹0.¢Ö_3}êŠe9¥„Ó.Ý*ìLÎó”0ÒþJpk±5añÛ†‘l“üÞÓºpàAQ, QIÃÒ‰XJ†9͸òÊiR®õº@»ì‚Ì 53¿+vŽ Â/fì­óœ¬/O ™¥¨ëÿôˆ›Þu¬€8wKîƒd=ØíÁ f|«ÛÙ4Y¡± 3þAÌÈΧѤUõU‹s¯ˆ‡„ܦÔT—Ê£>pË ¿~â¨7Àf©­Þ«›æ¸z/o˜ìê½Û’õúG«f°%߸j«¢túmå”)#¼ÛÖÅjÈ‹–U­ú3õýÝ7ž:Ë™°vÖ›Îòˆ eì6Õ­5%±;ƒRÂn7~ßòÓ}w£«DÖÒÛëßëÍ/ú·A# ŸS,©·ßß‹zŠÙ ögéHç;‘Αå^²f|Býݨ¬² ÐD`?PÞè²-!ÝÈs·¬ß%¤‰mv×ëÞÑœÁVK娥Z´å¹y ;Þ_Ña_ /× 1DY°«—&»- ¢;õ¢iãrYÕ5†÷çæðÀsÒ7wÄœ¨ ; `Mñî‡á?=J:=ú;t›i8ÁÂèŸ;Á«»}ÈYÙÙõ²>~üèÙóGϽq~÷Ÿàë½çk¥øÅ;>6= »âˆªLýÞ0 ðBYHÜtPÁí¿!bƒ?8>÷åññnÀMƃïn²¼ðDñ(͈?íî½4ø©–+tß1ƒ—ÑÑc@ÒðçåZ“Ùì ›ÁM5Àžöd³ó¼,fýÓl±Óyö¯/þôôɳ/þ’£÷²ÊætÙ"7´ë'=ÎË—þ>ëǾúáÑãožþðâøé÷þøèɃÇÇúEúTÓüÌ®všGÆFOü³¿ã-Ã~öÊõœ4×m“Ãн£œ´ñýqrŒýÃÜöããišÏŽ;õ‰}£Oï쮟`WW»"¸Óv£»(l“¬¸œ¼H«H|d€íΠ¼õÐQˆië#Û§X~Éû^?*Ü/$G|ŸFÕÍÛu*DÝ—‹yÿ;õ 8ÞˆK|X &¬$p@Úf–Ð^"9ÙÑÃbž0\^16Rp 4„nµt3Ôˆ,:h7Þˆ?¸)ÿã™·#’6ŸC¤.ÿÙœ«o#=,ËZ9‚þ û Â/‰i·Ö°µ¸ƒjÜ»+Dx¿No]³÷à¶úÁµŒõƒëXë×7×Vª§Ž'SÖ90œ§œfþ]¡ã³”/E<ˆPɱ¸uúéZF¿;‹ùJŸ¯-Ã6Ã9Y 9ÌÀ«åûaš ÆäÙã,]ÐèGð„ÄjN_YÎULÛƒêÙÔv˜Wh}^9ídqÀzê•Ðb¼¦Ò / ^ggªï ÞRÁž]`“2(ä+–§g ŠŠ7ô?J¦Y¦ü!µÍÍ¢KñæcÖ#CÕ*âÝm@^”:‰CØ4b/’ñ²Äžv_Ü)xïè>ªÔ)uÉØÛì M $ÃKÄH*½<Ò…óÔ#§çEn¶¯ 'ôÑ? ¦¨ªTbß™›HÌí*7Kõñº(áËèf–Ir&Æ´Íø$û¡tËeCÐ9¿A·™B”oœVá·RtAn81<¨x³‹^Ñ|HϰF¤„|‹ž”ï¹djµ§=âŧ¶ˆ)À¨²´žIº³-È’T5NíTí¹t€¨«oŒËTâQ¤}¡; Š»/aSÝŒŒÁ‡rÀ¹©ÖT’ª3Ue@3Kcž¥nž¨Œ‚è¶C‰fXî“b!ð†ÁL‘ê¨ìÆ„¹}¸×JIu·ëäDWë„éíµa<¼Uü°VPäùêge¹–K“¹ÇÇd'ºáÎ`Ê©låpgËŒžÕ9ôŽ×ÜÎãyšËñIJ¯ Û •a¤@g%v¼‹ÌÐR_Ì’˜¹b±—ÝPú‚‘$À®W—±¨íõpuèi ¶Ÿ8”‹X†ŒN8ƒQ¡—ÎIiÿœ)VI*ÙŸÌAáVÖ¾až=ÍêâÕv?Ö0Ï&+YaBA\N†–o¡x=«¤Ð÷©Ïî§‹ÛÔ‡ìõ"›UP #ˆåK‡p<§`æ”À{^»—:7ÄæÚí÷ïö÷ä¡ ™åÉIk­©»%xZ³—Àxl­öB‡¼Ýª]²ÉÂgî‚M0 |¯×úõ­ ¥…ÅŽ³EIÉìB]Ó0󃫒º>ÎKÃÄÌÙÌu*”ÙTà=æ±´-mç[¨‡B•8Ö¢rc½³«Y°–ÌË'zÆ…VŒÄxMF‹BL:Г±üº+y×–‚¡L‚PnŽ‚‡_ql|ä¤5ß` †L:J΋ùá­[øÏ>»NúFѺS¬0hmì& ]-ìÀ/47Ô§$½~QžÞªrñò¹bËÿz^é¦\Ìd vŠÔAÜöQ}#“ålbô£š*äÁ–úàà 7.&‚cÂÌJ¸ÕŽ« f­,UÝ _»ß±i-n õQä,L÷qY–DbûSÓÉN\^Ɖͥ…rÕX‡ }ñ½23, ÜMªæ¤þŽ7­¸ŽilTû1< ™´Í.'Õ•ÉZWt IJ­Ië(õ"¢„ž]zíu¨RlòêÕÍÌð¤ßò|¾š£IöKt:œ´©ËúLnzbø7€sÚïïµnÌ.ÎÈ$<×Z¯íQÞÈäo܆T@hý˜Î_óÈ'WÚol¢Uâ§À]Ír¹MŽ»^bÜ'»Y2Ü&½‘$¸¯y#Ež{)àB³Y¾Ù ¤^ç¥qf”͵WµèXUa‘žë–˜.ƒ¾˜Õºþ&¡‹ 8Že‡Ùö‘.¶©ê×E#7¸¥q*hõò…9À{³¢ìÝvPz›@‚\:¥Ûã9‚¿‘wýMv`^¯Ûn$]ª Pü]@†_í»G[±±7CÑÄMä~žÊl_ÎçTœAH(Ú¯û¥CÆq¸NcáŽ#ëàGÂ{ã„·1Å[^z[ ³¢sí[3Oáwß6¯¾Y<µ5™æGbj ¦‡Ö›Qvbž>÷ *c¢Öè$ =ìÒñBe]Æ –0ùb!ÐA:B-„ (=k’/Ù©jæ• T*±}á¹ ð-ä„ܳK8.˜Ì'ËÓÔCªšrîœÒ°¦ÁõÜC€gØ-zA±ØV¿£ÄÞ?„»”ä磴¸G3©ã„Ø–Ûô'´¸°1jɾUЬ$vw°Aó¨;9ÑÙ?vŠ''‰ùàB@M!X"ËÙh˃|Ã#µFGo#Ø\iz8p·”e˜WgY¥Î­™Õ’à(榼zËÙhã¹E¼Äe‹<ˆ#¸ÓC¨‰§Ÿ;xL¦Dõ¾ m¦if?ØÄ¨1×{Z¬™y—ÿ Ùžëqkc£Á¢¢j<³”xpÇļç2$暣Òënëì 嬬½9„˜¤*9~²ÒÀ§¢ðT,}”lô¶ãõHûÇ|/’¿5¥Øt¢»s˜ü‡…VÏ´8„s{Ù]kŒà†#ñY5ö÷øoÖ=ͧa/!6=E*©)¿(Ê‘=Qá­;a†>S$f†RçiÅ6v¾ˆc5û}ƒµØ†·™“ó}Zh œÊE—54Ëf}ï ›ü ÙÌ5­ãêjš1@†g ¬m…!²F=@-~µuâWMrijM®ÝÑ(.¿R‹¾ÃWR*ì5?•blV*¸â”ÄaM{-ÞÜv#w…6jžii¾S¢êÆ$‰®Ê«’éÃÚ\:ÅŠ­ÖQå˜ukK#U¹ ÖwPIœb¥xvÀO½ýâ|T .$%S×£´„‹Xë·GÌÜ/ÛTÎ{…ÇLÂêy„á­Ýð.È…ŸÜ¯_^ýFæjÖÑ5«¹³ˆÝsÑÆúJ§ûST]Çè[>Ï!]2Z=¹Ntˆºû„P4é¬ÈÓ!D̳ Cñ´4·ç‡ï'ÓôÀÊîѳ4Ǧvhü´¹;r„Q§¡õˆ[4Gmº:´}×|ä<-QEÍ,:ÇŸK褛œHtæÿírÂhƉ gÄòaÐôš³T0Ì _À+šÁðä1…'áêÎ_!Ó™çð|ª ÚGÜ&‰:?ÅK×÷Câ‰Bú¶É‚Zd¾y‘b«Ä¦!A£ëÍ€f˜½N‡ ?ÀL1}pfÁðTN²´º”Þª'-ñdÛ"Ïû0ž%Rt×Læ4Ã…¡è0FÎhh¶±jÂ4hfRñç=àóZÈ'*k öK•˜‡]† 1wªd6h2Økf;Īáß«;ØT4^ÔkÆ1ÓK kV}P0°æneÜ9аJ×—“ò°±¦K¢Œ8nßCÌc´ó½Kæñ=Ù*quhuDàaFG»Ô;ZSªNK§…¡™kˆ" ¢ef3(²ÝÌo€ÙÔ•…ep#jÆtõ¢ªrƈže¨ÇGü±Ðcj{8à %SæÄ™àZç†ÄÏÒ†Sð£¤eÓ°*K½jWÇË~Jå»3kGÛ€àN¬òQ¶ Œðx†I²*ÍnS°À&¢%%j/J”ÁÚ“÷g¤ËEzexÀV›¢} Þ–´dî9báœë—ÊÀ*üdPD6+T ˜;ã:Äã\¬íª7Ý]w–•CüäD5 ‘øPY’ Œ¨,©Ñ[= ùÖ…±,ä‰篵¾ý¹yñ{˜9æå6 ZŸ ÕQ²ßän8è¼äþ'ÌMu- R·|K†_âVÓHúûH§hãéYhJ¦°ü¢˜Œ|ê°œ=wD0|}ßSk®¶žˆ½¼ÄõÕÝ·]sàœÊ@)x·ùèh¿éBïû?ÿAºfD¯ô:×}?â‰aa˜Í%¼iìŒÄ9ÊgÙdn¶ mxµp‡2ðL62‰ã\3ò̤p…Ëîôë èð Ç2ÖQÒ;_K ¿¡6ÎXòöö9ïõï5®*"R6œJ}; bv7MÈM¹_@œfç‚ÇnôŠÒp9ï>Ã;O½kG.é!(RKîb ¹)œë9UD¹?6¢!ŒÁyÙK)IB9—#| ‰CÃ%£K#ià]ÁÑàsœ5Î_SÓ”|¹Cýu玺køñέwçV^·ºÐx#²ç¼J]+-Þ½‰J‹ª ˜?¦ƒµv=œÈ –%Áxnßꃰ(Ð*ñG¶ÄϤ:@kô‰%€&zANó„ •úG~mš*ç‘é©7ê ¿¥zí DÒ¦C½ÝXc“°æ*yÅ2ìɉt•TiKá7érSKåÙL£l‘æ&’—ðöb$…Ó>)Nãõ“ã„Z¦3¼d¤ÊEd\ÇV,a&žÝU˜)vÊÃtãêPF•—!õ›Áo²á«ðm˜-|²“|÷Í]z¤ZNû 9“àñ0wôO/^td¿ãÓ#édÉWu¬åI1ËÚw›oýð,7jæØ SÈ a•FHªM½Fç®èìAbî9GnÈ´ƒk(¡ä^{ýï†2,T7?ŠÄÚ9ÀɺfÜ4€¸ò+$Úže¥íŒ”WÃe±fÌ\ 4êîÈhYÊz½860à†C%ìô¼Âë9%rFŽK|jÙKìÜ< •[FîY\Ùž¤ð‚Yå<¾€OyÌ*.‡Žr`d cû‡­Æá4³C†¿NçM“ZxWêB!+Y¸M¸ùMl‡¶Î-) ‚¸ŠAaּʘ±\èšÓÿQJCü#?R%6ôY:…à:pe$Æ© Yí ;Ë1K auœ˜ãŸZíX¢7R1áT.£ÍÛ…A@tñj!d&Ôºô\Ü^CN\^ÆéqV,zXyÞYÑL‚j'à3‡Ô²çzvÇÔ¨šöÁ‹¢˜+øÿ½UìH).²FE-‡Y®Ðü@@µKæ6¾¾¥†¢LÁ†í²;EÅQý@‘ÐŽ”P’qË©߂ƽÛèGÀ„¾Õ©P2”dÙ´.JsïÎ&ùÀ&!ŽîFŽ/y„¿e¤u|Ï<(ï"¨¹½úÕ«3¹îV,ÐYûc>¶W¶úgÙëQ~jHR_Ù•¼bõuóNyƒ©óTJZ°[ë4_”é0@qÅδ¨ Qg9A J“IZéªÛ¯YWæCÑês2Í+ÊÔ×&B‡sÀ‘¢!yß]Ü|!K˜[([Ë* DªŽ’ŒwmˆP¹ƒ6È„Íbø:Wª^6%’Í/åu§ù.iƒe@µ*–%0G‡XlA¿K‹–E[}‹:[m`>NØLHʪlâQ¨:ûF€|¤G¿ u¢7Ài`Ì#åxÃvPÕî$Ÿ&7ó ÄkT•k²76Âò‹‚|ûžpª­÷!änR¾ìòdôƒ€†\%Ùúˆ:*¸ñ"Ãü0,Ç Ú°ÜXýä¿©$]ÝÌp. èDhÖÛÉ‹pLüEgwÍ{‹ÿ»¡§à–ÿ­ ìsD.6ÛmT ûÃÿ®þ4X9§k}«köÒ•ÓÒ¸=pNUŽG¸ØŠ£Ê^aç`Äîšg'€²agN€ §4©vb;|³î€à8øÅ·#iàØ2rÐfÖ=¤Ì•ô4ÍgÝp·\óÁlÏ Ã±¸ [|À×ÓçM†ôJ¯m }P§Djm†V ¡“bîœ^¦ŽhúÞt½B1u6x<–Ü;³|Ôí¯b.½sí—WcäÁ´w[Ôšã§ÚiSÁÄa3£ÊwrQb; è&¥ÀçËò,þ$ÕùÈ^N] ¯Õ #iÚxR aå]œÖázîÆo{ë}¸Wä^EÊ™iÃÝòÕnàç6Çá ð H¿PˆŽ›²&õ€ú3£¼ò%”ˆ?ëǾpb1ÝÖv"ßô®N׊|}4ÓÖžñ½ï%!)¯Öª¯%ó>žÕ&ŠÎ#ßlìê`:ˆí!Uu‰l¼œHçsÖŽâgH [Ý|¿›ÍnÏê‹ê1›Ûx=gR¥‘+!òAØ-Aî^qëßæª¼úJpB@‡¯Îå{ì³ò5Ü(×»ÙÀÿÚ¶ÖuÍó.]0¤ö\Wå=Íûz5Æû¸ÛÓIÓ·‘Õ5Í2ó1qŒ,Î]ËÀunó{¨,oFXã6µû‚¬ky‚V w”5ŸgPsÕp@¹„øÔåÚõR÷D'—Ù¢át‚+‹ä+dmæðKf“Øz#®ÌڣឨÞ\‚F‡T»îå›±«DoW¿)9 Žj>üj9èyý{Æm>ºÿ~•?MHd\D®Wôù(•—'f–á55GÌ9L©ÓÒ«,›ÐÜ(;-3t¢×°Ÿ| %ïŸå!9¡sóüAY?˜zF—Œö¼ Ïmƒ7ªPÊF¸ßØÄÁ¯fÐàÌ©=›ªŸ<‡&,eW:¢)*›Õ½Ä564÷s±ƒv”¦2$€ õ@=î£øq(iÍÐ6¤ lK϶«ª7v¼£Œ×¹¦»r¡$z¡Ð8åc'yjá Ér\ÕÌBZXb$›Êœ¬Å÷\´ÌŒAŒ¬UlhFSŸø¤òÅÛIDŠìlÔ ¯o‰•úôC†ÓÇ\—îo6z†ø¦¯Ô³:’d*Ýb'{6ÁîG+ÀÝ”€9ºcµ®ÏΉÙC%Y!+Þú½9ÝA3Ê6[x(Sä@Tø/ú|¯iæš–E±ˆI™›ó¥ÒË¡¾õ†ÌÑ›£Ó+:ŽpA¯mœÜŒó…äxŠI?Â8S8…àMÕ)õf¤¸'¬¬7f(„YÒP' ›º3¥öèúRy´âŒÓci÷§â„ÜŠ %YCÇtuÄÂÉ XV¹Ó¨Ç±“öäv«'ÞãÝ­S-%Im=÷c¾7-Qá@] ¸Ì°.Gå3TbY9_é É66Q„$Û) MàÑŒºdðB8" OߨSfY F¹MUÃ"§.6’ÆUå6Là±ꎉ7{Á÷>ß½ÿùíñp4Ü¿¿ïþÁýñýƒÑÏïî>¼÷Ùg£kÊ‘˜ý¹ö'=1ƒ>æ‹´¢E‰÷ðí'“% .›#3¶ó8ÈôA<ss& 3‹ :ò¶@ VoáÓ^ ÜX'ÄÒbl|p/ø=:Æ~®˜1CÕÑŽœعÝMh¼4æ ™wQ;ôçi{ ¹iÛÑôFµõ)P`Ši‰#·„70ÁÐËÝäè(ÑæÖQâòlky{Eð‹x<³Î7œ3¡oBÔîxW —½v²Mù®n4~%s—{¼3kcÈg h.Ðf«¢²Å»îºsoe£&= 5>Tµ—‹°S YŒË‚]+)_o¡ÇƒŠ€4r»»·ïîîß>¸wüÙøÎ;÷ï~vïóÏ>OÇŸ ïÜß«çÀøCÖøûuïR°‚ nÔÕÈNÞ8Øõn¤º$7G¥½díý]/`£~qð&´¿H­#‘î|Yfnv26Œ¶Þ©ë¶K}nýö˜y£Ô,¿ô¸!›5VÕ›–Ä£á ·J +»‚­¸j Ž‹Ü7Ù¦B-0Ö¯¨È¥–Èê"¤DB;Öz=’ÌÜñ!M±ž>À‘•Ë9_#uÑ\¿ªò‹ƒµÅt§ë'h=¨éà~çm¥3­ãÉ— ßl9ÝTˆOkߤh XSÕS˜dÃZÔ¾é áz¥†+Ý‹oÝ».ùæa¿1‡Íó|šOÈâÇZùð{ S¿÷R,·-AV¢0hƒlÄ7¡¼f‹W > ^ÔñF±âv.tø…0YÑ÷šÕô÷Ar®7bó.³J£›9 DÄÔ¦ezB[ÀPjÝË ˆê‘XìX'y|x³Ò´ŠåÆßlªZTu¶ åv¬ùçwÑ W¡U ãQu©õ_Ì §¹Y-ÜF³?‡o8¸ÿëÞ^óˆÝüXj‚Ö Úw-Öæ‹†Þµ›üi0Ê=¤–£Y/C‘§µ :&6Kï|‹Ê/Jàì`ûü{ùï³ç™b„?Çû¦Ô<$ól¶"á¹s1ôÌqŸŒRøNø›áÄÈ;ín™>C²IqðfÄ”5+¶¿F<-ÕÕ¡™*~´ˆiˆa£Ð³bPt’S7¸ œ2æ«fWt"·#çŠ[NQ¯6õéUùOˆ:pלtÓ».¢dЈÛÏ'¥È²pIC\bv ¦#”šÀçŨ@"»ª¡pÄ%0‘„áÙ¡bË&û};J ÍÇ„–+lRÍWÔ‡¸”ç ˜KŸt÷TΘ÷Œ®xNÜoÜS޼naÍ¥" bI6ek¿°žä)½b«Kr=êÛÕž‰ÝÖaÚæ{=¬t>»úLÀó›ÓM(!8€ê–6àM¼¡ 4—ÐŤЉÚqŸž¾3\ÜhÿÈଠ‡$Å”Þ׎®†ìÕÑp×è)ùcæîÁô=|TÈš£LvŸkœ§ù$e ºZŒg%Ž7Ä(ôNù§ùÅÙb:ùò‹A1ºüÒÿEšœ•Ùøh{Ÿr3HÕàqûË迸•š±Ê†‘bÃ\qŒƒÈŽq;2Æí ÇðúcÚQ¼Ÿ®ÇöÐÜëÿœÏiÿgŒ±cÃ1†±Qø§íãM7aß,‡~Ðþ6¶§¿µý%ý·ýYLZ Òùa|”[Hñ_ÜBò÷~ÕÔ› ›á4¶!ö æ,m}‰)µÛïp)T§JN zºåž7ôÓ}ŠÿyÌ_ zþñá‹ä`o/¹}Ø{´ÓiÆ)Ö iµkíÃBÙð7笩‰×ÊU²ÛÙysÝ-²ñŸÖDós!¹7ñûíÎq˜ÆF10. H«”(æW›ŒEslŒÑÅiÁ  ?²ýÈjLc“á.túMשFÁ:㼘ƒùh›©ÖZÆÏUõƒE¿±€ ÊȤ¬ÛiC¿Öl¸ÌÊ=îõ':\£Ñ[=_…ŠYp€Õ¯Ydú†Vëë7Z÷H+¼`hϱ‚/×oyMáo~eQ™õÂ[yxÕVÖÉxÃFÖãët±{{yƒ—ÿh«ø^TJ?syÖ5SR#æ¥8Ȇ)gÛ]vÊz­ŸæÅÍfŒepU1T=BG¸°[ÔÃÐjo¦698'pž!ŽŠ¢‘¨ciÐ񢐣 È»µgå™®W &»™yèæêeÂ2§Yå-,ü4Å0Øî¾]ËÓPf2šÄüiýÉ AO¦Ûé ®n…ÂlÁg0$@vƒù*ÏBmÎ/üî^¡Ó2b@kK¹ÊOgà›ÁéðU ¿â¾ãa˜—Y›³Ÿ‘C¬ÀâTæŠÐ³0àŠÈ›¹|€ÆeUä@Ïp ×|§¼ñòÓ#[}„ÛûžZôW°å7P^s§º8º†RùAë“_C XôëµðÒ_Öèç÷À>¨’)Õ乄nj5Ñ éscRªÝóoØ«­äM1ÉÌŒ §Ë­é$e*pC ÝyÄ3ƒE"§P1ƒÝ¹)W p;^ïŒØNéN2˜eñsWNôG›äRS H³%£xb:yÅ­!ë®} ü,.èøãF` †.Æ ¤¦¬€.VÔÿdæ>0è´-¿&Bjsø¶ôr?½^WtÁŽÂ¤“]6ïúó•Q冿—.@µ‘:Ýw¨ôB§)–’ùƒªœ„Ì$¬ùâ}à›G‡[Ó²6È@…“üM¶··ÿ}k…°U‚Öû䬙U”ÞO͈­HW°ö dÿ¡, ü°î¬îlB*˜Ñx]¦(q›¥ŸÏFºÉ%$ cV¤®búàrÀêšêôbB8ù4é$½B‘åg^‡¼ù"O'ùÏfŽÃl€Jn~ XrA•Âr£ óÞÀ^l²2·¢fh/I*ËXeŸbàºçòPŸ V–ÆžIs„AÖÎ,ȺIò85ÀQáÉÓlÁwzÔOžÖê =Ýš©žM3Nóɇ|¾d¥@!µ ,’î‹ÇRçNÈÑû7¥lÚ6H“‡'?¸du·²P¹¡šWy1`b[ý³ß¦ùéÙ¢›œImEˆT-N’EºÁŒ`ù¢Iä¦ß+Ôc[®Æ©^ÍzÉM­íIK¹…‡_¤Áµ¾†¥ïØR *ÑлT’6Â*ì¶Bîvb°ìo˜óÖ€òEåš<úM1nÈÌmY¬`0¹›f£áçŸîg÷ï}~ðù^zðùèÞÝ;éÝÏ÷ÓÛé»­Jòb5ÊL§ozµ3‘S ¥r]"‡mžà¶ƒØ %¶¸_ܳ¹ Žr=ÜõøÝ•ÎB@º¸*‹ŠWææ3ô_IÙ­,Ï| $ì¨Ô¼™’;0¥ÎêØ*Ñ`þ¾$Òp¢" Ào‹*lŠ‚ª¶ Ç }†ß"ðqtÙƒÜB0½Êƒs²0N@“ZN>«ãÄSÇnòÈ#lßbLC&˜éÕF¤òRCøHþ?¯©¾IªøÞ™*ûTn>sÅA¨‚só 69oðMhXf‹:ͪžwÔª“Ôò¤¼2dæ<‰›Gjts Ûy“œ£aU’?x¸A«Í|N€süTÊé­wlóú²¶l<•áonXËÆ %•í%(%O¸fÇ.\Ŷú´Kì•Óœû’PM¶TrVvyaœB__Ã6ûÍq¬Üù´¥Ú¬SŒÉ졊¯RCgˆi\RÕÛtš’»ÕEô¼” S¸‚-Q1e(:›&¢vz˜²''ÿý–õ\Ýâ53:9éFŠÞè7 ö¼p ¬_.ÊNHtiîÌ9H©Q6_œõpOwkê¨g":w¤XÍ>“c­\MUGa‡&ešÀ.dÏ3 5?¦*/Z½d#­äè™@á: a‚|™áD¥¹‘âÍžà3RÁÑÕ6WÀf£‡Égc3çy±¬¤ÓÌä¶úešµdÒ¾î.$aAj®z3/‡Ë)4vôÖúIô¬¹ 3ñu÷мïU½+QÏQ“2a³×ÃÉ’¨ž+V/òŠê–†`³%œQ'6œ×·®¨Åc7¡fª^¾ô¾Qü¸‰j¸$Ž©š÷ô8¼ÚgoåØ|ÍÝ'X¿ºÍ š¡>Ÿdá‚z4 ´!óó1à “‹3½{Ý©ÐÛ;`V٬ʮz^ÄŽ˜Uø|º"ÆÊå™jÒœÎÒƒ¦lB×îsËrŒ Å©1¯vÉáˆL ¨9ÄAÀ@M»¶]^bõ ´@hÝO€Ü«˜9FÛ+°ÄÙñtᯆ…³b)u>]™¹œæä@­bÚ§g±qbø˽¶d¹P£;ïÉíœ8.x³JWŽ{¢(×; •€3cˆ- Z²*mäSbðËð`"ûù0ê _ÛùرSP æÐö ¬¹œüÇÌ¥¥ƒ*zF)Ç:ZaÎÂSO¨— ˜îŸq}/³ÕBÕ¤¾{VNÕåz;ega¨«Ýó Ü ú7Ʋ Hü±˜c‚«‹¶à+ª~6;ÏËböSçOO¿{ØyÙìøˆL]Eõ BJ™S’®ä>‘ty¬Fiõ"¹6›u«f\ûâ5Ü^ovnµÙ½WœU<ø"¬öXWþ½À îòÕ¼‚Ñ£´ã½0ÑöNl~6_y>p݉A=ãCõ õ´6*×=Vô¢/+¨“fÌN ×}Ò\ˆjùÕã<ЈªÃ·ë¹T ¬®—$û{ÙýûÃñƒƒýƒÛÙøÞðÞÔüho|÷îÝûwöjîV=’çuõ>±ÊùZ¿M'\[IdÃûfö·÷îg÷²ÁÁÁÞgéíl<Ü Òû÷÷ÓûõEÄæ¿æÔCò\9ñGã®Ø¸1Ê4CÔùd Sûr­ÖC¬­žObƘVÙä„+*åõ> Ú‡¾VÊïL£K£{ÖhR;N‰± 6Ù™÷w‰ò}í5TUœf†«è“Õ©µ-Õ4úµô@ÒOÜ’Ä0ÇL‰„êá2»±.kz­ÿ»ÝïŸL^_™X'.õfå[ƒ7«“ÐÍyª~{]föÎ…ÍÞÝ;Ÿ Òѽ½½ƒÛw?¿{û`”ݾû³»ƒù{vpï ›9v“¨ÙÌ9Þl^ðï‡÷lkj ‚I£JYY?“jE'[äÕ¶2ºSׯ7!oÃÖä Iì!•ÌFÚÏ´XIJ ¸Ø½ÁÑò>&…xŒv³äj,IÆ1xI’"ØÝêMÏ”ä]ÔœþâîTgFnŠ2²Ø¡…˜È)wšxïÄ»„^ªx”—¯àUïÇ¡Ô69à3òœöMò{ã,ySŠÖ{o¯p’¿ôM]·+§µzëÝ‚C ‡E ¦ßäò½“R«k›> ¬_‹ÀZû¬?Ê®Tv}H·ù7*ÆÞÍ%”’L]ñˆ8îØM@Àç§e:Ò© §j¡±ñFR ÚyäU¯þ’|øèymǰ¶c›{ ÅÈ”ï5+šŠï?Bü]âOWVrÕ’™Y7±Vkž6 þ0šVE-ó£|ÉZ‰ÁŠ©¦¥úë2K_]ö(ðìrqFÊG<MγI1‡²à.gq/ÔUâ)Qý^œØŠÈ ¦~”Ó‘ø½è°Ña’|Å»}ÜT5 ôg¬8Ÿ2„CXpRo™Ó¢*·û;A•§]ðæ%©Uõã º0áQsÎu0è1>¯.ö-1¥ë_*;[”Q(F蘒æ3Ê5õèvFšØn“vªär›Å+í‡,I‚hlzàd  °ªnúËAœe~¹&"ƒ¤Y- 1CÕÂîkÚª½€?ÝÁÖ¬J? æÂ_ŠV*wÎ]Ùt·ŸråPî˜)ÌóÑ®·Í}H£^dÒ¼Qå‰6p»÷Ð>N¨(Gf+yG3 Á~€,U+ äcÆí Ô„oŠöi‡&ÙÙ­‹îÌõäé÷ß=xüèßÿø§G/>öàë‡Þ ,¼_È­²<ÝÁKoX¬…ñˆVA8RŸä]5Ò9¥CŠ‚%ö«{ZÌ©pÅ\ÞÓwû4g)ÝpY|ÕL„ÀhXµ©µvg(û#ò/q·§ßˆCèj€æbDнþƒÞõÐ@T©€Ð¸`øÕáaq#û®ŸU1†–»F*”ç)–š—.¦1I¾Lw¯ºá}o§¯º³ý[›ìíƒå¢˜¦‹|è2gT+[GEj¨WÀGÒXµ` DsÀ®Ö %O!ëy;‚”ûmxh2ðKζԪyÀcIFr!š weÆ:/׳ËãŠ'° ©‘‚.µíPÀÅIø™*33oË[€t1ÊÊÃV²Õ/Ô`éÜWjdíÔ¢Ï?ïþyòÜ(Ñ›¢~ÕÛß3d¸¥OúObvúá¦Oñ.:¡(ž¸A×jÏÒ½×hséJhâzºå $cn‚ yÇC:e¯×yP • ³¸è ’}c‰TP~®é±úr¼Q[‘ÚFez”Þb޼•í¶âB(N†½ð“ÈP³áYA2Q¾M‰ùZÅUÖ“»Ã ½9}5­Nz•ÝÍ Ê{?øw\«‹ÑëEóW§Ç6påI'FC661lÞáʧ9 19>6zÃâøx§Ê&ã®faólöÔ·^¾öרâÀµŒ9v¹bpÃ;ê`qSíñwšÇ j•¿Êõ¶±ÿ=)Z  õÍͪ²þÒnëPÜÐ’ícr÷­c3±>0óáÝ>Ÿ{ dÆðwâfx${#œÝ5pKצÔfÃ#F¢¨YkIÖbt4!Ñe£¾y”lëémw£š,/çE>Cöø7L“Ÿ$æ0¯Cº"—»»éN?).¸½tÞ8ÀS…œ ”›K–š¨ú^Ж˜®“h}âºpÇhnz÷êpnš·¢_$N]Öú¨Š€"ƒþ@[5ò/¹Ïç¥_ïªá½çþ°ås „ó <¶kcÔ5lÚ7$#oyW¯ ÏÏ“Ëþе³ØjX´ÿKm¯äT‡g(TF1¦÷`‹ÕEjwÎÈݘ>¨*¿Hö6~y;¹€¶†p‡ìÌ>5R…<¯Y1ëá;v@YsW™Qœ<´“1—ovóí W '|HÕlðÍÅåúrA{_þºø z=Ÿ˜/ìùôÀ:êÉ} +z¥§bQ,Àp–6¶1²n|ó¡e•UAÃÎÖ/qlâänÑp‰m:!ú"f²«µó  z˰z0­- ‘‘^.ð’< Y².0P í(¥¥}1âCZåi°>·Cyjx"͇ v|š³cð’„š ±½ý`4ÂͰ˜²](0÷«ê1û_üâ«Çžü—Çž<ü²6öó ê÷óS Øã`Z]:­.ö¹…4û¡ õ¯+.ÚP՜׭ˆÙÆæV§>è¥Ñ6ÁQœÎçÙ z{Ù­½ v´o–µSðûÐ2þj#Ô‡X©´jï.}Ê,ö§Ú#ð§a bv¤ìAw“6ÙKøó²öSTQá¼òY°¨Ãè@(ÆäèÊ_ç Žá­ø±à¾Ž±®T¿g¾©Œê×ùÀ“f‡ŸÞO&J"üFã !‰¨ 5¿Ô¬'›!ŽQƒkþ2LñüVFÎJÐã&ÙlÇßí]ÃhžSO9í´©e/m;á…Üg=ð?l:FºßGµ+/#Ò‚ÞèæãcÞV,õ…Ó<±ö›ê™Õ>¼'ÀÊ&\ ÃÞ÷˜;†³¾EX¨@ŠJyá#Ðh^ë0Sl ¢,àù. ¯n4ØçëÖ‚mž¥å$7ú‹þ Uâ ¯þè+Zí+òÜv¢x%_$Âi-:b¨+žt'»âÉ÷ÌUVžjÑ#îþt¸X¢¶·Í†Ý6nf! ö¯‰¾)ŸöÖ0…öú÷Ö3„®dÊØ&k28ë&CÆL5šÊÙ Æ^YNf³Í=:€€a¥Ì0VÒбL$F "Q›AÆûiP-¤5ÞýLªÜäƒó<¯ŠA!P÷C¸OKô3löj±Š üäY°¦7rM`Ÿå,žL£Üƒ|梵ôPǰ!'˜Ð5?H[Æ™ì}À4ð|ð«Æ ‘ðÁŒ—Üø®ƒìì^IÄ~ ÇK>L‰Ù ỡÁã8úÖ{¼'Wy;º\åEæË½È’øI!·9ï ¡–ØHwQµèचIp”»+š€ R—Q¨ÖôÞM³”áó´[ßh'Ö×1LFXáÙl˜3tƒM^$ÎK žƒÈ^ÏÑÅŠª§(¤frê©GL ûäcF7îL×AÏíjÈ[¹iô ù*~+áV ¶e^棌¡Ë±«´Ñ:Î!÷c'aò¤Àµ„Ôl=ÍPíCˆs£.4(ÚežæÓ|È].½tBÉr{—×Q$û›° Ýzà¯AL>m '—PØÊŽ€3\;wð&˜6§ê\=ÎÆ¼O‘¶'O_<GÆdgéy^”ïÂȦÓÛ0^ø"¢XÃ)1gxyú-ìÑ:lùÕFð;È:¾´ÛÔ~ÔœdýWcriÉ^ó¼ ôñT‘prŸ%g/Ï/; |¢˜kG4=¾Û,ÑÝÕ–¿ Ù LÜ¡ó>9ºwöÕ.¬ÅY¶ê©*;ëÞ‹h(¤ã4…«ßøÈ’®aïG=ªX'²o²Á’ºjË×[SL›¡Ý*iQi¯Åâ’|¼îK¯¢3Bu5vgY̨@MJÕsë"½¬,ðÅX‘˜ïMCcEW2Z |ó`’MQëAXÌ|6_zÞü Y>ä§rç™ø]ÙXÕå⌎ۋyaŽd ÙÆSÚ`ϲÒkœJ­AA$/ÿÇb×Éì Ì6-1ȼâ52£¹û9µG°Q÷ošë6®À™ ÖìÖyTe–q…?Þ»«¤÷É«æ¯8úÆ)}EÕm̪mNêû¾õsúà½>=Œ•zý#„Æ÷ù÷?u Ô„p§žDÎß®T%M1㟜dxùSÇš¾—Ý  ¦·éë»7îè¬ø#o¿½E6ovÕ'J·ï®J9¬WJ­Z 9ÌW-$– Ú=·ÁM{û™‰’„È“Øn¢•ˆx0æÇ Œ×¸1ïpýÌÃÆ$µ\Ѥ_Äœ£|ñÎÎä=l´)Úµ§kníDy²ÅDäâ~G>‰ù5S£ï,Çã57ûQCf'ù„ªŒ…ï533[ ¹ M¹‚²3þ¦ÕJÓ×z‹+Ô¾ËÉ?B¬èÐ>|XçM{fû¥ƒºá´i[) ¬ ðWúÉŸŒÑa»s-ÙKkPMÚ8º±m¾±à È©Gj$çî¿Ê.«H’ö_£ô†ÏôËäÖÏÃ[Î*–K;¿Üùüàîîñ±!Hs¿§Føål_&e íø`Ÿââv¶Ãsþ}uøû \);J 0;$|í< va6 ˺%êÑÎþ]ƒµm.øè»,¹­˜ˆ>t5òQ¦Ã û—íL ìº3$pysÙ÷¿–Qõ-€n7Êv—Ÿû·ï` zšæ³šõc-],ÊÇ]Øó¸»cÌÂZ>ÏzŸ¼ýÙmüb¬~À«þ>&œ:‚Ÿ€/¿ìÂw¸:?yµi|~o§#6%&w_E^vï´®usB[{ywiyîæÕyƒÏe#6Ý–ÚúœÝrÉ|4ˆpׯž‡ßr¢]“÷é<Û4-FËI&MŒ ƒ1yðì©0Ú(õºÏ€æB1²3l¾G‘x;¯lov›9m6 *¸nœ*„Â0$ô6ÖÖ\,ü©£ÙÆ÷‚Â3þL ÂR”ÀùÅ0>jûað<[ü0ߟînÚìÝm÷‹yÇËÙ›ªÎtç¸T9 ¾ wÑÎQ‘¶5¡r ™B’|Ø„,iXÖòJ§00-®îjr2©v>ÁDâàSój!èæ D¼ þt:ÝáL7r¡ÄÖ*±°)iEÅÖ¾R=¸ FÌN3[.…7öH[ýÑ C¥AtÆßäÕ|’^F&¨=LÝüv抩6³äÇ|6*.̹ê*p˜{Íe0rÓ0/u°aCÆ·Ö®f£çŽÇùkáhgÙdŽ ·$IKäKi1¶MégB.§Káö4ßèæ“× ºý_‹u©HäÝP¡[G'ù="–¿“$ìô5g‰±Š_œeomŽœhì¬ñ´#øY®q$54³0YƒIº’¦uÚ!³8âC6ì´Ìšd.è ‡ Àöü“IDF}Âîê·ËpìEEVŽ-=óŸ³cN·/§“õ U¹‘Ä Š© ,Ûò#vF—Ø…¯‚xëRÞ5ùƒb jÊ^ÁiÂx+¼¡ìÀã~Ø`É&É-Øç[/-Æ0Vü¹'{Õ ’HX Û6érŽØr˜ñA Œ÷!¤ñxr’ø+¼Üƒßé7MU0R"Þ?Y7d[ öÔ®®¡(R'ÞÆc3·c tÏ2e ‘âßCŸRÛï$ޤK7aáO­$yŽÑ±?Ãba¡ä¨Ó ôðu6\âŠ8¦' ,Á%¦`¦îDšÝ%òZI{6J˽Â{dN Þß¡`þ)vº¤ßø‹ë¾È“i¿¼''ÆÚÆ`qW[r‘ ÌÄ£ñf£NŒÄ†¨E=¤=x×ÊhèšÓç,Ö°SÆ–A•èÂ8ü@peˆ¶`&»†L;5ÚLV/2sþÅÅlî\]ºÑS(<Ò²ºËÉWÊÓ…€%èìRÀ&ÛëGþ{Lž;±m@󖉇û«s%¢ÆÔ{áÚ¯ËT«³ H‡ l•b<´$^-¦þ•@JjTýß¡-ÍŠ£Å<™çÎ!(JÍ íÙäI¢ {®–:ý´C¡YÞºcþBS`ÔÌäp£ÑGyµÁð¨õ:+r¼œH3^è9¬±Ÿ°ÆZRŠÈMƒ„ø\¿Å?mH’¨¨¨kE²›ÖzIWƒK¯ˆˆMçœ û“t(Sº£XűР@J»æKÆ5ÖL_Ñ"Di–]VuN3³†Êg~>ª/íY¯‰¯‚&›•¡Œ¡‚ÿ¶Cœ¾•;å &o FÙtߣ֡ëoe|µv[רÊY|ûÃm]s+!9óxŽ«ÚáT­pó¾ÍÁÈ‹,]JÊi‘üv—/,(BÞ”N„ĺ}п³Ýo¹z–M n`½ÕcD>;EÍØ›cQ'QoŽ £—<ø.ì)gJíQñÎÓ2Ç% °›Q˜“gÿúâOOŸüÞn[Õoö©µy»„ŸøwšìT ðïs¾4Ƭì‡YþºëQÒ+jPÿçö”‰öèN2FmÁFª~ÒwܵÞFb>]£¯¡4ƒöy—˜ß„ÒæNèQ/%X3gú õTJ­¬©˜°ÎÒ?…0ßd½)0²pKêVo´‘Ф”ŸžRÿ‰Tt‹7…À›ê‹uF¬ù5² ô8š¬0ú†2ûýAB/j-‡/¬Âº5E1ñ¹ 8è+ƪ8ߟºp±˜¯Xeù‰$ý©¾È]©ƒõp\óX^zõ »²IµRð´ê-ß&BŸ0#†§ȒĶ׀Ö´Yåh` ÃA:R@¥°±>Þ˜am¶[„–Îi ×'¬f{ Ì–¿¹W $&ʆ‰ˆú‹à.#ø{(Ä+®÷±¼¢ |J&™xpAk¬'†©î‚+ RÊEk÷šoeIbÊ´‡ún‡ƒÂœ¡ùsôK—ãL¢GCŽ,Pl3ãn*d Q‚rL( ©.U¾Ÿ ŽÇë2;Ë[ÿúþá÷/ Rë•ᛌ í_a¨ôU0/Ñ[Íf±jµ:/¡ö›½^yªþºÑ2—qšŒ¡{6™ƒ²,‚“[¼ó)ôܧoé¯*øn˜3¾É@ïÈÈasÖ]}»Æí;ß|½çk H"²C¯Zû¼¥窛€òLíøI`4&5a•´O†¼æþtž’ðï¡ÞDÄ hT„±2 Çç@#¸Þ¡ß9r<7•dH“gÓuµ~Ò4"®í@ÄíhÓÄÅ ¬¥a~Ú7ú…sbå•϶<Ïï´KÐs› ÁrxÃÎŒ=& ƒmyù R¯zÒ“`«Vì¸aaF öwü‰½>•Sú¡^)7ì¤()þbƒCLlÑ™ðøñâM”X›k¹a3‡æx–V—Ç"ŠÃÈ7f59å‰RÃáW˜ö‰‹cåwj™nƒ´v\ÒìêâRÎ;¡bÙ¹¹49øðY͸+áNà5Ùk,&ÅúZ{ÉW—Rö‚<ÙêßP0-šFò‰YÀ'žòÚ¦Ø|š8|Â^$ •Âf]Àt‘ÜP;ce—qܸ|+ÌôÊö—Dëp [–JrFb×¼-ˆ-š­É³üôŒÊαQ^2JÒ"¯Æ— ÎÎ@v¢;ªˆf|ZúHÌ`vN± ð8%Rëo£+ÉæTéyæ[£7 TnZèE>ÍtU#æT™Ôpò9`Ý©¡1TßÕX!ü^ÛF/«¿Bû€å­²ÇÔ/C–èM^ŒÃÑ('2öØ>ã`É‚Õϵ{S ¥æŸö7Ò=¡Þ–«f É‰l)A'V‹¢}DQV²aöF+çHíï:}¦ž»7C!ºf]Öî´£Ê={1å«Ö+@ªÍ.(‘“±NÛ(S€ÞFà¯c›^ef+*Gº5L¼ÓÞ £,VƒöópôWãN5Ï**h ¹¢zBú›Á(AtP&Œ'f»Ð \°.8µ ûÓébpå¤-XÅt&eæâ¨RÚ“‡žî|ìGzl"Sjn:Ü¿ÚØ0ƒ±›ëz³¹Sy¨:t5ÌY¿Ê./ŠrÔzæX€¼å…!*³³x7ÍX?|ÿØpjÞ Rº› à—ÓñÜ}ìG\¨®Š=NPÿ>Ö5oqðÇCɌ˞ÉKŒßN'˜ê ]b¬çFjŽà~Sß…G ÊçT×'yÆœÿ|ÈÓM¹9Ûürž÷I÷‹òôé«·ºÖ}èÕÓpÒ ¢Œ.2^Œ «YEœxHÛ®[KÍoÛ÷…Be7ÃÞÁ­0‚CÇx½å5áŽÓt1Ä öÕåȤ½äœ.èûx´hõ.ë ð1Ö˜\ö¢ó]uI</g?çsãIz*ê<­Ù(†Mš/)fès6v ùùzæÊ™å›ô°nrU%f"dKEf«À)½ÉÎ(¯ ƒMœ°Èö0ËåTmnO÷ M—YÜS’G1é#z] xŒ̸ „t«;‹Ô¼à š>M¯éaì+f-ì«P_¯ïKù§80Rú¡Ú‡:΋³ ù¨OK`4‰uê@ÏÊQ[@ÓŒûý©É†åÐ~àÌÊrÉØ-Ö*ÁË$ì+.Ì}®\žäºâzj„·S-”a–ƒýò—¢TâËpI±ý_<@¼ ·à^æs R°ÛfÄŠ)M¼R>ÙÚþTwˆ1a‰1(VðÜÙ"ÈÛòÂ¥íä…õŽYØ®XøÛ¿²~zyÑ-Bf§>`G8­ÇK(~ËÝ"…´zÐ 5 Þ)Qý48úŽ¿£Øg¿S2Ÿùæ í„§ëˆß´Ÿ|C´[IkϨƒ½SŽö¸æÒoß%©Gt"I÷éMò:s­±@Ü7ÈŠsàï¸Zˆ zë%sb gsé ¼†<ìÌlϪ׳¶ ¤ÝªÅpmÁö¬Ÿ´ÀI¼E|ûYl朻§ÓãzÏ­nÛëÁÛF…/@&Ü¢ Ä~•lÃÆ÷d¯¶Q‰¬²ÌÀ<Ïê¼F¨ã€­Ì)…‰1˜€¼æ·)tI+>Ã"‰¡=x˜@L÷[ކ bp †Çt>ÄGŸ€­V>+åI ‰Ò£*!jü.:¶[ÙdȬq ZˆªÆuÍF+¡f%–ÿSÈnçøÑv3PŠ¡†pæÍ @|ª*„ô‰óY‚R¿/ÎÓÉ—_ ŠÑ¥_[óEšœz9Úä§ÐF¬·×ßwý¯¶¿Œþø‹[©«l)6ÌÇ8ˆŒq°á·#cÜÞpŒ;ÃØj¼Ÿ®‡(¥˜’FÓ£QüŸm0Æ~dŒý Ç8ÆF៶“½^à&ì›ÅãÁÚßFËìÖö—ôßögQøÀéˆü0>Ê-¤ø/n!ù7usC³K§Àc¨ŽN›•IsÙ»ÂZž`~Ór5A‡«ÁhŠÙŒ ¤ÃlÚËV/—‡ÂȦ§¥22Žh ˆ¦ÅÑ‘¹P—jŽWþ£Rpô“â-/»d[©Ÿ}Ú¡ÃŒ·fEfHQ{‡ï| ¡tÜ^O' ühÑ÷ÀÚµrlmê3çò°Þs6Ì´Õè)iœj©™0¹¹¼×ÅQ±ƒÆý®~Üwìh*..~vüeƒ0ŠÈœ*’…þ™ù·±$ÛÀ#Ç P®¾*‡A"ž º™˜ƒ0Sû! 9Ãb¢§ mYÕc‚‚™/°ÅNªTL8rx²Ç@¼C„9$ à1´G#›d­´ch޼JEò¼&u){ÂñÔ¶fŒ¾@54ª‡BÉ•dý`ˆØ`§Ô%óHêô̼¢zÙ¡7‘Kȼt}Ê0¬ »tõ1tC¨`’ßÙŠª~á¿è@±¯­ˆåû=†Ý‚Àbê•C»sß‚)Ô,< ÉM ›¾Æ+c ©Ïáˆâ# ü)&~6tF?7T>ºÓi¢ææ&O¢ÎÎéç}³ºÇ4yh¼oní<=üQ“^yc·.ùRB£W/úö[¼Ž‚ÿ†(åþ™fÁhÚ_¥^XvU¦ÉY„„š¶>ùæáW?ü±æXí}½~ÿýÓïƒÕeï 0Uòª Ý7ùÏ.…Ê»yøýàóMw£?œdi¹GaŸ*žQf:÷>u¾”d i¯§®~"@Ê)3©4Gg‹ã$GçÃWÀÂ4tÝÿÛ}ëtµ.IÅÆ’ô,Ä<…ÛÏOðKÆ®ýµgx´‡äG=ªyR7K±I¥ ö'w®>lâ\Z‡ï[Ýa^à í3;¡âY áÝ_Îâ8ñדjq‹:æÛ5ú…V À«êñbWsèLŠ‹czÿXÆ\ßüßi Cî~ˆìédíæ“,\[®öuÏh#ï›­`œ&Lœ'2Ãó¬µ Œ™ž ENú*[mJ6bSímKn360ÃÚ´´*W½cµ/«q…úÖßþ­@ä²^IÆRq(«†¶jáLûá"Áçã0¢¥/{j pQþ<¾ë P/»Þ̬y©ñedïZÜ‚Pšs©ÖÔçÄ1vpñR¯ìjB9¢§c)5­1—<ã¶E-`󃆖»ëÈüÀºàüWÝÚΦÁšç‹I>¼Ä¤Õ3Ǧb¾o>TúÖÜÐ<9ö.§¾GÕiüÕÍ1¡CÚ×br+<Öc£—ñ èx˜¹ÖDºûñrmÞ¯n¸sÇ2 ‹q˜| ™¥`|0¸°ç¨‚«ÛìºòI«Dú 6ŸyÿšY¼qÊ]Û“ðÅÿ7®HȯÐZ#dîP›¸ÀØ–Å3Ú$Ô²Jz{µ÷<ˆ$á·Û0òCP4ß·Ú±z7W¹,7\–‘Þì,ˆ˜ JBÎýÄêzËÇ …FÊö•³eLÉ¥%HG·:pc±-2G2Ꟍi©à 2,Þ\k¿=:Ô2Áá0´ÁíÐW(?HÎÀ˜z ¶ÀCjõU“9z-ÈÔxÐùªåŽÀ““b¨x#ü$V¦°Ž¶¦ (5 ðéõ¼Ñ„€Ï âQvÆé4…Ô-$j/¹Í‡f•f«¤CÁqw.kd[G<лm8[k?_z:¸ì¼Ë5çɧÉʦ ¢xø"9ØÛKnEöítšX"Uêxxþ½’…°¨‚ ¿2h©BÀß§)æ ³Ûzò†!˜ TâÆ±ÇÞÚÙ]0¡9è.‘mMCÛ­oטÃQ¢ /w›ø´=æjgsT×¶%YË}áöúT §IÌB—\Ç¡¤Wè6oI›‘ U™5ë3nÇ|P·ʤìU‰ÿÔ¯*èÍ/ŸôŸÄ³ÜTósÏ2å©ëªBBÍ¶ÎØõG Š]nL> Fh÷ ÔÅܼVÀº°è‘Ø6LÚB ñeE€ý4© ¼Õæ¿…ùÕÆîÊ:Áu½›ùò ØS@ ";3 ((ÔÈ謳ä$2ŠIÒ pÊWN]O°³ªCò‘Ȥ/H¼ª]€ë\dõˆYìû/‚ê¸~äü‚4Ê ¿àìt+‚·¨YŒtx‘WÃÇ®:Ö=Á4D°eX_™¦åh’U^KàS'uЪº²ÒN ”ªÃ:¬vº®$ÕÝ7j­-v E#¾ÿJ9¸HÜ¡|6á…R= ü;ðsH’žo/и¨QTuAÕÑÀãbF¾MëoëZhFƒñ³×óI>Ì“KáãQÒ'.ÒK}¾‘%1„ÕnëØïìªo^™›uJÕBËÖ£.yM_T¦lKO•frtÞU~Ûµˆç ]ë9ãdŒ÷wC‰èµ§àJa)ó‘9(/‚ZòÐ7!“gÑÂKÿ¼´îµºŠ^\ð Šj±Ž1Ø>,äOô|ܨõÜXåŒûH5kë´ë“ó%†Ê›CðWi¨áÚf8o›¢,÷;è¦`A w†/Ù®ض%ëBÛHçä¤ë7Ûƒš†žÙw£¡-”ª Ê"žQº×L:•Ù„šÛÉ„¸VacÛÛA—’^/ëŸö»Ø‹¼¬Ç“×Ђ£xòb}¿8”úa›E˜gø‘c(U?öW…Z:–)åÐu"¾Êñߨ¹W·@ËOg”ÏF“´Ž"[”Åa1Ê¢“ëš“:hjD±òR"·ý+€ŸÁÔ׫DõÐ]=° ßuCI‡ù$_äl㬗ô·åÀèpßnìnæ6%µ–’ŽÎÓÙÖíwðB0´TÚ&&0n§ ’!{É9(£PMõÊwÏ¡‡ª·Rê² ÝŸ1•„\£fL2ÊÌ/§ù `ª‡ý¦Iñ÷ˆ ÔB‘ùBœ¬óW§ÇeFÝN+Ï®3ún> ‘UýÇ $“öÓnI‰Å2§æï4‡]L¯5<ݧdWn!2síf€‚Ú—!Ôp)é ¸ÊKÈ]pù9^xÖZ–:Ê«á²ò±‘±û;Å îɨøû:6hóPc—ƒ=«û»frM“º¶?j?†0ÌMÂzA˜2lZ…å}U,¹×»ÒŠ!Yneøï ÖÊ5(/«…¶œE˜%·kƒ(Âøø#ÛäÜØ6“(Ø2FqŒIbNÞ¨‘Õ]H[q¸nªGÃRÈIŠö]¢Z’ìæ 6ÿêÄ}¦’Ti;3‹±-Q"»‘³§ÛNÐwök¬Ë–)ò4ü°ö+ùP‹ÎÀ¬JàÃd—U_wô5»Ù êfîkÏ}!}pI,²”ý~ÐöËéÖ°î! 8#¡\8ÓžÂýŒw!þD¨f2«”›²mÕË+(XÌPW–µ_‡ÉŒðÒX—“ìÖ¹M­ü" UèhèYÃoÅ{AÇ/-P²» ³âÂ[¦ªIÑÃak ¸wðª¨>þaÖçø¿Bˆeê*¡/ŠÁjJ/ˆë¿#‰ÚpGGIç"ŸÝ>èÄÑ“ìí8J~Ò-îa}\‹ôÞÙm îPT9þºëÀ×Ù}Y$3fÄ•gwM8¤ sú?J/Á.ð†;äN[Ü·µšÌþ«Âëƒ{Ÿr»±£HZ bê/È «”àŽ:è÷šÏ΋WؼHÓˆÃzÙº¸Ê\×òj”™y™±¾«yç Fšt`–Ü^±1£ÓÜiV}P+a4ƒŒ-ê(#Mv­S}%s¦ ïÐ’ßjëÃäÓ'O¿ÿîÁãGÿöðøÇ?=zñðù³_?ôFøÝºµ¬Ê[ØXå–æõ:èßñq•¿züàÉyüèÉCo¹A2à%1$õÓÞáÞKˆEy8[>ˆÅ­:¼C`6¼|¨½ùr“¥˜Jl:ë±›ÖÇÉ1fõ#C8>žžw|Ü©gyƒ÷á±XB$ر¨"/Ä"kTí‘@€.U…›ï{@º˜¦ØöÅØP£vÎv¬ˆ%¦XM©¹$D¸>aô{­–Ó]«…P ²¬»ƒÆ¹‘|ŸRÃŒ³tkÊÖ ZÂ.±q’ÂîwWüFôöô,óA”ˆnÓ3´M¿‹IðÑ\S[×IÞí0¾Õ4ddå2d< !ƒF+Þ ¨ an®²Xm¢óaªíla)×Vêv,Æ¡Gñ9ü݆Êú:àGî÷kå~ϘX‘Ò{Í”ž d6º¤¤&ŠP!ëÛiª Ù¿Á‰ 'À$©ç¤ºWì Ò­G"è£æUlm(]¡)ÐØÄ)µPB­$“í8ë¦a¦BÝöiRptË?üZøþwm­:–tk1»Ž…O/Þ¦P}w(tn"Ž÷ņÂ~žcQ8ò©7ÉVY™]½MGЦ×V[ÇPáŸÍ/[ŒŽ÷Úª¸Ò óËkÌ`~ùF­š+Îi=sèöµ–K"¾K.tXãzz^¹-k©ÿ0Å÷Aü5=~±Èaœ+ˆÅ¦7׋Çú¨ø–~“l¶K3¼ü|7ù2Ù¯ ¾cnåÜMŽÍSÀÆŽióŽw¶O³…ùýönŸþbûiÿÐ0¬N><œ»ÈÔê!CvT%;ðyóéót² ª¸Ì¦>O‘çædB½¼h­±Râ 9l˜2Îs¦-é-„݆]o^ŸÉO/›QÇe.óüÒœ–ùï1)ò;ïÑËfAÝäoï&Û¢mw©g.TÒE¢ÚMÔ(çŽ/Þ.|źÁ*=ôÓ^|ñ£lRïVÓÉÁˆ;2ðîÚÊ£"£úšðûꉭ¶“àž9y|gÎŒÒr´mvYÜÑ餘k²³‡tGÇ•qHŽ'ñ6#xæJ‘Ç’¨óy–¶Â–ù"Ûé¤ã3¼Ó© ¤mrýÃíÚ¯:Iιá×;¢’wíIÃßÌ€áÉÀ;f» MÝ á§$•ða2H†¡LýI//…ÿÀÿ ;>‘í8cžs¯ÈêcJ˜È,Fúwñ`ÎòSŒ%‹[@ji¨*}*yfQ Ý•íPt{W6ÚkÜ3ô|4¿¼¯CøMß*è¬üÉØK¯íjÄDêð« >sáÅå±Sp,'O÷emv4@cs\¤ð êà&3úÖð Ôm#"¶w?^½›¾z…¿’`¿U—øûÌXAùy(®W¿ª¶»ù$2]9›ùª6ª¡s‰p:?cñro«8l¾¹ŸTf8"f€Úv‡.T¹꺒—OZ«ò\? Þvé`û`XL ùa,O­"Hƒk¤m)©ZÅÄ4üAªŸH#OL_ÁïåTíOøY¯‘¨Uâ›F&ƒÑMùFÚì¾#þ{›izäeSâF<>äÓöÑ X%'dîïÒ(+Ö‹mÁ.™cÔžï÷x%Ýï ]KµžŠtPÁí¿Ë,à¬;=€*n~¼û&mN¢Jã‚;‹Ñív×y)¤Û­ XÃ\ÚÆC¢üЭR—C‹ItÖ§ã÷͡ʆԡ¼b‚h-±_2ΫP˜˜W!cÅHÞd^¦ö¡¤!P!›K8AÅú.Ⱦj3zx«×ñÊýèõšÕ’r±IiYV´Àâp}ó®âç¿1sÕô€_ëù˜Vð1­àcZÁo!­€-ÝæRѵ %׬œ$T#Æ[¯;7&gÛœ¼jô3éi†óåC;x:É—Ò;/nÎç~Ò*OªX2FäËA¾hú —ãÊøHKY»¾ÇÔaš{)º!ŠA),–;»*æœg%¦ˆVB<òýñ°M\?©- À½$›ŒµŒàÌb[]Þs7Ö™÷ ¡": ÒJ¡Ž8ȅØffX©òõf‚È\"læˆWæ§nó ã,«e:©WvÄ3Q饵ΪõØ©øå4‰)Ã|89€Þò¨ªÜÕ/ÂnŽ—;Í2Ãð†t‡Ô+Ö% 0•èÜnæ µ­];„îUÃp­†õ¾‘¢' :ˆõ0‰_Ž·à–Tá˜ß j[LóŸ‡T;ž®a€[šÙUÐÅ«żAÞƒ‚…@æ ¶Ò„RU¥<2pÚ³l+ø’¨âØ™@{miíÔŒ©Q\“rÖøE®Tl[¢JOÍ—sê…GγU`È€…  @JmŪÜx€¶ü·ë&e7xÞŒ‰«O•“"ZÒ8ÜÃÇæëÊA¦~k¡©ÞùóÛ^CƒÓÉû"Ø0ð>3ëÒØ-±ÖÇnsÒE\çQ¸Õ?Ø´Æuž·»ùV‡M »a/¢Lܱ×6÷aÓ]MO|Šqßbt“»«Ælª« p0¾8˸p š£ Ï mÁ/—Ó7CûŒYMu ̼4:4þ,çáÊ,KïÍðtdc}lT<…‰Vܑ߱À-Í•=VèöŸã丷4ËÐ\ ò¥6c-î„“N¸ ±ìB‚¯¨mÌøPþí#Z‚íćÚ0ÉŽ¬ûE3/{ÍýyŒEX?“Õ©zvW7Ìêkšðº)‚¼›äº­ Ïï*;£VÞ8™Úiƒ´\hyd¿ƒxÜåÎŽýe×þ*fÁý˜Iò´zÅ…½—bC¶Ê…÷äÂå / /'—:ÓU/”‡¨Š:“¼"P€úínÌú¶í®.B””…Š• >¡-)Ók蜭*"ö=û×zúäÙƒÂÇvÊlÑ£ªf;G¯ˆOz7æoužÖ¤÷| ꆎHpt -zBïeò©çÿñ^ÉfçyY°{–ÿѵVJ|-:ZJܪÉNèÌ~¿ã6¶éoâó¬*›ø‰îô“äe€¥}Æ Y»¿mÏy¶ª°Göc ”(4„©ñ˜©6-Fdy ÜíñA³úZîf4T$2o˜:ì(쀶zªàÆýϹ¬öÑHiO•‚˜…k‚€²dþˆ&Ü ±à&—l¨«‚]–äe9X«…جUÍ• í•Õ.|Ô3›°`”=Ã쪮("Ö¦µ¦M50ÇV-Pi䪔ßý»Qñÿ`YJä ÓÖ1’‡?zöüÑóu¢%!£eãp—w^ÍŠ‹¬"Ô½½½ý`4ªYÈ•…œ#gƒV‡×ö€>GýꎃiuuMð0l¡Oß̬6¢Ìãoõ†47h mt7y7áˆð2êÛgÜÁ` ¾a³O¨Tð_†7w Æ—ê4¤8T©è÷Ì7 äm‹Yª~z·ÝKO!/h50²o4¾ ¾Ø7¿£&´iŠŽXSêµ( h½‰º|¢!œBM6 û**a%Zªç…­¬1 ´ú 5´n²Mìßûôà^\vç`­µRç ø–¯8¡üUÓ†­›ŠÑ`Ì+òžŸ:áZ%ƒƒÇÍ©´°æµÝä¾¾\{³®Õr™ì<u x»Qðvv!¨ÍȆ6&PFÀç€.›–yUǸ‘”u…¯[§e‰‡:` õÁ=À¾fÇj#vvㆄ›÷,3Ò±‚C¢°S[3uñ`šßÂ\*”åþ f†C…O<Èð¸Ú ˆ%byÊðFLìG‡"@敾/y|MWYóèVûøÍ/Ä.lx(m®NM Ç\\pòùßkS‹+åð§,ÿÔùöéST3!¬ž ÒŸ!ôŸôçtÚ ¥ëìÿꆙÔѽÜÝØÌkM^o—7öƒÂÃkßÚ“JjŸ]ÉåB†Vµ—µT‘ï/IF?dë5ŒÇˆÁ€¾~Ó×Âæ‡'þ›htÀŸˆQlìÐW-†)C’zoݵŚEýݶÆbÍ·íƒ'ð Ñ3ð‹ï¾oöþ—Xõæ:Í©®íþÚýà«g†^vâØ@ ƒåh“ÛØ›†çáE:"붤›!¥¥D˜|I«N>07T^òJ•Íû5z±T‹ë›ùQÕú·mÀ¯â o‚;lÄ!6x=—Ä•r-7θŒ;$¢öï ¤檘 n–Q9 {kˆ XÛðÿàË¿º¼""¢ ×n2DZþÀÿíÓvÄÝÝ^Ïwö°Tƒ|8Uebx˜åsZ”SܵÃy“¤@i^1îm:^pÙo±r%e¬)!,Lúà•7¯¨!¯ýr÷£¬ùµ:‹×È`.þ‘¿)Üú*ÓÆLz¤åC.]õZ)ÝNkc˜ÕÓr ¥¹í×”:Î-©T/%ô¬»fJä5€ŸUY‰-GéìÔ\àX“ËdA9‰F”¤•ìRn§·5: ¡ý´‚&4 9WÚˆA-Ã=°·’×3V²R]òñŒóÀC-Gc4y¿Í0ÁÉëé$qXjÏŠjqZfÏÿëc” §Ô ­ë×={3DbÈãœÂ v5ôuI\•%!¥8/ Êêi64 È«©š./ÌvêØôêdšÎÌ ëû«ËpßðXï6N%d›IÕ».©æ_ O?S)¶ ’1ø0¢ "ˆHæÐø”ãÊôá”:³E7ÅE†ÝëF•Î1µùm–ˆ´¨±›u '›‚Ãû´H'îN™_º¸o¥a×Js8©Ñ ³ØexîÉNaGVé‚Qƒ:0?ËGŠ^Ær„³a¶›Àq f¶D´ƒ†Å6‘/]¨¾V¿²]“Ñ—Ç_.Ë øGØïÀ<çs®Ö‚Ò†SìLkØÚ8+K—î>ÉP>@æÉИæ`°ÿ·ï‡7ž²…9ãc«Ç¤”å3ìê*ΊÒ áuÝ¢üy³[£Ïf.ܯª$¼oÌ_Åöp|—ÌW¡ÈÀ¼P,‰›)!ÔÈp±Ä¤g¬"eQVÙ!>æŒN3=šôžæ§g êêeÈÄìä´ËÍ"KêÖIÐ$ðùØèr²è[÷+e°ûl­Ž+æ¥Îw}¨@—2!î\îqLW{‡1Ì+Øs8’¾r;:«_H³+ÝÃý®}»„úTA9¦mDRŽ>°¨€»ò™Å~ƒñPø1K/T'¨f!ðvz"§ YvUã{ðåœjïö‘Pèaõˆh8‡naöÚ©³¤˜á!—┉š 0sõ£þe¦³c¶'hË"õns\Þ¼ÙâÚHÎç#i>¦ÂüRa`ôãã  fÛaѲ¿Q`ê?縶Ò*§£^#TÙN áõZïìüÁ ”‰€j4-#Á ù§Ò¼ó|¹ÀiDN~}éß“¤¢G¶A¼ëßy:²îÜZ”O ;éBc4ò•JÑN‰ˆ‹¯°¦1‰hU¿œÄdôa4 +füCÔ ã#Q®x”‘¢àBTó+6¼­“¬(£ ”Åòô Å0è$ØA_­ÎÀql‡ÃPÓ1êý(KmÂ& Ø.uÓIO `gëpæ†WÍ 6ô[è\¨Sì]³¸Ý+)ˆªÄ5çÚQéÙD´r&ðps¢UÊØðC5¡Ýä ü‘ew5²™«ACz’$»Äàà¦èôóŠ–×ÏZÇYkVö/?@K¦…ÑŽô|–ÍfAÝUQëÚ-ƒ˜£ —Z!™Ùœì 5Ò ½Êœ5 V~•ó©ÙVÅ12&hC–ÁÈèÉz6Ú^G³’˜QRM@±†Ø.·MßÌ9èäÌèö¢ ˆ0µæŠ®$E@|¨ñ6žž¯(ìG¯§ïɉÙÍÉô²O{›œÈ’¥K³ûB×-ˆuª˜Cä¬S0E+–ü, 3dœ¿F†0ÑX‡ßFçP.¯ULfºÄ¿èõcÂ><¶ËU Þ3ÕÿµªŠõ‰¡´}fÇÿç5Sm®_ÚM:þÑ­. W/í;ø²û[(ýhå½ßV^Çljy×ïw¶Vþ u-84>´´ ¤6B}fPóW§Ç(Ð×Õ{bŒúìÁ¨={«G©mòGÓ÷ý0}­ÛPZŸ›CßD3Ä1€4ù£ýüaÛÏ›¦I¯6û®!“Þ„±·ŠýÜTX{Öx¨¸gLºàmeGU…šl«!£ÞóÒV•VÁ}G‹ÊEì`¢˜K~¸™Wš °¡Öɤ(¨”"¢¶YÅeöW³tީݨCŠœ>ˆq"˜¡É‚,q+Åk•ÚþÜ}(F ¿ztÕÎ#jŽ˜tV%y50'#(6¼+ÌÚÝÝ«u>/^™¯F C¢ûíÏHûRÑwŒ{nbíeÉiO¬6³Lªåxœ¿–j F|æ&Çzj‹³lmüj¥Û\ñè<-»DVÿæšyl€4Šzȇ…5Š­ÖDµ»± Þè¶ðj§¡H›gú&ÁHAÒ—ÅC].gU kÞ¨ÿè6bÝ Ÿ7ŒwE+$» k‚¢uÜp/²-dÝö<›5lbÊsÓ}âc(ÌkCdh„” ýØW?ô»GøTmß.Gð 5o¶Û\2[NYéfaö6Ôc{ŒÞK=³‘F+ÝÆúáûǜڦu“ÂõÊI#“ 0= ‹})»õï£T¿ dc¾ ÇjóëDªàœÉ¯}K¨äÜÈí¼ÑOãÂùG¯…€»ÚQýŒ)ê|È‚g‹Åüð–Äó¼OÒ¸_”§·È?}«+Ôæþ«äܱŸ0õI°)Ôñb1—ƃ} –ð`óè·^ã&â¼îRA™À(¼l8ùèIO†ý¹œÂì’‚eä¾46˜ù!â>L.“ütV”¸ÆGžUaËÃÛ/JƒvÕn^àõ›ÞœÄ`|®ì õÆ‚y`Es’/†ÆÊ§tͬ»Ó%CBa´Þj¼þ‰²dCEå¤xŒno%iš.†g*(9IõI‡ÚÂ[Ë'bs©ƒËWei9<áò8¹ìEçë‘EäÛÐk5dƒ¢€z<¸bK$ d¸f%¶±™÷ýZÎ1 ' tÈáÕ(ÔïX9Í8Dª c°nÏ2jHb¹vì§ËÉ‚{ ÉGY{âSp(ó÷n ¡üX±…'ªÊ¾Á~ùK¡¾’æÛ´­Ù¦ŠªQ¼LÓùöÞhÙ1œ€à9“ᬩ¶ÿU6±fŸ8¡ûê°GšPiÓbíܑǬR-1è ·yêsÁíâëÀg*7T €%'¢î9<Œº'!Ñ/¸›ÓÙ—ÑßÊ0g_ÆF© sxhîøwØ£ö›lÌÝj«ŸÀøÛßÿ{Ë<þô›GO½8þö‡'_«_€EÊÜ9/ò‘ÖçÿèØÏ.Ÿ$>™þ!øÕÔ|úÙåñ#3Úw¨|ÞÞÙæa·»2Án²½½ûoÍcH»yñãÓÚ—h”ã£}sgjÞ6üÁŒöìòÑlqümYL³Óƒ]̬Þ|}“áþ·ß<üîi8¨áIš.ÿWC Nô ×¶ØÑ¬œ5‡åÀ»>Å$€æ†Bö¾ÃÓëZRöšjx‚ÉΠëÊ‚ÀPá¡)8~en"A*u˜ì XÐËÀ˜ÿ¢%^Bh ~'âÌåäcy"ß²1¯J˜i‹éR´c²Iaï~-¢¼=¤^cV)¿Zͤ `Ô5 DAüµÄ4¶b«e;]øÓ˜WK¶£ÓEs4ýMv¯göºêú¡=. ¶S‰;Œ¿ÇF‹%¬\ðSç}O„ð-ž~o¿‡À zËYþº—ßûì^€ˆëÝ){”ØW±ZJúŠW=­ôWs h2pד¨”Æcÿ§Í™É}\ÿ›T;0¢¿êÅz{ýÐàçÚ'n7<ÁcØ,¶½ö‘bás+¶¾É/¼œCƒ—P–^î †©>pü–£áŽEÜ4¡w€#LÑWÿâl1|ùÅ ]È49+³ñÑö ?åV;²ýeôÇ_ÜJÍXeÃH±a®8ÆAdŒƒ Ǹãö†cÜÆVãýtõ8Ž4û?çsÅÿÙcìGÆØßpŒƒalþiû8êjÐÁÖ}ûnøöÝÕoãÜþ’þÛþ,ê¸>7Øþ2òÃø(·ð¾|q /Oƒî¢„„Ã3¬“ƒ°*±ÌtÚÝITþ½¾‚²€\wBzh±>2îåŠß5_YŠhŒ=SããW]–½ð”ç^0O^EºÖ> N?BÙNRá‘!FɵEòm:©hEˆIh˜ˆZéoJìdž ½:ÂMÚ\-0_Y¶ë¿ üÀÕZJ0LixÂ^L涉¸ìÉ8I`F~2‡Ð¥ t´B·ù-+§w×UNÍDX{üîz4 ‚Äziı ‰íF’L–”è²ÐϰgûÛÂz_UM1¿ó‰²É:˜™õ¦A’;ûCaHcTŸgíaìs¬Ir8!‚AOÃfžÊ.«6S78EŒ(®_G›¤êƒV1ÒÏaCÖÁ´8Ïð B5Úý­ ¡#pZîðŽ:†¤;»oÀm½æWáë…Ÿsp%g“bîÛº7\¦YúŒë±]Icn‰üø.‘®.qU¦ä²”}_Ô>åfׄšÓ|†OnyUƀΩÛkN›b¿kÇ~á+a\ÐEoð×<ƒ®´,˜\rÒÚ¶Ìq›b†¾ç:¶º5V†Žq•ÚK'J:·é!Û\¥ÊE·ˆ°×±=ü Ñd°íGq,QÜ,N캥4u¼íž'~¶¦s|÷àÉ£o>Ñôó~€=`~õýÃß|÷0ü©e„¿ú]ωZ¿ÎªÛó¦ò7b²Ïª7/ùüsi’B ÀØyÕ‰³6T¤ôPî9íÞ¸39D³¦ýÍx@·Tn~ýð͉ǀîdk"¥^‚„㨥~§*®©ÎsˆþZ®ò.oÕˆyêzWmäïxbš^¬Šõ/é7œ™•ø¾–U ÂpM´Ùµ‚FhZÕ dŒY3 HEÂÉHéRe)¼(©bP—'<óEgähI“Eê4œº&Îù×3÷}; æ«?°ãÓ‚ÃÐs 1OÝRÄ=_-²y=`=^Nê¾/öyÑlÜa0£‹e rÖÔì–.Öm“, ¯T†Üài¶) ?ÚàH «ŽÓÉEzYyq•y™cã&ö*ô)©Éí·ÊÝ'i¯òÄ K3êz3âþ23ý¦ÊC±#Ä–™Ù”#€ŸqçWÂôÚô]ˈ¬+¯8ó€‰ÅLáYJ„ äKdß’µF¸°ø0®Ø´ T9f–NfX’ªÁ·jê`kILÇ¡ýâ¿#‘ÒfiçÀþïnS ØÌ‡–Ñ(Ûòú­Yº)ê©j¾ôëÄ'42æUF™>5BÊ¡¨][™Q¶4ƒ<=¨˜÷¼\Ù 56TM lØÓ²Œ Öôi‡àóÁüñá‹ä`o/¹}Øý=‰„³hò¤‡ ­Ž¢]»Ôüèh¯ MzÏXé ³—ãåìç|Á ¶»Xûé½;Ф††ùÞŠ¿FÄ·ÂõùÉ¥–áüØÔo×uìϽaã‚hØÆ>ØÕ‘€'Å‚ú‹£v‘¡ŸAÓÛtÞ+è±ëys7óÁÆ—àÕùŠWá‘èXs\XÏ_z£÷k'ÚóÖ¿&/êsu:»± â ›®Ó¡t®lvp8ÿ4¨<"ŸUå9³€RÔ’ÜÛsCë¨s°†µˆ*‹r¡ÎÜà¸Ý¸6«¢¶¢7f?ty+´Ï¢eÑ(KÆAžñD‡|œŒûfèrQÁáìtì¢: o¨ô^äx÷†Sߌ»ëW"_ߦV¦ HÄùTx¼¯f!ÕCø‹ÿº„ЫU,³Òoò ‡uŽy¥ £ï†¯s$×îÍðŒHše¼ÿà7N"2Ž´ýÕQíOëë4*‹¹!s@c›¤C,¼ÃkÿÜá×Q  ÓfûlY}g¯3‰!ž¬?OÉk T Á\{À^Ïi''’•ÆqÕ“#\ ñ²“—‚é‡ ÇÿÏ Uj'úíD©rÑMåôôÙȳÏ')ภú»zàx?ÌŠM+§þç6_® ±7Ž%«yØ|vr )/ò¡@?)d£Ô(!iI)¥•7WC&Vª(1áž ø"+ÇRaBU2†š6€Ûƒš£-òƒ01‰!Z³?ÅÈ"¿1ì}[O}‡QÔ¬¹>¶ ñ G%¶˜¨C‘”ô·Ô¤:UäOæEçüÄûS ümÉÎÁÞþ^þow£›ÝcÕg¥šé(]¤IgYN:ˆ+êãüˆ‹²‹É¹ÎÅÑÁZ³e€w`î™edÑ=è%¾{öôûž¼8Ä<ÐQ¨ààŽ{‘–£Êò‡|’/.]´ÑÀÀ:Ç–>Zv!íË9Ûæ¢Hù©UïPHÀŽí!¹Àßö£V½ä+¡`N¹®´1Úlºɪ!…0j* öHžŸ]Òé°´ëY”‘/é;±T€¾»ÈQ2Ã]ÌÖÏ2ˆƒ!4-*³h…xã¡…¡†Œ®Y×Ô(Ê•K½$t3×q~º,Ùƒϰ ¤ ªÍ=¢åæ·ÜI@Ìgv ¾þ±Iõ@, rƒY¾9êœ(:À i‚ãtÈœÇò! AGwJšxÚ›Pê‘¡„‘^FªpÔ”uœx•Âêõ‹”ê¤ÍÀð©!¹õ£À·$ »`t?Ã#_¡ãŒbŸÅÞg½ƒÏ7cO² iˆó÷’ç,c€}‘. 9è=œ­Øã±FJ(žI`ÇQ¡A/ã2c.9¡FŒ 0áâñ-ÉÞ dæ-z8bAfÑÑOQ-œµBˆT¬—’ ¸‰B{晢Ínù×TŒ_/B°-ÂìÀçf(ta¶äÐ…~ŒÄ篳Qt»AÜTFÞ ÌcýI iótÔŸe üÑ­{·ï~¾—‚QÜÅ>¹ÐÓ„ºÀ­¶úð€T›Oòa¾_[”©øu©ñ à?äŒd–LŠZ¾Žæ®gv$zû†ITk 6=–™ÏAÿ~”×|ué ?¾Ò•ñè7P÷À£Í0G§ÚCU>¸ÅWVke†× ¤B~$2zpiUõÑõzÀÞ狞…we²'»dµ>A¦rÐT a’k‘^¬zÂé2é<žÓtd{ZŒ—pnQôä鋇‡‰`( sú˜‰Q§*2^\¤Œ®êð@Lì›@§eß§ÿ9<+ 6!¸ò/=Oó Z‰ ™Š7¿2;5 Ì®»ù½³‘Ô7¢ çQ}Qø‚ò¡@ÍÔ»ÖšñÄ'øI†gFe'ZëÑxGx‡žÓSвä'!Œ—æ.Å ÂiûBñvŒ^»µ¥ þ}Kݨß10ó£ùXúÛM<ä®9Ûpºˆ2äíd’Wœ‰1K €³7¢ê1¨{øPܬ»›3^â‚«žžM È0üÅ2ÎO {}gŠ5! Y¦%eJâüe¥¯aÎ$y+­„>>­Î‹rÞJâP ü»+!ÙŠçÛ»‚7Sf²ñŸœl تlìÄb›5HØ4{wV¨*1I@l+W…¹6b’Ç…z†Ì«,›ó'÷­í€vÂÙ²ôÚ¸€WÌRì 9@àøðè£ÍƒÕí_gu ç¾m“sFT+“8¬Šá«ÌÈ„| 4Æ^ª`)ü%úÕ²Àa²ò$:"ãÖH`HiüSxIú¹ìœ†G¥»Q¡j/}ŽåA3íƒð‚(ÿŸ]ÎÃ3òÍ™]ì 9)€³Tüng7y`¦›Uf€³lø ¥ðÎÁn RÖµ‡‡ô޹$b¢x½c} s¥»áUJ<«Ö3Y¿&Ï‘×Qè;Ø™ùT%tÙºßúÒBkYßiæUMRh̓ËpµÜNÊ0V³œ‚ÈTþ°X Ù22T.Í.li\>@Õ‡+üÁúô꽫­šnºuFFÕo–˜f¼€y¦ ©5¬ZƒÁ¾;:½ô•7á ª?Um«ØM,[„Û6Ö™nó¢ºÁ’I éh^HÐ}¨êvöCå»eãžØ· NºÃ4xU¬þh“0úgÐÊLÑ*ˆÉÐ誯ÆJÒì5I9iñæ4v¬I±ûú ¶ 9Ë/dz9¾1¤ ·zŠØ(ØxÞM)Àó/J t²”¿ÊßÛÛ*ƒå)—ã´j(™Êê)eÓw½3¤.Íd˜•,gWøƒŠè×ûÍòA_ýîÕx–ç|s\«é^ °!H(¡¨øæõX/y¼ÜõÚAT8؉ۖÚ»kµ”]…Þ©°t1:—˜nZ­ K®¡'ƒ<0=T:¥—]”ñ%AŸwÅF½ S¸£ÊšŒÞÉOPîËÚa1Øñkä/°¿A†äÏÇšØýßzNÀ4š&P¹M† Š:’³uQØŸÀÖÐÈ÷o{" «x0#÷þÌ®SÅW3_êN@è>ˆj¡ Ñ¶÷T]2ÝôÍ †E£Mê¸?÷ý£¶!æaÀ01[)ëŸö»ÎÑ=Ÿî6Lñë¢äþ_gP.¾¥ŠWë5‘Å*è 0[ »‘ô¯#Swž?mNÅ.;XPñÃ`9[,E T»~«¥ÿ‘b·>5¿¿ugïîÁgmÆtj >/vg½Ó*PˆÂ=°4t8͆íä8ÎU u’ì|/>—ÞŸà}Fõõ4ÒóØ¥[ ïR-¾^ Ô+…ã¹wq(ëGºÓ5ÿsþç©ýû°­Û‚Ô˜Ký]Ü!ØJ=¡ÈPj¾²ÊPža¡ Fq—:24·ë=¶Å CCî³Í8¯{º†ôʲ(}G·´±Û¤Æä3Ýœ]Øo}€Çw6¼üCÔÍE÷yÒ›/K@¾4c‹ÃÀH÷†5‡ÍûBšµÑ™“”½ynì¥QϺ*Ž’1áÍ dW´§IÍ ´C Ó¦(@éýj<Š3AŠ€sC̰B†;¶áK ªÉÿ‰ŒùÏú˜uÇPÕL¢‚RÀõRÀ·ì¨½ósêã©úÞ#éÌVбõ¡enШ™k3~OgA¦„7l„±•ÈVwfÊæn‹Ôàó •~~r«Æ¶1šæFd>Í¿¤ñ ÿg1š£ÌIóÖÚÀ' %óѦ.¹…Ç5­™@È—yê²eÎxÖ|pQe“1#X/`h ^ªix*%:Ýó™‹ÀÀ‰RàüÞªº¢i=`l 1¢¾¸#ÛBÐÛ*ëkFñQûu#›™Ëj_Ó+{èV¸ÿŸ±+àƒs±Ó¥cÙjrîòÇÄ|T˜“èÚb*ËÙ(Ì‘H­éÔ¼dÈXzµÄ‹µhæë6¹–vöö>ïíôö÷6 ^¬Å˜À LqÎl¤e¿‡¤Tw\ìéϪŮMΞf2ž‡KƒI1 QÄNK,ÙÞv²BÃñš¯õuB¼š¤Dè8¶†¡zù¨Q€e5åThÏY,S"f|䘸œ‚’<Rlƒz6x ^®  ¹äabÁwKjíí~ooó¸ûëZÜuiTëü ÐÔµ>Lß ²¥4"V¹tP+’JÓæ]A§Ôv =k šN‡Á4IØf0˜†L°ë9¦sp¡(|w{+­Nê „ùn7CzŠÊÄ1ƒ³Ê ýÍ¡¥:Ó=Äá0Ícj¶(PlºA[WÔŸö÷šd½5À<{„K^Âíþî›»´ÕrJñ53+îÈ{Q¢·íޏÑ>“,„Rï¿’ef}”´ß³é@ˆ˜ŸaÛ¸ƒ%Åšò56§+èI~äô°¼½]«ôécÝé‘?`”?ÕÒT=ëÎzÌS}ÓÃÞ»sïvl O#³­MTÏ nkOZ®Y6‰´7¾ß–šá bTkËlb®Ò9ÈÛÅYÅô äŒÌ…9x2¾ºœŠ c`AV-¹”I½q—’r5°"7îp³lKRðܼ<'*oòòãc ýãcÌEh׹Ї½0IKkõ¦B+áþ2›çQ_§=uîmše÷#‚§ ÏuAÄ*0ºÒ"_H¡«´w,¦9CÜpÑ€<e FŠMë½6~ êUòÏ;ÅßwûW™X­í$Ñ_:á ízæ-;<æ)P 7lè‰%ÌẔޅ]—@ÓÒòŽè” 2üºµ7v™ ŸoXúMÁrÌ"¾»‡|Ü<ŒnyªÇ4–E›oU,#{7±ÿpd‡Åôóù„òʆáE•]ö(Åiž-ÜÌ©àJ•ýD9DýV&­ je¤ÏV‘¤÷®5cô²NÁkŸ-† Ȇ¤xÅËlÉ=(8þÔk¯ÙÈÿN¥ÏvJˆj1 áWÏÏV%;ö&ÐãB®mlº‰ïªÃGº½Ï·µxÜ?Øô>qÅÒ ´…2›ŒºYQË@±I©ðÓªì’&g™Í½ÞÁæ“£LÖ‚,ZààIÌgc3íE¹6$Þô°˜ÜÓ>ÁóvFª·ì‰/ÄV‚ù)¹®¶OêÚÌ]0¹öfɤÁFçâÇ'X§tj`”Øæ˜ùBÎNnR@t^ÖmCÎá/ÍÂ+²F)"FɾKö>Õa½ ½\P]t͉}ÓüôŒ –å€å£ÒÀuoɼ;•7e÷¬q2Hzf¯8Ϻ#¢ÃÊ”G£>Äà´Å6®•,ézêþÃ>.it:˜ÐguzèZcÉ”Ò.Xü‚G9&þï=­ß6f%k…íõŠ(cþÛvTèZ†ÙOª×iòæ~ÿÀñƒÛ½ýÏ6½rßgtŒw_eØ iÂ… 3m…)£03ÆHæµ§æuÓy‰ ð DY—ÍQ? ¢xz‡¶[Œ][ªòÚYvÙ)ùÎGåàˆ¨¥Ý»ÚÒ¬ÓûžÄûæ0è®Úßݶ¿k¦^sÁ’s”ETi ?„ˆ§»¯u)ž€änHnæ3Ho#ƒÇZ¶pƒ¸rŒ™}‚xE#1OgŸ`ޱM$î?ƒv-˜šcvæ:ZAk.èæß‡Fíñ7N³ÃJ§ÙMò”wÜR3€¦¿£¼ H«+ªNÔþåÀþ-j}ùŸÕ’ÓÅ ¹ŒŠãùå°£ª“g¢7`Ÿk²ˆÁ6@ýU!Z’—7nñ[‰DÚ*:ƒã<ìáë9/g怱èV€†º¥Sþ:é&Fmªsa¿’CgGIŸšs÷$/©ºõIl¢_3iÕý3 q\Ê¿Œt>3ÕŸŽîÒÜs(v¹ ì4ñóWáaªzGZ^YZ"mFNó]üzˆï «:te¡è¤±?2#Ú ¹þÅ?ãÚÝ…‚³SFà@éANCW…ftÕ2K_Áê&;Y|Ìi Û ›Èeä[6ã—Å+hox9ÅŠÒÇâH~wpwïîýÛ»qGBå³ÞÞýÞÁÆB¥¶8\ÖHWƳ` “í7mµk“Ó‘HL¢ádÍdÕòÓæòÙ†TŒµnŒ5fóíÿ~‹i ïÞ¶ç6lÿó«J;›O-­±„Ùʼ9§Ó{µLsðm\=†ñ=l‰iþÛƒ4’¦„^ò¢4œr¬*ÎC¿ ¦VÙ~ljÔet¯›Ê?æÔÀ´^ýazh—òp%= ãßHKߨ ïÄ[4¿,ØSHÞS§ÑT$à 3‰$4ž.C ׌R¸Ø³JØl=ên¦âŠ {(g哽×Û¿½éÉ~—ΖÈï dJ!z¨®/[ØJW£‡¸‰ïîàöçûÜò4§¶ª´ñ šÝèz4¸}ª†ÏNè°.O«óYÿg# Q˜êOMöêVUÍOmpÕþňàÿl}ôÙýÛ{Ÿÿoå¾ùËÁýûÿ[y@?ñ¢¼)¶Ä6‡N¾-Ôß-®9f£ï@ƒÖÅÏ»ÍF…¬Öné§GIïÈp>#D_-8#ìµE< ¶S¯e‹À[ 6ðËIÅS‚j/ˆÁšÀ&¬scÝ+-ŸfÀµÇ¥`&K—‰„ácìd ëšxøƒjÀ‡OKÔ¯ëV+Åsœ.ÛåÎ!í;–2¿ÁÕ`Y8³6&=?ŽÞ‘³Â¨‘¸×­g·,ÑÒ„3¤tŠííí =~rèÒ®ñÆBÿõ3\µ&ly%é ¬iVvÌ@àß¡¼8(¶26=ÌYU绂Þú͛ㆧ é ùOeˆ7T†*ú°R‹‰²ý@¬­³"[çÛ23z…aÙæ³“T#Ü8ów ¦]:iàB{ƒÛD÷Wg·D'Ù aÒØªªm>“Sòý0çÙ¼f‰eÇ]#ö•C3q±#[~¡Ò_Ú†çÙ *Ùˆ|/èR°ž ù†—bGå ¯ª¾+åÔŠ3°¹Uí e€£96,¦^¦žyýäOæ×æ²A‰ hMà¡Ò¾ ÚŽä‡ïW~îb¸¦ z³èž‚V# ¯±Ü¾Æ_ü®riLÚŽ”"&ß1ekœtþPKqå:ôÄ)¸zÿ(å â í2Š1ç·ï2“"C`qi¦>aµ‰ùFêÁvةû3Ò)ºIÆagI9B@&’¹\Þ"ƒŠhä†Å6cÿîþg{‡É7Ò‹‰Ó[mуîGÆžD@BW`U/#×0¶­`J½äÏY9€m ®1Kg§mniNñ}£kâ=?úbÞpÒ/d z0‚„£té–Lwÿ=·-Ønuæu÷ï‹Á©¬ KBÖüh™æ˜LTæ§ùˆ;ê!ÁÑ<äÃ_³9}CÒ¤©ÍVÑ…CoÏ({Ý ˆ! [5,æ>×’n~MPã‡•ŠŽñ \‰.Ï–x¤äýžç©·a(Ø&Dì’ärd$ÌN-‰ÌÀ#?üBüE½$5¨Ì´½®„ª›O¼YN„ ½·)'¿fˆÏœŽ°² F„‚ ²1!t{C”8Ÿ…Ð::Íe8ʇúDì}•úÆ>M[#ð:°jø´ ho†þ¬-4ÐÁçïꀰ· íD½GmŠcõc!vì•T«´ÇG€WÔ_0²g‘WØW徺ŽL¾"â^ôZå ÌuÇ¥âl9,#ÁÚg/ ó/óço;Ó$º‡ÉÏÞwrÚâ½_[”Š9ú°¼WÍ'WæPBˆÇ4±Ø’á)]Ù–&P›d¦¤!§E6eV“mTu¶›®E@ÿzÑ‹B@j8˜Ý†ŽV‡°†Â€Ò†µg†KŸsæ¥7º‰W) ÁÂ…ýà`F-5§ü£yV"’âlè×÷¥ä>8[š_Ù"Â&&Hpô®ûÒ'[ŸT—t†èT†š!BkÔåÜ(ƒž:t)”UD@pOÍqi[ts´¯t0q%·væ_|¹]õ˜Ñ:ȼ¹ÑdÅF{óìòÙ#·%7¢Ü»sgÿ0y ½!áúòaBݪ|»Ä&ÄRX•cŽ,÷3a¹æÿînÌr7^*ÄP¸¯®p ËGx±xÅQ/]… %¡=$(V1:'Šbpµ™ š5ïÃ}Ù‡{W=Qc:¡Î v¥xêô$Í–êÞÃz°°ršK1Ò^!oX VËl‰PDÍûqÏíÇþçoSK "AC„&FW Øó¨v“Gt¾|‡9$©ádÕÑÚó j@ÜÊ!Å¢*ZeiI©¬­ sIò<Q³ Û^P„“ʧŸ‚9N‹E~އ;½d-*TÚa†éCÌ æ¥€7«–iu–URãˆÓ³…¢-ež“¹½÷Ù]GÏ^ç ‡MøsVäCƒ ÊÅ’Ó„ƒ?í6bÝÚ¨¿"EÅím!ÚÛoYk&Âй»¾¸Â¦êÜ(pMiЫŒÊöüh4JëëN ÿHH „LbMr_Ãmë»ngmu¤ wYvàƒj<׬r8ù¢±‰’vó’~^4.c|i0±¥2Ì!‰ ¯öŠ©‰÷÷oß½}×åÑBâ$óˆx6 ÍºÅ‘‰”³¾V¢lz”yÿZ*“ú"õ»ï¦jl³Ý¨£1UÆ»;púëçüßmv&€ )… èã +“r&©—Ô[Q¤‘wÀµù†ä; ëqä«~Üv†E/a¸ÒÁàø&,õ³ Êl†¼Gù|P$ ùÃiÉic£Ú¢7…èâ”÷7+ãËŒÏîG©Â!gºK«/¸Õç^KäÇ×fgQoÓt帤N³Rï11ļúš7 ¨Ëó #aÕJ½êgê2°òu§ïM%—ØBÄÀà§èŽ}|>˹sD¤˜QNÑÌüÅæŽ1Âc(]ÌCè £sgÂÖ?³Ø¬­–M™ïêØÞʇÿ–0Äß(?¢‘Aì;±wïÝÊB)®|ƃK'8`9ÖWâß{I(uœóF¾‡RÃ})µO‚™Âdا$¬4–‚`³<‰C-9ë óݨÐ#¢Üà(< :æl9ö°nS` |ó×á“AR>«»¡Ëœý9£é7B˜&äNU’(ºï»ì©à`’Úm,é ¯{yþýIÓaÕãk{bX¿Î~´$ƒŒ<ìj䔤“Ø|³oà²à@÷Ÿ[0ýøv<Gþ±}¼±«h¶ÀP‡B]þáPµ@s™ÉƒÑ_–•”`—çNN¨1Dz›Ê¦âYï×™g 8,§ùŒ;lŠyÊÞ 3¤9ëS@§£|ëóóso° #”r/æGÆh¯“¥vË\Š}–Mæ ±šî =Sq.(jºÖ(nff6uà ·÷Ù»H±s¾Mêj!€~š4ªà§Uh‡¶YAªÓ,[xŽ7¡q¬‰÷\p•¦N“3v.xÐêäÎe))ãMécç°ìuJQËÔbÁF¥f¹ËAØ;±ðï<=Uýz,ÿdïWΤ ·Ò'ôÖ'‘R|ò'Ç{Ñ–aid¤•¼B=s %Í'zNq¿üÀX3ß“;f.ÿ„‘†L•œí(0 ‘³¸@§b`£4H$%,Þ‡9ĽŒócÊkÇMoÀÎ2Èì #@ϳâSQ“&jê ?• ¼ ÇPîŽF¤(ƒÔÔÀ¿rjŸH «…4%;h鶴÷a†â;Oü."(Ç÷g®”¿×¢{c-ã¹ Ô„”|(Þ‘1w»±ÆÜášB…×NgÏ:ݤc¡0vcã_ÝÐ}ÆðÐÀÙÖÓ{1é0â|Wsqvi(½ty*p]æ‡ÓFž¿o³‘ö{wÞ|Hø¡íÑå¥+FJüLP–á^”DbZºã”V¨kKN“ƒÞ(?5–ÒŽ·Kj´ÛôÀn a5ïÜgjçÞ¾´”ÒÔ•`@¤Sò‘1þíòL]kJsÕª Öà<{T55›óåd2 ©Iia¯ˆß[>‘R3¯«ÔÖn¦€—Sɽ”c3ÀÓ¤ëõo*!C’0­ a1¬¬=°dGÒʬ³Euî¢A0iŽô,ÃçúÕ9AB|ýççk)]û”“qY÷î¿Õ|Íš¬²]£v¦iû7q-ÞDj¹°¨bnŃ;÷¢¹üÎõm[•:î˜VR­`±eMLJ¦F›ÆámÂãº÷®Ž‹ à¼‹æJ{?tQð—Ôôîajó§â×Z· “¤õ©ö¤JÜ)ºœ íBŸD‘æ¥pw ‰YK®ÉÅèN¯Ñ¶»ÚÝ×â4fo£(72¥µ ºšxj ÄöÉW„Ý›—a üd]Û Á%¤Ø&`ìdp÷áBÅ_3㸫(ñÞ›—Ü?Ìdm'NÑç[å# 1ªœÓ6j0-5ÂCÒ»C~)@|¶;=mÞƒ;jî¾}¼¬í %,¦XoÀ~KPz_»GCè£j˜Í bðFìƒå¢€l¯¡ `»Sâ'¿Œ”Ó¯~‹6>}$n.mÊ®Ë)°¡…Ëê‡Õ¡¦°èƒè"m¯¢vTdªù’ê( éA’ÖH÷Ü¿­¨âÎÛ¤Š?GqSœo<‡¥`¼BáD²âÔMù/ !ªf³!aY¦ôCÜRºSÈÀ$ljŠï 6ÒJ/T‰r^]4XR¿ÞS[¿z¡ø°-QÑó»V¢þÄn°lþ[µL÷œ[48œ„ó )‚ ´zúÝIÔEJ<Ìê¶þ¶m‡ÞüYYV›–ÐOvž3›¹Þ ¼òàâXƒDeûq?B#ˆ/s©Ó´ióÁf—F5‰gNÐC-1WR¸•b˹ȷſ@êã³´4:F¯Z\BVr”ükÊÂïwÆE±[íö“§3Î%¥d¬xH&ˆ9ˆã™ŠF ”.G&éðþ¾\:ñ³Ø\ºý9ý^ Å˜LLßÙÆ(Q§¢ÝöT`bÌ-Ãââþ´o ™‡÷ ¡½ŒaŒ uƒj¡z «¾"€=ÉCîÒÏr˜ü·~«„‹ïR[°Z£“ªkí&heÎoÅó´jóÀb‘¾kz*ðÖ‚¿ïamao5Ò »ÀÖ¥H ”ø¢s\( Dì]Žq}—ö ÓPsèwCwÕÅ·Öv±J¾†æ„ÒÎ=ÒÑ0Dm›û×Ú« )øäÞýû·ï'_ˆI¸®5ˆ¯}yrì¹ïl-/p¹¿.¡cž8Œl8*'£°‹z š û]‹<èVâΞLéG÷Ùýý«,μV[Ü#¥8†ÒTJ}„wPÏÚeL¸ÌÏ'hУq¦·¯6ÓÛµ™RÛEêÚG Ò(b âO%&IØ• È ÃñGƒŽfN‹ …™èµÖÇ—GŽÔ3-š)ÏQþþ[⟑ÀF5l9óë¯) h;/¨3­@"J󂪿Û)¤>Ú¥ÜGÈlÙÌœÝø-'fÀøxêÊélQì éd0w¿§cŠ–8;ÇHwyåUÊñd0"þ‚£cÒúÕGïFâm^ž¤uéõQ"x){‘ý:ÇjŒeô:ŒI?4ë I!§Pü5J?ÐÀUïLy”W6w?*¹5÷†Gp“+)j6êGWEYË‚™[¯ßó/Õìj¥(Âá\}»ÍTñOð¹¥Ü„nóPònì%hs¢´šÔÿpÀmÃ1~.@'±‹±YTÑ»Èá„ë~ ¨@—•áÜ£…0¬×9^ª¶›¼¢`l ïS?Ó¿ÖsH—Nx¹X3˜)»X]M!þ" jÉç_v¬…”àa‰ÒÒ~x ¬l½TaåA× GŠC—ÎG‚R5lƒ6¼âÔŸ;F½w°iSú éð‰¡#èÜ ÏÖ*—ÒïnU ægjûox^ïB»Å^’1)ªxÊUè=kÀÒ«Àf˜só)ÎÃÕtÌÑ8LäÜ]1)ÚU²¤øíÇcÃü2¨•†Ú,`ñVyw ‹‚ÁzþáûÇ ¹`ýUPÅù̉[ [arØÕ Ñ:=¾b»ý0¾qã‰ß¹þ ë‚bÃuÍC"‚íäBT}é¿¿KL=¡þtýæO×”¨lI½ýPÙ`ØÇð³.¤ÙÁ@OÉÛºN5žÁïK²K¯ê¦»·zçèL7V^÷î~æpL h‡ "…6ƒ-Û˜3à$â2æÖ{ã>WuÉ-œ$s 1H€»\28¹Ò nÞ'û¢WsA+%‚aOà‡x%f—éåj{øîê-Um"ÈíR¥VK5V%˜Â-¿ñLÖ-g€#1}EÆ!?ú´À`Ëb1~Ce—`ãÌþÖ&5oéÀñ„v9mDí õ”Fy2^ÌÝovÉ`O–™ÆyÐ `¥[€õP g’(šÚæ¹.2…¯ØÑš»7ÐÎßY½óÊiðÉ'Ùk¨kÄÿä“Oô2§¨ój û–£Í–—øO‘ïÃVˆÏn¡á$»Avœ3¸–)6S}2î¡®¯ní‡PD,Ó-6lï¬k$üh·±GbZXC¤>CIòŒ'2Ø @G¹Lðj±%ʉYí9VŠZCµ+6fhÓ‚e©zik÷pR'm[$²K¦¡/RÙŒ²æ—Ç^÷‚¦V3^bõ@÷qçn4Õ÷ÁŒ—†@’ëvo»›l÷·q¶“í®Uëñ îáSŸ#Í©Á‹ƒ._„‚?O'9™Ê~Ë+õ#¾¾å—FL8dnMPV¡6í¯Q #ݰQ'…0®êFDøŠƒ»pXDAmà'Ÿ—»I}² ‹1€ÓÜ<„ïL,ZAýΚJ‰I˜Ò•m‹ AVÏ¢ôÞzÎÕwg}é¦MÕŠWàÉõZ|¹ÆÌåuu,]/¡òϘЃp”Lzêê–gXÆ´êf7Ó:üPWáøšzt¡ŸålrS®ü "íM¦–«>…f–A€êç«„­RëÎΨm$ÆœÉÀ÷8ˆå5ª˜e b ™\ÚžÉ*ÎY`äG³Ñ+tmÇòD8˜Šz2à*¥XQ/•’_˜™ÜtëØñ‘v0ËZÌ¢OR…7tn¦EUµ”A‚fw¤‘„ÄÍ®QØ¢-ªg[“!LÏU‘g ÛâÆ†Çü¾Cë é5^Eqᯄ%ÝDéùˆa¾L~Qý¹o¸xÖþà“è÷⡜óêÐoºƒ‰âÏ&ér“žü—'O|²õõÒÇF<4SbÔóËQ]rhñCÍô¼gçC£6áOŸ? ebÚæßÿfžNžÑ²ø1ïÕÅÜüÆ<ø¼/.À§øšè!W^›Ç -õF/>Æ.Uà³2ÿ`sù;4Ýú§àºL½ýþÝþôáºu³ßØ3îïíÁ÷ïßÅÿîíß¹ƒÿå?ÿ´¿çî»·ïß¹÷Ÿööoß½{»oc2¿L’BàìÖç =þÓ¯îOüü-‚÷¸„V 7pþ÷šÎÿŽùë}sþû÷îìß=¸o~¿ïî½»ÿ”ì}<ÿ7þ§ß— ›á__Tw†Ý_¾ÜÚ:jü³õˆ»££ûåÿÔ"¹íµ-óµ2½0_‚N~[ @¾”É­/õÿnmýK>M¾5V T‹!gÿº(A1ÀhÈÖ7ÿöÃHÖÇá à´ÉÃí­ÿºìdÕ¢g„È_—^Ã×ÿÜ:©^òÔ({#»\g FœÎOù¦BÁ/'Ü@ºÿòè(( ^3òûÁ\¦Y~ž¥K7ú{4–èð‡œéy6L §QóØ÷¿ücþË?°^vÖ‚6Ëh°³$pÁLÏËÔh$¿ü_ (P·.ÕŽQ°ùÇi ©dÝýò‚<‚ °¥ù/|èÿ^ðdú•ÊÜìkf é/ÿ×Ñ¡Àsk¦>Yb›'èÓJZÊ%tdž¤á20 ÌÏg¿ü~ Ìô–öa¿ü?aÙÆðåYyöË?P¨Î³¥‘ù[þ)øûyÔ~’XCŸ9ŒN¤Œ;㚨v‚?Ã%ãzСÇLagÍ9•à¦6 ŠøÃŒv<<ËáPYkL£efÔ|öPÙÄØ~]v–3y8Á¾‘éd¸œ˜¡ÌÝe*Œá³2£sì“ÿßÿëÿô úOUÐÀÑUIùËœ‚2ÿ­1÷ìöWt¢¸àÓ<¤,í'ÀJ<ÞØ×Dè•W „¡;—ÓÒP5t.ªêñpàñýå?¦¼žm"?³[7 úkËL*ø÷lf–[!qðòWöÊqL£‘*í1žBrÂȶŠ=+Ê2çKÖK€4Ä |!ØŠ“~<ƒºiÀxÅ{¶¤‰ðts‰‘ăá[¯îŸ }CsÊó·”iÎø¢¬¥p0”1p08ªÚ a¤T_$ò˜äÉ_:ÀQäAs>æB–ào˜¢£snþfÈaŒöÝ&ïvýòÒHæ4ø†uͼ)€O7É\ÜM¬«í:>6=„¸PY¼†íúOðCí¯ºþ×¢y)2È´&Ò *9].="4ç“-‘¬‘BºÙQ^ì¢üåÿ¦Cä,µlvž¤Ó_þ1É ÝB-'žeV…têsýåÿ8‡”$àµdÕ•ëΑßÄÒÄÌ‚òØJüpj¸ÉÂ&gà×yØ®s¹(àTON*3Ʊd2œœÐÐ6GE6W98 j@`u²×†A³çY._¸Ýkl× ýäøÌdÕñ3|íFÁôJºÞM·›K)9i’z"%~Õºo‰J…uà6Àbá–,Šå_Ì&TÄ' ý§t»¤.^<@leN½¹¡[ë1„5€ f˜Ó—ß0yø§m=°ÄM‡»Þ5¦IÈìÝ “[à]xféÆžÔ˜7oH , xÀ"ÂÝ¿˜É†ƒ¦¼á ‡3x0DXZ\ñ̰ÇsXx3Ë{êã‰Äß"ªüòu_¶|ÍJvK‘c ·CÎ~z*`ô€-ðË?RúˆzÃjsæ³[œ²$×3-ó_:¨Qѹ«éŸdq²PÙ. ™ó7Wô”«+ðºO –3/ü¥ª|Ý<ìañÃð¥örŸm&¿ÅЈÁ¶ôAk– W'mžÍXÉéPgõršëCâ ÕvÖÊ…zÜåɾÓÓÈ1Z[€Ž‰*’[#mmŸÏw§v9DËëvNè²ÆdUOÒQùÎõwó1êc|X öPŒR(ñÿ%ã­Xbú!¬ œzD÷áÑ'@ãÇ0cUÊÒ¿W;€-²V"t^c®PÐaµåû4“ 7 †ýåÿX@ÛªáÂh§0¥um±^ò3PxÙÈ~:¸ùBäðé‡óI‘óÍ…&ÄE^å áÃÔ'ŽÍNAŠÍ(ó‰6Øs- àI¡q‘ÙÜ`Úì´uÔõÂ| Œ'ü™Q‰!çd‚—ªÆB4x¶°GhŽ_N¬ï̪KÌ®3HšaÒsL0Ï›mZbúë¢X\b¥±[Zhö…óÊ£ËH1´'¸‘‰¦Ã¿.s©Ó„äZþL ¶Õ7@ÐÓ*™‘/ bçýlòåÿúŸbåÀˆ@6œÛ*j¢èÎP)]5i«…†ìk8"µr¨H˃†UdoUZƒA©—±‡)¦K`’SH+&e%ŽáÔÈï‰YƒŬfFôˆYÏÏf ³O*Á‡¿Ëi/0*™Úã¨(x [üƒt|S$9§¤ècœ¨j¥ÜgÃË냬Q)’ ¿}Øþe,ŠÆŠÞJ`tž"Êì²ÂnQk#Ü>.žåœÍZ<%y*¼X£ÔÄeÄY†ìŒ+!äÂ:|0…±©Ä“Õ3î¾ñãw·¶þŨ3lk>Œ(“8¶N…mÛrC^þ¯! ¸SXº5µÊ"i„ÖòÂ…™©N`ºC¬Ú5— ŽF˜E@ Èk(lD¬ô¼*HÖ¬·ÍføóÔ‘1²Ùuo"]–â'ÕüjÏR¸RÝ-«=Âéw ± ñ\¢#)Ê›­úÃ,hÁÆRÐÇs1˜dPt –ÓozŸ¿êÐZ3Üñ|bY Å+#'_ÊŸ´®…>4 g[DšÈ:.÷‹õàêdX;ðø•ùŒ°òØ®ÉH^°Á*#`í¢Ì `Ø-£Ê;0™ÙËüý/–aÞiYs¦ ¡ÀÇ€9<ÏÊsdÿ „¡C ¹Ô‘6a›×ÑÌÌu!Ã>ìÄçTAØ b”ÍBhn!€ŽËfO.°!›ÒüÿØ»Þ —q™[Pš ‹áHÈ%;F?>'·nH°àGÞ÷ùÇiÊš èÆÀ“èPXôWhÌjد]éŽ8m M°¹! rî<žõ Ü9U•ŠžiøëØŒhì†eIrhÀv¸J.²¥¨¿:ÑÖ³P/Œh$/Ê_þ£e7ŸØ/Áv Š±°r´qp¡Ë9‘à”k¡î)Úª’C³Ú¥L)-U†­!ã£OÃ@è"â¦Ið^¸Ï(¿>¿Ž7_!ÁˆZtŸ”cà‡°£ž¥§µ=ÏNí¢ @o(äJðäÙMnPäpìæjäTëÝ£‚õ‰ÒBì}Ƕ z£äK4VP¿y\\Û°‡I*€õax3´1±ÙÛvðå’Ó)e£ËY:µ´ÍB¸¡e?â°sñ×cˆB09Œ™4-˜pÒ‰_ë"ñˆ?³VnIKJc™ìÖ‡×\L2Éî£yep³è“£Qô!_ýâíØ e¸ˆnàË `Ð(Þ¬MÈâPs×L^Êö„ФÖÕù©–‰,×mšW™õ¡V€CœC£I ÃìÙ->nÄŽÞþ]KªT!¯$Q‹_EŠ™SÚyM×àúØÅÚ´®ÇŸRGªÁ+nBÄklÀ·›çàß«§ÄÖóey^ è«fÙ\+¼ô=1"1ìhlJ\Rº–ëï˜ Áq›¢AIþ"ý‘® L1Œo_ÎéëÌJöÄKgF=‚óœ+¥ÓaXZù¨­8³o9D›ÊœI&éáá–ÊѳÈ¡Ìèð׿Kl¿(ä€å•ÕGfÿ².é¡É:áÊ}ü:›¤½Q¾áŽÎæ ÃÙœ1ªA'%pAâž<]Nù5) ‘Œ¤ÒΪl:˜ð-ÇQ >ÁQ°«IyšÀÑ´•û…1ÑXp4äBkûú ”2*)GNBåbÃñ¯vñ°Y³6¼é´LA/×5p¬ÝãÎ(ÿIÞ7ØÈðʺìò&AW¹5©(”%J|€©¡ìôšÙ" #'­zúó<¡XoB™-òRÌä0ÇØþÀÍx³*LÌún479Xo˜ÔbC[ü9J00#4Íý- ™mU5~“ìTè°»Â1ý}ƒãRâ¨Cè„¶ö~c4¤ÛL3/¿&DC§Ó—)7†ÁìtFØ ¢a”¯Œ¾qžQ‰!§F5°×¯S ƒˆà Jâ»hËd“p„·XNÀ$§Ü·š;Õú±Œ‰yáû^2ˆ Nq4(3dA‡ ЋyÖ‡¶¥ ¸ïßÚ´1èÂGŽVýAÖ"^£xˆ»oiuM²…OÍž¥ƒÂBŸµ“-}§?©o±ûxFÜñ—û†¥þ0B ÈÀÿ¢Ñ9 #Š7=†c!Gp}Yƒ|vk-5‘×cÃK3¬¨³M É«0(ñÛpò”þ<©½ä~2Ø2HˆÍ˜M…~RÁ“†¦NA&æ0·•¨ÑÇðø10ˆð•-w;£ošwŽóÙ¸HzåÀH↷m¤õjP<ÂÈ;”¤õw(u•Bœ¶Ó›m`t³×ÜÏ¡È ÀÉ-V’W¼üÈÑÔ9Š@%“ÊP0WÓ#ENÙ ãKø®rÖTŒ‹s¿æúœùâD“Ÿà}Möú9mÝ.ßúì*ö¦ÚQG:Rr:§%À­H 0 AK¶.'h”×vŸÇCíÚSíò±vÝP+‘(΢´Uë¬BÙ¨s$¢r馑|šØk– Óg¹U†*À<{d#äõ6­1¹äØ28¸ÉÓ·rAüu.0bqžýìki%\dö‹tFäX¢/¹ÂüQ/Ó@ ½ãÝþ£“ú«”PM¹Œ)õ7b;áÎÉò+N°ˆÑã03¦V‰‰räŠé/ÀYŸ8+6NhLåœl¤-àfð4 ë5þ²: Yÿ¥‚E¡;ähçŒ~¸k‡ã œzI &ž¡ÛC}RÉ %zãó²ÂÌ¿áý-²+„xü×m1%‘X6£lÆxÒ9Ïún •‡@[ÔüFÂ53ùx])LrDnÆÁDô„§3ž¸vqtÖsæö’o:éš\×i8ÍaRÏŒ^fþ·ƒV-««[0Í[nˆ[ ™½òÔ­F%¥Ay gÿ©Ù ³È%µÜ½E¼Sq†*÷ó49g)-íyÊ®‰^ò/ìÍ™1[Áæ“(·V‹N£ÀV•§€¾UsˆµµùÎj3¨ê:¨nÙkU…ýî%ËS®œ“®‹iQS'ûõѵñà²åà*Ìlý—›Sü’®âÔ›„Ïþ>ö\ôø[+FTÙC«*Œ¨¸C—0Uô¿ ˜û3Š¥uô¤ ¦º5òš¯Íî¤ÌŸú+¹¤hÒ)¨d¨_)TkàÇ è\¹E(-̼ñ‡ Sß½êYH‚z ú›ÏÞ«²¶Óe>’jX/ñŠDLÒE4±³ýü Q¹ºf±W³þE6ÚÆxšc’ÇûC÷Н«Í¡éúìqæbÄ¥u£U)¢Ê霜Vc˜žNXP[3ŠŠ)3ↅþò?Ð{‰%~šJ®@„ª?lmÞPC·u“b/pè¸òf·:~¥òÀ"Ñ:Nmkµ uÅpC×úã¼™â­{P­qµ±--í%!ë§AÉŽK¨ã}-6$]4Uûª¼’žGq-¼±†Ó^”Pˆ)}Â5VÁ{e‡e÷Jk9zµà¸Í‡ñk.(˧·ÄŠK¹ÆX“[‹þ÷[Ä”ys ú úØ(Í¢õXÑÄ5ñ¯9@çëR2ïVS¼¸«‰È¡œ– Á ÂCü ËbËò#9‹úwP“ŸrmË3?î'`W6AóÛ£õÿ`eËâ¢)Ìש´£]η$¾·#nH|9ꌋ¢Óu)4Xðql$Dr”ü­Ó9ìTå°ówûÀn#ӯĹU`:9¿¾-æ@·¿ÊºŽœû³Ó›ˆÛ:ùLܶ.;µtÈQÆx”ƒÕãÅ6ZìD¾­Ðè`Ë«äÀ]Vo“Å‚¦÷r„ºED­/£yjâ ‡aC½³H°Î¥ó(VbõLúì×â‚C+†ÖGàìØ,¬‹¡$hÊdë€õâß#8¡T„IXINmÔÔ…bÍ‘-lßjr¼²³Ð>ÿ#ÄÄÆÔQçvÿvÏᲜuZ¼Oõ F†åQ',T¤F `MÂM4°ã¿q Zü„&|»g¤ÿ]´gû`ý2$þmÕy{±ƒÙnŶŸ}àè'üj§ûRžaHŸcûEèPvd$Ö2s ß=f|JÄMÇŽôs>?FÐô£ä[è¹-?o½·rZå0§œ9ÆA©Ð‚©kè«—4Ôá¿F<#“QÙ6Ù]="\ˆ’Ä æ±þu©ªPÒ Ë®GïÅ’5 åPׂhÏ8f™˜:—4ÇsÊ7åÉ« 9”Òˆ4®;eš4º8À ÷NÜgž‘P{2€Üôpp M— ¢J*uòÐmåg‡¡°E¹#4˜a€=ÔúÉ3Pj™aAŒ o¾r$¸¬ÇÑ%úŽº¡“Æ ¿³¹xô£Z×ý+zÇž)Mq>l/×´ÏH#ûŒc$Í;Ö®e§ 4ÈÖhœn€¥ÕÆþ›=Ž7b¯Þ»s÷êm~WVu¤´'|66†3$Ð]]]••••ùä“õ:']-ç¿7¶äâ/q1l(#‚ÀH£r:eoo¹ k{ßË|£f6€4H¾ãÝ!¸Ü4Oy°Æ~ë'W\©Ø-kâáébìæÇG³;˜¬"›M÷í  Í©ØòÁ-­‹Cy)öšluÐp Dñ ˜iölèxÇÖ‘8çÚÆaAM’¤#Gïšè„ƒ†ÊADƒ —ìltè¾ü0ýu5Ê?tžV®øñÔokp™¿h˜¹5¾h qî š¢ÞñÖððËOé¤PÉþŒnÑј¢›ž ½¸Xtµ:HÇu‡mòTÌã鑃-Ýÿ¶iæsN©¶‚~Kr ¢QˆDañ s9yò`¬qñÒZJÀTèÔÉ4OdÙP˜ÁÜÊÐO½Ñè˘ˆMàº&:kÑbeÛ6T¨øÇÙTÁö ÃCrÈùZΟ±-¦‡eÎåN÷á%ùàŽKòßÉ_00Xò/žçŠckƯ@6ó?¥=æEˆrŒþ§ž6H?g?åXpëáâÿ˜s生›õ…®e1¡ÄÄU$*=AÿZ þËË öž7“¢¯4óÒËã2„ÑÞ?‡Óx5ã &1‰÷Þî†nœ»žr³vfVO7QKlÃhÛi.oÁ6ž†F_Çýnº\„ë"¼¨u¶«¦[Ц7öÁºm¾½ÙÑ{¢ã߬¤øc=ÛqeÒ‚$YOW…üËO?~¸÷i×nó•JCÿ @l3¤Ä§’YZ”7êÅ]†à²iÞ…!À¿ðtœNz89‹^Â7tSríaøóp7Ï'ü£XE‰Àt¦!\÷ˆô⃼àXc/žíSÌ¿ð¤K ?D21:¡Gë‘ÛIÚ¹`ðz©öL†QÜ`Æò‰˜:Ͼî4—?³:#Â%`Ø¿Õf ›»†]òo´m¢:ˆÎÃüͨ²ÿ´„]+ÒOâ¯H¨q¢‡ÀQ«žp¨û67*ŠŽ îo±¦K§$ K(€K!䋇«..†RlÈì3ô o‰çáô!÷I‚ðÓ8QH\ïÄÞDl,?ÜÒ͈´$Ú Š¦¯ãÉÝð~ ìˆc£]<“ºw f`I%ù]_Ù_;²à«D ’ *t …•Fk/ÿíéÃâ7áÃ;¤ „ƒZV¬>=²;q¤°]õ×õ·4Y\6BΣ$ºHpˆü@˜£Ð™ÅþÙ´³“Ü<ë ×iöª$Ž-²|£d³jx ¢\íÊÊÈL‚¡w$!…å>ÛÊn17¥¡í6èKüe è3 ¾¦{w{;1§ ÿzÙÛK-ûÏ ùyoߎ3!p²ðN€ÄHÿ^˜ 1“äDb¹0' ¤SWâ çE˱§ðáŸc”q08õ{¦éöÊp{\ª(W6ϳgqÖ»WK·Ÿ4¢©iˆ¸?‡½ü]*99&\žöT5;Éæ *­=øM5Ýa(<ßáÿrý{âÔ8«g§ÿê?>¼ƒlõdÊ‘Êú&5æOõ2d_(Û‹«¯ŽOŽ¿†ƒ58êçáä<šLºÍ tó²‚-ó—ßNØP?ˆçH5\1íºø~¬™VMตãûÂìneÞâ°èÖ°  O@Řú´{¼s‰@m¾KЍAŽZG”¬ Hp›!ÈrýÄ’%¡j(3€Cx”^nAQžNÊÅ@9cèD_I6ÄÝ<ÜäÊ÷ÐvGÒÅùÞ«íÆ£ë¢á^?R¼.$Hº×¶eçùŽí«öð|M©œU„Xc®Æ³>Ã8óc ø õP5 Óp¦Éùl¯Q°×cà&¤w#æÔð‘v.2?н;Àò†aþ_á/·îI. |JçE SæØ(A qˆ:«- 9ê ¡¿ ¨G7J±×NßkV%$Rbq–LŒÊtarå¬}¾‘nU!¾Ó1½Hšb™Ç‹*¡‘Ôäawµ%‰Ín F¨Áƒ â(©Þ}†vV-º¹ë£¨I}-ÍÿƸ m]Ûù¼¦,X¤w!VÞø>£XS8;•Žð,+Öú ‹ñ?lûèÊ9ñü¦Ax“wð£¢tš”×ü]¯ß˜‘-çß‘×ÎïÀ†ÝÏ.ØÅ4˜ïÙ?1»#dØÈ^£§˜HlgÓh_¼«weÜN—KL>ÅíÅöÜ›í²Ð•f©GÜÚ¤k§“‡Åñ¯‹ãbS¶ÅÅwîQüì=ëyºí6Í’×3|ùŠîâ ]ùééqñh‡œS,Õ(:ÊÌS6íoúå÷Ñ›Ÿ¨çà‡#¹ÝÿT*ìæö[àB|\k·^·K‹ÀIvŽP¦ž9Xîä–Ä3(î$â\ó•›³ëû#žQ˜&(˜Î¥+[‰’óú|QØþø/Ä6+pz²»= FQPœÒa¦¬q%¥Íe$iñbC¨>¡µ-§;Š)d!7—ކñ Ê‘9& £ÀJmÍëtŸø "ˆal§Äk€A¬[&å!-ÛËþ4öö×€:Ã*®·Ìÿæ¾b3é<9ƒnÿÜaÎ1tl7çÍÿ“ãBâÍKfœ 3&Uö—a #zm'Æ-“í¯ÂúE÷¹…°^ö¹jˆÂheg»òÉVuåYU{‡R~¾m Ù‹Eº{èäÂ^2M^×V`tx>néù`Kî¬K<6-lD˜o¼×LF¢4Awa ƒ¶ˆ9LÍ»…;·W .±¸PœÕ,éÆvë æD!±ñÅ8‰6ÛŽ¼ʦܤŸRIa@ø±™° ôžL[2klÄÜx!ccPáȸƒÍç§# w½ïšÙ9}‰¿ìÙzD¹h Cï¤H3r‰œ’KéìW>~öúìÙç¯_íœý/ä|àœ% °†›Bpi”÷ãò]"‘‰Ô.p%™åðÜOþ㿲$0XiwŸ´,  ‘´5èDòÉ¢Ü(ﳯéánƒE·Ùz?Cþ³`S²÷R2:J#Æ”ºmyJ³êh„L3G§/,õ¡(þ©Ø=•d\  $»Ž2OÕ1Tn+%ÄâÉ êÓšz²f6Rœ04vÇ©.vÄÍ8¶ÂÎŒ™ä¹^”Þ 1LV C㌣žóÙöpê­Ìb¯P‹Ï#æ°!!Crͨ³HºÏ›¼kØÙ Äý€%‰+«ÃçN÷KF^y#„k³ÕW‹yꬩ’K‰`ÍŒ9È;ÁÊ9š6‡T"FS+ÏkçùÔ8ßVm¯ÁDè"¼EæXcÎå%:(,›ÝM²òg„Â?Ú¡/ux•î…‚²tf›ÜÆÒ¿†[ Îi“Ø?,¯««æF þø7Ð)²g(y¬µ$ä/îhŒž¶&w,wI··‚<‡öŒeÙb) 7 ï+fßô¾O~bT¦ä¦¡~‘PKI¹t d ,TÕl׳roɪ“¾oruL¾!Ÿ•#÷óŒ7t©¶•ä=Ö•|D!/˜+nÀųüöíçÍ w}Ç]3N ³™£!qFéb[„4r|‘ÕŽnr[ïe•5v4¿®ö ðó8½Î$eU1a0aSw ‰¶¥ˆq*72êÂpÉ•òEæRæS_ZSF´bùW¹*44 k“FRK •J j¹Ê#Jõ-+ï[íõˆömgúÂPÖÄhYïß¼}»|gc6 Àä\ßœ$¨¾EsqQ¯.Àâ…Îú:Gp ÍQþ¶`XeDôéÆ|ÐU‹ùØ‘o˜D÷Ã_x®,økúU÷™Óøw‡|òÕÏì#ôÎG8Á=˜ä«‘þ6úú«‘¹ÚÓ€ÿÐOÒ…ÛoðнzކšuºîàÑ=tcò„ÃhÌÑDÓS\T›çðkÕØH˜®ÒÄè“r…Ÿ‚ÕÒuÖ÷}Â=ã‡eÈ--¡ékç·ö:iëØDE³Š7`Täù`ôlu¦Â,÷îNy˜„X}ÑEÊö [¿ž¡)øó$Œa™Žš] µ~\Â$˜ÿd·! O]]¹½Š E(U«™N™¡Bz*zñJL/Þ Þ—Z<¥mtMðÉ.ñ–ñÍ;ênD½©•XÐÜçÆrUøÖ(Ä ý’-Ã, Ï@$²µòÃ¥êa(Á‘3‰*5DR™¯øÚürW‰Éî,☡җðÑ'(ØpSeðQT¬„K¢Š%ò ×Ð[ówÑW‚JÆ/â×dû`ø-»n§¿q*žÐ¥TIÅ6ɼQÜ7BI®ÌÂàgç>ÓdÔ7HýÌóéö¸÷Î)Q õ&§lŒ¤Ø&á°ß”GÂ+¾þ$sE<æ¶nnÈî$e0™˜¶[-îM/ß±•O&ålq/¿ŸˆŸÄ¿¾>´²þôS´5zþÎé§Ù—‹éBµsÎdPv¼ûŽ~ÏàHÅýîwyot«Ý3ÿ¡hKsÎ̹Q -:È Ð‹‰ÕÉq7jˆOôÞ²Úø‚Cjï³áƒÂQºikXÉÕ Tý¸…"?HEFŸÜ-m–Ó@6íÍ™`$Nó{÷îá§_9Hj‡–>Æ.ƒâ;! '‹ðŸÑš8‰—Y.·‹Í` é ‡¯÷µÞ¼ûÒï-´Ý çüËžú?Xt-¾ö0‰¯‘ŸæJlª™<™Ÿ#äGi•™ØM I±U¦Û`Ÿ/UèoàAQ"mP dÜb´¡¥\&ã¢$ûèÔ+¬ô¡w%¦âÙ$z ,H@üväN¾XIÉc¦Ž¹=8÷<½%Âa”|˜~ó[p-Y~G¤“b:Äó¸|ÊzäRÊÂz#t8]=ÎÛõ«NbbßXËär b5¶ „ ¨ðÔÏšoI»5?.ŠUu-dDZycL€]ráÎŒŠ—34Ó• ï³ñØh¢·1M>Ç7?{û–{F±–Ø'@cO%m¶èa™c>†:6óùvA~6 äyÂz<¢o™2@×ù"è3¡§®£n(~Ê 5C/$û)o´;®½{b“dª*ãäïÛÔ Ëøñtn5gÓÐH$« oHIžiì­^9ÕÃô #²ÔZ æ‚òÖ .d 0*$yU>ÿ›yu|XÄdÖƒJÞU¿05OY·[ôÂ+þëb]Ñè8挙/¨ ´ï°¼Ð¦†E"A+FDÈ@C›¢(¥Ä)~NÎKôh¶Eîp§Û3Bb‰~xšËŒÜÿ4Ws'~âãÛ'>xâã= ¾¼£O‹|k}V%;ä-†6*Z‹‹¶_tÖW~y’™˜%=L¡ÂE0'ªŸ!ŸÖXÑݶsOŒ·=”!­Jn"ÂÇ6·ó»ô6zUqR ß*ê~V:K¸Ô)s¯(uÆrY ŸudBhÞU 'ä#ÏóäZº•EÞãÎdMáK3Ó)2•0dôÛÿ ¨]$á!‚Ëíª7(5Mº§ö_8‰`m{W·øðÖÁ`ˆÒ"êhB²Y&Ø'E~@öã²ñÞÐoFâ ­4åc•4ñðMåxTìyËÊ×âRe¨#YqAtàue:KѤ) Üj0=¨›'sK'NðÖ¬'í€ß„ȱ¶A3' ôÀÜ^OªnÏ\šcR# QC²5»r_V쎇2¡·ÔêjoS-Qù‰qjçåŒ*­!¯¥ð³sSÌe+9ÁÒÁÇ`åÁñуÃìç¦\Ô”°"än‹!™EDÈó0'Âå¤äQ‘¥©iõŪi™îÿ¢%K,ÓJ³Ô¹œQœ«¡kO’2Â3‹AÏÖÖöÜԖ«Çz!º¶X‘wŽ‚vÁ§•Uùãÿ„uæfw·GU:heÍ.¶&Eí—U½@a„\l¸Þ8ç_2X4c­w\ŒôL ¸,ýÆñÕ,ƲEÂ*2Ç9Ýö\Õ5žFZQßR©KúÃwSjÁÇa]ˆ¤²9l`¯cNt1¢Ãßø?y*í¬'š*âÛãäWrih>‡0ôAO9A‹Ï\Ü•s>WÐ'y aJ¾JBqiáy„ºÖ´C^sq?õ`à’»¬¦ï$¼ˆ"ò¯ŸVj¹úlÑËþÏÏ'´H/H}b¾H€À0†¢S¡5÷riyõxUE}àR&%mS)^ÖŒE ÙS4P×xÅüûåŒLY¼õn› .„ÁíïÁݶ?©}›Îe<î/¯ASx{ B¤º£‡S à¸ìx Q€ÁMå7~B­SqKvÄ+4™ Ïd]b•¢Wšÿž>ú%! z›£Ã¢¸už s¶sÉIŽ4.i±k§;÷É¥`ÅVÑn¡hÀ›U´RÊÞÌ«@¡Ò”Ûï(Ç%uvKŸ¬árÒ6ÔVÊ-°\—MÝÕsÓör|­”a&@} !pè{'Ìþ%JÛ’«+|ÃQ‹ÕÌOPÅ$šIîSÁ á¤|…C2 q.—hþÀ¼~#EˆÌ.Åéõ¢©À¥gp»ã،Ԋ»Ôr)!MGÞŸU1ÁÖ 1œNºnQ„òuœŒ¬õ„Óú¤i.·¢Âx ·˜ÑÈË‚s‰[ìuk$`):ä¾|ñÙŽä7*p&§LqÒ㵨ðV«óC6 Œ’s߬š.Ï¢@.üÛyÕòX‘{ü1QYõ¬…;­«…Ô$HÓMðŽ7q†õÇ‘'Ã%\´ë¥;yK¡,I¨Æv^„²ó>[Åešº„Ioüª”„ÉÒ4( ï5/Å?X…ÃÜó•·MC^: œ]6m7¡°&ßóF,q<×Tí•èõØ…'qó=ÅÕˆÿü²^4]ÿUl|Ñ@§£\ MœÊÌ*=´R¢M4€r¼ígÁ ¹kí5t•³{Žç¡2J>%Fs² œþJòy ›ÊUÈ‹eâÚ~"M¤u1FA*î¼dŶæôÇÿ+J!¡â]G'íÇÿQ†,ÿ)W”J*¯e¾¢õº,Õ_^¾º¿ÚÙ”÷%=X6©ï,â¦_€íx†¶$üÿa×]zké3¼5ùòÕÄÀ\® Cf?=qM^.Ñþm»ctiÿ™wÊ“ü¸x\Ã/«EÓÀ¯¶ËeÙÞœðžÿ²Z[mÀ=}óòyÄøgƒñšÁtDuÖ†›OÚ—›%¥^}Ò¬oÚúârOúó«çÔ/ñVìØx±@Ó¾|™ÿ¶CzŠÔ.ü.“Ê­¸ Oò£ÍrÍ@Füa”¿…/¢ú#ò|äOÖÖÓî詜Ràë'ÛMó²úçmsu o7Þ1ޱªIj^v·å‚íàˆóvPÒÓf>G߬Z¡}aÕąН ê =èlkA ­±çF‚Ïuj*µà;-Œ°¢dqܯÄàÓ ó¬ê—/Fí°Ñ„£ÂËy­;Ê\v¤¬àwü'aõYHi% nÆæÓ˜V²é©E´áâ6Ä̲v†n‹¸-g¿“K6Ôwã8ùÑ:EgKÅAT¥'“ÿª3à)õrŠEÈ–²½LHõóÖi.& ŽX·%4âL2ÃùáN-Ý´b*Úš”o•,H Rƒ“6+ê¦yÑ. ƒì«’YP-ÑR2Bøèâ6LN+²Ô3î(ÇëDRGžo ‡P%¿ ‘Ð2,º!3Ó®·Ri•’ΗçÄš"õ…÷´»%.¤c0Î¥Áo\ƒwh%'ôÏw×g[ey Ƈ)KS&‰žQLm* *¤<¼6…2íÚ¸„-U©\Å©Màè4¡Ïž¾}͹%ö:*¡¿gïÉz:D“€KnÍ8·¢7S­Ä˜¥ÙÕ š`áŸmeèA\ç«!Ïœ¬ñ×˦þ–,8\TZ9q”[|0ÂÒj¦Uð†tâ\“Ö'·ÓîMüÁOÚÄÈÿü¾ã]óú’VnÅË|ÒÎó_BÇÏ>~óìùÓ³—_|ñ:ÓÌ;~.;ÕðwÕfºï»#4î ì ÅôrÏ%G÷¿ÇÌŽÐнBw-áÒáÅØùa¨Wîžéì– îÏ;й‡Jä“7–XÐÏ:9ÆOiuCOó¿J N›;a7Ø)9Ä\ÌnÇ–ý':NuO?¼sÕªúËåŠu}Eg5’BD‹áRÒBNRÞG¢ñðÜ©;Ð#CY9Å{¯òtãA6ÃB6êÍWŠì¥ðØo'”uÕ§‚¡€0îQQ¤>(ÿö¶‹J]Q”Í€$;è­é”4XN?Ê »œÖ«žmíüY,&I)bqnÜz³Õµ÷‰Þq¾íäMÂj°në̲ Ú1d»R¬w ý¾ç0xÞ4}žè¥®Â!jÄXš›ïŽˆ¨:q>Qñ:6cÓ‰\Þ%^¹²Ö"žì„Lç0DTb’ÉQ6üܸʡ³VÈßèøË¥¾x\¼×ß„×'uYèžk­)¥\Œ×R *ÏÐ!aG‰ÿá+ƒõ[lSê’ ‘ÂtfÇ…¹ aöm ¦³Ó…Ï>õúÉóçg/^~ú‡gÿyX¢ÂÓAP‡ÍìQˆúµ)@Õ?…¥à$„àO÷©ÑeÕN·pì£ô>éª}(šUo—ñU/—Í,Ÿ¼Ì'×9ïƒZ¡Õwë(ؽÒ½ €ß&T,ä¯Àö0ÍÿkþmÙ"ól¥sjŸ"øK¹Ù´“1¹[øßÃ<Ýtèš_?z”\5°ííáæòRíD ça’.J5d_ÂÊ!d¬c__ØQiÉàžR;ãGUç˪§9óÓ;à{ÂÓ­…ì…yµN¸FN²}@÷94rE{;G’ajŽ˜PsvGU‚âÈK_ßYŠéç_·F«ö1I(o»BÄòÃ3j ëešâÅk‚jRÓ ^i‹‡w}‹ÁþQýí ¬ZÁ¤UQIoO*ÈÙýÑb0lóˆ×WÏ#ó\^¥ ÌJH²¾E ‹ëêæê{ÙŽyÇúGæ³­%DÑ1õå\¨ûò<ÐxÁþt¹jht [x^«–-›8M-z£)oǾ¹$to‹a54g5ÐÄÀ8§å‹ÁbâºGÝj;‡\ðý%„Â!ñu[ÎD¾`sÙƒ xõçÏóß~pü«GÇü¾?þÕñ£_ýCþÑßc`o‡•ÿX¨«‹½×ìüß7ÿp¨†z8Öü¶{<«æÎúï²½éÓÏÀltmš(efïb†çµå5¡$Ê—ÿö¼Í~çÿͲ?ÕËü°æÑOß öeOÿòæùƒ>úu–}yYn+Î=ÿ÷;©|?iʶ«&pT€mf&¯ Z¹³ØšÌ0¥R”}Ž9Xxûkøüºiß!Ž2®µ”ÚËj]•(Ú‹fy¶q…aF XpèKÊô(zøÚÉ„ú‰£¨pß%$$¥™o®K*‹®ón{‰ Áu’%›¶ÑãÔŒjO00Úh%‚ˆð,7½>Ûc©=±…ânŸ௸£üaŽ=¥P¶´©h‰é–"…¸3]Õ³mɈÄpücÓÌòëK˜—³f°²=Ål–kبfLºT®¨Pƒ0wNóÉïò¢¡»†[i·‹Jæ—? jŽ3*爽d O®WL¼hñóü`pN†¡o/„aEQœf“ÉÌYÊÝêŽ@~ ÃSç$Ò,C˜ûÒÇN³Á™À*ò0Ý×óíBN((`ƒ_l6:É)šÙ]Âþ—ó˜ÂÎ[–é‰F™©"ýÎÅpK;EÿÐÖvò¹¸aÈËcv1Ï,´åÉéªØù³yþŒ›¹,qIæTú/m®W$K±|2ÇzÍ¡¾g£¾ #ˆù—½<(ÄÄ"ß6Ówÿÿò)W´ƒOþÿ*µê(Y»‘9—ã >o6ù,äyg…"z¤Z]Ñ,uÑ#øê%BT·ª•Iþ̨™A×ð%v=Q®D‘‘q¤·Õò¸vÒÁoH¡^EµÐQŸÁ·7ù ™¹PéQ€£6žÞô_ WêÒÁ´åÕ,ßUÊÑéh¹ÛüdPÜÅóQ"É;iN¾%œ|¶/LZp‹ëò9Lšwô$cèwFfB½Ô¥ ¡÷°*§|_¢&Ú®AêHPãüÁ1‚vÝl"Ú½©ºÕh#·TždZPn~í8"1À†æ6"ØŽ ëD™JÀ†Ë‘—ä¾ã,-}9!ˆ ØÚaÎ"†ã Æyæ£õa8Óvoe°V7è€Á‚y?¯6×U:€Ó*Ä·‡ dÖ·¼ÿ¶ã±ƒ3ìv¾‹ Ù•°^W£ÀnÍëoózC jÙ¶5¸mÔåR¨W„*Jæ[aÚ%¬)û.Øààå¤@NëjA[5sÒv´Ïb×Ð%˜×ñ Së×õBœh˜k@×»kð–xñ‚dpÔ'xГœ û.i eD–pÉ€ÒTS ¢y(EžXZŸ–èÌCÒYÒËÙîÆ4-¸e#u uY`c‡° xh² Œ_d—¯ôÄp©Ãgæb£Ã4#/F‚2tÐáס= °¦Ju:}º­û2'uMt§`D¹A×"!eí²~_ëáã[ œÃ÷èkïê6=¯leqn.1Ç f•TÚó>Z¦W} ‡T^rf)¹AÅ•91W"Ó,óаÍ̽Z,¸¨°ò$2H(¶¹÷埦WÃ!þ]´ÏË9žÞHOêÒ¡Å¢¹û xJÃjz£›MÙâz²r«Í,££¾ ºí1HØÎì¤}y[A¹ gí¾ü"w!¿ÐåUL˜Ô³Š¸¡0FÝÝgÒQˆ—v.Ñ©‡¿Æ$"zw»žó)†Â6IÍaØ(á„Ég6µrC{ÝeyæÅïa´Fpi|K= s–’LZ£;íBhêRÙBÒïtHÔÛ4àÇ>œ.* ¼ªÐ~'KÏc8•dŠ¥úDŸCÇ6Ì€Í:§Óº¸H<¤ÛÔB¦Sê6ÿðîoMv2ŠH[^Çp¤VÈ« ­Í•Q’Nºí9ÌîFÈ:o`þ¾uÆâTƒ÷BoכɧXŒ°5úú-9ÖA®$¥uY ù» óÈËÅ™oñp$çU24X r¿ƒÖG›âÖÑy²@)‚#KM® ×Pœ Y.9ö:ìñ:Á¾^/lvÉ(™%G}ƒ]¨ÈÍ}s÷$,Aã,róËqtÐ')2.UÏÖ½ðù 9Ö°Ýq~}YÃ%µQZÀ¦W­s;*6m( ®vÃv ö‡ç7,2Ì./)~ðœ+Ë9/ãn/"›1Üu0Ã@ð5–G«Æ2 Ö,,™´Q§´è5F‘]Ý@+b¨’ŸÅ5ÍîÞþŠÌ³ÚV³[p¿$‡Oò—m¤gätžú§±ó@#ŠxB/°Ö$N]»pÉDÅ­>éÿÙÖSôR‚æÊ’Þ|†Þo‘ÜiÙILAÃ!d©EÉß”|æ§Ý‹˜%¢uûI¢“ÜGÌÄ@ë˜ÞìÛ’ Wâz2p›AÍ!±[ÇZT#ž«k§¸§ê¡à¶sÞÔÏÉ«ÑU”“^õ›bb¦ Gì0§M?ÊGÍ‚6å{Ý%i?òs"x½E•ˆW¤ÚºW䯖6ÌÅŠoÛ‰»jËxÃ+a½ÝlB;=ßq.¡ök̤­¡ø9ç|hB†Ë=ƒð¤ë¶K󎈟Lgš‘-3{æS9 é¼Á6!sñщ ïÂóؘÕt%‘ê1`ê@AƒZA[††½Ì\ûßíå§Ož~ö)ÂPXöGÙ)T«óÂM­qwÏC#Ñ8² =š‰"ö#Í8Ø„yzpc=ç®_—Õ1¦?{„¯8öÑGÚ'µì|4Æþ_LŽbQ°V±WêÄ·Iœ½¢çñàeC/QrtבGÍ`žjOHÆéÜ,ÓÐï°X#šÁl_mYƒì³ÂèHŸ‘RYŸöÔžÁâ¢1$¿=–`GÃÿyc1ûÃuWÊ*õCÍ—Bd¿kV°\ì,¨öMMZ¿7(\3…Š®úwHBkc·#>åpãϤ1Œ³ÍƒÒš¼C4ÊøÑ§t<òŠÚ[;³VF W5€ÚD²Z¸]º#ª;nºQ-×›ö—øëÔä…Å#.T¼;Âþru£­pW5sN0~iéRêº/XqWâ¦Û4M2"‰ Q/õ3A$×aáë€`øL=>ø€Š[aC 5׳ŒÃŸÿ„¾åëÊZ#1àHQ'›t< ]ü¤åÆU®S·©Èò²Ñ÷2b,“Âðfâ'@æ†Ó޵ذµ¶íi~#ìÚ)TÒwNmßòÁ¼«²Šèš—ÛÙ$B£¶çŒ_JvFñ’+R–{P`Þ.LŠˆ¾'òŠ2<‰Wµ'mžñ×ã쪎sp@¹×@áŽðjëÔÆ%¤»mþ~»ÑIÒokì5'pìóU—Ý}€ça ¾¢ (¸¥RPFxºByº¡êaDÅËíj°ÿ>}ñ./lÍÍü˜éÇ„ŸÓ?“.þ¼Nò?êñ%Ö C}E[ä^™sÊ.¢µ Ûðåçxùã)â[\’ÉàpÏJb>iÏaÙñà}CI‘¬¡H Å¢g4~_‚‚.£M?üÀÖ¬! V§ Yk³pV9MÈØfd,S2s>VÈO¤uÁbƒÉê § uáè-½çÚ4Èk—ƒñ]¶Â$,íÛ01ê5£°¾U¯S÷…îÍ]‚Á/míðŸ¼:ƒ†ŽÃ´tÿi¶xQt›3+UÂQ¾ Ÿ!k›6¬Þ¶1Ùêª0¨á™Ê!õ²Z¬Q‘¯Íµ Gc°²Õ©ýúE‚’îêt"Õ³iNâ9mÇH«=A™,Iëëp+ø«×˜Ì!Ç’9tÇk &ÊJ&q¿„ñ£r[]ÕþâfVe8”Sϵ{æŽ&Yû7å…™®YìµN.#¿&¨«{êq\–í;q,+ ,…Û1[*ª$Øk…xeB| `ÍÝ¡†)Ý&$öí‰ó޳4ã`H?~ /CËœF—+Ši#;SjWÂ[€å†’D§äŠëæð“0›lNß¡5·^”7UíÐÉ'n‚çcó|PÉçUµ`«ªªL±™±”§=Ãá-ßù¨(¯áIˆÏ5K5øf˜ZÍVÝÈqe\WÜ÷x†= ìÞ圾ÕÉ™’ûÜn…àƒ”ç‹j‰ÃøºuèkÜ=z5k'ù'ÀÄ/Ona3w ûœ7h†ì‚Þ¾MÄ£²-[Ý:bb…)ä×9A{8úº(ëYÎ5BôÞÛ4Ì}vŽ@΀È‚åSÞ ä±ˆ_¤^EÎ@TPAÑiyº”N¡{.æÃ’8÷?ÃC¯¥Òóî£ÁIl ­Ø^[ˆf>tPîà\ZÇËiÛt.±³°’R¸œ&iã ~À‹LŒ¬^j‰(5â¦ñéžÌýóªZ…^î\’¯âÑmÖŸI'›g3ùÖmg—1ÜÐíãE¬ë!F^æoVõ·n¸ønQwi›×ÐÐŶž±±G½[· ž”ÕÏÈ\²…$Ö, M9„“o–çóQ,Tµ]+Ðä¿èíÕFö;u ],šsÜ鸒ŽEÚPÿÞøº•è7ÕD2˜Ô³ôu]HÞ¦”i²×ÇÅ $–æB;Qç*äd”Šcìâ`o=ŸDó $)÷† ¹0‰ØOÄ'Ç™ .bÛñöÏsÆ_ÛÊDÒ~"BœÙ‰Æ–ãî.–%ÎsÒªÁåÇLá§æH Ö"Mõy‚vûm1Ecf)ßî%ªì.»N­ ¿ãeqäßåä%Çv%*>ÉŸÌHƒS°N°©µK€¹¶«ËÄFë”û7}¤ô¡…[svQšY59‡Sä;†˜Â gù²yÏŸ„"òzêãbòó¦íƒgÿ ÍNóïG£“Q×NG?؇» æç€hÅ5{Ѥ!Ù³È(^ùQˆ9 hÅ]éx1î 7æèL4ÿL ¨Ý¶a³àº2[84]ò)<0}Yfì6J/Ž€<õœ£23t¥&ž6`ÜÚLjãupU…SÛàÑ$*Æ=pš@CÑ$Ö‰;JÎ>©Ù'4cÚ,Bú’ MP9£,+º€¦K>“ùtô°xX|d²¶m§£=Nч¾¬–Ó´§£-Ž %6á4m7Šï8«ÀXZp‡bJÈ?ª-eöe>…^ßþ4‹ºèpì^»ƒïB®×éWôÔÑøk½FgöDT § ~·U¸„ã™ C#ajFÖÒwõú¬+çè6þÖ!ÖÏoYž°st±üš˾ô4Ç*Y9™Ln—>$šr˜³Â™¨ÔK*¶ËrÍðÙª¦@‚žÆXô)á= ~-]—À…¶O‹²nAÝ4çWµ‘Û~)QÓD•ˆÏÛ²ô(#˜hfÅ5»eòZ2„z›vSÜïpmn}Äl¥kò¥rÞûW4„¨½€‹°zµ¸Âó yEE]p® 5€]Ïü10@uz’•û…ÂaNb\%ªs9éDÅS?.Äë·¬JuÍÔRTJ.*Îs(ÕÛ΀%‹q_((§ùwâj¸É•'ŒÃ9 ݆٫18Ø\K,Ÿ6Š€s_åoÏÎ0ºqvöVn"w5ˆKˆ´½»8Ó²`]1«@ÒÛêÌ^îàŒ~?;;ÌøáÈlÜ^–kóQæ¿àI9ÃkÝpç"‹Ÿ¾½{‡‰ŒîBAÛ}Ú¶M;ø$\áó³3„žaLþ®`Ä}~ _óøí?Oß®³eAÐ-êêŒ,}ظ¯*N_#÷¡€Ÿ`!Iާê Ñ`&[ä‹¡§}\qÌ”\úé<æ‰ÿÄ]zàÓC¾øX w)jä4¢Â)ûÓeV(‰hé—hÌ5&Ʋð.ñ5w¯"2¼a=:v»NB`Þx aDЩ|ʇ{·çp"ÑJ.ì ÇNÓž«:PÝx°œƒq±…‡­‹˜ŽèäV¦û}Û¼H±’ÿ”-ŸËaÖèìàƒ–$ûP…¶…ÚÕÙ8h¤ªÍ7`'Ù0ZxÈ(jÌq®mÔ$É*FΫïé'Òe£-º/?ÌG]òÝG£§2ÅÁà=õ{\æ/ú`ð'¾h qî îü¢|ñÖ¿ðËOé¤àúF·hÈhÌGñ.‰Ï…^\ Já?HÇu‡yðŒ6k:urÂ"ƒæ¾Tž ò¿ò±+¥° €9ÿ”kQù¾ÓÿgtÌ(RYÎØÃrÞÂëS°”q×â‡îitË-êw•×:ءƆ²øœðe3÷²xv'G7¥;ƒLêj÷úz𿱾þ ãE=E‚\°Œ_<ÏÇÖŒ_Nl6J.‚Ûs¥Éý¬ëÞÒN?g?Å̾ÕXÿ?Æç£ìn‚÷´ˆç‚ñéÉMàÊ»ë ¾=v\ØÏD¤–=ü?zÿ¼jÁŒà$±H÷Þî†sœ»žr²–v‹ÊÖÓÍAÔ’”3¡êzü82«Pߌ¾Ž*Uf¿ÒÑu¨0ë¬VسÖmóíÍŽÞËÿfµDªží¸2é Ô­'ÁGþå‹§?Üû´¿k·ùJõ@ã¿p0Gèæ|Ô»ŒÁ%F l ð/<…¦s†¾?Šól„~ñ†îáqJ®= îæFd?M»*I¡L®÷;€Zy¢pnÂÎ5#¦æwÚpù§p3[WL Ÿ%$d}ª=‰8(íª,¯Ñ2 gä‰IƒÑ1rC!y1¼«LYBÚÎ7‹ºN»õu%&«Ö™œMºŠ+HR!æ#}ˆ°Ò§º¸òHeÙ+ÎÐPÀÖ@”9eÓãGš „èìü 1IŒ6‚ù†Ôhµ e^¾ªª“»a‡8$ý,éÇ]js+þóà''úÊþÚ°…¯Nèbƒ{¡YƒÞ á$óùoO¿qEAo‡á¾Ö„4 =+L%FXcö¸ ‰žçü$± ½£=SèLé®b %;@šîOè_:¸1<2éc⮡¯8&Žr(Kru ¬¸„8‘’o±tÔó*÷é,~jUžîX|]'¸í6èKüeÏ´jó¾¸+ß»Û;ç¹îmèÄþö-šÏ  ¸a'¢Oš0Âä–FPž¢š0à}Ù…=:–cSêªèÌ^sôŠª,éÙ}Äv|³ù³•¦rbx=ÓÅîô•Fþe(Ù£çÙ+†!ÕQþ_¶¿b°Ÿ³AF»‹Ì®t&™õžÉÈá3ÑìÌ»¨ŠUµ9’Äì‚לs¶¾\ÿž2yÏêÙé£Ç¿úï =ap|W¾‡ñ Ãår¦“–íÅÕWÇ'Ç_ÃÇÁ$uóp>M&ÝæmhÚ_~o°@ó\ü@Ø#Õ6Å´ëâûûPM° ¾/ ÉîVFá-‹n½¨7xòUAä>íï–|Aá{Gh³Ä\®™K€‹Ò=ù÷•2;Ç“>Vn’\º+K!ãòÊa‚& µg2 ¢£”MÝ™,£ŽÀÔQ;tÀ˜™§jZ® ËÄàíêEµq â»’,!8á03`Ú §­·rŸŠ¡!Dwž)Ù œªE–K©x?V:p~Œ5J.ðö-N *žŒplµÃuN ‡_]Ä·cwë5)ªn.^Þ0÷+üåV]œ$±˜-D .tã4ÇFÉ1N:”E«,9 BOC7wÈöÀ(i:–&\0†Ž.‘Ú/§€) ~»‰7d˜‘£ V0A]çÄ»îÐð® Ú 0ÐEIJ´ÂrŸ%_ ¨rê¬[„ 0 ËÐìõÂ[§šKà¾hæa‚Éç¦`/ÆYíAÂiôd6Ó,WÁÿíÈtô±®þkG°f/Ø¡«ªµ¨±ngâ3 Ë•É>&×ýFä]dÿ ;’>À=ø]½+[kº\Ö¹ŽÂ>v³]†Ú V©”[›títò°8þuq\lʶ¸øÎ=ŠŸ½gIñèñ’‚/_Ñ]Ÿñãôô¸x´cgMìo:ÍH‡Ž2sËL`‹áúöÑ›»:÷r!:Žëó¶lon¿.Ä÷!»íº}*Dö^‡Õ§*bŽ›J3¶8mE˜œHô•EFâ™ã¼CŽÏ²oæÔèñÂû:b'~uⵤ KDZst8s¹cœ]ÁFÒ½ëá†"¨TÑxþzcæ]4AñGü®?Uñ×ÌÎéKüeö•‡¨XïÔÜYø½g¿zôñ³×gÏ>ýjNÛŒµh‡øp=«§r:È:ã<"L+™ 2 +åȸí9õ%à—/ù›Ñd% ;ÐøÒ7 ”ŰÛXAaª­I±)WÃÀ ‘È.Äbîx4ðO\ï!+Ƕ蜀@q”H,ûÁT&D/LêÌãÊ,áö€E}2ß"Æ7‡vÓ8B¼±5BÞ¡§ ²X§¸„_<-8ô‚T<)[¶´ttpt䑠ЈÓIš í¼°µ¹|ú4yá=0ˆ#ˆóMÕ†V6ý±œŠºõé´ÂãD½õçgÿº¸3%‰pÚÏà­H-ÖFˆ‚ײœœ;¼EB¥æÙSìK¡9 ÷:¾µÇWyÊv’‹€Eòv'ùÊò ì¦YÈ.t¹¹œÖNctzí&¨ :¿t•¥›Ö_Ÿ¼e±£"!"vþG&iåÎÉŠï”ê¢tÝQ¥¢¡§ë‹¤ü39c¾t9[3¤ZÄgkˆ ·!‡›Ùfà ’ƒ‹šÛÝïv‰ù.2žBÕÁv ²ZÝy²ør›«þ¤p?ÇÀ’Íü"ŒTO Ñ§2ͼ%²»:¶ æ×&û‚&èsqûLT! Õ8wL³‡w¢°c`d7†•-ÓÞ;H³Rø`Éûžô“Í$Ä7·Î²‘ŠðËc]Eº_Ÿ¯°øÔÞD:— OAó¦z2ÊIè‡xZË•{@ÜçIÃq™Àò‘£-êmPoßR)in í뛓;zÍÅÁ‰è[Tª)çÁÎ?ÃV Dˆ`Ýåºj1;•àé5̇c®‹yÁ_Ó¯ªËOã{ÜòÉW#”ˆº,#ˆÐžØp,Ï_ô·Ñ×_l L#C?In¿Á£vÐ$FòétÝÁ£{À¦ä ‡Ñ˜1þ¦§¸¨6Ïáת=°‘<,*DÄè“r…É» ê>EñCB ⦯ßÚë¤,»]ya*ÞtUKxŃѳÕìÑ38ÆÀ½»ÇzlA.Ùµšö\ÐY³ÁÍ2£2öäþÚ4a]‡„ø/+gäÔLjWª†ÕDu$gü¸p„6–téY”;€u§rš<›„*®0Qü1%Sé£Ä͵ ¹”³~(9ú’®ºÜ` ÅÐbÏû,ÛŸÂztG ˆ­qQN$n‰TŠįc…ìβ‹Ðï¾èŽ, '8î#ÂCES}Hñ¯Dðàþ.úJv²Àbª¯É[îð[vÝNé|¾XL®…5μDqqÁ>xÚ‰)!Tª›´{3´Ï'Í­”v‹ò­Þ$›Ä KAh„h‘Sú™÷ª~æ¤ã)©ùWÜÆIæJ©üLeŸªx§Ü³;‰Ì$UÜ›^¾ck&ŸL+õ~w/¿ŸÈ;€AYYî)°=çÜÓÔËÅt¡Î™ ôÁŽwßÑïYµ~÷»¼SÄzSOVj˜—SùÅ©·â!QÉÔ{ñÁ`òÀB ®Â>ðô&Õ.†ãDÄçxòósÈ,Ö{&ñÛÓüÞ½{øéWNå‘¡•Œqš æNÈÉ"W$ù'"Ã2oµj!}`aüõ¾Ö{b€cÿCn£8eÂ@mù—=õ°0ZTâa•ø’Jh9² ÇÄ ~4ÌL,ÁdÏȘ¥gÙfmüû¯©Îƒ$ DÅìÆšSs.¶*û03:í£ß€S~"•Ø€rkÉ>|;¹ï(ÿg’8u÷ªg:Јc¡ÅAÇκKã:Ì"—É›|2ÍÛõs¢í`ú]»[Û=¢8E0É’CÄ»! ¸§`çl+ÃH—o\Þ°x9údsãè²ÆÑÒ…ñ(zÝ ñ½få/'ä …o¯À,A¸˜ÝBNT’¥~':‹fKÑ =‰¡9s|o2¨Ä²žk…ß D æ€ë•P™ºÉ ’…ÛÅI¡¸¯ÇnS[½Ÿ\ºø4FÉ9I et6 –»bx‚% œ|S(K¢æÔ‘·ÁÇñʝ9 «ŽæsÙL>§u¤•;‚03gñBR­á6š¹LLO0|Îr¦^ xNÒMf˜vº! Î<1úZº%)£–´w±‰º(}ØÑÇëåc{ÚØUúJ†Ìhdâ,çP3aãÃà(óÜU(@%•T>‰ K‰>ñOÄ¡Z(£É`KóH–>²Ä9Á,©û2¦J%š‹kip‘JÒ´:ää ¼„óFÓž@ªƒ@ïVìö$›L$é€‘ëŸ  é¬ ,ŽaÊè@ðߎlC;’'3ëÃþ”„ !µÞzÞLÑÛ±ÂêÙÁòÉvÔcÿEþjÈÓΦ~6 þi~tÙ,«£oêåQ!˜Flás– ZqðÊÈèÄR+¢Ê®h‚F“PJ_8Lüà÷…éîËsÜÒ¶]{DjG|ÑуâÑÃ3Â)Hx|·G ì4èš9 FuTÇ‘"´iÀ6Ø·Vá–jN-Ò7¤Åŷر»\ÕkhÊÀ:Nh¤†+o#…ç­í¶çaâd „-Hîý§/>ûTÍUÝ6+åRnyÏè#¹NôÈM:g»FïãŽÐ\§þMÙZ ¨ ‹¦‰žQJ·£TJS’‡j”}ÅRÏ{P”„±€%‚åj ÏÄú*ÍÄ.e‡UPakv¥‘›‘¤8Žßstå‘<âO&ËDÑÎâkªVÓigUqúˆì«¡ƾÜ1Êc}+ÑiM¬[í¸B aô\óƒT¡†ÒfF6kÕÁ¸l¡rY€•­>Û»ýí7jŠzÄC9'¢œ±]ã¾{Êžr~7½HÄ£€hF¡¡c¼¿ä¸ÂÞ‘ 3ú³ÎþD‹ðŒÏ¼<sâl¥fS×–¿òÉ-„Âw$Úéĸ¥ëdy Ðaúdº³¨m1‰¥;>xë ô0/_|r‚¹@–{ÛÿãˆL›® ÌðˆZûô?u [C½ˆ¨ÔyöC"Á*W¹‹¸M'E$â˜äŸ!df^vF#„쟜8œ„+„¥æÐgj0&óø9+Óñ—y`Iô„WŸxh\$öt#÷> ¹ ʃGá×Ç|؉öÖâç ‹£Gó>z‡;ÝF ¼úáih.3zÔÓ\·êø‰ÿmŸøxà‰wCP¼(tÎÆ(¤Iv ÒËDkO„˜eަV5ÔIõšƒ8§(a•èÉ‘`Žk®m9¼Í*£Hs³lÊOw7í¥€ƒtò=D+±¸°¼QØi$—­Q`¡FP6UÌXï"^½¬S0ZU&dÒðË{±@s!6.ý‚½TP GÆðšó›ˆrÿ5°+"uxë{&z‡•a¼åb °ëù0®²1& 2Fb08¥ÑÝ‹C)4›ùê½6qDrÆÔ‡ÿŒeC0hš,pˆ5­n³¨ÄC'Õ"Ù7äÆW”iÞrœ¦ vQ}g1VàæöðŠ(02µAl&•C|F‰bW–z#˜L‹x´Qà*Å"8·•/w f,ðÏmF^)ƒ,£q‰ =8ÜG´¶7W¤ ¦$¥1w›DŽJ,q)…!|«Öê |~ÙÑcµê‘2©õìY vR{ž2aÎG‹ÓŽZ'ÇFºT† ³´×,×$ö4 \v࣠¦öëåÒÎDÝM݉A, jÙ]3pßɺ­¯ºôÊN¶l'å ,]b7ë Ãïl+Ò `ƒØWHP0宆/7×TÁ ³Ì8üÓÓ±<ÉT’w¦É)L‡Õbbò®*¿×Å\y÷“žwØUBi„ó9%Ò?4¡ ¯½#ÕfÕ¥x|8ú] ^ ¾X) ³†¥/I‹¹§²½òt”“±ã™r¥’pmt!6Cœ¾Ò)Êv¹åôcš—Ä´sW”~ÍeÖtTu<Ò‚¢µà)ë4²Çífe·JGÌ«fr+uiJWk‡ËÖÕ¢ Љ“Ñ!tUI1 Ö¤HN W[ÜU¥I4rfµ¹áºîRî!¸›ð鑽ñ¶¾­áÖõZ»Š÷ZyàeRXû&zSä‘ejÆe-ÎoÎ êŸ&õ£ÏùÒµjzˆ"TÚ¦m÷Ãõ{†Þ ®ô]¬°Yžð††â¤}q>xÞMÛ¢0îî¶?ÐPìÓÒ:–w±Ÿ¯çåá(ÛÖÇ 5Àãê„`dЩöˆ?_“ƒƒ#ô<ªN#ÕM߬jÊÎì@ø“çb I†%ÆØÌ¿†$¹åäé OüÞn,´8 –¾j”ìS,KÖaöu®½:»¥vöFdqƒçËR Á®˜ƒ—´üPòÎÀ¹Å9W…Þ3•Q¦Ü+’®½rþ=Rò3sîц„¼S“®[hê•Ö&oÄ}[HMyš0©gp|èl.s ¦p‚t@¸…mQjµ¢‡ªúzXs¸'„R–)Þíð·i²ÂzÑÜ Î.v_9W6yñ^1;Aš]ÄeHýñçÚySg.Ÿ°]/ýÉÈ!’t-Åk]e0+‚Å^r«c-ÇeebÆÔDX¦TO¯^E$‘q4´4†û4¹~öîè8 Ïú²^4]³¾¼IùMv ™Ί —²§g£Ð¸ŽÖJ²F+W0¹µÌQøÕ»Ð¯ÙzÎè*:ü#ÕHÓœê'Âi\Ü(BF¶/ƒ ;Ê 3ü…¤¿j™gLÕC©«óúü5Ú ÜÐF·¥@{ö——¯hòøÈº“ªOí‹ûrV§Öw{ _€q†vüÿa×]zË:½eñòÕć\ À"݉k!O(qŒî´?³–>É‹ÇÅq†‡ >ÀðÇ«ír Ëû„7—ÕZIÃò€ÑyóòyÄ­bã:–›Ž(ÎÚp³oºâr³$Pø'Íú¦­/.7ð¤?¿zNýÑlåÁŽŒ ¾zÁNë/óßv%è¡Ô.ü.“"=¸`Nò£ÍrÍü[‚}£þ¾h(ÇúÈæp’?Y[O»£§"gðõ“í¦yYý3FZO@iív;±Ô¢q^-ì\7”[-×,kLP”T¬®Z¡ãAVí˜P»‹ò×l!JfÕÖ¼T¤»ÆbÛFAP"¶‘Mõ%h ÈÁž °'¼mÑuÐeî[îö甤…›.7KNá=›¯[|cÞºmµ²ëá/ì,¾…wêê– ò†ÂJˆ? Í,¤q®—öÞÒË ÷¡º£Õ샳J θ]xa”A´UÕ'2å«CnbçÊP´D„ÌÓ< AjUe6ÿd*%ƒÓKó}ÑláK™®Éù~áæ†PÅ3ae/#2ð؈{!çÓ×]½2¥°RšÎ8-O`Ùa¤†ÊÝﲜÙz)£ö„® 94½æ=Ñ°Û ã°&ÈèQ&™H*Ù*Éó(»…)È׈ R* FÓñÌ›«‚©ªl„$AeG—ý~Ææ&瀨>…_4ÄÄg‘¹Ë'Ö£´o¶–å<ÓPЬ ©žƒ¦RßG…UÒ§HX]% 0ž.fùX–rbÀÆ<'­Y_“® î‹d§zpûNedøç÷o Tþ¾®b°í'í<ÿ%tãìã7Ïž?={ùů3ÅÞñsQÇÃßU›é¾ïŽðDY`_6 .¬Ý—Ýÿž«Û縻¢¡‰Wx1Þrê•»g:»å‚ûßó–ûCT<0Ÿ¼1ÔbÒFµcöâiþWqÔks',o§äp>û]Ù£%gŽpì—,kJnvv²¦°^"IkB5ZqyÄËr­àõ4¯zªº(јѕð,庣ô۬ì°þši Š!Š *º)1·†Ê=µu΢ðWKïh{å$gã5ãy’²´hY-XbF³K{Ǭ<®íšœî©tË11cßÞÇ6³”ذì;Î{T3y,΂ð̇A6˜ýËÊ|p…Ê·é8AÙ[ôö_2…D‹F3ïüÌXåqM"-)D+q,%»!*ö2FE¸3——,ž]aÛ±÷êmGõj 4·î¡Co­–[O>¼M‚ѽq*àÙç¯^?yþüìÅËOÿðì?«\çöҲб™=z@¿¶u¯*AŽ}§`廂Ÿ!uºO{,«vº“ž0îÒUûPŠÞ.ã«^Â3Ÿ¼Ì'×9;øïƒXP¸òÖQ°{?¤{9j¿M+ô×@+Nóÿš[¶e†dNíkõ€ûåfÓLÆ´”ùßÃ<Õµtͯ=J®Ðö{h‚ÐâÐO"yq"¨†ÕËjbSšÔ*Ûn_âŠjˆN²°æ±øf\ÔÕ–ØQDýŽÆÇdã¨xåWVk:]C¥ÆRé‚*x{ìhÓ„"à"F0ç ³©'üðæ¬à(¢›ƒ$qsE ÆÁ¿ëÂñÝÂf<)ƒ{Ѳ„0ˆF~«m¢ëºð W¢étæ¼Â‹µ]¸%`×|McÔu.Ÿ<¨='D™£’ï¸_·ú:ÈÙäÝ'ÚHN¬¢ëÔ ¥ˆbaÚjâò£Ž.ÈLÇ2¹¸6]ArBõ‡*Ñ™1%íõrÚ+S/•ÆE_ÂÁß»^ =Ÿèá/‡‹ØPÕÄ)˜1HM·KfÚyŠ1Éð|7TTËPØgAcEûØ¢rðòÛSR ¡&‘H¦¦6zqªà±c˜ó×ÓŠ‰TCe»¡yd瀔QŠTÝUÀóô€øºÉOóãâ×Nã0Aú¢y+¾òqçVÊp»ô|ª1éé|Ox¬µ=užUò} s}^'Œð,sÕB’:%“…Êðôo±#Ô,ªwp3<›BF+åùHíj°Øy/VŠ ;IÈ€ús¦—¨ÞªŽÚÖ:OC×b‰³þ æ/kU~!*{Qbð×¶®æáùG쬺Q<”5M¡i)¢[¦âÍX+<O´DRW_¬(.¢3§ô˜¾Æ¿xVp儺Ë:#=£„ÅŽ¨”B½Ún˜šá á1µôîò9áf‘ùº¢Â_µ]m)'£`hmZOjG®æí§s6óïÞÿ¼ÿyÿóþçýÏûŸ÷?ïÞÿ¼ÿyÿóþçýÏûŸ÷?ïÞÿ¼ÿyÿóþçýÏûŸ÷?ïÞÿüþü/½qrqmaas-1.5+bzr2252.orig/contrib/maas-cluster-http.conf0000644000000000000000000000043412323254361020357 0ustar 00000000000000# Server static files for tftp images as FPI # installer needs them Alias /MAAS/static/images/ /var/lib/maas/boot-resources/current/ = 2.4> Require all granted SetHandler None maas-1.5+bzr2252.orig/contrib/maas-http.conf0000644000000000000000000000371512323254361016705 0ustar 00000000000000WSGIDaemonProcess maas user=maas group=maas processes=2 threads=1 display-name=%{GROUP} # Without this, defining a tag as a malformed xpath expression will hang # the region controller. # See https://techknowhow.library.emory.edu/blogs/branker/2010/07/30/django-lxml-wsgi-and-python-sub-interpreter-magic WSGIApplicationGroup %{GLOBAL} WSGIScriptAlias /MAAS /usr/share/maas/wsgi.py # Preload application when process starts. WSGIImportScript /usr/share/maas/wsgi.py process-group=maas application-group=%{GLOBAL} WSGIPassAuthorization On WSGIProcessGroup maas SSLEngine On # Do not rely on these certificates, generate your own. SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key ExpiresActive On ExpiresByType text/javascript "access plus 1 years" ExpiresByType application/javascript "access plus 1 years" ExpiresByType application/x-javascript "access plus 1 years" ExpiresByType text/css "access plus 1 years" ExpiresByType image/gif "access plus 1 years" ExpiresByType image/jpeg "access plus 1 years" ExpiresByType image/png "access plus 1 years" # Proxy to txlongpoll server. ProxyPreserveHost on ProxyPass /MAAS/longpoll/ http://localhost:5242/ retry=1 # This can be safely removed once Django 1.4 is used: admin media # will be served using staticfiles. Alias /MAAS/static/admin/ /usr/share/pyshared/django/contrib/admin/media/ SetHandler None # Serve files from staticfiles. Alias /MAAS/static/ /usr/share/maas/web/static/ SetHandler None maas-1.5+bzr2252.orig/contrib/maas_local_celeryconfig.py0000644000000000000000000000016212323254361021327 0ustar 00000000000000# Broker connection information. # Format: transport://userid:password@hostname:port/virtual_host BROKER_URL = '' maas-1.5+bzr2252.orig/contrib/maas_local_celeryconfig_cluster.py0000644000000000000000000000010712323254361023067 0ustar 00000000000000# UUID identifying the running cluster controller. CLUSTER_UUID = None maas-1.5+bzr2252.orig/contrib/maas_local_settings.py0000644000000000000000000000471512323254361020526 0ustar 00000000000000# Debug/Production mode. DEBUG = False # Default URL specifying protocol, host, and (if necessary) port where # systems in this MAAS can find the MAAS server. Configuration can, and # probably should, override this. DEFAULT_MAAS_URL = "http://maas.internal.example.com/" # Absolute path to the directory static files should be collected to. STATIC_ROOT = '/var/lib/maas/static/' # Prefix to use for MAAS's urls. # If FORCE_SCRIPT_NAME is None (the default), all the urls will start with # '/'. FORCE_SCRIPT_NAME = '/MAAS' # Where to store the user uploaded files. MEDIA_ROOT = '/var/lib/maas/media/' # Use the (libjs-yui) package's files to serve YUI3. YUI_LOCATION = '/usr/share/javascript/yui3/' # Use the package's files to serve RaphaelJS. RAPHAELJS_LOCATION = '/usr/share/javascript/raphael/' # RabbitMQ settings. RABBITMQ_HOST = 'localhost' RABBITMQ_USERID = 'maas_longpoll' RABBITMQ_PASSWORD = '' RABBITMQ_VIRTUAL_HOST = '/maas_longpoll' # See http://docs.djangoproject.com/en/dev/topics/logging for # more details on how to customize the logging configuration. LOGGING_LEVEL = 'INFO' LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'formatters': { 'simple': { 'format': '%(levelname)s %(asctime)s %(name)s %(message)s' }, }, 'handlers': { 'log': { 'class': 'logging.handlers.RotatingFileHandler', 'filename': '/var/log/maas/maas.log', 'formatter': 'simple', }, }, 'loggers': { 'maasserver': { 'level': LOGGING_LEVEL, 'handlers': ['log'], 'propagate': True, }, 'metadataserver': { 'level': LOGGING_LEVEL, 'handlers': ['log'], 'propagate': True, }, 'django.request': { 'level': LOGGING_LEVEL, 'handlers': ['log'], 'propagate': True, }, 'django.db.backends': { 'level': LOGGING_LEVEL, 'handlers': ['log'], 'propagate': True, }, 'twisted': { 'level': LOGGING_LEVEL, 'handlers': ['log'], 'propagate': True, }, }, } # Database access configuration. DATABASES = { 'default': { # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' etc. 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': '', 'USER': '', 'PASSWORD': '', 'HOST': 'localhost', } } maas-1.5+bzr2252.orig/contrib/preseeds_v2/0000755000000000000000000000000012323254361016353 5ustar 00000000000000maas-1.5+bzr2252.orig/contrib/tgt.conf0000644000000000000000000000006212323254361015575 0ustar 00000000000000include /var/lib/maas/ephemeral/tgt.conf.d/*.conf maas-1.5+bzr2252.orig/contrib/wsgi.py0000644000000000000000000000117712323254361015463 0ustar 00000000000000# Copyright 2012 Canonical Ltd. This software is licensed under the # GNU Affero General Public License version 3 (see the file LICENSE). """WSGI Application.""" from __future__ import ( absolute_import, print_function, unicode_literals, ) str = None __metaclass__ = type __all__ = [ 'application', ] import os import sys current_path = os.path.dirname(os.path.abspath(__file__)) sys.path.append(current_path) os.environ['DJANGO_SETTINGS_MODULE'] = 'maas.settings' import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() from maasserver.start_up import start_up start_up() maas-1.5+bzr2252.orig/contrib/preseeds_v2/commissioning0000644000000000000000000000002112323254361021145 0ustar 00000000000000{{preseed_data}} maas-1.5+bzr2252.orig/contrib/preseeds_v2/curtin0000644000000000000000000000002112323254361017573 0ustar 00000000000000{{preseed_data}} maas-1.5+bzr2252.orig/contrib/preseeds_v2/curtin_userdata0000644000000000000000000000425512323254361021500 0ustar 00000000000000#cloud-config debconf_selections: maas: | {{for line in str(curtin_preseed).splitlines()}} {{line}} {{endfor}} {{if third_party_drivers and driver}} early_commands: {{py: key_string = ''.join(['\\x%x' % x for x in map(ord, driver['key_binary'])])}} driver_00_get_key: /bin/echo -en '{{key_string}}' > /tmp/maas-{{driver['package']}}.gpg driver_01_add_key: ["apt-key", "add", "/tmp/maas-{{driver['package']}}.gpg"] driver_02_add: ["add-apt-repository", "-y", "deb {{driver['repository']}} {{node.get_distro_series()}} main"] driver_03_update_install: ["sh", "-c", "apt-get update --quiet && apt-get --assume-yes install {{driver['package']}}"] driver_04_load: ["sh", "-c", "depmod && modprobe {{driver['module']}}"] {{endif}} late_commands: maas: [wget, '--no-proxy', '{{node_disable_pxe_url|escape.shell}}', '--post-data', '{{node_disable_pxe_data|escape.shell}}', '-O', '/dev/null'] {{if third_party_drivers and driver}} driver_00_key_get: curtin in-target -- sh -c "/bin/echo -en '{{key_string}}' > /tmp/maas-{{driver['package']}}.gpg" driver_02_key_add: ["curtin", "in-target", "--", "apt-key", "add", "/tmp/maas-{{driver['package']}}.gpg"] driver_03_add: ["curtin", "in-target", "--", "add-apt-repository", "-y", "deb {{driver['repository']}} {{node.get_distro_series()}} main"] driver_04_update_install: ["curtin", "in-target", "--", "apt-get", "update", "--quiet"] driver_05_install: ["curtin", "in-target", "--", "apt-get", "-y", "install", "{{driver['package']}}"] driver_06_depmod: ["curtin", "in-target", "--", "depmod"] driver_07_update_initramfs: ["curtin", "in-target", "--", "update-initramfs", "-u"] {{endif}} power_state: mode: reboot {{if node.architecture in {'i386/generic', 'amd64/generic'} }} apt_mirrors: ubuntu_archive: http://{{main_archive_hostname}}/{{main_archive_directory}} ubuntu_security: http://{{main_archive_hostname}}/{{main_archive_directory}} {{else}} apt_mirrors: ubuntu_archive: http://{{ports_archive_hostname}}/{{ports_archive_directory}} ubuntu_security: http://{{ports_archive_hostname}}/{{ports_archive_directory}} {{endif}} {{if http_proxy }} apt_proxy: {{http_proxy}} {{else}} apt_proxy: http://{{server_host}}:8000/ {{endif}} maas-1.5+bzr2252.orig/contrib/preseeds_v2/enlist0000644000000000000000000000047112323254361017576 0ustar 00000000000000#cloud-config datasource: MAAS: timeout : 50 max_wait : 120 # there are no default values for metadata_url or oauth credentials # If no credentials are present, non-authed attempts will be made. metadata_url: {{metadata_enlist_url}} output: {all: '| tee -a /var/log/cloud-init-output.log'} maas-1.5+bzr2252.orig/contrib/preseeds_v2/enlist_userdata0000644000000000000000000001220012323254361021457 0ustar 00000000000000#cloud-config {{if http_proxy}} apt_proxy: {{http_proxy}} {{elif server_host}} apt_proxy: http://{{server_host}}:8000/ {{endif}} misc_bucket: - &maas_enlist | #### IPMI setup ###### # If IPMI network settings have been configured statically, you can # make them DHCP. If 'true', the IPMI network source will be changed # to DHCP. IPMI_CHANGE_STATIC_TO_DHCP="false" # In certain hardware, the parameters for the ipmi_si kernel module # might need to be specified. If you wish to send parameters, uncomment # the following line. #IPMI_SI_PARAMS="type=kcs ports=0xca2" TEMP_D=$(mktemp -d "${TMPDIR:-/tmp}/${0##*/}.XXXXXX") IPMI_CONFIG_D="${TEMP_D}/ipmi.d" BIN_D="${TEMP_D}/bin" OUT_D="${TEMP_D}/out" PATH="$BIN_D:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" mkdir -p "$BIN_D" "$OUT_D" "$IPMI_CONFIG_D" load_modules() { modprobe ipmi_msghandler modprobe ipmi_devintf modprobe ipmi_si ${IPMI_SI_PARAMS} udevadm settle } add_bin() { cat > "${BIN_D}/$1" chmod "${2:-755}" "${BIN_D}/$1" } add_ipmi_config() { cat > "${IPMI_CONFIG_D}/$1" chmod "${2:-644}" "${IPMI_CONFIG_D}/$1" } # Example config: enable BMC remote access (on some systems.) #add_ipmi_config "02-global-config.ipmi" <<"END_IPMI_CONFIG" #Section Lan_Channel # Volatile_Access_Mode Always_Available # Volatile_Enable_User_Level_Auth Yes # Volatile_Channel_Privilege_Limit Administrator # Non_Volatile_Access_Mode Always_Available # Non_Volatile_Enable_User_Level_Auth Yes # Non_Volatile_Channel_Privilege_Limit Administrator #EndSection #END_IPMI_CONFIG add_bin "maas-ipmi-autodetect-tool" <<"END_MAAS_IPMI_AUTODETECT_TOOL" {{for line in maas_ipmi_autodetect_tool_py.splitlines()}} {{line}} {{endfor}} END_MAAS_IPMI_AUTODETECT_TOOL add_bin "maas-ipmi-autodetect" <<"END_MAAS_IPMI_AUTODETECT" {{for line in maas_ipmi_autodetect_py.splitlines()}} {{line}} {{endfor}} END_MAAS_IPMI_AUTODETECT add_bin "maas-moonshot-autodetect" <<"END_MAAS_MOONSHOT_AUTODETECT" {{for line in maas_moonshot_autodetect_py.splitlines()}} {{line}} {{endfor}} END_MAAS_MOONSHOT_AUTODETECT add_bin "maas-enlist" <<"END_MAAS_ENLIST" {{for line in maas_enlist_sh.splitlines()}} {{line}} {{endfor}} END_MAAS_ENLIST # we could obtain the interface that booted from the kernel cmdline # thanks to 'IPAPPEND' (http://www.syslinux.org/wiki/index.php/SYSLINUX) url="{{server_url}}" host="" ip=$(ifconfig eth0 | awk '$1 == "inet" { sub("addr:","",$2); print $2; }') && [ -n "${ip}" ] && host=$(dig +short -x $ip) && host=${host%.} # load ipmi modules load_modules pargs="" if $IPMI_CHANGE_STATIC_TO_DHCP; then pargs="--dhcp-if-static" fi power_type=$(maas-ipmi-autodetect-tool) case "$power_type" in ipmi) power_params=$(maas-ipmi-autodetect --configdir "$IPMI_CONFIG_D" ${pargs} --commission-creds) && [ -n "${power_params}" ] && power_params=${power_params%.} ;; moonshot) power_params=$(maas-moonshot-autodetect --commission-creds) && [ -n "${power_params}" ] && power_params=${power_params%.} ;; esac # Try maas-enlist without power parameters on failure for older versions of # maas-enlist without power parameter support maas-enlist --serverurl "$url" ${host:+--hostname "${host}"} ${power_params:+--power-params "${power_params}" --power-type "${power_type}"}>/tmp/enlist.out ||\ maas-enlist --serverurl "$url" ${host:+--hostname "${host}"} >/tmp/enlist.out if [ $? -eq 0 ]; then msg="successfully enlisted to '$url'" [ -n "$host" ] && msg="$msg with hostname '$host'" || msg="$msg without hostname" echo echo "=== $(date -R): $msg" cat /tmp/enlist.out echo ============================================= sleep 10 else user="ubuntu" pass="ubuntu" echo "$user:$pass" | chpasswd bfile="/tmp/block-poweroff" { echo "#!/bin/sh"; echo "touch $bfile"; } > /etc/profile.d/A01-block.sh chmod 755 /etc/profile.d/A01-block.sh echo echo ============================================= echo "failed to enlist system maas server '$host'" echo "sleeping 60 seconds then poweroff" echo echo "login with '$user:$pass' to debug and disable poweroff" echo cat /tmp/enlist.out echo ============================================= sleep 60 [ -e $bfile ] && exit 0 fi - &write_poweroff_job | cat >/etc/init/maas-poweroff.conf < /tmp/install_udeb.sh && \ chmod +x /tmp/install_udeb.sh && \ /tmp/install_udeb.sh d-i apt-setup/local0/repository string deb {{driver['repository']}} {{node.get_distro_series()}} main d-i apt-setup/local0/comment string {{driver['comment']}} d-i apt-setup/local0/key string file:///tmp/maas-{{driver['package']}}/repo_key.gpg {{endif}} {{enddef}} {{def preseed}} {{preseed_data}} {{driver_preseed_data}} {{enddef}} {{def post_scripts}} # Executes late command and disables PXE. d-i preseed/late_command string true && \ in-target sh -c 'f=$1; shift; echo $0 > $f && chmod 0440 $f $*' 'ubuntu ALL=(ALL) NOPASSWD: ALL' /etc/sudoers.d/maas && \ in-target wget --no-proxy "{{node_disable_pxe_url|escape.shell}}" --post-data "{{node_disable_pxe_data|escape.shell}}" -O /dev/null && \ {{if third_party_drivers and driver}} in-target sh -c "echo blacklist {{driver['blacklist']}} >> /etc/modprobe.d/maas-{{driver['module']}}.conf" && \ in-target sh -c "for file in /lib/modules/*; do depmod ${file##*/}; done"; \ in-target update-initramfs -u; \ {{endif}} true {{enddef}} {{def install_udeb}} {{if third_party_drivers and driver}} #!/usr/bin/env sh set -eu REPO={{driver['repository']}} KERNEL_VERSION=`uname -r` TMPDIR=/tmp/maas-{{driver['package']}} mkdir $TMPDIR {{if http_proxy}} export http_proxy={{http_proxy}} https_proxy={{http_proxy}} {{endif}} echo -en '{{''.join(['\\x%x' % x for x in map(ord, driver['key_binary'])])}}' > $TMPDIR/repo_key.gpg # Retrieve the Release file and verify it against the repository's key. wget -O $TMPDIR/Release $REPO/dists/{{node.get_distro_series()}}/Release wget -O $TMPDIR/Release.gpg $REPO/dists/{{node.get_distro_series()}}/Release.gpg gpgv --keyring $TMPDIR/repo_key.gpg $TMPDIR/Release.gpg $TMPDIR/Release # Retrieve the Packages file and verify it against the Releases file. wget -O $TMPDIR/Packages $REPO/dists/{{node.get_distro_series()}}/main/debian-installer/binary-amd64/Packages expected_sha256=`sed -n -e '/^SHA256:$/,$p' $TMPDIR/Release | grep 'main/debian-installer/binary-amd64/Packages$' | cut -f 2 -d ' '` actual_sha256=`sha256sum $TMPDIR/Packages | cut -f 1 -d ' '` if [ "$expected_sha256" != "$actual_sha256" ] then echo "Packages sha256 value mismatch." echo "expected: $expected_sha256, actual: $actual_sha256" exit 1 fi # Retrieve the udeb and verify it against the Packages file. This method # of locating the sha256 sum for the udeb within the Packages file # relies on the SHA256 line coming after the Filename line in the udeb's # record in the Packages file. filename=`grep ^Filename.*$KERNEL_VERSION $TMPDIR/Packages | cut -f 2 -d ' ' | sort -ru | head -n 1` wget -O $TMPDIR/driver.udeb $REPO/$filename basename=${filename##*/} sed_expression="/$basename"'$/,$p' expected_udeb_sha256=`sed -n -e $sed_expression $TMPDIR/Packages | grep ^SHA256: | cut -f 2 -d ' ' | head -n 1` actual_udeb_sha256=`sha256sum $TMPDIR/driver.udeb | cut -f 1 -d ' '` if [ "$expected_udeb_sha256" != "$actual_udeb_sha256" ] then echo "udeb sha256 value mismatch." echo "expected: $expected_udeb_sha256, actual: $actual_udeb_sha256" exit 1 fi # Install the udeb and load the kernel module. udpkg -i $TMPDIR/driver.udeb depmod modprobe {{driver['module']}} {{endif}} {{enddef}} maas-1.5+bzr2252.orig/contrib/preseeds_v2/preseed_master0000644000000000000000000000601512323254361021302 0ustar 00000000000000# MAAS - Ubuntu Server Installation # * Minimal install # * Cloud-init for bare-metal # * Cloud-init preseed data # Locale d-i debian-installer/locale string en_US.UTF-8 # No splash d-i debian-installer/splash boolean false # Keyboard layout d-i console-setup/ask_detect boolean false d-i console-setup/layoutcode string us d-i console-setup/variantcode string # Network configuration d-i netcfg/get_nameservers string d-i netcfg/get_ipaddress string d-i netcfg/get_netmask string 255.255.255.0 d-i netcfg/get_gateway string d-i netcfg/confirm_static boolean true # Local clock (set to UTC and use ntp) d-i clock-setup/utc boolean true d-i clock-setup/ntp boolean true d-i clock-setup/ntp-server string ntp.ubuntu.com d-i time/zone string Etc/UTC # Partitioning d-i partman/early_command string debconf-set partman-auto/disk `list-devices disk | head -n1` d-i partman-iscsi/mainmenu string finish d-i partman-auto/method string regular d-i partman-lvm/device_remove_lvm boolean true d-i partman-lvm/confirm boolean true d-i partman-md/device_remove_md boolean true d-i partman/confirm_write_new_label boolean true d-i partman/choose_partition select Finish partitioning and write changes to disk d-i partman/confirm boolean true d-i partman/confirm_nooverwrite boolean true d-i partman/default_filesystem string ext4 # Use server kernel d-i base-installer/kernel/image string linux-server # User Setup d-i passwd/root-login boolean false d-i passwd/make-user boolean true d-i passwd/user-fullname string ubuntu d-i passwd/username string ubuntu d-i passwd/user-password-crypted password ! d-i passwd/user-uid string d-i user-setup/allow-password-weak boolean false d-i user-setup/encrypt-home boolean false d-i passwd/user-default-groups string adm cdrom dialout lpadmin plugdev sambashare # APT {{self.proxy}} # By default the installer requires that repositories be authenticated # using a known gpg key. This setting can be used to disable that # authentication. Warning: Insecure, not recommended. d-i debian-installer/allow_unauthenticated string false # Lang d-i pkgsel/language-packs multiselect en d-i pkgsel/update-policy select none d-i pkgsel/updatedb boolean true # Boot-loader d-i grub-installer/skip boolean false d-i lilo-installer/skip boolean false d-i grub-installer/only_debian boolean true d-i grub-installer/with_other_os boolean true d-i finish-install/keep-consoles boolean false d-i finish-install/reboot_in_progress note # Eject cdrom d-i cdrom-detect/eject boolean true # Do not halt/poweroff after install d-i debian-installer/exit/halt boolean false d-i debian-installer/exit/poweroff boolean false # maas client packages {{self.client_packages}} # maas preseed {{self.preseed}} # Post scripts. {{self.post_scripts}} maas-1.5+bzr2252.orig/docs/_static/0000755000000000000000000000000012323254361015050 5ustar 00000000000000maas-1.5+bzr2252.orig/docs/_templates/0000755000000000000000000000000012323254361015557 5ustar 00000000000000maas-1.5+bzr2252.orig/docs/about.rst0000644000000000000000000000361212323254361015270 0ustar 00000000000000About this documentation ======================== This is the documentation for Canonical's MAAS software. If you aren't sure what that is, you should probably skip everything else and head straight to the :ref:`orientation` section where it is explained. Like any software though, it can be frustrating if you don't know how bits of it work, how to achieve certain goals or what to do when things go wrong. Amongst its various sections, this manual aims to answer all those questions and plenty more you haven't even thought of yet. Getting it ---------- In a cunning move, the current documentation always lives, and is built from, the main MAAS source code. That means that whatever MAAS package you have installed, or even if you are really living life on the edge and have checked out a development version from Launchpad, this documentation should be the latest and most appropriate version for the software you are running. However, it is also possible that there have been further sections or more helpful, or clearer bits added since the package you are using was made. For this reason you can always find the latest documentation online here: http://maas.ubuntu.com Contributing ------------ If you have some extra information to add, or think you have spotted an error or something out of date, we really want to hear about it. Please `File a bug report`_ or `contact us directly`_. In addition you can talk to us on the Freenode IRC channel #maas. .. _File a bug report: https://bugs.launchpad.net/maas/+filebug .. _contact us directly: https://launchpad.net/~maas-maintainers/+contactuser If you see something wrong with this documentation, you can help us fix it. Download the source to MAAS by following the instructions in :doc:`the hacking guide `, make your changes, and propose a merge against lp:maas on Launchpad. The documentation source lives in the top-level ``doc/`` directory. maas-1.5+bzr2252.orig/docs/capabilities.rst0000644000000000000000000000155112323254361016607 0ustar 00000000000000.. -*- mode: rst -*- .. _capabilities: Capabilities ============ MAAS publishes a special view at ``.../api/1.0/version/`` that returns a list of the server's capabilities. It's transferred as a JSON document:: {"capabilities": ["name-of-capability", ...]} .. note:: The view is called ``version`` because this will, later, include version information too. List of capabilities -------------------- Check for the following strings in the capabilities list to see what features the MAAS server supports. Use these in preference to gating on the version when creating a client application. .. _cap-networks-management: ``networks-management`` Passive modelling of the network environment that cluster controllers nodes are in, including network interfaces, subnets, VLAN tags, and connectivity between them. See :ref:`networks` for more information. maas-1.5+bzr2252.orig/docs/changelog.rst0000644000000000000000000003113412323254361016105 0ustar 00000000000000========= Changelog ========= 1.5 === (released in Ubuntu 14.04) Major new features ------------------ Advanced Networking. MAAS will now support multiple managed network interfaces on a single cluster. It will track networks (including tagged VLANs) to which each node is able to connect and provides this information in the API. API clients may also use networking information in acquisition constraints when asking for a new node allocation. See :ref:`The full Networking documentation `. Zones. A Zone is an arbitrary grouping of nodes. MAAS now allows admins to define Zones, and place in them any of the region's nodes. Once defined, API clients can use the zone name as acquisition constraints for new node allocations. See :doc:`physical-zones` for more detail. Hardware Enablement Kernels. MAAS is now able to fetch and use hardware enablement kernels which allow kernels for newer Ubuntu releases to be used on older releases. See :doc:`hardware-enablement-kernels` Minor feature changes --------------------- Maas-Test. A new project `maas-test`_ was created to put a piece of hardware through MAAS's test suite to see if it's suitable for use in MAAS, and optionally report the results to a bug in Launchpad's maas-test project. .. _maas-test: https://launchpad.net/maas-test/ IPMI improvements. Many improvements were made to IPMI handling, including better detection during enlistment. Many IPMI-based systems that previously failed to work with MAAS will now work correctly. Completion of image downloading changes. Further to the work done in the 1.4 (Ubuntu 13.10) release, MAAS now uses indexed "simplestreams" data published by Canonical to fetch not only the ephemeral images, but now also the kernels and ramdisks. The resource download configuration is now in a new file ``/etc/maas/bootresources.yaml`` on each cluster controller. All previous configuration files for image downloads are now obsolete. The new file will be pre-configured based on images that are already present on the cluster. This change also enables end-users to provide their own simplestreams data and thusly their own custom images. Cluster-driven hardware availability. When adding or editing node hardware in the region controller, MAAS will contact the relevant cluster controller to validate the node's settings. As of release, the only validation made is the architecture and the power settings. Available architectures are based on which images have been imported on the cluster. In the future, this will enable new cluster controllers to be added that contain drivers for new hardware without restarting the region controller. Seamicro hardware. MAAS now supports the Seamicro 15000 hardware for power control and API-based enlistment. AMT. MAAS now supports power control using `Intel AMT`_. .. _Intel AMT: http://www.intel.com/content/www/us/en/architecture-and-technology/intel-active-management-technology.html DNS forwarders. In MAAS's settings it's now possible to configure an upstream DNS, which will be set in the bind daemon's 'forwarders' option. Foreign DHCP servers. MAAS detects and shows you if any other DHCP servers are active on the networks that are on the cluster controller. Commissioning Results. A node's commissioning results are now shown in the UI. Renamed commands. ``maas`` is renamed to ``maas-region-admin``. ``maas-cli`` is now just ``maas``. Bugs fixed in this release -------------------------- For full details see https://launchpad.net/maas/+milestone/14.04 #1227035 If a template substitution fails, the appserver crashes #1255479 MaaS Internal Server Error 500 while parsing tags with namespaces in definition upon commissioning #1269648 OAuth unauthorized errors mask the actual error text #1270052 Adding an SSH key fails due to a UnicodeDecodeError #1274024 kernel parameters are not set up in the installed OS's grub cfg #1274190 periodic_probe_dhcp task raises IOError('No such device') #1274912 Internal server error when trying to stop a node with no power type #1274926 A node's nodegroup is autodetected using the request's IP even when the request is a manual #1278895 When any of the commissioning scripts fails, the error reported contains the list of the scripts that *didn't* fail #1279107 maas_ipmi_autodetect.py ignores command failures #1282828 Almost impossible to provide a valid nodegroup ID when enlisting new node on API #1283114 MAAS' DHCP server is not stopped when the number of managed interfaces is zero #1285244 Deleting a node sometimes fails with omshell error #1285607 maas_ipmi_autodetect mistakes empty slot for taken slot #1287274 On OCPv3 Roadrunner, maas_ipmi_autodetect fails because LAN Channel settings can't be changed #1287512 OCPv3 roadrunner detects IPMI as 1.5 #1289456 maas IPMI user creation fails on some DRAC systems #1290622 report_boot_images does not remove images that were deleted from the cluster #1293676 internal server error when marking nodes as using fast-path installer #1300587 Cloud-archive selection widget is obsolete #1301809 Report boot images no directory traceback #1052339 MAAS only supports one "managed" (DNS/DHCP) interface per cluster controller. #1058126 maas dbshell stacktraces in package #1064212 If a machine is booted manually when in status "Declared" or "Ready", TFTP server tracebacks #1073460 Node-specific kernel and ramdisk is not possible #1177932 Unable to select which pxe files to download by both series and architecture. #1181334 i386 required to install amd64 #1184589 When external commands, issued by MAAS, fail, the log output does not give any information about the failure. #1187851 Newline added to end of files obtained with maas-cli #1190986 ERROR Nonce already used #1191735 TFTP server not listening on all interfaces #1210393 MAAS ipmi fails on OCPv3 Roadrunner #1228205 piston hijacks any TypeError raised by MAAS #1234880 HP ilo4 consoles default to autodetect protocol, which doesn't work #1237197 No scheduled job for images download #1238284 mutiple ip address displayed for a node #1243917 'maas createsuperuser' errors out if no email address is entered. #1246531 dhcpd.conf not updated when user hits "Save cluster controller" #1246625 The power parameters used by the virsh power template are inconsistent. #1247708 Cluster interface shows up with no interface name #1248893 maas-cli listing nodes filtered by hostname doesn't work #1249435 kernel options not showing up in WebUI and not being passed at install time to one node #1250410 Search box renders incorrectly in Firefox #1268795 unable to automatically commission Cisco UCS server due to BMC user permissions #1270131 1 CPU when there are multiple cores on Intel NUC #1271056 API call for listing nodes filtered by zone #1273650 Fastpath installer does not pick up package mirror settings from MAAS #1274017 MAAS new user creation requires E-Mail address, throws wrong error when not provided #1274465 Network identity shows broadcast address instead of the network's address #1274499 dhcp lease rollover causes loss of access to managment IP #1275643 When both IPMI 1.5 and 2.0 are available, MAAS should use 2.0 #1279304 Node commissioning results are not displayed in the UI #1279728 Storage capacity isn't always detected #1287964 MAAS incorrectly detects / sets-up BMC information on Dell PowerEdge servers #1292491 pserv traceback when region controller not yet ready #1293661 cannot use fast path installer to deploy other than trusty #1294302 fast installer fails to PXE boot on armhf/highbank #1295035 The UI doesn't display the list of available boot images #1297814 MAAS does not advertise its capabilities #1298790 Logout page vulnerable to CSRF #1271189 support switching image streams in import ephemerals #1287310 hard to determine valid values for power parameters #1272014 MAAS prompts user to run `maas createadmin`; instead of `maas createsuperuser` #1108319 maascli could have a way to tell which cluster controllers don't have the pxe files 1.4 === (released in Ubuntu 13.10) Major new features ------------------ LLDP collection. MAAS now collects LLDP data on each node during its commissioning cycle. The router to which the node is connected will have its MAC address parsed out of the data and made available for using as a placement constraint (passing connected_to or not_connected_to to the acquire() API call), or you can define tags using expressions such as ``//lldp:chassis/lldp:id[@type="mac"]/text() = "20:4e:7f:94:2e:10"`` which would tag nodes with a router using that MAC address. New faster installer for nodes. MAAS will now make use of the new Curtin_ installer which is much quicker than the old Debian Installer process. Typically an installation now takes a couple of minutes instead of upwards of 10 minutes. To have a node use the faster installer, add the ``use-fastpath-installer`` tag to it, or click the "Use the fast installer" button on the node page. .. _Curtin: https://launchpad.net/curtin More extensible templates for DHCP, power control, PXE and DNS. Templates supplied for these activities are now all in their own template file that is customisable by the user. The files now generally live under /etc/maas/ rather than embedded in the code tree itself. Minor feature changes --------------------- Reworked ephemeral downloading While there is no end-user visible change, the ephemeral image download process is now driven by a data stream published by Canonical at http://maas.ubuntu.com/images/streams. In the future this will allow end users to use their own customised images by creating their own stream. The configuration for this is now also part of ``pserv.yaml``, obsoleting the maas_import_ephemerals configuration file. The config will be auto- migrated on the first run of the ``maas-import-ephemerals`` script. Improved maas-cli support Users can now manage their SSH keys and API credentials via the maas-cli tool. Django 1.5 MAAS is updated to work with Django 1.5 HP Moonshot Systems support. MAAS can now manage HP Moonshot Systems as any other hardware. However, in order for MAAS to power manage these systems, it requires the user to manually specify the iLO credentials before the enlistment process begins. This can be done in the ``maas_moonshot_autodetect.py`` template under ``/etc/maas/templates/commissioning-user-data/snippets/``. Bugs fixed in this release -------------------------- #1039513 maas-import-pxe-files doesn't cryptographically verify what it downloads #1158425 maas-import-pxe-files sources path-relative config #1204507 MAAS rejects empty files #1208497 netboot flag defaults to 'true' on upgrade, even for allocated nodes #1227644 Releasing a node using the API errors with "TypeError: 00:e0:81:dd:d1:0b is not JSON serializable" #1234853 MAAS returns HTTP/500 when adding a second managed interface to cluster controller #971349 With 100% of nodes in 'declared' state, pie chart is white on white #974035 Node listing does not support bulk operations #1045725 SAY clauses in PXE configs are being evaluated as they're encountered, not when the label is branched to #1054518 distro_series can be None or "" #1064777 If a node's IP address is known, it's not shown anywhere #1084807 Users are editing the machine-generated dhcpd.conf #1155607 Conflict between "DNS zone name" in Cluster controller and "Default domain for new nodes" in settings #1172336 MAAS server reference to AvahiBoot wiki page that does not exist #1185160 no way to see what user has a node allocated #1202314 Discrepancy between docs and behavior #1206222 Documentation Feedback and Site suggestions #1209039 Document that MAAS requires 'portfast' on switch ports connected to nodes #1215750 No way of tracing/debugging http traffic content in the appserver. #1223157 start_commissioning needlessly sets owner on commissioning nodes #1227081 Error in apache's log "No handlers could be found for logger "maasserver"" #1233069 maas-import-pxe-files fails when md5 checksums can't be downloaded #1117415 maas dhcp responses do not have domain-name or domain-search #1136449 maas-cli get-config and set-config documentation #1175405 Pie chart says "deployed" which is inconsistent with the node list's "allocated" #1233833 Usability: deleting nodes is too easy #1185897 expose ability to re-commission node in api and cli #997092 Can't delete allocated node even if owned by self maas-1.5+bzr2252.orig/docs/cluster-configuration.rst0000644000000000000000000001201712323254361020503 0ustar 00000000000000Cluster Configuration ===================== Before any of MAAS's features can be used for the first time, you must have a cluster controller and configure it to manage at least one network of nodes. Each node in the cluster should be attached to one of these networks. (In addition, a node can be attached to any number of networks that are not managed by MAAS.) Managing a network normally means that MAAS will serve DHCP from the cluster controller. **Do this only on a network that was set up with this in mind.** Running your own DHCP server that competes with an existing one that's already managing the network can cause serious disruption, and it can be hard for administrators to track the source of the problem. Worse, the problems may not become immediately noticeable. Make sure you understand the implications of running a DHCP server before doing this. If MAAS detects any DHCP servers already running on these networks, it will show them on the cluster's configuration page. Network requirements -------------------- The cluster controller manages a network of nodes through one of its interfaces as defined in MAAS. Cluster interfaces are discovered automatically, though this may not happen e.g. if the network interface was down when MAAS was installed. When a cluster controller manages nodes on a network through one of its interfaces, the nodes must be on the same subnet as the cluster interface. This is for two reasons: 1. If the cluster controller is configured to manage DHCP, the nodes must be able to configure their own network interfaces using MAAS's DHCP server. This means that either they must be on the same subnet, or that DHCP packets are being specially routed between the nodes' subnet and MAAS's DHCP server. 2. The cluster controller must be able to find nodes' IP addresses based on their MAC addresses, by inspecting its ARP cache. This implies that the nodes and the clsuter controler must on the same physical subnet. Cluster acceptance ------------------ If you install your first cluster controller on the same system as the region controller, as is the case when you install the full "maas" ubuntu package, it will be automatically accepted by default (but not yet configured, see below). Any other cluster controllers you set up will show up in the user interface as "pending," until you manually accept them into the MAAS. To accept a cluster controller, click on the settings "cog" icon at the top right to visit the settings page: .. image:: media/cluster-accept.png You can either click on "Accept all" or click on the edit icon to edit the cluster. After clicking on the edit icon, you will see this page: .. image:: media/cluster-edit.png Here you can change the cluster's name as it appears in the UI, its DNS zone, and its status. Accepting the cluster changes its status from "pending" to "accepted." Now that the cluster controller is accepted, you can configure one or more of its network interfaces to be managed by MAAS. This will enable the cluster controller to manage nodes attached to those networks. The next section explains how to do this and what choices are to be made. Cluster interface management ---------------------------- MAAS automatically recognises the network interfaces on each cluster controller. Some (though not necessarily all) of these will be connected to networks where you want to manage nodes. We recommend letting your cluster controller act as a DHCP server for these networks, by configuring those interfaces in the MAAS user interface. As an example, we will configure the cluster controller to manage a network on interface ``eth0``. Click on the edit icon for ``eth0``, which takes us to this page: .. image:: media/cluster-interface-edit.png Here you can select to what extent you want the cluster controller to manage the network: #. DHCP only - this will run a DHCP server on your cluster #. DHCP and DNS - this will run a DHCP server on the cluster *and* configure the DNS server included with the region controller so that it can be used to look up hosts on this network by name. .. note:: You cannot have DNS management without DHCP management because MAAS relies on its own DHCP server's leases file to work out the IP address of nodes in the cluster. If you set the interface to be managed, you now need to provide all of the usual DHCP details in the input fields below. Once done, click "Save interface". The cluster controller will now be able to boot nodes on this network. There is also an option to leave the network unmanaged. Use this for networks where you don't want to manage any nodes. Or, if you do want to manage nodes but don't want the cluster controller to serve DHCP, you may be able to get by without it. This is explained in :ref:`manual-dhcp`. Multiple networks ----------------- A single cluster controller can manage more than one network, each from a different network interface on the cluster-controller server. This may help you scale your cluster to larger numbers of nodes, or it may be a requirement of your network architecture. maas-1.5+bzr2252.orig/docs/conf.py0000644000000000000000000002126212323254361014724 0ustar 00000000000000# -*- coding: utf-8 -*- # # MAAS documentation build configuration file, created by # sphinx-quickstart on Thu Jan 19 14:48:25 2012. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. # Import maas' settings. from os import environ environ.setdefault("DJANGO_SETTINGS_MODULE", "maas.settings") # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.insert(0, os.path.abspath('.')) # -- General configuration ----------------------------------------------------- # Add a widget to switch between different versions of the documentation to # each generated page. add_version_switcher = False # In order for the version widget to be able to redirect correctly to the # other versions of the documentation, each version of the documentation # has to be accessible at the following addresses: # // -> documentation for trunk. # /1.4/ -> documentation for 1.4. # etc. doc_prefix = 'docs' # Path of the JSON document, relative to homepage of the documentation for trunk # (i.e. '//'), with the list of the versions to include in the # version switcher widget. versions_path = '_static/versions.js' # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.pngmath', 'sphinx.ext.viewcode', ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = u'MAAS' copyright = u'2012-2014, MAAS Developers' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = '1.5' # The full version, including alpha/beta/rc tags. release = '1.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ['_build', '_templates'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # AutoDoc autodoc_default_flags = ['members', 'show-inheritance'] autodoc_member_order = 'bysource' autodoc_docstring_signature = True # AutoSummary autosummary_generate = True # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'maas' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] html_theme_path = ['_templates'] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. html_logo = 'media/maas-logo-200.png' # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. html_favicon = 'media/maas.ico' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_domain_indices = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = None # Output file base name for HTML help builder. htmlhelp_basename = 'MAASdoc' # -- Options for LaTeX output -------------------------------------------------- # The paper size ('letter' or 'a4'). latex_paper_size = 'a4' # The font size ('10pt', '11pt' or '12pt'). #latex_font_size = '10pt' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'MAAS.tex', u'MAAS Documentation', u'MAAS Developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # If true, show page references after internal links. #latex_show_pagerefs = False # If true, show URL addresses after external links. #latex_show_urls = False # Additional stuff for the LaTeX preamble. #latex_preamble = '' # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_domain_indices = True # -- Options for manual page output -------------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ ('man/maas.8', 'maas', u'MAAS API commandline utility', [u'Canonical 2013-2014'], 8), ('man/maas-import-pxe-files.8', 'maas-import-pxe-files', u'MAAS helper script', [u'Canonical 2013'], 8), ('man/maas-region-admin.8', 'maas-region-admin', u'MAAS administration tool', [u'Canonical 2013-2014'], 8) ] # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {'http://docs.python.org/': None} # Populate html_context with the variables used in the templates. html_context = { 'add_version_switcher': 'true' if add_version_switcher else 'false', 'versions_json_path': '/'.join(['', doc_prefix, versions_path]), 'doc_prefix': doc_prefix, } maas-1.5+bzr2252.orig/docs/configure.rst0000644000000000000000000002245712323254361016147 0ustar 00000000000000Additional Configuration ======================== .. _manual-dhcp: Manual DHCP configuration ------------------------- DHCP is needed in order for MAAS to boot and control nodes. However, there are some circumstances under which you may not wish a cluster controller to handle DHCP address assignments for the network. In these instances, the existing DHCP server for the network will need its configuration altered to allow MAAS to enlist and control nodes automatically. At the very least the "filename" option should be set to "pxelinux.0". How to configure this depends on what software you use as a DHCP server. If you are using the ISC DHCP server, for example, the configuration entry might look something like this:: subnet 192.168.122.0 netmask 255.255.255.0 { filename "pxelinux.0"; option subnet-mask 255.255.255.0; option broadcast-address 192.168.122.255; option domain-name-servers 192.168.122.136; range dynamic-bootp 192.168.122.5 192.168.122.135; } When doing this, leave the cluster controller's interface in the "unmanaged" state. If your cluster controller is in charge of nodes on more than one network through different network interfaces, there is an additional complication. Without the DHCP server built into the cluster controller, MAAS may not know which of the cluster controller's IP addresses each node should use for downloading its installer image. If you want to support this situation, ensure that all of the nodes can reach all of the cluster controller's network addresses. .. _ssl: SSL Support ----------- If you want secure access to your MAAS web UI/API, you need to do a few things. First, turn on SSL support in Apache:: $ sudo a2enmod ssl Ensure that the Apache config file from ``etc/maas/maas-http.conf`` is included in ``/etc/apache2/conf.d/``, then edit ``/etc/maas/maas_local_settings.py`` and change DEFAULT_MAAS_URL so that it uses https instead of http. Now, restart Apache:: $ sudo service apache2 restart At this point you will be able to access the MAAS web server using https but the default SSL certificate is insecure. Please generate your own and then edit ``/etc/apache2/conf.d/maas-http.conf`` to set the location of the certificate. Choosing a series to install ---------------------------- You may have some specific reason to choose a particular version of Ubuntu to install on your nodes, perhaps based around package availability, hardware support or some other reason. It is possible to choose a specific series from those available in a number of ways. From the user interface ^^^^^^^^^^^^^^^^^^^^^^^ The web-based user interface makes it easy to select which Ubuntu series you wish to install on an individual node. When either adding a node manually, or on the node page when the node has been automatically discovered but before it is accepted, there is a drop down menu to select the version of Ubuntu you wish to install. .. image:: media/series.* The menu will always list all the currently available series according to which boot images are available. Using the maas command ^^^^^^^^^^^^^^^^^^^^^^ It is also possible to select a series using the maas command. This can be done on a per node basis with:: $ maas node update distro_series="" Where the string contains one of the valid, available distro series (e.g. "trusty") or is empty for the default value. .. _preseed: Altering the Preseed file ------------------------- .. warning:: Do not try to alter the preseed files if you don't have a good understanding of what you are doing. Altering the installed version of Ubuntu can prevent MAAS from working as intended, and may have security and stability consequences. When MAAS commissions a node it installs a version of Ubuntu. The installation is performed using a 'preseed' file, which is effectively a list of answers to the questions you would get were you to run the installer manually. The preseed file used by MAAS is carefully made so that the target node can be brought up and do all the jobs expected of it. However, in exceptional circumstances, you may wish to alter the pressed file to work around some issue. There are actually two preseed files, stored here:: /etc/maas/preseeds/generic /etc/maas/preseeds/preseed-master The generic file actually references the preseed-master file, and is used to set conditional parameters based on the type of series and architecture to install as well as to define the minimum set of install packages and to tidy up the PXE boot process if that has been used for the node. Unless you have a specific need to change where install packages come from, you should not need to edit this file. For the more usual sorts of things you may wish to change, you should edit the preseed-master file. For example, depending on your network you may wish to change the clock settings:: # Local clock (set to UTC and use ntp) d-i clock-setup/utc boolean true d-i clock-setup/ntp boolean true d-i clock-setup/ntp-server string ntp.ubuntu.com Having consistent clocks is very important to the working of your MAAS system overall. If your nodes however cannot freely access the Internet, the supplied NTP server is not going to be very useful, and you may find it better to run an ntp service on the MAAS controller and change the `ntp.ubuntu.com` in the last line for a more appropriate server. One thing you may wish to alter in the preseed file is the disk partitioning. This is a simple recipe that creates a swap partition and uses the rest of the disk for one large root filesystem:: partman-auto/text/atomic_scheme :: 500 10000 1000000 ext3 $primary{ } $bootable{ } method{ format } format{ } use_filesystem{ } filesystem{ ext3 } mountpoint{ / } . 64 512 300% linux-swap method{ swap } format{ } . Here the root partition must be at least 500 mb, and has effectively no maximum size. The swap partition ranges from 64 MB to 3 times the system's ram. Adding `$bootable{ }` to make the partition bootable, and $primary{ } marks it as the primary partition. The other specifiers used are: *method{ format }* Used to make the partition be formatted. For swap partitions, change it to "swap". To create a new partition but do not format it, change "format" to "keep" (such a partition can be used to reserve for future use some disk space). *format{ }* Also needed to make the partition be formatted. *use_filesystem{ }* Specifies that the partition has a filesystem on it. *filesystem{ ext3 }* Specifies the filesystem to put on the partition. *mountpoint{ / }* Where to mount the partition. For more information on preseed options, you should refer to `the official Ubuntu documentation `_ .. note:: Future versions of MAAS are likely to replace this type of automatic installation with a different installer. Installing additional clusters ------------------------------ In an environment comprising large numbers of nodes, it is likely that you will want to organise the nodes on a more distributed basis. The standard install of the MAAS region controller includes a cluster controller, but it is possible to add additional cluster controllers to the configuration, as shown in the diagram below: .. image:: media/orientation_architecture-diagram.* Each cluster controller will need to run on a separate Ubuntu server. Installing and configuring the software is straightforward though:: $ sudo apt-get install maas-cluster-controller This meta-package will install all the basic requirements of the system. However, you may also wish or need to run DHCP and/or DNS services, in which case you should also specify these:: $ sudo apt-get install maas-cluster-controller maas-dhcp maas-dns Configuring the cluster controller ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Once the packages are installed, the cluster controller needs to know where to look for the region controller. This is achieved using `dpkg` to configure the software:: $ dpkg-reconfigure maas-cluster-controller .. image:: media/cluster-config.* The configuration script should then bring up a screen where you can enter the IP address of the region controller. Additionally, you will need to run the ``maas-import-pxe-files`` script to install the distro image files locally for commissioning:: $ maas maas node-groups import-boot-images ...and optionally set up the DHCP and DNS for the cluster by either: *Using the web UI* Follow the instructions at :doc:`cluster-configuration` to use the web UI to set up your cluster controller. *Using the command line client* First :ref:`logging in to the API ` and then :ref:`following this procedure ` Client-side DNS configuration ----------------------------- When using a third party tool such as ``juju`` it will need to be able to resolve the hostnames that the MAAS API returns to it. In order for this to happen, *client-side DNS* must be configured to point to MAAS's DNS server. Generally speaking, this is a simple case of adding the following line to the ``/etc/resolv.conf`` file on your client host:: nameserver replacing the with the actual IP address of the host running the MAAS DNS server. However, for hosts using the ``resolvconf`` package, please read its documentation for more information. maas-1.5+bzr2252.orig/docs/development/0000755000000000000000000000000012323254361015744 5ustar 00000000000000maas-1.5+bzr2252.orig/docs/enum.rst0000644000000000000000000000073512323254361015125 0ustar 00000000000000========== MAAS Enums ========== .. This only lists the enums that are relevant to outside users, e.g. people writing client applications using MAAS's web API. .. autoclass:: maasserver.enum.NODE_STATUS :members: .. autoclass:: maasserver.enum.NODEGROUP_STATUS :members: .. autoclass:: maasserver.enum.NODEGROUPINTERFACE_MANAGEMENT :members: .. autoclass:: maasserver.enum.NODE_STATUS :members: .. autoclass:: maasserver.enum.DISTRO_SERIES :members: maas-1.5+bzr2252.orig/docs/getting-help.rst0000644000000000000000000000367612323254361016557 0ustar 00000000000000************ Getting help ************ Where to get help ----------------- The two channels you can use to get help debugging a MAAS issue are: - The `Ask Ubuntu`_ website. - The `Freenode #maas`_ IRC channel. .. _Ask Ubuntu: http://askubuntu.com/questions/ask?tags=maas .. _Freenode #maas: http://webchat.freenode.net/?channels=maas Gathering debugging information ------------------------------- If your question is related to a problem related to a specific MAAS installation, we encourage you to gather debugging information and make it available before you head over to Ask Ubuntu or the IRC channel. This way, you'll have all the required information handy for people who can help you. Gathering debugging information is a fully automated process that is performed with the help of `sosreport`_. If your MAAS server is running Ubuntu version 14.04 (Trusty Tahr) or later, you can get sosreport from the official archives:: # Install sosreport. sudo apt-get install -y sosreport # Create the report. sudo sosreport -o maas Alternatively, if your MAAS server is running a previous Ubuntu release, you'll need to install sosreport manually:: # Install git. sudo apt-get install -y git # Get the latest version of sosreport. git clone https://github.com/sosreport/sosreport.git /tmp/sosreport # Create the report. sudo /tmp/sosreport/sosreport -o maas .. _sosreport: https://github.com/sosreport/sosreport This will create a tarball containing MAAS' log files, MAAS' configuration files and a dump of MAAS' database. By default, the tarball will end up in /tmp but you can change the location, see sosreport's manpage for details. If there are things you do not wish to share publicly, feel free to edit the tarball. Now, the last step is to make this file available by any means at your disposal (openly accessible FTP server, Ubuntu One, Dropbox, etc.) in order for the people who will help you to be able to get their hands on it. maas-1.5+bzr2252.orig/docs/hacking.rst0000755000000000000000000000000012323254361017571 2../HACKING.txtustar 00000000000000maas-1.5+bzr2252.orig/docs/hardware-enablement-kernels.rst0000644000000000000000000000642512323254361021531 0ustar 00000000000000.. -*- mode: rst -*- .. _hardware-enablement-kernels: ================================= Using hardware-enablement kernels ================================= .. note:: This feature is available in MAAS versions 1.5 and above. MAAS allows you to use hardware enablement kernels when booting nodes that require them. What are hardware-enablement kernels? ------------------------------------- Brand new hardware gets released all the time. We want that hardware to work well wih Ubuntu and MAAS, even if it was released after the latest release of MAAS or Ubuntu. Hardware Enablement (HWE) is all about making keeping pace with the new hardware. Ubuntu's solution to this is to offer newer kernels for older releases. There are at least two kernels on offer for Ubuntu releases: the "generic" kernel -- i.e. the kernel released with the current series -- and the Hardware Enablement kernel, which is the most recent kernel release. There are separate HWE kernels for each release of Ubuntu, referred to as ``hwe-``. So, the 14.04 / Trusty Tahr HWE kernel is called ``hwe-t``, the 12.10 / Quantal Quetzal HWE kernel is called ``hwe-q`` and so on. This allows you to use newer kernels with older releases, for example running Precise with a Saucy (hwe-s) kernel. For more information see the `LTS Enablement Stack`_ page on the Ubuntu wiki. .. _LTS Enablement Stack: https://wiki.ubuntu.com/Kernel/LTSEnablementStack Importing hardware-enablement kernels ------------------------------------- Hardware-enablement kernels need to be imported to a cluster controller before that cluster's nodes can use them. In order to import HWE kernels to a cluster controller you need to edit the controller's ``/etc/maas/bootresources.yaml`` file, and update the subarches that you want to import, like this:: boot: storage: "/var/lib/maas/boot-resources/" sources: - path: "http://maas.ubuntu.com/images/ephemeral-v2/releases/" keyring: "/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg" selections: - release: "precise" arches: ["i386", "amd64"] subarches: ["generic", "hwe-q", "hwe-r", "hwe-s", "hwe-t"] labels: ["release"] Once you've updated ``bootresources.yaml``, you can tell the cluster to re-import its boot images using the ``maas`` command (You will need to :ref:`be logged in to the API first `):: $ maas node-group import-boot-images \ You can also tell the cluster controller to re-import its boot images by clicking the ``Import boot images`` button in the ``Clusters`` page of the MAAS web UI. Using hardware-enablement kernels in MAAS ----------------------------------------- A MAAS administrator can choose to use HWE kernels on a per-node basis in MAAS. The quickest way to do this is using the MAAS command, like this:: $ maas node update architecture=amd64/hwe-t If you specify an architecture that doesn't exist (e.g. ``amd64/hwe-z``), the ``maas`` command will return an error. It's also possible to use HWE kernels from the MAAS web UI, by visiting the Node's page and clicking ``Edit node``. Under the Architecture field, you will be able to select any HWE kernels that have been imported onto that node's cluster controller. maas-1.5+bzr2252.orig/docs/index.rst0000644000000000000000000000531012323254361015262 0ustar 00000000000000.. MAAS documentation master file ######################## MAAS: Metal As A Service ######################## This is the documentation for the `MAAS project`_. Metal as a Service -- MAAS -- lets you treat physical servers like virtual machines in the cloud. Rather than having to manage each server individually, MAAS turns your bare metal into an elastic cloud-like resource. What does that mean in practice? Tell MAAS about the machines you want it to manage and it will boot them, check the hardware's okay, and have them waiting for when you need them. You can then pull nodes up, tear them down and redeploy them at will; just as you can with virtual machines in the cloud. When you're ready to deploy a service, MAAS gives `Juju`_ the nodes it needs to power that service. It's as simple as that: no need to manually provision, check and, afterwards, clean-up. As your needs change, you can easily scale services up or down. Need more power for your Hadoop cluster for a few hours? Simply tear down one of your Nova compute nodes and redeploy it to Hadoop. When you're done, it's just as easy to give the node back to Nova. .. _MAAS project: http://maas.ubuntu.com .. _Juju: https://juju.ubuntu.com/ MAAS is ideal where you want the flexibility of the cloud, and the hassle-free power of Juju charms, but you need to deploy to bare metal. ************ Introduction ************ .. toctree:: :maxdepth: 2 about orientation changelog ************************ Setting up a MAAS server ************************ .. toctree:: :maxdepth: 2 install configure cluster-configuration nodes hardware-enablement-kernels networks kernel-options installing-ubuntu ****************** Deploying services ****************** .. toctree:: :maxdepth: 2 juju-quick-start tags physical-zones *********************** API / CLI Documentation *********************** .. toctree:: :maxdepth: 2 api maascli capabilities *************** Troubleshooting *************** .. toctree:: :maxdepth: 2 getting-help troubleshooting ****************** Command-line Tools ****************** .. toctree:: :maxdepth: 1 man/maas-region-admin.8 man/maas.8 man/maas-import-pxe-files.8 *************** Developing MAAS *************** .. toctree:: :maxdepth: 2 development/philosophy hacking models enum development/security development/building-packages development/cluster-registration development/tagging development/lease-scanning-and-dns development/preseeds development/metadata development/rpc ****************** Indices and tables ****************** .. toctree:: :maxdepth: 2 * :ref:`genindex` * :ref:`modindex` * :ref:`search` maas-1.5+bzr2252.orig/docs/install.rst0000755000000000000000000000000012323254361017675 2../INSTALL.txtustar 00000000000000maas-1.5+bzr2252.orig/docs/installing-ubuntu.rst0000644000000000000000000000614212323254361017643 0ustar 00000000000000===================================== Installing Ubuntu and deploying nodes ===================================== Once a node has been accepted into MAAS and is ready for use, users can deploy services to that node. Prior to deployment, MAAS is responsible for: 1. Powering up the node. 2. Installing Ubuntu on the node. 3. Installing the user's SSH keys on the node. Once these steps have been completed, the node is ready to have services deployed to it, either manually or by using a tool like Juju_. There are two ways to install Ubuntu on a node: 1. :ref:`The default installer `. 2. :ref:`The fast installer `. .. _Juju: http://juju.ubuntu.com .. _default-installer: The default installer ---------------------- The default installer installs Ubuntu on a node in exactly the same way as you would install it manually: using the `Debian Installer`_. Installation is handled by the Debian installer. Answers to the questions asked by the installer are provided in a 'preseed' file. For more information on preseed files, see the :ref:`Additional Configuration ` page. As the name suggests, the default installer is enabled by default for all new nodes. To enable the default installer for a node that's been configured to use the fast installer, visit the node's page as an administrator and click the ``Use the default installer`` button. .. image:: media/node-page-use-default-installer.png To set multiple nodes to use the default installer, select the ``Mark nodes as using the default installer`` option from the bulk action menu on the ``Nodes`` page in the MAAS web UI. Because it installs Ubuntu from scratch, downloading packages as required, the default installer is slower than the :ref:`fast installer `. .. _Debian Installer: http://www.debian.org/devel/debian-installer/ .. _fast-installer: The fast installer ------------------ The fast installer is, as the name suggests, a means of installing Ubuntu on a node more quickly than would be possible using the :ref:`default installer `. To enable the fast installer for a node, visit the node's page as an administrator and click the ``Use the fast installer`` button. .. image:: media/node-page-use-fast-installer.png To set multiple nodes to use the fast installer, select the ``Mark nodes as using the fase installer`` option from the bulk action menu on the ``Nodes`` page in the MAAS web UI. The fast installer copies a pre-built Ubuntu image to the node, with all the packages installed that would be normally found in an Ubuntu installation. The fast installer is much quicker than the default installer, but has the disadvantage that it's less easy to configure a node at install time, since the fast installer doesn't use a :ref:`preseed file `. In addition, the packages that are initially installed on a fast-installed node need updating manually, since they are part of the installation image and not downloaded fresh from an apt repository. For more information about the fast installer, see the `curtin project`_ on Launchpad. .. _curtin project: https://launchpad.net/curtin maas-1.5+bzr2252.orig/docs/juju-quick-start.rst0000644000000000000000000001031512323254361017376 0ustar 00000000000000Juju Quick Start ================ These instructions will help you deploy your first charm with Juju to a MAAS cluster. In the following, we assume that you have a MAAS cluster set-up with at least 2 nodes enlisted with it. Your API key, SSH key, and environments.yaml -------------------------------------------- You'll need an API key from MAAS so that the Juju client can access it. Each user account in MAAS can have as many API keys as desired. One hard and fast rule is that you'll need to use a different API key for each Juju *environment* you set up within a single MAAS cluster. There is no need to explicitly add an SSH key to MAAS when using Juju; it will automatically put your public key on any hosts that it starts up. **Note**: You do not need to use the MAAS web UI or API to allocate a node to yourself, Juju will do this for you. Getting a key ^^^^^^^^^^^^^ To get the API key: #. Go to your MAAS preferences page (go to your MAAS home page ``http://${my-maas-server}:80/MAAS/`` and choose *Preferences* from the drop-down menu that appears when clicking your username at the top-right of the page). #. Optionally add a new MAAS key. Do this if you're setting up another environment within the same MAAS cluster. The ``${my-maas-server}`` slot should be replaced with the hostname of your MAAS server. Adding an SSH key ^^^^^^^^^^^^^^^^^ While you're still on the MAAS preferences page, add your SSH key by clicking *Add SSH key*. Use the public half of your SSH key, the content of ``~/.ssh/id_rsa.pub`` for example; don't paste the private half. Creating environments.yaml ^^^^^^^^^^^^^^^^^^^^^^^^^^ Create or modify ``~/.juju/environments.yaml`` with the following content:: environments: maas: type: maas maas-server: 'http://${my-maas-server}:80/MAAS' maas-oauth: '${maas-api-key}' admin-secret: ${your-admin-secret} default-series: precise Substitute the API key from earlier into the ``${maas-api-key}`` slot, and the hostname of your MAAS server into the ``${my-maas-server}`` slot. The ``${your-admin-secret}`` slot should be replaced with a random pass-phrase, there is no default. Now Juju -------- If juju-core is not yet installed on the client machine, run:: $ sudo apt-get install juju-core Now, use juju to display the status of the default environment:: $ juju status As you've not bootstrapped you ought to see:: error: Unable to connect to environment "". Please check your credentials or use 'juju bootstrap' to create a new environment. **Note**: if Juju complains that there are multiple environments and no explicit default, add ``-e ${environment-name}`` after each command, e.g.:: $ juju status -e maas Bootstrap:: $ juju --sync-tools $ juju bootstrap If bootstrapping on a version of juju older than 1.14.0 then use:: $ juju bootstrap --upload-tools This will return quickly, but the master node may take a *long* time to come up. It has to completely install Ubuntu and Juju on it and reboot before it'll be available for use. It's probably worth either trying a ``juju status`` once in a while to check on progress, or following the install on the node directly. **Beware** of `bug 413415`_ - *console-setup hangs under chroot debootstrap with a console login on ttyX* - when monitoring an installation on the node. .. _bug 413415: https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/413415 Once the boostrap node has been installed a status command should come up with something a bit more interesting:: environment: maas machines: "0": agent-state: started agent-version: 1.13.3.1 dns-name: kmhwd.master instance-id: /MAAS/api/1.0/nodes/node-5c5b713a-1afc-11e3-9904-525400123456/ series: precise services: {} Now it's possible to deploy a charm:: $ juju deploy mysql $ juju status If you have another node free you can finish off the canonical and by now familiar example:: $ juju deploy wordpress $ juju add-relation wordpress mysql $ juju expose wordpress $ juju status Note that each charm runs on its own host, so each deployment will actually take as long as it took to bootstrap. Have a beer, drown your sorrows in liquor, or, my preference, have another cup of tea. maas-1.5+bzr2252.orig/docs/kernel-options.rst0000644000000000000000000000230412323254361017124 0ustar 00000000000000=========================== Setting kernel boot options =========================== MAAS is able to send specific kernel options to booting nodes on both a global basis and a per-node basis. Global kernel options --------------------- As an admin, click on the gear icon at the top right and scroll down to the Global Kernel Parameters section, as shown here: .. image:: media/global_kernel_opts.png Whatever you set here is sent as-is to all booting nodes. Per-node kernel options ----------------------- Per-node kernel options are set using tags. The easiest way of doing this is to use the ``maas`` command. You will need to :ref:`be logged in to the API first ` and then you can add a tag which has its ``kernel_opts`` value set, like this:: $ maas maas tags new name='nomodeset' \ comment='nomodeset kernel option' kernel_opts='nomodeset vga' Once the tag is defined, you can add it to a node or nodes:: $ maas maas tag update-nodes nomodeset add= \ add= .. note:: Any per-node kernel options set will completely override the global options. If multiple tags attached to a node have the kernel_opts defined, the first one ordered by name is used. maas-1.5+bzr2252.orig/docs/maascli.rst0000644000000000000000000004161612323254361015575 0ustar 00000000000000.. _cli: ---------------------- Command Line Interface ---------------------- As well as the web interface, many tasks can be performed by accessing the MAAS API directly through the `maas` command. This section details how to log in with this tool and perform some common operations. .. _api-key: Logging in ---------- Before the API will accept any commands from maas, you must first log in. To do this, you need an API key for your MAAS account. A key was generated for you as soon as your account was created, although you can still generate additional keys if you prefer. The key can be found in the web user interface, or if you have root privileges on the region controller, retrieved from the command line. To obtain the key from the web user interface, log in and click on your user name in the top right corner of the page, and select 'Preferences' from the menu which appears. .. image:: media/maascli-prefs.* A new page will load... .. image:: media/maascli-key.* Your MAAS API keys appear at the top of the preferences form. It's easiest to just select and copy the key (it's quite long!) and then paste it into the command line. To obtain the key through the command line, run this command on the region controller:: $ maas-region-admin apikey my-username (Substitute your MAAS user name for my-username). Once you have your API key, log in with:: $ maas login This command logs you in, and creates a "profile" with the profile name you have selected. The profile is an easy way of storing the server URL and your login credentials, and re-using them across command-line invocations. Think of the profile as a persistent session. You can have multiple profiles open at the same time, and so as part of the login command, you assign a unique name to the new profile. Later invocations of the maas command line will refer to the profile by this name. For example, you might log in with a command line like:: $ maas login my-maas http://10.98.0.13/MAAS/api/1.0 AWSCRMzqMNy:jjk...5e1FenoP82Qm5te2 This creates the profile 'my-maas' and registers it with the given key at the specified API endpoint URL. If you omit the API key, the command will prompt you for it in the console. It is also possible to use a hyphen, '-' in place of the API key. In this case the command will read the API key from standard input, as a single line, ignoring whitespace. This mode of input can be useful if you want to read the API key from a file, or if you wish to avoid including the API key in a command line where it may be observed by other users on the system. Specifying an empty string instead of an API key will make the profile act as an anonymous user. Some calls in the API are accessible without logging in, but most of them are not. maas commands ------------- The ``maas`` command exposes the whole API, so you can do anything you actually *can* do with MAAS using this command. Unsurprisingly, this leaves us with a vast number of options, but before we delve into detail on the specifics, here is a sort of 'cheat-sheet' for common tasks you might want to do using ``maas``. * :ref:`Configure DHCP and DNS services ` * :ref:`Commission all enlisted nodes ` * :ref:`Setting IPMI power parameters for a node ` The main maas commands are: .. program:: maas :samp:`list` lists the details [name url auth-key] of all the currently logged-in profiles. :samp:`login ` Logs in to the MAAS controller API at the given URL, using the key provided and associates this connection with the given profile name. :samp:`logout ` Logs out from the given profile, flushing the stored credentials. :samp:`refresh` Refreshes the API descriptions of all the current logged in profiles. This may become necessary for example when upgrading the maas packages to ensure the command-line options match with the API. :samp:` [command] [options] ...` Using the given profile name instructs ``maas`` to direct the subsequent commands and options to the relevant MAAS, which for the current API are detailed below... account ^^^^^^^ This command is used for creating and destroying the MAAS authorisation tokens associated with a profile. Usage: maas ** account [-d --debug] [-h --help] create-authorisation-token | delete-authorisation-token [token_key=\ **] .. program:: maas account :samp:`-d, --debug` Displays debug information listing the API responses. :samp:`-h, --help` Display usage information. :samp:`-k, --insecure` Disables the SSL certificate check. :samp:`create-authorisation-token` Creates a new MAAS authorisation token for the current profile which can be used to authenticate connections to the API. :samp:`delete-authorisation-token token_key=` Removes the given key from the list of authorisation tokens. .. boot-images - not useful in user context .. ^^^^^^^^^^^ .. files - not useful in user context .. ^^^^^ node ^^^^ API calls which operate on individual nodes. With these commands, the node is always identified by its "system_id" property - a unique tag allocated at the time of enlistment. To discover the value of the system_id, you can use the ``maas nodes list`` command. USAGE: maas node [-h] release | start | stop | delete | read | update .. program:: maas node :samp:`-h, --help` Display usage information. :samp:`release ` Releases the node given by ** :samp:`start ` Powers up the node identified by ** (where MAAS has information for power management for this node). :samp:`stop ` Powers off the node identified by ** (where MAAS has information for power management for this node). :samp:`delete ` Removes the given node from the MAAS database. :samp:`read ` Returns all the current known information about the node specified by ** :samp:`update [parameters...]` Used to change or set specific values for the node. The valid parameters are listed below:: hostname= The new hostname for this node. architecture= Sets the architecture type, where is a string containing a valid architecture type, e.g. "i386/generic" distro_series= Sets the distro series of Ubuntu to use (e.g. "precise"). power_type= Set the given power type on the node. (e.g. "ipmi") power_parameters_{param1}... = Set the given power parameters. Note that the valid options for these depend on the power type chosen. power_parameters_skip_check 'true' | 'false' Whether to sanity check the supplied parameters against this node's declared power type. The default is 'false'. .. _cli-power: Example: Setting the power parameters for an ipmi enabled node:: maas maas node update \ power_type="ipmi" \ power_parameters_power_address=192.168.22.33 \ power_parameters_power_user=root \ power_parameters_power_pass=ubuntu; nodes ^^^^^ Usage: maas nodes [-h] is-registered | list-allocated | acquire | list | accept | accept-all | new | check-commissioning .. program:: maas nodes :samp:`-h, --help` Display usage information. :samp:`accept ` Accepts the node referenced by . :samp:`accept-all` Accepts all currently discovered but not previously accepted nodes. :samp:`acquire` Allocates a node to the profile used to issue the command. Any ready node may be allocated. :samp:`is-registered mac_address=
` Checks to see whether the specified MAC address is registered to a node. :samp:`list` Returns a JSON formatted object listing all the currently known nodes, their system_id, status and other details. :samp:`list-allocated` Returns a JSON formatted object listing all the currently allocated nodes, their system_id, status and other details. :samp:`new architecture= mac_addresses= [parameters]` Creates a new node entry given the provided key=value information for the node. A minimum of the MAC address and architecture must be provided. Other parameters may also be supplied:: architecture="" - The architecture of the node, must be one of the recognised architecture strings (e.g. "i386/generic") hostname="" - a name for this node. If not supplied a name will be generated. mac_addresses="" - The mac address(es) allocated to this node. power_type="" - the power type of the node (e.g. virsh, ipmi) :samp:`check-commissioning` Displays current status of nodes in the commissioning phase. Any that have not returned before the system timeout value are listed as "failed". .. _cli-commission: Examples: Accept and commission all discovered nodes:: $ maas maas nodes accept-all List all known nodes:: $ maas maas nodes list Filter the list using specific key/value pairs:: $ maas maas nodes list architecture="i386/generic" node-groups ^^^^^^^^^^^ Usage: maas node-groups [-d --debug] [-h --help] [-k --insecure] register | list | refresh-workers | accept | reject .. program:: maas node-groups :samp:`-d, --debug` Displays debug information listing the API responses. :samp:`-h, --help` Display usage information. :samp:`-k, --insecure` Disables the SSL certificate check. :samp:`register uuid= name= interfaces=` Registers a new node group with the given name and uuid. The interfaces parameter must be supplied in the form of a JSON string comprising the key/value data for the interface to be used, for example: interface='["ip":"192.168.21.5","interface":"eth1", \ "subnet_mask":"255.255.255.0","broadcast_ip":"192.168.21.255", \ "router_ip":"192.168.21.1", "ip_range_low":"192.168.21.10", \ "ip_range_high":"192.168.21.50"}]' :samp:`list` Returns a JSON list of all currently defined node groups. :samp:`refresh_workers` It sounds a bit like they will get a cup of tea and a biscuit. Actually this just sends each node-group worker an update of its credentials (API key, node-group name). This command is usually not needed at a user level, but is often used by worker nodes. :samp:`accept ` Accepts a node-group or number of nodegroups indicated by the supplied UUID :samp:`reject ` Rejects a node-group or number of nodegroups indicated by the supplied UUID node-group-interface ^^^^^^^^^^^^^^^^^^^^ For managing the interfaces. See also :ref:`node-group-interfaces` Usage: maas ** node-group-interfaces [-d --debug] [-h --help] [-k --insecure] read | update | delete [parameters...] ..program:: maas node-group-interface :samp:`read ` Returns the current settings for the given UUID and interface :samp:`update [parameters]` Changes the settings for the interface according to the given parameters:: management= 0 | 1 | 2 The service to be managed on the interface ( 0= none, 1=DHCP, 2=DHCP and DNS). subnet_mask= Apply the given dotted decimal value as the subnet mask. broadcast_ip= Apply the given dotted decimal value as the broadcast IP address for this subnet. router_ip= Apply the given dotted decimal value as the default router address for this subnet. ip_range_low= The lowest value of IP address to allocate via DHCP ip_range_high= The highest value of IP address to allocate via DHCP :samp:`delete ` Removes the entry for the given UUID and interface. .. _cli-dhcp: Example: Configuring DHCP and DNS. To enable MAAS to manage DHCP and DNS, it needs to be supplied with the relevant interface information. To do this we need to first determine the UUID of the node group affected:: $ uuid=$(maas node-groups list | grep uuid | cut -d\" -f4) Once we have the UUID we can use this to update the node-group-interface for that nodegroup, and pass it the relevant interface details:: $ maas node-group-interface update $uuid eth0 \ ip_range_high=192.168.123.200 \ ip_range_low=192.168.123.100 \ management=2 \ broadcast_ip=192.168.123.255 \ router_ip=192.168.123.1 \ Replacing the example values with those required for this network. The only non-obvious parameter is 'management' which takes the values 0 (no management), 1 (manage DHCP) and 2 (manage DHCP and DNS). .. _node-group-interfaces: node-group-interfaces ^^^^^^^^^^^^^^^^^^^^^ The node-group-interfaces commands are used for configuring the management of DHCP and DNS services where these are managed by MAAS. Usage: maas ** node-group-interfaces [-d --debug] [-h --help] [-k --insecure] list | new [parameters...] .. program:: maas node-group-interfaces :samp:`-d, --debug` Displays debug information listing the API responses. :samp:`-h, --help` Display usage information. :samp:`-k, --insecure` Disables the SSL certificate check. :samp:`list MAAS logo

MAAS

Metal As A Service.



{% endblock %} {%- block footer %}
{%- endblock %} maas-1.5+bzr2252.orig/docs/_templates/maas/localtoc.html0000644000000000000000000000005712323254361021170 0ustar 00000000000000{%- if display_toc %} {{ toc }} {%- endif %} maas-1.5+bzr2252.orig/docs/_templates/maas/relations.html0000755000000000000000000000163412323254361021375 0ustar 00000000000000

Related Topics

maas-1.5+bzr2252.orig/docs/_templates/maas/static/0000755000000000000000000000000012323254361017767 5ustar 00000000000000maas-1.5+bzr2252.orig/docs/_templates/maas/theme.conf0000755000000000000000000000015012323254361020450 0ustar 00000000000000[theme] inherit = basic stylesheet = flasky.css headfont = Ubuntu bodyfont = free-sans,sans,sans-serif maas-1.5+bzr2252.orig/docs/_templates/maas/static/css/0000755000000000000000000000000012323254361020557 5ustar 00000000000000maas-1.5+bzr2252.orig/docs/_templates/maas/static/flasky.css_t0000755000000000000000000002070312323254361022322 0ustar 00000000000000/* * flasky.css_t * ~~~~~~~~~~~~ * * :copyright: Copyright 2010 by Armin Ronacher. Modifications by Kenneth Reitz. * :license: Flask Design License, see LICENSE for details. */ {% set page_width = '940px' %} {% set sidebar_width = '220px' %} @import url("basic.css"); /* -- page layout ----------------------------------------------------------- */ body { font-family: "Georgia", "Open Sans", OpenSansRegular, sans-serif; font-size: 16px; background: #fff; font-weight: 400; color: #000; margin: 0; padding: 0; } div.document { width: {{ page_width }}; margin: 30px auto 0 auto; } div.documentwrapper { float: left; width: 100%; } div.bodywrapper { margin: 0 0 0 {{ sidebar_width }}; } div.sphinxsidebar { width: {{ sidebar_width }}; } hr { border: 1px solid #B1B4B6; } div.body { background-color: white; color: #3E4349; padding: 0 30px 0 30px; } img.floatingflask { padding: 0 0 10px 10px; float: right; } div.footer { width: {{ page_width }}; margin: 20px auto 30px auto; font-size: 14px; color: #888; text-align: right; } div.footer a { color: #888; } div.related { display: none; } div.sphinxsidebar a { color: #444; text-decoration: none; border-bottom: 1px dotted #999; } div.sphinxsidebar a:hover { border-bottom: 1px solid #999; } div.sphinxsidebar { font-size: 14px; line-height: 1.5; } div.sphinxsidebarwrapper { padding: 18px 10px; } div.sphinxsidebarwrapper p.logo { padding: 0; margin: -10px 0 0 -20px; text-align: center; } div.sphinxsidebar h3, div.sphinxsidebar h4 { font-family: 'Antic Slab' ,'Garamond', 'Georgia', serif; color: #000; font-size: 24px; font-weight: normal; margin: 30px 0 5px 0; padding: 0; } div.sphinxsidebar h4 { font-size: 20px; } div.sphinxsidebar h3 a { color: #000; } div.sphinxsidebar p.logo a, div.sphinxsidebar h3 a, div.sphinxsidebar p.logo a:hover, div.sphinxsidebar h3 a:hover { border: none; } div.sphinxsidebar p { color: #555; margin: 10px 0; } div.sphinxsidebar ul { margin: 10px 0px; padding: 0; color: #000; } div.sphinxsidebar input { border: 1px solid #ccc; font-family: 'Georgia', serif; font-size: 1em; } /* -- body styles ----------------------------------------------------------- */ a { color: #004B6B; text-decoration: underline; } a:hover { color: #6D4100; text-decoration: underline; } div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 { font-family: 'Antic Slab', serif; font-weight: normal; margin: 30px 0px 10px 0px; padding: 0; text-shadow: 1px 1px 3px #ddd; color: #000; } div.body h1 { margin-top: 0; padding-top: 0; font-size: 250%; } div.body h2 { font-size: 190%; } div.body h3 { font-size: 160%; } div.body h4 { font-size: 140%; } div.body h5 { font-size: 110%; } div.body h6 { font-size: 110%; } a.headerlink { color: #ddd; padding: 0 4px; text-decoration: none; } a.headerlink:hover { color: #444; background: #eaeaea; } div.body p, div.body dd, div.body li { line-height: 1.4em; } div.admonition { background: #fafafa; margin: 20px -30px; padding: 10px 30px; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; } div.admonition tt.xref, div.admonition a tt { border-bottom: 1px solid #fafafa; } dd div.admonition { margin-left: -60px; padding-left: 60px; } div.admonition p.admonition-title { font-family: 'Garamond', 'Georgia', serif; font-weight: normal; font-size: 24px; margin: 0 0 10px 0; padding: 0; line-height: 1; } div.admonition p.last { margin-bottom: 0; } div.highlight { background-color: white; } dt:target, .highlight { background: #FAF3E8; } div.note { background-color: #eee; border: 1px solid #ccc; } div.seealso { background-color: #ffc; border: 1px solid #ff6; } div.topic { background-color: #eee; } p.admonition-title { display: inline; } p.admonition-title:after { content: ":"; } pre { font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; font-size: 0.88em; } tt { font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; font-size: 0.95em; } img.screenshot { } tt.descname, tt.descclassname { font-size: 0.95em; } tt.descname { padding-right: 0.08em; } img.screenshot { -moz-box-shadow: 2px 2px 4px #eee; -webkit-box-shadow: 2px 2px 4px #eee; box-shadow: 2px 2px 4px #eee; } table.docutils { border: 1px solid #888; -moz-box-shadow: 2px 2px 4px #eee; -webkit-box-shadow: 2px 2px 4px #eee; box-shadow: 2px 2px 4px #eee; } table.docutils td, table.docutils th { border: 1px solid #888; padding: 0.25em 0.7em; } table.field-list, table.footnote { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } table.footnote { margin: 15px 0; width: 100%; border: 1px solid #eee; background: #fdfdfd; font-size: 0.9em; } table.footnote + table.footnote { margin-top: -15px; border-top: none; } table.field-list th { padding: 0 0.8em 0 0; } table.field-list td { padding: 0; } table.footnote td.label { width: 0px; padding: 0.3em 0 0.3em 0.5em; } table.footnote td { padding: 0.3em 0.5em; } dl { margin: 0; padding: 0; } dl dd { margin-left: 30px; } blockquote { margin: 0 0 0 30px; padding: 0; } ul, ol { margin: 10px 0 10px 30px; padding: 0; } pre { background: #eee; padding: 7px 30px; margin: 15px -30px; line-height: 1.3em; } dl pre, blockquote pre, li pre { margin-left: 0px; padding-left: 15px; } dl dl pre { margin-left: 0px; padding-left: 15px; } tt { background-color: #ecf0f3; color: #222; /* padding: 1px 2px; */ } tt.xref, a tt { background-color: #FBFBFB; color: #2277bb; border-bottom: 1px solid white; } a.reference { text-decoration: none; border-bottom: 1px dotted #004B6B; } a.reference:hover { border-bottom: 1px solid #6D4100; } a.footnote-reference { text-decoration: none; font-size: 0.7em; vertical-align: top; border-bottom: 1px dotted #004B6B; } a.footnote-reference:hover { border-bottom: 1px solid #6D4100; } a:hover tt { background: #EEE; } li { margin-bottom: 0.3em; } @media screen and (max-width: 870px) { div.sphinxsidebar { display: none; } div.document { width: 100%; } div.documentwrapper { margin-left: 0; margin-top: 0; margin-right: 0; margin-bottom: 0; } div.bodywrapper { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; } ul { margin-left: 0; } .document { width: auto; } .footer { width: auto; } .bodywrapper { margin: 0; } .footer { width: auto; } .github { display: none; } } @media screen and (max-width: 875px) { body { margin: 0; padding: 20px 30px; } div.documentwrapper { float: none; background: white; } div.sphinxsidebar { display: block; float: none; width: 102.5%; margin: 50px -30px -20px -30px; padding: 10px 20px; background: #333; color: white; } div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, div.sphinxsidebar h3 a { color: white; } div.sphinxsidebar a { color: #aaa; } div.sphinxsidebar p.logo { display: none; } div.document { width: 100%; margin: 0; } div.related { display: block; margin: 0; padding: 10px 0 20px 0; } div.related ul, div.related ul li { margin: 0; padding: 0; } div.footer { display: none; } div.bodywrapper { margin: 0; } div.body { min-height: 0; padding: 0; } .rtd_doc_footer { display: none; } .document { width: auto; } .footer { width: auto; } .footer { width: auto; } .github { display: none; } } /* misc. */ .revsys-inline { display: none!important; } div.sphinxsidebar #searchbox input[type="text"] { width: 140px; padding: 4px 3px; } .highlight .nv { color: #C65D09!important; } maas-1.5+bzr2252.orig/docs/_templates/maas/static/css/main.css0000644000000000000000000000237612323254361022225 0ustar 00000000000000pre { background-color:#EEEEEE; background-position:initial initial; background-repeat:initial initial; line-height:1.3em; margin:15px 0px; padding:7px 30px; } div.document { width: 984px; margin: 30px auto 0 auto; } div.body h1 { margin-top: 20px; padding-top: 0; font-size: 250%; } .bodywrapper ul ul { margin-top: .4em; margin-bottom: .4em; } div.sphinxsidebar ul ul { margin-top: .4em; margin-bottom: .4em; } body { padding-top: 0px; } div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6, div.admonition p.admonition-title { font-family: Ubuntu,Arial,"libra sans",sans-serif; } div.admonition { margin: 20px 0px; color: #3E4349; } div.admonition p.admonition-title { font-size: 20px; } .document { -moz-box-sizing: border-box; background: none repeat scroll 0 0 #FFFFFF; border-radius: 4px; box-shadow: 0 0 3px #C9C9C9; } div.sphinxsidebarwrapper { padding: 18px 10px 18px 20px; } form input[type="text"] { display: inline; } div.sphinxsidebar #searchbox input[type="text"] { width: 110px; padding: 4px 3px; } div.sphinxsidebar #searchbox input[type="submit"] { width: 40px; } a:active, a:focus, a:hover { text-decoration: none; border-bottom: 1px solid #6D4100; } maas-1.5+bzr2252.orig/docs/development/building-packages.rst0000644000000000000000000000444612323254361022057 0ustar 00000000000000Building Ubuntu packages of MAAS ================================ Using a virtual machine from a cloud provider seems to be easier and less hassle than using a local VM or LXC container, but the same recipe ought to apply. You need to build on the same OS that the package will be targeted to, so use a Precise instance to make packages for Precise, for example. #. Start up an instance, log in, and bring it up to date:: sudo apt-get update && sudo apt-get upgrade #. Get the appropriate packaging branch:: bzr branch lp:~maas-maintainers/maas/packaging{...} The `MAAS Maintainers `_ own all the `official MAAS branches`_. #. Move into the new branch directory. #. Check that all the build dependencies are installed. The dependencies are defined in ``debian/control``:: fgrep -i build-depends -A 10 debian/control This will yield, for example:: Build-Depends: debhelper (>= 8.1.0~), dh-apport, po-debconf, python (>= 2.7), python-distribute, python-django Standards-Version: 3.9.3 ... Install these dependencies:: sudo apt get install \ debhelper dh-apport po-debconf python \ python-distribute python-django #. Edit ``debian/changelog`` so it contains: * the right upstream revision number in the version, * the series you're building for; if ``UNRELEASED`` appears in the first entry, ``s/UNRELEASED/trusty/`` (or the series you want), * the name and email address that correspond to the PGP key you want to use to sign the package; these appear near the end of the topmost entry. #. Build:: bzr bd -S -- -uc -us The latter options tell it not to sign the files. You need to do this because the remote machine will not have your GPG key. #. Sign the build on your local machine:: debsign -r user@host '~/*.changes' where ``user@host`` is an SSH string for accessing the remote instance. This will scp the changes and dsc locally, sign them, and put them back. #. On the remote instance you can optionally upload to a PPA:: dput -fu ppa:maas-maintainers/name-of-ppa *.changes .. _official MAAS branches: https://code.launchpad.net/~maas-maintainers maas-1.5+bzr2252.orig/docs/development/cluster-registration.rst0000644000000000000000000000561512323254361022676 0ustar 00000000000000====================================== How cluster registration works in MAAS ====================================== A region controller associates with one or more cluster controllers, each of which is responsible for contacting the region controller itself and announcing its presence. An admin must accept or reject each cluster that registers itself with the region controller, except in the special circumstance mentioned in :ref:`first-cluster`. There is always at least one cluster controller in MAAS (known as a NodeGroup in the code) which is known as the 'master'. The Nodegroup entry always exists even if no cluster controllers have contacted the region controller yet, so that it can be used as a default when adding nodes in the API or UI before the cluster controller is defined. Once a real cluster controller connects it will become this master. This logic was originally implemented as an easy way to upgrade older installations that were created before nodegroups were introduced. Region Controller Location -------------------------- The cluster obviously needs to know where the region controller is, and this is configured in a file ``/etc/maas/maas_cluster.conf`` (or ``etc/demo_maas_cluster.conf`` for development environments). Cluster configuration file -------------------------- This config file generally contains two items like this:: MAAS_URL=http://0.0.0.0:5240/ CLUSTER_UUID="adfd3977-f251-4f2c-8d61-745dbd690bf2" The values here are the defaults in the development environment. MAAS_URL tells the cluster controller where to find the region controller, and is sourced as a shell script by ``services/cluster-worker/run``. ``CLUSTER_UUID`` is what the region uses to tell clusters apart when they connect. Each cluster is free to generate its own UUID but the development environment fixes it in advance. The Ubuntu packaging generates a new UUID for a cluster controller each time it is installed. .. warning:: The format of this config file is very sensitive due to the code that parses it. It will not accept quoting, or any kind of comments. .. _first-cluster: First cluster to connect ------------------------ For the convenience of small setups (and the development environment), the first cluster controller to connect to the region controller becomes the 'master' nodegroup, and if the cluster connects *from the same host*, it is automatically accepted. The logic currently looks like this: #. If there is one, the oldest nodegroup is the master. #. If none exists, the code creates a placeholder master nodegroup on the fly, pre-accepted but without a UUID. #. If the placeholder is the only nodegroup, the first cluster controller to register becomes the master. Sadly, there is some code complexity to clear up here as this logic is not encapsulated in a single place, but instead in both: * ``NodeGroup.objects.ensure_data()`` and * ``AnonNodeGroupsHandler.register()``. maas-1.5+bzr2252.orig/docs/development/lease-scanning-and-dns.rst0000644000000000000000000000275412323254361022717 0ustar 00000000000000.. -*- mode: rst -*- *************************** DHCP lease scanning and DNS *************************** Overview ======== In a MAAS system, cluster controllers may optionally manage the DHCP, and the region controller may optionally manage the DNS. The region controller periodically tells the cluster controllers to report their DCHP leases. When a cluster controller reports new leases, the region controller creates DNS records for them, and instructs the cluster controller to convert the leases to static host mappings. Leases scanning =============== MAAS will periodically scan the DHCP leases file using the ``upload_dhcp_leases()`` celery task, which originates via celerybeat. As leases are discovered, it calls the api function ``update_leases()`` which will subsequently generate a new task called ``add_new_dhcp_host_map()`` that will use omshell to write a permanent mapping from MAC to IP in the DHCP server. That host map remains until the node is deleted, at which point the ``remove_dhcp_host_map()`` task is invoked which uses omshell to remove the map. Updating the DNS zone file ========================== If a new lease is found then the dns.change_dns_zones() function gets called which invokes two tasks:: #. ``write_dns_zone_config()`` #. ``rndc_command()`` The first is responsible for writing out a new zone file with the appropriate sequence number and timestamp, and then the second is chained on to that and sends an rndc message to the DNS server to reload the zone. maas-1.5+bzr2252.orig/docs/development/metadata.rst0000644000000000000000000001164312323254361020263 0ustar 00000000000000The Metadata API ================ A MAAS region controller provides a separate API (the metadata API) for the benefit of the nodes themselves. This is where a node obtains the details of how it should be set up, such as which SSH keys should be installed in order to give a particular user remote access to the system. As a MAAS user or administrator, you do not need to request this information yourself. It is normally up to ``cloud-init`` to do this while setting up the node. You'll find more about how this works in cloud-init's datasources_ documentation. .. _datasources: http://cloudinit.readthedocs.org/en/latest/topics/datasources.html Similarity to EC2 ----------------- The metadata API is very similar, and partly identical, to the EC2 metadata service. It follows a similar directory structure and provides several items in the same formats. For example, in order to find out its own host name, a node would perform an http GET request for:: /2012-03-01/meta-data/local-hostname The first item in the path is the API version. The API has been extended since March 2012, but not changed incompatibly and so that date is still the current version number. The items following that form a directory hierarchy based on that of the EC2 metadata service. The metadata service "knows" which node makes the request, and so there is no need for the request URL to identify the node whose hostname should be retrieved. The request automatically returns the hostname for the node which requested it. Just like EC2, the MAAS metadata API will accept GET requests to:: / /2012-03-01/ /2012-03-01/meta-data/ /2012-03-01/meta-data/instance-id /2012-03-01/meta-data/local-hostname /2012-03-01/meta-data/public-keys /2012-03-01/user-data Hopefully their meanings are fairly obvious. The ``public-keys`` will contain the user's SSH keys. MAAS adds a tarball of scripts that a node should run during its commissioning phase:: /2012-03-01/meta-data/maas-commissioning-scripts There are other differences. Where EC2 makes the metadata service available at a fixed IP address, MAAS configures the location of the metadata service on the node while installing its operating system. It does this through installation :ref:`preseeds `. These preseeds also include the node's access credentials. Additional Directory Trees -------------------------- .. _enlistment-tree: MAAS adds some entirely new directories as well. An enlisting node (which does not have access credentials for the metadata API yet) can anonymously request the same items for itself under ``/enlist/``, e.g.:: /enlist/2012-03-01/meta-data/local-hostname If you set the ``ALLOW_UNSAFE_METADATA_ACCESS`` configuration item, the metadata service will also provide the information on arbitrary nodes to authenticated users under a separate sub-tree. For security reasons this is not recommended, but it may be useful in debugging. With this option enabled, the information for the node with MAC address 99:99:99:99:99:99 is available at:: /2012-03-01/by-mac/99:99:99:99:99:99/meta-data/local-hostname And so on for the other information. There is a similar facility keyed by MAAS system identifiers. .. _curtin-tree: Finally, a curtin-specific metadata API with largely the same information lives in the ``/curtin/`` subtree:: /curtin/2012-03-01/meta-data/local-hostname The curtin subtree however differs in the ``user-data`` endpoint. It returns a curtin-specific form of user data. Authentication -------------- Most metadata requests are authenticated similar to ones to the region-controller API, through OAuth. Every node in a MAAS has its own OAuth key. (On the region controller side, these keys collectively belong to a single special user called ``node-init``. You will not see such special users listed in the UI, however.) When a node asks for information about itself, the OAuth key is what tells the metadata service which node that is. Not all requests are authenticated in this way. For instance, a node can access the items under the enlistment subdirectory (see :ref:`above `) anonymously. The metadata service will identify the requesting node by its IP address. API Operations -------------- The MAAS metadata API supports a few non-GET operations. These work just like the ones on the main :ref:`region-controller API `, but they are meant to be invoked by nodes. The URL for these calls is ``/2013-03-01/``, and the operation name is passed as a multipart form item called "op". Other parameters are passed in the same way. The ``signal`` call notifies the region controler of the state of a commissioning node. The node sends running updates, as well as output produced by the commissioning scripts, and finally completion information through this call. When a node is done installing, it may call POST operations ``netboot_on`` and ``netboot_off`` to instruct MAAS to enable or disable its network boot setting. maas-1.5+bzr2252.orig/docs/development/philosophy.rst0000644000000000000000000000302412323254361020673 0ustar 00000000000000------------------ Philosophy of MAAS ------------------ This is a declaration of what we’re aiming for while designing and developing MAAS. We may fall short in many regards right now, but this is where we’re heading. Each fix, enhancement, and feature is conceived and built with these principles in mind. It is concise and to the point. If in doubt about including something, don’t, or talk about it first. Think of it as a reference point for the core development team, as well as a starting point for external contributors. Feedback loops -------------- When MAAS modifies an external system there should be a feedback loop so it can know the actual state of the external system, take periodic or continuous action to converge the external system towards its notion of truth, and notice when there are problems influencing the external system. For example, when sending out a command to boot a machine from the network, MAAS should know that (a) the machine has actually powered on, and (b) that it has obtained boot instructions from the TFTP server. UI --- It should be possible to decompose all operations in the UI down to API calls. The UI need not have the same granularity as the API. The UI should never do something that is not possible in the API unless it is entirely specific to its medium (i.e. HTTP + browser). Addendum: though the UI should be decomposable down to API calls, it does not need to be implemented as such (even though it would be great if it was). .. TODO ---- Security Persistence Testing maas-1.5+bzr2252.orig/docs/development/preseeds.rst0000644000000000000000000000722512323254361020316 0ustar 00000000000000.. _preseeds: ========================= How preseeds work in MAAS ========================= A preseed is what MAAS sends to the ``cloud-init`` process that starts up as part of node installation and commissioning. It is a specially formatted chunk of text. MAAS does not care what that formatting is, it just knows it is text and uses Tempita_ templates to render a final file based on some variables that are required depending on the context. .. _Tempita: http://pythonpaste.org/tempita/ Preseed template structure -------------------------- The preseed templates live in the source tree at ``contrib/preseeds_v2/`` and the following files exist there:: commissioning enlist_userdata preseed_master enlist generic preseed_xinstall The file that is used as a template for the preseed depends on the state of the node that is being booted up. +--------------+----------------------------+ |State | Template used | +==============+============================+ |Enlistment |``enlist`` | +--------------+----------------------------+ |Commissioning |``commissioning`` | +--------------+----------------------------+ |Installation |- ``generic``, plus one of: | | |- ``preseed_master`` or | | |- ``preseed_xinstall`` | +--------------+----------------------------+ The ``enlist_userdata`` is not a preseed but it is a template that's used to send data to ``cloud-init`` when a new node is enlisted. There are also `User-provided preseeds`_, see below. Installation preseed -------------------- The installation preseed is broken into the three files because the requirements are different depending on the installer being used. The Debian Installer uses ``preseed_master`` and the newer Curtin installer uses ``preseed_xinstall``. The base of both of these is ``generic``, which defines some variables and then selects the right one depending on the installer being used. Note that Tempita's inheritance mechanism is a little weird; the ``generic`` template inherits the right file but in effect this is in reverse, the inherited file becomes the new template and it can then reference the variables defined in ``generic``. User-provided preseeds ---------------------- In addition to the standard preseed files, the base preseeds can be overridden by end users on a per-architecture, OS release and node name basis. The templates are looked up in the following order:: {prefix}_{node_architecture}_{node_subarchitecture}_{release}_{node_name} {prefix}_{node_architecture}_{node_subarchitecture}_{release} {prefix}_{node_architecture}_{node_subarchitecture} {prefix}_{node_architecture} {prefix} 'generic' ``prefix`` is either empty or one of ``enlist`` or ``commissioning``. As you can see this mechanism is also used to calculate the base preseeds for all of installation, enlistment and commissioning. It allows end users to add, for example, a file named ``amd64_generic_saucy`` that would be used instead of the ``generic`` template at installation time. Context variables ----------------- Most of the context variables comes from code in ``src/maasserver/preseed.py`` in the ``get_preseed_context()`` function. However there are many small functions in that file, this is the full call tree:: get_preseed() | render_preseed() | load_preseed_template() | | | get_preseed_filenames() | | | get_preseed_template() | get_preseed_context() | get_node_preseed_context() | | | compose_preseed() - (comes from src/maasserver/compose_preseed.py) | template.substitute(**context) maas-1.5+bzr2252.orig/docs/development/rpc.rst0000644000000000000000000001236112323254361017265 0ustar 00000000000000.. -*- mode: rst -*- RPC HOWTO ========= MAAS contains an RPC mechanism such that every process in the region is connected to every process in the cluster (strictly, every pserv process). It's based on AMP_, specifically `Twisted's implementation`_. .. _AMP: http://amp-protocol.net/ .. _Twisted's implementation: http://twistedmatrix.com/documents/current/core/howto/amp.html Where do I start? ----------------- Start in the :py:mod:`provisioningserver.rpc` package. The first two files to look at are ``cluster.py`` and ``region.py``. This contain the declarations of what commands are available on clusters and regions respectively. A new command could be declared like so:: from twisted.protocols import amp class EatCheez(amp.Command): arguments = [ (b"name", amp.Unicode()), (b"origin", amp.Unicode()), ] response = [ (b"rating", amp.Integer()), ] It's also possible to map exceptions across the wire using an ``errors`` attribute; see the docs or code for more information. Note that byte-strings are used for parameter names. Twisted gets quite fussy about this, so remember to do it. Implementing commands --------------------- To implement a new command on the cluster, see the class :py:class:`provisioningserver.rpc.clusterserver.Cluster`. A method decorated with ``@cluster.EatCheez.responder`` is the implementation of the ``EatCheez`` command. There's no trick to this, they're just plain old functions. However: * They only receive named parameters, so the arguments *must* match the names used in the command's ``arguments`` declaration. * They *must* return a dict that matches the command's ``response`` declararation. * If the ``response`` declaration is empty they *must* still return an empty dict. To implement a new command on the region, see the class :py:class:`maasserver.rpc.regionserver.Region`. It works the same. Making remote calls from the region to the cluster -------------------------------------------------- There's a convenient API in :py:mod:`maasserver.rpc`: * :py:func:`~maasserver.rpc.getClientFor` returns a client for calling remote functions against the cluster identified by a specified UUID. * :py:func:`~maasserver.rpc.getAllClients` will return clients for all connections to cluster processes. The clients returned are designed to be used in either the reactor thread *or* in another thread; when called from the latter, a :py:class:`crochet.EventualResult` will be returned. Making remote calls from the cluster to the region -------------------------------------------------- You need to get a handle to the ``rpc`` service that will have been started by ``twistd``. Probably the best way to do this is implement the behaviour you want as a new service, start it up via same mechanism as the ``rpc`` service (see :py:mod:`provisioningserver.plugin`, and pass over a reference. Then call :py:func:`~provisioningserver.rpc.getClient`, and you will get a client for calling into a region process. You're given a random client. Making multiple calls at the same time from outside the reactor --------------------------------------------------------------- A utility function -- :py:func:`~maasserver.utils.async.gather` -- helps here. An example:: from functools import partial from maasserver.rpc import getAllClients from maasserver.utils import async from twisted.python.failure import Failure # Wrap those calls you want to make into no-argument callables, but # don't call them yet. calls = [ partial(client, EatCheez) for client in getAllClients() ] # Use gather() to issue all the calls simultaneously and process the # results as they come in. Note that responses can be failures too. for response in async.gather(calls, timeout=10): if isinstance(response, Failure): pass # Do something sensible with this. else: celebrate_a_cheesy_victory(response) Responses can be processed as soon as they come in. Any responses not received within ``timeout`` seconds will be discarded. Miscellaneous advice -------------------- * Don't hang onto client objects for long periods of time. It's okay for a sequence of operations, but don't keep one around as a global, for example; get a new one each time. * It's a distributed system, and errors are going to be normal, so be prepared. API --- Controlling the event-loop in region controllers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. automodule:: maasserver.eventloop RPC declarations for region controllers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. automodule:: provisioningserver.rpc.region RPC implementation for region controllers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. autoclass:: maasserver.rpc.regionservice.Region RPC declarations for cluster controllers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. automodule:: provisioningserver.rpc.cluster RPC implementation for cluster controllers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. autoclass:: provisioningserver.rpc.clusterservice.Cluster Helpers ^^^^^^^ .. autofunction:: maasserver.rpc.getAllClients .. autofunction:: maasserver.rpc.getClientFor .. autofunction:: maasserver.utils.async.gather .. automethod:: provisioningserver.rpc.clusterservice.ClusterClientService.getClient maas-1.5+bzr2252.orig/docs/development/security.rst0000644000000000000000000000305012323254361020343 0ustar 00000000000000Fixing security-related issues in MAAS ====================================== The critical thing to remember is that details of the bug *must not leak* before a package exists in the Ubuntu archive that fixes it. Only then can details be unembargoed. Here's a list, in order, of things we should do. #. The initiator will be a security bug that is filed. Ensure that the bug is flagged as a security vulnerability, and is thusly **private**. #. Notify the `Ubuntu Security Team`_ and subscribe them to the bug. #. Discuss a fix for the bug in private, **not** public IRC channels! #. When a fix has been decided, work out where it needs to land. It could be only trunk, or all of the released branches. #. Make an empty branch from each release series and push up to LP. Mark the branch as *private security* **before** you then push up any revisions to it. #. It's possible that the branch could be *public security* but better safe than sorry! The `Ubuntu Security Team`_ may advise. #. Do a merge proposal as normal; it should remain private due to the private branch. #. When finished, **do not** land the branch. Notify the `Ubuntu Server Team`_ and the `Ubuntu Security Team`_ that there is a patch available on the merge proposal (and subscribe the security team to it). #. When they notify that the package(s) has/have been published to the archive, the branch(es) can now land on our upstream. .. _Ubuntu Security Team: https://launchpad.net/~ubuntu-security .. _Ubuntu Server Team: https://launchpad.net/~ubuntu-server maas-1.5+bzr2252.orig/docs/development/tagging.rst0000644000000000000000000000520112323254361020114 0ustar 00000000000000.. -*- mode: rst -*- ******* Tagging ******* Auto tags, or tags with expressions =================================== These kind of tags have an associated XPath expression that is evaluated against hardware information as obtained from running ``lshw`` during node commissioning. New or updated tag definition ----------------------------- When a new tag is created or an existing tag is modified, its expression must be evaluated for every node known to the region. It's a moderately computationally intensive process, so the work is spread out to cluster controllers. Here's how: #. The region dispatches a ``provisioningserver.tasks.update_node_tags`` job to each cluster for each tag it wants evaluated. It sends the tag name and its definition, an XPath expression. See ``maasserver.model.tags.Tag.save`` and ``maasserver.populate_tags``. #. The task is run (by Celery) on each cluster. This calls ``provisioningserver.tags.process_node_tags``. #. The system IDs for all nodes in that cluster (aka node group) are fetched by calling back to the region. See ``provisioningserver.tags.get_nodes_for_node_group``. #. Nodes are then processed in batches. For each batch: #. Hardware details are obtained from the region for the batch as a whole. See ``provisioningserver.tags.get_hardware_details_for_nodes``. #. The tag expression is evaluated against each node's hardware details. The result of the expression, cast as a boolean, determines if the tag applies to this node. See ``provisioningserver.tags.process_batch``. #. The results are sent back to the region for the batch as a whole. See ``provisioningserver.tags.post_updated_nodes``. New or updated commissioning result ----------------------------------- When a new commissioning result comes in containing ``lshw`` or ``lldp`` XML output, every tag with an expression must be evaluated against the result so that the node is correctly tagged. To do this, ``maasserver.api.VersionIndexHandler.signal`` calls ``populate_tags_for_single_node`` just before saving all the changes. This happens in the **region**. While it's a computationally expensive operation, the overhead of spinning this work out to a cluster controller negates any benefit that might gained by doing so. Manual tags, or tags without expressions ======================================== The *manual* part refers to how these tags are associated with nodes. Instead of being automatically associated as the result of evaluating the tag expression, these tags must be manually associated with a node. A manual tag is denoted by the absence of an expression. maas-1.5+bzr2252.orig/docs/man/maas-import-pxe-files.8.rst0000644000000000000000000000323612323254361021224 0ustar 00000000000000maas-import-pxe-files --------------------- USAGE ^^^^^ maas-import-pxe-files [-h, --help] DESCRIPTION ^^^^^^^^^^^ This is a helper script for the MAAS software. It downloads Ubuntu images and organises them for use by MAAS in commissioning nodes. The script is usually run regularly by a cron task, though it needs to be run manually the first time a MAAS system is installed. Images that are already in place are kept unchanged, unless the version in the archive has since been updated. Only new data is downloaded, so routine runs will not be costly. An easier way to run the script is to trigger it from the MAAS web user interface. To do that, log in to your MAAS as an administrator using a web browser, click the cogwheel icon in the top right of the page to go to the Clusters page, and click "Import boot images." This will start imports on all cluster controllers simultaneously. The same thing can also be done through the region-controller API, or through the command-line interface. The script reads a configuration file `/etc/maas/bootresources.yaml` in order to determine: * the location in the filesystem where downloaded images should be stored, and made available to nodes through TFTP and iSCSI; * Simplestream sources from where boot images should be downloaded; and * which kinds of images are needed: architecture, operating system release, etc. These images are the minimum that's required to start installing a node. During installation, a node may download its packages over the network. Further Documentation ^^^^^^^^^^^^^^^^^^^^^ For more documentation of MAAS, please see https://maas.ubuntu.com/docs See Also ^^^^^^^^ `maas-region-admin`, `maas` maas-1.5+bzr2252.orig/docs/man/maas-region-admin.8.rst0000644000000000000000000000220512323254361020364 0ustar 00000000000000maas-region-admin ----------------- Usage ^^^^^ maas-region-admin [-h, --help] createsuperuser | changepassword | shell Description ^^^^^^^^^^^ The `maas` command is part of Canonical's Metal As A Service software. It is derived from and can be used similarly to the `django-admin` command, and must be run with root privileges. For the end user, there are only three subcommands of interest. **createsuperuser** This subcommand is used to create a superuser for the MAAS install. The suggested username is "root". This command usually only needs to be run when installing MAAS for the first time. **changepassword** This subcommand is used to change the superuser password for the MAAS install. You will be prompted to enter a new password, and then enter it once again to verify. **shell** This subcommand may be useful for debugging installed systems. It will open a new python shell environment with the correct django environment for working with the installed MAAS software. Further Documentation ^^^^^^^^^^^^^^^^^^^^^ For more documentation of MAAS, please see https://maas.ubuntu.com/docs See Also ^^^^^^^^ `maas` maas-1.5+bzr2252.orig/docs/man/maas.8.rst0000644000000000000000000003754412323254361016033 0ustar 00000000000000maas ---- Usage ^^^^^ :: $ maas [parameters] The available commands are dependent on the API you are connecting to and the profile you use. The currently available options are explained below. Description ^^^^^^^^^^^ As well as the web interface, many tasks can be performed by accessing the MAAS API directly through the maas command. This section details how to login with this tool and perform some common operations. Logging in ========== Before the API will accept any commands from maas, you must first login. To do this, you need the API key which can be found in the user interface. Log in to the web interface on your MAAS. Click on the username in the top right corner and select 'Preferences' from the menu which appears. A new page will load... The very first item is a list of MAAS keys. One will have already been generated when the system was installed. It's easiest to just select and copy the key (it's quite long!) and then paste it into the commandline. The format of the login command is:: $ maas login The profile created is an easy way of associating your credentials with any subsequent call to the API. So an example login might look like this:: $ maas login maas http://10.98.0.13/MAAS/api/1.0 AWSCRMzqMNy:jjk...5e1FenoP82Qm5te2 which creates the profile 'maas' and registers it with the given key at the specified API endpoint. If you omit the credentials, they will be prompted for in the console. It is also possible to use a hyphen, '-' in place of the credentials. In this case a single line will be read from stdin, stripped of any whitespace and used as the credentials, which can be useful if you are devolping scripts for specific tasks. If an empty string is passed instead of the credentials, the profile will be logged in anonymously (and consequently some of the API calls will not be available) maas commands ============= The ``maas`` command exposes the whole API, so you can do anything you actually *can* do with MAAS using this command. Unsurprisingly, this leaves us with a vast number of options, but before we delve into detail on the specifics, here is a sort of 'cheat-sheet' for common tasks you might want to do using ``maas``. * :ref:`Configure DHCP and DNS services ` * :ref:`Commission all enlisted nodes ` * :ref:`Setting IPMI power parameters for a node ` The main maas commands are: .. program:: maas :samp:`list` lists the details [name url auth-key] of all the currently logged-in profiles. :samp:`login ` Logs in to the MAAS controller API at the given URL, using the key provided and associates this connection with the given profile name. :samp:`logout ` Logs out from the given profile, flushing the stored credentials. :samp:`refresh` Refreshes the API descriptions of all the current logged in profiles. This may become necessary for example when upgrading the maas packages to ensure the command-line options match with the API. :samp:` [command] [options] ...` Using the given profile name instructs ``maas`` to direct the subsequent commands and options to the relevant MAAS, which for the current API are detailed below... account ^^^^^^^ This command is used for creating and destroying the MAAS authorisation tokens associated with a profile. Usage: maas ** account [-d --debug] [-h --help] create-authorisation-token | delete-authorisation-token [token_key=\ **] .. program:: maas account :samp:`-d, --debug` Displays debug information listing the API responses. :samp:`-h, --help` Display usage information. :samp:`-k, --insecure` Disables the SSL certificate check. :samp:`create-authorisation-token` Creates a new MAAS authorisation token for the current profile which can be used to authenticate connections to the API. :samp:`delete-authorisation-token token_key=` Removes the given key from the list of authorisation tokens. .. boot-images - not useful in user context .. ^^^^^^^^^^^ .. files - not useful in user context .. ^^^^^ node ^^^^ API calls which operate on individual nodes. With these commands, the node is always identified by its "system_id" property - a unique tag allocated at the time of enlistment. To discover the value of the system_id, you can use the ``maas nodes list`` command. USAGE: maas node [-h] release | start | stop | delete | read | update .. program:: maas node :samp: `-h, --help` Display usage information. :samp:`release ` Releases the node given by ** :samp:`start ` Powers up the node identified by ** (where MAAS has information for power management for this node). :samp:`stop ` Powers off the node identified by ** (where MAAS has information for power management for this node). :samp:`delete ` Removes the given node from the MAAS database. :samp:`read ` Returns all the current known information about the node specified by ** :samp:`update [parameters...]` Used to change or set specific values for the node. The valid parameters are listed below:: hostname= The new hostname for this node. architecture= Sets the architecture type, where is a string containing a valid architecture type, e.g. "i386/generic" power_type= Apply the given dotted decimal value as the broadcast IP address for this subnet. power_parameters_{param1}... = Set the given power parameters. Note that the valid options for these depend on the power type chosen. power_parameters_skip_check 'true' | 'false' Whether to sanity check the supplied parameters against this node's declared power type. The default is 'false'. .. _cli-power: Example: Setting the power parameters for an ipmi enabled node:: maas update \ power_type="ipmi" \ power_parameters_power_address=192.168.22.33 \ power_parameters_power_user=root \ power_parameters_power_pass=ubuntu; nodes ^^^^^ Usage: maas nodes [-h] is-registered | list-allocated | acquire | list | accept | accept-all | new | check-commissioning .. program:: maas nodes :samp:`-h, --help` Display usage information. :samp:`accept ` Accepts the node referenced by . :samp:`accept-all` Accepts all currently discovered but not previously accepted nodes. :samp:`acquire` Allocates a node to the profile used to issue the command. Any ready node may be allocated. :samp:`is-registered mac_address=
` Checks to see whether the specified MAC address is registered to a node. :samp:`list` Returns a JSON formatted object listing all the currently known nodes, their system_id, status and other details. :samp:`list-allocated` Returns a JSON formatted object listing all the currently allocated nodes, their system_id, status and other details. :samp:`new architecture= mac_addresses= [parameters]` Creates a new node entry given the provided key=value information for the node. A minimum of the MAC address and architecture must be provided. Other parameters may also be supplied:: architecture="" - The architecture of the node, must be one of the recognised architecture strings (e.g. "i386/generic") hostname="" - a name for this node. If not supplied a name will be generated. mac_addresses="" - The mac address(es) allocated to this node. power_type="" - the power type of the node (e.g. virsh, ipmi) :samp:`check-commissioning` Displays current status of nodes in the commissioning phase. Any that have not returned before the system timeout value are listed as "failed". Examples: Accept and commission all discovered nodes:: $ maas maas nodes accept-all List all known nodes:: $ maas maas nodes list Filter the list using specific key/value pairs:: $ maas maas nodes list architecture="i386/generic" node-groups ^^^^^^^^^^^ Usage: maas node-groups [-d --debug] [-h --help] [-k --insecure] register | list | refresh-workers | accept | reject .. program:: maas node-groups :samp:`-d, --debug` Displays debug information listing the API responses. :samp:`-h, --help` Display usage information. :samp:`-k, --insecure` Disables the SSL certificate check. :samp:`register uuid= name= interfaces=` Registers a new node group with the given name and uuid. The interfaces parameter must be supplied in the form of a JSON string comprising the key/value data for the interface to be used, for example: interface='["ip":"192.168.21.5","interface":"eth1", \ "subnet_mask":"255.255.255.0","broadcast_ip":"192.168.21.255", \ "router_ip":"192.168.21.1", "ip_range_low":"192.168.21.10", \ "ip_range_high":"192.168.21.50"}]' :samp:`list` Returns a JSON list of all currently defined node groups. :samp:`refresh_workers` It sounds a bit like they will get a cup of tea and a biscuit. Actually this just sends each node-group worker an update of its credentials (API key, node-group name). This command is usually not needed at a user level, but is often used by worker nodes. :samp:`accept ` Accepts a node-group or number of nodegroups indicated by the supplied UUID :samp:`reject ` Rejects a node-group or number of nodegroups indicated by the supplied UUID node-group-interface ^^^^^^^^^^^^^^^^^^^^ For managing the interfaces. See also :ref:`node-group-interfaces` Usage: maas ** node-group-interfaces [-d --debug] [-h --help] [-k --insecure] read | update | delete [parameters...] ..program:: maas node-group-interface :samp:`read ` Returns the current settings for the given UUID and interface :samp:`update [parameters]` Changes the settings for the interface according to the given parameters:: management= 0 | 1 | 2 The service to be managed on the interface ( 0= none, 1=DHCP, 2=DHCP and DNS). subnet_mask= Apply the given dotted decimal value as the subnet mask. broadcast_ip= Apply the given dotted decimal value as the broadcast IP address for this subnet. router_ip= Apply the given dotted decimal value as the default router address for this subnet. ip_range_low= The lowest value of IP address to allocate via DHCP ip_range_high= The highest value of IP address to allocate via DHCP :samp:`delete ` Removes the entry for the given UUID and interface. Example: Configuring DHCP and DNS. To enable MAAS to manage DHCP and DNS, it needs to be supplied with the relevant interface information. To do this we need to first determine the UUID of the node group affected:: $ uuid=$(maas node-groups list | grep uuid | cut -d\" -f4) Once we have the UUID we can use this to update the node-group-interface for that nodegroup, and pass it the relevant interface details:: $ maas node-group-interface update $uuid eth0 \ ip_range_high=192.168.123.200 \ ip_range_low=192.168.123.100 \ management=2 \ broadcast_ip=192.168.123.255 \ router_ip=192.168.123.1 \ Replacing the example values with those required for this network. The only non-obvious parameter is 'management' which takes the values 0 (no management), 1 (manage DHCP) and 2 (manage DHCP and DNS). node-group-interfaces ^^^^^^^^^^^^^^^^^^^^^ The node-group-interfaces commands are used for configuring the management of DHCP and DNS services where these are managed by MAAS. Usage: maas ** node-group-interfaces [-d --debug] [-h --help] [-k --insecure] list | new [parameters...] .. program:: maas node-group-interfaces :samp:`-d, --debug` Displays debug information listing the API responses. :samp:`-h, --help` Display usage information. :samp:`-k, --insecure` Disables the SSL certificate check. :samp:`list