pax_global_header00006660000000000000000000000064135457774440014536gustar00rootroot0000000000000052 comment=3c5db41596e2f211fddc29d12ac85d8942db8003 ruby-prawn-icon-2.5.0/000077500000000000000000000000001354577744400145765ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/.gitignore000066400000000000000000000001051354577744400165620ustar00rootroot00000000000000.DS_Store Gemfile.lock /doc .yardoc/ coverage/ vendor/bundle .bundle ruby-prawn-icon-2.5.0/.rubocop.yml000066400000000000000000000007241354577744400170530ustar00rootroot00000000000000AllCops: DisplayCopNames: true Exclude: - 'examples/**/*' - 'spec/**/*' - 'Rakefile' MethodLength: Max: 25 SignalException: EnforcedStyle: only_raise Documentation: Enabled: false RegexpLiteral: Enabled: false SpaceAroundOperators: Enabled: false RedundantMerge: Enabled: false FirstParameterIndentation: Enabled: false Metrics/AbcSize: Max: 20 Layout/EmptyLineAfterMagicComment: Enabled: false Layout/IndentHeredoc: Enabled: false ruby-prawn-icon-2.5.0/.travis.yml000066400000000000000000000005051354577744400167070ustar00rootroot00000000000000language: ruby before_install: - gem install bundler - bundle --version rvm: - 2.3.0 - 2.4.1 - 2.5.1 - jruby-9.1.13.0 gemfile: - gemfiles/prawn-1.3.0.gemfile - gemfiles/prawn-2.1.0.gemfile - gemfiles/prawn-master.gemfile matrix: exclude: - rvm: jruby-9.1.13.0 gemfile: gemfiles/prawn-master.gemfile ruby-prawn-icon-2.5.0/.yardopts000066400000000000000000000001721354577744400164440ustar00rootroot00000000000000--charset UTF-8 --main README.md --title 'Prawn/Icon Documentation' --no-private - COPYING LICENSE README.md CHANGELOG.md ruby-prawn-icon-2.5.0/CHANGELOG.md000066400000000000000000000162521354577744400164150ustar00rootroot00000000000000# 2.5.0 - October 4, 2019 * Update FontAwesome from `5.8.2` to `5.11.2`. * See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md) for more details. # 2.4.0 - May 26, 2019 * Update FontAwesome from `5.4.0` to `5.8.2`. * See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/master/UPGRADING.md) for more details. * Update the Payment Icon URL to https://paymentfont.com. # 2.3.0 - October 8, 2018 * Update FontAwesome to version from `5.0.13` to `5.4.0`. * See FontAwesome's [release page](https://github.com/FortAwesome/Font-Awesome/releases/tag/5.4.0) for more details. # 2.2.0 - May 20, 2018 * Move out shim configuration into a `.yml` file located inside the `data/fonts/fa4/shims.yml` file. * Update FontAwesome TTF files and legend files from 5.0.8 to 5.0.13. * Add additional compatibility shims that were missing for some icons from FontAwesome 4. This version release is now fully backwards-compatible with all icon specifiers present in FontAwesome 4 (via version `1.4.0` of this gem). * Fix a bug in the FontAwesome converter tool by properly requiring `fileutils` before execution. # 2.1.0 - April 1, 2018 * Introduce backwards compatibility with FontAwesome 4 icon keys by dynamically rewriting all instances of `fa-*` to their appropriate FontAwesome 5 equivalent key. This is achieved by implementing a shim generated from the FontAwesome metadata. * Introduce a deprecation warning written to `STDERR` when any `fa-*` key is encountered. The compatibility shim will be removed in the next major version of `Prawn::Icon` (`3.0.0`). * See the [discussion here](https://github.com/jessedoyle/prawn-icon/pull/33) for more details. # 2.0.0 - March 7, 2018 * [**breaking change**] Update to FontAwesome 5.0.8. FontAwesome 5 now provides 3 different font families: `brands`, `regular` and `solid`. The specifiers for these font icons are now: `fab`, `far` and `fas`. * [**breaking change**] Remove GitHub Octicons because Octicons are now only [delivered via SVG](https://github.com/blog/2112-delivering-octicons-with-svg). * [**breaking change**] Make the font specifier a required attribute for `Prawn::Icon::FontData#new`. Previously it was assumed to be `fa`. * Write a new tool `tool/fontawesome/converter.rb` that accepts the FontAwesome metadata YAML file ([link](https://github.com/FortAwesome/Font-Awesome/blob/31281606f5205b0191c17c3b4d2d56e1ddbb2dc6/advanced-options/metadata/icons.yml)), and generates the correct legend files for `brands`, `regular` and `solid` styles. * Require 'prawn/icon/version' with by default. # 1.4.0 - Sept 11, 2017 - Update dependency gems to latest version. - Fix `rubocop` config to show cop names as well as increase the ABC complexity slightly. - Add internal tooling to assist with the SCSS => YAML mappings of FontAwesome and PaymentFont. - Update FontAwesome to `v4.7.0` from `v4.6.3`. See [changelog](http://fontawesome.io/icons#new). - Update PaymentFont to `v1.2.5` from `v1.1.2`. See [icons](https://paymentfont.com/#icons). - Update Octicons from to `v4.4.0` from `v3.1.0`. NOTE: As Octicons have moved from font-based icons to SVG after this version, this will be the final octicon version in `prawn/icon`. See the [wiki](https://github.com/blog/2112-delivering-octicons-with-svg). - Fix rubocop warnings for whitespace. # 1.3.0 - Oct 15, 2016 - Update rubocop developement dependency (to `0.44.1`). - Add `simplecov` as a development dependency and require 100% coverage. - Break out `Prawn::Icon::Interface` into its own file. This resolves issue [#27](https://github.com/jessedoyle/prawn-icon/issues/27). # 1.2.0 - Sept 12, 2016 - Update FontAwesome from v4.5.0 to v4.6.3. See [changelog](http://fontawesome.io/icons#new). - Refactor spec files to remove duplication using `let` blocks. - Break internal dependencies to `Prawn::Icon::Base` to allow selective code requires. e.g. (to require only `prawn/icon/font_data`): ```ruby require 'prawn/icon/base' require 'prawn/icon/font_data' ``` This resolves issue [#27](https://github.com/jessedoyle/prawn-icon/issues/27). Thanks @mojavelinux for reporting! - Introduce `Prawn::Icon::Errors` to contain internal exception classes. - `Prawn::Icon::FONTDIR` is now an alias to `Prawn::Icon::Base::FONTDIR` for compatibilty. - Add basic spec files for `Prawn::Icon::Base` and separate exception classes. - Minor backwards-compatible code refactor of `Prawn::Icon::FontData` for readability. - Add a spec to test inline_icon with final_gap: false to achieve 100% coverage. # 1.1.1 - Jun 24, 2016 - BUGFIX: Inline icons now properly render at the correct cursor position with the correct line gap and box leading[#24](https://github.com/jessedoyle/prawn-icon/issues/24). Thanks @ToniTornado for reporting! # 1.1.0 - March 16, 2016 - Update FontAwesome from v4.4.0 to v4.5.0. See [changelog](http://fontawesome.io/icons#new). - Refactor specs to use `expect(foo).to be true` over `expect(foo).to be_true`. - Update development dependencies to latest. # 1.0.0 - September 9, 2015 - *(breaking change)* Updated Octicons from v2.4.1 to v3.1.0. - The following icons were removed: - `octicon-microsope` - `octicon-beer` - `octicon-split` - `octicon-puzzle` - `octicon-steps` - `octicon-podium` - `octicon-timer` - `octicon-hourglass` - all `octicon-alignment` icons - all `octicon-move` icons - all `octicon-playback` icons - all `octicon-jump` icons - The following icons were added: - `octicon-beaker` - `octicon-bell` - `octicon-desktop-download` - `octicon-watch` - `octicon-shield` - Updated FontAwesome from v4.3.0 to v4.4.0. See [changelog](http://fontawesome.io/icons#new). # 0.7.1 - August 4, 2015 - Moved the internal font directory from `fonts` to `data/fonts` for consistency between Prawn-related gems [#16](https://github.com/jessedoyle/prawn-icon/issues/16). # 0.7.0 - July 23, 2015 - Update Travis config to relax the versions of `Prawn` and `Ruby` that are tested against. See `.travis.yml` to see what versions are supported (though you shouldn't have issues with other versions). - Implement inline_format for table icons. [#14](https://github.com/jessedoyle/prawn-icon/pull/14). - Updated Octicons to v2.4.1. See [changelog](https://github.com/github/octicons/releases/) between versions 2.1.2 and 2.4.1. # 0.6.4 - May 4, 2015 - [PaymentFont](https://paymentfont.com) is now supported and included in `Prawn::Icon`. # 0.6.3 - March 4, 2015 - Relaxed Prawn runtime dependency from >= 1.3.0 to >= 1.1.0. - Added CI tests for multiple versions of Prawn. - Added missing `end` statement to example code in README. # 0.6.2 - February 10, 2015 - Added this CHANGELOG. - Added the `table_icon` method to simplify icon use in conjuction with `Prawn::Table`. - Added a `.yardopts` file for better documentation. - Clean `.gemspec` to increase readability. # 0.6.1 - January 27, 2015 - Upgraded FontAwesome to `v4.3.0`. # 0.6.0 - January 20, 2015 - Single-quoted attributes are now supported when using `inline_format: true`. - Prawn is now specified as a runtime dependency of `prawn/icon`. # 0.5.1 - November 2, 2014 - Bugfix for improperly cached font data. - Added Codeclimate and Travis CI. # 0.5.0 - October 29, 2014 - Initial public release. ruby-prawn-icon-2.5.0/COPYING000066400000000000000000000002211354577744400156240ustar00rootroot00000000000000Prawn/Icon may be used under Matz's original licensing terms for Ruby, or GPLv2 or GPLv3. See LICENSE for Matz's terms, or GPLv2 and GPLv3 files.ruby-prawn-icon-2.5.0/GPLv2000066400000000000000000000432541354577744400154230ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), 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 distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the 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 a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE 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. 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 convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. ruby-prawn-icon-2.5.0/GPLv3000066400000000000000000001045121354577744400154170ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .ruby-prawn-icon-2.5.0/Gemfile000066400000000000000000000000471354577744400160720ustar00rootroot00000000000000source 'https://rubygems.org' gemspec ruby-prawn-icon-2.5.0/LICENSE000066400000000000000000000045671354577744400156170ustar00rootroot00000000000000Prawn/Icon is copyrighted free software produced by Jesse Doyle along with community contributions. See git log for authorship information. Licensing terms follow: You can redistribute Prawn/Icon and/or modify it under either the terms of the GPLv2 or GPLv3 (see GPLv2 and GPLv3 files), or the conditions below: 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may modify your copy of the software in any way, provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or by allowing the author to include your modifications in the software. b) use the modified software only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided. d) make other distribution arrangements with the author. 3. You may distribute the software in object code or executable form, provided that you do at least ONE of the following: a) distribute the executables and library files of the software, together with instructions (in the manual page or equivalent) on where to get the original distribution. b) accompany the distribution with the machine-readable source of the software. c) give non-standard executables non-standard names, with instructions on where to get the original software distribution. d) make other distribution arrangements with the author. 4. You may modify and include the part of the software into any other software (possibly commercial). 5. The scripts and library files supplied as input to or produced as output from the software do not automatically fall under the copyright of the software, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this software. 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.ruby-prawn-icon-2.5.0/README.md000066400000000000000000000077651354577744400160740ustar00rootroot00000000000000# Prawn::Icon [![Gem Version](https://badge.fury.io/rb/prawn-icon.svg)](http://badge.fury.io/rb/prawn-icon) [![Build Status](https://api.travis-ci.org/jessedoyle/prawn-icon.svg?branch=master)](http://travis-ci.org/jessedoyle/prawn-icon) [![Code Climate](https://codeclimate.com/github/jessedoyle/prawn-icon/badges/gpa.svg)](https://codeclimate.com/github/jessedoyle/prawn-icon) Prawn::Icon provides a simple mechanism for rendering icons and icon fonts from within [Prawn](https://github.com/prawnpdf/prawn). The following icon fonts ship with Prawn::Icon: * FontAwesome (http://fontawesome.io/icons/) * Foundation Icons (http://zurb.com/playground/foundation-icon-fonts-3) * PaymentFont (https://paymentfont.com) Prawn::Icon was originally written by Jesse Doyle. ## Installation Prawn::Icon is distributed via RubyGems. You can install it with the following command: ```bash gem install prawn-icon ``` ## Usage Prawn::Icon was designed to have an API familiar to Prawn. A single icon may be rendered as such: ```ruby require 'prawn/icon' Prawn::Document.generate('icons.pdf') do |pdf| pdf.icon 'fas-beer', size: 60 end ``` produces: ![FontAwesome Beer](https://raw.github.com/jessedoyle/prawn-icon/master/examples/fas-beer.png) ## Inline Icons You can also provide the `inline_format: true` option to Prawn::Icon: ```ruby require 'prawn/icon' Prawn::Document.generate('inline_icons.pdf') do |pdf| pdf.icon 'Enjoy: fas-beer', inline_format: true end ``` produces: ![FontAwesome Beer Inline](https://raw.github.com/jessedoyle/prawn-icon/master/examples/fas-beer-inline.png) When using `inline_format: true`, you may supply `` tags with `color` and `size` attributes. ## Use with [Prawn::Table](https://github.com/prawnpdf/prawn-table) A `table_icon` method may be called when creating a table's data array to render icons within a table cell: ```ruby require 'prawn/icon' require 'prawn/table' Prawn::Document.generate('table_icons.pdf') do |pdf| data = [ # Explicit brackets must be used here [pdf.table_icon('fas-birthday-cake'), 'Cake'], ['is', 'Great!'] ] pdf.table(data) # => (2 x 2 table) end ``` Note that the `table_icon` method supports the `inline_format: true` option to create multiple icons within a cell. ## Specifying Icon Families Prawn::Icon uses the prefix of an icon key to determine which font family is used to render a particular icon. Currently supported prefixes include: * `fab` - [FontAwesome Brands](https://fontawesome.com/icons?d=gallery&s=brands&m=free) (eg. `fab-amazon`). * `far` - [FontAwesome Regular](https://fontawesome.com/icons?d=gallery&s=regular&m=free) (eg. `far-address-book`). * `fas` - [FontAwesome Solid](https://fontawesome.com/icons?d=gallery&s=solid&m=free) (eg. `fas-location-arrow`). * `fi` - [Foundation Icons](https://zurb.com/playground/foundation-icon-fonts-3) (eg. `fi-compass`). * `pf` - [PaymentFont](https://paymentfont.com/#icons) (eg. `pf-cash`). ## How It Works Prawn::Icon uses a "legend" to map icon keys to unicode characters that respresent a particular icon within the font file. This legend is a standard `.yml` file located within the font's directory. If you wish to fork this repository and add a new font, you'll likely need to supply a corresponding legend file. Please see the current legend files within the `data/fonts` directory for examples. ## Examples A Rake task is included to generate documents that display each icon and it's corresponding icon key. The command: ```bash rake legend ``` should generate these files when run from Prawn::Icon's gem directory. ## Contributing I'll gladly accept pull requests that are well tested for any bug found in Prawn::Icon. If there is enough demand for including a particular icon font, I will also accept a pull request to include it in Prawn::Icon. ## License Prawn::Icon is licensed under the same terms that are used by Prawn. You may choose between Matz's terms, the GPLv2, or GPLv3. For details, please see the LICENSE, GPLv2, and GPLv3 files. ruby-prawn-icon-2.5.0/Rakefile000066400000000000000000000014001354577744400162360ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'bundler' Bundler.setup require 'rake' require 'rspec/core/rake_task' require 'rubocop/rake_task' task :default => [:spec, :rubocop] desc 'Run all rspec files' RSpec::Core::RakeTask.new('spec') do |c| c.rspec_opts = '-t ~unresolved' end desc 'Generate the legend documents for all icon fonts.' task :legend do example = File.join(File.dirname(__FILE__), 'examples', '*.rb') files = Dir[example] files.reject! { |f| File.basename(f) == 'example_helper.rb' } files.each do |file| puts "Generating from: #{file}" require file end puts 'All Done!' end RuboCop::RakeTask.new ruby-prawn-icon-2.5.0/data/000077500000000000000000000000001354577744400155075ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/000077500000000000000000000000001354577744400166405ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/DejaVuSans.ttf000066400000000000000000022403641354577744400213750ustar00rootroot000000000000000FFTML <GDEF>CXnGPOS;GSUBAU| OS/2" Vcmap rcvt i9fpgmq4vjgasp glyfAhead(=eN6hhea &N$hmtxU1NSTkernJ|H<locaF)PSXmaxpB j1 namelM1=postc8n̼prep; ;hiVaVa  S           344578<=[\gh      % & & ' 3 4 : ; ; < ? @ A B Y Z [ \ t u u v+,,--.78XY67>?fgno  | DFLT>arabHarmnhcyrlrgrekhebrlao latnnko tfngKUR SND URD MKD SRB (ISM (KSM (LSM (NSM (SKS (SSM (kern2mark8markFmarkNmarkVmkmk\mkmkdmkmkj     (08@JRZbjrzp0  r /02d467R9`H]0&:  ^af^af &,28>DJPV\bhntz::::r 4 4 `4\]_`bcdegghijklmn4\]_`bcdegghijklmnJPV\bhntz$ l N>X  &,lwlwlwfn  &,28l`l~l~l`l~l`L "FLRX^djpv| '''tt ;888 - T !    $*06<B :v| $*06<BHNTZ`flrx~hhh=DhhhDhh=DDnnnnhh  !# 4 :)0  1 29  4 :%,78 $*06<BHNTZ`flrx~ &,{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ $6HZl~ cj cj cj cj c c cj cj7> ^af>DJPV\bhntz*  &,28>DJPV\bhntz "(.4:@FLRX^djpv| $*06<BHNTZ`flrx~ &,28>DJPV\bhntz "(.4:@FLRX^djpv|     $ * 0 6 < B H N T Z ` f l r x ~      & , 2 8 > D J P V \ b h n t z     " ( . 4 : @ F L R X ^ d j p v |     $ * 0 6 < B H N T Z ` f l r x ~      & , 2 8 > D J P V \ b h n t z  "(.4:@FLRX^djpv| $*06<BHNTZ`flrx~{U:t!N8'Qn ppjjj,v,,vjj  XXXXD[j[j, 8 8>>j pjjj^jj,,,,,,,     8 8 8 j j>>, ppjI^`k/#eYYYcP`{U:tii!NQnU!Q{++++++jj++jj++jj++ 8 8jj 8 8jj,,X X ,,XX,,X X ,,X X      j j,j,j j j,j,j>  ++pp++,,,, ,,,,,,,,,,2  pp++pp++jjjj++jj++,,XX,,XX,,XXjjjj    XXjjXXjjXX&j&jXX&j&j[j[jSjSj[j[jSjSjXX 8 8jjjj 8 8,j,j>>SS&j&j>++jjj  pp++j++ 8jjjj++^++j++,XX,XX,XX,X X   >SSp++ jIII^^^```kkk///###eeeYYYYYYYYY08[vwByDc.68;>6#s%6~RZ\\o ^afBHNTZ`flrx~F 'PV\bhntz "(.4U0+0008q00800i00E0 0100000P=i0v00v00d000UU8000U !! #$ &')-++/35689<= TX" 0 $6HZl~ cr cr cr cr cr cr cr cr7> 4\]_`bcdeg,ghijklmnRX^djpv|``& b lrx~ &,28>DJPV\bhntz "(.4:@FLRX^djpv| $*06<BHNTZ`flrx~ &,28>DJPV\bhntz "(.4:@FLRX^djpv|     $ * 0 6 < B H N T Z ` f l r x ~      & , 2 8 > D J P V \ b h n t z     " ( . 4 : @ F L R X ^ d j p v |     $ * 0 6 < B H N T Z ` f l r x ~      & , 2 8 > D J P V \ b h n t z R``S`4rrLRLX X X X [r[r~x,LLRLLRLxLLLxx4RI^`n#YYY`R``S`++++++LL++LL++++LL@LL@XXXXXXXXxxxxxx++XV++,,,:,,,,:,:,,,,,:,:LrrX+F+Frr++L&LRR++LL++XXXXX~X~X X X X RRX X & & X X &&[r[rSrSr[r[rSrSr~~x~x~LLFLRFSrSrR&R&R++R&RL XVX++++LLRL++R++++XXXxXxXxXxX~X~4S4S4++&RIII^^^```nnn###YYYYYYYYY''8[vw'y)H22f??gHHhNNiYj6#4%6?RZQ\\Zo[ 4\]_`bcdeg,ghijklmnrx~`{{{{{{{{` <BHNTZ`flrx~]xx@[")@>E"~~x2x::"> @FLRX^djpv|]kxyyyxyz[f"w)h>yEy`P["~[~t`zxy2{`uxJJ::      28>DJPV\bhnttbbbbt`~~`~` T R  !" &,28>DJP R $*06<BHNTZ`flrx~ &,28>DJPV\bhntz$=D]hi4kl68 < C D6L  $Js}- {{ 1djpv| $*06<BHNTZ`flrx~L/'s.}////////s}/////;/1$&(,268DFHLRVX-* x y9 4 n h l "(.4:@FLRX^djpv| $*06<BHNTZ`flrx~ &,28>DJPV\bhntz "(.4:@FLRX^djpv| $*06<BHNTZ`flrx~ &,28>DJPV\bhntz     " ( . 4 : @ F L R X ^ d j p v |     $ * 0 6 < B H N T Z ` f l r x ~      & , 2 8 > D J P V \L\/.Rs''}srJf;RRsRR%}^Gb`R////}}J////Rs}f7R/'z`RR///.RR'}r`RTTRTcRRJ@@RjRjRbRb}RRRRRRRR}R555RRaRt;Q'RRRRRRR}}^G^dRRR::R'aHRR_R:RGR R~RJ}'/'}'}^TTT@X}Tg^GX^//LBRRf,4$R'_zRf4L}`ReT'sR^G^5/RRwRRvvvR;nRL5s/<\R&Rx9\RK$= D]$>BCHIJKRT  UV--WEEXNNYTTZYY[aa\ll]vv^{{_`bf iJqLm??BBEE**--st!&)159=B x y = = E H J L O O R W ^ ^ b b f g i k m m o s v y _ _ZZ\] _o"qr356 ; CRef9:gQQi[[jeek  !" &,28>DJPH  &,28>DJPV\bhntz $*06<DJPV\bhntz $*06<BHNTZ`flrx~ $*06<BHNTZ`flrx~ &,28>DJPV\bhntz     $ * 0 6 < B H N T Z ` f l r x ~      & , 2 8 > D J P V \ b h n t z     " ( . 4 : @ F L R X ^ d j p v |     $ * 0 6 < B H N T Z ` f l r x ~     $ * 0 6 < B H N T Z ` f l r x ~  &,28>DJPV\bhntz &,28>DJPV\bhntzL\/.*s''}srJ{#{{;j{//{{s{ {o{{'{}{^{G{b{`{{'{{}}{Q{{{{}{\LX;\//''{ssr`{{{'{{{./'}{r`{{T{{{{c{R{R{J|@{@{{{jj{{b{b{}{/{{{{{{{{}{{{3{33{^{a{p{{;{Q{'{{{}{}{^{G{^d{{{{{::'a{H{{/{{j:{G{ J{~^{}J|E{}{{{{E}{p{{t{}{j{{{b{{^{~~{}{t{^{{{{/'{{{H/O'oYNsT{a{E{{{{@{{t{{{{}{{{{T{`{kb{{K{{{{{{{{t{{'{///{{4{'}{{{O{t{t{e{sK{{{{'}{E{b{{{{^{{{T{{TT{{@{{{{{}{{{{{{{{{T{g{b{^{G{{{{^{{LBRf,4${' _zf4DL}1{`{e**}T{{'s^{G{^{{{3{/ {0{w{{v{vqv{*\;{n{{L5s/<\&Rx9{\{{{{{{n$= D]$>?ABCDFG  HI55JBBKEELHIMNNOPPPRVQXYV[]X__[aa\ff]ij^lp`txe{{jkl pJxLm>V\]aacceeggoo|   -568<!">%-@77IDDJOOKUULYYMstNPQSTU&V)2_59i<BnFFu = =v E Hw J L{ O O~ R W ^ ^ b b f g i k m m o s v y _ _Zrzz  8:QQ[[__bcee  "# 4 :)0;< "*28>DLRX^djpv| "(.4:@FLRX^d{{{{{{{{{{{{{{{{{{orr{r{{{{{{{{{{{{{{{{{{{{{{{ {{{{{{{{{{{{{{&!0#5PKr9KD &&K9a}au9aauaau/&DaDDkkDDDDkDD)ak}/DDa9}D}&&9}k}k}&D aDY}aaauNaaau}}k}ka aakkAk&k}}DHVaD)kkDN9a}au9aau/9a}au9aau/9a}au9aau/&kD&9a}au9aau/9a}a9aa/D?}DVD aDKr9KD &&Kk}k&/<&O$$%%&&''))**++-- .. // 22 33 445566778899::;;<<==HHIINNQQRRUUYYZZ[[ \\!mm"}}#$%&%'( )*+!!,,-((. /  0  ""&&100::?? 2 3 4$$%%&&''))** ++-- ./22 3344 5566 778899::;;<<==DDFFGGHHIIJKLLOOPPQQRRTTUUVV WW!XX"YY#ZZ$[[%\\&mm'}}()* ++,,-../"/&&010101234352678888393:;;  3<3<=<;    !! "" ## $$>%%5&&''!((?++@--@//@0011"33@55@66A77B88C99D::??4EFEF G43H4IJ 3 3A 4 4K 5 5L 6 6B 7 7A 8 8B C D M N O^$%&')*+-./23456789:;<=HINQRUYZ[\m}  "&0:?  T DFLT>arabJarmncyrlgrekhebrlao latnnko .tfng@KUR SND (URD (  MKD SRB  (ISM :KSM :LSM :NSM :SKS :SSM :   aaltaaltaaltccmpccmpccmpdligdligdligfinafinahlighliginitinitligaliga ligaloclloclmedi"medi(rlig.rlig8salt@saltFsaltL    !DLT\dlt| $,4<DTdh l  R  : ~ " V     8  : J Z    D H L j       B%  %%>9LM *_ { 4 5 6 7 i$=EEGGIIKKLMNOWW      ""$$&&((**,,..0022446688:;==??AAHHRRTTVV  **__ { { 4 7 &   &v6Pblv",6PZd> =< U ? @ A B  TC D E  F +G  V H I J K L M  W N O P Q R 98S - ;:!#$&')*+,-0Ra, Borux{~D  $(,024nfZ%(^jb+.~z1ZRrvT4W\8PR[vw#y%Bpsvy|l3 "&*.6!ph\'*`ld-0|3txV#6Y <<>>@DIPRXZ[vwy)1Bqtwz}l3  !%)-5 og[&)_kc,/{2swU"5X <<>>@DIPRXZ[vwy)12  iblb lai^^ab~&8Jlgbhb mejb nekb k`j_h]g\ n`m_\]_`be =>!"> $;97<:8!"J 8 "(#IO"IL!O LI #O"LIRl$*06<cba`_^]\;f9e8d &,cba`_\:e<e=QY[X6 , *('&)%WV$WA(:FPZfr "   " u$; &V Z0 [(/ ;F AX @R")567DF    _^`\]ba28?EMS_^`\]ba28?EMS 8D eQ[8,-DO  eQ[,-O %        _!9:bc`a LM *_ { 33f . `)PfEd@ m,, `~OSXbu~#V_ :UZot?5JR>PjGv#.[jx{EMWY[]} ' d q ! !I!K!N!"""###!#(#,#u#z#}######$#$i&&'' '''K'M'R'V'^'''''()) )A))))***/***++#,o,w,y,}-e-o...MGMQU)3?KO6<>ADO#t QW\tz 1Ya !@Z`ty? 7LT@RtFn&0]w{ HPY[]_ * j t !! !K!N!S!"""###$#+#s#z#}######$"$`%&''' ')'M'O'V'X'a''''')) )@))))** */*}**++ ,`,q,y,{-0-o...MDLPT&08FN8>@CFR pvvtsrMKC>' XWUTRLKJIHFEDBA@>l@PRjtFGnv#3&.A0[J]jvwx{{ O   E HM PW YY [[ ]] _}   Q ` n t  ' * d j q t   4 6 8 :!! ;! !I E!K!K !N!N !S! !" "" "" "# ## 1##! 3#$#( 9#+#, >#s#u @#z#z C#}#} D## E## F## G## [## ]## ^$"$# _$`$i a%& k&&'''' ' ''#')'K?'M'Mb'O'Rc'V'Vg'X'^h'a'o'''''''''())) ) )@)A))))))))*** **/*/*}***,**9++;+ +#V,`,oZ,q,wj,y,yq,{,}r-0-eu-o-o......MMDGLMPQTU&)038?FK NO&6+8<E>>J@AKCDMFOORY #ptv?@VE89;>@DFFJPRkՠ   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a rdei xpk \vj Fs gw * 9 7M Sl|6cn BT p .m} b 5: *  ! y qz5fqu-J3T99NR7s`s3VV9s3D{o{RoHT3fs +b-{T#\q#H99`#fy```{w``b{{Rffw;{J/}oo5jo{-{T7fD)fs, %Id@QX Y!-,%Id@QX Y!-,  P y PXY%%# P y PXY%-,KPX EDY!-,%E`D-,KSX%%EDY!!-,ED-,%%I%%I` ch #:e:-ff@ /10!%!!fsr)5 5@ K TX8Y<2991/0 P ]%3#3#5qeB@KTKT[X8Y1<20@0 @ P ` p ]#!#o$++`@1      91/<<<<<<<2220@   ]!! !3!!!!#!#!5!!5!T%Dh$ig8R>hggh`TifaabbNm!(/@U" '&( /)/))/B" ) *!#*- ) " & 0K TX8YK TKT[KT[X@8Y<<<1/299990KSX99Y"#.'5.546753.'>54&dijfod]SS\dtzq{---@A$*.U# jXV`OnZXhq) #'3@6$%&%&'$'B .$ &($4'!%   ! + 1 4K TK T[K T[KT[KT[K T[X18Y9912<0KSXY""32654&'2#"&546"32654&%3#2#"&546WccWUccUVcbWWcd1Zܻۻa ۻۼ 0@      !         B  (('+'$ .  .'.'!!199999991/9990KSX99999999Y"2]@ " ) **&:4D ^YZ UZZY0g{ "-  ' (   2'') #**(/2; 49?2J LKFO2VZ Y UY\_2j i`2uy z 2229]]3267 >73#'#"5467.54632.#"[UԠ_I{;B h]hΆ02޸SUWDi;#QX?@Yr~YW׀c?}<$$/1oX3go7@ KTKT[X8Y10@ @P`p]#o+{ 7@  KTX 8YKTX @8Y29910#&547{>;o @ <99103#654<:=JN@,       <2<2991<22990 %#'-73%g:r:g:PrPbybcy #@   <<1/<<0!!#!5!-Ө-Ӫ--@ 1073#ӤR@d10!!d1/073#B-@B/9910KSXY"3#m #@  10"32'2#"  P3343ssyzZ @@B  KTX@8Y1/20KSXY"]7!5%3!!JeJsHHժJ@'B   KTKT[KT[X8Y91/20KSX9Y"@2UVVzzvtvust]]%!!567>54&#"5>32Ls3aM_xzXE[w:mIwBC12\ps(p@.    #)&  )KTKT[X 8Y99190@ daa d!]!"&'532654&+532654&#"5>32?^jTmǹSrsY %Đ%%12wps{$& Ѳ|d @   B    K TK T[X 8Y<291/<290KSXY"@* *HYiw+&+6NO O Vfuz ]] !33##!55^%3`d^@#    KTKT[X8YKTX@8Y190!!>32!"&'532654&#",X,$^hZkʭQTժ 10$& $X@$  "% " !%190@]]"32654&.#">32# !2 LL;kPL;y$&W]ybhc@B991/0KSXY"KTX@878Y@X9Hg]]!#!3V+ #/C@% '-'0 $*$ !0991990"32654&%.54$32#"$54632654&#"HŚV г "Əُattt$X@# %!"" %190@]]7532#"543 !"&2654&#"LK:lL>$& V\s[#@<21/073#3### %@  <2103#3#ӤR#٬@^M@*B$#29190KSXY" 5Ѧ`@ #<210!!!!^O@+B$#<9190KSXY"55//m$e@+$     &%K TX8Y99991/9990y z z ]%3##546?>54&#"5>32ſ8ZZ93lOa^gHZX/'eVY5^1YnFC98ŸLVV/5<4q L@2  L4307$7CM34( (+(I+*(I,=M<9912990K TK T[KT[KT[KT[XMMM@878Y@ NN/N?N]32654&#"#"&5463253>54&'&$#"3267#"$'&5476$32|{zy!orqp ˘s'6@   0210].# !267# !2'ffjzSb_^^_HHghG.@   2 99991/0`]3 !%! )5BhPa/w.,~ .@   21/0 ]!!!!!!9>ժF# )@ 21/0 ]!!!!#ZpPժH7s9@ 43 1990%!5!# !2.# !26uu^opkSUmnHF_`%; ,@ 8  221/<20P ]3!3#!#"d+9.KTX@8Y1/0@ 0@P`]3#+f B@  9 KTX@8Y991990@ 0 @ P ` ]3+53265M?nj @(B  291/<290KSXY"]@ ((764GFCUgvw    (+*66650 A@E@@@ b`hgwp  ,]q]q3! !#3wH1j%@ :1/0@ 0P]3!!_ժ @4  B    >  91/<290KSXY"p]@V   && & 45 i|{y   #,'( 4<VY ej vy ]]! !###-}-+3 y@B6 991/<2990KSXY" ]@068HGif FIWXeiy ]]!3!#j+s #@  310"32' ! ':xyLHH[[bb:@   ? 291/0@ ?_]32654&#%!2+#8/ϒs R@*  B     39991990KSX9Y""32#'# ! '? !#y;:xLHHab[T@5  B    ?  299991/<9990KSX9Y"@]@Bz%%%&'&&& 66FFhuuw]]#.+#! 32654&#A{>ٿJx~hb؍O'~@<    B %( "-"(9999190KSX99Y")])/)O)].#"!"&'532654&/.54$32Hs_wzj{r{i76vce+ٶ0/EF~n|-&J@@@1/20K TX@878Y@  @ p ]!!#!ժ+)@@   8AKTX8Y1299990]332653! ˮ®u\*$h@'B91/290KSXY"P]@b*GGZ} *&&))% 833<<7HEEIIGYVfiizvvyyu)]]!3 3J+D {@I      B     91/<2290KSXY"]@  ($ >>4 0 LMB @ Yjkg ` {|      !   # $ %  <:5306 9 ? 0FFJ@E@BBB@@ D M @@XVY Pfgab```d d d wv{xwtyywpx   []]3 3 3# #D:9:9+=; f@  1 ]@ /<20KBPX@   @    Y3 3 # #su \Y+3{@(B@@ 91/290KSXY" ]@<5000F@@@QQQe &)78@ ghxp ]]3 3#f9\ @BB K TK T[X8Y991/0KSXY"@@ )&8HGH    / 59? GJO UYfio wx ]]!!!5!sP=g՚oX;@CK TX@8YKTKT[X8Y210!#3!XB-@B/9910KSXY"#mo0@CKTKT[X@8Y<10!53#5oXޏ@ 91290 # #HHu-10!5f1@ D10K TKT[X@878Y #ofv{-{ %@'   #   E&22991/9990@n0000 0!0"?'@@@@ @!@"PPPP P!P"P'p' !"'''000 0!@@@ @!PPP P!``` `!ppp p! !]]"326=7#5#"&5463!54&#"5>32߬o?`TeZ3f{bsٴ)Lfa..'' 8@  G F221/0`]4&#"326>32#"&'#3姒:{{:/Rdaadq{?@  HE210@ ].#"3267#"!2NPƳPNM]-U5++++$$>:#qZ8@G E221/0`]3#5#"3232654&#":||ǧ^daDDaq{p@$   KE9190@)?p?????,// , ooooo ]q]!3267# 32.#" ͷjbck)^Z44*,8 Cė/Y@     LK TX @8YKTX 8Y<<991/22990@P]#"!!##535463cM/ѹPhc/яNqVZ{ (J@#  &#' & G E)221/990`***]4&#"326!"&'5326=#"3253aQQR9||9=,*[cb::bcd4@  N  F21/<90`]#4&#"#3>32d||Bu\edy+@F<21/0@  @ P ` p ]3#3#`Vy D@   O  F<2991990@ @P`p]3+532653#F1iL`a( @)B F 291/<90KSXY" ]@_ ')+Vfgsw    ('(++@ h` ]q]33 ##%kǹi#y"F1/0@ @P`p]3#{"Z@&   PPF#291/<<<290@0$P$p$$$$$$$ ]>32#4&#"#4&#"#3>32)Erurw?yz|v\`gb|d{6@  N  F21/<90`]#4&#"#3>32d||Bu\`edqu{ J@  QE10@#?{{   {  {]"32654&'2#"s98V{>@ GF2210@ `]%#3>32#"&4&#"326s:{{8 daaqVZ{ >@   GE2210@ `]32654&#"#"3253#/s:||:/daDDadJ{0@    F21/90P].#"#3>32JI,:.˾`fco{'@<  S  SB %( R"E(9999190KSX99Y"']@m   . , , , ; ; ; ; $( ( *//*(() )!$'      '/)?)_))))))]]q.#"#"&'532654&/.54632NZb?ĥZlfae@f?((TT@I!*##55YQKP%$78@  F<<2991/<2990]!!;#"&5#53w{KsբN`>X`;@    NF921/290o]332653#5#"&||Cua{fc=`@'BK TX@8YKTKT[X8Y91/290KSXY"@Hj{  &&)) 55::0FFIIFH@VVYYPffiigh`ut{{uz>]]3 3#=^^\`TV5` @IU U U U   B     K TKT[KT[KT[K T[X@8YK TK T[KT[X8Y91/<2290KSXY"@" 5 IIF @ [[U P nnf yy          %%#'!%""%' $ ! # 9669 0FHF@B@@@D D D @@VVVPQRRPS T U cdejejjjn a g ouuy}x}zzxy  { v } @/   y]]333# #V`jjj;y` C@F      B   K TKT[KT[KT[X@8YKTX8Y91/<290KSXY"@   & =1 UWX f vzvt        )&% * :9746 9 0 IFE J @ YVYYWVYVV Y P o x  /]] # # 3 dkr))`HJq=V`@C        B     K TKT[X @8YKTX 8Y9129990KSX2Y"@     # 5 I O N Z Z j        '$$  )( % $ $ ' ** 755008 6 6 8 990A@@@@@@@@B E G II@TQQUPPVUVW W U U YYPffh ii`{xx   e]]+5326?3 3N|lLT3!;^^hzHTNlX` @B K TK T[X8YKTX@8Y2991/0KSXY"@B&GI  + 690 @@E@@CWY_ ``f``b ]]!!!5!qjL}e`ۓ%$w@4 %   !  % $  C %K TX@8Y<<29999999199999990&]#"&=4&+5326=46;#"3>l==k>DV[noZVtsݓXX10#$@6%   #%#C %K TX8YKTX@8Y<2<9999999199999990&]326=467.=4&+532;#"+FUZooZUF?l>>l?VWstݔ1#@  1990#"'&'&'&#"5>32326ian ^Xbian ^V1OD;>MSOE<>L5 b@ <2991/0K TX @ 878YKTKT[KT[X  @878Y P ]#53#3+e#!Q@+     "  "<<<221<9990%.'>7#&73JDFHAMf fIX⸹)**'# 32!b`@!    <<1/2<2990K TX@878Y66].#"!!!!53#535632NL=ty-=))׏/я^R#/@I -'! - -'!0 *$0* $ $(st*(s099999999919999999907'#"&''7.5467'7>324&#"326{r%$&(r;t=:x=q%%&&s7t@?s9q(&%%s>v:@t8s'%$|pprR@F  B     fe f e<2299991/2<2<290KSXY"K TX@878Y@(' ' ')((79  ]]!#!5!5'!5!3 3!!!c`Tþ{yT9{3{JD{3@ <210##  \= >@54&.#"#"&'532654/.5467.54632{?>?>S8alӃ\]>9̭IXW:fqր][;;ȦI.Z.L-[.K''PGZsweZ54m@''TLf{xf[1,pEF)@dd1<20K TK T[X@878YK TK T[KT[KT[X@878YKTKT[X@878Y@````pppp]3#%3#^y/IC@&=>:A$104G$ 7aD=0^* D^ J21/02#"$'&5476$"3267>54&'..#"3267#"&54632mmllmmmmllmm^^``^^⃄^]]^\^BB@zBCFInmmmmnnmmmmng^^^傁^^__^]⃅]^^! "s;)_@3(%%  * "(kl"k *22999199990!!#5#"&546;54&#"5>32"326=P,]uu>DIE~bRhP{@p?Dq[[""CO@Mr%# @I    B   o o n<2991<2990KSXY" 5 5%-+#-+#RR^@ 10!#!^d10!!d/8L`@6EBC?2H09JC 9 $HE301B54&'.'2#"$'&5476$#32654&'2#'.+#^^``^^⃄^]]^\^ㄘmmllmmmmllmm}{{nWXfi`C.;I6Bf^^^傁^^__^]⃅]^^gnmmmmnnmmmmnb>KL?gwyVpMI`3Db+/10K TKT[X@878Y!!Vu=  @  Z[Z10"32654&'2#"&546PnnPPnoO@v+..ooPOmmOOp1.-rB .@     <2<21/<<0!!#!5!!!-Ө-}}^J@$}}B ~9190KSX2Y"!!56754&#"5>32 "?XhU4zHM98rn81^BQ##{l0b(H@'    #)~&~ )999190#"&'532654&+532654&#"5>32 \e9}F4wCmxolV^^ad_(fQI7Z`mR|yOFJLl?<:=svcE`sRf1@ D10K TKT[X@878Y3#fV` M@%  !   NF!2912<990"`""]3326533267#"&'#"&'#% )I#ER2bf*V H<9 NPOONN;9 %@]] 91290!###.54$yfNݸHF103#F#u@  ' 1/90!#"&'532654&'T76xv.W+"J/;<+->i0Y[ 0.W= ,@   |]|| 12035733! c)t'+n`d.@  klk 9910!!2#"&546"32654&PXγгi~hi}|P{ݿܾsH# @I  B   o op<<991<2990KSXY"5 %5 +-+-#^R^  ^R^  &{' d =5?&{'td =5b&u' d =5 $@/  !# #%" " "!& %999919990KTKT[KT[X%%%@878Y@ ttttv]33267#"&546?>7>5#537ZZ:3mN`^gIYX0&DeWX5^1YnFC98ŸLVV/5<6hk&$ uhk&$ uhm&$ u  +@ ]1h^&$ u #+@ @O# /#]1hN&$u  +@ 0?  ]1hm !@T   !!  ! !!!B     !  VV!"2299999991/<9990KSXY" #]@  s P#f iu {yyv v!# ]]4&#"326!.54632#!#TY?@WX??Y!X=>sr?<҈_Z?YWA?XXN)sIsrFv)H@9  B     <291/<0KSXY"]@gww  ]!!!!!!#!59=qժF՞su'&&z-k&( uk&( um&( u@@ ]1N&(u @@ @]1;k&, /uk&, /u`m&, /u +1XN&,/u +1  g@    2  y<291/220@(   ]]! )#53!!3 !iP`P5~.,3^&1 u"+@ 0?""]1sk&2 'usk&2 'usm&2 'u+@]1s^&2 'u!0 +@ 0!?0 !/0!0]1sN&2'u +@ @O]1? @M    B   <291<290KSXY"  ' 7 7w55v8vL57y5yy5f +@< +,  )&  *&& &,+,* # )#3,99999999199999990@*WZWU!je!{vu! FYVjddj(|svz( ]] 324&'.#"&5!27!"&''3>_'y=_''NOy;WfNPƀ[gX@CHp@CpDfbMKYg[KKX)k&8 u)k&8 u)m&8 u +@ / ]1)N&8u +@P_@O /]1k&< su =@   ? 2291/0@ ?_]332+#32654&#'ђ/@0-'!  **.  !' $'$-F099991/990@@'(     ! "&  : :!MM I!I"jj  ]]4632#"&'532654&/.5467.#"#:A9`@IPAtx;e\`Wqqs`/Q*%jd_[?T>7;[gp{-f&DCR @?&/&&]1{-f&DvR @?&/&&]1{-f&DR (,+1{-7&DR.< +@ ./<.<]1{-&DjR -( +@(o(P-_(@-O(0-?(-( ]1{-&DR%@&,,& 2882 ++1@ ?5?/5/]0{o{3>@C'-%= 4%:.-*1 %?47&%7& =&-7"E?<9999912<<29990@0+0,0-0.0/00@+@,@-@.@/@0P+P,P-P.P/P0+0@@@@@@@@@??? ??0,0-0.0/@,@-@.@/P,P-P.P/ooo oo`,`-`.`/p,p-p.p/,-./]q].#">32!3267#"&'#"&5463!54&#"5>32"326=DJԄ ̷hddjMI؏`TeZ߬o0Z^Z55*,ywxx..''`f{bsٴ)qu{&Fzqf&HCqf&Hvqf&H"+1q&Hj@@ ]1f'Cof'v\f& +1F&j +1qu('@^%{&%#${##{#({'(#&'('%$%(('"#" ! B('&%"! ## #)&' ! (%#" QE)999999919990KSXY"?*]@v%+("/#/$)%-&-'*(6%F%X X!` `!f"u u!u"%#%$&&&''(6$6%F$E%Z Z!b b!z{     {zzv v!x"**']].#"32654&#"432''%'3%F2X)6 ~r4*!M!ü޼z&77kc\̑oabd7&Qquf&RCsquf&Rvsquf&Rs+1qu7&Rs .+@ /. .]1qu&Rjs +@ @O0?]1o )@ r <<103#3#!!oAH +@<+,&  )&  *&& &,+,* # #Q)E,22999999199999990@p(?-YVUV jf!{    { z{ {!"#$%{&%--&YVUZ(ifej(ztvz($$]] 32654&'.#".5327#"&'')gA\*g>}66]C_56`?`!*(Ou))Hn.Mw834OMx43NXf&XC{Xf&Xv{Xf&X{ +1X&Xj{ +@ @O0?]1=Vf&\v^V>@ GF2210@ `]%#3>32#"&4&#"326s:{{8daa=V&\j^+@ 0? /]1h1'q;$ +@@O]1{-&qJD+@o]1h'J$+1@oo]0{-&OD"+1u&${u{&Ds'k&& -uqf&Fvs'm' Lu& <=/1qf&Fs'P&&Luq&Fs'm&& -u@]1qf&F&' q&G @_?]1 q$J@$ "    GE%<<1/<20`&&&]!5!533##5#"3232654&#"F:||ǧN}}daDDa3&(q=q'qH@p]1m'u(@@]1qH'H@p]1P&(uq&Hu&(qu{&Hxg&( o@@ ]1qa&H!+@!]1sm' \u* <=/1qVZf&hJ  <=/1sm&*uqVZH&JsP'\u*@?]0qVZ&hJs'^*qVZ4' J;m' u+ +@ / ]1dm' uK*+1KQX88Y@ @@]:@    8 22221/<2222203!533##!##53!5qʨ"ʨ9Qx>@!   N  2221/<2290#4&#"##5353!!>32||}}`Bu\zzedx^' .u, +1g7'+1Y1'q.;,+1H'q+1gm'.u,+1VH'+1u%'d,u 'JLP&,/u<<1??]0y`,@ F91/0@4D@P`p]3#\`{f'-\,@1V'M8L@F1f_m' .u-+1V\f'+1j' .' N` @(B F 291/<290KSXY" ]@_ ')+Vfgsw    ('(++@ h` ]q]33 ##%kǹ`!jl' nv/Jl' ZvO<1KQX@8Y@O]0j' /' O@@]1j'/'9O @]1j'y1w/'ysOK QKSKQZ[X@8Y1u ?@   : y<<991/900P]3%!!'79Pw^Mo;jnH ^@  z z <<991/90KTX @ 878Y@ @ P ` sz p ]37#'7Ǹ}Lɸ{JZjXj3l' v1@O]1dm&vBQ @?O]13' 1d{' Q3_&1 g +@ /  ]1df&Q +@]1'QU~V;@  AKTX8Y21@ /0!"#367632+53265PͳNijQRW1fOCCoa`ZVd{;@  NF 21/90`!!]+5327654&#"#367632dRQi&&||BYZuccH``01`e22wxs1'q';2 +@]1qu&qsR+1sm''u2+@]1quH&sR#+1sk''u2quf'Rs ;@   299991/220!!!!! !# !39OAg@AժF|pm|q{'3@1 . ("%4"1 K1 Q+E499912<2290@%?5_5p55555????? ooooo ]q].#"!3267#"&'#"32>32%"32654& H ̷jbdjQGьBN5Z44*,nmnm98olkp݇Tl' v5m&vBUT' 5J{' UT_&5 }g@_]0Zf&U +@]1l' v6om&vBVm' u6  ))Ic:1of&%V  ))Ic:1u&6zou{&Vzm&6 u + ""Ic:1of&V + ""Ic:1u&zP77u&zW_&7 sg +1@_]07&W7p@]1F@   @ @ <<1/2<20@@p ]!!!!#!5!!  ժA@7C@  F<<2<<2991/<<<20]!!3#;#"'&=#535#53w{%&sQQ''PO>)^' u8 '+@ ]1X7'X&+1)1'q;8 +@ / ]1X'qX+1)m'u8+@]1XH'X+1)o&8iX&X| @@@!]1)k'u8^f'Xe)&8u`&X'Dt' |:+1V5m'EZ+1t' r|< +1=Vm&^\+1N&<su +1\l' v=Xm&vB]\N's=X&]\m&= uXf&] +@ ]1/#@  L<1/0!##53546;#"c'&яN()g ,D@% ")%,$'".EG* ,(%#'F-<2221/<204'&#"327667632#"'&'##5353!!STTSSTTS:YX{{XY:E/tssttsstRd0110d}}P)C@#   . *29991/90"]!2654&#!2654&#%!2#!"#546D+ |v݇f>orqp ˘0_i1F&8@# (EGF'221/067632#"'&'#!%4'&#"3276s:YX{{XY:NkrSTTSSTTSd0110dtssttsst 3@  . /21@  / 9/04'&#!!276!2#!#ONDNO|N8DCDCD>@  G /221@  /ij9/0>32#"&'##34&#"326s:{{:"QrdaadDs'0@  0 <10>3 !"&'53 !"shSzjffbGGaaHH_^9'(9^_sZd$D@"! %  %  0%210&&].# !267# !2676;#"'ffjzS` SfM?nb_^^_HHgh$bzq"N@$ ## HE#210@ $$$$$].#"3267#"!2546;#"NPƳPNM]-GFE0iL~++++$$>: a .@   2 99991/0`]3 !%! )"#5465BhPav/w.,~0_i1F.@  .21@   /0)!"!!"$54$3!!@DNN|#+qZ?@G E221/0` ]5!#5#"3232654&#" M:||:ndaDDadqVuc'T@ )E Q E(]99@   (99@%S 910%!"'53254%&'&326&#">kGxfu'~@3cnBOFFu\0%p9 *E +@    21@ /0!5!!5!!5E>9+uD@& 39190!!"56$3 ! 7327upo^   2`_FHg[{(@@$ )) #)* &)190.54$32.#";#"3267# $546؃ YsrSǾmTj^У%!| &${spw21%%ݐf#A@  2991990 ]!!!!+53265ZpPM?nժHVe@#   LK TX@8YKTX8Y<<9912299990@P]#"!!+53265#535463cM/ѮcMPhc뻫Ph*Nsd&I@43! F'1@'$$'990%!5!# !246;#".# !26uu^[DM?npkSUmnꪖ_`%Rv%@ 'P $&]ĵ 91@ %$&222990@ #%$$<<$#$%#@$"! #9927654'&'3#"'&5476736,3,,3,6hC.KddK.Ch B9Iy\\yI9B z^ȮwBAWWABw1G*O@, *&NF+291@ '&&  #/<<9990%27654'&'5+"&54&#"#3>323LTWJ>ymoF||BuLibep_!edg .@  KTX@8Y991/9903;#"&n?M-– R E@   >f3@)B 6  999991/299990KSXY" ]@068HGif FIWXeiy]]!3!+53265jG?n+Vd{Ds 1@ 3221@   0! ! "!&32sy:;x Vb[[z=g&24v'X Rs3@ !  <1/0!4&#! !2!2"327&nzy;pa'Xܯ–bb-LgFqVY{!:@ """# E"9104'&##"3232"327&&&idRصRQ@TVt1098``:6:@   ? 291/0@ ?_]32654&#%!2+#"#5468ʄv/ϒ0_i1FV$O@$#% %G  F%22991990@ `&&&&]%#46;#">32#"&4&#"326siL:{{8(adaaTV@  ?  2299991@  /9990@ @u|]#.+#33 326&#A{>ٿJx~hb؍Oђ r!d@ -" "99991@B!  "90KSX@ Y6 327# '&546?6764'& {璑z<;YZL-|숋_ppٶ+23@@md{'@  !! RE(99991@ '$$(90@S !S BKSX99Y"]@/)?)_))))))]@% '$&((*//*( ( ))$]@.,,,;;;; q>323267#"&546?>54&#"Lf@eaflZ?bZN?$%PKQY55##*!I@TT((0V6@   O 221@   <20;#"&5# 54!23%&'&#"3wMc/R5!n|wj=hP`@o,0A37V?@ F<<291@/<2990!!;+53276="&5#53w{KsF0j&&էN01`>X@ @  991/2990K TX@878Y@@p ]!!##"#546;^vժ+Zi1F7I@  F<<2291@  /<299990]!!;#"&5#53546;#"w{KsբcMcN`NQfT@ @@ 120K TX@878Y@@p ]!!;#"&!n?Nժ=–_&84i' XN:@!3   1@   <2220!! 47!5!3254'5!X ƱXw>*a"Lav-@   /<91@ 0%254'&'5!'&'&33cAnMagn"ʦmWDtz–d@  @ @99/1@  /9990@        BKSXY""#3 632#54&9%NZUUIG9\[ny6P=V{j@  K TKT[X @8YKTX 8Y9991@:        B    9990KSX2Y"@      '$$  )( % $ $ ' 755008 6 6 8 A@@@@@@@@B E G TQQUPPVUVW W U U ffh { F]@%     # 5 I O N Z Z j ]+5326?3 67632#54&#"N|lLT3!;^0XQ99) hzHTN43`rr:T*\@5    B  B K TK T[X 8Y9991/<20KSX<<<323#L:s_%'ST_ijxzX"Jh0@umHLIwKK!!C12\RI`1]5@ F1@  0 4&#!!!%$ $5& )sQ;-%,%hV)$yhL?`3@  F1@ 203 4&#!!!32!"'hi;-ԧc%,&cV)$yJX$!"'&'5327674'&+#5333!plnUQQLITNPc9:V>}ws}#(rAbLrV{@@  F221@ B 0KSXY#36763254'&#"s4QҸMNr98xܭz BR1pqWBAV&@ F10@ @P`p]3#V''V:@    <<2<<219/<2<203!!!!#!5!5!5!s____,Ԫ m'?' f'@'qf'@Gf$'-/V'Me/V'MvOf'-_1V'M>1V'MeQhm&$ u<1{-f&DZ +'+1`m&, /u  Ic:1^f&  Ic:1sm&2 'uquf&Rv <1)m&8 u<1Xf&Xv  Ic:1)3&;08X1'q{;)Z&8>6X"&X>)Z&8C0X"&XC)`&8?0X"&X?q{h3&$;{-1&qR;h3&$={-&D=H4'q>{o'qs%T@!$"43 &<1@"#%&99ܰ KTX"@8Y<203## !2.# !2675#535!5yyuu^opkC XSUmnHF_`%'XqV{ 4X@"2% G,E5221@ #% ) 2/3 &)/99<20`666]4&#"3263#!"&'532767!5!6=#"3253:aQQRZ9||9=nXF]@,*_EG^[cb::bcsm&* Ju!<@!T!$!]1qVZc&JJjm' u.m&N u* +1KQX88Y@ @@]se'42qeu{'Rse1'q';qeu&qsm' uyXL/f&TVdf'%  Ic:1 '=' ']'q']Gsl' v*qVZc&Jv-5@8221@ /203!327653! '&5!#>=B>d`gd"dPNOKZ߀xxv 9V@@  221@ B 0KSXY%#3676324'&#"8WST=<HW5xz7 GF3k' u1dd&QChs& \}{s& }Hl' \v{oc&vefl' vHc&vhp&$z{-d'Dh6&$>{-H'eDp&(zqc'H6&(>qH'Hsp&,Yzc'fw6&,>>UH'$sp&2Azqud'Rs6&2>quH'RTp&5yzJc'%UT6&5>^H'-U)p&8zXd'X)6&8>XH'X'v6o{',V'S77'WRs16767654&#"5767654'&"567632¥~b[?FjOQ_ciqYxw`eGRxQYڵ@XKy^qjj=vX{5?:.PB*8hicqMmwqڎ{\(GO{36767654'&#"5767654'&#"0567632GrXBAR9?|cGIN`\hOm`bs[yx@Il|IPxģ3H2#PQ̝qpD(4%3254'"632!"'#67&5#"'&76323 76'& %44nI5"C0:XY|ˀ|YX:ST$TTTTT- H:E<$d0110d^jtssttssq% ;W@$3=E (B!8;7B/E<̲ ;]91@$3< ;<,<990" 7654&327654'&'52 '&54767&'&5476!˸jkkjpkk_;̨_`Lm䖋_``aCUtMMMMMN'|OEH-AA+Mdha "ccttttُcc"FYXSJqq 4C@6E B42()+&BE5221@4)".559920" 7654'& '&5467&'&5473327654'qSRRS SSSR:4HRQ;4?+IHIJ,MMMMMNMMJ@b@Y "ccttttُ"#VKYIAAAAAtw>\V@ B  K TK T[X 8Y991@ B  /0KSX@ Y@@ )&8HGH  /59?GJOUYfiowx]]+53276=!5!5!!Hri&&gPP%01oXV`@   K TK T[X 8YKTX @8YĴ@`]99Դ@`]1@ B  /0KSX@ Y@2&GI + 690EIWY_fh]]+53276=!5!5!!۞Hri&&5ejLP%01%hP&$@{-&D_u&(zqu{&Hz{s3&2;bqu1&qs;s3&2Biqu&RBsO''t2qu&sRs3&2=jqu1&qs;1'qr;<=V&q^\p\%3254'"632!"'#67&73%44nI5"C1- H:EVy` 8@   OF 991990@  @ P ` p ]3+53265F1iL`aq #/A@1E%G +G!E0<<<<1@( . /22220 6& 23632#"'#5#"'&76'&  7/ST$Trrrrˀ]STTSST$Tjtss ^ŨŢtsstjtssqV{ %/D@1E$G+G'E0<<<<1@ *.! 02<220'&  7"'##"'&763253632 6& STTSST$TrrˀrrST$TdtsstjtssRŢŪjtss|3 #!#'#7'7 3!Jafp|҈2F;R/o]jY'FF8O ",'&76!27&'!2767# '#&# rfuSv=:efc.1 tsfjwv9tFXh$xYv+!f //_H$$\/ح ]"+'7&576!27&'32767#"'&#"i`UUQ.-Y_vcPNONMRS]7GGcc^N lOU ^q+$Vqrg j ;@   : <<1/<20@ 0P]33#!!#53ʿ_w1##'!5!7 !4" gZ8f,i> XRBY bo{=4'&/&'&54632.#"3#"'&/&'&'&'53276 23@LLfLNZDE11?PS{W*L'TrGY$alfccaFF'K((%$JK((**T@%$!,KL[@~$=&[#5-,X3`!;#"'&/&+=!qjN\1*LlTrGY=Z^e`1~$=&[? %P6@ 9991@  /0##32654&+"56;2'񍚚EOZ*,FP{7@   991@  /032654'&#"5632##/dLUIVVN}AH+Fnt  (\@ #  . &%)<229991@(% #/99/<20*]!!!2654&#!2654&#%!2#!#53[D+ |迿ɐʇf>orqp ˘p _@ 8AKTX8Y<2<21@   29/<<2299990]3!33#! 5#53!3265˥ߦ®j*$}h)B33#!!!!#7#!#!AX .AA<VF㪾FqB&-1&'&'!3267#"'#&'&3273&#"#So+Jajbck{cPm!)81G\9/Zo Z 6Z44*,!  C "2JcfRY@    9 KTX@8Y<2991<2990@ 0@P`]#+53265#5333RM?nʿwHVS@$   OF<<22991<2990@ @P`p]33#+53265#533#F1iL`(aؤsf$C@$  %" %  %2299199053;#"&5# !232#"nEMMT–\\xEEqV@{$H@"%"%G E%229910`&&&]#"&=#"3253;32654&#"@F:||:Li1戮VּdaDDada= T @  ?  !<299991@!  B  /<229990KSX9Y"@"]@Bz%%%&'&&& "66FFhuuw]]#.+##53! 32654&#A{>ٿJxʿ~hbw؍OJ{=@ F<<<1@  /<20P]###533>32.#":.I,h<ĤfcΡ3!733!#!53!ٗ ٗwјv9 V`+5326?!533!33!+N|lLT3!øLùmhzHT33`{ ,@ .% F-22991@-&%"*-%  9990@1?$?%?&?'O$O%O&O'_$_%_&_'o$o%o&o'$%&'$%&']@+?#?$?%?&?'?(?)O#O$O%O&O'O(O)_#_$_%_&_'_(_)]2654'&#"367632#!3267#"&߬A@o\]?^^fe~ST`Te__Z+f{b:9ml)Lf01a```FE..'qZ{8@G E221/0`]53#5#"3232654&#":||ǧdaDDa{ 8@  G F221/0`]4&#"326>32#"&'#3姒:||:/Rdaad` $C@  !G! F%22991/0`&&&]4&#"326>32#"&'#46;#"姒:{{:Z[/Rdaad~Ӝ}}{ 0@ ! !"EH!<106763 #"'&'5327654'&#"LQQU]SRMNONPccccPNON5#$+qrrq+qs{'/O@( ,,H"E02991@.*%00@ 11111].#"67632#"'#47&'&!23254#"NPc'>IjJ?_SPI 9/-U:Me5++rQ,3H=Y}/)9DhQ#3 :#:9KqV@$K@$%"%OG E%221990`]#"&=#"323;32654&#"@F:||:Li1戮VּdaDDad^ؙa=q$=@" %%  GE%2210`]546;#"#5#"3232654&#"iL:||ǧadaDDaq{"r@ KE#91@  #90@)?$p$$$$?????,//,ooooo ]q]47632!"&'532767!7&'&#"qkcbdcjfg ]\RS^,*4cdWWZZq{A@$  KE91905!.#"5>3 #"73267qN ͷjbck 9Z44*,#ė|{ 4w@6.('4 KE5<Ķ&  91@/.'""5 5@  &"90@ 4 &'<<<<<%6'6'32#"'&'&'&5>3 73;#"'&5Nf  R`\Lladbck $˸&&i+@WR֊>8E#Z`vg'#d4*,#)u10`Z|B|*|>i@@603273;#"'&5|PUTZGUU]UTNHtCDFEwGQPabLq_&&i+@WR@\l%88ZX83,-F@.. NBj10`ZȦFq|/;@ 1 &,E01@00)0#90"327654'&+5327654'&'2# 76`cchҗUTNHtCDFEhqr<V`K@   OF<<22991<2990@ @P`p]33#+53265#53F1iL`(aؤqV 0U@)  &#-* *-+& G E122991/990`222]4&#"326!"&'5326=#"32546;#"aQQR9||9iL=,*[cb::bcaqVZ` #C@ # GE$21/990`%%%]!"326!"&'5326=#"43!aQQR9|=ͻ,*[cb:*qO{8@4 E1990%#5!#"!2.#"326Ae{-h]_cƳO|$$>:77>>`Rd`#y@ %  $ĵ 91@  $222  990<<<<< 3#"&54767327654'&'bB_j&;;&j_BC(::(xܱSccS$-EIdccdIE-`d`#y@ %  $ĵ 91@  $222  990<<<<< 3#"&54767327654'&'b)rG,EE,Gr)C'88'bLx>>xLb-!@2FF2@!-VX`9@     NF21290`]332653##"&||Cua{VfcdC@!   N  F2991/<9990`]#4&#"#46;#">32d||iMBu\~aedVd!J@%  " NF"2991/9990`#]+53265#"#46;#"632diLiMHa=~a >@    F<<<2221/<20@ @P`p]33###533#¸`<Ĥn`Ft` '@   221@   /2205!#3!53t褤K#<@ % V V$<<1@#! !//2<903327673#"'#&'&#"#67632= &}33[ &}33[ %$RIJ %$RIJLT5@  <2<1@ /9/<2033##4'# 7632&#"3=5*7M\TK9V_ (@  F 1@   990;#"&5y=x1F|t(L6$@#&#" F%<̲#91@B""  " /9/ 990@$#@  **8;ILT[q ]@$$%$$5$7E$FT$\ ]@    ]2!"'&'5327654'&+5!#3!CicUQ^cdjTmcd\[je8+lh%12KKKJ3Lb&^@PP F'<91@  #''<<<290@0(P(p((((((( ]%#"&5332765332653#5#"'&Cb`ruSSrw=ZXyzVUy=<b`^zbze32>>Vb&a@PP F'<91@  #''<<<290@0(P(p((((((( ]%#"&5332765332653##"'&Cb`ruSSrw=ZXyzVUy=<b`^zbzZe32>>V{0c@PP)%'F1291@ %*!*-(&/<<290@02P2p2222222 ]>32+5327654&#"#4'&#"#3>32)E__RQi&&ru99wSS?yzUV|v{zH``01NM_``gb>>Vk{Q@N O F2991@ /9@   990`]#4&#"+532653>32k||F1iLBu\satedVJ{;@ N  F21@   /  90&54&#"#3>32;#"R||Bu&&i1F``edH10d` y@BNF 991/<2990KSXY" ]@068HGif FIWXeiy ]]!3!##`ylqu{ ,@  Q E2210"!.265!2#"qt蔔98q$`I@  E2ij 991@   /<<@ 9/0!!!!! '&76!#";:E*%xxxx%`ݛlklm>|$2@ &E E%1@ #%<202765 26= "&'"&H`k&InI&k`B"F:.aע ģ0[1[0T\l6puypVa`/@   /2991@  /90%!"/32653#r%832JI,:.˾ fcVJ{:@  F2190P].#";#"&53>32JI,Li:.˾atfc~{%@ 21@  /29903!5346;#"iLAat~{%@ 1@  /29903!534&+532ʴLiAa`@4  B      F299991/<9990KSX9Y"@]@Bz%%%&'&&& 66FFhuuw]]#.+#!232654&#0s2âJ{Qpwu t]:'`iVNM``E@  F299991@  /29990332673#!32654&#Q{Jî2s0jp|Ɓuw`':]t i`MNVoV{0@C  S('  S'('B1 '(!.1' ($R$+E19999190KSX99Y"0].#"#"/;#"&=32654&/.54632NZb?ĥdXLie@f?((TT@I!* ajYQKP%$V4@ O F<22991@  99046;#"+5326cMF1iK»Ph)aV O@ !O F!<<229921@! ! !99<20546;#"3#+53265#53#5cMF1iK`NPh(aؤi7V5e"O 1@ 04&+532;#"&McKi1F(hPaV2@   O 221@  /<20!3## 54!346;#"#"3276w5RcMów|n!o@`Ph3A07^3@   /<<2991@  /<2990]!5!4&+5323#{Ksբ>`N7V=@   F<<2991<2990]!!;#"&5#53w{Liൣa>`C@     NF2221/222220` ]3!33##5#"&=#5!326:CuȮ||h=$#^lfk`8@   91/20@ 3 3#f%.]`8XV`@"B  OK TK T[X8YKTX@8Y2991/0KSXY"@B&GI + 690@@E@@CWY_``f``b]]!!;#"&=!5!qjLLi/F7e`ۧa%X`!@  "KTK T[X8YKTX@8Y299<21@  /<0@ BKSXY"@:&GI #+ #690#@@ECWY_#``fb###]]!367632+#47!5!3254qjL"TA`:&>R~ie8FX`ۢG7W9W`/=3<;4%6]XL/` @ "!̲91@B!  !9/ 990@ @  **8;ILT[q ]@  %$ 5 7E FT \ ]@    ]2!"'&'5327654'&+5!5!`q|/=@1 %,%E01@0 0"0( 90";#"327654'&% !"$5467&'&5476EwEFDCtHNTUhcc`a|p<:!a>>`V.9@ F<<991@   /<203#33## 54!3#"32767Ku_+xG`͋BA0 L` ## 33R9L T#`@ F1/03!!`3qV $C@  #%% "GE%2210@ `&&&&]32654&#"#"32546;#"#/s:||:iM/daDDadaX$L@ & %<<ij#1@  $! /<2KPXY032765&'&#"56763 3###53T?V:9cPONNLQQUmlprLbAr+#}swԤX$M@ &"#E%<<ij "#1@ $!# ##/<2KPXY0535&'&5476!2&'&#";3##plnUQQLNONPc9:V>ws}#+rAbLrq &) 76'& %3!!!+5#"'&7632/ST$TTTTT iL:XY|ˀ|YXjtssttssH^Lۓd0110MqL4@#5#"'&76323!2!"'&'5327654'&+5 76'& Z:XY|ˀ|YX:jejbVQ^cdjTmcd\]:ST$TTTTT3d0110d^L$8*mh%12KKKJjtssttssq 3: 76'& %%!332!##47!#5#"'&763233254#/ST$TTTTTghL<):XY|ˀ|YX:FXjtssttss_ 3<;4d0110d^6[7@F.#"#"'&'#"'&5#533!!;5327654'&/&'&54632NZED11?QR|{Za]gQQ{%&sfccaFF3,@LLf?((**T@%$!,KL[[!&PO`>''M5-,QK($)$JK7V&/!05476;#"+53276=#"'&5#53!3wxWQîc&'QRF1i&&QQ3%&sN[V((h)``01PO`>''7p-9D!6!2&'&#"63 #"'47!"'&5#533276'&#"&57!3w{UQQLNONPcccO+eKTIQQ;BS_r(ր%&sz#+qrfr v)2LOAPO`> 'KV ''/Vo5+5327654&#"#!##535476;#"!;67632oRQi&&||ӹWWc'&-BYZuccH``01/яNUV((hce22wx#5.#"#"'&'#34632327654'&/&'&NZDE11?PS{|Zb]hf8b_caFF2-@LL?((**T@%$!,KL[[!&2-,QK($)$JK @   F<2991@ B /0KSX@  Y@B &GI   + 09 @@@@@C EWY `````b f]]3!!!+iLLۓ6 333# #333# #6ttttU=63@    <2<21@  220!#!#!#!#6kkUXrXJ3@ NF 21@ 0%#"&54&+53232653#׃Li1FęaBþyVv!:@ #NF "21@" ""0%#"&54&+53232653;#"&'׃Li1FPh2FęaBþyfu0@ 32tNN^luu)qJy}wYYk\g88u:KSX@ 32tNN^lugrB0)qJy}wYYk\xkW6Vr88 #@<<1@03+5327653#zt43r,Bttx66XVru@ 1@ /0.#"#3>32.biuu$uT  qksa97H <1 /032653#5#"&'H.bitt$uT  qkJa97Hu' <1@  /<032653;#"&=#"&'H.bit0B,rg$uT  qkJ V6Xlx a97 !+33276?3327654'&+CFCDtk=%%(f{n!!"}K'))'K}N;[--s?5/.6 333# #6tt&+53276?331/.N]D0 {{bp"#WK/itf tf&  t  @ 10#5Rڬ@u1 ܴ? O ]ܶ ]<1ܲ]90526544u@XX@sPOOP{X@?X{POPPu1 @    ]<1 Բ]90"'&4763"3sPOOPs@XX@PPOP{X?@Xu+@ 91@   032765&'&#"567632#'y7$#?q22110335WDDFk[@*7K$@ ` XFh_@Cu-@ 91@   0#&'&547632&'&#"3kGDEW53301212q>$%6y[AmC@_hFX ` @$K7*@ 2% % g 25-5g'|?f=u912]90K TKT[X@878Y3# #fg|?fLu91<Բ]90K TKT[X@878Y@ 5:5:3]]33|g?f7@ u91290K TKT[X@878Y3#'#f?f7@ u91<90K TKT[X@878Y373x^@1@/0#^+b+qsRf3#ff #ofv^@1@/0%#^++Tq^#onvsR3#lo#E@ j,5!##–, 533##5#5j!5!>j)9H W@ VV1<0K TX@878YKTKT[KT[X@878Y332673#"&v aWV` v HKKJLDfN@ d10K TK T[X@878Y KTKT[X@878Y3#  @ V xV104&#"3267#"&54632X@AWWA@Xzssss?XW@AWX@sssLu @   '1/90!33267#"&546w-+76 >&Dzs5=X.. W]0iJ7c@$   VwVv99991<<99990K TK T[X@878Y'.#"#>3232673#"&9! &$}f[&@%9! &$}f[&@Z7IR!7IRfB@991<20K TKT[X@878Y3#3#߉fx%3;#"'&5&&i+@WRd10`ZȢf '#7'373\\]]\aa``u # 5473733254/MMz /1/03#zttu/2&'&#"#"'&'532654'&/&'&547632j1549W++](}24NM9>=D@?>=RX o(l00GF@99 a /$*+MW33 k2-*)*IX01 u! #'#37 ͉H+uX@ 1/0!!5!AGЈX'@??//21/]0!!5!3A4X@ 21/0!!5!3AhhX'@pp0021/]0!!5!3A4X@ 1/0%3!5?p+v'qqf3#3#@fx.SMvJ!_@ Vw V v"99991@   "<<99990K TX@878Y'&'&#"#67632327673#"&9 &}33[&@%9 &}33[&@7 %$RIJ!7 %$RIJf6@ D910K TKT[X@878Y # mXfvqPf6@ D910K TKT[X@878Y3#fs?f<@u991290K TKT[X@878Y3#'#?fsH7b/q|  )1H+d%@ 910@4D]3#hF)I@ dd 91<20@#4D`````````ppppp]3#%3#^y)7{"@ V@ V /1@@ /0632#546?654&#"7pihX,#w3-.>GZdH3UC=A   (6%""($4fCf<@u991<90K TKT[X@878Y373NxsD/1/0#DD'4]fB@991<20K TKT[X@878Y#!#͇fxx)1')1H VV/1 /<0#.#"#> v aWV` v ")KKJLD( @0#3Ӥ?#55#53pp{53#7"op{y3#@uUCqPUv &D53#5#5_&3##3D_U?p!5!#Ik{1@V/K TK T[KT[X@8Y21@ /0532654&'3#"&=X.. W]0iw-+76 >&Dzs5V @  V21@ /0"&5463"3VZ||Z(55(}ZY|x5'(5 3!5353D_ #5!##걈 & #53533##׈ 5! zV '+53276=0RQi&&``01wV %3;#"'&5w&&iQR10``fSC'SjC( @V xV1@ /04&#"3267#"&54632[6'(55('6y|ZZ||ZZ|&65'(56&Z}}ZY||jT @03#Ӥ#uzLuDT/1/0#DD T#5!#뉬Jc9X#"4533273273" v aWV` v "6KKJL9HS/TB  #"'&'.#"5>32326SKOZq Mg3OINS5dJ t]F ;73 !;?<6 7=xh!5xhh5!Ĥh'`_^NO'ygfFXY @  V21@ /02#52654&#Z||Z(55(B}ZY|x5'(5[3!53[J.T!!&bc9X632#&#"#&'"#72;tv gfv ifvtR+ '7'77}`}}`}}`}}`p}`}}`}}`}}` .54675>54'&'C!RI 7!RI 0PQn +0PQn : '  fCqPfvH7FbV+I#5!#!Ֆ֖V,2!5!5!5!>>2xx3#3#@tx!#!–*>,Jf'73327673#"'&'#7&'&#"#67632Bmk  &}33[& !Bnk  &}33[& g  $%RJI g $%RJI J!%'.#"#4632326=3#"&3#3#9 $(}gV$=09" (}gT";薖Җh! 2-ev 3)dw.CJ"  c( 7!#'73!'3p~(͛3#557'2d͛~~x&'&4767@*,,*@rNPPNr*,@A++{OPPN1'+Ubx050567654'&xrNPPNr@*,,*{NPPO{++A@,*.Dp pk Ppk!!p kpT!!p ଔ* '#'&'&#"#67632327673#"'&O,$e5Fqp[?9ZO,$a9Gqp[?9J7  $0GJI "7  $,KJI pn w(5!'3#7ws~~d͛tf@103AntVH@10%#AnHV #"'&=3; #V!. {q{'yOF{'y#sRf1@ D10K TKT[X@878Y3#fFR&jl@_]@_q0hf'HFyuf't#f'%}f'z'f'-(f'n2f'h66'.Fh$%j@ 1/03!!)ժh=@ B1/0KSX@Y !3f5:9+(\=;+s!2@"" "#3"10!!"3276'&' ! '&76>b܁܁:xżp[bb,j.h<@ B1/<0KSX@Y3#3#:9&+031b *@    <<1/0!!!!!!29iggqs2;3 F@B   <<1/220KSX@   Y%!!5 5!!>!8ߪp7<s'<@) !%(<<<<1@' %'/<<<<0367654'&'&'&76753#–bbʖbbWssWWssW=;;s.@ <<1/22<20!6'"'&336763#ּՂnʊnhg椌gHN&3@ &("3'1/<2220%!567654'&#"!5!&'&576! cccd?IH1/GGaʦa>”XN'/u' +1N'qu2 +1qf&>nf&PBVdf'Df&FF*&Rqy *@ ,%E+99@ ?/]q@ ) !/99@<<10@  ]@IIIJN LNIK ]@:9:88? <>]@ + +*))]@  ]@++]'&#"3273;#"'&'#"'&763 N,-=MKLyHc( #) Xn^T).^,ru7 nik%1)0T*XoW)&V!7@E F21@  90%#! !"3 5 4# yYo 0kEdZ&J:@ V`@@ 1@ /<20@ 993#&+532i^;,_1FLdVD~qu-T@(/E( Q!E. ]99@%%.99@S910&#"#"'&4767&5!232654'&'&fu5KxD7VUV[a~@Fu\0%p̥@$OF(Iqrs`g |2=@" 33'(#,34 '0E310&'&547632&'&#";#"32767#"'&546p<@ KQX@8Y1@ 20%#457654'&# !5!ʄOTJPE* :;f,KOxsPWKL,#%5,*3Y'iVd{1@  FN  F21/0@]#4&#"#367632d||BYZuccH`e22wxqu$!O@ """#E QE"2]21@?]0@ w##]!3276'&#"2#"'&76EVSI 6VQ@=񈉉d~uvn` @ F1@ /0;#"'&5c"$lYoRR`+.0`b` I@   F 21@ /<20@    <<33 ##Gb`/ZFB?= F@ 1@ /<0@  # #'&+5z~J/k`ue<2~V`wJ`B@1@ /20@ 99!367676'&'31!xdLjE.*{`T|p5dwY|rNįtkR&@@ (" %'1@ '#"'<90%#457654'&# %$47#5! $ڄOTJPE* :MKOxsPWKL,#%5,*,X$Rݿ qu{RJ`/@  1@ /220!#3267#"&5!##J117,#J%x\c`PH? XV{1@ EQ F]1067632#"&'#44&#"326=;{:+fZ#adqR{$6@ !& HE%1@% %0 !2.#"32#457654'&-ULNPƯPTJPE* >:##++LOxsPWKL,#%5,*q` 1@  QE]1@ 0"32654'&'!##"'&76sRVVOcm񈉉qnsȷzn휝dm`#@  1@ /20%;#"'&5!5!!$lYoRR\ W0`b*`+@ E F@?? ?]1@ /<0327676'&'31'"'&5R27ki;jF-*eb`+@EvfwZ{sxvpVh )=@+E(#E*<<1@ *'*<2<20"27654'&'2##"'&7673=A__UVF6˷džfB:VVMpˑRh]p[nmNssg.;Uda@    <<91@  <<90%KSX@   99  9 9Y#&+53;'$ܕ11FA3N11F~0)~pV`6@   <<1@  <2<<0&'&53367653#EkUJ|CUvܷ%aw~LB,BTxnc#n'`8@E  E1@  /<2<0 433233243! &aƏ˪ޏƛa!)R@O@+}&Fj.*&jRquf&}L*f&"R'f&VYM% 'G@)E& F(2Բ?]1@ ("((Զ?]990267656#" '&76#327>&iPDyz]6;~oxҤ]Y:PWp=l޺lǧ_ը,嶖ꀰ-ўqu$ 7@ !EE <1@  04'&#" '&4632  1BSxyJ̃Я#/p~ZZ7Ai6deBWQ I@ "!9Ĵ?@]1@ /<99@ o]0#4''&"562%62#"FR**RMw(oUCHk&_*SKHv H# 0r{C @[)/Bf'n^PWQN'u^pV'A@)   $E(<<<<1@ (  (<<<<02##"'&76327676'&#"DžǷdžǷqMTVMqqLWULc휙owgsugHgusgAm`E@ EE91@ <22205!#%$! 47)323764A,Ma")aM:GϤ*RѧOp[g9&'&47#"54654'&#"563277632327"'532! `7"7$>9[@[`7"7>9[&F]_I I5l|"O z:6hl0'[Ml |"Oz:6hlf$11sXD@!  ܶ0]9ܶ0]1@   <0#&'&76!   76';:{HpҳI椤qVu{ <@!E E ܲ0]9991@   <0"32654'&#&'&7632sVVUVVV9kjstntstu n}{R$.@ & #%1@ %"%0 32#457654'&# '&76)F`{[mzYTJPE* :xe+wTOxsPWKL,#%5,*eNqRQ` 4@ " E!IJ]1@ ! !0")!"32#457654'&g-[oPTJPE* >LOxsPWKL,#%5,*#)@VF'6  (<1@ ( $(0347632&'&#"!!#"'&'53276`1213$)),x:KAb933.1220W@Rd >Qoɏ?s K_7"'&76'&526n 'BQ_'BQ_[~,`*l#FR`*l#FR #!3&pM]rV`!#56! #'#64?!"QhRR_@0:IKiXL}/M4!wx#&'#&' #'nd2Fb.-t`4#M!P^sK=W@< 9:?5 +,">99KSX +9> &1>29<90'6767&'&'#"'&46733276=332764''3=D۴vayͤgDd''dey{d;]TCHI}rHGFFtAGCT_8d榈d*0QA^^^Fkmihhimw'AFU(`%S@!'E  E&99KSX"Pe^Ґ8*7D ! ! 12԰.#AL.#^Yq4+& "H4B;;=/?"+VhPOV !! 7654'&#"#676! 3 7llc^#,V)ۄe]6?fضdVj{ # 7654'&#"#67632327\B\\TP%I/yYk}oSKu,2R¤ຐs5%! &'&#"567632 67632'&#" ;!53276n"?E! rK,/ 4'Kr !D<&tEGGH h=" C(FK#C "&E !!6{5%! &'&#"56763267632'&#";!53276[96:@%((%@:6-:IkI:8=3553gs%+$67632! '&76!2767&#"327*W8QU{2Τ|sK^lȺhiieb-sJV"1Pһ '$Astxssq[/&67632#"'&76!27674'&#"3276I,)e[xtgO_\SG]EZSTVXXTRS7xJF61𢢜Pһ ''rsstxsst,V4@  <<1@   <220#5!#!#!3`d`du7U3@  <<1@   <220#5####!3_pzpppg3#"54654'&#"563277632327#"'$47(`7"7$>9[@[`7"7>9[@[|"O z:6hl0%[Ml |"Oz:6hl0%?[MV{$:@&E QF% ]1@%" %04767632#"'&')! $'&  7Z6;x[Y: +STTSST$T%Уb^#10dX4tsstjtssq{FVyMsaq{!&'&#"!!32?# '&76!2%%cjf_[_fMJOhk en(' c\\c( +{!56763 !"/532767!5!&'&#"'(ne khOJMf_[_fjc% ؜c\\c Vs'& @  >  91@ B  /<290KSX@  Yp]@ 6II YY @  &)5:EJ ]]! !###-}-!+V` O@ F  1@ B   /290KSX@   Y!!###`{`UV{'4767632#"'&'!!#5#5'&  7Z=;{XY:eSTTSST$TfZ#10dȪpptsstjtsss'Hs'&y3s''yk& uN&uBBBB|#I#IabhFaF`C`#BC`CUXC`C85YBB#Ih;5#I@PX@855Yf4@  <1@/20%+532654&#!#!5!!!2L>o||Rh"9+Fjk& us'N@  2<1@  IIPX@8Y0! ! &! !!! 'zOFӐhgս6,XNf-T/3@   <1@  /<20!565!32#!% 4&+pٕxL@+8/Xڦ5@ 2<21@   /<2<20!!#3!332#4&+326 z6࡟9d݇,@   <1@    /<202#4&#!#!5!!||Rqf9+Fk& u3k& u#m'ru; )@   1  /<20)3!3!#++h$.@  . 21@  /04&#!!26!!2)DlN݇@%j@ 1/03!!)ժe4@ <1@  /2220%!!67!3#!#p&axު D+?x4&A((v@   <2991@B   /<<2290KSX@    <<Y@ I:I:I:I:I:I:@  <<<<33 # # # 3DDxM(?@ * %)21@  %&" )02#"$'532654&+532654&#"5>I8z,|йԳƆ\qѲ|!ĐBY+wps{M("3 y@ B  6 991/<2990KSXY" ]@068HGif  FI WX ei y   ]]#!33j+3m&u# + KT KT[KT[X@ 88Y1 Y@   2991@ B  /<290KSX@    <<Y3! # #_yT:%@   1@  /<035675!#!T>Wxfb/X++0;+s2;@ 1/<0#!#;"++3s'&7#> 1B /20KSX@   Y%+53276?3 3 OM?w.-!suٵ2&]*jklyj =@!   <<<<1@ /<2<203>54&'$%53# W==U+  -=;; )@  <1@ /2<0)3!33#;ʪ+$@  21 /20!!"&533!3_||xdv+ *@    1@ /2<<0%!3!3!3OOʪ+++o2@  <1@   /22<<0)3!3!33#OOʪ++< *@  21/0!!5!!2#4'&#!!276GN6ONDPO+DCDCF&, $@   21/04'&#!!2763!2#!ONDNONDCDCo#N@ <21@   IIPX@8Y0! 7!5!&! 56! ! 'oOzFՎaa0&8@''!&$#(  !%$'2<1/0"3276'&76! ! '&!#3~܂܀s;:ŴL椤kj@@  21@ B  /<0KSX  Y3!!" &$54$)#!:ƒdv'V+w{-{Dp7):@+E'Q! E*21@*$ *9902#"'&5476$%676"32654&}:[;z631-~LӔ{0w)v ,u8w>` /@ " F!21@  /0!2654&#32654&#%!2#!r~~hhVlj9_ZZ^SJJOgyr`F1/03!!`3k`4@  <1@  /2220%!!6765!3#!#}v[(bt:d6(U3Rq{HF`@   <2991@B   /<<2290KSX@    <<Y@ I:I:I:I:I:I:@  <<<<33 ##'# 3?nn`QO6m|(N@ &* )1@ #)) ) KQXY KQXY0#"&'532654&+532654&#"5>32|PZG]twGabLx\l%%pZXkYF@\]y` ?@B  F F 991/<2990KSX@  Y##3y`}`y&# +KTKT[KT[X@ 88Y1` Y@  F 2991@ B  /<290KSX@    <<Y33 ##Tsŷ`OQ5Ls`$@ F  1  /<0356765!#!L8D{X^~ŷoPO` M@B   F F 1/<290KSX@   Y! !### >? ˸ʹ`'P` '@  F F 221/<203!3#!#U`7qu{R`@ FF1/<0#!#`3`V{Sq{F<m` 1/20!!#!<1BB`3=V`\pVg (3B@5E)! '.E4<<<<1@,41$ 4<2<20327&#"#"323>32#"&'4&#"326/{brrb{9SS99SS9{brrb{/Ǩ<9^N5=L^^LN^Ǩ;y`[` (@ F <1 /2<0)3!33#9U`33R`;@ F21/2#I #IRX 8Y0!!"'&533!3Hf\45h)_Vu;;` )@ F  F 1 /2<<0%!3!3!3ڹ"ٹ`3+`2@  F<1@   /22<<0)3!3!33#"ٹڹ`333R>.` ,@ E  21@   /02#!!5!!!2654&q8$~͓7_ZZ^`'">`%@ E  F21 /04&#!!263!2#!z~~@9LZ^_n7q{M@ H<21@   IIPX@8Y073267!5!.#"563 !"'q2 ǚ-VړiVFHL{ :@ E  F2<1@/0"32654&632#"'##3Jq и¾.`At"`<@  21@ B  /<0KSX  Y;#" .5463!##zwwVtS^a\'qk&CZq&jBBBB|#I##Iabh#FaF`C`#BC`CUXC`C85YBB##Ih;#5##I@PX#@8#55Y/V?@N F <221@ /<20#533!!>325654&#"#߰Bvz||яLmedY).ПĞm&vq{N@ HE221@  I IPX @8Y02&#"!!327# ǟ 2ғ-{FViګVH>=o{VyLFVyML`6@!E  <1@ /<0356765!32#!!%2654&+L8DثX^x~~~ŷ7oPv_ZZ^`8@E   F2<21@    /<2<2032#!!#3!2654&+N޹"\~~`7`73_ZZ^/:@N F<221@ /<<20#533!!>32#4&#"#߰Buʸ||яLmed*m&voyk&C]=V&^` )@ F F 1  /<20)3!3!#TfUf`3s48@$%6 )  51@ $-/<2<0"'&46733276=332764''3#"'&':y{d;]TCHI}rHGFFtAGCT_8d{{ђed''deFkmihhimw'AFf^^^^'`V!2#!!5!53!4'&#!!276XNpqONDNOQQfDCDC$4&#!!2!5!3!!!2##~~EE^͓uʣ+#3376!2&'&# !!!2767# '&SvwhfstgFtsfjwvú 9$#G_//wƪ//_H$$O{#2&#"!!327# '&'##33676>\" , Ux{ z{FVAW^3VH`3ʀ !#!#!#3 73` !#####3 Ñkk`_ !#!#!#!#3!3  o_<9d7`!#####!#3!3 kÑkk`_s@   9ܴO]9ܶ@@]9991@B  /<<9<20KSX@  Y@]##767!#'&'!ʓdսxQPtՀ`>YY~b҆12z(k{`~@   9ܲ]9ܲ0]9991@B  /<<9<20KSX@Yp]! #4'&'##767E]kKV:VS8V‰Jl&VtO\KtU'4! !#'&'##767!#3!PtՀ`ʓdսUn>qd2z Y~b_49n(.`! !#4'&'##767!#3!7kKV:VS8V‰]w&VtO\Kt`?sVszS#"&#"3276&#"#"'&54763!27654'4327654!"567376767632'&#"ssD#`At bTDt;<}J5?u_hFAXVRuťޠsj#B#' "2ZbrRUgr %',azQ^XRj7&6J- @' WoWdE\`[tO#"&#"32632&#"#"'&53!2654'&'"#5223 54'&#"5673767632&#"vmDPb!',-cX;b12i?,ZnN .rr. >._- > ^ >‘  tӪ ҫ q{&P%327654'&+"&'&'#";67>2# '&5476!36767623 !#"'&'&r-HVV?- ,4, -GVUH- ,4 .xt. 4 .wt. 4 `ta  _tp_   颈   袉   vt N#&#"56763 #5765#53#"'&'&#"0#"'&547673!27676323 4'&'39vZ^Nzz%G!ft[na`zxz{n[tfCGo~[U]LKfdKJ]U[~oFCP/L&+CYg,'ID@@DDDk63366336Fk :#&#"56763 '5765#53!"$"# 33276762324vZ^Ozz$F"vrTRrƒ>IxddyI?В/L&+CYg,'IP8[ 77 [8Gs3'cS'&sV'!# '&76!2&'&# 3!#SvwhfstkSh$#G_//ӂqV{! '&576!2&'&#";#UQQLNONPccccɖ#+qr͹rq;'''7'77'77did}}didii}}}d}}}}dBz/!"'&'&'&547676763!476767623 8  8 g    ) M #&#"56763 v][Jw}$)/K'*Ca"53#7 a#55#53gF` &3@MZg#.#"#> #.#"#> #.#"#> #.#"#> #.#"#> #.#"#> #.#"#> #.#"#> v aWV` v "8v aWV` v "v aWV` v "fv aWV` v "v aWV` v "v aWV` v " v aWV` v "v aWV` v "AKKJLQKKJLKKJLKKJLKKJL)KKJLKKJLKKJLX- #)/'7'7'7%'%53-#%5#53 3#kyo\wyo\zV\Ly[`@¬@_ӤRӤRZy\yW\zn[wyo\ԤRԤR߬@¬@Vm&uV8&!!2#!#535334'&#!!276N訨ʨONDNOQQfDCDC&E 4'&#!!276!2#!#5333>CB>ytts9L^*..+URRRя>'+#!2'674&+327'7Uj~ rGj#u~{Sqrے-,9/~V{)%'7654'& 32'#"'&'#367632*nOSTTSSTFoWl{XY::YX{ ]ststsjts].01d d01j@ 1/03!3!)2$ F1/03!3!`:33G )@  <<1/<20!!5!!!!!N)#l8U` +@  <<1@  /<20!!5!!!!!?`۪ f3@  <1@/0#!!!2+5327654&#)qmL>87||9ժFwrKK"V `3@  F<1@/0#!!3 +5327654'&#rFRRQn!&&1`GQ``07 )(33 3## # # 3׈)D"AMF`33 3###'# 3?nfz!n`QL6mu&z9u|&z3! 3## #E#A`33 3###Tw8sŷ`OL5373! ###ʭd_dTy%u`37533 ##5#`eBTse``avFOQ5a!33#! # ##53ʨ_ʨye=3!!3 ###53dTsŷ}}z}5OQ5}2 _@   2991@B   /<290KSX@    <<Y!! # #!2_=y+*` _@   2991@B   /<290KSX@    <<Y!3 ##!*8Tsŷ`OQ56@    8 22<1/<20P]3!33##!#"dA9@`1@  F   F2<21/<203!33##!#W`39L -@   8 221/<203!!!#!#)"d9` +@    F221/<203!!!#!#W`3ͪJft8@<1@ /<0#!#!!2+5327654&#;"rqmL>87||9+wrKK"V!`3@!F <1@  /<0#!#!3 +5327654'&FRRQn!&&1:`GQ``07&.s-'1?Y@ 26>6A $0,@91@ 2:0@:%$( @90%&47632327#'#$'&76!2.# 32767654'&#"Ed`_fJxuTGIRDLżSu^\yI0a++IJ++}}֝s?] bh$">7^覤.$?xEGEFyqR{ ?5@$  A2H;*E@91@7.&@%67654&#"&54763327#"'# '&76!2&'&#"3W!V0),3MNNM'8HeZ>FR5<UQQLCZIUccUTqHT*.N›WXXW,4#qrtssu''z-qu{'z ,@ @ @ <1@  /20%3##!5!!A+<m` (@   <1@ /20%3##!5!!B1BL<=V`o@  K TKT[X @8YKTX 8YI:9120@BKSXY"%#3 3;^^DNl!#!5!53 3!ssf=V` !!#5!5!53 F;^^`XXNl=;%3## # 3 3p\Y/su A{+3;y`%3## # 3 3q!r))kLHJqG5@ @ @ <1@    /2<20%!33#!!5!!+A+B`3@  <1@    /2<20%!33#!!5!!xZ9B1B9L|.@   <221@  /20%3##!"'&533!3_qm||x˪Awr7ٟd`F@ F  <221@  /2#I#IRX8Y0%3##!"'&=33!3f\45h)L _Vu;;#"'&53;333###;qm||֐wr7ٟ9d+`5333###5#"'&=3f\4+ _Vu;0$@  21 /<0!2#4&#!#z||f9dK"*I@#$ $3 +291@ $ (+<2076! !!267# '&'&=3%!&'& ":Cppoż vzKB@bHam`_F$$UgkL>D9||f{%.i@.&&K /2@ p000]91@& &"*"/o]2</]90"'&=33676!2!32767'$'&&'&#"XY`09Jt⃄ fgjdcbchneNRS]\RZF1!&łZdc4*ZZWWu'Guf{'H,(vm'[uFH'f532+5327654&#!#3!qmL>87||qwrKK"9wV`3 +5327654'&#!#33^HRRQn!&&,%wGQ``07$)`6V!#!567!3#:bCux+8.%5ժV.V+`%3##!56765!s{{v^̳;bVdžf;1@ 82<1@  /20%!#3!3+53276q"L>87h_9dKKV`/@ F F2<1@  /<0!#3!3+53276WRQn!&`3``07V!#!#3!33#;"9dժVV@`!#!#3!33#W{`39V/@ 221@  /20%!"'&533!3##_qm||xɪwr7ٟd+`G@ F221@  /2#I #IRX 8Y0%!"'&=33!3##Hf\45h)p_Vu;;V%3####! !+-}-VV`%3####! !H{˸ʲ>?V'P`yOh'J+1@oo]0{-&O"+1hN&u  +@ 0?  ]1{-&jR -( +@(o(P-_(@-O(0-?(-( ]1H{o{m'u@@]1qH'@p]1uQq{uN' ucq&jTd(vN'QuF'jN'u&j:yXL/`T31'q;y'q3N'uy'jsN&'u +@ @O]1qu&js +@ @O0?]1saqu{7sN&s'uqu&tjso#N'guq&j#1'qr;=V&q^#N'ru=V&j^#k'ru=Vf&^N'u&j^j #@   <1/03!!3#)ժA` #@  F <1/03!!3#`LFN&u&jGV9@  <<<1@ /<20!!5!!!!!!+53265N)#iGRiL`na8VU`;@  <<1@ /<<0!!5!!!!!!+53265?`nFRjK۪`na=f+%+532767 # 3 3*SfL>7( ^Y/su bzK5sx+3;Vd` +527>5 # 3 dkkCQO5r))`&9as mHJq=;3 3!!# #!5!suNt\Y+wD{;y` 3 3!!# #!5)) ~q4H &@  21@   /03!!"!"$54$3!fONDNONNCD#CD+fq` %@ F E21  /03!!"!"'&763!5>BC>9sttyLZ+.i.*RRPRUC 09@2&)  1291@"-(1220!"32765#"'&54$3!3327653#"'&NOO_KV! 3j^nN?4pi;?nhf1CDP_m}`61f[JJOZxx9qs` 08@2F&) E1291@" 1-(1220!"32765#"'&54763!3327653#"'&=C>A@j\-1C]^fety>dhd.*^\:9m4l01a`RUaPOORAsxx%74'&+5327654'&#"567632327653#"'&'&\]OOQRSrsdeY憆GGRQ?4pi;?nhf0!JK;$& hi|UV!bb[JJOZxx8PaF|54'&+5327654'&#"5>32327653#"'&NHtCDFEwGQPabLqr<=ih<>dhpb8f83,-F@.. NO]@AHOHXDEORAsxueV<)!#4'&+5327654'&#"5676323#s\]OOQRSrsdeY憆GGRQJK;$& hi|UV!baV|)%3##4'&+5327654'&#"5>32ȻNHtCDFEwGQPabLqr<dhpb{v^̳;b`WORAsxue{-`6@F  F221@  /20327653#"'&=!#3!zgh<>dhpbW`WORAsxue{`3s0@  1@ 0# '&76! &! !2653d-|e'%{9!Ҏ׿qF{0@ E E1@ 076!2&#"3253# '&q кĽbZZb/n||r|r|>禞f327653#"'&5!5!?4oi;?nhin+[JJOZxx}q`327653#"'&5!5!x>=ih<>dhpbB1VFEORAsxue{~{R|BTf:/@ 1@ 20356765!+532765!T:WxM?77fb0dKLøLVs`/@ F1@ 20356765!+532765!L3DF1a.&{X^}з0)oPs4qVZ{TD:V5`ZTfs%35675!!2+5327654&#!#!T>WxqmL>87||fb/XwrKK"9+LV `'356765!3 +5327654'&#!#!L8DFRRQn!&&,{X^~ŷGQa`07$)oPft!3!3!2+5327654&#!#!#qmL>87||"dwrKK"99V`#3!33 +5327654'&#!#!#UFRRQn!&&,`7GQa`07$) F@   8A!p] 991@  /2  9033265332#54&+! '&ˮ® ,gQ]*-呐u\GCF1l[R.$)K@  8Ap]2<991@  /Ĵ`]0 ]376! #54&#"!2#54&#!$ˮîXgQ$9 𝶫F1l[%D@   8!&p]<2991@    /<<0O']32#54&+#!"'&54! 4&#"3)GgQG*ɟn(!ˮî5ZrF1l[=ó|#ӢI|H@   8Ap] 91@   /90O ]32#54&+#4&#"#576! YgQGˮîːZ`F1l[O 9$\)$30!2#54'&#!3276=3! '&X_`07QWWWWˑ呐1[[F1l*1jiij 9㒕$2%!67#"'&543 2#54'&#!3 7654'& f<0I|q4_`07Q5˧OPPOOPP'.ƪV][[F1l*1LL]]]^^]])D@8 :  2]99991@  /0%!2#54&#!3!2#54&#!}gQXgQF1l[F1l[)@@  8Ap]<991@  /0]376! #54&#"!2#54&#(ˮìXgQ$9 $F1l[-:#'&'&763!&'&#"#76! 32#54'&!#"327654:gimINK(*WWWː\!%_`05л9:E5:. rs TfLQR2jjiu$[[[F1j,1i--Q@+#! '&4763!332#54'&)"32765pG혐nG_`07TZ5WWWWܕ.|n[[F1l*1}Hijji):@ 8Ap]21@ /09]363 #54&#"#ˠ(ˮ;dK2V 3@ : ]991@ /0@0P]!2#54&#!}gQڶF1l[327653#"'&!#3|%3x*%qXdq`>WWK7}bbpiOA$3! '&7#'&=33!2#54'&#%" 76'&ɼżg``07Q_`07Q|y&bc\[F1l*1[[F1l*1 椤)!## '&33276=3)ˠ혐WWYWd+&jiih) !2#54'&#!5 uw _`07Q1k,[[F1l*1f'1?%#"'&543267#"'&543 327%&#"32 7654'& oUIeβr0I|q9I9~dX/? 9.YOPPOOPP@$2iw'.ƪdkWM( ]]]^^]]?@  8Ap]1@    /90O]%32#54&#!4&#"#576! )GgQìː!F1l[ 9$\,3276=4'&#!#5354763!!"!2#5# '&WWYW07Q `_# Q70X_`ˠ璐ijjgl*1[[1*k[[Fd%!! '&332765!2#54'&#)呐WWWW_`07Q& ܕ$ujiij[[F1l*1S" $53 6&#!5!2654& #4$ 5JRS覥A ++.WHNMItYa[J\n@@  81@   9/0326=3! #"&=33®ìGœgQm 9-!F2lZ) 3276=3! '&576%7%5zZ[WWˑz=s9W/hiik 9ψ&dAU)7@  8Ap]1@   /<90]376! #4&#"!ˮî$\uB)4'&#"#576! %5%$76aZ[îː 1y=\gW/ίgj 92dAU##576! #4'&ˈKuˮ9)uBGlP| 9\̍P0%&'&43 2#54'&#!3!767654'&'& Eq4_`07Q5e, 7OOPܪƪV][[F1l*1L,@B@^^]t~H@   8Ap] 91@   /<90O ]32#54&+#4&#"#76! YgQGˮîːZ`F1l[Ou$\)8!!# '&5332765332#54'&#^혐WWYWG_`07Qd)jiih [[F1l*16).@  8Ap]1@ /0]376! #54&#"(ˮî$9 uS0@ '&53 7654'&#""#6767&'&5476! "327654'&RQJRSSSSRefg#RHJIIPacIJIJcaW"ccttstNMMNMMM *c" Y[`XX^[Y01YtAAAAtY10 =@ 8  Ap]21@  /0 9]54&#"#363 3^ˠu2;dss3\,<47632#"'!2#54'&#!##"'&=337654'&В􄑑I_`07Q _`07Q*]WW]_WW_rsppzzpS[[F1l*1=[[F1l*1A>T]=BD=[V>Cs2167654'&4'"!"'&'5&'&547632qG^CC95+<&0kljxw{vEB[eK[ 4D~n>=>@%c3A +mlpp/E# ,,W`aru~^#33vx%"#476327653[RBhj[RBhjTDDjlTDDjl}fC^7#47! !"33254'&'#" q3U7a\ "9S A5z\&NZ%03!Z}4b`&^@PP F'<91@  #/<<<290@0(P(p((((((( ]%#"&5332765332653#5#"'&E``ruSSrw?XXyzVU|:<b`^zbzh02>>Vd{?@    N  F22<1/90`]54&#"!!#3>32||Buܟ6V edqV{ <@" GE!<221@  !032654&#"##"3253!!/+:||:Z/\RdaDDadOV{=@ N  F2<1@   /<  90!#4&#"#3>32!d||BuZVH`ed X?@ NF2<21/90`]3!!3276=3#5#"'&>>|TVCuddZL PO_bvfcxxqV/{<@ G E221@ 03!#"325332654&#"Zs:||:էRdaDDad,@ F<1@  /0)3!!32#54'&S[zM`01LI[F1i&&Vd{>@   N  F2<1/90`]!4&#"!!3>32||VBu ed\V6{ )u@ +G  F*2ij$!!$ISX $<323#'&5476#"3276#§:{5`4xBdBJ4/' daZ+h|{Nvqq<q/ 4@ ! GE <21@  <<0!"32765#"4763!33ƈbOMSK}<zaksC+D߫LVd5@  N  F21/90`]#4&#"#3>32d||Bu\edV` @F1@0!!3y^ VI@  NF221@  /< 90@]32653#5#"&5!#3||Cu`a{fcLq0\@ 2 $G,E1Ĵ,1@ 011(1<<0!""<<!<<#"327676''&5476;#&!!'&'&4763[AS].SD81N/Vɮ!qZsIR\++(VL-%)$?뮘VX:@     NF2190`]332653##"&||CuZ{VfcdKqZ 4e@ GE5<@ (''*%%*39/ 91@. '/ 90@ `6666]32654&#"#5#"325&+"'&5473;2/nD:|WCv>!%7)/kPըdaDE<6pG5P0,!K7V9{;@ N  F21@   /  90!4&#"#3>329s||BuH`edTX-b@ (N  F.<<2 -9   /1@%/<<! (90#5#"'&=47#5367$732%326=4'&#XCubdzzp>BiO>AycW fcx{Iʪ`&$%8vJMO;) +?@-% $NF,21@ &$&)$/90332654'&/&7676;#"#5#"&|| M.=<(`Cua p0.- */(fcVy`2Z#G@%  N!$21@  !   /<90;32653#5#"&5#"'&5476;#"||Cu;^PZl}YYa{fc^PzKWV{!<@ #E F"<2<1@ ""0!  3!!"'&547654'&#"#4632/Q@'$C#@l;qsDE E+G56dZY0Y^cԫeed{QFV;`%X@##'  &9/1@#&&990%   ! 3!!"'&547676/&5476;#&(3W:'$F[L2se`6g+! E/>A/(32||BuƯ`ed X`XV-=@    NF21@   903326533!#"&||sCua/Vfc{%i@  PPF&<<1@ "  /<<9  90@0'P'p''''''' ]3>32#4&#"#5#"&533276BYƸ||zUVCdȸ||XW{ed\_`fca_\Vd{7@  N  F21/90`]#4&#"#3>32d||Bu\ edqVZ{J`@F1@/0%!!3y&"`V%k@  PPF&<<1@ "  /9  90@0'P'p''''''' ]3>32#4&#"##"&533276BYƸ||vYVCdȸ||XW/ed\_\Vfca_\V{$U@&E  G/<2221@"%%<<IPX32#"&'!!#54&#"326չ:{{:+Īdaad)qu{RzV*"-6u@83 .# *E7<<<<<1@&7/  "7<2#99#93.  90#,<<. #"'&'53&'&547632##4#"27654'&,Dd%Kcfep_{5S#al~EU@<%I]7_E8BQ-a`ta2N-bliZn!vFDs:#+IJ>8@    NF21@   /90332653!!5#"&||^CuZ{OfcR@<21@//073#3#R` 27#"'&'3U oo,rrONcAUUWDC <21I:03#3#D-dC'KRX@8<1YC %  <<1@  <5G.i=dB]Gg`":T)yX`!  1  /204&#!5!23!5!&nZͦy–1CZ`G 1B /<0KSX@      Y4&+532##n̒[^ޕ<S"Xh`$1/20@]1#!5!t/яd`4@ FN F<1 /<0@ @P`p]!#3#4&#!5!2snvy–t`FF1/0]!#3t`X` #  1/20@ ]5!"#7XNrXGяy Kd` (@ F N F1 /<0@]!#4&#!#!2dny–/``*@ E F1@  <0332654&+532! w`ҏ/t`FF10]#3tXV` , FN 1 0@  ]#4&#!5!2nV#–X` @ EN <1 /035!26&#!5! #Xt뒦X&@ F N1 /04=!3!#T[CLzld` )@ F N F1 /0@]3!2%!4&#!6n`–X`^@ F E991@  /<990BKSX@     99Y"#673632!5!4&WWHFdaxѧȠ˨Vt`FF10]#3tV X` %F  1 /0@]4&+532!5!ny–X(` *@ E 1@  20#5! !"264&+" я0D_ЍNO`U@ F 991B/2990KSX@  9999Y%67676535673VGu",:pΈLƒ4U}*p>1=!"$Vd`1@ FN F1@ 0@]#4&#!;#"&5!2dn\pTQV#–U;zdd`,@ E N F<1@  /0! )5!2676&+;#"&5*4{\Lwuq`U;zCVp`D@ F  91@ B 290KSX@  Y#3>=3#q_V`}՛C!`J@ F  991B /<0KSX@      <=3!5!CcMgXC"`ԛ:V`,@F F<1 /0!#76654&#!5!2#3l)WzB'*˺u,/HVv.4X` ) FN 1/0@  ]!#4&#!5!2ny–`/@F F21@   /<<033$763 76763) :0nLaT`Sl+7`+@ F 1@  /<20!#4&#!+53265#5!2ndDrL~y–a; `' `' `'`@ D103#`n`@DD1<203#3#`|!#53ӤR@ 327654'&+5336767N5G4pQf$h?FA@6b ! eI(R[2* #53 3#ӤR%@-$%#5754&'./.54632.#"'/XZH߸g^aOl39ZZ8{4<5/VVL89CFnY1^5YVeU"756767&'&54767632&767/SD435gcbnZdF31`9:H:ZU!LOTAKv?=0ps2#Yl 'f='e>Zy3#&v9&X &v&v (f&C (f$3  !27# '&5767"$JKԖ^`e~h'?6`vc–e4- (&C?}R%67654'&'3#"'532# b&Gq  ?%#&'$473327676'&/3327653323#"'&'TPxmil_Qb_y^@@$;sR,%@n\Kf% I01_2F,k>GHܳ&%0l}=J"5^.327654'&'&#"&#4763&547632#bzL,5;(.;Dn2KxAZM\MObxX'*9:X DD(NOf7*(?$S-8APH&? "327654'&'2#"'&5476B!799[]KB{ƶ`Q%T*WE{R,,9.UMAx|KU#JN @ &"34'&!5 767"'&'&547632?,3/V%._]g>v-(tYhYH9!$3/,;̠X*VL_ !"bWg3ZfJ6%#"'$47376767654'&'&'&'4762#&'&'&VfxH?Ba=~T;~BrC:@_` B(EN><}9M I&huqc- !P85J.39sJ%*==!'&"7*S@UYD J&Z $5%5%HHnnnn$&567&'&54763233"/#"'&5332767654&#" %!lE?I(7 /4KU^r8Z #08 " -d$* 9^W4'6O'&n=NV)qaK" %$5%%5%HHnnnnn$5%Hnn$-&'&5476323"'&'#5276767654&#") lE?I(7$# +EȓV " - 8_W4'6O -n=*{nmp" %$5%Hnn8(#"'&54737676533254'3'&!9EO)"a 2=`YG g -SGL(E?4mmb}8T"RY$6îs9It6Y ! 4&#"32>"&462X@AWWA@Xz柟?XW@AWX栠h732767#"'&'gC*6:)kXZZC5"LMD6{S )L}@FOwxO x 4373ËF3# !#'3%1yI !nR#'337673#" %1BR{6)coajr!nUPymL%#'37676537653#"' %1/(/H/; 'G 44.5WY9!nr|> @2%,*;l>3  *"2767#"'&54767&'&'&76#zf\MOYp0;JcX~VI|eepdkAXH,7p 4C@#90L@rRiUZhsBBsǮuu5aU#'#"'532N%bU`DK*22<!&'3673b~ĚZ00ZĥxU:Ũ ;6I<3#&'#6̴UxĚZ00Z~bI6; :d#"'&'&547632#54'&#"=:i_{\ %Z[,,G\O98<SGU37e{a}UwnWl42@B^!x$%-`+-!d! M fM&v4&v9 &v9 &v'$&v &v&v &v (&Ce8 (&C? (f&C (f&C (&C (f&C (f&C /'4>G r'g>G &'gG &G :654'&32! '$&73! 76767#"'&54767632)B,4((7(*Hnق@AZAd#?zKbNLZB`.+M;3*)3P&ڴF=)d \^tL"9;l&NKCW4,E$2Hf6&x~&xx)-%2767654'&54767#"'$473$62 #dGf>5?AhXPA7.EB|=Q#!w*6(  %{{qeVUI&b \^~B")+&7&UgH#"'$47332767654'3HdnaPm/1]]LGL"fh8D%jdQ45b`ޜ ('&C? @r'g>YJZr&Zg>XhiRjLkR%'&547632&767#"'#'3X\lTX\D8/0E= %1Bx:=$!"4'Qjr!n8j$(327654'&#"327#"'&5732#"-2!WZWXZV%2-Z(.5__52ZJkV0B7,g`p5oU%mao3/AbM3))I<o<pdq (@  1@  0"32$  h P3343ssyzZ (@  1@  /20%!5!3%=Je+HH=  21 /203!#3ulh=   221 /0)5!!5!3=lȪ=   21/0%!!!3!l =21 /0!#3!=l*=1/0!#!3!=lcr8A'91/0#3ASuNA (  < /<10%!3!#N{ 2@ EEܲ@]91@   /<02>4."#&'.4>329[ZZ_PGr䆇䄄rEMp`77`p_88 1ŧbbŧ1 y@ 1/03#+q!/@ E  EԶ 0 ]1@  0 6&    z>z='+@  2291@ /2903#36Q*=q33# =qCq @ 1/<0)3!39Uq"q @ <1/0!5!!59qKqO!>@#E E"ܲ@]ܲ@]1@  /2<0%!!5!&'.4> 2>4.":RJr 惃sKRQ[ZZ{ 1ũbbŨ1 p`88`p`88 %@    21 /03"3#!5!p9 fq2@ E<21@  /<20!#!##"&6 54'&"3qvCf^]8mr^:<UfɃ]8ƃD '@   <<1@  /0#!!!y5!Փ/= '@   <<1@  /03!!!}5!Փ/ %@ <1 /0!!27654'&'2#!3,R4,,=iXXXlι]Oz}I__ҭ$;@   ܲ_]9@   /999@ 10#4'&'5!4B 5McAq_9V= 491@ /̲]촍]0 53#T9+!-@ #"1@  !/203432>324&#"!4&#"!}x5%^ZHZlK--Xh&|ŕnc= &@   <<1  /<<0!5!3!!#KK?=9@  <<<<1@    /<<<<<<0!!5!3!3!!#!KøL=??q!@ 1/0!!9UqqK==1B/0KSX@Y! #tFC00B~+n 4@ <<1@    /<20327654'&+!!2/!!m]%i ;@ED\TqQE=4."XErrJSRJrCEoJ[ZZO{ 2Ʀ1 { 1SV/p_88_p`88} @ 1/0#!#}+B} #@   <1/0#!#3}Om +@   <<1@   /0!%!!5!!z;  TKѓ+qO $2>4."%#&'.4767673 [ZZTXErrJSRJrCEoJR"p_88_p`88 2Ʀ1 { 1SV/ qO(#&'.4767675!5!!2>4."XErrJSRJrCEoJRNQ[ZZP 2Ʀ1 { 1SV/ p_88_p`88b/1/0!!VBf#"&/#332?E=9Qct2 %xf" %/x $Dp/1/03#=f7u91290K TKT[X@878Y3#'#f[fE9190@ Ueu@ )9IUe]]!5'3{Bf3326?3#'#"&'Bx% 2tcQ9=Ef$ /% "[fC9190@Ueu&6FZj]]5%3%[{fS/1/03#̭F'/1/<<03#%3#\yu  <1/0#527#53gu  <1/03"3#  gd 1/03#!!Mdd '@  <<1@ /03#3#!!Mޒ1/0'!! '(033!!3'#67654'&67654&udruxtNMddx>DD>xIIv! RTxXY`aw,0dc1-!:;z{t{*L@$% E+<<<<@!#91@$+<@ (+0%"3254"3254#"54!#"543263 #4#"h??AA??A'+,LW@@@@@@@@pطQQ9/@@1(. #E0<<1@!0%* 00"3254"54$3  !2632&#"# 54-654!"`@@@CvBըiUv˫:knL?o@@@@N;Ejfae:.88U8327&'"254"%47&5476! #4'&# 63 #"'632# i60IKhh*)7!o^RX;*:9u`/'"6OfqAtqLI $\9.ȶlQ!6@   E"1@"  "0463 #"&'7325#'&&7'6met "xCBCquЍ h! ACBB )2@  #&E*<1@  *%/0"32654& 4''&5432#5476$ % U%|{e6Lj` %"%:yx~)RhKK>  65@$- 3 (E7<<<1@ 5/7&7"32654&4763  !27632! 54-654!"#"`$ % 琺By#xJi:OknLIo %"%0yKpjNdfDQcwiC|85sr *;@&%   E+<1@")+&+02654&'&47&7'73%$$!% l݁6ZA| $! $Vm-G4 p?{1@ F1@ <@0%"32544!  #"54$32@@@)@@@@Pvv .<@- " 'E/<1@ $/-)/<20%"32654&672#4#"#"'&#" #"53232l$ % L 7*>(z*M#6&8"$ %"%3|0ۯqiPWu|+?@-$'+ ,<1@ )!,&,<0%"3254"3254 #"5#&767663 #4!" @@@@@@!Ӣ7y-^@@@@@@@@edm%W ,9@. $  )E-<1@ '-+"<0"32654&4323254#4#"%$7"@$ % 쐋'(uj %"%@կ̰Xsgh\_"9@ $ E#1@# #<0254#"53265$54767653!"'#W@@>z]U]iTrs@@@@pegu/ssHs|2@  E<1@  0"325447&763! 3%$5@@@ԶMg@@@@R&Ѩ'LBHs2@  E<1@  0"325447&76! 3%$5@@@ԶMg@@@@<%Ҩ'hBY E"32654&!"32654&&''"&5623253765$7465&'7$ % $ % Kfg饤IJ %"% %"%IKbv4ˋ42@7-]fn9h%A@'$ F&1@&<<@" &0!"'# 432!32533253"3254hfg襤>@@@ JJ=|\@@@@@h} -?@, (,$ E.<1@"&. .<<0"32654&2533253!"'# 47&5432d$ % AfgB %"%4˩/JJ=%܉Mh -?@, (,$ E.<1@"&. .<<0"32654&2533253!"'# 47&5432d$ % AfgB %"%4˩JJ=%܋L@`$@1@  <<03!23! '#"543225O)3Ɯ)`,88{r *;@&%   E+<1@")+&+02654&'&47&7'73%$$!% l݁6ZA| $! $Vm-G4 p& ,7@  '#E-<1@+.%.0"32654&4! ! &# ! ! '&54323 c$ $ 6buUKX $ $8${nE{N%O 0@@2, %&E1<1@%/1!*<0%"32654&&'&'&5! 765! '676%&4% $  ,D )@ ' 1#-E5<<1@ )6/%!60"32654& 4%$54!232#"'&#"! '&5432h$ % ${ajjh@MqKy)LJm_ %"%1EYl0xP^b8Rsu_|]F'"2''&'$!32'&547"32?6AS2;9’hhNU~ +;9jq!Ban'u_ +@   /991@ /0! &7623$'4'74"Y#!A[VB8?<kP$U.FM?>={{+@  E1@   <0 ##"2#"53254#"n=;C>@{jVR777r& @ji  /1  /<20! ! !5 74! %&?%~?>~@i$@  /1 /<220! ! 3!5 76! %&>%~?>wJ~~@ji*@   /1@   /<20! ! !5 74! #5%&?%~?>~N@i.@  /1@  /<220! ! 3!5 76! #5%&>%~?>wJ~~T3"36654'#"5432AA\(DeN[̼o[$N[u%@ /1@ /0"3254"547&54323253r>Juum@s> [yu?{EBXF_ '656%"'&76! 4"3YVA!. {x9322674&#"CCjFPH OQ$!%!p'(FnJv-O!3] $ $z{&01, ("32654&&3 #"4/&5432N$ % s $ˌeqɘzm %"%82y,v\#"6@ E#@! 1@ ##04$54%&&5! $#"57"3254ix@@@X4|`Pٳ ?@@@@ ""32654&5&'7!$#"47#$ % dt.; %"%Ȉ_p 8>u%t/;4#"#"'&#"$#&532327632! '&57"32654&"3C2z7J,"/IN\=0BWTO3H$ % Xt\DD\t] 5<\UCfwpv  gH %"%V@/1/03#V~!'@ /1@  /<0'6"%)56574 65+*+UGm++),}݅.p\(>.4"!27676327673!#5654#"'&'&#";&543.%2~*&IHHܝBOg(LBC]i%>e>.`h>3A?~= h\$kb8:;-F_Zkf2)N !@ /<<1@ /<<053533##5N؎؎؎ P>r@ /1@ /0432#"73254#"ЄLTPPHHH` " 7654&' ! '&476^L:NbX1coqoh`WĒcg&24764'&#"676'&'&5476  pHgc/5pIu upHECle\gUܚsuϨcy\$24"27#&5432# '&5?$5+r%3]f́|pHFPfouTapH/%24'$5432327#"'&#"%$'#"54322533]L/|tkZ1AQf(3Ɯ)DjR:jTh8KOpt$68{cW%24"$'&5?$532&'&32!r|T9lc ~x?LvTamY<KcW-224"7&5&326532&'&32$'&324!B}b$|T9lc ~xr=Ch(筭 ?fXmY<KLvttY4@'&''"&54323253765'$543227#"$#""32654&fg饤u ^|uISL\>$ % ,IKbv4ˋjEaTW8ҋ %"%{ &%"324"324#"54!#"543263 #4#"h??AA??A'+,LWpطQQ%Rpt MU"32654&254"#&76767%4#"#"'&#"$#&3232763276'767$ % nnvp+-"2D2z7J,"0IN\=0J%.3?5xv'Q %"%933hk//3wt\DD\t 5<\UCrTF-2bG;"b,i $5354#" #"524"m~ŶejsX\|9~ LX"327$"3273253!"''&76324%$7&76%$5#0#&76262654&'&A?A?fxԅ$8$+Rb,7Hu Ӣ5r$!% @@@@@@@mӔJce$3- /ԋu cd $! $~ I"327$"3273653%"'%5254%$7&76%$5#0#&7626A?A? Tcb*@RX6&$Hu Ӣ5r@@@@@@@mo6J,/7'- /ԋu cdPi.".54>7!5!!"32>54&'7i7eȬd7&KlGqǔVXxyӚYlūc66clJ7^sz֟\[{6yEr2b\TZ@#!#".54>7332>53!w!KNM#hN&?Q*nq-Nj=8kT3$ KfWxc*s@nQ/+Lk?Z 5!4.#".54>2!/A%'B/+(=B=if:y'D33D( R0oCEOc88cO'MP.4.#"32>7#".54>7!5!!"@YmEgLLfjJkoX؁q؝XGxdI(YjiMKkii۫uuZ8!4.#".54>32i+Kg<>lP-7:p0M6NifL>@kK*0Rp?>?1ill3eMF}gZ,#!#4.#".54>32!|/@%&@0&%BE;hRPg;(C03F(#P/MCOe96`PFZ(4.#"32>7".5!5!>32&/Oj=kOOδMEHHjMoP.)NpF@pR00RfLLfan0/IP- %#"3!!"$&546$3!!J׉@@ט`a( ]wxԟ\Fww2P:G!!3!n!.x1Z+(4.#"32>#".53>32`+Li=?jM*,Ni=>hL+iJEMfLK{W06\xCKxT.4XwA_bKr62NpZ+4.#"32>#".5##!>32*+Lk?AlM+/Pj<@jM*KihNIHk?pR0,PpEBnO--OnβKKgcBvj12KZ+"32>5!#".54>3!!5!!Q@lO--Ol@>iL+MghONiL.QoA@nQ//Qn@/eMMehJ{PS$!4.#"#4>3!!"632,Mh<>e-PKhr>iM,fL?nR0*'R} gM1Tr@aKfPc K4.#"32>2>73#".5#".54>2*LjOwϙYVz|՚X0/':Yr?DsU0 E nǬc67dȭe7><qU'!RkL)[z{֝[W.>#K]59_|D 6clkǬd77dk{Z'kE"1%P#".5!5!2>53KeiL*-Nj|fH'eMOfXAqT12Vq>P&!#"&'.5467!5!32>534JEp=AB7D4+! )#$+e;:iP/05IGHeLJ )RpEn),/,Nj=Z""!#".54672>53!`NgiMNL6--Nk|jN,+eMKgV[@n6@nQ//Qn@]S#".5332>54&'7SLfiJ,Mi>=iL+>5{-H3eMKg@nQ//Qn@6|>/dfdS 4.#!!2>7##!!!2/Oj;;jO/JGHܓ.gM@qR0,Nl?dEHCMPbF4.#"32>5>54.#"#".4>32YywКYXxԗR6aO"?/$/ .@KZj>mȬd78ekoɭc5[])D0z֞[[z{֞[WwAoV5'//!6cǫc66clv?GOPb 14.+32>#";+##".4>3!2>mTEETmFUl>>lUFk\܀EFޥ^^ހWܢ\YqA@n@oWVn?~ٟ[][ڟ[]F!#!3!3!3FS!4.#"#4>32/Oj;53`EIgJ,Mg<:iO/02Kf>mQ0,Mi=nB-#".'332>=#".533267653BLi`R0Lc8;jO/FIiJ,Ni=:c'YgKSkFzZ40Sm>1/Jg@mQ.+(P|S!4.#"#3632+Kh<7g4QɑeL|?nR0++N|uaKfPk*!5#".54>32.#"32673YUlǬd77dlps[.\YS$wЛYXy^Pr2@6clkƫc6JH,Z՞Z;;xXZ)"32>5!#".54>3!3!Q@mO--Om@>iL+MgiNNi.QoA@nQ//Qn@/eMMehJ35S !4.#!!2>7#!!#!#!2 )4)2VsA4(AsV2*=&$;,S~U+ 9/XZ.?#".'332>54.'.'.54>32#6.#".KfbT1Ng:jN-VU^]4R8eMRlHzY3/Qn@72*63UeMTkH|Z4/Rn@)D BFRZS#"'!!332>53SLf,Ni=53 KihN/Pj732>54.'.54>32#.#"]~|ۤ_-H3K7>kTSj==jS8mV4/Rn@8gQ6';#w٥aL~מY[{:omn:vQNVl=53 ,T,Pf:l #D;%?.a=4.#"32>7+!!#".4>;5!5!54>2-  -)//?%&@.%?/:fPW2WvCDwX22XwDp=  @xY9lY|PW!%! %674#"&5! % %1,lշ._z+,S.+RLo ۤTn8d`'675$!2363 ! ##&!"#"32CxuM6sc*rE) PlaؕyZdX!&732#"&5 ][*8F e]N/I3^@[7rr2dX'!&732=6+537#&5! nN ggGVzkB3L.ķ@JKW~Xq\,d!$75&7! &324'"6Z^,CH!IJ:QU,X\$d56#"! !2363#"32UTcD>0R^<]td'6#"$! +.!TueudY! 473254+5365!5 Wb 퇇2mNEIJ(bC+d`3675$%2363363 565&#'#"#'#&#4%"fDjPQUOR Tg@! 5y<O-6d! !234#"#!#"2mLC{%  }>e~! )!363#"7Y`PlB   ry_d56#"#'#"$!2363 H LDVza!t#rd!! 4732+53274'$53X`4"gzҶ/c7Qib6ȕ!6G))=HdY2! 3325 '%5%Uc| CGko 4Y_nd9$5$#"#'#"$%7367 > B)oQT7-ngDP5kn1w5! 3324&547cTɜW\wؠ?c-'9dY: %3! ! %#d6*Q&q)QGFޕd$! %35#$ 3#3%#" 5;54 X`dHrrr44OfkQؔcdX2&!"'#!525#"3$%2363 #"321ZG\KVOvBppdY_!! %$54#"'! ! 4'7_GD `U6I@bYsrg8A:ԃM){6\lY(3324'7%#"'#723! ߫fB߻cV̿0?7YpdW $!6=3! 47$$5! eڞòkHuLL8TWJ&)*d54&#"'675&%'%"t_CCt?h]|KytJfqI8=ۣ&*d2 3#3#3#dѺ/㰽d 2"4;%"4#"32;ѹF|pux$LRQ´h=@ B1/0KSX@Y %##.d+hK'Eoh"hO'to@1B/990KSX@Y sNO')tqN')uq'eqw^?1B/990KSX@Y 5](&xyw^O'1tu'm56'm&o56'oO'p56O&pE'qE'qEO'rEO&rO'0r'uwE&uO'vwEO&vw^O'?0v 3#!38Ygg`nC^^n7]^7nn7]]0d"&533265453zWA@XzCss!AWX@+!U#454&#"#462zX@AWzB+@XWA!s0U!5!2654&#!5!2@XX@s0{X@?X{0U 4&#"32>"&4623X@AWWA@Xz柟C?XW@AWX栠H> %'111 ]]1<203!3CC~K3#K!5!${1V #5#53533zz{{1##5!z$ %{{:'Um'o"'=qwq'uh9hK'Eh)hO'tw^:<1B/0KSX@Y7 5wM40w^O')tw^N')uw^'w^:21B/0KSX@Y%5^xyw^O'1t'56&9'56&O'56O&'wE&O'wEO&O'wE&O'wEO&w^N'1u<291B0KSX@}}}}Y5`sbbs]103C)8)K'E)*@ 8AKTX8Y1  /<03! #4&#"!!ˮî$*\u)O'tw^ 2 <1 /07! )5! )w5BhPa.,~w^O'tw^N'uw^'y` 2<1 /0%! )! !`aPhB5jiy`O'"t&''&O'O&'w'(O'wO&('y'(O'yO&('d ~21@  0# $54$!3#"3nn͙ nn{'|'|w}'dy'F> %@ 21@  /90"32654&"$54$32#Bz_̀#R3IK'E %@  21@  /90"32654&#4$32#&f̲_ȭT#R3{O'tF> (@  21@  90%2654&#"3#"$54$3Bf̲_ȭ벃F>O'tFN'u (@  21@  90%2654&#"672#"$53z_̀ʃIO'5t'F'?'~'|?O&~O&|'F&O'FO&?'~&|?O'~O&|?&d~  $~ ]21@ 02654&#"632#"&53XP^J\TaaQ_VFTHUGQK})~J8 2654&#"03#"&54632xOaT\J^P_KQGUHTFV}i~F'x'F'x'F> 1 /0#4$32#4&#"#fK'E 1 /04&#"#4$32f#O'tF> 1 032653#"$5fF>O'tFN'u 1 03#"$53326f餗O'5t'F&?'~&|?O'~O&|'F&O'FO&?'~&|?O'~O&|?&d~ ] ]1 03#"&53326yaO\T~JPML 32653#"&5T\OaQLMPJ~w:1/0!#!5!)+jK'E j@ :1/03!!)ժjO't w:1/0!5!_++wO'twN'uj/jO'5t5& w' & ' O' O& 5'w&6O'wO&'&O'O&&d]10!!3 nC ~21@  0! $54$)!"3͙ nn{3!5 nw} (@  91@  20"32654&'2#"$547!5__ȘLӦnjFY 'i'FY} )@  91@  20"32654&'!!#"$54$C`^ȋMӑnj 'i<'w "@  91 /20%2654&#"!5!&54$32__ȋfLnjw'<)w'<)FY #@  91 /20%2654&#""$54$32!C^`șMgnjFY'T<,H}'%w}';%3',FY'y,3'-FY&-yFY'T<,\ 2654&#""&546 !j>_IEcI_(0MJBSKFXCIn~|Q;n."&5332653ܨabaaJPMMPJ\ 2654&#"0!5!&546 _IcEI_>jm0(MICXFKSBJnn;Q|~w 1 /0%2654&#!5!2#bŘ쥒FY ':FY 1 /0%"$54$3!!"Cꏙƥ᪑FY'<:w  1 /052#!5!2654&᪑w'<<w'<<FY 1 /0"3!!"$54$3CbƙFY'<?H'8w&8;3':F&:13';F&;1H'<w&<;H'=w&=;3'?F&?13'@F&@1\"3!!"&5463RiPYnvDZHCn~}w^ %5-5 ^j22F  ? 1 /0!3#$53TCc Xon2K' ES @ ? 1 /053#3  cCT-ncCO' tSF   ? 1 /0%#5%3# c--noXF O'tUFN'uU @  ? 1 /0%!#3#c-gCcnO'3tX'QF'Q'S'SO'TO&T'UF&UO'VFO&V'X&XO'YO&Y&dX  ] ] 1  04&+3#XHǜV+.#"#"&'532654'&/&'&54632Cw7Bh#-8GC>=JGBAm'./G?;=~ÇH)@@V\`RʺªV\`RʺªhZ·%XhZ·Fl632#4&#"#"&3326tҪºR`\VҪºR`\VX%Zh۷ZhFlO'tmF'32654 !"/.#"3"54!2!rz|K٬42 swUҤ'4X˧|`í~pX˧|`J3~F'<oF'763 #52654&#"# '4!"326(24׬'Uvr!24֭٣K|zsp~ȕ`|Xp~8=`|F'<q&lF&l'mF&mO'nFO&n'oFU'o'pFU&p'qFU&q'rFU&r'>72#52654&#"#"&'463"326[*'sobI=J>",BR\*$jt_UV) '2654&"#"'&54632! 33265,B:d:B0<~JIjˮîB,">>",BVU_tjN*$u) '"2654&'632#"&5! #4&#",B:d:B0<~JIj!!ˮîUB,">>",BVU_tj$*\) '"2654&74&#"#! #"&547632(B:d:BB®!!jIJ~<UB,">>",Bu$*Njt_UV)O't)O'tS^$264&"&546; )5! '&Vhf# fw_:@ 91@ B /90KSXY%4$32#4&#"!7g#ʲfhXdfF.=@ 1@ B 90KSXY#"$533265!>ʲf"fw_?@  91@ B 90KSXY '!32653#"$5g"ffd餗 K'  '  O' ;';O' '  O' ( (2654&""&546323326=3#"&=bFntnPX/Q,CEmaZT:KMMKFHn|ppX;oBGj9$ 3>2654&"!&546323326=3#"&=!"&54632!2654&"bFntnP?+/Q,CEmaʔ/bFntnPZT:KMMKFH;XppX;oBGj9|ppX;T:KMMKFHFY<@   91B /0KSX@ Y!"3"$54$3!7YꏙbXhUFY'<w8  91B /0KSX@ Y!26544#!wb gXw'\<FY:@  91B /0KSX@ Y'!"$54$3"3!YhbƙXiU𥒥FY'i<\'%!"&5463"3!\=.̞RiPYB~}nDZHCw%#535!53!3##q=ԭ-!%#5#53!3!3=~0Ԥ!O'tw533#!#5!5#5q=-ЭԤwO't!3#!#!#5353=ԭ0~!O'Vt 33#!#!5#53m unfy~n ,@  221@  /990%2654&#"672#"'"#3z_̀ٷ{O{ʃIH+'sZ@  21  /0# !3! !5aPh//+jiN !!!5!;VnVN#5!5!5!53!!75$i2$i*mւVxnVnՆu!s #'#37 ͉sH+'Y &s & O& 7& 7O& & O&!!!!#!YX  !!###!YX  !!#####!YX    H!!#######! \YX     !!#########! YX     !3!!  !333!!&  !33333!!e    G!3333333!!     !333333333!!      !3!!#!?r !333!!###!?r   !33333!!#####!?r      Y#!3333333!!#######!?r        +!333333333!!#########!?r         SC !3!!#!YX\\SC!333!!###!XX\\\\SC!33333!!#####!\X\\\\\\S FC#!3333333!!#######!ZX\\\\\\\\S C+!333333333!!#########!YX\\\\\\\\\\!33!!# #!՚rՙr %!3!!#!!2^DD^ Wc !!!5!5!!!wsX #5!! !!'!%'! !7%!77'7!  ww u||||||||||||u  G7+/37;?CGKO!5#535#535#53533533533533#3#3#!!#3%#3%#3#3%#3%#3#3%#3%#3??????𨨨!!!!aOq:#[!' 7#}CrarCrrD:[! !rarC}rbar=` !#!#3!ff`G [`3!!!!!!!! j /t`Ӕ&{o{4=J%#"'&=!.#"5>32>32#!3267#"'&32767%2654'&#"JԄ℄N ̷hddddj||MI؏ii~ST`Te__ZjkSR\]i߬A@o\]Z^Z5*,=>` #% 54)3#4+327#!5#53!2x9||ԙf_ڪrĐq{Fg`32654&#%! )s7F0Ǔ$g` ! )#53!#32654&+7F0ɖzٍ`` !!!!!! /`Ӕ|1#"&'5327654'&+5327654'&#"567632p<54& #.54! ì++f++$$>:#tNPƳPNM]*U3MY + 3267>54&#"'>3 '# 5467'7*(Ou))Hn.Mw834OMx43N)gA\*g>}66]C_56`?`q{&/=5!&'&#"5>3267632#"'&'#"'&732767276'&#"qN ffjbdjQGhi񈉉ijBN℄RR\]VVUVVVZdc44*,nmn67윜78lkpĘZYWWsttstuq/u{ 4&#"#32/8qu/ 32653#"4/8`!264&#%!2#!#N[cc[H^^>2`!.54763!##"#676#";jpkla;;?î545w?@@?w iQP%$q2^66**TS++2`!&'&'3;3!"'&546#"37545â?;;a|lkp w?@@?wS66^2q$%PQicQ++ST**<m``$ 653 &53sXٹ};ML+%!5!2654&#!5!#TZ`fcL||BtN5353!5!2654&#!5!#Z`fcxzʤ||Dv/{&#!5!2654&#!5!27654'&#!5!#|vz{\MN`_`gb>> E__ru99wSS?yzVU=`YV5`ZX`]x`73264&+5%5!2 'Ӏ{n Fo}ɽBdd>Jm7{3!!I{/=`N`#!#`I``5Z^`367653#5&'&3U9VˆmmV9S`1Ms,}},uMLs` h !3#'!#ZgVXVq`!!!!!5!#!.AeW"___DXI &327654'&#327654'&#%!2#!g1221g̼^-..-^EOO)(N^h+&&MO%%X@? ]65dL.- rUpz 327654'&#%! )[ZZ[vNONN]eefe !!!!!!R-@___S !5!!5!5!5@-_/__H~$5#5!#"'&547632&'&#"326NJYXe|}}|\SRFFPOWWVVWCj]/rssr'y5UVVUL 3!3#!#΀2Wr3# 3+53265A@1(TFDE`Tli 33 ##-<azBm3!!_ 33###|{9="G 33##|_{EEG ##3G|_{EDEH"327654'&$  '&RQQRQQQQwvvwtww[\\[[\\[\vvvvuvG>@"327654'&327654'&'52#"&54767&'&54763sCDDCstDCCBR65<%j<=0ER^X65`l<=ca==ll*6RI)++LK,++,KL++5##,&)$%LY+8:6iG2278PyAAyP87'21I.* 32764'&#%!2+#Y0110YQQQQ))))]?@@?[ #'&'&+#!232654&#=)&''y.,,LPO)*s\^^\$ )(GTD<32#"&'#3t4554455$pMPPPPMp$uuc@AA@@AA86Z[[Z68^gG3#5#"'&76322764'&"Jtt%78NPQQPN874555555S^8Z[([Z@AA@@AAG#!32767#"'&547632&'&#"@AsC?>>>BADbc^]SSt44Va:: 2j88a WW[ZQRmT3210YGMK SX@ 2KSKQZKT[X888Y1@   /0Y5!.#"5>32#"&73267GsC}>?CŻthVau2koamTebXTb2&'&547632.#";#"32767#"&5476G&%HG{065>=f,K,,+*Ib]W-155_;65-9553+,$$4O,, ^$'U13 `fa<))R`1#"'&'532654'&+5327654'&#"5>32FLHG{065>=23-KX+*Ib]V.156_:65-9j2RQ,+ H4O-+]4$'U 12  `33a<))G 14'&#"327#"'&'53276=#"'&763253J44^]4444]^4PP=7633223r99$88NOPPON88$tm=>>==>>FNO e 45k37XX"XX7_z3#53ztttu 33 ##uuZu2u{"4@ $ #32>32#4&#"tHKYhuu'oMLl+yRowtHJZiw[Wk\sa97EBEB~wZXku4@ zx66X6VYYk\sa8BDG 6@ KSKQZKT[X 88Y1@ /0"32654&'2#"&546]ml^]ll]ǁqqpoWGu 67632#"'&'532764'&#"G0336^_]^:5311213p?>>?p3121 XXYY _ ?@@? G4'&"#46320T6667zWVoBAA@qWWG27653#"'&506667zVWoBAA@qWWu#3>32#"&$4'&"27uu$pMPPPPMpf4554455b_86Z[[Z6@AA@@AA#3#;#"'&5#5350Hww33UUPM,V-,vTPn3327653#5#"&nt''N^67tt+78Jy~{Y,-65\c`9nA!5!27654'&#!5!#Ue22<KLg#"FS10gg%dAl88u{(#"&53327653327653#5#"&Q+<=Rnxu$$IZ54t$$KY45tt(78LMlE!"z[+,64\c[+,66Zcb;F&33#&{{y #! !&'3254554#"t nυ9F}攥^ؙ83a _{3#5&+532{t<,||GXG+&#" '&54767&54!232654'&'&yAJZVWVWW!/bL+"766^]l9=P(r(B4?KWXXWr]$,O'(@?Ajp69G  )"27654'&'2##5"'&5476734 )=;67-!XQVVQs~SVV@h)%661FQ:5}t?3XJOZUUXR=\ ,Ajq@:%'#&+53;'&^sa,(^ra,GX]:DFYzg duudnsrd&sudyovdswdy67632#"&'#44&#"326&_%sNo%ti\[jj[\i92ض78"{qqrG xyd%tzdV{(!2.#">32#"&'#32654&#"aQQR9||9F,*[cbbc#LNt`5!#3#3!53#53t𰰰त TV/%+53276'7#3/F0j&*06G#367632#"'&$4'&"27tt%87NPQQPN78f5455554_s^8Z[[ZA@@AA@@Gu&'&#"32767#"&54632u1122q>??>q22110h;533` @??@ _ GKv+325&#"47&'&54632&'&#"632#"Z%0\R@5`$^4412/412q>??5{3 * &;/Z ` ?@@biG.&'&#"32654'&7#"&54632''7'37 i:;n\[nO$$ZY drP =67Tb1#"'&'5327654'&+532654'&#"5>32N+,QR2658-56:_651.V]aIV-+K-32==l/|GHL ))unn77wU:8P#P,i/0\+53276=#533343r,Brrtn x66XU P#PG ,5#"3276#"'&'53276=#"'&54763J]4444]^44tPP=7633223r99$88NOPPO>==>>=۠NO e 45k37XXXXn3327653##"&nt''N^67tt+87Jy~{Y,-65\cO9I 5333##53#Irtggttt\\jz~ ;#"&5C,rfpUWlwI 5!#3!53IMjjo\\E\\I5!#3#3!535#535IMjjjjooo\\\\\\V`3#"54;33#'#"3276ztteztry "3rKNB ,|ssW?#5$ z~3;#"&5ztC,rfSVXlx[`+53276'7#3`34r,Bttax66XS gq3!!q_u{467632+53265&7454&#"#4'&#"#367632+=32#4'&#"43r,B0t*pJz>?t'(N^66x66X6V~a88BDwY,-56\uU 4'&#"#367632;#"'&5P''N^66uu)89Jy?>0B,r34Y,-56\sa8BDzV6X66xq 33##q-{{~G 2#"'&5476"!&'!3276WVVWUWWU6//1w &6^]6&WWWXXWWWW@9\[8E-AA.G&.#5!#3!535&'&5476767654'&OpFVVFp^nCWWCnt6%66%4#76$\\FWWG\\FWWE[*,ApoA-9*A@+Fa:.#"#"/;#"'&=32654'&/.547632;1j8W*,]({44MN9> 0Br34@?>=RX l)k`GF@rb/$+*MW33 V6X66x"j2-*TIX00476;#"+5326z73zno>43r,B0]Me30U:Jx66X6#3#;+5326=#"'&5#5350Hw43r,B033UUPM,ax66X6V -,vTP^!533!33##5#"&=)3276^ntgtuut+87Jy~''N^61\\`9Y,-6/G&5!327654'&'5!# '&54767GE()78Z[78*,?G$"ZYYZ!"J\{':?KY7667YR8>#{\8?>LRRQRR<=:u2653#"'&53QHuDEEDuHPZs{>??>{}ZPz3+"&53?27654'&'&gH#"YZ,rftA Z87)2:08?>LRRlwpU67YQ8C&# #3{{ s7n !!!5!G'L\^=R^7!!#;#"&=!5!G'LC,rf>\^=R VXlx ^7^n#47#5!5!3632#'3254#|`\'Ln& m,7!!^R^=jR37!2#"'&'5327654'&+5!5!hCQ>63``;??C5~Ex>?::hn\& =;M|CD m**PJ*)]R^G !32767&'&"2#"&76So/6^]6/ +66,ǗWVVWVV*MWXMmGYXFovw^wwwv[f!5!73[f3!Px[f#'!5f[f!!#PU騋fBf 3#'#35fxBf 73#'#˴fxh'${-{'TDN's%N'>E&%&E&%&Esu'l' Lvquf&vCO't'qbN'>G''qZ'zG&'qZ&GOw&'z[quZ&Gz'&'qZ'^&GZ&(Aq^'AHZ&(@q^&H@&(7q{&H7v&(qv{&Hum'u&(zquH&H'zK#O'vt)/P&I @s&*2"qVZ&JI;N's+dN'>K;'+d'K;P&+j@dN'>Kt;&+ztd&Kz9;&+ 9d&Kv&,Jvg'LYZ&,>tF&>ajl' v.l' ZvNj&.&Nj&. &Nvj'/''O jk'*u'/S1'q(;j&/J'Oj'&/\'&Ol' sv0f&PvO'wt0'FP't0{'P3N's1d'Q3'1d{'Q3&1d{&Q3'&1d{'&QsZ&2Ffqu &RFsV&2Dlqu&R'jo rsZ&2Ajqu^&RAsZ&2@hqu^'@Rl' v3Vf&Sv2O't3V'STN's5J&UT'}5J{' UT1'q}; J&q T&5TJ{&UO't6o&%V'6o{'Vm' v'6of&V&VvW&E6o&#"O't o& *O'rt77N&W#>'q77'W&7b7&W'r&77''&W)'8X`'{Xv)&8vX`&X)&87X`&Xu7)Z&F.8X&+v)4&<28X'<Xh}&9F=7&Ymh&9=`&Y^Dr' |:V5k'C ZDr' |:V5m'vZDN'j>:V5'jEZDN's:V5&ZGD&:V5`&ZJ=;O's;;y&[g=;N&;j>;y&[jfO'ps<=V&\f\m' u=Xf&]\&=X`&]1\&=X`&]d&KfN&Wj->V5&ZB=V&\{a&D/P&A@quAh'${-{'!Dh&$u{-{&DTh:&$G{'GDh:&$H{-&DHh[&$N{'NDhu&$I{-'IDhm&{-f&"hZ&$K{-'KDhZ&$L{-'LDh&$M{-5'MDhY&$J{-&DJh&{-&3&(q{&H&(uq{&H^' u(q7'H:&(Gq'GH:&(Hq'HH[&(Nq&HNu&(Iq'IHm&qf'& iZ&,#uD|& &,.&Ls&2'qu{&Rss&2'uqu{&R}s:&2Glq'GRs:&2Hjqu'HRs[&2Njq'NRsu&2Iequ'IRsm&'quf's& }sgk' 'ubvf&vscgk' 'ubvf&Cscg&b'uv{&c}g^' 'ubv7&scg&b'v&cs)&8X`&X{)&8uX{&X}_k' uqif&v{r_k' uqif&C{r_&qui{&r}_^' uqi7'r_&qi&r{r&< r|=Vk&\C!'v<=V`'t\&<r|=V&\`^' ru<=V7&w\qa&> Zpqa&> Hqf&> gqf&> tqf&> hqf&> uqm&> ivqm&> vDha& Z#ha& f' g|f' tf' hSXf' uom&1 iQm&x vNa&B ZDa&B 9f&B g f&B t%f&B hOf&B uR-a'# Z-a'# 7f'# g|If'# tf'#" hSf'#^ uoVda&D ZVda&D Vdf&D gVdf&D tpVdf&D hVdf&D uVdm&D iVdm&D va'% Za'% f'% g|f'% tnf'%3 hSf'%d uom'%t iQm'% vNna&F Zna&F f&F g'f&F t<f&F hQf&F u=nm&F inm&F vAa'' Z5a'' Kf'' g|Kf'' tf''4 hSf''p uo"m'' iQ)m'' vNqua&L Zxqua&L nquf&L gequf&L tTquf&L hquf&L ua&-# ZVa&-} Of'-v g|Yf'- tf'-6 hSPf'-w uo*a&R Z=*a&R *f&R g'*f&R t!*f&R h`*f&R uW*m&R i8*m&R vIa'2b f'2 tf'26 uo3m'2L vN'a&V Z^'a&V T'f&V gY'f&V t^'f&V h'f&V u'm&V ic'm&V v^a&6N Zqa'6 if'6 g|uf'6 tCf'6t hSyf'6 uom'6B iQPm'6 vNqf&> tqf9f&B Tf:Vdf&D Vdf;nf&F f<quf&L {qufY*f&R 0*fZ'f&V M'f[qVa& HqVa& HqVf& HqVf& HqVf& HqVf& HqVm& HqVm& HVha&  YVha&  YVf&  YFVf&  YFVf&  YhVXf&  YVm&  YVm&  Y2Vda& 8Vda& 8Vdf& 8Vdf& 8Vdf& 8Vdf& 8Vdm& 8Vdm& 8Va&  YVa&  YVf&  YVf&  YVnf&  Y#Vf&  YTVm&  YdVm&  YV'a& YV'a& YV'f& YV'f& YV'f& YV'f& YV'm& YV'm& YVa&  Y\Vqa&  YVif&  YVuf&  YVCf&  YVyf&  YVm&  YPVPm&  YqH&>zq&>qyqVf& HqVy&>HqVf&9Hq7&> [nqV7& QHhm&uh1&q;f&B RhfVh& Yxa ZVxaH <ܲ?]1 Դ?_]KPXY̲?]90IIPX@@88Y#55#53xgJ7FJm' jVdf& 8Vd{&D8Vdf&;8Vd7&D [Vd7& `8f'#b Ruff'%n RfV;&% Yf' Z  f' Z. BJm'  ZnH&F$n&Fqn&F .x7&F [.zm&F \0gm&'.uY1&'q.;f''q R}f~f'  f'  _Jm'  *H&R'*&Rq$*&R *=Va&N ZVa&N *7&R ['*m&R \m&2vu1&2q;f'2 Rf5a'/ F)&j lFRfCV'f& YV'`&VYV'f&[Y'7&V [OV'7& Yf'-; Rff'6D RfNV&6 YsRfvxaH ܲ?]<1 Դ?_]KPXY̲?]90IIPX@@88Y53#7"͔gd10!!dd dy/10!!dOydy/10!!d8ydy/10!!d8yy/10!!y&__J&BBB@ 10#53ӤR?@ 103#ӤR՘?@ 10%3#ӤR@#5R՘?m '@   1<20#53#53ӤRӤR??m '@   1<203#%3#ӤRӤRլ@@m '@    1<20%3#%3#ӤRfӤR@@m #5!#5RmRխ??9; '@  YW Y <<1<203!!#!5!oo\]9;>@   Y W Y <<2<<2122220%!#!5!!5!3!!!oooo\\3!   \ 104632#"&3~|}}||}3q373#k%3#%3#V #@   1/<<220%3#%3#%3#ki3#iq L #'3?K@D$%&%&'$'B@ .(F4 :&$L%IC'1+C =  1 =I 7+ ! L9912<<2220KSXY"KTK T[K T[K T[K T[KT[XL@LL878Y"32654&'2#"&5462#"&546!3#"32654&2#"&546"32654&WddWUccUt%ZVcbWWcdWccWUccܻۻۻۼܻۻ q r "-7;EP\"32654&'2#"&546"32654&'2#"&546  &54%3#"26542#"&546"32654& WddWUccUyWddWUccU<¹ߠZucbcNWccWUccۻۻۻۼ5ۻ(`3(`u(`&  ,(`' ,&  X(`#3W`u(`&  ,(`& ' X , #'#Rs#G@%Bon29190KSXY" 5s-+#R#I@&Bop<9190KSXY"5 +-#^R^  &K'N''=NO'^O$#5>323#7>54'&L Za^gHZX/'-93A% #C98ŸLVV/5<4BR-5^1Y7| B_ % ij991@  <202$7#"$'56:<hh~vvuw~ign % ij991@  <202&$#"56$6;>nvv~hhgi~wuI3 # #bbc$$v=' {' { 3_!!V_+@B10KSXY"3#-\X 3!!#3hX^#"#JX 53#5!!53X^JݏޏJ&""gJ&"JJ'^"d] 327#%dp](; 2###׎辸( 3+"&5463yv}~}|( ';2+v~}O|}=k {B# #5#5R#۬@n&  =o'  BC''H1a~ 8| #'7!5!'737!!qaqqaq)`rrbqr2 535353,(`$' ,& '  XfN 53!535353fXp fN 5353535353,p  3#3#'d 3#%3#3#3#dipD %53535353#!5!3!,|f  feP> 3#3#3#>w 3#3#3#3#W "27654/2#"&5462332233VVVVVVVz@ <<1@03#3#zttttg? @   ] <291<290KTKT[KT[KT[K T[K T[X@878YKTKT[X@878Y@T /9IFYi       "5GK S[ e]] !33##5!55bf]myf !!67632#"&'53264&#"y^^a`<~B9>>Eoo4h6_ MLKJq ff\/"327654'&&'&#"67632#"&547632X3333XW33331221DD &9:DTTXWll122m45[Z4554Z[54bg KL1LMONuv l!#!liH30Y *:"32764'%&'&546 #"'&54767327654'&#"55j]\655T./RQ./SZ85UVUV56-/.UQ100/SS0/*,+KLV,++]12Hdt::dJ01:7PyAAAAyN98?&%%$A?&%%$S.532767#"&547632#"'&2654'&#"1220DC #<9EWXWXkl122Xf33XU5443g KK/MNoouv rh\Z4554Z\44k !!#!5!Q_i_k_8_83!!'3_a!!!!''^_o #&'&4767TRRTe^///._~g3#676'&ge_/../_eT)**)~~~u0@ 32tNN^luu)qJy}wYYk\sa88WT dC{d^TtdbTud?C dfC d\T dlC dYT dST d d8 d  doif dgif dM]dGcdGldu!sdGddV##"32.#"3267!!!!!!Oc%eNLbbL:/667756GFDFG ks9'.473&'3267#"'#7&'#7&'&76%73&'hA>/(%:@w]ayA9&AX}R4>C5Ai<)^_HH?WghйKp(`,%6767# !2.#"3>32.#".aXj]aye6{_]w|^0n&<$'/_HGghGG_^ٜu]\Y!!!!3###5qZpP~WHE9Eb#!!53#535#535632.#"!!!5-쿿=OL=tyB_))HB+#&'&#"#3676323632#4&#"#̪m49wSS>YXyzU6%X\xruxGM_a`f21>&>E3\u"&)''#!333#3#!###535#53355KO8~8~OO4&{{&&{{{ P32654&#+#!233!!;532654&/.54632.#"#"&'5#"&5qzzWQeGl`[z_<`HJU];Ufɘ/ϒjqqR>N#55YQKP%$((TT@I!*##`3E326&##.+#! 32654&/.54632.#"#"'&ٿJx}A{>[b`cae@fLNZb?ĥZa,/b؍$~3YQKP%$((TT@I!*;"&)-1'#53'3!73!733#3#####5!73'!!7]:1000019]zu }Luuguuguuuu_ % #4&#!#)"33!3_SV*$oN&1@: "+ /) 2+"!)#&  , & &*!/<29999999999122<20K TK T[K T[KT[KT[KT[X222@878Y@z  1Ti lnooooiko o!o"o#n$l%i'i-  !"#$%&'()*+,-2   USjg ]].#"!!!!3267#"#734&5465#7332[f A78 ʝf[Y`(77(6bbiZȻ{.# .{ZiHH"{/ #/{"G(33!!###5uX_Tws1s!5!!77#'%5'&PPM4Mo؈onوn9 -bw'67>32#"'&'"326767654'&'&67'>7632#"'.'&/#"'&54632326767654'&'&&#"32">1aJ{%A01Q[W7>/W1   >$<  . #dCw-^URB$`>DL_K>.3b @N\uLMiI(S395l9,8G(/&  -9)ЗiRm:3Xwdg7? 2j7#=5(6$ 629T/ (2M !:5S}$@{mbq~Es/4 -& "TAB`]|@8nRkcd]aC".)5'632327&547632#527654'#"'&#"%654'&#"o|@X"07PYtaTk~j[IwmqJ2530D#24!`NkBX``S㫣†qJ323!!!3267# $547#5\J5 ;_srigCS1r{jJ,{ +kv67&&UB{\* {;^~FE/0K?{w!,&'&#2767#&'&576753w[TUeeUT[Y\Y[dsye]Y\[CvlCi----iH$"u9Bt"#BuflC3!~d=!5!'3 G~d=z!#'73!5~~͛=z5!'3#7=~~d͛F 3#%3#%3#yfPF 3#%3#%3#%3#ky)=z #'73!'3#7~~<~~͛͛C $(B"326=7#5#"&54634&#"5>32%3#.#"3267#"&54632pSHfmƩogDc\GD^o8yy8o^IICBRCI M >OW\ 7$44"C +EI.46'&#"#&'53254&'"326=7#5#"&54634&#"5>32%3#VNz$p;i0ʪ%={pSHfmƩogDc\GD}|49d$, !5Lf,1BRCI M >OW\ 7$s'!.#"3267# !2'Y藣yyYjzS #bvAZ4-4ZBuHHghG[!!m&r&F+,/-/ܸܸ,(и(/A&6FVfv ]A] и ии# /!"+!0153&'&'6767!!5&'&76wI3cc3I86QLNN7887NNMR48_ki:rq;zn #++$ * rn<(2.#"3267#"&54632%3#"326&$  &54^o8yy8o^IICDkavva`ww~44"K <M-1332653#5#"&.#"3267#"&54632%3#\QPcu`^o8yy8o^IICDLriuD P44"K{Ro#&&r)Io!6767632#"'&#"32767#"'&'&547!#"'&54632327676"#"'&'&54767632l(9BKc{=&%%03!((!,739%7`lG;7 25]hB4,'5  'B[QF$%]c'G  %! }Kr~,1ьIg)*!&!(D;w},75;!_']7:y}[Ϟ\@4>#,!, 'QFj(JG4$$,*)/9yK#%P73276767654'&'&#"&'&"'632654'&'&54767767#"'&'672#"*i(X%# 1FSE/ O.55FuPU[QF[00rl~"KI}!;IFs;n;_T^͌Q79}w^l.Gyr\[4O9%#i#^MX;yv@c}e.ID\7I;>2V秉uӰ3!3%!!!!!!nnq  dx+%H#>54&#"#3>32u j_ y/wFx \/HT^Ȧ^m$R#a"67632#654'&#"##7373!!UcduL/ .| {@e22wKwGW\?3L0O}};t9#"'&5476323276765"#"'&54767632thn<7# ;KQ>!|Za,4(XM!},‚<7D9#7.M=.1?@ '(MXI(' jF!2?632327654'&54?#"'&#"632327#"&#"jou9!ydG>PPPP5ʺ68^nm{z}}ȋo֏zZ'PVaK~pmdykb^OP681/::b:DnJ327654'7#"'&'$#5"'47676766767632#"'&'&'&#"32nZS_n0VBRny#HB?X!$9BMw>7l. ;7%,;(ӧuy,D0&3273#"'#67&5477632654#0)W:K32#"&'####53&  O:{{:ܧ$}daad}j %# !3!# dX0dd q+6+/BB/,/<-ݰ.<-ް#? < # 9 FhH)##Ii;BB=#IbiF`FaC`#BC`CUXC`C8Y& <BB00<İ< 6< <9 FhH #Ih; < ְ ݰ,9, FhH &ְ& #Ii;/,#Ih:1#IC`#BC`CPX& ,/C`C8K RX #IC`#BC`C@PXC`C@aC`#B C`C8YYYBB=#IbiF`FaC`#BC`CUXC`C8Y#)<BB1#IRX   <  < Y3525!463"!4632#"&732654&#"5!6jgggg92299229k̀k@4nNggNNggD{{ "-! ! ! ! '32654&#%!2+# JR12)uyӲckkc?L00ey wXQPXdn;C0<67632#"'67327654'&#"#"'&57&547276545[ۄFIyeL )qz]E& JEYq:?.蔁0.A ƂMkeLPק<+(h|H=y|n=B {u.F/4_NT 33!27&#%!2+!67654'&,d.@nX<-]\,q jdZ)VV)s!)%#'# ! % 7& 676'&B 3y;:x+lllli$ #ab[ 2222jT%%5$c$B2 _327654'&'&'#"'&5476323276765""'&5476!6?232767#"'&B=]iS\ZV30Fn7;#FfS9!!< #5,h";<2XngZR{,##9>;K!QIag£S D5@7*'S:y}*7H0 5#!,Il @3Xnh0{(2r:=OSlIX&54'&#"#"'&527654'&#"3"'&547632763227767654'&#"R(O*\xggfg-.@@?@@?\QA@@@S6fggfeӻp/$~AB}:1$ -*MJJ@f[+8vuuv zVWWWXWWVVW\uvuuu# bW1W{|^1$h{vC[SK\GChfy /2 &.2&'&+3!.+!! !27&#676'&%3LDEx-Me5q>HJxnu1EA+ZY*01/O~hbb)j)V>U)-  /!/ и/ ܸи!ܸA]A)9IYiy ] и /9 ///+ +0132654&#+#!273 # #s sNCI/ϒ_6۬kk%T$+.3&##&'&''7#!27%7 67654#?\A>:AٿKE6ToF^~_ ,8~|T3Jۏ/HDh0& ,ok؍]-Dbg('4.#"#"&'532654&/.54632733###UW'AG/E8pi4sG[d/EK7?8pc|3iиY"*/( VAO[`*,2,* M=H\T(l0`!!#!!!!!!!3!!rso+` `ffff'F >@!    b b cbc91<<2<<903#######5Jq7rqr/B^^"h %73# ' 3,o-MoF+,\ %#!!!5!8kO8d qddd XL/ 654&#!5!5!5!!2!"'X $''ߦԧc̆eeaԊfJN6NsDU767654'&#"#"'&5733272632632!"'4'&'&#"'6763232767654'&'&#"_}yj#1Q\$####,TGG\n#?QY>kDM4giMqE#"'&'&5476?&'&547632#"'&547654'&#"3"32767'_ilE_ml=Oc{T3-2") %+fa@aP/Z_|{w:maZu> IhA"%@_l$=PczS2VN-2!$+%$+@e}N069na[u>_T M#"'&'!#!"'&547632327676=!7!&#"#"'&5476!27327#X':'7?<=**M_4. B^l{>!'Ba>nG#&#w4$B00!K=DcK_4B( 03B{>ceDInFT=I,Fw7K. 0# )5!!5!3#Pʪ9Bk32767"'&'&47'&'&'#"'&547632326765&#"6767632377632#"'&'&'&#",5(.'*'E`97y{7a;f7;>F3.^PeMD*#7@,j!HhH<=.%_yipp3 T}B',$ *5܀/,,@!;Da97TVM;nwF^O?/,%!;>jytX<;}f?E'_n H''#  .hJ) 4&#"322#"&54WOmVPm˜ݢt}t{أأg4 4'+5654/&4?'&547 '&5474/c2>Bd=VE/b5c2ltc2c2uc1LS2?Bd,>8?]/c6c1LS2tc1LS2c1LS2903#!".54?>3!4'.#!".54>323!2O,""$%@;5H *Y[#$"x2 1[G(  WA,!2#"&/#!"54?>3!!"&5462TPl 0%= -d,mF"$mG- .7#*(/ $"Sae(!q~B;V&!"&54>323!2#"&'&5 mG * 5G 0%9 . q~( 0 (/ &Js!S'DQIF 4632#"&3!53#5!pQOooOQpoTQooQOonuyy5yZR; ! ! ! ! HH#[[breH !#y;:x L`  !!!!#!3#'!#33 # #DjwZDZ֏R``C5MR.}$z`-1%5"'&'&5#2327#"'&5#!#"#463!#3#, 9Yl(Ht*=Z2dr!Z4@'!8 ֦zEB bLs{dYsZ{3#"#4763 3׮UEEl4FũdGQnCF\xB*WbOZ=0 3%!!,:*nq dd3!3!!!! nn8q  qwS ! ! !!5 5Y*dccS!!6$3 !"$'53 !"kJu^uopkoSUggHF_`2/.2%!#!5!)+!5!_++!# #3bef9WJ " )327&#!3676654'&|tK"P"coAfյ|cv~dAA xPfUmZ #2!7#"547632!3 32767654'&#"* 6B8wx!Nbb|˞"#>|OO'vN 2wx87tKsO=  =d01 PD10d^dTd6Jthi[{ (232767# '&5477632!7!654'&#" N&#G_yZ\klmk}Z5fF 9NJC0<7h:J(u*oDMcFPZd82vRsO 3#3#!!ɸ.Ԇ$N9`V 3##676#732767!ɸ.fʆ#5H2K1i0/N)deеT0Hd01``;&0 #473>32#"&'532654&7>54&#";Ht]h202޸SUWDi;2[UԠ_I@Yr~YW׀c?}<$$/1oX3gQX?@Q` $@   F 21@/0!5!!5!`oX&{' =5ud^X&t' =5ud^&{' =5 d^^&t' =5 db^&u' =5 d?^& ' =5 d~&{' =5 df~& ' =5 dw&{' =5 dbw&u' =5 dfw& ' =5 dlw& ' =5 d&{ =5,'&,,&,',,(Q&,9h9&9,,&9',, &9',',,-&,;=;;=&;,=B&;',,j/s'&'0yL&LLpY&L'LpLA&LY=`Y=&YLD=-&Y'LDL=&Y'LD'LL$J&L[;y`[;&[L[;D&['L[LyOq{FqZG{Py }  ) !3 !## !5hPPh55~ji.,w# + ++ A]A)9IYiy ] A]A)9IYiy ]%"+++ + 013 !#3 #32654&#! )5HHNhPaY.,职~y }(1C3 +3 !32654&+! ) #"35# !35#"&546!`HH5NNPhthNN5H/ó., ji~s'H{d?8   2@ @@ 00 ]1@   990@   <<@ <<KSX << Y5!!dx=xUZxx @   991  2@ OO ?? ]0@   <<@ <<KSX << Y3'#'-Zxxvx<xuP8   2@ OO __ ]1@  990@   <<@ <<KSX << Y'7!5!'7Pwx=xZwxx @  991  2@ @@ PP ]0@   <<@ <<KSX << Y#737Zvxxx76767632&'&'&#"#"'&/#7!#/)85,0F"<;NJX[GR7<"#!2)85,/$#?2WG[XJN;?,!F0O<:" %7xxUZxaxxaxuP8 '7!' 7!'7Pwxx>xaxUwxx>>xxwd?8 !5!3#xwx-xZxY %'3'!!5xZxZxvx檪uP8 22@ O O _ _ ]1@   990@   <<@ <<KSX  <<  Y!#3!'7'8窪xwx-\xwZwx !5!!7#7\xxZxx+xvx7!!5!7'3'xxxxxZxxvxxvxd>%52#!5! 767>54&'&'&>42/+-+-':1 Hxwxܪ-)o=  xwZwx(.46<=69)-d>>3276767654'&'&'&"5476767632+#5!5 6 +/24>A1:'-+/24>xwx  =69)-(.46=<69)-xZxvP>54'&'&'&"3)'7'7!#5#"'&'&'&5476767632# 6 +lxwx>42/+-':1A>42/+ׂ  xwZwx-)96<=64.(-)96=dP8X#532267676767632267676;'7'7#""'&'&'&'&'&""'&'&'& xwx 0$#$   "%'-0$' !  ' '- xwx  ('Z&("  "(&Z'( -xZx$ -#%"&* 'xwZwx ""&*  *&"" dPF%'!5!!'7'7!pxwxpdxwx^:5xZxo:xwZwx* %'7 !^ b9YXxbZ  #!5 xwxoxZx[ !'7'7!#xwxxwZwxZ  !5!3 ixwxDxZx[ 3!'7'7xwxDxwZwx 7#7!5xwZwx=xwxd? !5!3?=xwx-xZx,-eX&7#754767676 #4&'&'&"9xxZvx.-\ZnllnZ\-.BB54'&/#7!!#"'&'&'&54767D !BB54'&x\-..0YXplgtTY0../Z#,@#B"!BB@RNJV]xwx]TQ>]xwx]xLii `iiT4]xZx]4]xwZwx]JiiiiuP8!7'!7!5!7!'7'7!'7!5giiyYuI0]xwx]uIiixK]xwZwx]Kxd?8!!5!!]xwx]7Qix]xZx]xi#'3'#'x\xZx^xhP8^xvx^huP87'!5!'7'7!5$iiQ7]xwx]iix]xwZwx]x737#73jhx^xvZxx\x%hh^xvx^8dP8!7'!!5!'7'iili\]xwx]]xwxiii]xZx]]xwZwx7''3'7#7iii]xZx]]xwZwxliii{]xwx]\]xwx  #7!##PU?,UvU,?UP5#'#5!#5'U,?UvU?ԄU4 753!5373U?ԃUPqPU?U 433!'3ɕPU?UqPU?,Ud?8!!!!5!!c$R&xwxxxxZxxuP8!5!'!5!7'!5!Q$܊xwx&RFxxxwZwxxd?8#''''#53777?(FncxwxFn-FnxZxFnuP8577773'7'7#'''unFxwxcnF-nFxwZwxnF3'!!!!#!5!5!5!'-Zx((ت&&xvxTrx#7!5!5!5!3!!!!7Zxx((&&xxrTxd?8 5!!5!35!dxqxUZxxa 3'#'3#3#-ZxxbvxrxVuP8  '7!5!'7%!#'#5PwxqxUwxxw( 737533-vxxvxrxv4k?9 !#3?xvxתx~\xuI9 !'73#'7!uxvxxvvx7?~ 5!! !!  d }*^V 3! !!d}*p  d HP~ !! !!    ^V #!# !!!d e n ^V !! !3 3!!!E*dr*r$| \d^V )3! !3#!5#3 3 ȃ\Pdx @t %#!5#3'!3!3! !33'ȡdxd:tZdd\nt^V%#!3!3! !3!5#3ĹtIt\Px^V%3 3!!! !!3 37r*kd d| ^V %#!5#3 3!3!! !!33 37ȃ:͊` \h u}~ 7!! !5#35! u\Pdx f:bȃ  zM!#7!!#Mc"?,^xc?x^zM35!3!5!73zpc?Jx^cr+a?^xJ^V 3 3# '! !! !  e   dCuP8)5A '7!"'&'&'&'#5367676762!'7$"!&'&'!27676Pwx 21@=:C.2  21@=:C.2 _x_R#)l$h$#R#$Uwx@21.2@@21.2@xw#w;' , utP'7!5!'7!5!'7!5!'7Pwx===xUZwxתתxwZd?D5!3!!#!dx3xUZxmmxuPD '7!#!5!3!'7Pwxͪ3xUwxmmxwdPD3!'7'7!#!5xwxwwxwxmxwZwxmxZxd?D5!333!!###!dx⪪YxUZxmmmmxuPD '7!###!5!333!'7PwxYxUwxmmmmxwdPD333!'7'7!###!5d xwxdxwxmmxwZwxmmxZx7?@  !JBJAu}@ 7'!5! PJBł}BB7}@7'! ! 6BB A}BBh %!3!3۠ՈR+nm+A&6FVfv ]A]+ +0132#&'&#"327673#" B!OO!BzcI7͙7Ich-)b@'! '!* $$*9991990K TK T[KT[KT[KT[X*@**878Y>54&#"#"&54632#"&54324&#"32IH7$$0e՘ݢe WOmVPmmWKt,>bFأ[t}t{ !5!!5!!5>+5!#7#53!5!!5!733!Kcd04+^^``k](673#"'&'#7&'&$32 '&#" 32$767&'&YjiEd80~i?/c`RQQ$g'-"SRR:;nSz_'BTc_ N@DROg`8@91/90@cmpxyvn]] !3!^DC?`%! !3f<?I!!"$54$3!!!W?JGcGK@ sJxNL``ȟMOx]I&/!!!!3!!"''&'&54$;7#"ؖI$$$GA?d`,,cFU;}YI7ʟ 7c``JxH NGx]g% $54$)!!3!+*(FiNv%FrO:0QI&'&'&'!5!2#!5!676767!5?JGcGK@ 'JxNLȟMOx]I&/'7!5!!5!&#!5!2+4'&'&'3276765 I^Q$$GA?d`,,#FT;}YI7ʟ 7c;JxH HNGx]g )5%2767!5&'&!5(*FiNv%FtFgP:1R, //01!!,wq@gg120!#!# }wq@gg1<03!3wJ}w; ]@    91990@0QVPZ spvupz  Z pp{ t  ]]!! !!5 7AJI3!-10!!ת !#!5!3!!5!--+}ת W+и и и / + +и 01!!#!5!3#-Ө-5+@B10KSXY"3#-\<%?P%73% %#'TUUTUTTUDGrXY %=} *@    91903##'%\sB}}`s-Pb;=& Bus=& B s %.#"326"&'#"&54632>3"31UfvYRIOF^_HDa+J1CXXjewߦ~XZ /@- !$'!!0 $*0999919990@     $$$   $$ $ ***///***55500055 5 :::???:::EEE@@@EE E JJJOOOJJJV !"&'()]]32654&#".#"326#"&54632>32#"&1TevYR1UfvYRF^_HDa^/XZie7XXjeߦ~᧯wI%!3!~,I%!3IfIA//+к99к901%&'&'3!!#4'!&'7`'JAW`LqR]+X* Pʋs^(Rs57756u5 +  // 9 9 901 7&'7%%'6 676r{EG%y44RW!L!$Ҿ &!L {JP+3#+fJ+ 7+и//9 90137#'PMVo)gnJ+3#3#@+fJ+{//и/ܸи ܸܸ и и// // 9 9 9 9013737##'[P]ME+qd @oxpAn!3# ih^T3 3##"T^32#4&#"#P(*7332653#"RP7*uM>2&#""&'7327~9GA~9G⧅}}uM& S S%uM& S' S% SJuM-6?67632&#"#"'&'7327&'&5476767654'&'SOJMG79GcBnnVsSOJMG79G]InoSu=,EG%,=,HK%DAF7K|oUDAF71IosV/HgjG$4.JhgH$uMMQZc67632&#"!67632&#"#"'&'7327!#"'&'7327&'&54767!!67654'&SOJMG79G~SOJMG79GcBnnVsSOJMG79GSOJMG79G]InoSu~=,HK% =,EG%DAF77DAF7K|oUDAF7$çDAF70IosV!.JhgH$+/HgjG$uMmqu~67632&#"!67632&#"!67632&#"#"'&'7327!#"'&'7327!#"'&'7327&'&54767!)!67654'&SOJMG79G~SOJMG79G~SOJMG79GcBnnVsSOJMG79GSOJMG79GSOJMG79G]InoSu,~=,HK%2=,EG%DAF77DAF77DAF7K|oUDAF7$çDAF7$çDAF70IosV!.JhgH$+/HgjG$uL.3&#"7#'754'&'#"&'7327#4767>32";EY?w^H6H\O3,,HO;E+@/VfmVmHO?u]HH]sM3 gz.VrmV_zuM<%4'>7'7&#"7"&'7327&'&54767>2=,HK%=Q Hl;EYLmHH7'&#"'"&'7327&'&54767>2=,HK%m#6,=iSH;EcHKs;E]InoSuJ.JghH$6B0+@TH?HK|z1IosV32326ian ^Xbian ^V2NE;=LTNE;=K23276767632.#"#"&'gV^ naibX^ nai2UK=;ENTL=;EN1).#"3".54>323265.#72#"&:QHRdhNi\dnx>@HRdhNi\dnx.ttlH=YOHL\}X[lH=YOHL\}W#"'"#322{dfftX{dfftX#*$0!#.5476767654&'30ND:323267#"''cDXbia]yeEVgia`yS LTNE+~F KUNE,F #"/&'&#"5>32326!!ian^Xbian ^VeoNE;=LTNE;=K`#"/&'&#"5>32326!!ian^Xbian^VeOE;=LSNE; =Kkb%&32767#"'!!'7!5!7&#"5>32%H\ iaBP﹉lZXbian3}o -X"OEd8LSNE;I"#"/&'&#"5>32326!!!!ian^Xbian^VeOE;=LSNE;?Kk˪.#"/&'&#"5>32326#5!7!5!7!!!!'ian^Xbian^VLoKɦoOE;=LSNE;?KL˪s˪sB.32767#"'!!!!'7#5!7!5!7'&#"5>327b K`Jqia'+\+zlh>Tm?u2^Xbianc"%]OE˪Nt˪=LSNE;%N;?@.9*-" *19" <-<<219999990#"'&'&'&#"5>32326#"'&'&'&#"5>32326ian ^Xbian ^Vgian ^Xbian ^VoNE;=LTNE;=KڲOE;=LSNE;=K43267#"'3267#"/'&#"5>327&#"5>29+Vgia@LJZVgia}9+Xbia@MHZXbi a KUOE8KUNE; @^ LTNE8LSNE;f@59#"/&'&#"5>32326#"/&'&#"5>32326!!ian^Xbian^Vgiaq^Xbian3VeLOE;=LSNE;?KҲOE;=LSNE;?Ky5P#"/&'&#"5>32326#"/&'&#"5>32326#"/&'&#"5>32326ian^Xbian^Vgian^Xbian^Vgiaq^Xbian3VײOE;=LSNE;?KҲOE;=LSNE;?KҲOE;=LSNE;?K"32?632.#"#"&'!5!5gV^naibX^naiUK?;ENSL=;EOȪ+  %5 % $%5$[g&Y%ZhӦ69%676767!!"'&'&'!5!!5!676762!!&'&'&[C-87VYYW6 8.CC.8d 6WYYV7 e8-,CE[<0[2332[39\DD+N+DD\93[2332[0<[EC,` !5!676762!!&'&'&!![C.8d 6WYYV7 e8-;++DD\93[2332[0<[EC,`'  ' &  ' &  0' &  .62' '  W63& '  ` 3654'!!5!&547!5!!4434w~0IG00GG2?8>;_8` !!!!"264&'2#"&546HdddeH;k'**z{DbFE``bq+((d:svv`K!!!! &!56뗲`!!!! 3# $c'`!!!!33#$'c`!!!!!!'+]^*^]N䰰` !!!!!3!Np!NNf`07GO!!!!#"3###535463!3267#"&546324&#"'53#5#"&4632264&"?$mmC???DNB&H#$J'`qk[Q_C<17HBB@,I\\I,@p`ctiG6B?9i=$#tu#gSSS`*!!!!>32#4&#"#4&#"#3>32!]?U\Z79EPZ7:DPZZV:;S==:xoHOM]QHPL^P%U20=` ,!!!!3#7#546?>54&#"5>324eeb_--B6'Z0/`4\o$-,N2A+,/-7#!^aO&E++ '>@"     <291<2<<990!!!!!'7!5!7!}/H{};fըfӪL !@  <<<<10!!!!!!ת4!5!7!!!!!!'7!5!7!5!DQ"rn遙RoLT˪˪T˪  )@    <<10!!!!!!!!K T@.B $# <2291/90KSXY" 5 !!@po V@/B$ # <<291/90KSXY"55 !5AǪV 3!! 5 !!@poV !!555 !5BkǪ!5!7!5!7!!!!' 5'`ȉ)P"_=6@ss1stFpo!5!7!5!7!!!!'55'`ȉ)P"_=6ss1stF. 5 5:6:6pr pr . 55556:86:'!67&'&54767&'676'&'{)#Y4JJ4Y#))#Y4JJ4Y#)AAAAGF㞢GGGG➣FG2;;;<<;2;5$?$%5%67$'W eĔd?NĔ])]o& bR)`q% Rd%'%5% >zmzF<˶@6 o@hGp%5'75%7-孈m%˶C@ʴ@hGp/V !5!%5%%%!!'/xvH-rf5LOlUrC@=Vlь=/V%'!5!75%7%5!!' GWb[mmNL>ߪwe=ت=$%#"'&'&'&#"5>32326 5jbn ^Xbh`n ^Vg@ND:3232655jbn ^Xbh`n ^VfNF<>LTNF<>L>)P14%&#"5>32%5%%%3267#"'&'&/' k Xbh`'+kuE%sk ^Vhjbn "Pv1-LTND9ATj͊LTNF<= &TN#wf=J;N} 55 58@'poN} 5 55@'pom`!-%5%%%'5%%5 MM`ZDOA@FZDt@m*_TW&o}䎲w&-r~bUm`!7/%5%%'%5%75%Jvad",,V`bL"_D2,/*/&O{¸[&}P %5$r osaa^~||P 55%$so a||^a)W!%5%5$gV$}]]x|)W3%55%$Vg}$BW|]]RW(%#"'&'&'&#"5>32326%5$ian ^Xbian ^Vg$}NE;=LTNE;=K$]]x|RW(%#"'&'&'&#"5>3232655%$ian ^Xbian ^Ve}$NE;=LTNE;=K$|]]&%5$%67%'Et֋$k}uU)?eKtuu" K 9''567$'567&'%=⃹t֋~}uRU)?Kuu,ަK9'_%!"54763!!"3!슊@^`@ƍ^`_75!27654&#!5!2#@`^@Ȋʣ`^; #";3!!!!#"54763^`0rrndflppꊊ^`&pphƍ3 32654'&+ #!5!!5!32#^`0rrpp9^`phƍ7!!!"'&54763!!"3!Ɋ@_`@,ƍ^`7!!5!27654&#!5!2#@`_@Ȋɖ,`^ȋ '!";!!!!'7!5!7&'&54763!7!!ʉ_`'}E=aLT>scL0R^`5ƍ7 '327654'&/!5!7+!!'7!5!7!5!^`__BV 5cTpX?bLm>U`^`C 7 Xȋ5j )5!7!!'!"'&54763!!"3!.Bqx-qxDɊ@_`@Z54&'&'$  &'&'&547676!!#!5!]\LMLLML\]]\LMLLML\bc1111cbbc1111cbdd''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcbee$7!!"2767>54&'&'$  &'&'&547676r$]\LMLLML\]]\LMLLML\bc1111cbbc1111cbתa''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$3?"2767>54&'&'$  &'&'&547676''7'77]\LMLLML\]]\LMLLML\bc1111cbbc1111cbxyx''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcbxyx$7 "2767>54&'&'$  &'&'&547676pxg]\LMLLML\]]\LMLLML\bc1111cbbc1111cbpx''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$73#"2767>54&'&'$  &'&'&547676]\LMLLML\]]\LMLLML\bc1111cbbc1111cb''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$ 2L"264&'2#"&54>"2767>54&'&'$  &'&'&547676ZPnnnoO@v+..]\LMLLML\]]\LMLLML\bc1111cbbc1111cbAoPOmmp1.-rB''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$+E %#'-73%"2767>54&'&'$  &'&'&547676C4f4C4/f/]\LMLLML\]]\LMLLML\bc1111cbbc1111cb1XSXYS''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$!;!!!!"2767>54&'&'$  &'&'&547676]\LMLLML\]]\LMLLML\bc1111cbbc1111cbj''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$37"2767>54&'&'$  &'&'&547676!!]\LMLLML\]]\LMLLML\bc1111cbbc1111cb8''LMmjML''''LMjmML'dbcwvwvcbddbcvwvwcb$!%!!!!#!5!QX>ddYee$ !!!%!!rPX>ת\$   ' 7 %!%!!=kyykyjjX>xjyjjyk$$ 3#!%!!aX>J@ <1<033!!upJ!#!5!3JI!#!5IssI35!3!|33!!Nup| !#3!!!!.NN$J !#3!!!!.$J !3!!!#3GupJ !#33!!!#3.GVfupJ!#3#3!!!!.cGGf$J33!!!'!'Ssj\s=u5Y6pJ!!!!'!#3!7!sjshxj56$$J!!'!#3!#3s6s=5Y6puJ!#3!!!!!'!#37!s:jsjG$-56$ 51  ^ bb:d 5! 5bd 5! ^bbb:yg62"'&'!"&462!6"264S몧Q3Q3TW4drOOsOOSQ3CB3RU4CDPrOOqyg"&462!6762"'&'!$264&"aS몧Q33TW4QrOOsOSQ3CB3RU4CDPrOOqbgR 7!6762"'&'$&"26b1[륢S4OsPOtO.D/YR3BPQqOOy;d 3#!!#3%!5!( 󀨨 ds <!##5!#T~N 35!3 3#K#"T^ !!3# K@ih^T !!3 3#K@#"쪠T^~ )3!!&'.'&ZVF%,E=Ώ?~%FVZDA?=~ !53*,Ԫ֪w # #}}wJw 3 3!#wJww@ 1@ 0"# #4$H̭9B( w@ 1@ 02$53 3H4CC1 (B9#u5HF103#F1  !!'+]^*^]䰰'B  ' ''ٛ>PNq^D^'B %  !'''tNP^D'B 5  5!''6bNP'B5 5tN>]P'B 5 'Nt>P`32?632.#"#"&'!5gV^naibX^naiUK= ;ENSL=;EOȪY !!#YSCCS8ff$#Y 33#YffCC#$^ 3# 57Ѧ^ 3#55=d//m.   5 5 5 :6:6:6pr pr pr .  5555556:86::6:.  5 !5! 5?@Npo. 5 5!55?ްop9 %5 5!@op9 7 5 !5!?)W5$%5$Ti}$_|x]])W5$%$5iT$}B!]]|!&!%'&'57&%5$%67&%7*?;i@]0qw^%KA6#(AF+3273267#"'' 5cCXbh`^xnieEVhjb_zl]@LTND*F JVND+Fpo"%&#"5>3273267#"''55cCXbh`^xnieEVhjb_zl[LTND*F JVND+FͰW&&#"5>3273267#"''%5$cDXbia]ymieEVgia`yl]$}. LTNE+F KUNE,F]]x|W&&#"5>3273267#"''55%$cDXbia]ymieEVgia`yl[}$3 LTNE+F KUNE,F|]] 7%'%5 '瞃۞L О  @Y8@\9@a ' 7%͞G۞О@?Y@<9@}5!%57%!!'71|Iv\' :qߦ[@Z8@_}7!!'7#5!7%%%9Jpv\]FGjq8@ǹ@. !!#!#5! !'7'7!!5!5!xwxFbxwZwx# %! ! ! l(+R[SrvvP #53sàȖ0kTs*3#*P- #5sȠ-Tk0P 53ȠP*#0P*.P- 3#àȖ-P#!!s#s*3#*P,!!s`,P!5!#UP*3#*P,3!5!`,X #4763!!"]oeD9יfV],#'&%'53 763<(enK==Pne(!<  _AE_  <X> 3!!"'&5]9Deo>ܚVf]>#3]J] 4'&#!5!29Deo$VfX,&'&3!3#76l<(enP==Kne(!< _EA_ <]> 3#!5!2765oeD9>יfVu(3(7@% !!!5 5!!37d  hrv! !! $<Ff +   276764'&'&">  &vvrn66\]]\6666\]]\65kk\SS]\6666\]]\6666\!>32#"&'#'%53%&  s:{{:!8#!rܧ$daad]chaam@j.!3!3:^ &ۺ+#+#+A&6FVfv ]A]A]A)9IYiy ]+ + $%+$01! 4$32! 4$#"35%33!??qqW|A?rpG~+/ 8?+3&+3+A&6FVfv ]A]A]A)9IYiy ]3и/A&&]A&)&9&I&Y&i&y&&&&&&& ],9+ + +0)+001! 4$32! 4$#"!!56$7>54&#"5>32??qqWO\R!>/_N;sa=0>A?rpGM"?U(?N&:$}:iF D+B5+B+A&6FVfv ]A]A]A)9IYiy ]A55]A5)595I5Y5i5y5555555 ]5B9,5B9,/A,,]A,),9,I,Y,i,y,,,,,,, ]ܺ&9;9+ + )"+)?8+?2/+2/2901! 4$32! 4$#"#"&'532654&+532654&#"5>32??qqW v@X[}DuskcZX\[4yk_=hA?rpG]0OLGN<:,+>2+201! 4$32! 4$#""32654&.#"632#"&5432??qqWN\\NN\\Ta/w N 5jA?rpGb[ZbbZ[b#P =  "#/$/ܸ#и/A&6FVfv ]A]A]A)9IYiy ] 9!9+ + !+01! 4$32! 4$#"!#!??qqWkQ1A?rpGK '?K +=+1F+1+A&6FVfv ]A]A]A)9IYiy ]A&6FVfv ]A]AFF]AF)F9FIFYFiFyFFFFFFF ]%F19%/A%%]A%)%9%I%Y%i%y%%%%%%% ]+=9+/4F19%7ܸ+@+ + ":+".I+.C+C4C901! 4$32! 4$#""32654&%.54632#"&546732654&#"??qqWT__TT__jivvWQMKRRKMQA?rpGPIIPQHIPIvSttSv\\=BB=>BB 4@+>)+>+/8+/A&6FVfv ]A]A]A)9IYiy ]A>&>6>F>V>f>v>>>>>>> ]A>>])>9A88]A8)898I8Y8i8y8888888 ]+ +  2+ ,;+,5&+501! 4$32! 4$#"532676#"&54632#"&2654&#"??qqWUa.w O 5kN[[NN\\A?rpG$O <b[[bb[[b &2>+#+#*<+*60+6+A&6FVfv ]A]A]A)9IYiy ]A00]A0)090I0Y0i0y0000000 ]A<<]A<)<9<I<Y<i<y<<<<<<< ]+ + -9+-$%+$3'+3$01! 4$32! 4$#"35733!"32654&'2#"&546??qqW͞u>@EE@?FF?A?rpG>>'*6ޗ{5!!X3 2!@ 2 5!!5!!5!4)4𬬬 !!!!!4)4XXX 333 Nf  !!!@@@ Nf  53353353353𬬬 3333333XXXX 333322s's' !!!!@@@@22s's'!!!!\!!#!!#\!5!Z!!X!5!$Z!!$X3!-Ԭ3!-.*!!@Ԭ!!@.*5!3,,(!3,X5!!@,(!!@X3!!- 2Ԭ3!!- 2* #!!!P@ZԬ 33!!P-#,Ԭ!!!@# 2Ԭ #!!!P@.* 33!!P-#\*!!!@# 2*!5!3,Z,!!3,X !5!!#@PZ,( !5!33$,PZ,!5!!$@Z, !!!#@PX !!33$,PX*!!!$@X!5!!Z !!!!-XV !5!5!!,ZV!!!X!5!!$#Z !!!!$#XV !5!5!!$#ZV!!!$#X5!3!,-,Ԭ !3!!,-XԬV 5!3!!5,-3,*V!3!,-X*5!!!@,Ԭ !!!!@#XԬV 5!!!!5@,*V!!!@X* #!5!3!,-Z,Ԭ !!3!!,-XԬ !5!3!!,-Z,* !!3!!,-X* !5!!!!@Z,Ԭ !5!3!!$,-#Z,Ԭ !5!!!!$@#Z,Ԭ !!!!!#@#PXԬV #5!5!!!!P$@V,* !!33!!$,P#X*V !5!533!!$P-#ZV* !!!!!@X* !!3!!$,-#X* !!!!!$@#XԬ !5!!!!$@#Z,* !!!!!$@#X*5!35!,-𬬬!!!-,XX33*!!@@*DH5!5!xX333x 2 2H !!!!-Rx !!##xmsZxH !!3!!xm3-sZRH !5!5!5!,NX 5!###lZZXH !5!!!5!4l t,ND 3!!!--Dx 333!x,ԬxD 3!3!,(D 5!5!5!3,,D|X 5!333,,(DX 5!35!3̠| 3!!!!-- 2Rx 333!!xs 2 2Ԭx 3!33!!-s, 2ZR !5!5!5!3,,X !5!333xtZ, 2X 5!3!5!33t, 2H !5!!5!4R 5!!###sZZH 5!!5!3!!t,-sZRD 5!5!3!,-DX 5!333!,,ԬD 5!5!333!DX,!5!5!5!3!!!!,,--R5!333!!###s,,ԬZZ !!!!5!5!333!-s t,ZR, 4763!!"Q[yY[`~| 4'&#!5!2.-Yx[Q`~=?x 5!2653#xY[Q[~|2Ψx !"'&533![Q[Yyx2|~>3m 2>#3> 2> # # 3 3>ݲ}#$cc|5!F3F~|5!|iF3P|!XF!@F~|!|iXF!@P5!5!!5iVV333PP~P!!!iXVV#!#P@P~P;( ;!O;!O ;!O;!O;!O;!O;#!O#;(!O(q(!((!((!((!'(I(!]((!((3(:( ' q( #'+/3!33!33!33!33!33!3mnmnm 4('/7?GOW_gow#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573#'573(;(!%)-13#3#3!3!##!#3#3#3#3#3#3#^^(ll(lm#;( #q:( !&9'(9(&&9(&9(&&9(&&9('9(&9(&&$! $!!!,7r+uv ))xxp) )$7632#"'327$%&#"%632#"'~~~~eMM>yJJJJJ6````qq|qq#u"@91990  9%-p) 327$%&#"%632#"'MM>y````qq|qqr' '/7?G%&'&'6767&'&'7%'676727"'64'7&"'62&47\+;.81F9K58.42d;E9G,:.80G9J6&8.;+d1O9FLL&_`JnLL'`_n<1& j(0=Ju &,A=N:0('<1& j(0=Ju &1<>EB0(n_II'[[JnII'[[p) %/36%632#"'327&#"6767&'&6py AAAA,+-,,-+A@@Rqq|qq%%mܱ[0$ %@%|"p) )73276'&#"7632#"'327$%&#"%632#"'r99:9rr9:99XWXXXXWXMM>yB!!BB!!oe33eje33````qq|qqp @ 104767632#"'&'&pihѵhiihҵhiѶiiiiѶiiiip $32#"$27$%&#pkk<MAk^a``p $32#"$"3pkk<MAk^``p $32#"$327$pkk\MMAk^>``p $32#"$%&#"pkkAk^>``p $  $"327$!pkk]<MMgAk^```p $  $"!pkk]<Ak^`p})6%63"'pRqq)#2y|q*q( 2654&#"!|~}}|v< ( $%632#"'327$%&#"!IMM>y_O````|qqqqH( ( !#%&#")%632OyyMMqq>~``  3327$3!#"'$@1>qq``) %63"æqv`) 2#%&#u)q>` 527$3Muyv`>q "'$33yuMq`p)%632#%&#"puqq>``p03327$3#"'$puMMuyy``>qq!$ !$ !$! !$!$3! 2654&#"4632"&nȊce;~|ddcc||}$!%!!d r<$!%!!We r<$!%!W7 r<$!%!W7 r<$ !%!!!!+c,b r<<!$ 462"! W|VV} ,|VV|V !$! c  !$! b  p(  7& $  %;<*X֖$ !!!!!!,7,rWb<)) Ie$ !!!!%!!,crWbM)MM^??@7`d?\gOOOOy>*<?v^h"3263#!5276;'4?'4?26u'6"gP39.4! '*C0.xV#m14He '1l1 Z+dd?33 #&'&+"'&#"/573;2?"#'57#&'#"#5676!5:+#9,p!j[%+ > 7VCCc":8}V .e3B=Se` e9*=9 3@=}k %C`:d;emu}'S3273&'3327&'67&'67&'67'32654'&'2327654&#"3672 $54767&'&47'&327632#"/#"57#"54?'&5432'&27632#"/#"57#"54?'&5432'&327632#"/#"57#"54?'&5432'&27632#"/#"57#"54?'&5432'&327632#"/#"57#"54?'&5432'&27632#"/"57#"54?'&5432'4327632#"/#"57#"54?'&5432'&27632#"/#"57#"54?'&5432'&27632#"/#"57#"54?'&5432'&27632#"/#"57#"4?'&54327'4327632#"/#"57#"54?'&54327'&27632#"/"57#"54?'&5432&'67&'67&'67'&327632#"/#"57#"54?'&5432'&27632#"/"57#"54?'&5432'&27632#"/"57#"54?'&5432'&27632#"/"57#"54?'&5432'&327632#"/#"57#"54?'&5432B~ %<z*+')+(@&'$||e<-A}]\B-71SLoWj\vLL)(0/ (( .1(%%,* # $ )*f$% +) $ #*+f%%,* $ $ )*  \o  [ %)#&'%&)#`#$ *) $ #+,U  Q  0 E%% +) $ $*+&EC&V*,)-)-*,%&%&fБfU 3HhfeefhH2pu^QFs棥sKQGh!99!  !77!  4 4 22 K44 22 22  11                   7        %&%&%'%&%'%&22  //  g               44 22  ->O`q +&'&54?632332?654/&#"2#"/54762#"/54762#"/54762#"/54762#"/54762#"/54762#"/547672#"/54762#"/54762#"/5476%2#"/5476%2#"/5476%2#"/5476D.2`{4&/<) e>O ,4H3R 07K $   $   #  #  #  $   #  $   $  U $   # " $   #  7Q=KG<s-8PZy9z _e""#/2dt0&2j ,: . 4 . = ,  ,   -  -  -  -   .  .   ,   -   !! WV9`8 !! 7 ! !WVDu9`8N I 7%7&54769 }V&7A 6$ 8'^4? !2 7%7&547!&'6I@Y%14HFS"="l-2DC[9 &! 4$32 4$ #"&54>2JJhhq0^mNMn2Z^Z2K7iwBNmmN1Z00Z} C"32654%"32654&%#"&54767654$ #"&767&54! ggJIhIhhIJgg[ZQoy y}WZ[zADgJIggIJggJIhhIJgU\\Q srW\\^} A4&#"26%4&#"326! 547&'&632 $54'&'&632hIJgggMgJIhhIJg#@@z[ZW}yOOyoQZ[sIhhIJggJJggJIgg ][[Xrq Q\\} "32654&7#"32ɏǾ/`T_ȐɎ;P12Y}1"264&"3264#"54327&5432#"'&'3xyx& کZTdIU  k#5AMYer3#"'%&547654'!#"'4%$53!76=332654&#"#"&54632'#"&54632#"&54632&'&67632#"&'&676'.547>'.76$6&'&54%6&'&6>#"'.54>32#"'.54 [$gi< D""D =if%LW쥨驧r^]]^ !! !! . . *)X,),*))+. } +G  G+vKK9__9KKݧꧦ]]_""""s!!""W&. - . - a)," "  ))    !) /     p%-5AMYdp|5#!4'&'5#2#"&546"264"264"2647>'.7>'.676&'&>&'&7>'.%7>'.676&'&676&'&53!76=3%#"'676%27+%&547654'7327&'$%'#327%654'&54718楣. . . .  - -Y - -))G))))U*)>- - ~- - VK; yA C0B Ax ;K'6FJ> $06# >JF6&@@1AeA1@@H磤椣筁 . . . .E - -- ,1))),(9)())u- , - - G77W6 W77G D&& ee˥ &&D "(=pp=("u !!'!Pn8hv "!!'!##+572367676MoL)>u eI3?ba8hA:F;/Itxv !!'!  ##' Mo_h[ei[i8hi[ef[l[@36273 ##'5) U.WW1@ US Vdv#,5>~3+&=43+&=4%3+&=43+&=43+&=43+&=43+&=4%33 #&'&+"'&#"/573;2?"#'57#&'#"#5676!5\:V\9\:\:]:&]9[\::+#9,p!j[%+ > 7VCCc":8 #8d#7$6$8;$7i$7 #9pPL  )Z. ;6ZV Z3%Y63 .87p  3DMy!674#!!6?676545&#'323276767654#3#&'&'454632767!672!&=75$/563&43!32+'!67#>54&53# ? I :W0 96;E,Q 2:&l6x0 bm! o۸"\>%Ef~e2U6g!6V#p5C+ C ? P9 @7H4XmM7RV /M(=H: ,qLUD)8Wqke-Pex NW =$ U  /0c)H?2@[nDF8T$.J? !' !T4XKGwL5_K !'7W4Z~wDS&5476322632%632#"'&'#64'#"'&'&54654&'&54767632xJX%&XA,B:\8 [EMH95##Fl% !9@!#jL p_Mi#"?8" %lF##58HN4hok@RRr*%te BB9'7*$%) "fXS5EIf" )%#,7'9CB >E3#"'4332327$'#"$4727%672567654&5&oJ7.b9M D ,B3 qY 5**]d=HN9% sW$,J ]T-MMm@ed: ,'Z M'cM&T)$$ < I2%!"&54676737#&'&54>;7!"&546767!7!"&54>3!6763!26P+=6/2D>R+>2,+v*>>+2  ,2 =,2  =,3>,2463!2!2#!!#!32#3#!>*v+,1>+R=D206=+P#,>3,=  2,= 2,  2+>{"D%4&#!"!0#"3!!"3!#";#"3&'6737#&'6737!"'67!7!&'63!67!2I0!6OS SS: SS>SS]]J]]]]h\\, Bv*>K%39LKIOKHLKIhghghghgE?-L!D72654'6#"'4#"'54#"'54#"'675674767#%$4:JILLHOKHLKIhghgighgD>-sJ1 b6'SS cRR SS?SS\\K\\;\\]]!A*>K{!C%254+'3254+'!254#!'!24+!&#!"463!!2!!#!3#3SS?SS *vA!,]]j\\\\K\\IKLHKOIKL93%N-?EghghghgiL!C32=732=7325732'654&#'%2&'&5&'5&'IKLHKOHLLIJ:4$N->DghgighghSS=SS SSb SS'6a!0J)K>*B \\]]:]]J]]}O &*.26:> 3656;2#'7+"/#"'+"5&54775%"'5476;25'7&56%635&56;374765'75'76=4'&+ +"'4!#"'4543$365&5&#%#754'&5&&547'5367&547+&'&'735&2?"5%75537'7'3533553535'32767&5%2?&#%55'5757757751:e,$?F?Y>F_LA3ELH3,8LYLlEF'!0< k#gF  EeY!! Gp&iq.8ZN$%`BCf F4"4._?ee3&{E(1-+$Kt8 -  $Gs sM rEF"2 >_plTErf^5.>=9|5"-l)d ,&>vv]cccWpC-+ d8 Bpp>W]oaxvuPp82,D ^8, ^B$K+ "1R[+e*; 2 W QP I&? gpo% w ^SA$ 2 9i-5n02 Ai&IY^P]D%\??\OWC ,,1 /211/=;7777=321811{908hN%b\Dh,)h?17I21!122223 21&2%2#"'&=477654'#"'5473Bq4|l anN ilm b 9 b؍MOb>YaYƮ58l7P P@ $0<FX + &=6&# 3 6=%&#"';27!5%67%!&'&'2+"'&=476r cR~UY082.ԍ_W_V"+}IR8D).P9H'S]ٱZYHYoX(I_ ;.2lOP%.G6R%&I8d)Nl>54'67&54&#"&'632.547#"'&'#"'3267654'7327323.#'654'567654&&5476;'&'%&+"#"8DH$$yU ?L[>!WtJ([Fho*m.2\=w\`|UP7:/E" @7?EP]Eix pF@T5ym,"&eB@q(A _% #+B7!N &".OS$XE/K(Aa]dLP*'FCaYr=C44mo C (FKWYFvbph'UD'R< $d#+?Vm#327&"#"'7'632&'$54#&73254'&#"'5&567#&''5$'67'654'6'5$'67'654$'67&'654'''5$56732#"'&#"&'$'63&47"7&'7&'7&'7&'54'6546767675477&545?&''5&#" '6%35&'.54>23#67!&#"W  OB7[l#> F_Vh " "@.,=6tJ4Vp1EQJqMi vhpHI!:JJJ =4m\8B*?o v!"t,`s&*_~P1>5='g=>24<+-s[,*&sd1PT>3J@='h<42J-H#*YT_Y)*)X^TY*$D  ?>}>  *0t"J.  &b54CUE ''!`9 !,(MTE *! }q~=/+)f[4f !B" <@0&9c?"V+GoMK~a? }b9e\ P&0@k"?c*GEJX ?e}9 \4 \6 '''' 6\ N(&'65&'67327&+!65+"3yyys{w ccޱqXeXc6 6 c ,35'533#3!'#'5!5!5#53!5!5#!!-ʷ}} ckvG G @<<3ffX苜qXGccGJ 326&#!2+73 ### 3(ttvgnؐB(33#!!#'!'57!5#'5735׫$"q~q+!#!573#'5!3!'573!#'73!#'5;jjŠJss<wѡIjj8/w{,32#' 3%+ &5%6323'#57'53^VQ6>ѨABؒ6ʞG2k >Y3~||~Obs32732753"'#"'4323$4'5;+"'#"'53275'&'&5?5572%#&'&5%634%476=%@.!%,BE,#!-Q2" $nL/PuHED832#"&546324&"26%! !  Őb{=&*<<*(;E;R::R;KJ67Ϛ{ɬ)::)*<<**<<*):<'L67I&' &' &' &' &' &' &' &'  @FLRX^djp3264'&#"&47367'676756273#'#'5&'&'7&'677&'67'%%&'&'%6767%&'0/CB^0/AC/pkTcR|'N(OfUippqUfO''NQaQh!$ b)dLQk KRt!% c'd&//^000'N'|P_PfppoQ`Qy'N'P\ QgppmQ \Py,  M N>&`7" bK*V&"g{ M M %1=! !  54 #&'&#"#46324632#"&%4632#"&67KJ]_EASvwSAF͒D10EE01DD10EE01D7IL6a]U@SS@U1DD10EE01DD10EE %1=! !  54 3327673#"&4632#"&%4632#"&67KJ]_F@SwvT@E͑D10EE01DD10EE01D7IL6a]U@SS@U1DD10EE01DD10EE %1! !  5# '&'32654&#"32654&#"67KJ;lWPihQV<=UU=-1\ H0e%FKSwZGr=;=NN$E| 1 ?'_>?@7`d@\hPPPPy?+<>w_VG{?,rCA+ +"'5$76%&'547327676=&#~jt1/Q}](+VRxbO P >nS]] =fP+! &56;2'5$%75#"3ui1.P~N](7P,VSZycOpO >S\^ f0:1>7#'#53'&'&54767&'&=33676=3#326'&i($lm$(($[Uu&tU[$&uU[[UV$|ddb e|$% ZSSZ %_TYYT* $4&#"326&5432!!##53&w衤礡PP䤣L~||* $32654&#"%#"54767!5!33#b衤礡7䤣L~|| $&$76+"'&5'476!7!ttsstEus pid5s qttrtt<֤ꧦg\ulS5264&#"#43233#!5 z{ym㗗y{(|j#53533#632#4654&#"#*jjoon}mZyH{zF2 1"32654'#"&4767!!53#5!!3!!#3!!pOO87O:=0LmkL/>Λ2  1O79NN970LؙL1KӘJJ-'<%#5#535&'&'5'73'3#'73'676=35'73'33◰zhNgeMjzzTThOʍ7NjYYӖy?! #!!!'!27674'&#.d ;6zFH%QM_\ǃ$P<]$!#"#&5463 67!2#654&#"V⩁"T]ts]U"X"1((1"u." 6&'67>3"#"54767&'&#52&͕LVa{.+ؔ)0zHUM\&ϖ=Bll)'ҕ*l8lB=j&'5 %$ 56?63#'[Wtutu4ZZ//[[5  @Eo&<"3264,'532'&54632264&" &$#"#"&547>B_^^l;͓hI^9l:͓hI (+|TlgMLx)+{TlϔgMM M>54'.#"32463227#"&5454&#"#"&'&54767632254&K2q'$#K1o'#0ߴGdAoc.% 3t88bWDs-Kx68<32>32#&'567'45'#&+"#4'3>$4&+"?w(K>R0D32>32gYYYD,.:?#)v$E?w(K>Ro}vvxJvaAjtAO]ƀwϧ!5!3##'!5!~2k<@i8080k<j)127632#"'#576&#"4'5267>327&'"SkQmyz,~zi2@:$(.-)zW] ݾgvx-aX[&ŝ9{'Q32263227632&#""'&#"#"'&#"#'3232762327632&#"#"'&#"#"'&"#'Es- p86rV+)|m^?_354.#"!&'.54>325467675#53533#63232>54.#"P#3JTRJWVJQSOMJ4"?*&ElnhPL$ llill %LOhnlD')----+)QPQ((QPQ)+/ 6klj$?6FWWF6?$jlk6 }++--JHNRh|&'4>32"'4>32&'4>32&54>32&54>32#!5!'!567>54.#"32767>4.#"327732>4.#"327>54.#"732>54.#"M_ 6694S55.+C55C&.66 V\+55 c$M##$ 6$#$s`%#$d0"%)h #"#_33@]22-"40446/*33UJ"+33^1/K=0T* ####  #&$$&##&$$&#  B #### *"$$" U!'-2!35!#3!53573#'5#5!35!75!!5'57!s\\ss]]s JRRIJ~֛E77__vtt4!v7CQ^&54767&'&'5676767&'&54>32! 535#5##3654."!2>4.#"  <$))+N-N*)N-M,**%:  @ v<-MTM-?K5:66459<5&?HPPIK* ')+K**K+)' *KIPPH>&5<:6uN|l||l|-I+N))N+@6:55:5Q)5>o654&547!&54='&'654'67.5476;+"'5#"=6&'76767%25#654&'Fz-6 Z8. ,N0H!h6%`+EH )#M ;,Jga#iR k' M +1^hgo8:(@s.Pmz nx?.#1p#41`&>%!ac,,LHJ x}647| + OJJ)!0 P[32>4.#"32>54.#"!5&54767&'&546767&'&4>32'&'.#":e79e89f76e`[S &(*UM,N)(N-KV)&& \@ECApd88dpg669:%N&KRS* 'TM**MT' *SRK&N۠:9}qyyq}c $Tdhy67&'&"!3!67>54.#"!&'.54>325467675#53533#63232>54.#"!57!&'.54>3234'67632!P#3JTRJWVJQSOMJ4"?*&ElnhPL$ llill %LOhnlD')----s=BDw@>=))==AwDB=+)QPQ((QPQ)+/ 6klj$?6FWWF6?$jlk6 }++-- !yCB{C!$$!C{BCy! JHLP&'4>32"'4>32&'4>32&54>32&54>32#!5!5!M_ 6694S55.+C55C&.66 V\+55 c$))_33@]22-"40446/*33UJ"+33^1/NNOOU%)5!5!!35!#3!53573#'5#5!35!s\\ss]]s ^^/oo#E77v4@4767&'&'5676767&'&54>32!&535#5##3  <$))+N-N*)N-M,**%:  @%v<5&?HPPIK* ')+K**K+)' *KIPPH>&5<:6n5|l||l|L3?HN654&5473#!&5454'+#"#7&'654'67654&547;2547#";65'"3%:U"-6 Bu Zg0krX0c-h8E+`%s H>4wM-'9.QY / o8:qhPSmh #%Bz1"0@)5"@YR0.&54767&'&546767&'&4>32; &(*UM,N)(N-KV)&& 9:%N&KRS* 'TM**MT' *SRK&N۠:9C##"'##56'##"/547?^'5@_*SU&/UL ;Yԧ9UP(` XI.s222732#&547636=4'&# #4'&#"*t pz&=<xQ>hG:V Hek%PF5NP B|-&pA&NFX &&5 <F:^;" V gdG7236;2"##'65##"'&5476;235&'&=476e x<JT`(GeRUdfB3 VNTMT,P$ 66$0_ u3dUdt_}s*$"Rt0XX__/ik=ZG8*F 1 . ъf)MC =g9EkO 9!(-);&  ]t!y" & 2| ba$ U+  #8M35733!&54?'7'327!!"'&%#'7367654'77'7'&#"'676ի,&T>=c#]K9.U:1ʈ%`T?7>54&#"5>32&54?'7'327!!"'&%#'7367654'77'7'&#"'676]T@1$J=c#]K9.U:1ʈ%`T?32&54?'7'327!!"'&%#'7367654'77'7'&#"'676Z _3lFHe5^\VOosHGJI)`VKm1Sj,&T>=c#]K9.U:1ʈ%`T?=c#]K9.U:1ʈ%`T?=c#]K9.U:1ʈ%`T?=c#]K9.U:1ʈ%`T?=c#]K9.U:1ʈ%`T?=c#]K9.U:1ʈ%`T?32#"&e|e(<X<ħñ"32#"&$2#".46e|e(<X<ħñ"@<#"4.#"e|e:<#"< !<"#;zch =B4.#"$32>4."e|e:<#"< !<"#;"< !<"#<@;zch =B54.#"##"'5##"$'&'0!5!5&'.4>32!!676767'%''H&(G()G'%H(%'V W3WImuw>DE}AB|GE=md^JW4W Vs'H''H'(H''H`XAK|@X1(ԁ3"|}DD}|" 2/ "1X@|AX1# / 673&/'67 &'"&'6?&'3 ' K[]><+Gg['fBBe&\h?(K?]\K !;32T $ #AC,MMMv A5p_9D-M**  B@0"@R//>wA&oc/D&3.YaQ/5"1'"uE62/u= =!m- .... y 7%  %  32+#".=!"&'&'#&=4;7337_% 8)0/_^^M^1/ 9534<&&<&*(D>?GGzB6C{GG?>D9/C}&632#"&'.#"'#!#!#Ҹ62K#+~KF0R!9'/Nx_TV_T 'NQ9;:#8HL"CD|))Z) 532>4.#";267#&=&$32735&'.4>22[02[24Z1/[)'5*+X A323#67#&"#"/&'&547&#""'6%676V n*[n%'ZxL0<{2;&b;0&8a>!U*~EmLK}`? {a7c[ O&0>j!>a)E~CKW ={d{7 [+M57LL75M-Z '*''*' Y (5[ J5( \d (5J [4 ''/7O_2#".54>&'32367&%2327654'&''67&'&'&'676765467654'&#"7>326323#"'##"'&'#"&'&54767&'&54767232&'&#"6&%6767&'&'&#"676&5467&'&6732767&$$$$OG3%V cc V%4GL944m/122102/.303112.OF}6&V e"w?>v"pt #87! vn":;@A<:"nx !66# sp%./13/.UVT\<>"$!! !"#">kc V &6|FO 93399 <>#"#><  "$ZTU./43..V5$##$59gT;&'9Z^^Z9'':Tg9'(''&()I8:9889: Z_59eU;'( :8.>euvc>-7:bccb;7-?cwud?/8KWZZW **D@@D+8(':Te95^&)(&''(DA:AD.*!Y[[Y!& !-x67&'67&'4&6%67.'%4'6&#"&'6767&54?67&'&#"#&'#&'5&'"'67&'&47632>4.#"%2#".4>'7,3 3%/0),7=*#0*+3.22'8  YfT,1'').UfY >98 "2 B2;F_ XB?2C 3" 894ihgikce"S[XVWXZ#ejpMcNTvJKrZ1VlLWMI p jk%nA V{ww[11[ ww{V @#fd-#JM 7B/""0C7 NK",df#νhhοggQUXXUd %3!'#!52#"62#".54>" h9|M463%&$$5 O Dn; $$$$33'554#$/[QwGSGUW GJGX .5CK&5432632!!#!##53&4&#"326!&&#"327&54654'XP}}P~C;7?_Xej;A>7'sssLFF~||ב-  䤣lrrq)-5DL&'&6767&'"'&'&'&5'476!7!! 76'&'&'6'&utss-5 l&kpid=pDi/tEust,2}ts5sqtt-ԛ1 k&iꧦ g\}ul  An?\27/rtts,͓}qt)8GO'"'!!##53&'&54326!7!&'&36'&&5'47&#"327674'U`P}zpidu>7;C˂;C>xtsK) ||LGD g\uls螝՞䤣hkrr .4&#"326&54762!7!!!##53&w衤礡ᩨhn&䤣羚 o[tꝇ|| +D#"'&'&'&47>76327'7'%'27>764'&'."(F3"D"&%#}bV`ZZ^;D"&&$[X]:3G9:]:F=~=HS]^X&% iiD^29i\=<<92-1X?:<91*=X62'%'!!#5!5!5&'&'.546767''7'''7"2767>54&'&'&4p69].(EGGE@Z-<81VDEGFF'19T]9T:G5>+.11./:95>+.11./:9 \2:a(Eb_E@( %CE_bG(Hij:ο\ij+.wBAw./+.wABw./4+F!!#"'&'.546767675!5!' 2767>54&'&'&"<-Z@EGGEDVRbfNZ@EGGEDV18kbbjC9:/.11.+>59:/.11.+>5疑 (@E_bEC%##(@Eb_EC% kajP/.wBAw.+/.wABw.+ +F####"&'&'&54767>32333'7 '%32676764'&'.#"ܖU (@E_bEC%##(@Eb_EC% Uܭkaj/.wBAw.+/.wABw.+<-Z@EGGEDVRbfNZ@EGGEDV18kjC9:/.11.+>59:/.11.+>55 @  10432#"732654&#"陽…5 @  10432#"K +@kk k kKTX8Y104632#"&732654&#"ϑϑϘuSSuuSSu͒ΐSuuSSvvdPK!)7eK RX@ *.,&"($ k3,k($kk8991@&"6k0k 8<2<299990Y4632632#"'#"&7323&547&#"%6547232654&#"dϑRDDRϑRDDRϘuS?>Su^222Z>?SuuS ͒!!ΐSuXqpWv28ML88LM{WpqXuSSvTZ`z8Rm3#"2767>54&'&/2"'&'.5467676"2767>54&'&/2"'&'.5467676R#)$#R#$ $LK:C.25521@=:C.25521@=R#)$#R#$ $LK:C.25521@=:C.25521@=zZF)(JG()K.2IF21.2FI21F)(JG()K.2IF21.2FI21 J7Qk>767632"'&'.'!"'&'.546767632$"2767>54&'&'$"2767>54&'&'#61@=HK:C.25521@=:C.5%'21@=:C.25521@=HK:C.6#R#$$#R#$$R#)$#R#$ $5[51.2IF21.4`]21.2FI21.5[F)(GG()FF)(JG()KR 5%%%xr6׊eMM^xxV)7654'&'575#!&54767'5!s_vR$N::N$Rv_{aT,X@X,Ta{4b\)1%==%1)\b4ߴ:`\KDDK\`* 4&#"326&'&5432#w衤礡$PP䤣L~{lPj'#"'&#"'&'&'&47>7632327>76&'&'&/&'&'&47>762!2!%327>764'&'.#"&#"327>764'&'&s* 0$+$$$ 1#*# ZaZ%% NT12 4 #HH  ")mROeb  , 0  +   ) . $J . %'.D"&B 1 $C mR )Ky    !   V!Edz267>54&'."#"'%"'&'.5467676;27>4.'&+"'&'.54676762%632$"267>54&'&.&&.&m,mQjP(!N!"(! aVf&&bZ55!("!N!(PjoQm,.&&.&q    l?W,>&#< A#"< " (( " <"#A <#&>,W?~    lOOj3!#!"'.'&47676?6767>'.'&#"#"'.'&47>763276;%32676764'.'&#"676764'.'&#"32eOuRd2!  HH# 7   ZTN +Za21#+$0 4$$$+$0 's  *   * OK) Rd#!>& 3"9*$"D. ' - D! 2 . , T% #: & (  IZx-4H67&'&'&+"'&'&'&476767632%632 #"'%#"'&'&'&54767676;276276767654'&'&'&"276767654'&'&'&""'&'&'&547676762"'&'&'&547676762'&'&'&547654'&'&'&";276-&#"+"276767654'&5476%327%&"'&'&476762I  Q\C--%("(/*0.,+"( /X]\9<\X/"$)0*3')"* %1*0CR[        22 2 2 2 %'   &J  &%C\d#_*]OhXC%&  J&   O]*       ")&`&"'$"/' <%ZS  % SZ%< /'* "%5"-($# ;8\= !  !  " /VC "  !  !  [uV/+    V^au 767>54&'&'&#"&54767632 '.5467&54732#"#"676767#"'&#"'67654 ozwbda_f_zx|wbdaM,krnulspsnunNJ*D$ lQ$" 6*D?"5'K(2- # >   :72 331cd툍i`4331cd퍇>mwn<;;8ro졘wp:;;BV0/M8:D@*|sa  -F(7 "*=8&0!2  1-5$& 6:B4V^ (B\w.'%&'&"632%6767>54$2"'&'.546767" 767>54&'&'&'2 '&'&547676?'*&$ 1$-+h+-$F3782**?1 $&>>9|wbdabc`zwbda_f_zxspsnunˎspsnulwI_"2[$  "" gI $[2!v 55 55 31cd퍅caf31cd툍i`43d;8ro졘wp:;;8rown<;x,A-57'36%33#3#!2#!3#3##$'#7$@d5{sVd]F0 0F]dVs{5⒒d@( jPP,PP` 0 ")- !676762!"'&'&'&54!X$#R#+/RFF$#R#$1Sh,  k-"s!}P476?6763&'&'&547632676767654'&547632!54'&'&54'&&#"'&/&'&'&#"#"'&'&/&'&#"&'&'&?6'&'#"'&'&#"!'476='654'&545454'327654'&'&327654'&/%4-)"$0JK&  )7    %0'# #6 +-L __^/s4* 1( .266 |/(1   \   #:7  lS&   x71]/~[#<$  o_%@,: $";vR $X$+|!5DX&PY;9Do6 b'n2  83eF] 4T&  &  /50$?- 1@& 3l K  C"P1 :03<D:5XI.)D&[+-1:   q/A8   g+jl9Lp{7654'"'&#"+"'&54?67676763276323273#5%6767'&#"6"/67#"27632327654'73654'676547&p/l0&J!cS%YE]{@C"$4>-;% ,(6Y>m!N$X6"/,(4sS?X$U>"sJ?K(`./4+2K2.0>S Zp0+1^' ;cs  /^"|Y/ 428ۇϕl%%ot5oA='Y$ aT* ''G+- %_kj~r}jL`І|\gK@/.85c($ (2LS>54/##326?%%3254'654'3>7632#"&547>32'% ;66I   }g ?6qn   -> 9@ H67;  zh| 8 >6!q    B5>%+?F4&'&/76765'7! !'!654'!4'!!$467>2"&'&!654' 33 ^^^RXI#J2VlP# ~!88!~ Kppph,p<(##(#id (2LS.#"227654&'''%'654+.#"65.'&54632#"'.6#"%  I66; o |>?%6!q   9  ;76H   |h> 86qm    BX{[%G'23 %%.'&"27>7%$!"#232%"'&'.4676762%#"#2%k      A>>dIID`nS   SnGYn 5>5 n)(%$#"#64'232%%&'&'&"27676&22k**!n``n!##3W 2327632#"'&'&5476'( > !~GH ".4F+@xH )0$'*' 23277632#"'&'&54763'( e` }{*279HF`0@xJL 1 ,A  ' 7 Ɏ877Ɏ77ɍ8ɍ? tt7tt7t7tt7uB2632#"'&'#"'&54767'&54763267632676 Q   x L$3 z(   6X3  6*=P*> "#  R26#"'#"'&'+"'&'#"'&547&'&54767&&5476326763276T 디% $$YyX$ zc0 + j :  (̢1#: _$ #- Խ =1 '2ĺ pD #!!!!!%!!!!!!!!#!5!36HVBBXBBUHVPBXyBpD !!!!!!""p"p"#pD35#7!!#!5!3rrsrspD!!%!!!!!!r"p"#p"#Rb !!#!5!3ppEU l3!!'#'!!#!!3!5@,r,,_ r,,_>v #!!!!!'!!!!!!!!#!5!3hm_|P_H_pDK#";54&'&'&#'!326767657'&'&'.+3!76767>5{dIB,$2$*DEh{LGC_RQ|66R_CIJ{hED*$2$,BFd{LGC_RQ66R_CIJKIB`OT|87O\FGKzdGB+%2%+BIdzKGF\OT87O`BHL{dGB+%2%+BId  #!! !!! 373#'7#ZAA:Llحmllmzlmllm|}}|d d}cT`C54'&54762327632#"'&+"'&5476=#"#"'&476323(L,68x86,L zFvd0000dvFz L,68x86,L zFvd0000dvFz zFvd0000dvFz L,68x86,L yFvd0110dvFy L,68x86,LV^&'##"&'&'&4767>32367675&'&'.5467676236767>32#"&'&'&'#"'&'.546767675&   R.-R  R-.R "  *!""! ((\(( !""!#%   " R.-R  R-.R    %#!""! ((\(( !""!**!""! ((\(( !""!#%    R.-R  R-.R "   %#!""! ((\(( !""!*  " R.-R  R-.R   Sa4&'&'&'.546767622676767>32#"&'&'&'.#"'&'.54676767>5"#"&'&'&4767>32(,$ ((*& :.r06$&**& )'De!  'd8:b&$$&b:8d'  )a@/!  ')*&$6/r/6$&*)'  ')?c'  &d8:b&!$&b:=_& (bCc"  &d8:b& $&b:=_& (a?/!  ')*&$6/r/6$&*)'  ')De!  'd8:b&$$&b:8d'  )a@)' ((*& :.r06$&**& ((T`0267632#"'&'&'!&'&'&54676763267632#"'&'#"'&'&'&5476767!6767632#"'&'"'&'&'&54767#"'&'&'&5476767632!#"'&'&'&54767#"'&'&'&476767632&'&5476767632!#"'.'&5476767632&'&54767676Z   ( &            <   4          % (      (   2     6           %    <    %  (   W_2767653"4'&'&Wspsnullunsps;8rown<;;j>-'O^__^Oq44H4"hdd0!% %!-@jjjk**37'73 #'xxxx.xx.x..x  pD #'!5!73!GFdFGrEGdGErFGqFGdGFqGEd@L     - FOFc,OO,cFd,PO,dGOP T` '%%%%%% % -wD{wwe#w%f{wwy||y{xxe#w%f{wwxEy||y % %  Zp/AppA/}}ET`     - Zq NqqN  NrqN qrT`% % -ZyllylyyT`%% %% -ZtGcVGttGVcGGstGWcGtsGcpD/3%!!%#'''%!5!%777xo:U.cF.d;UǩoxoU:e.Ec.U9oE.f:UūoxoU9g.Ff.U:oxo9U. 54'&5476276767632+"#"32;2#"'&'&/"'&5476=&'&'#"'&'&547676;232?&547'&#"+"'&'&54767632676'K,68x86,L qA'C<4GW>L d  f L>WG4L d  d L>WG454&'&/54'&5476276767632+"#"32;2#"'&'&/"'&5476=&'&'#"'&'&547676;232?&547'&#"+"'&'&54767632676o**YK,68x86,L qA'C<4GW>L d  f L>WG4L d  d L>WG42#'"372"'&'&/"'&476="'&547>Q!//VZ *nN+G80j@6RR6@j0/P1N TP#00VZ ,lO@W+G80j@6RN6@j03L/N  ]H,`,H Yc!77\4OO4VA7gU3',H^ ]H,`,L&3c!77\4OO7VA7fV4&,H^67654'&"327632#"'&'&/#"'&5476=#"'&'&5476763232?'&#"#"'&'&5476763254'&5476276767632#"'&#"#"'&#"327676%32767654'&'&#"#"Z8%1T1%85e %ZF\ +m8BS/?JV@6RTXN6@VGB1QB8n* \FZ% e53e!&ZFZ *n8BS/?JV@6RR6@VGB1QB8m+ \FZ&!e3DA 5<; > +F$H$F+ > ;<5 AcJ2QD++DQ2J (5H,'9,J&0f) T|\`j4OO7g`\|T 'g/& H,9',I4( (3J,&9-H &0f) T|\`j4OO4j`\|T 'g/&J,9',H5(""'!$(:UJJU:($!'""nFw"2767>54&'&'767632"'"'&'.'"'&'.546767"'&'.546767632.546767632=>343343>==>343343>x>%85670-),(-%8/[0!-(,)-02y/8%0%)-02y/8%-(.'&$W/:#-(,)-02;>/;),)-02;>/8%-( 06{IF{6006{FI{605+'g>:c.&".c;=g'+&1N%&W'+&.c:>k#"$.c:>g'+,B:>g'+&.c;=?nF\v%"'&'.546767"'&'.546767632.5467676267632"'"'&'.27654&'&'&"67&'&'&'276767&5467'&'&#"32767>54&/76767>54&'&'&#"Z0%8/y20-),(-!0[/8%-(,)0-<1:3%>(-%8/|/8%-(>%85670-),(-%8/[0!-(,)-02y/8%0M=  H C# B/g H /*x#$  8## H g/B PP  $#x*/%N1&+'g=;c."&.c:>g'.5 ?=;c.&&.c;=? 5+'g>:c.&".c;=g'+&1N8GG$> >$ c.,bB$#>  Ir0C >'#> LM >#$Bb,.$ >#'> C0rI T`)T:e&'#"&'&'&4767>3267'&#"327%32676764'&'.#"7632#"#.4767676324676762>322##"&'"'&'.5#"'.'&467"&'&'&4767>&'&'.'&'>76?&'326767767>5&'&'.#"767>7.'&/32>7674&'&'67'&'.#"67'&'.'67676767"2767>54&'&'"'&'.54?&'2767>54'7654&'&'&"67'&54676762:    $4 4$ww4 4 xy   %" !()-+U$"! ((\(( !"&S+-)(! '7M"# V2% A()-.R$"! ((\(( !"(O-,*(A"#2P"# "M    ! *4 2 kk  4 2 uKK        i2 4* !== 2 4  `_  wR#$$#R#$$  8 < c !<>     8 < d!!<>   "%UV*) !!$3R  R3&!-(-%Z& "#%(.2$( &&S+,))A!$3R  R3'A))XT$""#%(`$( "      i3+!x== 3 _`        !+3 kk 3 uKJ   F)(GG()F$    %3 3%ww3 3 xy   V^3N^"2767>54&'&/2"'&'.4676762 '&'&547676% %-z35++++++53z35++++++5pWDM69?=;9JHDM69?=;9JHSspsnunˎspsnul}}(.h<;h.((.h; +F$$> +F$H ;<5 A~ ;<5 A+DQ2J (5H,'9,J&0f) T|\`j4OO7g`\|T 'g/& H,9',I4( (3J,&9-H &0f) T|\`j4OO4j`\|T 'g/&J,9',H5(G+DQ2J$(:U$(:U3!'""!'""A''7'753'75377537'7'#5''#5'7#5'7'7<B-DH2#"2767>5!"&54$3!57!#"'&'.5467676#_>I-743TP>CPNDG-2.1/&D9 88 '.* !-8D_2{j@F'%.3r@Md7+4V/2&'&54676762"'&'.546767Zy*,&''&%1]~|45,-++-,54|45,-++-,5(+&a4|d΃fz4a&$(F*.j=3"&'&'&54767>32rJ6464NN4646Jp`684F@NLBD64:866D@NLBD668^~* i654'&#"632327632!"'&5!267&'&#"#"'&54763247632327654'&547632#" 6+Jo.^V|;-˙it36?̺fQMeEJS?(*$ s]vh2K)*NL13^v:Mc*ZeC03N35%&-Kt\K%9S >BWN=!$?$8(F!5{^?Z Q67654 547&'&+327#"'#536767&'&'&5432&5476323254'&5432?-BO>=v06&%K`dC+(k$'eM?$#=Hb B=)+8=.m9eb PB>$3g:84!EB7WPfG+1KHP<Ff#&T'0P+A'<}DC/'"05276767654'&'4rceNS((((`hm@DDF/CD}>C/GFCG !&547>2; 0!!6P<:! !$ ! "#{! !{54&#">32!5!>??qq>0ţ=as;N_/>!RL}A?rFi:}$:&N?(U?"Mt 6+A]A)9IYiy ]1.+. + !'+!+9*'!901! 4$32%4&#">32+32#"&'32654&'26??qq|=_ky4[\XZcksuD}[X@v hA?rs ?<:32#"&'32654&#"75!5!??qqYe2hvvhDw_X@ϰ?A?r%aVUa/  23/4/3и/4ܸA]A)9IYiy ]A&6FVfv ]A] +  + +,&+,/&,901! 4$32#"&54632"32654&#"7>325.??qq\NN\\NN\qºN w/aTJjA?rZbbZ[bb*= P# + + 01! 4$32%!35!??qqlUA?rv]K 1=++ +A]A)9IYiy ]A&6FVfv ]A]A ]A ) 9 I Y i y ]/9;9;/A;;]A;);9;I;Y;i;y;;;;;;; ]5+ )+ +28+201! 4$32#"&5463232654&'>54&#"2#"&546??qq_TT__TT_⾭vijvkKRRKMQQA?rlHQPIIPPI\vSttSvB>=BB=>B &23/4/ܸA]A)9IYiy ]3'и'/-A-&-6-F-V-f-v------- ]A--]+ +  +*0+*# 901! 4$32254&#"326#"&'4632#"&??qq鿹ºO w.aUJk<\NN[[NN\A?rK < O$[bb[[bb $0Ӻ%+%+++A]A)9IYiy ]A++]A+)+9+I+Y+i+y+++++++ ]+ .+ (01! 4$32!5##7##"&5463232654&#"??qq$ŸuF?@EE@?FpA?r*'$ =$>  767654'&'!5%3!!  '&'&54767̆mommom4mommomP\|~{{~||~{{~|96oooo6996oo  oo6}9:݈@>}~Ա~}>@@>}~,,~}> =6P  767654'&'!!567>54&#"5>32  '&'&54767̆mommom4mommom)4 \=)N=kP`aF7I׺\|~{{~||~{{~|96oooo6996oo  oo6_A.Xx;_x55'(IZV@>}~Ա~}>@@>}~,,~}> =B\  767654'&'#"&'532654&+532654&#"5>32  '&'&54767̆mommom4mommomttLUDWx~zB\RGr=\|~{{~||~{{~|96oooo6996oo  oo6yt'(xrjw_Z\bd @>}~Ա~}>@@>}~,,~}> ='A  767654'&'!33##!5  '&'&54767̆mommom4mommomh*˪+\|~{{~||~{{~|96oooo6996oo  oo6 @>}~Ա~}>@@>}~,,~}> =7Q  767654'&'!!>32#"&'532654&#"  '&'&54767̆mommom4mommomz#G#KSLVAC\|~{{~||~{{~|96oooo6996oo  oo6c ۻ)%}|X@>}~Ա~}>@@>}~,,~}> =%>X  767654'&'"32654&.#">32#"32  '&'&54767̆mommom4mommomllm=|< /Vڵ =|^\|~{{~||~{{~|96oooo6996oo  oo6EKۼ>-O@>}~Ա~}>@@>}~,,~}> = :  767654'&'!#!  '&'&54767̆mommom4mommom\N\|~{{~||~{{~|96oooo6996oo  oo6`E#@>}~Ա~}>@@>}~,,~}> =#9E_  767654'&'"2654&%.546  &54632654&#"  '&'&54767̆mommom4mommoms慄htdthutԄ9tihvvhit0\|~{{~||~{{~|96oooo6996oo  oo6,{{|kl{Eggss\hh\]hh@>}~Ա~}>@@>}~,,~}> =2>X  767654'&'53267#"&54632#"&2654&#"  '&'&54767̆mommom4mommom=|< .Vڴ=}mmlJ\|~{{~||~{{~|96oooo6996oo  oo6DJټ@>}~Ա~}>@@>}~,,~}> =+8Ca  76767654'&'&'"32654'.  735733!  '&'&'&5476767̆mo5885om4mo5885omT,+VUVV++2QPPQΠP3p\|~-,g%&݈@>}~~}>@@>}~~}> = $!5!#%  '&'&54767{\|~{{~||~{{~|#:9q @>}~Ա~}>@@>}~,,~}> =6>7>54&#">32!5  '&'&54767I7ݺFa`Lk=N)\\|~{{~||~{{~| ZI('55x_;xX._@>}~Ա~}>@@>}~,,~}> =(B>54&#">32+32#"&'32654&  '&'&54767ir׸G\\Bz~xWDUL2\|~{{~||~{{~|db\Z_wjrx('°t=@>}~Ա~}>@@>}~,,~}> = '! !335#$  '&'&54767hno\|~{{~||~{{~|  @>}~Ա~}>@@>}~,,~}> =7>32#"&'32654&#"!5  '&'&54767CAVHSK#G#\|~{{~||~{{~|=|}'' %@>}~Ա~}>@@>}~,,~}> = $>2#"&546.#"32654&#">32  '&'&54767PmmlC|=ϵѴV/ <|=\|~{{~||~{{~|+޸KE@>}~Ա~}>@@>}~,,~}> = !35$  '&'&54767>h\|~{{~||~{{~|@fE@>}~Ա~}>@@>}~,,~}> = +E2"&46' 654&'>54& 74632#"&  '&'&54767Yt愄/tԃuhtt-tihvvhit0\|~{{~||~{{~|{lk|{{Essgg]hh]\hh@>}~Ա~}>@@>}~,,~}> =$>%32#"3267#"&'"&54632  '&'&54767!C}= дѳV. <|=Allm\|~{{~||~{{~|Q/=޸JDg@>}~Ա~}>@@>}~,,~}> =  :2#"&546$  !5##7  '&'&54767eddedddB¡\|~{{~||~{{~|>-/#&%q @>}~Ա~}>@@>}~,,~}>uPj !!5!!Pp#@pppt 7%FN4NGuP85 zD<22pJJt '-ZKFGNuP!!u\lE>~~>uu+"&'.546?!".4>3!'.5467>2p4,,$$,,42.p ,.".2."., puP8!5! %JZPJJuP8!5! %JHJJuP8 #3#3#3!!5 xx<<oJpppJJuP8 55!#3#3#3oPxx<<΄ΊXXXXuP8!!5 %JJJPD! 6>l>>PD ! DR>l>>P  BlvvuPb3!5 5! '&'.u$##+* ZJMM*+##$0U%!JJ!%UuP84676763!5 5! u$##+* ZJMM*+##$0U%!JJ!%U0!! ^r{VXeoouP855!Dq΄Ξ0uj%5!!53  !<9h9>uj%5!!53  !<9h9>+Z !73#57!!+ Id&+ъ2&+Z 5!'53#'!!!+dI|&22 !'!'!53 !Odcndh 2 3#5!7!!! ndnd;ch dd !53#'5!'! !]n2n22r-hJdc;dJdd 7!573#5!! !2+2n2nr-hLJd;cdJ<6767632"'&'&'! <'CZmo~yti^Z\X^Vqoti^?)X6nGCZ.//+]Y݀z_X0//+]>Iʞ BP "&*.37#37#37#37#5!!!!3'#3'#3'#3'#<<< 7&#"7'7 !%*BF8WU{FC*9oX:WubP 55!5!!'!XXddPRt '327'' !!iFB*8X:*CF9XUpt>*%&#">7'&'&">327&5467>7tBEH#&NKX$W/,0$" D5Hp*G6$"!0,0Y"W!F&'&#GGCuaP'467#"!4676?'&'.5!3!.5P5#$%"//"%X$# 5eeJ(0Y! "X0(Jet*.'.54?'#"&'2767.'32t)H5 X"$ #0,0X"KN&#EHEBCGG&'&KW"Y0,0$"E6GsPX'<6%"'&'.54676$4676762"'&'&&'.54676762$/+z >_ $#R#af#R#)>xbQu 88RK68# 88  vc<*676767632#"'&'&'&%.5467.546A ''+/54<3o8n23'9%%%%bb%%%&:?$ fLLf#&#/:&'X23X'rr'X32XV2c"'&'.54?654&'&'&#!"#!".4?64/&4676763!23!2767>54/&546767622 Z ;:td Z   c   uu  c  2c"'&'.54?654&'&'&+"#!".4?64'&4676763!2;2767>54/&546767622pW\xj IJ \W   8  uP^'#76767&'&/3#>7!5!!5!.'PSJl..&GG&GlHSi7*nK Kn**7OUnm'66'1U=Hd)dH=#u ! ! j.u-10 3%!#3!Zddd/ #3!53#5ddZd{3 #pph # 3hp&T&T[[ '#'#'##'x\xxjjxx\x,x\ehhP8\xYY73373737+.x\xxjjxx\x.x\8Phhe\x,OlD=072767>54'&'&'&"7#7676767632#"'&ew@RNJV !'7$"!3!&'&'&'!#!2767676wx !1cbbc1! "1cbbc1" `x]\LM&  &ML\;RR &ML\]]\LM&ZwxZQvcbddbcvQZ[RwcbddbcwR[xV''LM\7=e=7\ML'e;6\ML''''LM\6d 8   2@ @@ 00 ]1@   990@   <<@ <<KSX << Y5!!dx yxUZxxu 8   2@ OO __ ]1@  990@   <<@ <<KSX << Y'7!5!'7 wxy xZwxxd 8ڶ 22@ PP_ _O O]1@    9220@   <<@ <<@ <<@ <<KSX <<<< Y5!'7'7!dxxwxxUZxxwZwxxd 8!!5!! s]xwx]ix]xZx]xiu 87'!5!'7'7!5 ii]xwx]iix]xwZwx]xd 8!7'!!5!'7'XiiiI]xwx]h]xwxiii]xZx]]xwZwxd 8 !5!3# Y#xwxݪ-xZxYu 8 #3!'7'7xwx-\xwZwxd 8 !5!53#5! Y]xwx]Q7ii]xZx]Eiiu 8 !'7'7!#3!7'Q]xwx]iic]xwZwx]\iiu 8%77777773'7'7#'''''''uFFxwxcnFFFxwZwxnF,X@P,,X P,,X@'P,P,,XP,,X@'P,P,,X 'P,P,,X@'P,'P,P,@P,@'P,P,@'P,P,@'P,'P,P,@'P,P,@'P,'P,P,@'P,'P,P,@'P,'P,'P,P P,@'P,P, 'P,P,@'P,'P,P, 'P,P,@'P,'P,P, 'P,'P,P,@'P,'P,'P,P@'PP,@'P,'PP,@'P,'PP,@'P,'P,'PP,@'P,'PP,@'P,'P,'PP,@'P,'P,'PP,@'P,'P,'P,'PPP,@'P,P, 'P,P,@'P,'P,P,'P,P,@'P,'P,P, 'P,'P,P,@'P,'P,'P,P@'PP,@'P,'PP,@'P,'PP,@'P,'P,'PP,@'P,'PP,@'P,'P,'PP,@'P,'P,'PP,@'P,'P,'P,'PP 'PP,@'P,'PP, 'P,'PP,@'P,'P,'PP, 'P,'PP,@'P,'P,'PP, 'P,'P,'PP,@'P,'P,'P,'PP@'P'PP,@'P,'P'PP,@'P,'P'PP,@'P,'P,'P'PP,@'P,'P'PP,@'P,'P,'P'PP,@'P,'P,'P'PP,@'P,'P,'P,'P'PP,pXP,p,pX@'P,P,p,pX 'P,P,p,pX@'P,'P,P,p,pX'P,P,p,pX@'P,'P,P,p,pX 'P,'P,P,p,pX@'P,'P,'P,P,p,p@'PP,p,p@'P,'PP,p,p@'P,'PP,p,p@'P,'P,'PP,p,p@'P,'PP,p,p@'P,'P,'PP,p,p@'P,'P,'PP,p,p@'P,'P,'P,'PP,p,p 'PP,p,p@'P,'PP,p,p 'P,'PP,p,p@'P,'P,'PP,p,p 'P,'PP,p,p@'P,'P,'PP,p,p 'P,'P,'PP,p,p@'P,'P,'P,'PP,p,p@'P'PP,p,p@'P,'P'PP,p,p@'P,'P'PP,p,p@'P,'P,'P'PP,p,p@'P,'P'PP,p,p@'P,'P,'P'PP,p,p@'P,'P,'P'PP,p,p@'P,'P,'P,'P'PP,p,p'PP,p,p@'P,'PP,p,p 'P,'PP,p,p@'P,'P,'PP,p,p'P,'PP,p,p@'P,'P,'PP,p,p 'P,'P,'PP,p,p@'P,'P,'P,'PP,p,p@'P'PP,p,p@'P,'P'PP,p,p@'P,'P'PP,p,p@'P,'P,'P'PP,p,p@'P,'P'PP,p,p@'P,'P,'P'PP,p,p@'P,'P,'P'PP,p,p@'P,'P,'P,'P'PP,p,p 'P'PP,p,p@'P,'P'PP,p,p 'P,'P'PP,p,p@'P,'P,'P'PP,p,p 'P,'P'PP,p,p@'P,'P,'P'PP,p,p 'P,'P,'P'PP,p,p@'P,'P,'P,'P'PP,p,p@'P'P'PP,p,p@'P,'P'P'PP,p,p@'P,'P'P'PP,p,p@'P,'P,'P'P'PP,p,p@'P,'P'P'PP,p,p@'P,'P,'P'P'PP,p,p@'P,'P,'P'P'PP,p,p@'P,'P,'P,'P'P'PP,ppPp,p@'P,Pp,p 'P,Pp,p@'P,'P,Pp,p'P,Pp,p@'P,'P,Pp,p 'P,'P,Pp,p@'P,'P,'P,Ppp@'PPp,p@'P,'PPp,p@'P,'PPp,p@'P,'P,'PPp,p@'P,'PPp,p@'P,'P,'PPp,p@'P,'P,'PPp,p@'P,'P,'P,'PPpp 'PPp,p@'P,'PPp,p 'P,'PPp,p@'P,'P,'PPp,p 'P,'PPp,p@'P,'P,'PPp,p 'P,'P,'PPp,p@'P,'P,'P,'PPpp@'P'PPp,p@'P,'P'PPp,p@'P,'P'PPp,p@'P,'P,'P'PPp,p@'P,'P'PPp,p@'P,'P,'P'PPp,p@'P,'P,'P'PPp,p@'P,'P,'P,'P'PPpp'PPp,p@'P,'PPp,p 'P,'PPp,p@'P,'P,'PPp,p'P,'PPp,p@'P,'P,'PPp,p 'P,'P,'PPp,p@'P,'P,'P,'PPpp@'P'PPp,p@'P,'P'PPp,p@'P,'P'PPp,p@'P,'P,'P'PPp,p@'P,'P'PPp,p@'P,'P,'P'PPp,p@'P,'P,'P'PPp,p@'P,'P,'P,'P'PPpp 'P'PPp,p@'P,'P'PPp,p 'P,'P'PPp,p@'P,'P,'P'PPp,p 'P,'P'PPp,p@'P,'P,'P'PPp,p 'P,'P,'P'PPp,p@'P,'P,'P,'P'PPpp@'P'P'PPp,p@'P,'P'P'PPp,p@'P,'P'P'PPp,p@'P,'P,'P'P'PPp,p@'P,'P'P'PPp,p@'P,'P,'P'P'PPp,p@'P,'P,'P'P'PPp,p@'P,'P,'P,'P'P'PPp,p'P,pPp,p@'P,'P,pPp,p 'P,'P,pPp,p@'P,'P,'P,pPp,p'P,'P,pPp,p@'P,'P,'P,pPp,p 'P,'P,'P,pPp,p@'P,'P,'P,'P,pPp,p@'P'P,pPp,p@'P,'P'P,pPp,p@'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p@'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p@'P,'P,'P,'P'P,pPp,p 'P'P,pPp,p@'P,'P'P,pPp,p 'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p 'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p 'P,'P,'P'P,pPp,p@'P,'P,'P,'P'P,pPp,p@'P'P'P,pPp,p@'P,'P'P'P,pPp,p@'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p@'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p@'P,'P,'P,'P'P'P,pPp,p'P'P,pPp,p@'P,'P'P,pPp,p 'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p'P,'P'P,pPp,p@'P,'P,'P'P,pPp,p 'P,'P,'P'P,pPp,p@'P,'P,'P,'P'P,pPp,p@'P'P'P,pPp,p@'P,'P'P'P,pPp,p@'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p@'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p@'P,'P,'P,'P'P'P,pPp,p 'P'P'P,pPp,p@'P,'P'P'P,pPp,p 'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p 'P,'P'P'P,pPp,p@'P,'P,'P'P'P,pPp,p 'P,'P,'P'P'P,pPp,p@'P,'P,'P,'P'P'P,pPp,p@'P'P'P'P,pPp,p@'P,'P'P'P'P,pPp,p@'P,'P'P'P'P,pPp,p@'P,'P,'P'P'P'P,pPp,p@'P,'P'P'P'P,pPp,p@'P,'P,'P'P'P'P,pPp,p@'P,'P,'P'P'P'P,pPp,p@'P,'P,'P,'P'P'P'P,pPpd?8 !5!53#5!s]xwx]ii]xZx]EiiuP8 !'7'7!#3!7']xwx]siic]xwZwx]\ii 3'#'##-Z-x\xxx\.x\n #\733737#x\xxx\xZ'x\# n\xO'=%"'&'&'&767670327676764'&'&'&pk_V1..1Vbrx`Xk_V1..1V_kpIxXE?#!!';B]YQS@?#!!';BQ9.-\ZnllnZ_.x$-\ZnllnZ\-.)xF!F@RNJV>lmGСBk>DdW0Xdtsݓ.W@#.  -&.%)/K TX)8Y299ܴ]<<999991@ &$-/22907&54&'>5!2;#"#!532654&+CI02Kl>>l5UU5D>kB0GmstݔdXЎW2  5 1Vd22h' %#3 5' :' 73 ٪L^8bb:'B 7''ٛ>PNq'B '''ٛ>PNq^D'B ''>PN'B%  '''tNP'B5  5''bNP#u  u-3!3!!#!#!5 L3ͨ--Ӫ--333333#######5Ϩ---Ӫ---:k7!!  767654'&'$  $'&'&547676h08rtrrtr@rtrrtr VGFFGrGFFG;:rs죟sr:;;:rssr:Ŭɪ:k3?  767654'&'$  $'&'&547676!!#!5!rtrrtr@rtrrtr VGFFGrGFFGssB;:rs죟sr:;;:rssr:ŬɪKss:k3?  767654'&'$  $'&'&547676   ' rtrrtr@rtrrtr VGFFGrGFFG]x3w32x3B;:rs죟sr:;;:rssr:Ŭɪ3x23w3xuM %' So& S' S% SJuM327!5!>2&#"!!"&' ;E 2&#"!!!!"&' ;E $;E Ϊ@z٨zuM&#"%"&'73275%>2";EC;EJ綠mzzuM*3&#"&'67"&'7327&'&54767>2";EIq(P >6D;E]InoSu=,HK%)AH!+p$ z1IosV2";E+@/V]H6H\nUm;D [>wfP3,,I6x/Ur]HH]lVzM>wrN3 F4uM!3#!!>2&#"!!"&'732w~9F 9 }9Gr0}}uM+3#>2&#""&'73273264&c)~9GcBnnVs~9F (6o~ç|K|oU}uMp.3#327264&#">2&#"632#"'"&'z;E-8pƖqS;E;DܛWI3>6я]z!zuM 13#64&"327&'&767>2&#""&'˔֐;E]InoSu;EcBnnVszяϐ-1Io7sV2&#"!!"&'73273!#3;~9G9G ūI}ޭ{ tMm-&#"!2#567&'!"&'7327!5!>2";Ed_``!;D ܻ`;`*I6ƌebIz`:H:`*F4uM#&#"7'"&'7327'7'7>2";Exx;EzxXyxzyxإzuM*327#467>2&#"#4'"&' ;E-A 4yy;E Z>Vy|-2PIϼ+zEa82JzuM'&#"63"&'7327&'&53>2";E*y;E\?Vy~+&8'zLFaI1zuM>32&#"#"&'7327!5KL~9GALK~9G⧅}}gkb>32&#"#"&'73275!KL~9GALK~9G⧅}}Р? 5 5FѶeѦ 55FѶ///m' /&  '' ''  ' / '  N:A%#"'&'&'&#"5>32326#"'&'&'&#"5>32326 5jbn ^Xbh`n ^Vhjbn ^Xbh`n ^Vg@PNE;=LTNE;=KPD:32326#"'&'&'&#"5>3232655jbn ^Xbh`n ^Vhjbn ^Xbh`n ^VePNE;=LTNE;=KPD:327&#"56767326 5jbDS4WVhjbm\Y@/Xbh`ES3VXbhZmMp[Y@1Vg@PD4KUNE;@LTNE4LRN"*,@J^po_N5<#"'3267#"/'7&#"5>327&#"5>32732655jbDS4WVhjbm\Y@/Xbh`ES3VXbh`n[Y@1VePD4KUNE;@LTNE4LRND:@J^T 5!5!-5 !5!uu/0\^ҲЪ~T -55!55!usҲЪ᪪/0N%#"/&'&#"5>32326!! 5jan^Xbh`n^Vf@PD:32326!!55jan^Xbh`n^VfPD:323265-5ian^Xbian^VgsuOE;=LSNE; =KJ/0:ҲЪ !(#"/&'&#"5>32326-5 5ian^Xbian^VeuOE;=LSNE; =KJҲЪ/0, -55!55!us%ҲЪ᪪(/0٪, 5!5!-5 !5!uu%/0\~ҲЪ^6 5 5 -55uu/0V/ҲЪа/6 -555 5uuҲЪ۰/'/0K/& 55p/ѦѶ& 5 5p/om//&' / &' !{ 5!5 5!@Ѫop9{ !5! 5 !5!@Ѫ555@pNpop 55 5@p pU(".#"#"&'5327>76325hV^ n`hbX^ nbj@TL>7632 5hV^ n`hbX^ nbj?TL>֪VJ<:DNTL<:DNDop$+5!5!.#"#"&'53276767632 5hV^ n`hbX^ nbj@>֪VJ<:DNTL<:DNDf $!!!5!676762!!&'&'&!!C.8d 6WYYV7 e8-;Z{+DD\93[2332[0<[EC,W7!!%5$$}y]]x|W%!5505%$}$y|]]W !!'7!5!%5$ZZ N$}qPP]]x|W !!'7!5!55%$ZZ N}$qPP|]] K75!5!%5$!:[]3֪k-QtXVv K75!5!55$%$][:!3֪kVXQ-qK!5!7!5!7!!!!'%5$&`ȉ)P"_=6!:[]ss1st-QtXVvqK!5!7!5!7!!!!'55$%$&`ȉ)P"_=6][:!ss1stVXQ-y:E#"'&'&'&#"5>76326#"'&'&'&#"5>32>%5$ian ^Xbib` ^Vgian ^Xbian g!:[](NE;=LTN9 A=KOE;=LSNE;C E-QtXVvy:E#"'&'&'&#"5>76326#"'&'&'&#"5>32>55$%$ian ^Xbib` ^Vgian ^Xbian e][:!(NE;=LTN9 A=KOE;=LSNE;C EVXQ-6A#"'3267#"/'7&#"5>327&#"56767326%5$jbDS4WVhjbm\Y@/Xbh`ES3VXbhZmMp[Y@1Vg!:[]$PD4KUNE;@LTNE4LRN"*,@J-QtXVv6A#"'3267#"/'7&#"5>327&#"5676732655$%$jbDS4WVhjbm\Y@/Xbh`ES3VXbhZmMp[Y@1Ve][:!$PD4KUNE;@LTNE4LRN"*,@JVXQ-7 5@pppo%5555òi ' '!]#\e#N\#]x#L   !77 ! \ݿ##N]##4 !7 7:\#]x#L]ݿ#\eL#1 4  %''' !]ݿ#\eL#1\ݿ#]j#7P~ % ! !!5 5!3!   7?~% !!3 *^V !!^*  ^V!!!^ ' '!##L  !  ##4%7 7#L4L#1 4  ! L#1#7P~ % ! !3!߆^V ! !! !ECuR #7!5!7Zxx/{xx:xu-R '!5!'xx vx:xH% 7!!7vx{/xxxƪxvH-% 3'!!'Zxx vxx$!%!!W7 r$!!!W7 $!!,7r32 &}f[_ &}f[, %$R/ %$R !2+##5332654&+!ʿ[qrqqϐђАfT$@  $ !? %29999991@&  B  $/999990KSX9Y"@&]@Bz%%%&'&&& &66FFhuuw]]#.+;#"&! 32654&#A{>ٿJxn?M~hb–m؍OH#(07#5#"''7&546;7&'&#"5>327354326=-?\g`n;) T`TeZx_958>cc3Vfa<}NV{ E..''rOs+Ax.ٴ) 3{ B333#;#"'&'##53w1ѪKsQ fև3͏oNP r>-!#4&#"#3676323#d||BYZucce22wxLj%3###3!E3A1wH33 3###%̟8ǹiEL#\ !!#!5!sP=g՚oAX` !!#!5!qjLl}e`R%sw-@ 221/053#5# !232#"MT+焀\\xEEf! !+53265##-}-MDnh %!#3!3҈R={0#3 632#54&"$\^TރQr)m`Tῆrr:T*D  # #3 3 67632#54&#"f:9:54'&'&s~&&~~ڢ~.]=@N\N\.]=zz❞zz}qa !SM!R}|pas?#-n@.  '&$ /$ .9999991@ .'& ) )./9999999046$327#"''7&7&#"4'32>s~&Ġn~ڢĠnՑꏧw֜\w֜\zvijޝzwkj!^`|g^` .@   <<<2221/03#3#3#3#):@  1/<0@22 # #3.]F; -@    1@  /<<03!#!#!"9q><@  9/1 ]@ /<220KBPX@     @     @ Y333 # # \Xds3{ 1@   <2<2??]1/<2<20%3#3#3#3#\ 7@  91/0@ BKSXY" !!!!&TdD՚ohh $@    1/<<2203#3#3#hhh0o !@  /221/220!!!!5!!o&.-ժo1/,@! ',01*$ 022122<20!"'53 !"563 676!2&# !27# '&%4rmyymrO4%%4Trmyymr4*B6!*:'(8) 6AB6 )*!6oP@   <<222<<<<21@   /<2<<22<<2203!3!!!!#!#!5!!5!!n""xxyyrr3@21/03!!!ժ,o7@   /<<2<<21@ /<2<203!!!!#!5!!5!CCPPxyr7@ KTX@8Y221/0@ 0 @ P ` ]73#3#>@ 10@ BKSXY"47!5!32654'3! $x˿ßwNetwc #/9@1E- !'E0<2<21@ 0*$002654&#""$54$322654&#""$54$32,,,,PIIPPIIPPIIPPIIPs'(@ ) (1@ #(046$32#"$&732>54.#"s~&&~~ڢ~\ww֜\\ww֜\zz❞zz}``}|``s,P@  ! #.# -9991@ ! ((-99046$32'#"$&73277654.#"s~&&~l~\wj\ww֜\zz➞ikwz|`^jI|``; -@   1@   /2203!3!#,dq9d (@   <<<<1/03#3#3#QIh ?@     <2<2??? ]1/<2<20#53#533#3#3#h+Is'+>@- )(( ,9//)]1@+(#,046$32#"$&732>54.#"3#s~&&~~ڢ~\ww֜\\ww֜\zz❞zz}``}|``s>,P@  %$#& !.! -9991@ #&$%((-99046$327#"$&732>54''&#"s~&Ġn~ڢ~\ww֜\pw֜\zvikzz|``|?l^`sr%1=G@8&,20><2<21@/; 5 )##>9//0! #"&547 !&54632! 32654&#"4&#"326sS_  _mz,,,,,,,,gs'O;H66H;O'sz<11<;22<11<;//d #@   <<1/<203!!#!5!IIjk=;;sr3?Kf@F4%+6:0L2<2<29/<<1@=(I C (7##11L9///<20! #"&547"333###3&54632! 32654&#"4&#"326sS_ ̻A;z,,,,,,,,gs'O;H6ߊ6H;OO4z<11<;22<11<;//;@   2<21/220]!!!33##!!!>ժFh";@ 1/<0)3!3;+y=@ B <1/20KSX@Y!# 5!!!8ks#O@%$!  /<<22<2<21@  /<<<2<<<2032653#2#4&##"#3"3ʊyʊy+VVF%F.@ KTX@8Y1/0!##u-s+f@- ,&'  #+ /<<<222<2<21@+*   #*'"/<<<2<<<29/<205!5"3332653#!!2#4&##"#35ʊAyʊy>FV>=VF=6-@ 1/20!3!3M-$36767#"&546?>7>5#53!Ya^gHZX/'-93B$BS #C98ŸLVV/5<4,5^1Y76'6'6'6'6'6&6'6&6'6&6&6'6&6'6&6&6'6'6'6&6'6&6&6'6'6&6&6&6&6&6&6&6'6&6'6&6&6&6&6'6&6&6&6&6&6&6'6&6&6&6&6&6&6&6&6&6&6&6&6&6&6&6&6'6rid{jXn`+v)4#"'&'&#"#"'&547673!27676323 4'&'3ft[na`zxz{n[tfCGo~[U]LKfdKJ]U[~oFCD@@DDDk63366336Fk!!"$"# 33276762324rTRrƒ>IxddyI?ВP8[ 77 [8G<r&,>`&s   !3#!! ! H0x:;hLH+fabgp{ "326&33###" rhո  98X!#!!^GAXX!#3!!^AẌX!#3!!^AXX!#3!!^AXdX%!!3^Xf;3!3+53265!#M?n"d_9Vd4&#"#3>32+532765||BuƣF1n!&edH08L*!!!2!"'&'5327654'&+5!#!^eicUQsj~cd\]ժ˚8+lhzy$1KKIJJ+7L402!"'&'5327654'&+5!;#"&5#533!AicUQ^cdjTmcd\[jKsբe8+lh%12KKKJN`>¨~` !!!!#+`Ӕo{V 3 3#!+!# ! !J9҈_҈_%s%>+{'{ 5@M"326=%#5#"'#5#"&5463!54&#"5>3205>32"326=63!54&#"߬o?nQ?`TeZxeZ߬o5y`[A3f{bsٴ)Lfa' fa..''~D''f{bsٴ)hn< !!#3 3%Lj_:+{N{ ("326=5#"&5463!54&#"5>323߬o?`TeZ^\3f{bsٴ)ͪfa..''5 )!#!#333#%~gY_:gci5R{N{"-0!5#"&5463!54&#"5>32333#"326=!#u?`TeZxgƚÛ߬oGfa..''~mc3f{bsٴ)V !+53276?!#3 3%lKMJ|ثL*+2_:q?=$%2@{VN{'2!5#"&5463!54&#"5>323+5326?"326=u?`TeZ^N|lLT3߬ofa..''wj8zHB3f{bsٴ)s'{f 37!!_(^M*c37#xIS 33#!!#53ʨ_YQx 33###53YR j% 3#! '&#5376 !&'! 76;:~ ż ~HjiF wvҵCҤֆ {'23##"'&'#53676"!&'&!3276o ~~ oV?s?VLVVM{~͐~sUUu%gstgs j$. 676! ! '&'!     ':/##.;:xŽ.$#.yHH5==5[[4=<4HHHq{ 1"32654&!"32654&'267632#"'&'#",nn霜ǝ98 !#!5!)+Vy`3#\{w #!5!!5Pp+ɪF #";##"$54$3@/+X 3333! +m3#mD U%3 3# # #3>:9w+: #'+/37ڷ/$0(7,48<<<<<#+ 3'<<<<< <<<<< <<<<<9̰XKRX8K bf TX30<32#4&#"#9`M1Cuȸ||MM 7BuƸ||e,'"xMfca?'Gzed\V5<!"'&76763!!32653#5#"&5#3!#"&5332765!"3ە^SWsv||CusCuȸ||WVۃ^SBWLa{fcBVfcf__{{V H!&#5#"&5332654/&763!6763232653#5#"'&=4&#"#9`M1Cuȸ||MM 7c%Zk>8nClbd||xe,'"xMfca?'Gz2XO{fcx{䟞[t`&V 332673 &Vv aWV` v ޞKKJL[`&0SN~`6@  F991B /2<0KSXY%2767653)5!3$Wq2!dj±/8s4tVg` ##4673>=3|u˷d7<T "yX`#!5!e/я`!#3#4&#!5!2snJvy–X`35!26&#!5! #X-뒦yX4=!3!#T\[CLzl` 3!2%!4&#!Wn`–X` !#4&#!5!2nKy–X`!#4&#!+5265#5!2nã rLy–a;- 1 <05!3!----Ӫ&,&,&R&R`&u`&`& \X`& BCZ`& Xh`& d`& Q`' ZX`& `& &Q`&Z XV`& X`& :X& X`&! %X`&# X(`&$ Vd`&& Id`&' {C!`&) nV`&* X`&+ I`&, `&- <t&X& X& d&' X3>=3##67'#3x]GgG.i=dB`ԛ":T)C '9v '9 X& ~X' 'v ' X&c ~X&c 'v ' X&c ~X&c'9v'9&L~&L'v&&cL~&cL'4v&40a&4+p~a&4+p'x~\F&x?&,~ x&>'xx\F&x?&,x x&> (f'C >f'}>\/& 8>>/& 8 (f'C >f'&8\/&88>/&8 (f'C >f'2>\/&8>>/&8 (f'C >f'2>\/&8>>/&8 ' G ~& /&G4> ~/&4>)7%#"'$47332767654'&54767;#"'&/cͷ?Ahž#62 #dGG&+@XA:g!axLY 6r'g>0X %+53276=3+HZ#c,1VV,1jٻ~X%+53276=3;#"+MZ#c,11,c7nVV,1jj1,JZ2X&c~X&cpn"56$3=gi~wun52&$=Ԛuw~ig* '/&'&#"#67632O,$e5Fqp[?8WH7  $0GJI  '327673#"'&'O,$a9Gqp[?8W7  $,KJI P\,l&Q\,P],i,k ;#"'&=3!1,cK\WL71,\W+P^,P_,l'_,QP`,l'`,QPa,l'a,Qdb,l'b,Q<c,l&Qc,U7'd=&dl9'e=l9&e @'e>Y 6&0e>l 'f=l &f'e>Z&2eXD&e+p~&e+py= 3;#"'&1,cKPWskj1,\e'9v&9X&~X&'X^&,^ 'v &&cR~&cR'v&&cR~&cR (f'C >f&\/& >/& (fC >f0%3#"'&'&'!27# '&5767"#"5$3 "(1{R=IrbJIԖ^` __&m3HZdP^vc–e4)?6 [_w\/&'&'&5672+5327676SSgURHKLXJKݣdht^#4b4bBPH:jV>/);#"'&'+53276767&'&'&5672~AI2hrBV~(;E)Kݣdht^eSgURHK 4b)N"w6a.%PH:jV# ('?C >&?\L& >L& }RE}GR &'3;#"'#"'532767654"9aRQS,cKa].-fgsT!"#?zNuIS,!&* 1p*D}'EE}G&E b&G ~&3;#"'!5 767654x I*eK2D0# &pgM,>ꅗ:H~ b'q G ~&q I GF%7653323;#"'#"'&''&'#&'$473327676'&/3N0%@nS,cKvDm% I01_@8'TPxmil_Qb_y^@@$:|_2&aS,`[ F{GHܳ&%0l}=J<~ 1%+53276=3327653763#"'&'#"'&+8LcKc,P,+hm,%@n\Kf%#?70`DAbH<;!.,Pd@dczg2&q\ =!1(78#"'&'#"'&'+53276=3327653763;#"'%#?70`DAbH<)+8LcKc,P,+hm,%@nS,cKvD =!1(I;!.,Pd@dczg2&aS,`Z ' I G&  & 7& K <I)"'&5#&'$47332767654'367676;#"/"3276'&'&u&4-JXPxmil_Qf[+!' (s{lHX}a*=RKgL~큻%MGHܳ&%Dl7(2l^F"%GMF ,\v7Ql?[F2 .327654'&#"!"'&'+53276=36767632Ш큺%0LJNA'fKc,P-e_KUskl?[F*#=,PdrNP2T?!'Dmx+8)"'&'+53276=36767632;#"/327654'&#"JNA'fKc,P-e_KUqm*=RKg਑큺%0L*#=,PdrNP2T?!'DKH ,\vl?[F ' K & 2& & M))5!3%632;#"/%3276'&'&#"@o\Dui*=RKg큻%0Pz\?c!'EMF ,\v?]DQx %3276'&'&#")5!3%6329큻%0Pzu \Duiʸ?]DQx\?c!'Emx))5!3%632;#"/%3276'&'&#"8 \Dui*=RKg큻%0Pz\?c!'EMF ,\v?]DQx'RM&R&R&Ru *Ou %+! '&7.54762;# '!2764"[b=D}a_[9^DU)k_1ocz2t*n@00@p[C+ @Mkl=v8`3$*727&'&5763"327%+5SF7J \X];d}M4F!Ť$/%+532767&'&5476762;#""654'v`kB;(aD hYYh MXD=p`vʨ4/gg/($'UZ'-)74--47)-'bM,(U __ u F'wOu L& F& wL&'~\L&?&~ ~&kG'R~wk &k?& ,~ ~&!8T!D#"'5327654'&'&7676'&'$54733276763;#"'J&P DfXRNB8D-<9_h$$EB|=Q#!v+6(  %{{qe))5!27654'&54767;#"'&/66-62 hGG&+@XA:g!a_h$$EB|=Q#!v+6(  %?+)x.U#$%653;#"'#"'$&733276N1,cKpNyUcE@A(IPmI~jkj1,3.(B"[\ss~B"5 +5327653WPKc,1se\,1j%+5327653;#"SMKc,11,cKVV,1jkj1,^Vgt5%327654'&'&#"#"'&#4763&547632;#"bzL,5;(.;D K2KxAZM\HT((&iK*9:X DD(PNNOmf7*(?$GC,,m$%#"'+5326767632%327654'&#"dan@ht4W^Q[a>/4(*X.[4fb0G1P8TYNE5EK&)/4:''5)24fb0$#1P8S1>,E5EX !a%H'?  +&?&'R~'RX^ $&'&'&'3;#"'&'#"'&5476 xRot$8pKZI-&8:m*12e CY>)2'+eO,3;I0D-=67654'&#"27&'&5476&'5#"'+5327654'&$"':A4N--0M,Q@(Jxb 41}! @H=.%4-+#%v iEN@TSZ 'D49g=ql)D%'i.C!v-3j  ;AWE L9P)8K6(S/VL_+Y9K1\SJZ765&'&'&54767632;#"'&#"#"'$4733276L[/,4PT*uW ##rpl$-AIqYhu?AB[M!3!+ (;=A<^ĸ#0{bV` )gZZrN J' Z ' 2X&c~X&c.&=d,.&>d,&=e,&>e, &=f &>fT#"'53273676537M͞jK`Uq%BUG FA+7T#"'5327367653;#"'&4;IʡjK`Uq%"@Pif<[A FA+7DT)TL* 35'5467676?67654&#">32,X\"$߸g^aOl39ZZ8L{4<+VZ@EL89CFnY1^5YVe !5!5!)5!S2SR7'EXF: 'Eb:= 'E]C; '<Eb= 'E]EbH'&'H'''H'E ''H'&'H'''H'''E H&&E'H&&E'H'E ''EH''&H'''H'E ''H&''H&''H'E ''H&E''H&E&'H&E''E H'E '&H&''E H'E 'E 'H''&E H'E &'H'E 'E 'H'E '&EH'E '&EH'E &E'E H'''H'&'H'''E H'''H'&'H''E 'H''&EH''&EH'&E'E H'&'H'&'H'''E H'''H'''H'''E H'&'EH''&EH''E 'EH'&'E H''E 'H'''E E H''E &H''&E H'''E E H'&&EE H'&&EE H''E &EE H'E&'H'E''H'E'E 'H'E&'H'E''H'E''E H'E&&EH'E&&EH'E'E 'EH'E''H'E''H'E'E 'H'E&'H'E&'H'E'E 'H'E&E'H'E&E&H'E&E'E H'E'E 'H'E&'E H'E'E 'E H'E'&E H'E'E &H'E'E 'E H'E'E &EH'E'E &EH'E'E &EE   3%!#!! !Y9w\{8q d+_N  %*!2#!327&#363&#!3654/654'f;33;$ $#>]a{w DD663! )327&#!36'hPcp~qAA k{qS3%!!!!!!-x9vq dddsd !!!!!#3#oQn.ddqs&&$#"32767!5!# !2deVRuu^oRaG@;@&5dSUmnHFcIf3%!#3!53#.nXddddq dddd fY6765%!#!53265-V?O?nqd J^ dd0 !3 #!3pdw@1q 2 !!!3ddo o !#!! !3!3_Gbn}qR+q  r'( ! '&76 7& 676'&&:żGlllli$ #ab2222jT%%5$c$-6&/.4%&  %5 64&/.$ Pdo&nŢmngzoʷ-[ʚ)'NXd''pui$2Xf| / 3%!!!!rpq ddq $!&%! 65! X!!Y fqba@`|gd5\*$ 3%! 3!dq d+D 3!3%! ! 3! !D5D:9:9d|q  d+l 3%! 3 ! #(\~vbL:H|dq d22{ 3!! #3ndp29V{{",34&'3!5#"&5463!54&#"5>3 5!">76a=Kd?`Twj6/^;:5Czӆ]YfaH..t''UNHGgwt-!>32#"&'!4'&'676763&#"327N:||:^,<<,9RKM_]daadt= z =OsKTdihtJq{#%#"!2&'&#"3276%M]-ULEmGJXHCQRHV,${z$d$$>:##dWS%&-!!5#"323327654'&'&#"N:||v9,<<,^(]_MK^daDDaZKsO=  =Td6Jthio}{!327# 32!.#"}K_mk)#i̩J@b]u-)8 CqzӾ/ 3476%#"!!!#5354763g.9:9|WX -8J_D8d97ddddTVqV{#.=65326=#"325!!"&32767654'&#"jlQR:||:Nry^,<<,9/KM_]=ʌo,*qdaDDad-w=  =OsKihtJH "34'&3'!>32!4&#"! GS5‡OIƁkk h@[:Lded\ПU5 33#!!JKOhV #676#532765!3#%G(=1l$%OQRaеT0Hd01``2 !3 #!3OHіmdi#L&5#"'&5!3J=(G%RQOLiH0T0Z``~J^d{"&1<!>32>32!4&#"!4&#"!3%34'&%34'&OIƁԝTށkkkkd[ GS5 GS5`edJv\П\ПUh h@[: h@[:H{ "34'&%3'!>32!4&#"! GS5‡OIƁkk h@[:hded\ПUqu{ #2#"27&"676'&s3x33x3d4'pp'3(pp({98  kp-$-R-ۀ-qV{-%!!>32#"&4'&'&'676#&#"32N:||9,<<,^؆]_MKdaaKsO= z =oHJthiqV{-%#"325!!3#32767654'&#":||:N<^,<<,9(KM_]daDDad=  =OsK2HHihtJ{3'!>32.#"!N:4I,hdfc˾zo{E67654'&/&'&5432654&/.54632.#"#"&'i'K&'q4=B%%U+.39GSOjqL4vfLJ\_opPx3Zl=vf03"3;@{R?Bsl37'*7CoT78^UNO,, z1$YXDL#/%%7%&7#!!;!"&5#53*\{KsբjU|7N(dUNdudTD` "%&'&5##!5#"&5!3265! GS5CIƁTkkTS hl[:hded0=` 3%! 3!YT^^d\hdTV`3!3%!!3! !bTNdhhdjjjL` 3%! 3 ! #U|p|[hd-s=V`7%! 3+53267>^]_lP|XQ+ۙdi8{dCYXb` 3%!!!5!\vwhddhddh$%s'&'(#)s*;+,f-j.j/031s23s4T567)8h9D:=;;<\={-{DEq{FqZGq{H/IqVZ{JdKyLVyMNyO{Pd{Qqu{RV{SqVZ{TJ{Uo{V7WX`X=`YV5`Z;y`[=V`\X`]ZJsddh @03#u)@ dd1<20KTKT[X@878YKTK T[KT[X@878YKTKT[X@878YKTX@878Y@````pppp]3#%3#^ys@B10KSXY"K TX@878YKTX@878Y@ %%6FVjg //]]3#7Ju@!  VV 99991<2990K TX@878YKTX@878Y ]'.#"#4632326=3#"&9 $(}gV$=09" (}gT";9! 2-ev 3)dw @B10KSXY"K TX@878YKTX@878Y@*$$5CUU//]]#ę1w@ 91<90K TX@878YKTX@878YKTX@878Y@ //- ]3#'#Ӌ1@ 91290K TK T[K T[K T[X@878YKTX@878YKTX@878Y@ "  ]373Ӌ 9 #.#"#>32v cSRav 6978w{z9 j@ VV120K TX@878YKTX@878YKTKT[X@878Y332673#"&v cSRav 6978w{zfGd10KTKT[X@878YKTX@878Y3#@1<203#3#䙋N#!#ęę53#73#'3# 3#3#'3#}}d 3#3#'3#}}d3#3#d 3#3#3#3#dd&;#"'&'#"'$&733$767654'3F??7KX~X\,>%!$'$&73!2%7&'&547676323!!"'654'&'&#"xhn}@AQ+"R:4RQP ioh4"(=)1$+<'g\^sM6,|y$K2S%jAzG' <8BN?0654'&323276767'&54767632#!V)B,4((7(*HTO<?aNbNLZB`.NJ|m+M;3*)3P& ]027EW4,E$2Hf3Џ,' !5;#"'+5327&'&54767632"67654'&'&f$'و'$A??8 D?$ 9P2*I1C299(M.L,0W 5+5DE2.4! k .@%&'&'&547676323!!#'$'&5473!2766'&'&#"B.y9()Wp8c20-=^E>><l/"'"3 9Ld/  #+m=E2X:zFNV}`kL:DbZzWK# :<,; ? &R~&R %4'&"2>"'&4762<R8R8z?@?@@?@(8)*8@@@@@?? ''$&'cR$P~&'cR$P' &cL~&cL >&e8\K&eX>K&eX >&?\F& >F&  >&\F&>F& >&'?>\L&'8 >>L&'8 3_+ 5__bV'J@!B  6991/<2990KSXY"]33+532765#ոRQi&&}``01}` 2@  F <<221/<20@  @ P ` p ]33###53ø`<ĤV.` 54!333##"3276!5R w{i&V`p?`3A0c3'q=Ua4'q[^3'Pq=cZ' dUcZ' dUaZ' dqaZ' dqvj 3' \q=cZ' bUvj V'} \cW' u|vj0Z' @d \c:' u (Dcm:' D uvc u' u vV Y'P pVZ'P dVZ'P dV'Pc[' uPj&Z,,!!,,O=32653#"&[hq`=QQ, &&Sg &3;#"'!5 767654x I*e2D0# &pgM,>ꅗ:H~#'g `'gS!'gS"F'g28@'g+ 'c~@'g+ 'c ~r'g>9 9F KSKQZX8Y1/0@  @ P ` p ]3;#"&5Li a^,q%qqu `&JOw`73#!!dž$Nd`Vw`#676#732767!5ʆ#5H2K1i0/N)deеT0Hd01``vg`'`&3#3## !#3!53#^ժ ?!5 ?8'\Xb8 U']Xb8'b\8'_Xb8 U'`Xb8 'b,_$'_e$'`eN@ T1/0333N@T 1/20%3!533yոBy@ T1/0)533ysոBq8@ E EԶ0]991@  /0 6& #" 3 *NYh> éA@E E Զ0]91@    /<20 6& "'!53&54 3 *NNJhh> é!8@ E EԶ0]991@  /0 6& &54 #"'!5 hYNJ>z=x 4@   2291@  /290)33!x³j*]Qix 6@   2291@    /2290%!5!33xtj³瓓]Qi' 4@     2291@    /290#5!33j³]Q=q) #33mCq"q )5333!mm"q)533#mOq $@  1/2<0)3!33OkUq""Oq (@   1 /22<0)533!33OιUΓ""q $@  1/2<0)533!3kιU"Oq $@   <1/2035!!5!3ΓK"Oq $@   1/20#5!!5!3ΓK"q @ 1/0!5!!5kqKq:@!E E ܲ@]ܲ@ ]1@  /<0!&'.4> !2>4."RJr 惃sKR9[ZZ 1ũbbŨ1 p`88`p`88!>@#E E"ܲ@]ܲ@]1@  /2<0%!!5!&'.4> 2>4."RJr 惃sKRQ[ZZ{ 1ũbbŨ1 p`88`p`88O:@!EE ܲ@]ܲ@]1@  /<0#5!&'.4> 2>4."RJr 惃sKRQ[ZZ{ 1ũbbŨ1 p`88`p`88O &@    21 /03"3#!5!>k fO "  21 /03"3#!5!>c f $@   21 /03"3#!5!pk fq7@ E<21@  /<20!!##"&6 !354'&"3.Cf^v ]8mr^<Uf"qɃ]8ƃ;@! E <21@ /2<20%!##"&6 !3!554'&"3.Cf^v7]8mr^K<Uf"Ƀ]8ƃ7@ E<21@  /<20%!##"&6 !!554'&"3.Cf^v]8mr^K<UfɃ]8ƃ ,@   <<1@  /03!!!!!55Փ/ 0@   <<1@   /20#53!!!!!55B/D ,@    <<1@  /0)53!!!!ys55B/= ,@  <<1@  /0!!5!!5!355ߒѓ 0@  <<1@  /20#5!!5!!5!355ՓLѓ ,@    <<1@  /0)5!!5!!5!,55Lѓ *@  <1@   20!!27654'&3!23,R4,,=ٹUiXO]Oz}I_"_Ҥ.@  <1@  /220#533!23!!27654'&ιUiXO,R4,,=B_Ҥ]Oz}I_ *@  <1@   /20!!27654'&533!2#,R4,,= ιUiXXXl]Oz}I_"B_ҭ@@  ܲ_]9@  /999@  10!4'&'5!!5Mc4B_9V@9D@   ܲ_]9@  /2999@  10#5!&'&'&'5!! 5Mc4BX]9V@9$@@   ܲ_]9@  /999@  10#5!&'&'&'5! 5Mc4B X]9Vq=:@   91@ /̲]촍]0!533T9 >@  91@ /2̲]촍]0#5!533hՓL9 :@  91@ /̲]촍]0#5!53hL9+#1@%!$1@  #/2203432>3234&#"!4&#"!}x5%^qZHZlK--Xh|ŕnc%5@'#&1@  $/2220#53432>3234&#"!4&#"!}x5%^qZHZl[K--Xh|ŕnc#1@%!$1@  "/220#53432>324&#"!4&#"!}x5%^ZHZl[K--Xh&|ŕnc= -@   <<1@  /<<0!!5!3!!!KK?1@   <<1@  /2<<0#5!!5!3!!!KK? -@   <<1@  /<<0)5!!5!3!!@KK?=X>@ <<<<1@  /2<<<220%!!5!3!3!!!=KøL??XB@  <<<<1@  /22<<<220#5!!5!3!3!!!%!KøL=??>@  <<<<1@  /2<<<<<0)5!!5!3!3!!!0KøL=??Oq %@   1/203!3!$Uq"KOq *@    1@  /220#53!3!$U"Kq %@  1 /20)53!!kUޓK=C  1@ B/0KSX@Y!!!tFs0hB~ F  1@ B /20KSX@Y!5!!!tFlhhB~BC  1@ B/0KSX@Y!5!!tFlh0B~B+ 8@!  <<1@    /2<20327654'&+!!!2/!m]%i ; @ED\qQE=4."RJrCEoJRXErrJS9[ZZ 1SV/ { 2Ʀ1 "p_88_p`88*#5!5&'.4767675!5!!2>4."RJrCEoJRXErrJS9[ZZ 1SV/ { 2Ʀ1 "p_88_p`88O(#5!5&'.4767675!5!2>4."RJrCEoJRXErrJSQ[ZZ 1SV/ { 2Ʀ1 {"p_88_p`88Q %@   1/0!!#!3BQ *@  1@  /20#5!!#!3ԓ} %@   1/0#5!!#!+Q (@   <1 /0!!#3!3OQ -@   <1@   /20#5!!#3!3ԓ} (@    <1 /0#5!!#3!B /@   <<1@   /20!!!5!3z;  K"qѓB3@   <<1@  /220!53!!5!3z;7 K"ѓm /@    <<1@  /20!53!!5!z;7 K"ѓ+q &2>4."&'.4767673! [ZZRJrCEoJRXErrJS"p_88_p`88~ 1SV/ { 2Ʀ1  (2>4."!5!5&'.4767673 [ZZlRJrCEoJRXErrJS"p_88_p`88 1SV/ { 2Ʀ1 O &2>4."5&'.4767673!5 [ZZRJrCEoJRXErrJS0"p_88_p`88 1SV/ { 2Ʀ1 {q*!&'.4767675!5!!!2>4."RJrCEoJRNXErrJS9[ZZ 1SV/ 2Ʀ1 "p_88_p`88 ,%!5!5&'.4767675!5!!2>4."RJrCEoJRNXErrJSQ[ZZ 1SV/ 2Ʀ1 p_88_p`88O*)5!5&'.4767675!5!!2>4."0RJrCEoJRNXErrJSQ[ZZ 1SV/ 2Ʀ1 p_88_p`88 '' '' '' '' '' '' '' ''  :@   @ ? o ]9999991 2<0#'##'##'d2222222dddddV!#!3!3#3jժVV8`!##333#{}`9V@={_<VV& r Um Q rf55q=3=dd?y}s)3s\\?uLsLsyD{={\{fqqq/q999qqJ+o#7=V;=3X55^R\sd5^5bs#5`b?yyyyyys\;\\\3 LsLsLsLsLsLf {{{{{{{fqqqqq9999qqqqqqH==y{y{y{sfqsfqsfqsfq)q3 qqqqqq3sq3sq3sq3sqTx\9\9\9\9\9r\9?uXu9uuFLsqLsqLsqs/qJJJ+o+o+o+o#7#7#7DV={\3X{\3X{\3X/ }}ssfq3 }qqLu3s~\ 9 =LsNgvsq7r+d#7#7N={\3XTT\h3qT]hX\] ` d <qKsday{\9Lsqqy{y{{3sq3sq?LsqLsqTX9 ` d <q3squy{{LfHy{y{qq\9\9LsqLsqJJ+o#7,Gqqq{\3Xy{qLsqLsqLsqLsq=79qqy f u +o3XPP}  yq\9@sq J qefqqqqq|SA4Pq9qq q``9t*KL:+#qqGpPPOJI>>t+o7#7#7q=V=f3X3XXmXXXXLsPqq;VVqXXqvqq77:7/ <66JO<u1ufu]H^H 6&:uuuuuu  3s3soouuuuMLhuTzuuuq7]yq U zw(j#Lcxhc+qc3x+x.pppp*pw::efqesDy}uy{\Ls\?yLsLs{=LsN\Fqc<Fq qSZkq=xJvkqJqqdGp;GpqqWWGpAOpLsq0q@GGrwxssFqU-~Od$s6sq,J7Opfq9Lsqs5UsssJs\\\T\J#y}}@e(!TLss#y{=6|<}o{p4kq5FA33L ;q;fq<=p;rR>Qdqtqq/4dq+o9998L07/3=;xs*` D3 GLsk7sS[2Lsq@R2@R2s<qsq pv9xssfq;XXX.j}!&4fG8=(5F!A!=2*IS^s6qsfq<=={=;yt|||\(5F?56].I6r|29y{y{{qLuqLuq(5F!ATX33LsqLsqLsqodq#=#=#=|4QfG8{=;{=;}q -qn6.3sGq/STLLsqDVT>LL&tuA&7\\S&esR\Lsuu^x"6^Zq"qDq;' qqF92 F &q/qzw`DDcc/NDdc\\fcXCX.X0.XsXXEX.XXN*CCMXwBS(?99l9lC91***}} ffuuXK5k1CCOOLLLRLLLLLUL<L<LdL\W5kVz*******KKK))*CC1LLLRLLLRLjLL<L<Ld9qd==;;q;q=x==D=;==p==q==.qqB[B[{d{d7]xlxr[")>WE_HHY"~h~h@rx2OsN~sxMn`P{P@@@@`NzBza\d>N c c]ccY]dji:~:~PZ"ZPZ|ZPZ}PPZPZXZPPP|ZPP*FZnP\ZZZFdZWPPWFZdZddDPGd.d#ddadd%dvd-d/Cd$d/dWd/?d1<Nd/dBd/d-d-d/d/F.Z#d{ddddddd.ndmd?dndyyyy'''''w'w'ww'w Xc^c^%H Ewyyyywwwwwwwwwwwwwwwyy^^^l4wl4w4y4yywyFFFF*F*F*FAA8F3F3FFFF*F*F*Fzzwuuuw.wwuu&w&w&wwFF wwwFFGwyFyFFwFFFwwwFFGwy=Fy=FGwGw=F=FwFFJFFFV+V+FFV+V+VY]YFFF"F"F"F"FGFGFGF F F F F wwWww?w?w?wYSSwSwSSSFFFFYwyyyyMMwwdwSSyy4yFwwFFww```````FwFw     FFwwFF%w%!%!%w%w%!%!Y )#su` z    s 4 s 3  E p 2 O 3wq= {>fq$S9( 3qfyqyqy3/qqq222</=V3X5x=2ZLr u//SH||NYHG p+"M"M>G/Mmu>GVGVGTR>GnzhuuEuOGGOGOGmu\#=nnuV&7yGSG%nzu=nV&7yKySG%t9>GGGOGT_>G=nIzIIVz[quuIuEqOGOGFK\#^YGu@zV&7~77#7OG[[[[BBy{}}}sfq)q)q)q)q)qqqqqq/3sq\9\9???uMuMu9u9LsqLsqLsqLsqJJJJT+o+o+o+o+o#7#7#7#7y=y=DVDVDVDVDV{=;{=;={\3X{\3X{\3X#V={/qy{y{y{y{y{y{y{y{y{y{y{y{qqqqqqqq\Z9D\9LsqLsqLsqLsqLsqLsqLsqNgvNgvNgvNgvNgv====FqFqFqFqFqFqFqFqyy'iSSSSSS0l7hx qqqqqqoE.k_FqFqSc<qqFqFqFqFqFqFqFqFqyy'i7hxk_FqFqFqFqFqFqFqyyy<pr\\D~{aNsVddddd%%%%9933W q q(()((()( 33?nn=V`Jd=n=n8N(ffadp5Wnz5?5f5\5l5Y5S999og0u5W55^5b5?5f5\5l5Y5S999og"MVGOGuVGVs`u .;F_( ..D]1u!===P=&C&Cs#&<<oI H#;jDN hR6nLsbBSV,y('y\XNND?yJ\}WJT9hgd(V FhZ $<|3uuWZ[O=;6Q^^b?fbfl\bya W{=w= =us)9~=}== ]=;;;9fqq y) ysedud    du,dudududvdvdd*ZZd-Opdduudwddxvxddddudud  dududuku7^H^^^@^^^uzz^uwududdud7u7y#hZZ,dVDX===j,,ff+uPuuu+uPuuu+u+u+uyyy``**yyby*YY a aXXJr;xxdxxd++* 8 8 P 8 x PFq 8#+7',,,,,,,,,,xxxxxxx||''''''''''''''''''''''q''''''''''llgg'''''''''''''''''pprppppppppp7p7Tpp''''3'''ppppp'''',h,d,,,,+,}}_}} ,,,B,d,,,,,,,,,,},,,dZd2E\,,,,,,,,,,,,,,,,,,,,,,,S,,,,,],,,,,m,,E,,,,A,,,U,,Q,0,,,U,,L,0,C,,X,,B,,X,,,x, ,,,,,,,,,,,,,,1,,,,,,,,,,,X,X,j,, T},y,},),,,,,d %6  dT VIVVx+5X3ppppR >pTVSTWW/V0/0002p@TTTTpnnTVaaTT,f,z,z,z,z,xNNx>NnX~#9Uwlf,,,,,,,,,,                    uuuuuuuuuuuuuu++<uususs[YOO Bu xd xu xd xd xu xd xd xu xd xu xu,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,duwOwO::: u+u+u+u+u+u+u+u+u+u+u++u+u+u+u+k  77^^  7^uuHH''''$"u 9 u H#?{\3X@sy= DVh<GpPbfr ,qssu@xC@~yyv{\{\ssg)?>8{\(oo:o\:o\csssss$d{=syNsNs6??,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,r+d pv9;<@>sp7+o {{{{seq#Sjxt  s&qu 9wF\ Dq/ / ///}/o } <^VN1X?,XXuXXeeeeNNN>XCXQ~XwQ"XTXXXX,X6TC"Xe.>XTXTX:j:j:j:j:j:jKH KH ************jj))k))k":jC:jp*XXXiXXXXXXXXXXX9p9lpl"9lplC:j9p:j1J:j:j*********}3}}3}jj 3# 3#  f^f^uBuuBu/KH 5kk kpSI:j1J8"CC:j..TT4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,c3s$f"=3LrDrl{fqo/q5 "qqq+o7=HVhL=Xy}s)3s\\?uLsLsyD{={\{fqqq/q999qqJ+o#7=V;=3Xds N:jH k :j:j:j********_9xxxxxxxxvxxvxxvxxxvxvxxxx,p:jj9Jqq9O99:::qd=dd=;;;;;;q;;;q=xxx==D=DD;;;====p==q======...qq,,,,,,,,.j< 0 $%*K-r294K7D9:;< R&Y\99999 &&&&&K&D: $$$$$9$&$*$2$4$7a$9}$:$>?@<@<@ABPChDDFFGHIIJKPKLLM$MN0NO@OlOP$PQ|QQQRRSS0S`STUUUUVV8VPVhVVW|WWWXX<XlY4ZlZZZ[[[\\]]4]`]]____``$`<`T`x`bLbdb|bbbc chdde e,e\etffDfpffffgg,gDghggggghh,h<hii4iXi|iiiijj,jPjtjjjjjkk@kl lllm m0mTmxmmmn$nHnlnnnnoop$p<p`pxpppqdqrr<rTrlrrrsxtt@t`ttttu|vvvvww(wPwhwwwwwx$xHx`xxxxyLyzz4zdzzzz{{,{D{\{t{{{||$|<|T|l|||}}~~t8X|T`P0\t(@XD L@  8Ph0Pt4D\t<Tl $<Tl,D\t4Ld| $<Tl0Hx 8PhlL084@€@PødŜ\@|ʸP̠<όp4DTp<ը``ڤ(|(ܰ0l<xx`t,t, 0Dh0\l4p(0|l@4D4 h   P ` x    8  (    h 8@TtL`td(\h0pDX$@Th|HLx l$HlPt@Th   H l    !$!8!L!`!t!!""("H"""#,#`###$$$($<$P$t$$$%`%%&$&L&L&&&&' ' '4'P'l''((L(|(((())P))))))**0*H*`*p**+$+4+D+T,,,$,,,---(-8---../8/0 000H0`0x00123345l56778889`9p9:;,;< <=l>x? ????@@@ABHBdB|CDCDEXFFGDGTHH`HII`JxKPKLpM$N NNOPXPQQR`RSSSSTTTTTTUVLVVVW W$WXPXhYY$Y4YDYTYZ|Z[[[4[[\\,\d\]]^_X_`,````aaa$a4ablb|bc0ccdxdeefpg gghhi@iPj@kktklDlm,mmmmmn@nPo8oHoppxpq`qxqrs0sstxuu4uuuvvvwHwwxx xxyPy`yzz{{`{{|T}<~ ~@`x4@Xp4Lt,|`L@X8$4d(,tH((x$4 $<Ld|<L<D8h(@Xp 8h,D\t l(tD\|,P, T4HPX04(pÀl,l|`$Ȩȸhx(8Tʔʤx ͨ<Ph ҼӰ,<<֬l|(٨ٸڠ 0۴܌T0$ `HpDDpD$hL\ 8pLlt|`L@ 8Ph,\t4L(,D\tH4L4$,p$T(\t @T(@Xp0H`x4Ld  (         ( 8  8     P   <   \TX PH@dlP|x,@ L !","#$d%0%&'D(()H)*+d,(,-`.,./0t1<12344845D5\56067,7t78T89h9::;<;>\>?@?@D@AlB,BCD EFFFGTGH<HI$IIJ4JK<KLxLM@MN NtO4OPPTPQ(QxQRpRSST,TTUUVPWWlWXLXY8YZ4ZZ[L[\T\]]]^d^_ _x` `t`aTab8bbclddPde8efPfg0ghhhi`iij@jjjjkXkpkkll(l@lXlplllllmmm0mHm`mxmmmmn n,nhnno$oXooopp$p<pTplpppppq8qPqhqqqrr,rDr\rtrrrrrsss4sLsdsstt ttu u$u<uTuuuvvv4vLvdv|vvvvvw w$w<wwwwwxtxyy yyyzPzhzzzzzz{{({@{X{p{{{{|H|||||}P}h}}~0~H~`~~~0H`x 8Ph(@Xp0H`0Hh(x `x8Ph4Ld| $\\tPh(@Xp 04,D\t\t\t4Ld|<L`@X@$<T|Ld0H`H@h0H$  4Ld|\`0H`x0H\t0H,0`(@Xp,h$T$XHPp@@t0 x(X HX(<`pL@`pØèHĔ`Ő0`|Ƭ8hǘȴlɔʐˀX̼$͘@dPрlҨDӄԘ X\ִ,׈לװ0@؀ؼ$لژ(l۰8܄ܼTݬ @TߴHH@x Hx <` $<Tl,D\t4Ld|4Ld| $<Tl,Ld| $<Tl,D\| $<Tl,D\|,D\t4Ld| $<Tl,D\t4Ld|4Ld| $<Tl,D\t4Ld,D\t<Tl,D\t4Ld| $<Tl,H`|(@Xt,D\t(D`|(@Xt4Ld|(D`x <Tp4Ld$<Ldt   , < T l        , D \ t        4 L d |       $ < T l        , D \ t     4Ld|dt 0L\t0H`x 8H`x 8HXp(@P$P|L`H (@d\l< Pl\  ( p   !!!P!!!!","D"`""""#0#X##$$D$$%%%%%%%%%%%%%%h%&'''())D)`)))*p*******++$+8+L+`+t++++++,,t-$--.\./d0H112(2@34<46 67T78T89999::T::; >?T?d?x?@ABBlBCDDE|EF<HIJ@JKPLhMdNO,OPtPQ`QQR`RpRStSSSTUV VWPX0X\YYZ[([\,\t\]l^^t^^_<___``aPab(bc(cxccccdd8dXdxddddee e8eXepeeeeeff f@fPf`fpffffffgg(gPghgxgggggghtijjjklPmmnop$pTppqqLqrrs4sstt`ttuuv,vw8wxyz4z|zz{${\{{|P|} }x~ ~8l$@\xP8 ` |XXhP$`(h L d\Dh \0Hph `h(l0lH\,D\`PpDx 8P4XltH0,DdD<| p@<Pd0D|ĔXŐ4P0tȸ$ɐ4ʰ0˜h̀ d͸Pΐ\ќP8Րրָ@d׈׸Xؔ4و$Pڈ,ۘ,P܄ܼDtݠ0ސޠD߄ 0d,H4p08X||`4|L\4T ,T|@<`<|8|@\4T4lh<LX\ | d`4PlHD Dh<\|<h<d@h  8 d   !!4!\!!!""4"h""##8#l##$$L$$$%%P%t%%%& &H&t&&'','`'''((D(x(() )P)))*(*h**+ +T++,(,`,,,--@-\-x----.. .D.l....// /</X/t////00080T0p0184L455585L5`5|555556606\667 789D9;;;;<<8>4>`>|>>>? ?8?T???@@@AdB\CCD0DDE<EFFPFxFFGTGGH(HTHHHI8ITIpIIIJJ@JhJJKK<KdKLLPLLMPMNPNNO OHOtOOOPPQ\RZ]^^x^_,_`aXab`dgghthi@jlLllmno(opqLrrv\vwy}}~ ~~h@p Tt4Th0T |0pLH,$Lx0x `HP<(L8x88tt,4,PD|øT|$Ld|ƔƬ,|ɤ˄ ̰͸Ϡd$ԨtThD ܔTXߤ$ LPDl8|4pD@|`pd @  <   h  $  ,  D\( `"#t$<%&()t*, --.d./4////0,0x001223H345606677@7l77788@8l8949:\;<$=<>?DACDEdFhGH\I\JtK@LlMNO4OPQ8QRS(TTUUUVV@VpVW$WLWWXXLX|XXY<YhYYZ(Z|Z[[h[\\](]]^ ^_,_`ab@clcd4dhdddeeetefgLhHhijkkHkkllhlm8m8mLm`m|mmmmnnn8n\nxnnnooo8o\oxooopp,pPp|pppq,q@q\qxqqqrr,rHrlrrrs s8slsssst tLtxtttu(u\uuuv,v@v\vxvvvww,wHwlwwwx x8xlxxxxy yLyxyyyz(z\zzz{,{H{l{{{| |8|l|||}}H}|}}~~<~h~~~0l<p,@\x,Hl 8l Lx(\,Hl 8lH|<h0l<p,Hl 8lH|<h0l<p,P|<p @|(l<p,`X,x P0l0d$,`d 4@LP4$t@|,t ,<T tT$@`,T|,dœ@tà PĀİŌ 4`ƨXǴɠ \ʜD,d̰ ̀0ΰ0DpЬѐ8Ә 0ՠ0֐ \$X 0܄LXhDX<|H,0P`(T(@Xp0H`x 8Ph(@Xp0H`x 8Ph 4LdDd4@d<0<l \ @l X(|     $    x4td 8Ph(@Xp0H`x 8Ph(@Xp0H`x 8Ph(@Xp $4 L\l4|0D\p 8Ph Tl  , D \ t     !!!""""""##h####$$,$<%%&@&X&p&&&'(((())),)*****++++,,,,,,--(-@-X-p---.|./p//0(0l0|112242L2d2|2334P4`45555566 686P6h6667T7T7T7T7T7T78848P8l88889 9H9p999::<:d:::; ;4;\;;;<<(><>d>>>??0?\????@$@P@x@@@AADAlAAABB<BdBBBCC0CXCCCCD$DLDtDDDEEDElEEFpFGGXGH HlHHI<IJtJK K\KLL`MMNNO,OP\PQQdQQRS$STLTU4VV\VW WlWXXTXdXtXXXXXXXXYYY$Y4YDYTYdYtYYYYYYYYZZZ$Z4ZDZTZdZtZZZZZZZZ[[[$[4[D[T[d[t[[[[[[[[\\\$\4\X]$]^_8_``aTaabb4bXbbbccccdpe eftffffgg4gTgtggggghhh4hLhdh|hhhhiijjTjpjjjjjkk4kPklkkkkkll0lLlhllllmm\mtmmmmmnnxnnnnnoDo\otoooopp(p@pXpppppqqPqrssxstPtttu,uuvvhvwXxxyy`yzPz{{|P|}}l}~H~Ptd4(\|\ |$|LH,|h`ldtT@DX<`T+h @h>2   : `   (Z4;b ;; 0    " F m " : %: h: ; ;Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. DejaVu changes are in public domain Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. DejaVu changes are in public domain DejaVu SansDejaVu SansBookBookDejaVu SansDejaVu SansDejaVu SansDejaVu SansVersion 2.25Version 2.25DejaVuSansDejaVuSansDejaVu fonts teamDejaVu fonts teamhttp://dejavu.sourceforge.nethttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) Bitstream Vera Fonts Copyright ------------------------------ Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. Arev Fonts Copyright ------------------------------ Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the modifications to the Bitstream Vera Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Tavmjong Bah" or the word "Arev". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Tavmjong Bah Arev" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the name of Tavmjong Bah shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from Tavmjong Bah. For further information, contact: tavmjong @ free . fr.Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) Bitstream Vera Fonts Copyright ------------------------------ Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. Arev Fonts Copyright ------------------------------ Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the modifications to the Bitstream Vera Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Tavmjong Bah" or the word "Arev". This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Tavmjong Bah Arev" names. The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the name of Tavmjong Bah shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from Tavmjong Bah. For further information, contact: tavmjong @ free . fr.http://dejavu.sourceforge.net/wiki/index.php/Licensehttp://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansDejaVu SansBookBook~Z  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                            ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ sfthyphenAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflex Tcommaaccent tcommaaccentTcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsuni0180uni0181uni0182uni0183uni0184uni0185uni0186uni0187uni0188uni0189uni018Auni018Buni018Cuni018Duni018Euni018Funi0190uni0191uni0193uni0194uni0195uni0196uni0197uni0198uni0199uni019Auni019Buni019Cuni019Duni019Euni019FOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni01B1uni01B2uni01B3uni01B4uni01B5uni01B6uni01B7uni01B8uni01B9uni01BAuni01BBuni01BCuni01BDuni01BEuni01BFuni01C0uni01C1uni01C2uni01C3uni01C4uni01C5uni01C6uni01C7uni01C8uni01C9uni01CAuni01CBuni01CCuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCuni01DDuni01DEuni01DFuni01E0uni01E1uni01E2uni01E3uni01E4uni01E5Gcarongcaronuni01E8uni01E9uni01EAuni01EBuni01ECuni01EDuni01EEuni01EFuni01F0uni01F1uni01F2uni01F3uni01F4uni01F5uni01F6uni01F7uni01F8uni01F9 Aringacute aringacuteAEacuteaeacute Oslashacute oslashacuteuni0200uni0201uni0202uni0203uni0204uni0205uni0206uni0207uni0208uni0209uni020Auni020Buni020Cuni020Duni020Euni020Funi0210uni0211uni0212uni0213uni0214uni0215uni0216uni0217 Scommaaccent scommaaccentuni021Auni021Buni021Cuni021Duni021Euni021Funi0220uni0221uni0222uni0223uni0224uni0225uni0226uni0227uni0228uni0229uni022Auni022Buni022Cuni022Duni022Euni022Funi0230uni0231uni0232uni0233uni0234uni0235uni0236dotlessjuni0238uni0239uni023Auni023Buni023Cuni023Duni023Euni023Funi0240uni0241uni0242uni0243uni0244uni0245uni0246uni0247uni0248uni0249uni024Auni024Buni024Cuni024Duni024Euni024Funi0250uni0251uni0252uni0253uni0254uni0255uni0256uni0257uni0258uni0259uni025Auni025Buni025Cuni025Duni025Euni025Funi0260uni0261uni0262uni0263uni0264uni0265uni0266uni0267uni0268uni0269uni026Auni026Buni026Cuni026Duni026Euni026Funi0270uni0271uni0272uni0273uni0274uni0275uni0276uni0277uni0278uni0279uni027Auni027Buni027Cuni027Duni027Euni027Funi0280uni0281uni0282uni0283uni0284uni0285uni0286uni0287uni0288uni0289uni028Auni028Buni028Cuni028Duni028Euni028Funi0290uni0291uni0292uni0293uni0294uni0295uni0296uni0297uni0298uni0299uni029Auni029Buni029Cuni029Duni029Euni029Funi02A0uni02A1uni02A2uni02A3uni02A4uni02A5uni02A6uni02A7uni02A8uni02A9uni02AAuni02ABuni02ACuni02ADuni02AEuni02AFuni02B0uni02B1uni02B2uni02B3uni02B4uni02B5uni02B6uni02B7uni02B8uni02B9uni02BAuni02BBuni02BCuni02BDuni02BEuni02BFuni02C0uni02C1uni02C2uni02C3uni02C4uni02C5uni02C8uni02C9uni02CAuni02CBuni02CCuni02CDuni02CEuni02CFuni02D0uni02D1uni02D2uni02D3uni02D4uni02D5uni02D6uni02D7uni02DEuni02DFuni02E0uni02E1uni02E2uni02E3uni02E4uni02E5uni02E6uni02E7uni02E8uni02E9uni02ECuni02EDuni02EEuni02F3uni02F7 gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307uni0308 hookabovecombuni030Auni030Buni030Cuni030Duni030Euni030Funi0310uni0311uni0312uni0313uni0314uni0315uni0316uni0317uni0318uni0319uni031Auni031Buni031Cuni031Duni031Euni031Funi0320uni0321uni0322 dotbelowcombuni0324uni0325uni0326uni0327uni0328uni0329uni032Auni032Buni032Cuni032Duni032Euni032Funi0330uni0331uni0332uni0333uni0334uni0335uni0336uni0337uni0338uni0339uni033Auni033Buni033Cuni033Duni033Euni033Funi0340uni0341uni0342uni0343uni0344uni0345uni0346uni0347uni0348uni0349uni034Auni034Buni034Cuni034Duni034Euni034Funi0351uni0352uni0353uni0357uni0358uni035Cuni035Duni035Euni035Funi0360uni0361uni0362uni0374uni0375uni037Auni037Buni037Cuni037Duni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsi IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1uni03D3uni03D4phi1omega1uni03D7uni03D8uni03D9uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03E2uni03E3uni03E4uni03E5uni03E6uni03E7uni03E8uni03E9uni03EAuni03EBuni03ECuni03EDuni03EEuni03EFuni03F0uni03F1uni03F2uni03F3uni03F4uni03F5uni03F6uni03F7uni03F8uni03F9uni03FAuni03FBuni03FCuni03FDuni03FEuni03FFuni0400uni0401uni0402uni0403uni0404uni0405uni0406uni0407uni0408uni0409uni040Auni040Buni040Cuni040Duni040Euni040Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi0430uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0450uni0451uni0452uni0453uni0454uni0455uni0456uni0457uni0458uni0459uni045Auni045Buni045Cuni045Duni045Euni045Funi0460uni0461uni0462uni0463uni0464uni0465uni0466uni0467uni0468uni0469uni046Auni046Buni046Cuni046Duni046Euni046Funi0470uni0471uni0472uni0473uni0474uni0475uni0476uni0477uni0478uni0479uni047Auni047Buni047Cuni047Duni047Euni047Funi0480uni0481uni0482uni0483uni0484uni0485uni0486uni0488uni0489uni048Auni048Buni048Cuni048Duni048Euni048Funi0490uni0491uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9uni04FAuni04FBuni04FCuni04FDuni04FEuni04FFuni0500uni0501uni0502uni0503uni0504uni0505uni0506uni0507uni0508uni0509uni050Auni050Buni050Cuni050Duni050Euni050Funi0510uni0511uni0512uni0513uni051Auni051Buni051Cuni051Duni0520uni0521uni0522uni0523uni0531uni0532uni0533uni0534uni0535uni0536uni0537uni0538uni0539uni053Auni053Buni053Cuni053Duni053Euni053Funi0540uni0541uni0542uni0543uni0544uni0545uni0546uni0547uni0548uni0549uni054Auni054Buni054Cuni054Duni054Euni054Funi0550uni0551uni0552uni0553uni0554uni0555uni0556uni0559uni055Auni055Buni055Cuni055Duni055Euni055Funi0561uni0562uni0563uni0564uni0565uni0566uni0567uni0568uni0569uni056Auni056Buni056Cuni056Duni056Euni056Funi0570uni0571uni0572uni0573uni0574uni0575uni0576uni0577uni0578uni0579uni057Auni057Buni057Cuni057Duni057Euni057Funi0580uni0581uni0582uni0583uni0584uni0585uni0586uni0587uni0589uni058Auni05B0uni05B1uni05B2uni05B3uni05B4uni05B5uni05B6uni05B7uni05B8uni05B9uni05BAuni05BBuni05BCuni05BDuni05BEuni05BFuni05C0uni05C1uni05C2uni05C3uni05C6uni05C7uni05D0uni05D1uni05D2uni05D3uni05D4uni05D5uni05D6uni05D7uni05D8uni05D9uni05DAuni05DBuni05DCuni05DDuni05DEuni05DFuni05E0uni05E1uni05E2uni05E3uni05E4uni05E5uni05E6uni05E7uni05E8uni05E9uni05EAuni05F0uni05F1uni05F2uni05F3uni05F4uni060Cuni0615uni061Buni061Funi0621uni0622uni0623uni0624uni0625uni0626uni0627uni0628uni0629uni062Auni062Buni062Cuni062Duni062Euni062Funi0630uni0631uni0632uni0633uni0634uni0635uni0636uni0637uni0638uni0639uni063Auni0640uni0641uni0642uni0643uni0644uni0645uni0646uni0647uni0648uni0649uni064Auni064Buni064Cuni064Duni064Euni064Funi0650uni0651uni0652uni0653uni0654uni0655uni065Auni0660uni0661uni0662uni0663uni0664uni0665uni0666uni0667uni0668uni0669uni066Auni066Buni066Cuni066Duni066Euni066Funi0674uni0679uni067Auni067Buni067Cuni067Duni067Euni067Funi0680uni0681uni0682uni0683uni0684uni0685uni0686uni0687uni0691uni0692uni0695uni0698uni06A1uni06A4uni06A6uni06A9uni06AFuni06B5uni06BAuni06BFuni06C6uni06CCuni06CEuni06D5uni06F0uni06F1uni06F2uni06F3uni06F4uni06F5uni06F6uni06F7uni06F8uni06F9uni07C0uni07C1uni07C2uni07C3uni07C4uni07C5uni07C6uni07C7uni07C8uni07C9uni07CAuni07CBuni07CCuni07CDuni07CEuni07CFuni07D0uni07D1uni07D2uni07D3uni07D4uni07D5uni07D6uni07D7uni07D8uni07D9uni07DAuni07DBuni07DCuni07DDuni07DEuni07DFuni07E0uni07E1uni07E2uni07E3uni07E4uni07E5uni07E6uni07E7uni07EBuni07ECuni07EDuni07EEuni07EFuni07F0uni07F1uni07F2uni07F3uni07F4uni07F5uni07F8uni07F9uni07FAuni0E3Funi0E81uni0E82uni0E84uni0E87uni0E88uni0E8Auni0E8Duni0E94uni0E95uni0E96uni0E97uni0E99uni0E9Auni0E9Buni0E9Cuni0E9Duni0E9Euni0E9Funi0EA1uni0EA2uni0EA3uni0EA5uni0EA7uni0EAAuni0EABuni0EADuni0EAEuni0EAFuni0EB0uni0EB1uni0EB2uni0EB3uni0EB4uni0EB5uni0EB6uni0EB7uni0EB8uni0EB9uni0EBBuni0EBCuni0EBDuni0EC0uni0EC1uni0EC2uni0EC3uni0EC4uni0EC6uni0EC8uni0EC9uni0ECAuni0ECBuni0ECCuni0ECDuni0ED0uni0ED1uni0ED2uni0ED3uni0ED4uni0ED5uni0ED6uni0ED7uni0ED8uni0ED9uni0EDCuni0EDDuni10A0uni10A1uni10A2uni10A3uni10A4uni10A5uni10A6uni10A7uni10A8uni10A9uni10AAuni10ABuni10ACuni10ADuni10AEuni10AFuni10B0uni10B1uni10B2uni10B3uni10B4uni10B5uni10B6uni10B7uni10B8uni10B9uni10BAuni10BBuni10BCuni10BDuni10BEuni10BFuni10C0uni10C1uni10C2uni10C3uni10C4uni10C5uni10D0uni10D1uni10D2uni10D3uni10D4uni10D5uni10D6uni10D7uni10D8uni10D9uni10DAuni10DBuni10DCuni10DDuni10DEuni10DFuni10E0uni10E1uni10E2uni10E3uni10E4uni10E5uni10E6uni10E7uni10E8uni10E9uni10EAuni10EBuni10ECuni10EDuni10EEuni10EFuni10F0uni10F1uni10F2uni10F3uni10F4uni10F5uni10F6uni10F7uni10F8uni10F9uni10FAuni10FBuni10FCuni1401uni1402uni1403uni1404uni1405uni1406uni1407uni1409uni140Auni140Buni140Cuni140Duni140Euni140Funi1410uni1411uni1412uni1413uni1414uni1415uni1416uni1417uni1418uni1419uni141Auni141Buni141Duni141Euni141Funi1420uni1421uni1422uni1423uni1424uni1425uni1426uni1427uni1428uni1429uni142Auni142Buni142Cuni142Duni142Euni142Funi1430uni1431uni1432uni1433uni1434uni1435uni1437uni1438uni1439uni143Auni143Buni143Cuni143Duni143Euni143Funi1440uni1441uni1442uni1443uni1444uni1445uni1446uni1447uni1448uni1449uni144Auni144Cuni144Duni144Euni144Funi1450uni1451uni1452uni1454uni1455uni1456uni1457uni1458uni1459uni145Auni145Buni145Cuni145Duni145Euni145Funi1460uni1461uni1462uni1463uni1464uni1465uni1466uni1467uni1468uni1469uni146Auni146Buni146Cuni146Duni146Euni146Funi1470uni1471uni1472uni1473uni1474uni1475uni1476uni1477uni1478uni1479uni147Auni147Buni147Cuni147Duni147Euni147Funi1480uni1481uni1482uni1483uni1484uni1485uni1486uni1487uni1488uni1489uni148Auni148Buni148Cuni148Duni148Euni148Funi1490uni1491uni1492uni1493uni1494uni1495uni1496uni1497uni1498uni1499uni149Auni149Buni149Cuni149Duni149Euni149Funi14A0uni14A1uni14A2uni14A3uni14A4uni14A5uni14A6uni14A7uni14A8uni14A9uni14AAuni14ABuni14ACuni14ADuni14AEuni14AFuni14B0uni14B1uni14B2uni14B3uni14B4uni14B5uni14B6uni14B7uni14B8uni14B9uni14BAuni14BBuni14BCuni14BDuni14C0uni14C1uni14C2uni14C3uni14C4uni14C5uni14C6uni14C7uni14C8uni14C9uni14CAuni14CBuni14CCuni14CDuni14CEuni14CFuni14D0uni14D1uni14D2uni14D3uni14D4uni14D5uni14D6uni14D7uni14D8uni14D9uni14DAuni14DBuni14DCuni14DDuni14DEuni14DFuni14E0uni14E1uni14E2uni14E3uni14E4uni14E5uni14E6uni14E7uni14E8uni14E9uni14EAuni14ECuni14EDuni14EEuni14EFuni14F0uni14F1uni14F2uni14F3uni14F4uni14F5uni14F6uni14F7uni14F8uni14F9uni14FAuni14FBuni14FCuni14FDuni14FEuni14FFuni1500uni1501uni1502uni1503uni1504uni1505uni1506uni1507uni1510uni1511uni1512uni1513uni1514uni1515uni1516uni1517uni1518uni1519uni151Auni151Buni151Cuni151Duni151Euni151Funi1520uni1521uni1522uni1523uni1524uni1525uni1526uni1527uni1528uni1529uni152Auni152Buni152Cuni152Duni152Euni152Funi1530uni1531uni1532uni1533uni1534uni1535uni1536uni1537uni1538uni1539uni153Auni153Buni153Cuni153Duni153Euni1540uni1541uni1542uni1543uni1544uni1545uni1546uni1547uni1548uni1549uni154Auni154Buni154Cuni154Duni154Euni154Funi1550uni1552uni1553uni1554uni1555uni1556uni1557uni1558uni1559uni155Auni155Buni155Cuni155Duni155Euni155Funi1560uni1561uni1562uni1563uni1564uni1565uni1566uni1567uni1568uni1569uni156Auni1574uni1575uni1576uni1577uni1578uni1579uni157Auni157Buni157Cuni157Duni157Euni157Funi1580uni1581uni1582uni1583uni1584uni1585uni158Auni158Buni158Cuni158Duni158Euni158Funi1590uni1591uni1592uni1593uni1594uni1595uni1596uni15A0uni15A1uni15A2uni15A3uni15A4uni15A5uni15A6uni15A7uni15A8uni15A9uni15AAuni15ABuni15ACuni15ADuni15AEuni15AFuni15DEuni15E1uni1646uni1647uni166Euni166Funi1670uni1671uni1672uni1673uni1674uni1675uni1676uni1680uni1681uni1682uni1683uni1684uni1685uni1686uni1687uni1688uni1689uni168Auni168Buni168Cuni168Duni168Euni168Funi1690uni1691uni1692uni1693uni1694uni1695uni1696uni1697uni1698uni1699uni169Auni169Buni169Cuni1D00uni1D01uni1D02uni1D03uni1D04uni1D05uni1D06uni1D07uni1D08uni1D09uni1D0Auni1D0Buni1D0Cuni1D0Duni1D0Euni1D0Funi1D10uni1D11uni1D12uni1D13uni1D14uni1D16uni1D17uni1D18uni1D19uni1D1Auni1D1Buni1D1Cuni1D1Duni1D1Euni1D1Funi1D20uni1D21uni1D22uni1D23uni1D26uni1D27uni1D28uni1D29uni1D2Auni1D2Buni1D2Cuni1D2Duni1D2Euni1D30uni1D31uni1D32uni1D33uni1D34uni1D35uni1D36uni1D37uni1D38uni1D39uni1D3Auni1D3Buni1D3Cuni1D3Duni1D3Euni1D3Funi1D40uni1D41uni1D42uni1D43uni1D44uni1D45uni1D46uni1D47uni1D48uni1D49uni1D4Auni1D4Buni1D4Cuni1D4Duni1D4Euni1D4Funi1D50uni1D51uni1D52uni1D53uni1D54uni1D55uni1D56uni1D57uni1D58uni1D59uni1D5Auni1D5Buni1D5Duni1D5Euni1D5Funi1D60uni1D61uni1D62uni1D63uni1D64uni1D65uni1D66uni1D67uni1D68uni1D69uni1D6Auni1D77uni1D78uni1D7Buni1D85uni1D9Buni1D9Cuni1D9Duni1D9Euni1D9Funi1DA0uni1DA1uni1DA2uni1DA3uni1DA4uni1DA5uni1DA6uni1DA7uni1DA8uni1DA9uni1DAAuni1DABuni1DACuni1DADuni1DAEuni1DAFuni1DB0uni1DB1uni1DB2uni1DB3uni1DB4uni1DB5uni1DB6uni1DB7uni1DB8uni1DB9uni1DBAuni1DBBuni1DBCuni1DBDuni1DBEuni1DBFuni1DC4uni1DC5uni1DC6uni1DC7uni1DC8uni1DC9uni1E00uni1E01uni1E02uni1E03uni1E04uni1E05uni1E06uni1E07uni1E08uni1E09uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E12uni1E13uni1E14uni1E15uni1E16uni1E17uni1E18uni1E19uni1E1Auni1E1Buni1E1Cuni1E1Duni1E1Euni1E1Funi1E20uni1E21uni1E22uni1E23uni1E24uni1E25uni1E26uni1E27uni1E28uni1E29uni1E2Auni1E2Buni1E2Cuni1E2Duni1E2Euni1E2Funi1E30uni1E31uni1E32uni1E33uni1E34uni1E35uni1E36uni1E37uni1E38uni1E39uni1E3Auni1E3Buni1E3Cuni1E3Duni1E3Euni1E3Funi1E40uni1E41uni1E42uni1E43uni1E44uni1E45uni1E46uni1E47uni1E48uni1E49uni1E4Auni1E4Buni1E4Cuni1E4Duni1E4Euni1E4Funi1E50uni1E51uni1E52uni1E53uni1E54uni1E55uni1E56uni1E57uni1E58uni1E59uni1E5Auni1E5Buni1E5Cuni1E5Duni1E5Euni1E5Funi1E60uni1E61uni1E62uni1E63uni1E64uni1E65uni1E66uni1E67uni1E68uni1E69uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6Funi1E70uni1E71uni1E72uni1E73uni1E74uni1E75uni1E76uni1E77uni1E78uni1E79uni1E7Auni1E7Buni1E7Cuni1E7Duni1E7Euni1E7FWgravewgraveWacutewacute Wdieresis wdieresisuni1E86uni1E87uni1E88uni1E89uni1E8Auni1E8Buni1E8Cuni1E8Duni1E8Euni1E8Funi1E90uni1E91uni1E92uni1E93uni1E94uni1E95uni1E96uni1E97uni1E98uni1E99uni1E9Auni1E9Buni1E9Funi1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni1F00uni1F01uni1F02uni1F03uni1F04uni1F05uni1F06uni1F07uni1F08uni1F09uni1F0Auni1F0Buni1F0Cuni1F0Duni1F0Euni1F0Funi1F10uni1F11uni1F12uni1F13uni1F14uni1F15uni1F18uni1F19uni1F1Auni1F1Buni1F1Cuni1F1Duni1F20uni1F21uni1F22uni1F23uni1F24uni1F25uni1F26uni1F27uni1F28uni1F29uni1F2Auni1F2Buni1F2Cuni1F2Duni1F2Euni1F2Funi1F30uni1F31uni1F32uni1F33uni1F34uni1F35uni1F36uni1F37uni1F38uni1F39uni1F3Auni1F3Buni1F3Cuni1F3Duni1F3Euni1F3Funi1F40uni1F41uni1F42uni1F43uni1F44uni1F45uni1F48uni1F49uni1F4Auni1F4Buni1F4Cuni1F4Duni1F50uni1F51uni1F52uni1F53uni1F54uni1F55uni1F56uni1F57uni1F59uni1F5Buni1F5Duni1F5Funi1F60uni1F61uni1F62uni1F63uni1F64uni1F65uni1F66uni1F67uni1F68uni1F69uni1F6Auni1F6Buni1F6Cuni1F6Duni1F6Euni1F6Funi1F70uni1F71uni1F72uni1F73uni1F74uni1F75uni1F76uni1F77uni1F78uni1F79uni1F7Auni1F7Buni1F7Cuni1F7Duni1F80uni1F81uni1F82uni1F83uni1F84uni1F85uni1F86uni1F87uni1F88uni1F89uni1F8Auni1F8Buni1F8Cuni1F8Duni1F8Euni1F8Funi1F90uni1F91uni1F92uni1F93uni1F94uni1F95uni1F96uni1F97uni1F98uni1F99uni1F9Auni1F9Buni1F9Cuni1F9Duni1F9Euni1F9Funi1FA0uni1FA1uni1FA2uni1FA3uni1FA4uni1FA5uni1FA6uni1FA7uni1FA8uni1FA9uni1FAAuni1FABuni1FACuni1FADuni1FAEuni1FAFuni1FB0uni1FB1uni1FB2uni1FB3uni1FB4uni1FB6uni1FB7uni1FB8uni1FB9uni1FBAuni1FBBuni1FBCuni1FBDuni1FBEuni1FBFuni1FC0uni1FC1uni1FC2uni1FC3uni1FC4uni1FC6uni1FC7uni1FC8uni1FC9uni1FCAuni1FCBuni1FCCuni1FCDuni1FCEuni1FCFuni1FD0uni1FD1uni1FD2uni1FD3uni1FD6uni1FD7uni1FD8uni1FD9uni1FDAuni1FDBuni1FDDuni1FDEuni1FDFuni1FE0uni1FE1uni1FE2uni1FE3uni1FE4uni1FE5uni1FE6uni1FE7uni1FE8uni1FE9uni1FEAuni1FEBuni1FECuni1FEDuni1FEEuni1FEFuni1FF2uni1FF3uni1FF4uni1FF6uni1FF7uni1FF8uni1FF9uni1FFAuni1FFBuni1FFCuni1FFDuni1FFEuni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni200Buni200Cuni200Duni200Euni200Funi2010uni2011 figuredashuni2015uni2016 underscoredbl quotereverseduni201Funi2023onedotenleadertwodotenleaderuni2027uni202Auni202Buni202Cuni202Duni202Euni202Funi2031minuteseconduni2034uni2035uni2036uni2037uni2038uni203B exclamdbluni203Duni203Euni203Funi2040uni2041uni2042uni2043uni2045uni2046uni2047uni2048uni2049uni204Auni204Buni204Cuni204Duni204Euni204Funi2050uni2051uni2052uni2053uni2054uni2055uni2056uni2057uni2058uni2059uni205Auni205Buni205Cuni205Duni205Euni205Funi2060uni2061uni2062uni2063uni2064uni206Auni206Buni206Cuni206Duni206Euni206Funi2070uni2071uni2074uni2075uni2076uni2077uni2078uni2079uni207Auni207Buni207Cuni207Duni207Euni207Funi2080uni2081uni2082uni2083uni2084uni2085uni2086uni2087uni2088uni2089uni208Auni208Buni208Cuni208Duni208Euni2090uni2091uni2092uni2093uni2094uni20A0 colonmonetaryuni20A2lirauni20A5uni20A6pesetauni20A8uni20A9uni20AAdongEurouni20ADuni20AEuni20AFuni20B0uni20B1uni20B2uni20B3uni20B4uni20B5uni20D0uni20D1uni20D6uni20D7uni20DBuni20DCuni20E1uni2100uni2101uni2102uni2103uni2104uni2105uni2106uni2107uni2108uni2109uni210Buni210Cuni210Duni210Euni210Funi2110Ifrakturuni2112uni2113uni2114uni2115uni2116uni2117 weierstrassuni2119uni211Auni211BRfrakturuni211D prescriptionuni211Funi2120uni2121uni2123uni2124uni2125uni2126uni2127uni2128uni2129uni212Auni212Buni212Cuni212D estimateduni212Funi2130uni2131uni2132uni2133uni2134alephuni2136uni2137uni2138uni2139uni213Auni213Buni213Cuni213Duni213Euni213Funi2140uni2141uni2142uni2143uni2144uni2145uni2146uni2147uni2148uni2149uni214Buni214Eonethird twothirdsuni2155uni2156uni2157uni2158uni2159uni215A oneeighth threeeighths fiveeighths seveneighthsuni215Funi2160uni2161uni2162uni2163uni2164uni2165uni2166uni2167uni2168uni2169uni216Auni216Buni216Cuni216Duni216Euni216Funi2170uni2171uni2172uni2173uni2174uni2175uni2176uni2177uni2178uni2179uni217Auni217Buni217Cuni217Duni217Euni217Funi2180uni2181uni2182uni2183uni2184 arrowleftarrowup arrowright arrowdown arrowboth arrowupdnuni2196uni2197uni2198uni2199uni219Auni219Buni219Cuni219Duni219Euni219Funi21A0uni21A1uni21A2uni21A3uni21A4uni21A5uni21A6uni21A7 arrowupdnbseuni21A9uni21AAuni21ABuni21ACuni21ADuni21AEuni21AFuni21B0uni21B1uni21B2uni21B3uni21B4carriagereturnuni21B6uni21B7uni21B8uni21B9uni21BAuni21BBuni21BCuni21BDuni21BEuni21BFuni21C0uni21C1uni21C2uni21C3uni21C4uni21C5uni21C6uni21C7uni21C8uni21C9uni21CAuni21CBuni21CCuni21CDuni21CEuni21CF arrowdblleft arrowdblup arrowdblright arrowdbldown arrowdblbothuni21D5uni21D6uni21D7uni21D8uni21D9uni21DAuni21DBuni21DCuni21DDuni21DEuni21DFuni21E0uni21E1uni21E2uni21E3uni21E4uni21E5uni21E6uni21E7uni21E8uni21E9uni21EAuni21EBuni21ECuni21EDuni21EEuni21EFuni21F0uni21F1uni21F2uni21F3uni21F4uni21F5uni21F6uni21F7uni21F8uni21F9uni21FAuni21FBuni21FCuni21FDuni21FEuni21FF universaluni2201 existentialuni2204emptysetgradientelement notelementuni220Asuchthatuni220Cuni220Duni220Euni2210uni2213uni2214uni2215uni2216 asteriskmathuni2218uni2219uni221Buni221C proportional orthogonalangleuni2221uni2222uni2223uni2224uni2225uni2226 logicaland logicalor intersectionunionuni222Cuni222Duni222Euni222Funi2230uni2231uni2232uni2233 thereforeuni2235uni2236uni2237uni2238uni2239uni223Auni223Bsimilaruni223Duni223Euni223Funi2240uni2241uni2242uni2243uni2244 congruentuni2246uni2247uni2249uni224Auni224Buni224Cuni224Duni224Euni224Funi2250uni2251uni2252uni2253uni2254uni2255uni2256uni2257uni2258uni2259uni225Auni225Buni225Cuni225Duni225Euni225F equivalenceuni2262uni2263uni2266uni2267uni2268uni2269uni226Auni226Buni226Cuni226Duni226Euni226Funi2270uni2271uni2272uni2273uni2274uni2275uni2276uni2277uni2278uni2279uni227Auni227Buni227Cuni227Duni227Euni227Funi2280uni2281 propersubsetpropersuperset notsubsetuni2285 reflexsubsetreflexsupersetuni2288uni2289uni228Auni228Buni228Cuni228Duni228Euni228Funi2290uni2291uni2292uni2293uni2294 circleplusuni2296circlemultiplyuni2298uni2299uni229Auni229Buni229Cuni229Duni229Euni229Funi22A0uni22A1uni22A2uni22A3uni22A4 perpendicularuni22A6uni22A7uni22A8uni22A9uni22AAuni22ABuni22ACuni22ADuni22AEuni22AFuni22B2uni22B3uni22B4uni22B5uni22B6uni22B7uni22B8uni22B9uni22BAuni22BBuni22BCuni22BDuni22BEuni22BFuni22C0uni22C1uni22C2uni22C3uni22C4dotmathuni22C6uni22C8uni22C9uni22CAuni22CBuni22CCuni22CDuni22CEuni22CFuni22D6uni22D7uni22D8uni22D9uni22DAuni22DBuni22DCuni22DDuni22DEuni22DFuni22E0uni22E1uni22E2uni22E3uni22E4uni22E5uni22E6uni22E7uni22E8uni22E9uni22EAuni22EBuni22ECuni22EDuni22EEuni22EFuni22F0uni22F1uni22F2uni22F3uni22F4uni22F5uni22F6uni22F7uni22F8uni22F9uni22FAuni22FBuni22FCuni22FDuni22FEuni22FFuni2300uni2301houseuni2303uni2304uni2305uni2306uni2307uni2308uni2309uni230Auni230Buni230Cuni230Duni230Euni230F revlogicalnotuni2311uni2318uni2319uni231Cuni231Duni231Euni231F integraltp integralbtuni2324uni2325uni2326uni2327uni2328uni232Buni232Cuni2373uni2374uni2375uni237Auni237Duni2387uni2394uni239Buni239Cuni239Duni239Euni239Funi23A0uni23A1uni23A2uni23A3uni23A4uni23A5uni23A6uni23A7uni23A8uni23A9uni23AAuni23ABuni23ACuni23ADuni23AEuni23CEuni23CFuni23E3uni23E5uni2422uni2423uni2460uni2461uni2462uni2463uni2464uni2465uni2466uni2467uni2468uni2469SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254Buni254Cuni254Duni254Euni254FSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uni256Duni256Euni256Funi2570uni2571uni2572uni2573uni2574uni2575uni2576uni2577uni2578uni2579uni257Auni257Buni257Cuni257Duni257Euni257Fupblockuni2581uni2582uni2583dnblockuni2585uni2586uni2587blockuni2589uni258Auni258Blfblockuni258Duni258Euni258Frtblockltshadeshadedkshadeuni2594uni2595uni2596uni2597uni2598uni2599uni259Auni259Buni259Cuni259Duni259Euni259F filledboxH22073uni25A2uni25A3uni25A4uni25A5uni25A6uni25A7uni25A8uni25A9H18543H18551 filledrectuni25ADuni25AEuni25AFuni25B0uni25B1triagupuni25B3uni25B4uni25B5uni25B6uni25B7uni25B8uni25B9triagrtuni25BBtriagdnuni25BDuni25BEuni25BFuni25C0uni25C1uni25C2uni25C3triaglfuni25C5uni25C6uni25C7uni25C8uni25C9circleuni25CCuni25CDuni25CEH18533uni25D0uni25D1uni25D2uni25D3uni25D4uni25D5uni25D6uni25D7 invbullet invcircleuni25DAuni25DBuni25DCuni25DDuni25DEuni25DFuni25E0uni25E1uni25E2uni25E3uni25E4uni25E5 openbulletuni25E7uni25E8uni25E9uni25EAuni25EBuni25ECuni25EDuni25EEuni25EFuni25F0uni25F1uni25F2uni25F3uni25F4uni25F5uni25F6uni25F7uni25F8uni25F9uni25FAuni25FBuni25FCuni25FDuni25FEuni25FFuni2600uni2601uni2602uni2603uni2604uni2605uni2606uni2607uni2608uni2609uni260Auni260Buni260Cuni260Duni260Euni260Funi2610uni2611uni2612uni2613uni2614uni2615uni2616uni2617uni2618uni2619uni261Auni261Buni261Cuni261Duni261Euni261Funi2620uni2621uni2622uni2623uni2624uni2625uni2626uni2627uni2628uni2629uni262Auni262Buni262Cuni262Duni262Euni262Funi2630uni2631uni2632uni2633uni2634uni2635uni2636uni2637uni2638uni2639 smileface invsmilefacesununi263Duni263Euni263Ffemaleuni2641maleuni2643uni2644uni2645uni2646uni2647uni2648uni2649uni264Auni264Buni264Cuni264Duni264Euni264Funi2650uni2651uni2652uni2653uni2654uni2655uni2656uni2657uni2658uni2659uni265Auni265Buni265Cuni265Duni265Euni265Fspadeuni2661uni2662clubuni2664heartdiamonduni2667uni2668uni2669 musicalnotemusicalnotedbluni266Cuni266Duni266Euni266Funi2670uni2671uni2672uni2673uni2674uni2675uni2676uni2677uni2678uni2679uni267Auni267Buni267Cuni267Duni267Euni267Funi2680uni2681uni2682uni2683uni2684uni2685uni2686uni2687uni2688uni2689uni268Auni268Buni268Cuni268Duni268Euni268Funi2690uni2691uni2692uni2693uni2694uni2695uni2696uni2697uni2698uni2699uni269Auni269Buni269Cuni26A0uni26A1uni26A2uni26A3uni26A4uni26A5uni26A6uni26A7uni26A8uni26A9uni26AAuni26ABuni26ACuni26ADuni26AEuni26AFuni26B0uni26B1uni26B2uni2701uni2702uni2703uni2704uni2706uni2707uni2708uni2709uni270Cuni270Duni270Euni270Funi2710uni2711uni2712uni2713uni2714uni2715uni2716uni2717uni2718uni2719uni271Auni271Buni271Cuni271Duni271Euni271Funi2720uni2721uni2722uni2723uni2724uni2725uni2726uni2727uni2729uni272Auni272Buni272Cuni272Duni272Euni272Funi2730uni2731uni2732uni2733uni2734uni2735uni2736uni2737uni2738uni2739uni273Auni273Buni273Cuni273Duni273Euni273Funi2740uni2741uni2742uni2743uni2744uni2745uni2746uni2747uni2748uni2749uni274Auni274Buni274Duni274Funi2750uni2751uni2752uni2756uni2758uni2759uni275Auni275Buni275Cuni275Duni275Euni2761uni2762uni2763uni2764uni2765uni2766uni2767uni2768uni2769uni276Auni276Buni276Cuni276Duni276Euni276Funi2770uni2771uni2772uni2773uni2774uni2775uni2776uni2777uni2778uni2779uni277Auni277Buni277Cuni277Duni277Euni277Funi2780uni2781uni2782uni2783uni2784uni2785uni2786uni2787uni2788uni2789uni278Auni278Buni278Cuni278Duni278Euni278Funi2790uni2791uni2792uni2793uni2794uni2798uni2799uni279Auni279Buni279Cuni279Duni279Euni279Funi27A0uni27A1uni27A2uni27A3uni27A4uni27A5uni27A6uni27A7uni27A8uni27A9uni27AAuni27ABuni27ACuni27ADuni27AEuni27AFuni27B1uni27B2uni27B3uni27B4uni27B5uni27B6uni27B7uni27B8uni27B9uni27BAuni27BBuni27BCuni27BDuni27BEuni27E0uni27E6uni27E7uni27E8uni27E9uni27EAuni27EBuni27F0uni27F1uni27F2uni27F3uni27F4uni27F5uni27F6uni27F7uni27F8uni27F9uni27FAuni27FBuni27FCuni27FDuni27FEuni27FFuni2800uni2801uni2802uni2803uni2804uni2805uni2806uni2807uni2808uni2809uni280Auni280Buni280Cuni280Duni280Euni280Funi2810uni2811uni2812uni2813uni2814uni2815uni2816uni2817uni2818uni2819uni281Auni281Buni281Cuni281Duni281Euni281Funi2820uni2821uni2822uni2823uni2824uni2825uni2826uni2827uni2828uni2829uni282Auni282Buni282Cuni282Duni282Euni282Funi2830uni2831uni2832uni2833uni2834uni2835uni2836uni2837uni2838uni2839uni283Auni283Buni283Cuni283Duni283Euni283Funi2840uni2841uni2842uni2843uni2844uni2845uni2846uni2847uni2848uni2849uni284Auni284Buni284Cuni284Duni284Euni284Funi2850uni2851uni2852uni2853uni2854uni2855uni2856uni2857uni2858uni2859uni285Auni285Buni285Cuni285Duni285Euni285Funi2860uni2861uni2862uni2863uni2864uni2865uni2866uni2867uni2868uni2869uni286Auni286Buni286Cuni286Duni286Euni286Funi2870uni2871uni2872uni2873uni2874uni2875uni2876uni2877uni2878uni2879uni287Auni287Buni287Cuni287Duni287Euni287Funi2880uni2881uni2882uni2883uni2884uni2885uni2886uni2887uni2888uni2889uni288Auni288Buni288Cuni288Duni288Euni288Funi2890uni2891uni2892uni2893uni2894uni2895uni2896uni2897uni2898uni2899uni289Auni289Buni289Cuni289Duni289Euni289Funi28A0uni28A1uni28A2uni28A3uni28A4uni28A5uni28A6uni28A7uni28A8uni28A9uni28AAuni28ABuni28ACuni28ADuni28AEuni28AFuni28B0uni28B1uni28B2uni28B3uni28B4uni28B5uni28B6uni28B7uni28B8uni28B9uni28BAuni28BBuni28BCuni28BDuni28BEuni28BFuni28C0uni28C1uni28C2uni28C3uni28C4uni28C5uni28C6uni28C7uni28C8uni28C9uni28CAuni28CBuni28CCuni28CDuni28CEuni28CFuni28D0uni28D1uni28D2uni28D3uni28D4uni28D5uni28D6uni28D7uni28D8uni28D9uni28DAuni28DBuni28DCuni28DDuni28DEuni28DFuni28E0uni28E1uni28E2uni28E3uni28E4uni28E5uni28E6uni28E7uni28E8uni28E9uni28EAuni28EBuni28ECuni28EDuni28EEuni28EFuni28F0uni28F1uni28F2uni28F3uni28F4uni28F5uni28F6uni28F7uni28F8uni28F9uni28FAuni28FBuni28FCuni28FDuni28FEuni28FFuni2906uni2907uni290Auni290Buni2940uni2941uni2983uni2984uni29CEuni29CFuni29D0uni29D1uni29D2uni29D3uni29D4uni29D5uni29EBuni29FAuni29FBuni2A00uni2A01uni2A02uni2A0Cuni2A0Duni2A0Euni2A0Funi2A10uni2A11uni2A12uni2A13uni2A14uni2A15uni2A16uni2A17uni2A18uni2A19uni2A1Auni2A1Buni2A1Cuni2A2Funi2A7Duni2A7Euni2A7Funi2A80uni2A81uni2A82uni2A83uni2A84uni2A85uni2A86uni2A87uni2A88uni2A89uni2A8Auni2A8Buni2A8Cuni2A8Duni2A8Euni2A8Funi2A90uni2A91uni2A92uni2A93uni2A94uni2A95uni2A96uni2A97uni2A98uni2A99uni2A9Auni2A9Buni2A9Cuni2A9Duni2A9Euni2A9Funi2AA0uni2AAEuni2AAFuni2AB0uni2AB1uni2AB2uni2AB3uni2AB4uni2AB5uni2AB6uni2AB7uni2AB8uni2AB9uni2ABAuni2AF9uni2AFAuni2B00uni2B01uni2B02uni2B03uni2B04uni2B05uni2B06uni2B07uni2B08uni2B09uni2B0Auni2B0Buni2B0Cuni2B0Duni2B0Euni2B0Funi2B10uni2B11uni2B12uni2B13uni2B14uni2B15uni2B16uni2B17uni2B18uni2B19uni2B1Auni2B20uni2B21uni2B22uni2B23uni2C60uni2C61uni2C62uni2C63uni2C64uni2C65uni2C66uni2C67uni2C68uni2C69uni2C6Auni2C6Buni2C6Cuni2C6Duni2C6Euni2C6Funi2C71uni2C72uni2C73uni2C74uni2C75uni2C76uni2C77uni2C79uni2C7Buni2C7Cuni2C7Duni2D30uni2D31uni2D32uni2D33uni2D34uni2D35uni2D36uni2D37uni2D38uni2D39uni2D3Auni2D3Buni2D3Cuni2D3Duni2D3Euni2D3Funi2D40uni2D41uni2D42uni2D43uni2D44uni2D45uni2D46uni2D47uni2D48uni2D49uni2D4Auni2D4Buni2D4Cuni2D4Duni2D4Euni2D4Funi2D50uni2D51uni2D52uni2D53uni2D54uni2D55uni2D56uni2D57uni2D58uni2D59uni2D5Auni2D5Buni2D5Cuni2D5Duni2D5Euni2D5Funi2D60uni2D61uni2D62uni2D63uni2D64uni2D65uni2D6Funi2E18uni2E2Euni4DC0uni4DC1uni4DC2uni4DC3uni4DC4uni4DC5uni4DC6uni4DC7uni4DC8uni4DC9uni4DCAuni4DCBuni4DCCuni4DCDuni4DCEuni4DCFuni4DD0uni4DD1uni4DD2uni4DD3uni4DD4uni4DD5uni4DD6uni4DD7uni4DD8uni4DD9uni4DDAuni4DDBuni4DDCuni4DDDuni4DDEuni4DDFuni4DE0uni4DE1uni4DE2uni4DE3uni4DE4uni4DE5uni4DE6uni4DE7uni4DE8uni4DE9uni4DEAuni4DEBuni4DECuni4DEDuni4DEEuni4DEFuni4DF0uni4DF1uni4DF2uni4DF3uni4DF4uni4DF5uni4DF6uni4DF7uni4DF8uni4DF9uni4DFAuni4DFBuni4DFCuni4DFDuni4DFEuni4DFFuniA644uniA645uniA646uniA647uniA64CuniA64DuniA650uniA651uniA654uniA655uniA712uniA713uniA714uniA715uniA716uniA726uniA727uniA728uniA729uniA730uniA731uniA732uniA733uniA738uniA739uniA73AuniA73BuniA73CuniA73DuniA73EuniA73FuniA746uniA747uniA748uniA749uniA74AuniA74BuniA74EuniA74FuniA780uniA781uniA7FBuniA7FCuniA7FDuniA7FEuniA7FFuniF000uniF001uniF6C5uniFB00uniFB03uniFB04uniFB05uniFB06uniFB13uniFB14uniFB15uniFB16uniFB17uniFB1DuniFB1EuniFB1FuniFB20uniFB21uniFB22uniFB23uniFB24uniFB25uniFB26uniFB27uniFB28uniFB29uniFB2AuniFB2BuniFB2CuniFB2DuniFB2EuniFB2FuniFB30uniFB31uniFB32uniFB33uniFB34uniFB35uniFB36uniFB38uniFB39uniFB3AuniFB3BuniFB3CuniFB3EuniFB40uniFB41uniFB43uniFB44uniFB46uniFB47uniFB48uniFB49uniFB4AuniFB4BuniFB4CuniFB4DuniFB4EuniFB4FuniFB52uniFB53uniFB54uniFB55uniFB56uniFB57uniFB58uniFB59uniFB5AuniFB5BuniFB5CuniFB5DuniFB5EuniFB5FuniFB60uniFB61uniFB62uniFB63uniFB64uniFB65uniFB66uniFB67uniFB68uniFB69uniFB6AuniFB6BuniFB6CuniFB6DuniFB6EuniFB6FuniFB70uniFB71uniFB72uniFB73uniFB74uniFB75uniFB76uniFB77uniFB78uniFB79uniFB7AuniFB7BuniFB7CuniFB7DuniFB7EuniFB7FuniFB80uniFB81uniFB8AuniFB8BuniFB8CuniFB8DuniFB8EuniFB8FuniFB90uniFB91uniFB92uniFB93uniFB94uniFB95uniFB9EuniFB9FuniFBD9uniFBDAuniFBE8uniFBE9uniFBFCuniFBFDuniFBFEuniFBFFuniFE00uniFE01uniFE02uniFE03uniFE04uniFE05uniFE06uniFE07uniFE08uniFE09uniFE0AuniFE0BuniFE0CuniFE0DuniFE0EuniFE0FuniFE20uniFE21uniFE22uniFE23uniFE70uniFE71uniFE72uniFE73uniFE74uniFE76uniFE77uniFE78uniFE79uniFE7AuniFE7BuniFE7CuniFE7DuniFE7EuniFE7FuniFE80uniFE81uniFE82uniFE83uniFE84uniFE85uniFE86uniFE87uniFE88uniFE89uniFE8AuniFE8BuniFE8CuniFE8DuniFE8EuniFE8FuniFE90uniFE91uniFE92uniFE93uniFE94uniFE95uniFE96uniFE97uniFE98uniFE99uniFE9AuniFE9BuniFE9CuniFE9DuniFE9EuniFE9FuniFEA0uniFEA1uniFEA2uniFEA3uniFEA4uniFEA5uniFEA6uniFEA7uniFEA8uniFEA9uniFEAAuniFEABuniFEACuniFEADuniFEAEuniFEAFuniFEB0uniFEB1uniFEB2uniFEB3uniFEB4uniFEB5uniFEB6uniFEB7uniFEB8uniFEB9uniFEBAuniFEBBuniFEBCuniFEBDuniFEBEuniFEBFuniFEC0uniFEC1uniFEC2uniFEC3uniFEC4uniFEC5uniFEC6uniFEC7uniFEC8uniFEC9uniFECAuniFECBuniFECCuniFECDuniFECEuniFECFuniFED0uniFED1uniFED2uniFED3uniFED4uniFED5uniFED6uniFED7uniFED8uniFED9uniFEDAuniFEDBuniFEDCuniFEDDuniFEDEuniFEDFuniFEE0uniFEE1uniFEE2uniFEE3uniFEE4uniFEE5uniFEE6uniFEE7uniFEE8uniFEE9uniFEEAuniFEEBuniFEECuniFEEDuniFEEEuniFEEFuniFEF0uniFEF1uniFEF2uniFEF3uniFEF4uniFEF5uniFEF6uniFEF7uniFEF8uniFEF9uniFEFAuniFEFBuniFEFCuniFEFFuniFFF9uniFFFAuniFFFBuniFFFCuniFFFDu1D300u1D301u1D302u1D303u1D304u1D305u1D306u1D307u1D308u1D309u1D30Au1D30Bu1D30Cu1D30Du1D30Eu1D30Fu1D310u1D311u1D312u1D313u1D314u1D315u1D316u1D317u1D318u1D319u1D31Au1D31Bu1D31Cu1D31Du1D31Eu1D31Fu1D320u1D321u1D322u1D323u1D324u1D325u1D326u1D327u1D328u1D329u1D32Au1D32Bu1D32Cu1D32Du1D32Eu1D32Fu1D330u1D331u1D332u1D333u1D334u1D335u1D336u1D337u1D338u1D339u1D33Au1D33Bu1D33Cu1D33Du1D33Eu1D33Fu1D340u1D341u1D342u1D343u1D344u1D345u1D346u1D347u1D348u1D349u1D34Au1D34Bu1D34Cu1D34Du1D34Eu1D34Fu1D350u1D351u1D352u1D353u1D354u1D355u1D356u1D538u1D539u1D53Bu1D53Cu1D53Du1D53Eu1D540u1D541u1D542u1D543u1D544u1D546u1D54Au1D54Bu1D54Cu1D54Du1D54Eu1D54Fu1D550u1D552u1D553u1D554u1D555u1D556u1D557u1D558u1D559u1D55Au1D55Bu1D55Cu1D55Du1D55Eu1D55Fu1D560u1D561u1D562u1D563u1D564u1D565u1D566u1D567u1D568u1D569u1D56Au1D56Bu1D5A0u1D5A1u1D5A2u1D5A3u1D5A4u1D5A5u1D5A6u1D5A7u1D5A8u1D5A9u1D5AAu1D5ABu1D5ACu1D5ADu1D5AEu1D5AFu1D5B0u1D5B1u1D5B2u1D5B3u1D5B4u1D5B5u1D5B6u1D5B7u1D5B8u1D5B9u1D5BAu1D5BBu1D5BCu1D5BDu1D5BEu1D5BFu1D5C0u1D5C1u1D5C2u1D5C3u1D5C4u1D5C5u1D5C6u1D5C7u1D5C8u1D5C9u1D5CAu1D5CBu1D5CCu1D5CDu1D5CEu1D5CFu1D5D0u1D5D1u1D5D2u1D5D3u1D7E2u1D7E3u1D7E4u1D7E5u1D7E6u1D7E7u1D7E8u1D7E9u1D7EAu1D7EB dlLtcaronDieresisAcuteTildeGrave CircumflexCaron uni0311.caseBreve Dotaccent Hungarumlaut Doubleacute arabic_dot arabic_2dots arabic_3dotsarabic_3dots_aarabic_2dots_a arabic_4dots uni066E.fina uni066E.init uni066E.medi uni06A1.fina uni06A1.init uni06A1.medi uni066F.fina uni066F.init uni066F.medi uni06BA.init uni06BA.medi arabic_ring uni067C.fina uni067C.init uni067C.medi uni067D.fina uni067D.init uni067D.medi uni0681.fina uni0681.init uni0681.medi uni0682.fina uni0682.init uni0682.medi uni0685.fina uni0685.init uni0685.medi uni06BF.fina uni06BF.init uni06BF.mediarabic_gaf_barEng.altuni0268.dotlessuni029D.dotless uni03080304 uni03040308 uni03070304 uni03080301 uni03080300 uni03040301 uni03040300 uni03030304 uni0308030C uni03030308 uni030C0307 uni03030301 uni03020301 uni03020300 uni03020303 uni03060303 uni03060301 uni03060300 uni03060309 uni03020309 uni03010307 brailledotJ.alt uni0695.finauniFEAE.fina.longstart uni06B5.fina uni06B5.init uni06B5.medi uni06CE.fina uni06CE.init uni06CE.medi uni0692.final.alt uni06D5.finauni0478.monographuni0479.monographiogonek.dotlessuni2148.dotlessuni2149.dotlessuni1E2D.dotlessuni1ECB.dotlessdcoI.alt arrow.base uni0651064B uni0651064C uni064B0651 uni0651064E uni0651064F uni064E0651 uni0654064E uni0654064F uni07CA.fina uni07CA.medi uni07CA.init uni07CB.fina uni07CB.medi uni07CB.init uni07CC.fina uni07CC.medi uni07CC.init uni07CD.fina uni07CD.medi uni07CD.init uni07CE.fina uni07CE.medi uni07CE.init uni07CF.fina uni07CF.medi uni07CF.init uni07D0.fina uni07D0.medi uni07D0.init uni07D1.fina uni07D1.medi uni07D1.init uni07D2.fina uni07D2.medi uni07D2.init uni07D3.fina uni07D3.medi uni07D3.init uni07D4.fina uni07D4.medi uni07D4.init uni07D5.fina uni07D5.medi uni07D5.init uni07D6.fina uni07D6.medi uni07D6.init uni07D7.fina uni07D7.medi uni07D7.init uni07D8.fina uni07D8.medi uni07D8.init uni07D9.fina uni07D9.medi uni07D9.init uni07DA.fina uni07DA.medi uni07DA.init uni07DB.fina uni07DB.medi uni07DB.init uni07DC.fina uni07DC.medi uni07DC.init uni07DD.fina uni07DD.medi uni07DD.init uni07DE.fina uni07DE.medi uni07DE.init uni07DF.fina uni07DF.medi uni07DF.init uni07E0.fina uni07E0.medi uni07E0.init uni07E1.fina uni07E1.medi uni07E1.init uni07E2.fina uni07E2.medi uni07E2.init uni07E3.fina uni07E3.medi uni07E3.init uni07E4.fina uni07E4.medi uni07E4.init uni07E5.fina uni07E5.medi uni07E5.init uni07E6.fina uni07E6.medi uni07E6.init uni07E7.fina uni07E7.medi uni07E7.init Ringabove uni2630.alt uni2631.alt uni2632.alt uni2633.alt uni2634.alt uni2635.alt uni2636.alt uni2637.alt uni047E.diacuni048A.brevelessuni048B.breveless@%2%%A:B2SAS//2ݖ}ٻ֊A}G}G͖2ƅ%]%]@@%d%d%A2dA  d   A(]%]@%..%A  %d%@~}}~}}|d{T{%zyxw v utsrqponl!kjBjSih}gBfedcba:`^ ][ZYX YX WW2VUTUBTSSRQJQP ONMNMLKJKJIJI IH GFEDC-CBAK@?>=>=<=<; <@; :987876765 65 43 21 21 0/ 0 / .- .- ,2+*%+d*)*%)('%(A'%&% &% $#"!! d d BBBdB-B}d       -d@--d++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ruby-prawn-icon-2.5.0/data/fonts/fa4/000077500000000000000000000000001354577744400173125ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/fa4/shims.yml000066400000000000000000000321351354577744400211640ustar00rootroot00000000000000--- fa-500px: fab-500px fa-address-book-o: far-address-book fa-address-card-o: far-address-card fa-adn: fab-adn fa-amazon: fab-amazon fa-android: fab-android fa-angellist: fab-angellist fa-apple: fab-apple fa-area-chart: fas-chart-area fa-arrow-circle-o-down: far-arrow-alt-circle-down fa-arrow-circle-o-left: far-arrow-alt-circle-left fa-arrow-circle-o-right: far-arrow-alt-circle-right fa-arrow-circle-o-up: far-arrow-alt-circle-up fa-arrows: fas-arrows-alt fa-arrows-alt: fas-expand-arrows-alt fa-arrows-h: fas-arrows-alt-h fa-arrows-v: fas-arrows-alt-v fa-asl: fas-american-sign-language-interpreting fa-asl-interpreting: fas-american-sign-language-interpreting fa-automobile: fas-car fa-bandcamp: fab-bandcamp fa-bank: fas-university fa-bar-chart: far-chart-bar fa-bar-chart-o: far-chart-bar fa-bathtub: fas-bath fa-battery: fas-battery-full fa-battery-0: fas-battery-empty fa-battery-1: fas-battery-quarter fa-battery-2: fas-battery-half fa-battery-3: fas-battery-three-quarters fa-battery-4: fas-battery-full fa-behance: fab-behance fa-behance-square: fab-behance-square fa-bell-o: far-bell fa-bell-slash-o: far-bell-slash fa-bitbucket: fab-bitbucket fa-bitbucket-square: fab-bitbucket fa-bitcoin: fab-bitcoin fa-black-tie: fab-black-tie fa-bluetooth: fab-bluetooth fa-bluetooth-b: fab-bluetooth-b fa-bookmark-o: far-bookmark fa-btc: fab-btc fa-building-o: far-building fa-buysellads: fab-buysellads fa-cab: fas-taxi fa-calendar: fas-calendar-alt fa-calendar-check-o: far-calendar-check fa-calendar-minus-o: far-calendar-minus fa-calendar-o: far-calendar fa-calendar-plus-o: far-calendar-plus fa-calendar-times-o: far-calendar-times fa-caret-square-o-down: far-caret-square-down fa-caret-square-o-left: far-caret-square-left fa-caret-square-o-right: far-caret-square-right fa-caret-square-o-up: far-caret-square-up fa-cc: far-closed-captioning fa-cc-amex: fab-cc-amex fa-cc-diners-club: fab-cc-diners-club fa-cc-discover: fab-cc-discover fa-cc-jcb: fab-cc-jcb fa-cc-mastercard: fab-cc-mastercard fa-cc-paypal: fab-cc-paypal fa-cc-stripe: fab-cc-stripe fa-cc-visa: fab-cc-visa fa-chain: fas-link fa-chain-broken: fas-unlink fa-check-circle-o: far-check-circle fa-check-square-o: far-check-square fa-chrome: fab-chrome fa-circle-o: far-circle fa-circle-o-notch: fas-circle-notch fa-circle-thin: far-circle fa-clipboard: far-clipboard fa-clock-o: far-clock fa-clone: far-clone fa-close: fas-times fa-cloud-download: fas-cloud-download-alt fa-cloud-upload: fas-cloud-upload-alt fa-cny: fas-yen-sign fa-code-fork: fas-code-branch fa-codepen: fab-codepen fa-codiepie: fab-codiepie fa-comment-o: far-comment fa-commenting: fas-comment-alt fa-commenting-o: far-comment-dots fa-comments-o: far-comments fa-compass: far-compass fa-connectdevelop: fab-connectdevelop fa-contao: fab-contao fa-copyright: far-copyright fa-creative-commons: fab-creative-commons fa-credit-card: far-credit-card fa-credit-card-alt: fas-credit-card fa-css3: fab-css3 fa-cutlery: fas-utensils fa-dashboard: fas-tachometer-alt fa-dashcube: fab-dashcube fa-deafness: fas-deaf fa-dedent: fas-outdent fa-delicious: fab-delicious fa-deviantart: fab-deviantart fa-diamond: far-gem fa-digg: fab-digg fa-dollar: fas-dollar-sign fa-dot-circle-o: far-dot-circle fa-dribbble: fab-dribbble fa-drivers-license: fas-id-card fa-drivers-license-o: far-id-card fa-dropbox: fab-dropbox fa-drupal: fab-drupal fa-edge: fab-edge fa-eercast: fab-sellcast fa-empire: fab-empire fa-envelope-o: far-envelope fa-envelope-open-o: far-envelope-open fa-envira: fab-envira fa-etsy: fab-etsy fa-eur: fas-euro-sign fa-euro: fas-euro-sign fa-exchange: fas-exchange-alt fa-expeditedssl: fab-expeditedssl fa-external-link: fas-external-link-alt fa-external-link-square: fas-external-link-square-alt fa-eye-dropper: far-eye-dropper fa-eye-slash: far-eye-slash fa-eyedropper: fas-eye-dropper fa-fa: fab-font-awesome fa-facebook: fab-facebook-f fa-facebook-f: fab-facebook-f fa-facebook-official: fab-facebook fa-facebook-square: fab-facebook-square fa-feed: fas-rss fa-file-archive-o: far-file-archive fa-file-audio-o: far-file-audio fa-file-code-o: far-file-code fa-file-excel-o: far-file-excel fa-file-image-o: far-file-image fa-file-movie-o: far-file-video fa-file-o: far-file fa-file-pdf-o: far-file-pdf fa-file-photo-o: far-file-image fa-file-picture-o: far-file-image fa-file-powerpoint-o: far-file-powerpoint fa-file-sound-o: far-file-audio fa-file-text: fas-file-alt fa-file-text-o: far-file-alt fa-file-video-o: far-file-video fa-file-word-o: far-file-word fa-file-zip-o: far-file-archive fa-files-o: far-copy fa-firefox: fab-firefox fa-first-order: fab-first-order fa-flag-o: far-flag fa-flash: fas-bolt fa-flickr: fab-flickr fa-floppy-o: far-save fa-folder-o: far-folder fa-folder-open-o: far-folder-open fa-font-awesome: fab-font-awesome fa-fonticons: fab-fonticons fa-fort-awesome: fab-fort-awesome fa-forumbee: fab-forumbee fa-foursquare: fab-foursquare fa-free-code-camp: fab-free-code-camp fa-frown-o: far-frown fa-futbol-o: far-futbol fa-gbp: fas-pound-sign fa-ge: fab-empire fa-gear: fas-cog fa-gears: fas-cogs fa-get-pocket: fab-get-pocket fa-gg: fab-gg fa-gg-circle: fab-gg-circle fa-git: fab-git fa-git-square: fab-git-square fa-github: fab-github fa-github-alt: fab-github-alt fa-github-square: fab-github-square fa-gitlab: fab-gitlab fa-gittip: fab-gratipay fa-glass: fas-glass-martini fa-glide: fab-glide fa-glide-g: fab-glide-g fa-google: fab-google fa-google-plus: fab-google-plus-g fa-google-plus-circle: fab-google-plus fa-google-plus-official: fab-google-plus fa-google-plus-square: fab-google-plus-square fa-google-wallet: fab-google-wallet fa-gratipay: fab-gratipay fa-grav: fab-grav fa-group: fas-users fa-hacker-news: fab-hacker-news fa-hand-grab-o: far-hand-rock fa-hand-lizard-o: far-hand-lizard fa-hand-o-down: far-hand-point-down fa-hand-o-left: far-hand-point-left fa-hand-o-right: far-hand-point-right fa-hand-o-up: far-hand-point-up fa-hand-paper-o: far-hand-paper fa-hand-peace-o: far-hand-peace fa-hand-pointer-o: far-hand-pointer fa-hand-rock-o: far-hand-rock fa-hand-scissors-o: far-hand-scissors fa-hand-spock-o: far-hand-spock fa-hand-stop-o: far-hand-paper fa-handshake-o: far-handshake fa-hard-of-hearing: fas-deaf fa-hdd-o: far-hdd fa-header: fas-heading fa-heart-o: far-heart fa-hospital-o: far-hospital fa-hotel: fas-bed fa-hourglass-1: fas-hourglass-start fa-hourglass-2: fas-hourglass-half fa-hourglass-3: fas-hourglass-end fa-hourglass-o: far-hourglass fa-houzz: fab-houzz fa-html5: fab-html5 fa-id-badge: far-id-badge fa-id-card-o: far-id-card fa-ils: fas-shekel-sign fa-imdb: fab-imdb fa-inr: fas-rupee-sign fa-instagram: fab-instagram fa-institution: fas-university fa-internet-explorer: fab-internet-explorer fa-intersex: fas-transgender fa-ioxhost: fab-ioxhost fa-joomla: fab-joomla fa-jpy: fas-yen-sign fa-jsfiddle: fab-jsfiddle fa-keyboard-o: far-keyboard fa-krw: fas-won-sign fa-lastfm: fab-lastfm fa-lastfm-square: fab-lastfm-square fa-leanpub: fab-leanpub fa-legal: fas-gavel fa-lemon-o: far-lemon fa-level-down: fas-level-down-alt fa-level-up: fas-level-up-alt fa-life-bouy: fas-life-ring fa-life-buoy: fas-life-ring fa-life-ring: far-life-ring fa-life-saver: fas-life-ring fa-lightbulb-o: far-lightbulb fa-line-chart: fas-chart-line fa-linkedin: fab-linkedin-in fa-linkedin-square: fab-linkedin fa-linode: fab-linode fa-linux: fab-linux fa-list-alt: far-list-alt fa-long-arrow-down: fas-long-arrow-alt-down fa-long-arrow-left: fas-long-arrow-alt-left fa-long-arrow-right: fas-long-arrow-alt-right fa-long-arrow-up: fas-long-arrow-alt-up fa-mail-forward: fas-share fa-mail-reply: fas-reply fa-mail-reply-all: fas-reply-all fa-map-marker: fas-map-marker-alt fa-map-o: far-map fa-maxcdn: fab-maxcdn fa-meanpath: fab-font-awesome fa-medium: fab-medium fa-meetup: fab-meetup fa-meh-o: far-meh fa-minus-square-o: far-minus-square fa-mixcloud: fab-mixcloud fa-mobile: fas-mobile-alt fa-mobile-phone: fas-mobile fa-modx: fab-modx fa-money: far-money-bill-alt fa-moon-o: far-moon fa-mortar-board: fas-graduation-cap fa-navicon: fas-bars fa-newspaper-o: far-newspaper fa-object-group: far-object-group fa-object-ungroup: far-object-ungroup fa-odnoklassniki: fab-odnoklassniki fa-odnoklassniki-square: fab-odnoklassniki-square fa-opencart: fab-opencart fa-openid: fab-openid fa-opera: fab-opera fa-optin-monster: fab-optin-monster fa-pagelines: fab-pagelines fa-paper-plane-o: far-paper-plane fa-paste: fas-paste fa-pause-circle-o: far-pause-circle fa-paypal: fab-paypal fa-pencil: fas-pencil-alt fa-pencil-square: fas-pen-square fa-pencil-square-o: far-edit fa-photo: far-image fa-picture: fas-image fa-picture-o: far-image fa-pie-chart: fas-chart-pie fa-pied-piper: fab-pied-piper fa-pied-piper-alt: fab-pied-piper-alt fa-pied-piper-pp: fab-pied-piper-pp fa-pinterest: fab-pinterest fa-pinterest-p: fab-pinterest-p fa-pinterest-square: fab-pinterest-square fa-play-circle-o: far-play-circle fa-plus-square-o: far-plus-square fa-product-hunt: fab-product-hunt fa-qq: fab-qq fa-question-circle-o: far-question-circle fa-quora: fab-quora fa-ra: fab-rebel fa-ravelry: fab-ravelry fa-rebel: fab-rebel fa-reddit: fab-reddit fa-reddit-alien: fab-reddit-alien fa-reddit-square: fab-reddit-square fa-refresh: fas-sync fa-registered: far-registered fa-remove: fas-times fa-renren: fab-renren fa-reorder: fas-bars fa-repeat: fas-redo fa-resistance: fab-rebel fa-rmb: fas-yen-sign fa-rotate-left: fas-undo fa-rotate-right: fas-redo fa-rouble: fas-ruble-sign fa-rub: fas-ruble-sign fa-ruble: fas-ruble-sign fa-rupee: fas-rupee-sign fa-s15: fas-bath fa-safari: fab-safari fa-scissors: fas-cut fa-scribd: fab-scribd fa-sellsy: fab-sellsy fa-send: fas-paper-plane fa-send-o: far-paper-plane fa-share-square-o: far-share-square fa-shekel: fas-shekel-sign fa-sheqel: fas-shekel-sign fa-shield: fas-shield-alt fa-shirtsinbulk: fab-shirtsinbulk fa-sign-in: fas-sign-in-alt fa-sign-out: fas-sign-out-alt fa-signing: fas-sign-language fa-simplybuilt: fab-simplybuilt fa-skyatlas: fab-skyatlas fa-skype: fab-skype fa-slack: fab-slack fa-sliders: fas-sliders-h fa-slideshare: fab-slideshare fa-smile-o: far-smile fa-snapchat: fab-snapchat fa-snapchat-ghost: fab-snapchat-ghost fa-snapchat-square: fab-snapchat-square fa-snowflake-o: far-snowflake fa-soccer-ball-o: far-futbol fa-sort-alpha-asc: fas-sort-alpha-down fa-sort-alpha-desc: fas-sort-alpha-up fa-sort-amount-asc: fas-sort-amount-down fa-sort-amount-desc: fas-sort-amount-up fa-sort-asc: fas-sort-up fa-sort-desc: fas-sort-down fa-sort-numeric-asc: fas-sort-numeric-down fa-sort-numeric-desc: fas-sort-numeric-up fa-soundcloud: fab-soundcloud fa-spoon: fas-utensil-spoon fa-spotify: fab-spotify fa-square-o: far-square fa-stack-exchange: fab-stack-exchange fa-stack-overflow: fab-stack-overflow fa-star-half-empty: fas-star-half fa-star-half-full: fas-star-half fa-star-half-o: far-star-half fa-star-o: far-star fa-steam: fab-steam fa-steam-square: fab-steam-square fa-sticky-note-o: far-sticky-note fa-stop-circle-o: far-stop-circle fa-stumbleupon: fab-stumbleupon fa-stumbleupon-circle: fab-stumbleupon-circle fa-sun-o: far-sun fa-superpowers: fab-superpowers fa-support: far-life-ring fa-tablet: fas-tablet-alt fa-tachometer: fas-tachometer-alt fa-telegram: fab-telegram fa-television: fas-tv fa-tencent-weibo: fab-tencent-weibo fa-themeisle: fab-themeisle fa-thermometer-0: fas-thermometer-empty fa-thermometer-1: fas-thermometer-quarter fa-thermometer-2: fas-thermometer-half fa-thermometer-3: fas-thermometer-three-quarters fa-thermometer-4: fas-thermometer-full fa-thumb-tack: fas-thumbtack fa-thumbs-o-down: far-thumbs-down fa-thumbs-o-up: far-thumbs-up fa-ticket: fas-ticket-alt fa-times-circle-o: far-times-circle fa-times-rectangle: fas-window-close fa-times-rectangle-o: far-window-close fa-toggle-down: far-caret-square-down fa-toggle-left: far-caret-square-left fa-toggle-right: far-caret-square-right fa-toggle-up: far-caret-square-up fa-trash: fas-trash-alt fa-trash-o: far-trash-alt fa-trello: fab-trello fa-tripadvisor: fab-tripadvisor fa-try: fas-lira-sign fa-tumblr: fab-tumblr fa-tumblr-square: fab-tumblr-square fa-turkish-lira: fas-lira-sign fa-twitch: fab-twitch fa-twitter: fab-twitter fa-twitter-square: fab-twitter-square fa-unsorted: fas-sort fa-usb: fab-usb fa-usd: fas-dollar-sign fa-user-circle-o: far-user-circle fa-user-o: far-user fa-vcard: fas-address-card fa-vcard-o: far-address-card fa-viacoin: fab-viacoin fa-viadeo: fab-viadeo fa-viadeo-square: fab-viadeo-square fa-video-camera: fas-video fa-vimeo: fab-vimeo-v fa-vimeo-square: fab-vimeo-square fa-vine: fab-vine fa-vk: fab-vk fa-volume-control-phone: fas-phone-volume fa-warning: fas-exclamation-triangle fa-wechat: fab-weixin fa-weibo: fab-weibo fa-weixin: fab-weixin fa-whatsapp: fab-whatsapp fa-wheelchair-alt: fab-accessible-icon fa-wikipedia-w: fab-wikipedia-w fa-window-close-o: far-window-close fa-window-maximize: far-window-maximize fa-window-restore: far-window-restore fa-windows: fab-windows fa-won: fas-won-sign fa-wordpress: fab-wordpress fa-wpbeginner: fab-wpbeginner fa-wpexplorer: fab-wpexplorer fa-wpforms: fab-wpforms fa-xing-square: fab-xing-square fa-y-combinator: fab-y-combinator fa-y-combinator-square: fab-hacker-news fa-yahoo: fab-yahoo fa-yc: fab-y-combinator fa-yc-square: fab-hacker-news fa-yelp: fab-yelp fa-yen: fas-yen-sign fa-yoast: fab-yoast fa-youtube: fab-youtube fa-youtube-play: fab-youtube fa-youtube-square: fab-youtube-square fa-xing: fab-xing ruby-prawn-icon-2.5.0/data/fonts/fab/000077500000000000000000000000001354577744400173705ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/fab/LICENSE000066400000000000000000000030141354577744400203730ustar00rootroot00000000000000Font Awesome Free License ------------------------- Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. Full Font Awesome Free license: https://fontawesome.com/license/free. # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) In the Font Awesome Free download, the CC BY 4.0 license applies to all icons packaged as SVG and JS file types. # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) In the Font Awesome Free download, the SIL OLF license applies to all icons packaged as web and desktop font files. # Code: MIT License (https://opensource.org/licenses/MIT) In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. # Attribution Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font Awesome Free files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally. We've kept attribution comments terse, so we ask that you do not actively work to remove them from files, especially code. They're a great way for folks to learn about Font Awesome. # Brand Icons All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa. **Please do not use brand logos for any purpose except to represent the company, product, or service to which they refer.** ruby-prawn-icon-2.5.0/data/fonts/fab/fa-brands.ttf000066400000000000000000003770501354577744400217600ustar00rootroot00000000000000 PFFTMȔP GDEF*OS/2B8X`cmaprgaspglyfolhead9.e6hhea6$hmtx@cCloca`|^<jmaxpO8 namepostVIGJ|Yق_< ٮ)ٮ-L'@LfGLfPfEd.T:  @@  p@@ @@@ @  @@@@@@.@ @@@@ @@ @  @@Lh@@P  @ @@@@@ @@ @@ @E@ @@@ @  @@  6L^knp~\u} !#1MRWY?B1]x{=B6;Zgkpsy 17:K^`mp|\hx#%MRWY ?B0]xz4?ytn8-zwhedXTQP620$ R G E D B @ > = < : 9 8 7 5 3 2 1 . - + * ) ( % $       w i h X  k i = ; U *     l k  ZB<x8X B@ r J  z ` .&Lz$@,D\xJlh>h$F.t!"D$H%0%&Z&'B'(*)N)|)**++,l,-2-\--0V01112\223x34F44557&7b7889j9~99:D::;B;d;<^<==^===>:>>?p?@\@AjABBCnCDE.EFXpY4ZZ4Z`\].]]^`^^__z_`a^aabbJbddeef4fffgLjk^klDllmVmpnpqHqr^rrst&ttuTuuvvFvvwDwx xyyzz{{t|}6}~~H~@@DjB.~f̅솔6̉:0*|rNVܑ`’vNPX :lԟfNڌڼۄܒLf\&Jd6;2#!"&54636767&#"&'&''3#"'32>54/(S5 "$- .79X)`  0!@ $:T-$2+537#54;5&#"#3#"&5463: E()??H/&=,7H`52#!"&546335#6264&"54.#"#5#354632   gC  @!!@C    u"j  h V[cipw}2#!"&5463>54&#"54&5".'&'0'43767.547&7662>&&364#"32&'&6'6&'6'&&6'&'6'"2=aEE]>2       +    S   `W7D]]D7W      ) @  0#"'327"&'327.=&547&546326767(ItFXI I:#5 &/'q@=+.$ "( 5iW6/-)+  81: +>!% %537#54;5&#"#3.5462xY: E()??YxΑ\H/&=,7H\gemu}7#54366'72&2&5<54'>54&'6'&&".&'./"2?'.5466'&'6'&6'&'6&!(GDtC]K $   " A%  "    L^, " 3@pDS? (%   %!(     0Sh ! J#"'6?32654&#"7>76'&54632#"&7>54.#".5462g&# 7IXALW=3.:$  GW'Α (; YA=RX>9 "+A9,!4 $  " g.~NgR+6?32>54&#"74676'&54632#"&7>54'&#"&5463!2 %:!WAKW=2-:#  Y`p$; (F*=QW>8 !+@8, 4 #  7  `+72#!"&54632654'#3#".546327&#"%5#5##335t+5^9$');;`6,"%;R;R t'%#"&4632&#"3267#53##5#5353fRPppPK54. 7 F126mn888778Sipp22 8!2G6C88888(3#3'"&4632#54.#"#33>32d]]. |]!]Z . "- +) , *#+))0! 3LT6#".5462#*.'&547&5472632>34&#""'&#";2>&2"&4 #9 ) 76-*#1*/*&1"'@(" ,0+ "(*&00/d##&$ $;$  (7A0 .w#00#& +V$&$$& {%#76&+###'!2a41$% `--=!'7#3/#3?#'# 56/cat44 0>&L1'73?!7!7!7@RtM PP_),,aR5R.AT%#5"##5"#723>75."#57536353'262>54.2>54.#6MGB1 1 X  T 1 1        ! R5,DCCD:4ONMO :T`      2$'#"'&'.'547>7>7327'& j,,*'  j,,*ǏD $# Z+ %CY+ RQ#70+"&?'&6;2%+"/>76;2F AE,A  [B \H) B| zL V 6H  12#!"&54632767'&+"3%6&+";26/\0 .1 /fB/B` U7 6W x w '7'7757'7LUTTUTTTUUTTTTTUTT~ %'?'7'?'#553!53# zw w4((')'.$T%((Pxx3k2"&4264&"6"&462"'&'.5&47676762><.'&'.*#*:3:>76`CC`CT>,,>,\C==! !!==C- #)(#  #)'#3C`CC`{,>,,>6=C! 76;232+766 5!*> / *(F T T#!  ., D B% s R  @ 72#!"&54636/&'&&=32=4+54+";3244, 1&*`( S4H 8+Z}(%"&#"#.'&5467232>''&7>7?= : ./ 1E.8 938 % &?&P26*'?F (n&( ( 7#53537#b"  $;DP_7"&=463253+&=#&=#"&7#4>7'&7676&4&"3264&#"322#"&=46Z   &   66" we  t  t  ==== #$$#52 t  t   k~ )C#'476#"&"54762"10'&'&"#'.'&'&76'&5476767>7&767674.>32&63"6'&""60'&672676&367676'.'&#""6&/&'&6567656767636'6'&'"&#&'&''.'&'&76#%4'.'&'&'"1767>&72132767>2#"'&   %    +!  !    0       (   $ 29#%                  E    .3% "#"(#*%9   )  <    5$  2  # 1!.2   3$     &   #  ".6<2"&4%6&'.>'7&>7&''7&'67&ΑΑ:# IKG'd3+$"70!^e$76H% lnR.t3 =YM?EΑ* JR# 9C &(,9!AR<8.  %MSK.4Z PS%#"'#"&547&546326322654'&'.543232>54&"#".#"B.&UxB.&Ux-C[ *  DWA      G&.BxU&.BxUr-)9 ()    &t?2+"'&54636&+"?>;2>7676&+"&=4>;2>5C0  S  Y I Z j ! J l% #52#!"&54=46354&+";26754&+";26!!! S  S  Q  Q !!}(!   {   2"&4>&'&'.ΑΑk ! & " qΑQ    4`M0+".'&#"#"&'.54;2326=.54>;227>?6;2!)" ;  ( /`$"-; =]$ ;JD3    &! 84.[0  =` W t<  &0>JT\6&&676&"&547676766.766&76&&6'.7>'&>&7&76  &3  ULH<,7"'>77.=RB:6^:)?8-? ?-7!6'XvR EZ=iE Q..QX3?M)\ZR%&/#"43267.'>67".'665.674>2/>21-a9 0Q%/,7% $4##& #*)  &&7&' >H;3 -'   $,  " $$6 *+( %2)%   7!+5#"&=!%5!'2!5463&W&dA&d&t'ZZ'-UUnUU((42#!"&54636'&6&'."6323276P2B! -A@`?N  *f  #!3TR+4BKW7"&46;462"&5"&4622+"&54>3462+'"&=46322"&=7"&46;2#^&/''/'/v  3&/'  /'/v'/v3&/'  /'/v  &/''/7AIQ.54'76&#'&33'76&#"#>32"#"#"'76546"&4624&"2>e6BeL "8 !/M #^7S=A#$:0A<ΑΆċg>-"4G [,48": 2/7:b($ ΑΑċċ%.546777'7&'57DWumS7EM:D%(E3# R85Q + 8$&:T!+7&#"7.'327>7327     g ;/%9*7-39`O$4%#"&4632.32>7#53kggaEC YM7Z@#7jΑAA !M2A\#"V;IU6"&5462$"&462"&'7264&#"'&&#"32>54'>&6"'&7672"&54>Α  $28 =2$ N61$UL C   ΑΑ N V (7$t Y    %5`%"'&76276'#"&5463272#"&5467#!"&5463!2"&'73264&#"'&&#"32654'>&RHW  [  `d '6;   B6& T:;Sf1    ` U ] ! *<<* !%92"&42754&""&=#326=405#"&='32>ΑΑ ",>,  :,,:  ",#Α!  +*l -.,+kq.0 / /+#1%"&=726='54&"#"&=332>=462B]B"4B/.BV  C[C4F.BA.FG  H:  .AB.FE  -?@-$%3#!"'&'&'.5463!225#5#"3326 `  | `   ` !%)53#55#%3#535#75#53#535'35'3#3#R3RHRRRͅR4444L]]))]]))]]u3 #2B#"'56322#"'567#!"&5463!22654.#"#754&#"7532  G  `+"-3+ 4 !DiD`/ % 3:B. 39@D7'26322/>&67>77367>?"&75.# &'<7465&#".'&'#"&54?.>3263263232654.547'6'632763'7>31#  37 6I  G#     ,g ; #,  "  ?! ,    0  5/)    '  E<     -      \ PK< 3  !    4. "    #C3^ (:T#"&54>767676'&#"&/"6'763276&'&"76'&#"#".#">2@ &pNNt& (   + $P&  V  = "+#3(* 0M,E'RhmQ%D* #&  D %**"$  11Je46326&".'.7.67>>32'64&"#".'&'7264/7'#"&5467&72767#!6*, d,3! V6"#-, Z#9, d-[(b0' (7#,,  Y d# *, d,2"6!_U #!8-- Zl!#  , d,[ (0' ( #!7,- X  @u 397+32'3254#254+%#53#32>73#"&546323&#"AH5qO/5 :8U8! >\7#!"&5463!235#4'654+32674&"327##"534-.+(?`NN+#>Z]'$?( 2" "d47--`}) 0+ +*  / #!2:B%#"&'326'7654&"&'>32>&/6'&'6"&462264&"BsCU_&*T(87M7;bg   ( 3%%3%R''CsBeO' +<8''66'V 7`   (v$4$$4&&6>I>&/6'&'2#!"&=326'7654&"&'5463"&462264&" &Y'O%53I38u0""0#;% N && ^q%(84%$33$Q 0"0""0$  .C2"&42654'&327672654'&#"327672654'&#"3276ΑΑ] `  |S  Md20  ?0$  R{B4  <5Α  9 2B  -  L 0 @3#0#57'#53?3@b[ , ]]V+ bc T ] T 5K #-9DN`u7#"5'743272#"5'7472#"5'742"5'?2#"5'7462#"5'762"5'?#"5/7547632#"'&5'?47622#"5'72+&=476326%2#"5'74'2#"5'742#"5'7o s ~!..! 7O.AEEA)iEEiDD`####9989 DBBDFDDFr@ :BCC8/ !.  I6<AACCCC+%#'.'367.54632&'654#"O* +%$ J ;+-%+7/(0  "L44\ ;K~Km5,>N12A)<: .:9 $(+/&=4?67'775'?'7'75 _MجM_7_MNNNdM_7   ;g?3ss3?5J%g?3444s3?5J%A$I%##"'.'&676'&76067>6&'&5.*&'&35236'#"'.'&67>76'.5676676.&76" $#J$; '&/("MD7 + "/26(&"# D+;'I!  ,!%B' $ "1D$  ."#C1)6% ($X 6% ('B<s L  !   &&H %  /, ["&7>721>?>././76&/7>?>?>./65g<7      -,       (8h7"67527'676"&4624&"2'67'654'7&'"'7&'&'7&47'6767'6327' :a )= :b ); a:=)$ b:=)oΑ΅Ċc   4 @@ 4  4 @@ 490  .  2991 w90 /-  09 . 09 /ΑΑĊĊW2r1 CC,  ,CC,  , "*K]}7&5472#"&6%#!"&5463!23254#"#.32>54&'654'7'"=#37'.541535#"545#23232e !!#  O`1$ @ 0  ! U 4He&$ r |`YD     XiK  = B'4<R]&'#"547&5467&54>4&'"&"'6'26&#"527>=4&'733'".5432#"&=4&"#5>73;#067%" %:5f#)-(  453T?  %%!!$  &9= "#  #&2 ,&    $##$d w!  ###j% >)a!!77#.'#3@Q#  %P@6-/0"gg-'&67&632'2'&6654&#""'&>H 77 !;kEb{Q>jP9%>"  'M0_93!!sDbENeRC9P$9G# (VG-2$./"'"'&67.5'"&6767&632 n##m   !QRQR!  7  7 0 Q^yx_Q 0 3(6GS"#"'7&54632&'"3264&264&#"'#"&46322>54.#"32>54&#"E` 1DNrQGq r   D6(F``FBc   o   Z@ ";7ME`N;5   0   =40 SuST!     F^2"&462"&46'&7<5"&#'&7&'&625463!254.#!"6366263$$3$3$$3% #G6"(& &("6H# g  B)  *D&!0""0!!0""09 *f4! *  ) !4g+      !##5#5!3735#5##5(uW932&54?6#"#&7&6#"'7&?632%67232/&54+dl   1 J  +mi  Zk > 5; " h1     R o " (  [  )  "K7+"&7>3262"&7#*+"&76763:>7676oK; H$ *m $ y@  s O,Y BpW   )&'>&42#&'&6373#&&'&'&6;25 07h<m~r |JY AUM21c2 ">LvnM X¦nfjaJH@%)HS%#70>?#!"&5463!27#/&'#37#74'&56367&#"#"/26'#"3673!m X@+'@$("$' <*4&+`jG  2  !  # @ 4BR^d -9F$"4!2#"462#72#"42011"1"1"1"1&1<143413030310030410+353#!"&5463!2327&67&#"64'4#"&#"5#3<>323<>3237#&#"327374&5427&"'63'=35#5##3734#"7'&7&5#3546467&7'7#&737&5#35467#&7373535#45&1&0#"0#111323210606107#'#537374&#"326 xu uJ Q9*#76#*9555Y - ( #   :    5"  *Q9*#67#*9Q1 Z`fsQ-,)))v%    %         %     % %  |~U:Q--Q @'3:BSkuy%+53272#!"&54633533'654.*#35#535#535+37#&"264'&75&546"'654&'&5467&2654.+35#5!26%+532  :-r#$;%%^  ! a  ,  $ l  [3z *  `R!!#RTT7:%%  /        RRR i 6A.7:AMN`g{~1Iamxy#<.+#532254+2*##'#5377'#3#57254+'#3#3#53#54.+#532254+'#5#'#'##7353733':>7#!"&=3673353>7352335;67323535#&'#&'#"1#"5#.*+.'#.'#5463!2"#"5*5#."&*#&+.'#3673465273<523272?"+73254&"&54;254&&54;#"6+5'#3##53'63023"'&47'3*;735353#'#'##"543'3#E '   !BC3)$$j?  '&&'77I ' "#   5B 4)(+  (  g .(#  O  :SR 0 '$    !W  !   '&&'889 ""!L p  EZ E6  8  Ej  EP6666EBB//(Z        \    & n]    <  (  (  E^ 7BB11E44"# (E @ ,AXr7#"54632'2+743!2+7437#!"&5463!24+";2?46:3267#"&#"327;2?47454+"'&+"0;274+";2?>:1267#"&#"327;2?474+";27'2#"546  j   @"(T  %@  "(T  ,J   !  `f   @b\'&nf   @!h1  @#@PZ^bq%2#4>2#"'5672#!"&54634.54325&#"#"'32675#53275&=5&'#3565#752654&#"'#757454&#"3275#"' $ q   J  E#e $ =$$$n  $      5` "    "Lr 3! }U b}}! " ( 3$  1OX7#"&546323254.'&54632&#" #"&'.#"26?#>BD@%)=  D<-^;+   zFE   ) (& Q FCFM % <-'J#    Q60 ( /3* g2#!"&5463254.1&54327&#"2#"'. #"326?'#"&54632L  $:%+ &.    (+#   `3 /% . 0,&      ;G2+#"&'#"&46;&546324'!"&463!.#"!2#!326%32+"&46h  5gL|C  5gL|  ^8Su*  ^8Su   gTDgTD`/9uS/9uk.'/8E%#"&547&54632&54>32>32654#"6'&"32654&>&'.#"723201&'"##"&732654&#"32'67&[!iVF_3 /  %7 P!"/ ." =0 Y!r ( 1  .  C-A6 0&Xs\99# 3%/^xeC Q\P:( '! ;A   ?$!)/ #%#!"&5463!2 #37+V `A__[p)`*[[ 3JMR_finquz%#"'#"'##"&547'&547'&54?4&14?&54>32362363225#7575'#075175573'7'37'77&='&'#'#7#"7'"7'737'37#3'#362?#6?#747'74547'67& 7 4kj 4 7 6 8jj8,,-,3483,.,rb@#  PSPY|D"uSb: 9 h3K x63)O<<$$kR#[ci\&\a |sZ#V.# _ Z Y _ \ a` L30?\4Z`H!7&'677&'>7\\gq!!p$74(-CyU#"g \$a!rp!0>}B-k#V h":%:#&&#"6326"'&#"&#"+632632 &#"&#">32632 8/-:8C,0=*)$"75>))>57#"*>G@**@G>"/6>))>6/"!18//8#9Q+)))]##&& z,<M]%#!"&5467&54>32>3254&+";26754&+";26754.+";26754&+";26)5I22I' '[:Ec   Y   Z  W   C+3HH3$< &8HcEo o       ' #'+/37;?CGMUuy}?7?7'777?#5##5##53#53#53#5##53#5#57#5#53"&462'6#"'32654&&543237&#"'#553%#5!'%!5!#5#57#553'53'#55353'#53#55#53'#5d,r" " "!"Q"=!" Q"$ "L66L5!    y a *zz " ! !Q"u"/"&      B    > g "" " 5L55L:    I""""M!!0jbbU;;!!+!! !!+!!x M"""" " "" "*2#!"&546;235463264&"264&"  >  j  7''7'7''7'  L  (( '7''7''7''7|Y%#".#"327>32#"&54>3232>.#"#"&54654&#"#"&547632632D26()!)'5*9 <+C; S(@Z)F*!<,,"'%.& % ! C2(&@3%.Bw1B#-/,$,>>,*"R?*E&",/,")) 2A ,%3 >@2#"&'"'&54>7&547632>54&#"#"&546Ik$=&(       % & A50Pd H#"'7&546322656'&"77'&'&5476323217676}C\91v \\\Ln96mF+  )1-  ! _CZ\s3<\imLJ86lL5-D? ) 3#3#'#53'#53'3377#00DRgYYgRD00@Q^Q6p0 00 0p@(!!5#'#35'&753735'&75&7@tS;DW Z O Cv@V"&&s!7#/#3@N!. -#L@[ [^B'8I[nz%'''.567&667&674665".'&7>762263&'&'45&'&67666667&6767&'6:>5>"23636#6666'6&'.6767&'"#276&67&54&&7&'6757"2654&&#327>'"#276464'*#'7>7>7&7.#'&''''&'&'65.'&26'67&'.''&'5767#65&'&'&7&5&'6&3>.>6&5467"&7654'64>76&%'.'&6'&'&6=3 3  !   (  !'% /T '     N 4  P  2 #-?,,T" 5#J $a 8 KQ/K*     1 255+7 S  98 7172 $B! <4   %  %0   %   ))   "   G   "G% "$         ! '(!$  !&' ("# -- -# .&  $6  ( O 4*!      & O6R  "3%&      #    H  + 0$"&462"2"&42>..'&&&&Q';( '3 3&XQ:aB9 *e&&&&) #,8%'   ,)#3?OW_2"&4#;2=4>;2=4&#"54&+";26'+"=4;2+"=&54622"&4264&"}}}t  %$  9(-       ΑΑ}}}    (9-  5    Α@ ;Nc%531"#527#!"&5463!2##"'232>4&7.675&464.'>54.'+326& ((h v9  73!"651""1   u{  #`   % !! 2 = @ '62"&45>54.'72#!"&54632654&+"3ggg ((p(   OywQ[5X4rOpghh 9F8 8#x``qMTn0Z8Np)8D7&#"327#".54632&#"327#".54632'2#"&54>2654&#"! !! , -.! !! + -.yi)EZ0f?sFQzvUVuwX'"(%$X'!(%h6^?%gBrD=sXUvzQSx t 7'7'7'7'77''gg-4M-4Mggf-4L-4Lg 2"&47''77'7'7'7'ΑΑJM5MM #~~~JM5NN ΑKN5MM $~|~~KN5MM  Gk 3;MU]ju}7#"&462%2"&46&'''.7&'3>3232323$4&"27>7.#"#"#"2.6$"&46254&#"26%#"&4624&"2    d/w%$s/0# Z$o+)m$` #C_DD_`P7NP2%!VZ(!WY*;**;  ': **;)''   %//.-"#v0 /u_CC_D~7L  #1+Y(!VZ(!{;**;*H  !*;**1''<(4@%'&'.7617&'.7>26?6%4632"&72654&#"!9L 9L # L;  140  L6#<#LlLB&4&&rL # 9L M    6L#;$5LL5%%%D6462"7#!"&5463!2264&".#"&/&?6/67>  `/D//D% % 0  0$  / # !!`SD//C0   /  0$ 0  +2#"&=46367>54&#"&'.#"2]]") "  *" ]] '  !  (  L#'&1.'.<53>7.'5676.#<5:3.#5'+&2RJa 0 j !; -  <)&;@z  ( cZs)%780   8=   B7.   {  jp74>32#"&$"&4624&"27'4#"#"'614#"&'764#&5473254.#672/632327"37.#"'67   Αv9+K70 B -K90  @!`  oΑΑ| A +M90 A+K8/ ",7'>32'&4>32"&%'76&'7.547M#f7C:@!)#&#11F1;!%0"#"'01&'&'&'&747676747673467676773316676767"67203&'&'&'01&'#'#'>76'&"'&/32656'.'&'&>?677%06($"?     %     .@       4,    &B05 -) "         A- #&"  ]%"327#"#.546;2&&'>4&'>:=`* &=W5.F_cg^F-0G*76+GOJk~0K?dg?sb~bJ !*2<!673#"'.546767>667&734.#"7654.#"& /?DywJF ">59O5EQapI #)IY/*=C- DI$3 DN&# Q gFOUk+9'%9! *,6J&27#"&546;%2+6''.'.676767&'- P: 4>7#  $6 /*A|0#>=g>  3E/;  73!J_q7&6765>32'&62>54&6764'&#"#'&=4;2+3>.4>#".&6.'&66'47'&>3276#"'#"'&g  9((:O2 $*8'Z &&'77& %eU;%9HD<0%,-. %0C# 1oT  5IRR   h ^%79(1; &  / &m'&&  ("Q5*E' 1*   1&_?0J%  -6Nd<.#*'4632&'.54>576#".'&62>76&7>'&&>76  JI>. 9& .2-%3%T $T/0^37&@9J'$  *  &   (@ 8$ + ,W)7  ))    &  %##3#im2uhV&#"'&'.#"'>76?676&6Y[?'   ( 4 "!]E&ArwI#-)0% L5-l !!%'7#@<@@@@\@{VVY,?N!!274&#"#3235'&74=37#4754>35'"454=#?'#'##77@3#!,8 DSgPQ   @3 %oq% l  !*9GT%2#".547.6326?6632#"&5'632>54&#"6'&"'&272>54&#" {X9a8 9O a XP9   ky  &1 ?Y)E* 0'( !}'i  hR  '701!67"'.5&736.'#>32>W\Nb'4Dz Gq$ zc@h4-6 ib69!.+ G4];64-%2+#5#"&4632'#"&546327.#"326  WAX2ggGp#=+O>WW>H-;]7[[:b,a.C&ΑIAmnHW>>W?#/5; %''7'57#d%S}.*}TA`&::Yeq%2#54&"#54;2354;2354;235435&4663232632#"&#"2354;2354;23543%54+";2754+";2"*"$$%    %%$``   p<&   @@@@Y$#"'&=#;54;2+"=#".+#"&46322>7>23>32#"&'#"!546Y  Y Y 'e&**&       6 Y 5$ <" Y ,6,*:* "  !< #6$+5326"&4624&+3532FFFȑΑ3$x2F$JΑΑH3J|7FU%#!"&5467>322>54&'&7654&#"'&#"3$#"&764'&>#"&764'&>"8'/B7*X6A`  J4%?  ** %   "   ''8C.+?3?X   4J)! );)x8  -l-  Ia(  H  :7&54636'7&"76&%#/7327654'&7466*^I"<53%8C)G!G( 4RmR=#!@P_"*&3IP  H'%*# 6 $*+),IH'0A( &'77#".4>327''77%+*| ,..C97D-,B3O}J]]J+VV+Y3O7& 6fi89gKXI^\I' 7''7'75#'7bVllV422gV ll VΝ2djd2 1#7627'&73%'#762i98f ^ 889Xڸ e &!)-%#"&'*##".67.>2%35#5&''35#7#77#7!=ZfZ=!**-e)&lm~8//8&TJ;##;JT-: "j:  $(+/36:#!"&5463!24+''#"3!2#5#5?##5#5?##5j% o==o jIIIT6vp@vcujjK22K%%J&&,u%%J&&,%%12#'".'.&56'&'&'.VP5QF! %&#D $GI& %6 (,>=E10RG .A9l ,! g,i#"&54676327#!"&5463!24&'&#"'>54#"32321/4>14&#"3267>4>7632   `@   D+    "3 ! + ,(0 3`"??%*)  <   8$  Ha%#&#"#"&546327674"#"&54>32>32'654.#"3:>76#2 (5R6(. /  BI%R6$0    7  8Y1'6  *-GB-XA-$f  P M(?1F&'67"'.>32&#">54'654#"'6767&547>.%$ 33(&Y;! :N3!#1 m;Ob/&KB%  0**JMX CJ88*p^B  T:";'AUM' 79DR;$cI)+ !2 @U2#!"&5463>''3654'5.'.5463267&#"2726&'>7 1%D   '1$%8  c< ) .`H%3+U$"#! 1./6( 0 $5 );F#.>   h2"&46'.'#&76763654'&"'6'.#0"1"#"'&3263277632327>76ΑΑ         ,'Α   <  <  l%#"&#"''.#"#"'.5.'0547>7056'.'&7>327&47>3023232761<  ("*       %( /)  $7             I$%I      n2#!"&54636'.5#&76763654'&"'6'.#0"1"#"'&03263277632327>76Z    .   ,'`   < <   #7463!1#!>7>7>7>7 F1GE1YXF1 3 /# "%!<H1FZ9f1F&  4H) GMSYc?27777''''"'7&'7&'7&'7&547'67'67'67'6'7'7'5$"2654 - 2= @DC@ =2 -  -3= @DD@ =3 - ʼbbbۄD@ =3 - -3= AED@ =3 - -3> @DuuvvPmnn;bFEccEF.93#"3#"&=4>73 5>574&'&'37#6734'7[++) %6*C( 0! >2 1=t))5%)82i@E&( 3. GA1.  Xcu462#"##"'"'"'#".5#"'67&'7&'&54>3267>761>32632632$2654.#"47327654#"&4&"326574.#"26574&"26574&"2657#"&5476326262632>74&#"32>6  &N    " $6 $G'  -    - 47)   1   1   2   M/?!FZ%"    & 3)-")R-_   O-    7!25$" &(Dt  !B6#     .iH2>.VN*?$)%12"&42>54'#3#".546327&#"%35#5##33ΑΑ#7uF) - !"13II##$$$$Α7# +  .! IfIj$##$#=2#!"&546354#"#"'&#"5654&"32756=6276323276.( %"  &*  \   - BFJNRVZcgos%#/#/##&1'&'&?&5'&?&/&?2327674?677'///7'75'??'? 7CTA&{Z"$#;Fe[ yjIP9@ F+: >NOU\_BX@)J3H,!6.CEN d ',# $&9a=/791=^:=D<>F=,DC/DJC("?$A4%#"'.5463232>5'654&#"327.#"'632(;%:tKxNOwJ r588338   +!)= ">(dAUpoV_:$ :%?PNNPON  8}h#".54>32.54654&'&563254'&7254>54'�&'<54'.#"2#"&4>7>&'&5462#!"&54>3E #!$:     ,   " !  ' &  05}2  1N+'I. /Y  !! "0$     & (1N*%H0'fm) 2"&46&762?7ΑΑr   =s>Α ] Yh?.  2"&47#ΑΑ(UUΑε .6>%/&?6''&766'&7.7627&76"&4626&'.>;4'>4&5'676&'&.'&7&'">374'&"417670.#636=4'#&'6767-    N ! )!  ΑO           2  '  /].('     $ 7 ΑΑ  %    ; 3     ! 5 n*%#X%&5>56'4.'57#.+"72>73#.'&#;2>7   h X C-Y   d54&#">&6?6'6873  Fm    D)# !  {  )S7 0;qPJ6I;J$ 0_ 3@!- "! $m>!4DUB4A %"2( 9 f - N4J)l^8Pr1N  '7\2#!"&54636&'.14"&'&'."04&'&7676&"&306/.>1276a,8''88'*$  / $|%Q)% / ,'88''8IQ &  /)    HQ & /)  7&7>7>6&'&6W?_E#ZZ#W?`E04P<'D,P<;ZW>VFe  W=WFe ;X"@'.6766&'&>7'&6&6.''0&'&'.67&67>6.'&6'&'"'&#&'&'&767>7667>763266.6a  ?  1 m  + T   FE&#'f*3T ^(+      )  %  ,P       L   9  <   w!K$ 2?#J2$ A5 @`  b    "k  F  " K  S -=M2#"&#"##"&=&54622763232672#!"&54634&#!"3!26S ('  #" &<j\,      \r\ )4E%&?'>.#"'6?'.?6176&"&463227.547  )*'1''#.L+3  D  :j-*'FA6!!(/ z $>-'<2#' V. = Q C*('A&5*'8.1S%01#547>73&'.623632&7.#.#&5&7067672?B.,]rvy3 :: q z   ;9v *)"%txBy+ / L""6 J4AX|2#!"&546367676'.6'<.'&67>4&*#"#"&63!22654*#".6767626325'&'&7>0&".5&7676 ; ';1C# @=  73    *   )- 4 %#  5E& |   '!"   ZG  22!. ;32H-"&>#"&'>76MU,MU,!I}J=l&5V $7k4!bj4 ^ K~J4-F13!T"4EM2"&46'&'"?2#!"&546337632=4&+"767676/&"264&"J44J4)### - T BiJJiJ 4J44J$C##J#U - JiJJi3I2"#"'&=#".5<>7>754.#"&'&'&76532a_@5X"0 D (V  LE (I?    & 7k   0NGV_cf%777'77?'7&7>721?6?77?7?''&"76?6&2>77'/???>761?6'7?7''7#''767676'&76767?&'&#7'###"@ /  x  $!% '%A$$%%6 K :(   ;  ( 9 &  '  +"%  )&p "? qsvPSxx$&" (uoV\>  & B< &(Mzfh?B)   +.N--+$'%' *(?BO@    &"7?K7>32#"&46;7'&>.?6732+&'.'&67&2"&44&#"326 W? 4BF5 2  ΑΑYZ~YZ~G   s$ " +  " V% ΑgZ~YZ~2G2#!"&54637&676&+76.'.#"3!264&+&'>/O>V A3  4+  3`!= #r   J$X! V!,AMan7254#"#47632#7##"&5462654&#"733>32#"&'##74&#"32673>32#"&'##74&#"326747632#32653#"'&7454&#"733632#454&#"#* & %, ' '  Z& 'Q  :& 'Q  5 ! L & #& M ]' # '   L0 _  %( Fl  O  %( Fl   #    3  .   DA/7%#'#7'#7&74767676&'&>67'?If.!$!e"E*;f!1+ 2I:rkrTWZ`6M&Of!$!nG 5%"37)*= !.SN,2.'7!9 z5*+%%57.#>32632&#"'>32'.@~6D[5#B5#<<#."4)MM)1166ȀG8*2)1110o ?II?DAT02#!"&7>37/>16./'7'67"91"91_ g E :4)s)))4)w qd 0= @ n1>f7#*&'#"1&7&6256&"#&47>323226765&#&/&5"54;67636763:'#/'"'&=47>'.'.5&632#.#"#"#"&'&6;26766&&7>&7   ),(V 2 $!  !% 4  !! !  #  '      3CK7=F4/ I4&     "  e          "  #h&)G2#1   M#42#!"&546354&+"#5#353;26'+".=46;2   @(@@@@ 9@(@. .   #*('K#'(H?Rg"&4626'7'&'7'&/022130"''&1377676'6".#727&".'72Α=    %   #   "3 (9          'ΑΑ*-+,-  3H -,-- -6< Q6  )5O62'&"..7>7&67>'&6'"&=462746#"&=4632>NGI?>i`b UT   OR^ GE11E%"!%}CG=:e`  T  Q  ]1 H   G0++0G  !1! 2 s!)2:+73272+72+732+7%2+72+72+7"&GD~!%FIFGFFF( FFyFFKYY1Y1Y61Y 1Y61Y>`7>232"'.2"'.76#"'&'&'&'&547>76 '&'.'&54'&'&'"76767> 9C) 04  I!V"2+ %v  X  .:G S&6G%"'.'.567>7>3%327654'&#">'.#"?   ";  - '48%( ,  -- .$  CB  TM %  3%-L^ #5  )22   #'+/37;?C3#75#73#75#73#75#3#75#73#75#73#75#3#75#73#75#73#xpxpxpxpxpxpxpxpppxppxpp(ppxppxpp(ppxppx#$.>.7>7>76.'6L)5!)58Gs8 K8/fYH+H5K;+35!*5!P~F@e$>]4m"C2. )u ;'/6"&4767&#"&546326&&2"&4264&">L  $'7L5-'UI^^^&X  8* 6N"q߃^^^M %#"&462'""&54632654632L'"22E1T".0G12"#)5##--&1F11-#".."#5)#"21F1q)Xhu7#"&=46;;2>=4#67>76#'&77>76/6.'&.&677&'#"&=46;2'"=4;2#754;2+"+"&=46;21/  .*75/ 62 G2$q%;Q9, 7$>4R60      &>(D( ( }    p (  ,5 +Y1+9%">,%)&". #@/ 4C3 93$  ( ( (     T 2S^w7+76;26'&++76;2";2#"&7>;#72+".>;+";2?6+"&?%2#7632+"&576&++"&?3+"&?>;2+76;2?6+"   # %    ( 9  0 # : $    I B   /5 !    _  %( #4  "c#!( @bJ (  !'#31/#?#7#{p651cb ost44XA#_5gg5_#A 6*>>*&R#&+Α+&#R>T>*.y &767676.'&'&76'&'&0&'&0&&'&1.'241676727"#00'671327>7213"767676'&'4.501&'&'&76767632767617'"#7&'0'"'"#.76&'.'&'&'4'.'&7:30236'45"37>'&'6%&'6&74&5&'&5&76767&'&'&'&7671676'&'6'&272637'67'676&'&67&'67.4>56'&'&"#>767&R "8       % ") )    ,H+#   )%     !0             "           "   | ] )  ;%   $X-. -   V   15 +* !$  %           !                     .:JZ3#5'.546762654&#"'3#5'.546762654.#"%!"3!2654&'2#!"&5463~44-.@ 44 .  -@ D    &&&&8 &' :  ' :      &&&&GL767>454'.'37#73'##".5&#".7547;2254'326& O 4" wZJ! [ !&R T&6 @$@& 3+7    # / )$J"'53'3#%#512>'.'&#4>1#53WJ>>Bj<3P -7]<`6[v@8S__"JJ=@v[6`<]7- Q232"2"&4%&'!"&5463!24&/.+.67'"367./17672>7)    s(:=XI  ,h+.#%  ( "S+ !   5390Z$K O$      2+4546264&"7\\Z5KKjKR[KjKK5!K #53+32&+3250`ӽ__q ~Td  -159=%#535#5#5'#53#5'#"'.7!27&6?6%#53#53#5'#5^BBBBZBBW C)vn8 %+ BBB B;==;;H<<<'.#"&76767>357$4&"23676&/&'YH0  !"!H)("M["/ 'sZ& #0 162R@]R/   "*4 .>>XA76  bD!3$ 4=B #)1AI7>77&'6>7&7&504576&'67&&7#!"&5463!24&"2Z(C2!@. KE.# #DI'-( 2'4/0`@^^^3$,K+%  71 $(4 :".d %0 `^^^32+532654&+#rE> <_:V_dQk@F?[*P@&@a?@`7 $,>2&&#&676.2#".54&2"&4'3237.670>636"'&5"5&?"1"&46323&''&676767.'547>3>367.>>2'%6.67>4.'&""232>7&'&7>9        N 5j!@   --H  b9 " $-  6*"(  ' G 3 (# H    l    h          ]    (    . %    O 1   U . O #2#>%13#67'.5!456WANdE#-3 TQ `AWGDuOqS .%$/ k"/0ijY_*%##5#5354>32#"3KdQQ7$$ (Y]F(8O<'B2'&*#"&5<&<.'&54>6&"/&#"?62327i`L  N'B\O :  I O :  hT{-  Fl3Z?% ;,t <, ####5353533##5353##5!###@Z@@@@Z)<K73##576=4+53546324&#"#576=4/73''7'73733r]M; &55*/E  ! n *+ & &3"# 32.*  "  (9-  -% && Q72+"=4;2+"=437010101010"01"101"1110101#0**1#*1"#"*#"#0"1*#"#*#0*&*1&#"#*1&#*#&'05&'4.#04'.5.14"5&'014&5&4&4&4&5'"&</0&1&54'4&'45"41&54&<&41&5<&<&504'41'041&5041<545&504145041<'45<547676767676767676320154+"#54+"#54+"#54#563232=4#"#"&#"5654""#54+"#54+"#54+"54667676.;ed<.*33+    (,,(4444}AOVSOA   H1 ZH LL  (>.'&7667"&54>32&760m5 %#01}~~:c;4/  M`5m #%%1U 19YY;c:!4Hlw5'.54765&'.546765.547.=46723>54&'&765>54'&76"32642>54&"6s s b 5T1E9  4>N>  dd  >N>4  &8 iQ @i=    J15tt51  -1d |h Dc8Dr  g>Eo\       \pE=g @S-Vh|JrC0-   "  "%2#"&54632&"327572&+5DDg]\[A?&nNN74&%34v R\]B?'NpN$"q50*Y L'.7>327#!"&5463!245#"'.#"7670703'&'4+76,* ,!!!!P!v(&4 <4. !#O!C%!  5 *-"O!!P!!"(*$:<,    c0?732327676564/.'47>32753.'&"67>'.+  5'*2 7"3L+ O;2,f%IE +D"(A"<-0 1'* #'Q;% 7@="EA1Q U.8@ %3!!'S6Q!SQ %'% &54'77E54'71"&5>54'#".5470>54/p   O,+!(!C  D    8* >105,9)6 CF-4,  * P~&-OVd#067&'6?#64>4'&'.'&'4.77&"&576&'&'.77>2"'&'&637#"'&'.'&6?654&'&'.54746165>'&767674765&'.#'763263&67067>367632"22#66763267&#""67>76%2726767&'&#"&'&#667676;2&'67&76767>54/0&5&'&7676'&'&#"767&'&"'&'&#"45673&?67&'&'"276'&+"767#7>'12'"&/327"'&'&63=.%    n %.  ?     (/((/        #         (    1   t     & T  &  ( =5  f>v  F< )   1     +          +      4   e %(--$#                    #1   + 30+..+-3     !  !     *+9 0@@<+*      7#".5/267#"527654&654#"0#"76746767476'&#"47>76'&#"#"7676'0#&327717670767464676767676767"./3276732767>54&#"'&7>7632'.7&54632?64'"=32%i         +-*    ttD0 =9 DF9P P    @      !  _P          1@<) 2#!"&54637#.'#3Q#  %P`6-/0"g!.'>72&#&'.=4>76&#"#"&#"0+".5&54>16&#"#"&#""3262324'&'.46546;23262'')N n$p$(&s)k  1Fe    :  :   eF1   + + $>&''&'&'&67>./ O: # & o"*>$! THN(_-.R&`J7-# AMI06L2 "2",8}()95EQ2"&4654""7676547676762+"&=4632>4.#"ede r  X /+<<++<<+y4Y33Y4Pqqpeee    q" 4<++<<++767>5&540'.7>767676763636~*  &  <, 43&#7Jc  <  +SlLcs 27PZg%!&'45.'&>767656.'&'&'.7>74.5&7>7676>367>7>72>5&626.5&6'6&'&'7676'&'.&>.'.'&'&7>36'4&'&6'>7'"76'&'465.'30'&'&'".4173&'"7<5&#>7<5"'&'&7>7&#&'342;&76'4.'.'636>&&>7&721&'&7&72>>7>.'.56'.'.#".7&6&7>7&'.'&'&36 Z .     %g  4   k* " 6#-6,   FC    e "* )=    9 $S     #  `     $!%*! 8/V %   %!   -?    (|0     " ^4  F $'?^2      !%   !)        ;  /          &  Z  )/ #   D   '    $(    ">[.7>3267"1326'6&'&>76767>320676zX/lȯ/6#q?FpG3C   7a3 57K/+&F-)  ! ."   3 ?6ȯ/lW8>     6>u".)KEP&/    6   " !6!!75##"'3262654&/.54>327&#"#"'@* "-"c'    !)"  "@c'   " 0  +B2#!"&54635##"'3262654&/.54>327&#"#"'* "-"c'    !)"  "`'   " 0  +.D\huv?7'&'2#"&546%016"'&7'676'%&767''&>%2#"'&'&'67&54>2.7>3'654&'7@<1N/' 1;C3$)z/  -? .'. r ?1N/'1;C3)  ;H^uHQ J "":';B  +#'17D5  02J*(} 1 ,;,&18D5 $'/76&'&`   < ! 1( & , `.    *L   ?:  @7>&/#"&54>32SFK[>p( $'" )NGv 5ks6L**/%$* SW]rx}"01*#0&1"1'&547450346257622031754506105350>1762001310%7?5'1&10&10'1&<15/?'575/?'75]a`P`axQQP".!/\/"u;P\T-."/)QQPXQ"/Ln5iooJ77.i77b.//\4C".511[K\[[V....[%6Rbx%+"/+"=4;254;2#2+"=432+"&=4;272+32+32+"=437#!"&5463!24&"67>76 !    R - .0""/0""/>_`N;  .9"G,*G,*GG< G9<     GW"/0""/06NN61J,'u *H3'&5%3".=4&3#'546323#%53'57670&'&=325N , /''<*%8M*#&(  -Mo+ '" M/MM'+<.#MM(6 F  4q  ''7'7@@ ?__? @$\\%\$77$@2:Bt7>3>32"".''&/*.7#"4;2#"4;27&767>54&"&'&'&'.54>32v     (XX KhK  +J+B^  .  A   @  ,1(3HH3(1,  ' /*G*[@/ $4/5373#576=##576'H-m_'&'l33 2 6%%& >> ++O#"&54632>'&'&'66&'.732+"+"=4+"=4;2=4;2rnSggS:&./ .7&"*  b1j((0((0gg);B^B/ ) 1-r+&U#* n0((0(( 3#73#3#73#!&=4&"&=4.&5,,*+$ ,,t$2"&454&"6754&"6324&"ΑΑ"!""/Α = %3#"&'357#&5462#5'`lAR,Bq!lhhK Α K@$6A7iiP')gg)'П6G\h%&'7&"&'>='6267&"6267.'&47>330#'236"'&'.4"'6?7**h+&$:FF:$' ,d, 0>>,,>VcU?,, #:  $ 4&&J  -F%$G- -EEEg:T&&U;g(5 {  ;j"/&7676?6=4/&6=4;2#"/&=4?67#"54;23254.'.54632+"'.#" >  /200,b#7 ",(V0).&<%jjj    k k  k!D @ @@  %%#53%!#5#5#35337#3537#3533533  @ @@@ @@ `` ````7G DNW3#'#73%'.'&5#7327676&+"&7676763#";2675&66'67676&'&-093-117)O%   X    X!= =%&i 1 %    jjrs6&' ( $   $ #*h 7FNV^fnv~:4>'4>7"&.'."'&5476324&"264&"264&"24&"264&"264&"24&"264&"264&"24&"264&"264&"27&'&"62X      # 549 BB (B^^B(XXX(>> O     !(;O5005OBB11BSStSStSStSSD' (  #/9AT"&463235#737'2#547#'35##5##5##54#"35'5'57'#353#"&7'326ggΕ`o)F9{!8)E DEDD$   8Α ?.  471M/:HJ0!! g V  ,8 3m%#"'67>454676765&5654&.3276'&#"'4>;>3735467;23232+!".='#"&'6) &.^O8 ,9    V b   &:/I^,5 (< [:4% H  R    K    %#"&46323lLLllLLlZLllmm"5#"&'&546322>54&#"#".672654'6r/mKPn/?@B-$9%%B&?WSn +?*mTX~9Qf(PttP(fQ9,A$5A ;!,AI%#'#//75'737573724&3>7"'&'&476762564&"C       - ^88)8? 88Y~ZZ~Y !       .0_87*80?!87YZ~YY FMl7&'.'&'&"#67>3021'.'&70703'.'&167&'&'57>01&'&76"45."&'&74"'50>767>0&'01&"'&167>76'0'27:63231'&'.'&'6160&'&'61"Q  . K"#8)'4   R?(&$  D"%#  F 3* %=C"' "  ! " (  )!  $%\    h744D "//%  , &0      #     i        @(;%57>'&5676'54'&'.7>??; ͗  e%'E= ^6L;/=  a  .PLI66  #8 U  <97*l #  /6#  1(-&'&67%6'76&7'&>7'6/ ##i  at  S jZP Q \-!1(7 = %GV%+3'&=46;26=32"32>54'"#"&'&7>;5#54>76#'2>4.#" k5656 k(((  %$k 38r   ?.)&&f )0   167 )   f   /2#!"&5463&63265#"265265#"26=&6a'88''88'2 8   8''88''8   8 U2"&46#"#"3232#*#"&7676#*#"&767676&#*#"32327656323276ΑΑ | <  5  '   #.[A Α  F5 B?F+E&!@GQ[#"&=46;2'&#"#'#35>32#"&'365654'&'&'&#"32767&#>33264&#"3264&#"@5KK55KK  $  x S #"( 3\ K55KK55K Z F %%"'f  x   %(%'762#"/7/7676/&'&>&5( BDrBfE:0 ]$# 0"-{&9b6 'BsCf#P% " !)%0 @Sk>FA#:EP['.'>'.676&/>6264&"0676?32'"&'46746."&'46,..,7=!L>(     (?K!>_4 +,n"#F:  WzWW=5),7  q! 2"&4'616/&"37#"ΑΑeJ " ZUTK pΑw( cc)x #'+/37;?'77'7'7'7'777'?'7'?'/7'77?^6JN."7Z %# 8 8<+!)#+.|G7-+3=5PCBY".',";##B1 " &  /  )@ H96`-2W B@D57'.546'0'.'&/?>54&'514"D66&/$:MO< ) &,$-5+7(& ,>҃s|5 7"';6[<4*9 0* ( <7!>'#.'6X-~wx2M )ps^` 5EE"9m<Me>`L-T?- Q '#"&462264&".?''"&'&>?'&>767'&67676767'- ^ 4  -5  - ] - .- ^]/ / .  0  Z / // / Z 9 Z77&>&7&'&'"'3>56'.54>32@< w C !,z'/)7 /("2  /8Bw < +)+&$ *! "& =%/&?6?6/&/&?67/&6/&?6, -]TD:4-\_92+ *"JR A,V$H\ 7'* 2>"&462##"./567>324&#"'.'3264&#"32$3##3XC/m1!:aGB/5$&%, $- (3##3$>/CO!, k'e/B54% && "?,#-A%'"'<.'.'.01"'&76&*'&'&'&656&7>4645&>'"'.'&0#"'&'46'.'&54'&7>5&"5.6'.767>67>7>7>23>32307>302     +%   >59 ,     N        '*   $  $+-   , $*    !     2637??7'7''''/'7'?'8P C]8Y9}Rsf|1.+l &  ,ND& @'$J .3D6 {l&Jc&Tz8a %   Ea@NZamt%#"'232654'%.54632&#73254.54632#54#"#"&'73"&=3255#532+53254+5#532+53254+54+532;2=3+"75#532#54+3#;2=3+"7#53##7373#5#'#ApC#$ e3.53.5e%" e<     v$"'    9'    9  %?4'; 6J5+#1,"10EJ]      M777H+HH+?=> ?   U/#?6'&'&67%6Dg2 f]"L0 i (2#!"&5463>'."354;2+"=#pGNhN^DD^| W84FF4D8 '575'7''7XeW"XVY@-uKK:55/7 #'+/39=AEIOSW]cko"'3'#4=3#&'7#&'7#57#57#5#5#57#5#5673'5353'53'3#&'!5353&'!'673'53#4=3v0ggbnfggggggggggggg ibgggggggg %ggg S t tVggg  F # E#EhE # % JMgs % R "y-In'.'&?6?>76367'432'&5676322'&'&#&56/&'&74>76  4 5"     %    %; !& 7"     "    } 7#&'&761'''''#'&'7&'7&'7&'7&'7&'7&545'767'67'67'67'67'67'6?27777774&"26"&462654'&5'654'&5654'&5&=#+&'#&'#.'1#.547&+'&54704&5232673275#327.'&,+- "%    $" -+3378:; 7; 16 (."  ".( 61 ;8 <:883JghhOYYY| )              > k  "  %$ '&&&&' #% "   ,' 84 A?GFHHFG?A 48 ',  !hhg~ZZ~Zy   Z p@$         !eB ;Q>;2=4632+""&5&54.+"&=4>2;2"'4.5&6327632 c  !"d  e"!  c $11  CC  a3    %     %     UUvv 3Zes#'"'.5'7#.767>;6&'.'*?>72>'"5&'"&636&'"&63&&54&#"432'.'&'&'./&6762?6!  "J%    $ 0d$#4U  I,-)0) (D@  +(%*//E4:L ?       }\&    4 "  m0Nm([)/)#OO #f 8!,4& ;C K"       22#!"&54636'&6'&'&6323276L2C!  % .B@f@N  *h8 />4VR`,U7"&/.>;2326?>;2#!"&/&;2326?>;2#'2+"./&#"+"&?>3i7!$ $! 8  h8 !$ %! 7  8 !% %! 8  `pK K p pK K p pK K p BRa2#"/7'&546'&'&'&'.'&>76'.'&'"#"07>2#!"&54632654'&"7m'(N7$2     eB^0.]T#E'(56M 0 &7o        `]A@1.]A+%R/:''#/'7''7/5?'77'7?3772>54&"''#/'7''7/5?'77'7?3/3267;?3?'         w"/!!`/7'6'' * $%7&66'5%$ *  $/>,%:           B!!/!( #&4(66'2#&)'$4'4. :&+>/#  @J2"&427&/7654'&54632&#"23767/"&63376>54'ΑΑE9k&$DC?P@W&G9<  R0"%<  D3<ΑgAl$+  GJ6 #;-_ f=92 %++AQ%'&'.547>''&'&'&7>7>576'&'67632%'76"&'".rG;14;3 Y6TZ!   69  `+# ?y2 1)W $ ! /_0RmU- 2G)"   1A<"Rx( @      7#7&546;#5#";W@`KU@R7&2X&gMT8;m.533p8R^4y@*<D/;C\gy'&7670#1#"&#"#'.7672326732+#73264&#"&54?54#"#4>32#5#'26="#532?'3373u     nI%*#6& " n3$#5 "! 9 #$BM%&   a  J ss@'DPj|+534?#"7#!"&5463!276'&5&7&'&#"&#3262327674&+3532>4.#"363232737##'##"#3267.M  @  >      3  Z   &   f$77Z  `  W  ( B/   cQQcl'.871#"&767672#&'.'&763276&'6"  _3+3U*'(%+}"  3>Acf5O===%.$>%===Q    =>==KL !B!!B BB B!!B!B  )  _,  ,_$$d$$G# ^     ##G$$*##F$$6-V7>76'&'&767654&'&'&'.4&707676'&7>7676'.zZfVR  %&-  X+C;0-@(7!5 cRrc v`Y! FE '*#+  FF "U   8b:;8 0  /-;:.IX[x }<JRZqy&'&''.767&'.546767&'&67667>'676&'&&'&'67673276767&'&'&"67&'767&''6&'6767&1.67&'67&'&'76767#"'6'&'767>54&'&'2&"&462*47- ;!!?  +52*  @"!; !" 0 '   .   _ "!4%  #*'z"" 2 !## ',#  }&&),0$  >* ,* *?  C-R'6    JF A aN3$ "!   d $1 0."   ! ! && #'##73'#'%'7>MxNyT)A<  QQ 88 7I)P%+5352>54&5475&54654&+532#"'73254'&'&54>32&#"23#"=#";#"&54654#5654&546;7#"'73254'&'&54>32&#"'2#327#".5&634#"e j+"*    +  K+ !*   #_##-9 !  !  "  !*"    <"6 "  "  !  "  ;"     D+! # &%.B%72'47>&'&'&767&'&''&7676767&'&'5#"&?#"'.7671'.7676727.'&67676'.'&767>'.24767>2630>201276705076767>563206767632266'0"676'&2>65417654'.)1%#             <  M -# !9^Bw ;/%H -HW hK"1:  ! ' $ r  "p[  EW, $    " (   % >%$& )75"*)V Z""#'+      V    :    "-& j3  2   3 37#'e[08ਨ6rrYY  ?'' 373&&& R0n\\Jbb$BB X( 0D7'##7'3'373537#5#53".46767624.'&"27>"&5475"4753#5##5353#5##535&/3#5##535'"475'"&5475'&5&5'43>?##7#'#077'373'k4>>>']>--)d          W   P  &  &  P   YAA ?>@@Y**c+<``ttt %   %D           )) Q((+yy%'.'5#.='./&/'.?#+'&6?#'.5'"&'&'&'&4?673676720326?>7>;67>2?>026?67>?6766>?4567>72>?>7>3>?>6?67>'&%>'&>./.677>/&     :             0             d   :              "  6  $  - 5:/   -= ( %  1%  m7 ,   "   .%#"&#"##"&5&54622>3232632 7%H2B"/"  %P C YNw"" p 7#3#3#3#5B22e332~BLLL L) ?G7573'7$"&546253#57'+'.45454>;654"2'#''.4547&'632&'54#"'&'#5.6?>767>36'7&54"2&&)6:::Y   k   #A  ! :2)@&  .`  x nnw        Z( ( T      6^ 1J   '9( ( y #'#!3'3Y>>Y.CoqD-ttX <D>RYhsw3#267#"&=6&#5375#"'53254.54632&#"#327#".5463234&#"'2#"'5362654&#"53""    ,&_,!SW  %"X. q$#,'  r,/&&? "* )g;$ $^  (  * +  ! $#..3+%(( 2 {B ! v"#"&'53254.54632&#"!090 l\"[TH7 090 iXLBDJ1%;(KO .#8%KV$#327#".547>772#".546)3 &R$Y; :F${% %rYW@76"+"#&#&'&'.'4'231'&'1#"#&50=46;230>76700137654'&'&723230#"#"'4'"'&'&767621450454&'&5<547676362<=4#"&'"#"76760"&747676'4'&'&""+"5&1476767632'00?4656;2'"'&5<:232767>76'&'&5&3232=B ((#_!+9%&)'"U   "  +!  ,  #        ##$   {   3I )**  ( j         "  udZY   IH5@(8r770=476'"'&.7676232#%#!"&5463!2#0&#"376767674#0"1"45.'&'&#"#"6761323250=4'&'&'"&+"176760"1&'&'323254=01767656'&'"'+01054&5&+"&'&'&'&'&230;21676767676&7&'&'&32376213676767674} " $    ' ~%           AH((926D # /$.   $#        `, Y 2eT <j  Y  T<   0    8%'7'8]]\2#!"&546337#53'#35####Qo>BvX`###G#Wttr2#!"&54635#35#75#75# l (xxxxx l  ((P((P((27%#!"&5463!24'&'.+";2767>5__`* Gr Gr66`; ,< , !!5!3535@fYZ@ YYZx /[nz+"=4;2+"&=6/"+"54;2632##"'&=463276/&'&76322'&"'2#"'+"=4>2654.#"&2"&4))`  ))$ $!5 &!+:.?@-!)# $$$" # { Q # "  -   i?[?Y+ %%3%i.?f{"264%2".54>6<.*#:>732"#73262#67>'.*##%64.*#:>732""#WVVV);GR:  x!G   %   % %  x!G     X[z[[zk-M\M--M.,$   G e6,-  "`? G d6, '#"#"&462&'6.#"3762"&4: "#eˏ *?"B]+I+%R::R:  ˏf3. "A0]A+I+:R::R@!-9EQ]i+""'.+"&=46;2>354+";2=4+";2=4+";254+";2=4+";2=4+";2ZI> =2Z$88$#(.##.@@v@@'=Ohv%'&767>;0?'.67>'07>&'&766'&'"6766'&'&7672"67>/07'&76>?'&'67'&767Of9( )%)RM `  0% R w %  =eC !/0'G22+!  ).46EF$&S4( YK$ B     (27@"   G2 ##  <   -  Z   G1&7>01'&".54327>3270>7>" $ &', 5+:3'<#5 )bBU!1&A5f7 "2B  7  `  fX 1!"4( -%##5#546;2'42"72#"&546"32>54&;M ffEE#idfjVuwT4]:vfxxf 9##"hkge-zQSx2^;Uv )B2#"&54632>7'#5"'774'&7">753&654'&idfV xS/"]')""=j@_$" # 0-;;ikfe$Sw )&&"  ]+''" 9V:<13M2#"&5462>741'#327#"&'#53<5#53'7#7654&#"67632&#"3i0>J&fj!<%" [ 8 %-GA xCNvUl>Q&:" !Fi+N<,fe=#82 .50 #Sx<Uv]$ * 0   !%:2#"&54627'##5#535'#53'7'7654&#"'3733idfjlDR@=@@: x7@evU :* QB(+B?&hkfe=c$$88' '8 Sx3-Uv$3V `t  2#"&546"32>54&#5#5idfjVuwT4]:v hkge-zQSx2^;Uv++P**#72"&42>7&'327#".547'703654&#"632&ΑΑ%E5 $!.&'O3XwS4YJ!D. (0 Α/` , 4##0`L0Sw2*!4) (4;2#"&5462>54&#"2+5254.+'2+#526&+idfj4]:vUVuwFF56" ^2 "? hkge=2^;UvzQSxl'Ol.  ,C) ,37;2#"&546"32>54&#".''574575#5'?'5idfjVuwT4]:vM :D @?;Cqq(%'Y-hkge-zQSx2^;UvF @F>>f,.-/:5++ <2#"&546"32>54&>32#".'332654.#"3'idfjVuwT4]:v$#5 <*+'>4$ 211hkge-zQSx2^;Uv*++!;(.$.(+",11 s2#"&546"32>54&2742763276;#&/#"'4'#"'4'"5'#"'0&5'#"/+53767463274>276idfjVuwT4]:vQ :3     4- hkge-zQSx2^;Uv5l< P@ a , \ LH W_ WT Y9 Lb E\Pb  _s2#"&546"32>54&3#&/"/"5'"/"/"/+53767627427627>7427624+54"#";2=idfjVuwT4]:v;3 3+ Fhkge-zQSx2^;Uv,S @: HQ IF N+ I Z 9P CT ^-  E3 ]  4<@2#"&546"32>54&2+"&=#".=4732354735##3idfjVuwT4]:v6 ) 7lllhkge-zQSx2^;Uv6 6se (C (192#"&546"32>54&2".4>"76'&3254idfjVuwT4]:vr:* *:* G,6 %=  ,hkge-zQSx2^;Uv<+/6/++/6/+Yd .i Y?A9AMaf3#7'#&5#"&547#"'#6=3632672354#"#632'3264&"75"326%673#"&54632'.^"c$=) ('  &. C)!"C0 %7--/ d)+!*)*)$+"--6t B   P($ !!+m00  )!$*&&O`$2"&47'.7654'"1'&7'&'54>767'.?4763226?6'67'&3&545'7654/&#"32?32?322"&4  $  .<,.      (  7  R"# l    5:0'  &, !K< !"70$   ]  %`   t  4`'2>73'.45454>?62<.'&'.3547635476 A)fM 316  ./KD D/ .  H2,  %-7 ..-   4r ??$ rE2EK%#'#5.5463253:654&#"22>54.*#27&#EXCp(!%cfxON-E8   Ft`[     R9rK >> lGQr4ZC'A % #HBCN] <_i!!%5"'&'>54&#"'22#23235".4=372><1#3#"=463274.#""'5632@ <   $     d %@r!m.*     -E##[g7'&'&7>'&'47>76327'&5<5&'&"#&=76767676'&76760'.67276 3$# (f42,E%?  d(\N;  ,:m 4!Q!e"( !!%$ ,y. " s7%G. +'  1+1,i 7   *%c2"&4264&"2"&4264&"%'''"'7&'7&'7&'7&47'67'67'67'627777'ΑΑƍƍ|||J=7$  $6>JMRSNJ=7$  $7=J NSRΑƍ?|||'$7=JNSSNJ>7$  $6>JMRRMJ>6#  ' '?/?557`$##T))33d#$$T33),,+y--::"++,::- DLRX^dj"&462"264'./'6373#'#5&''7&'#5367'76?#.'%#63&%3'6&'756_ΑΑ8-18.%-D  ;; RR ;;   ;; RR ;; " ""%.8--8.8ΑNr" "+R ;;  ;; RR;;   ;; 4-8  %.8p.%-88-%L""2Js{3&=4'&'&">7#C26&'676&'676727""'&'.232.#"'.#"&'5>326="264&2"&46"2642327367632&#"'5.'"&'6  &      O      &) =!(&? :(!1  &(: ?&(!=""7,  * *  xP5[= y!')      )&@  @L"" 3   ++ r%>7#./.>?.>?677'7'=57&'>&'>&'>4'   #,F**E-"      &   "????,      J ( &#+!''! '5,* 5)# 0[>0 60+ !<-'D$0 7...7 0 U *1P-1-713D# &'544J{&76567<'45&'&54545&567>767>�'&5&'&7674'&'&'&676567>75'&'&/7<5/.454'&'"'&'&?'&'&'414767676367654'45&5&'&'&'&'&'&'&'&/5'7>32674&'&762763676?32?#"367>7676767674676761#"7&54'&54'&5476'.'4'4'&54'&43607&'.66'&'67&                I W D)! I&+%& #%@        8     '                   &-    %      9,:L8'', % % ^^K2322230##"'"'*&#&#&'&'&'&'&'&'&'&'4&54&45&547<65<656167>567676767672636212":372676767676767676767676'4&1&'&'&'&'&'"#'&67"#"'&'&'&'.5&'&'&7676767"'041465<5<5<5456767676767654'&'&'&'0&673676745<5<5<645<5<5<5454512174767676763632367676?0'&'&'&'3"#"'&'.'&'676767'&'&'&'&'.'2303232763667676767464567<5<545<54'&'&'&'&'"'47676767610#4&'<'"#*#"#"#41>12676345"'.#4):3670254>721633230"""02220#*#"#"14=46123#"'&'&'&'&'&'&'.50'&'67<7676%0#&'"/476767676767676367676747654'&   ( +        5  +    +      (!  '/  u              f      "       &            t        '    2#  ,A    &   -<   #     2                      : $%                     &&,               jp66&67676327676765&'7>767677676'4&45>7654'&'.'&'5>6767`I\*,(!B. %$6!  # */1!- 0! (M;753 93 -!"       ' #!  -*6 $/($/<4-I#":,14^0 !)1'62777''''777&47'6"264&2"&4w [  [ wF;FF;Fw [[ wF;FF;gHIfIH44H4F;FF;Fw [[ wF;FF;Fw [  [ HgIIf%4H44H +5?IS[iq2"&4264&"%#3##5#'353#535##3353'7'7'7''7'7'7'7'7'7'7'7'&2"&4#535##3353'"353&2654'#3##5#'?'7'7'ΑΑŠŠTT0v%IS|S   x  켅BTƝ(u4T_Fp?}1TT@s,  ΑŠ¿#/.R\8P]        R !3R2RARAU}XM<3?8 XF   ''.'4.'6'777''4&467&7467>'.'.67'77'??'?67.67'''''776'7.'5'7'677&'67'677&'6'4&''&'47'67&'6       '' Y:k, !,l:Y '   E (  ! ' ,  '   ((&""!# % % "!=2b']<&1xx1&<]'b2=!"  % #!""&((   n ,   >' L  '  J '?  #Mq7"&4632.4>?3:1>'.0#&7"#"&54>32#"#7>.'.#"56&546212#".'&5./>7>5<13L  M)u$=,# [  $46  0   M'pH x  >-$ [ %6N$ \ &6}  M'wG    ?.$ [ %41    M(m  +39^ )%&'&76&"&#'476322'"#"'&6"&7662"&31&'46&'&#"#".4>76%2.'"&'4547'&>017626'.'67>?&'&6'6720'&676'&'&'&'&'4'&'&#""#.#'"76767676.&'&27'53>2241&#"15674#"1675#K8   =   2 3=E>4)(22, ,?"  ,& > 8<1 +Jq 9,'    H( (  ((   G    -/ # ,37,! #  :"qT1 6!F a       -        '?'2"&45'5'5'757757"!!"EΑΑ;<<;!""!""B!! ΑW;X2>54&"j  ?$B/ih-P $=#MnNN  /B#JggJO!##=$6MMmM (%#"&462#.5467552>54.'7"&&6'SuoPmm&'*#3533'2+5'2+57"326&2"& l u  * C !6** l  m m \f$$e# f""T!&!(!55#$$.S2#"'#"'.4&54632>32>654.#"#'&"#'&#"32?3327&1  C==C  3%- $ .8  ,- : -,A ! '( " ~/$ N+F66E7"#  -# #s   %"uu"%?B:Uq0467>23>'.'.'&"+'67>27'#5<>7>7>7'&'&#'7'6767>  r B     B #)  S$ *+  SS# +,  < # =1 1> mm  S{ = > {| ? ? 2"&46&'&"&'.26ΑΑ  ARA   PfPΑΌ '33' 1??L#".'&4>3226'&<74#"#"#6=276&#"133:325&53" ga gb% P%P@&m5? &m5?$VB%/i$ta-0'2+"/+"54;276;20Cn33E6lΆ "2#!"&54635#'#3577#5##R$=>=>>>=\>==.MMxMMxlii #'#'#735737537#75'3#_lVb(m{WaCHU4N4POI 6SPߌHH@\?q?235';er5F=f5+Q GT`3#'#75#37'2#7''67#6;65#>7>3732#%'67>''>+#"'&'236=#"&/35"'&'26?#036z1*aI Z=6@B 4  X3 ) z    l &) t,+<o,^  !A" 1L3    '#(  ! :LI  G d e5>2.'>?#535#5##3#3&#"3267#!"&5463&632#"z)d Xmm3nn\ Q.:-.0-MKa ))#-"K7?C)$ - 33/#/-$"6 )4)! Id#n'1Uk%'#"'&54&5&7461/>36767'767'36&'&5476736'>6762#'&3&476726#&5�&'&#27"/67676'&7676'6=&'/7'7*#67654'&'&'&#"'#&?#7"ȼ363236767'"'5767"'"'&#"#7?7>4.5#&''.#'".'&'47&''&'367.'''2>7'2&/?&+57''#776.'&'.'77#6'.22077'327''7'3''76767/'#7#"#'67&7'&66'.67'&'&6327'52&#"#5#63'647674>7632.73230765654'&6?#&3'&'&547&'676 ]\BA(  ! -5  #!     o      (        )/        (        8: $0 @8 '&  ,  )    / 6 ,       I,, !  +&+       7' F       (      \x<=Z-#  & -                  !*       $ &         <    ) ! $,,   +/   0 H      v % 03    21        C     mp!"76743765&54'&'3#6743627>7>46'4&#*#.'&3!#"#23#5232'0&'&32&2>767&'.'+er)"s  7S0,   t  d  (  k  IH       D-<@') hZ&G!-1#.5"=4547>7'0.#0>162;2='#"'&'&#"2*&543:65654'&"#&72012=432720;&'27215"5&'4327&'&'0.'#"#6272'&'4&'"013'&672=674#"#"'67625654#&54632'>3"=&'&7>3201&'&6#"'>5454'"572725454'"4732#32#*#"'&'&*32%&+"#&76'&'4#"#"#160+"72676742325454'"7032#";276"'67236"54&#&#"7636'05&#&36762#"#"43656'1"54'&767456'.7623>76"+"&3656'4'"43:'32#"#"4;265454'"#&63230#:3>7+"0'&1&541474+'3676&'&"&5653276&/"326&3645.' gi=81  aa  .  0  ()'#Zc4W &(*'+_     !   "  +.e  +g!  "   &$(  YeV  j    U{}~:< # t87 87O&   C  FGC=#'SAGJBJ7z  H1    ! "R  %&  )/('E3n  q!: g  &3: $&e Z&"'[r~'<JX_l%".5&&7'46?67632766''7&5&'46&'.<.523036'74'6'67&672>30?2&&&2#"'75'654%'4>2&16&#"&'6'3&74'&7&'&'&7276&5&633#65#6'&67"'6&261&>&'707&#&#'5063632*#75'35'32'22>=4.#":>5#54.*#3#75'3#372#".>26&"'#75'37'3'&'320637+676=40:>4."&3#.'#75'35'#6'254.*#&63&674'&':  $ '  !;//   *     89e<QI4%  #J*,-*I!  #',')r        31NL! d    l    < M<  N  B&&U '"O U,0 L '*i     #5>6+53%2#!"&546354&+32675#"735#535#57#'#r (n0/e? >5 &! & F hhGj } &&srr!GKO'36767&'&7>672&1&'&67.'.'1'&'6 37'7:  )"AJD!   !& 5=*9   & &K|D!   % 6   x2K^66'6%'#"&/45467'&54>67676>7>.#0#"77''77''77'?( Wboo w  QVRO9   X2$ s0mC=J!q: . >/ .18'8   ,-2$3   $! ,s,- -,~,'}%Wah*=U`W\by76&654&'&#6'76"10'4?#&'2#4'5654'&'654&#"#./>6'&7'7'>15.'675&'#&'56767.#5675".'565'#34>307&'.'&7"2#04/5"267&'4.17676767#'4.56461##&563&'5#6376535"'&'474656'.#672<15&7507&7>7#7.767.7&#76&'&&561"&'2157>7202'3>17&67>7&'&75."&7#76'&7627&'24767?.3'45'3654&5473.#&7'7'"'0#&7''''7''&'.?'>0327'7'067''&/67'7"'76%63''>'2#54.#"#&'56#"7>'&76567"& \9+aWYc.: 3o   I9E|,r6CIo*    8  7   &        +     .        &HL%CA"    ; _ (   !$ $*"  = %[UCB-K+m  AnI3,MsB<27  @  f  D(P G ,  sR      ) 1G9Si 2& G         -      P7  y   Y%  \ *    /B%=A=  + $ *   ;   !^+ XF D;7%+P  '/#b (& |2=; (P@( 7   ) % '73# 7 F!v'a_jk]A 2Nem Ql 0:?'373'7'373'2#"=432+"54"2545<632+"=432+32+'+"5'#+"=4;2'54+327+"5'#+"?4;23'+"=#"=4;2+2+"=4;2+32+'2+"=4354"2'+"5'#+"=4;2'2=4+72+3+"=4354+323'7'3?#"&'&'>7&'.7.5467&76326&'."&'>%16767632.#"6'&'67#"'32767>.'&'&'67&'.'&#"&'67&#&'6703273&'27327672767&'6753'32+"=4;22=433'7'37'7'?2+"=4;21+;2+73'7'3:a N   P    UJ .   `  --=8 "b2-( *#  1A7 "a3+* )(I3 *+.X&%0-XT $ (  (   4:9:$$$$ m  6 ( $<; ; ;*265@?((4$ $ @   ! @ 300/[+HF ?@  N> $2[+GG >A 'Q;  ">@6'T ">@'   +-- _442 2U?d 3#'#<ުlJOM7!!"&'%32#7;; )X =tGg f G  7+"&?>762+"'.>2  }b   ' 6;J*H3G  < Z#+37;CGKOW_573'7#'5#'73?5#'735%53#'%'#57'#'7'57#7'537'#5'53'357'#573"Lv -#78-  88ZL B8 P [Z ZZd- M!LNZZ L/-!mj87, z P!Z^Mllv88 -78- M -7- -N[[.N [[ LG- MdO Z[[- Mj l/ -77 * O [#F767>'&'./&"&'&'.?>>7076($533613373'3#73'3#7333#"&7;VRD#d)3 F>(>M[pu- N;ZIIM R:'(:8^ 75< 7 N55.7"1"&5064.'&>1250616232>1000#0&XVWAG HIgEESVY]w<~eNNf0z?}Z 48?KR^%#'#5##"&'#73&547##53#3>>32353#3733.26&#"5#535#535#737'#3'7#'#3J6@ "V# * @511m<7 32  8w> /&! 8878_18228(.-&(..&= " !%# M)L1+E 3,"(.99,"4233 $*06<BIOU2+"&=64/'.6'&57'67'67'67'67'&5547'&/67'726&+"=46>54&'&+"#";2#"&#36=367'67'67'67'67'67''6765']77"#5"1$.'.4178";@H "+ +>* !! .OB  $ 6#0$.(26)@ \ 8!6% $#$(6  8 %\@I , /  =,8/!  >38$#$(5 * Ak$#"&463"&463".546;2"2"&4U2G22##22#'2##2':F22F2#22G22F2(#22#'2F22F'/AI2#!"&54632=4"2=4"2=4"2=4">.""'&"6754"2!!!!KKJC 02 :<!!!P!R- )) 0N2#!"&54634&32>27'#&5676.7#3547#36737676  & " D  !M ".- nr  4 5&($O$]  g$ %?&'&47677'IM&LLLJM&|LLL sCR%.'&76'&'&756'&'.676>'&6332>7262654&+"3q#1+-1(''(1+,1)$  55)"55 "%% {;  0,A@ -/";,- 20-VV-02(%%lt| *6>KWcm%+"'&'.'&'.6?4>7&'&'&7&7&7&7&66366632362636730764622>6626'6.>.677&'>7&'67"'67&'67'67'467'67"#"57&&7&461&7&7&5&&2656&'>7&'>&'&'&'&'&'0&'&#'''#&7676'&6&'.&>.26'4&&754&"266&'&67>&'&t %$$ %            % +/:%.$ )=D         $"$ D=)          7#1.+p  g  ! -%%.%.~&%(I#1"#1"R  & #  %2$  $2%             # "%'^/+ /* !#     l   "!     &$(%%  )$l*'  +. +   ~  -*. Y $)  '5%254'.'.#"#"&#"7#".54732654&VRB   *6I}7+54&"R;`;Rww()+3+=qffq=TwwT## %%}bkw7&'367#".#.#"#.'&676&'&32>36#"&'47>'&'&'&767>6&'0#"72##".5463224"[& "0 74  1 . %&66 *&    $$3  J$D33?I<.$ &    Y  <      / E& -   0 ($#>04"/     )1>J2"&4$>.2654.#"7&47'>.767''7>?&'&'&6ΑΑ3  % +''+  %%.R+/2.%%2/+RΑ?      2(^(2+  E$4//)e4$)0|';FSk753"&=36'>.5!5&>'>'#7>54.46&'56'4.g!#!_J[ !,*f'\TY%1,*"'- $/!!  O; #7${gh (,   +!("'"3#E_      %`5H%'&5>.#&'4>76;2723$#>7%!!$7>&'.#.'&/ %:'Y44%f" !DY QH5  ,]#  QY%'&>?&/'&7'.67&7.76767>30767"12676326"&462.#6'676&'&&'&"&"7327676767>$0   /         \ΑB    %  /" g    5!     '   ΑΑ / -  "1     1K7676'&>'&'.#"767&'&63270#"'#"&767>32% #  U    j /&'., ))"Bd ;179971; j$&(K.%-$$x 2J  %;38,);".C%I2P>>P2 %$EU ?GOW%'"'&'&''&7'&'&767&'"6767&667667>'&'7&'7'&'676'&'47.#267&'&&'.67&'672>1#."6&'&2&27& {%' 44# &W%8 !4)+ ! l!% /  1$Dc;8   4A0!" "DA '.  $ $H +$& %+H/&;2,  &.: >D $1* j +i  5)''   O_JO ::+'M.&   3'   )B%+532'#532"7#!"&5463!24'565<.+:62>76$  QQ2KK ,,,*,n1% .  5Q  DH  ,,*,,9 (  +9%"/&?622?62'"/&?622?62%&?62"'///CaaCCbbCC[[[[#+2+53!#54632#532#14#4&#++%@=X+?,a+pP+*@@%W>->aPpx#*"#7&62326514.'0.'&&'&'&'467:62>7>5454>2#+"&772'.y  mO "       6    A    (H (<o 1   +. (    6wA )Hy632#"&5"&5#".5"&5#"&=4632327277 '.67672"3>57:>4&'."&".''"15>7H iO1))1#C $  ;<  $ C   #NN#     , G,  8    8} G[M {f") % %  )"  /) Eh 0Lko7#6236#"'&54626'&=4%''.'.67&>3263264'&562506350'&#"'&1327"11130>32&176=4.74+";257&#"32765'4##"53250<.254'&5432;'06150'&#"#"'41"374+47632572'&#";"#"01376767325&#"32767&54+";2=476256750/#"432125656#&327617&#"132765'4##"532505<.2# e@ &6 #)-("#:  8":"/ #E8"     $  8  %"    P       6*   / 6 %$  BT !#19:>2 #  #?D  =    " O2 2   : 4 6   8 5'( ` :7#"&46;2+";2+"&46;26&>732>=4&+64'32#r);;)r);;) HA  v!.$;R;"(;R;"x / x ./!%2"&4%>'4&*0.'&74676&676/&76#".76&"767>74>5>56&'>36ΑΑ~      1        '!     Α    *       !144  '7'$   #  &EKQd%#"&'*'#"#.7&'&632>7>32>76.#"#623>32&46646&67>76"& >> ?%  BY0N|t&5P,@n  "<2 H [ $#.( 3@r-*1 2-I'` ).S>%M; * -  !! !! )   (%0V'&6727632#"'"'.767".'&63:%&5463237632+"'.5463033267*P_  _PT  -*vO QM n&'   (!I     H!n    *&   +%"/&4?276&'576&'6&'762  2   / /23(     3 {$ % z.. 24) 1=AE7+5327!4.'.5432;4&#"#"5#32>74&+3532>7#7#3@    " ~4!100*@    D/ N 6CNVanw%3#"&54632#.#"54&#".5467>2#">'32>54>&''"67&3>.327.7367&'|`tt`|nVju1_C'$-4-IJ,5. Qhd$+! ++*r)*" @&Y  vS[tt[SHMujEb61$'-.4!-/4 1L$%"!D\%##3$$#&D$&  9%5<H2"&467.54>32676&+%'#37377#7##"''2+?232+7褤X# %.M&  % $rh5\#_.  < ##&ݸ%%Z##ZTR'#=x9c 0`9! &<FP373#'#'#%2+52>54&/+53:'30>5.#6654&#/*)- .-,#  0/    .4 <   vvMMPP '(   &  m  (2+5&2"&45#6264&"2654.+')+#/`ΑΑ  1=4$Q,! Α  >*. Ew#"+"#"&'.'.54=454>7676767>7232;23276'&'656&'&'&'.''&'7367>       F;: LS, /9 N?P+>QA$      (7v"#N$/S<#!- c0 5 #"  W2#"&4654'4'&'&5&+1##"+"#"'.'&5476?514/"73>͑.=L(g    =77=f)K=.y ) ) )00V6$ n&7 ,  Ms' 4 :Q  H :2 L 4 XR . *! c :{ * Copyright (c) Font AwesomeCopyright (c) Font AwesomeFont Awesome 5 Brands RegularFont Awesome 5 Brands RegularRegularRegularFont Awesome 5 Brands Regular-5.11.2Font Awesome 5 Brands Regular-5.11.2Font Awesome 5 Brands RegularFont Awesome 5 Brands Regular330.498 (Font Awesome version: 5.11.2)330.498 (Font Awesome version: 5.11.2)FontAwesome5Brands-RegularFontAwesome5Brands-RegularThe web's most popular icon set and toolkit.The web's most popular icon set and toolkit.https://fontawesome.comhttps://fontawesome.comFont Awesome 5 BrandsFont Awesome 5 BrandsRegularRegularFont Awesome 5 Brands RegularFont Awesome 5 Brands RegularFont Awesome 5 BrandsFont Awesome 5 BrandsRegularRegular      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~twitter-squarefacebook-squarelinkedin github-squaretwitterfacebookgithub pinterestpinterest-squaregoogle-plus-square google-plus-g linkedin-in github-altmaxcdnhtml5css3btcyoutubexing xing-squaredropboxstack-overflow instagramflickradn bitbuckettumblr tumblr-squarewindowsandroidlinuxdribbbleskype foursquaretrellogratipayvkweiborenren pagelinesstack-exchange vimeo-squareslack wordpressopenidyahoogooglereddit reddit-squarestumbleupon-circle stumbleupon deliciousdigg pied-piper-pppied-piper-altdrupaljoomlabehancebehance-squaresteam steam-squarespotify deviantart soundcloudvinecodepenjsfiddlerebelempire git-squaregit hacker-news tencent-weiboqqweixin slidesharetwitchyelppaypal google-walletcc-visa cc-mastercard cc-discovercc-amex cc-paypal cc-stripelastfm lastfm-squareioxhost angellist buyselladsconnectdevelopdashcubeforumbeeleanpubsellsy shirtsinbulk simplybuiltskyatlas pinterest-pwhatsappviacoinmedium y-combinator optin-monsteropencart expeditedsslcc-jcbcc-diners-clubcreative-commonsgg gg-circle tripadvisor odnoklassnikiodnoklassniki-square get-pocket wikipedia-wsafarichromefirefoxoperainternet-explorercontao500pxamazonhouzzvimeo-v black-tie fonticons reddit-alienedgecodiepiemodx fort-awesomeusb product-huntmixcloudscribd bluetooth bluetooth-bgitlab wpbeginnerwpformsenviraglideglide-gviadeo viadeo-squaresnapchatsnapchat-ghostsnapchat-square pied-piper first-orderyoast themeisle google-plus font-awesomelinodequorafree-code-camptelegrambandcampgravetsyimdbravelrysellcast superpowers wpexplorermeetupfont-awesome-altaccessible-iconaccusoftadversalaffiliatethemealgoliaamilia angrycreative app-store app-store-iosapper asymmetrikaudibleavianexaws bimobjectbitcoinbity blackberryblogger blogger-bburomobelexperte centercode cloudscale cloudsmith cloudversifycpanelcss3-alt cuttlefishd-and-d deploydogdeskpro digital-oceandiscord discoursedochubdocker draft2digitaldribbble-squaredyalog earlybirdserlang facebook-ffacebook-messenger firstdraft fonticons-fifort-awesome-altfreebsd gitkrakengofore goodreads goodreads-g google-drive google-playgripfiregruntgulphacker-news-square hire-a-helperhotjarhubspotitunes itunes-notejenkinsjogetjs js-squarekeycdn kickstarter kickstarter-klaravellinelyftmagentomedappsmedium-mmedrt microsoftmixmizunimoneronapsternode-jsnpmns8 nutritionixpage4palfedpatreon periscope phabricatorphoenix-framework playstationpushedpython red-riverwpressrreplyd resolving rocketchatrockrmsschlix searchengin servicestacksistrix slack-hashspeakap staylinked steam-symbol sticker-mule studiovinarisuppletelegram-planeuberuikit uniregistryuntappdussunnahvaadinvibervimeovnvwhatsapp-squarewhmcswordpress-simplexboxyandexyandex-international apple-pay cc-apple-payflynodeosireact autoprefixersassvuejsangularaviatoemberfont-awesome-flaggitterhoolistravastripestripe-stypo3 amazon-pay cc-amazon-payethereumkorvue elementoryoutube-square flipboardhipsphp quinscapereadmejavapied-piper-hatcreative-commons-bycreative-commons-nccreative-commons-nc-eucreative-commons-nc-jpcreative-commons-ndcreative-commons-pdcreative-commons-pd-altcreative-commons-remixcreative-commons-sacreative-commons-samplingcreative-commons-sampling-pluscreative-commons-sharecreative-commons-zeroebaykeybasemastodon r-project researchgate teamspeakfirst-order-altfulcrumgalactic-republicgalactic-senate jedi-order mandalorian old-republicphoenix-squadronsithtrade-federationwolf-pack-battalionhornbill mailchimpmegaportnimblrrevshopware squarespacethemecoweeblywixello hackerrankkagglemarkdownneoszhihualipay the-red-yetiacquisitions-incorporated critical-roled-and-d-beyonddevfantasy-flight-games penny-arcadewizards-of-the-coast think-peaks reacteuropeadobe artstation atlassiancanadian-maple-leafcentos confluencedhldiasporafedexfedorafigmaintercominvisionjiramendeley raspberry-piredhatsketch sourcetreesuseubuntuupsuspsyarnairbnb battle-net bootstrapbuffer chromecastevernoteitch-io salesforce speaker-decksymfonywazeyammergit-alt stackpath cotton-bureau buy-n-largemdborcidswiftumbraco k%ٮ)ٮ-ruby-prawn-icon-2.5.0/data/fonts/fab/fab.yml000066400000000000000000000201051354577744400206410ustar00rootroot00000000000000--- fab: __font_version__: 5.11.2 500px: "" accessible-icon: "" accusoft: "" acquisitions-incorporated: "" adn: "" adobe: "" adversal: "" affiliatetheme: "" airbnb: "" algolia: "" alipay: "" amazon: "" amazon-pay: "" amilia: "" android: "" angellist: "" angrycreative: "" angular: "" app-store: "" app-store-ios: "" apper: "" apple: "" apple-pay: "" artstation: "" asymmetrik: "" atlassian: "" audible: "" autoprefixer: "" avianex: "" aviato: "" aws: "" bandcamp: "" battle-net: "" behance: "" behance-square: "" bimobject: "" bitbucket: "" bitcoin: "" bity: "" black-tie: "" blackberry: "" blogger: "" blogger-b: "" bluetooth: "" bluetooth-b: "" bootstrap: "" btc: "" buffer: "" buromobelexperte: "" buy-n-large: "" buysellads: "" canadian-maple-leaf: "" cc-amazon-pay: "" cc-amex: "" cc-apple-pay: "" cc-diners-club: "" cc-discover: "" cc-jcb: "" cc-mastercard: "" cc-paypal: "" cc-stripe: "" cc-visa: "" centercode: "" centos: "" chrome: "" chromecast: "" cloudscale: "" cloudsmith: "" cloudversify: "" codepen: "" codiepie: "" confluence: "" connectdevelop: "" contao: "" cotton-bureau: "" cpanel: "" creative-commons: "" creative-commons-by: "" creative-commons-nc: "" creative-commons-nc-eu: "" creative-commons-nc-jp: "" creative-commons-nd: "" creative-commons-pd: "" creative-commons-pd-alt: "" creative-commons-remix: "" creative-commons-sa: "" creative-commons-sampling: "" creative-commons-sampling-plus: "" creative-commons-share: "" creative-commons-zero: "" critical-role: "" css3: "" css3-alt: "" cuttlefish: "" d-and-d: "" d-and-d-beyond: "" dashcube: "" delicious: "" deploydog: "" deskpro: "" dev: "" deviantart: "" dhl: "" diaspora: "" digg: "" digital-ocean: "" discord: "" discourse: "" dochub: "" docker: "" draft2digital: "" dribbble: "" dribbble-square: "" dropbox: "" drupal: "" dyalog: "" earlybirds: "" ebay: "" edge: "" elementor: "" ello: "" ember: "" empire: "" envira: "" erlang: "" ethereum: "" etsy: "" evernote: "" expeditedssl: "" facebook: "" facebook-f: "" facebook-messenger: "" facebook-square: "" fantasy-flight-games: "" fedex: "" fedora: "" figma: "" firefox: "" first-order: "" first-order-alt: "" firstdraft: "" flickr: "" flipboard: "" fly: "" font-awesome: "" font-awesome-alt: "" font-awesome-flag: "" font-awesome-logo-full: "" fonticons: "" fonticons-fi: "" fort-awesome: "" fort-awesome-alt: "" forumbee: "" foursquare: "" free-code-camp: "" freebsd: "" fulcrum: "" galactic-republic: "" galactic-senate: "" get-pocket: "" gg: "" gg-circle: "" git: "" git-alt: "" git-square: "" github: "" github-alt: "" github-square: "" gitkraken: "" gitlab: "" gitter: "" glide: "" glide-g: "" gofore: "" goodreads: "" goodreads-g: "" google: "" google-drive: "" google-play: "" google-plus: "" google-plus-g: "" google-plus-square: "" google-wallet: "" gratipay: "" grav: "" gripfire: "" grunt: "" gulp: "" hacker-news: "" hacker-news-square: "" hackerrank: "" hips: "" hire-a-helper: "" hooli: "" hornbill: "" hotjar: "" houzz: "" html5: "" hubspot: "" imdb: "" instagram: "" intercom: "" internet-explorer: "" invision: "" ioxhost: "" itch-io: "" itunes: "" itunes-note: "" java: "" jedi-order: "" jenkins: "" jira: "" joget: "" joomla: "" js: "" js-square: "" jsfiddle: "" kaggle: "" keybase: "" keycdn: "" kickstarter: "" kickstarter-k: "" korvue: "" laravel: "" lastfm: "" lastfm-square: "" leanpub: "" less: "" line: "" linkedin: "" linkedin-in: "" linode: "" linux: "" lyft: "" magento: "" mailchimp: "" mandalorian: "" markdown: "" mastodon: "" maxcdn: "" mdb: "" medapps: "" medium: "" medium-m: "" medrt: "" meetup: "" megaport: "" mendeley: "" microsoft: "" mix: "" mixcloud: "" mizuni: "" modx: "" monero: "" napster: "" neos: "" nimblr: "" node: "" node-js: "" npm: "" ns8: "" nutritionix: "" odnoklassniki: "" odnoklassniki-square: "" old-republic: "" opencart: "" openid: "" opera: "" optin-monster: "" orcid: "" osi: "" page4: "" pagelines: "" palfed: "" patreon: "" paypal: "" penny-arcade: "" periscope: "" phabricator: "" phoenix-framework: "" phoenix-squadron: "" php: "" pied-piper: "" pied-piper-alt: "" pied-piper-hat: "" pied-piper-pp: "" pinterest: "" pinterest-p: "" pinterest-square: "" playstation: "" product-hunt: "" pushed: "" python: "" qq: "" quinscape: "" quora: "" r-project: "" raspberry-pi: "" ravelry: "" react: "" reacteurope: "" readme: "" rebel: "" red-river: "" reddit: "" reddit-alien: "" reddit-square: "" redhat: "" renren: "" replyd: "" researchgate: "" resolving: "" rev: "" rocketchat: "" rockrms: "" safari: "" salesforce: "" sass: "" schlix: "" scribd: "" searchengin: "" sellcast: "" sellsy: "" servicestack: "" shirtsinbulk: "" shopware: "" simplybuilt: "" sistrix: "" sith: "" sketch: "" skyatlas: "" skype: "" slack: "" slack-hash: "" slideshare: "" snapchat: "" snapchat-ghost: "" snapchat-square: "" soundcloud: "" sourcetree: "" speakap: "" speaker-deck: "" spotify: "" squarespace: "" stack-exchange: "" stack-overflow: "" stackpath: "" staylinked: "" steam: "" steam-square: "" steam-symbol: "" sticker-mule: "" strava: "" stripe: "" stripe-s: "" studiovinari: "" stumbleupon: "" stumbleupon-circle: "" superpowers: "" supple: "" suse: "" swift: "" symfony: "" teamspeak: "" telegram: "" telegram-plane: "" tencent-weibo: "" the-red-yeti: "" themeco: "" themeisle: "" think-peaks: "" trade-federation: "" trello: "" tripadvisor: "" tumblr: "" tumblr-square: "" twitch: "" twitter: "" twitter-square: "" typo3: "" uber: "" ubuntu: "" uikit: "" umbraco: "" uniregistry: "" untappd: "" ups: "" usb: "" usps: "" ussunnah: "" vaadin: "" viacoin: "" viadeo: "" viadeo-square: "" viber: "" vimeo: "" vimeo-square: "" vimeo-v: "" vine: "" vk: "" vnv: "" vuejs: "" waze: "" weebly: "" weibo: "" weixin: "" whatsapp: "" whatsapp-square: "" whmcs: "" wikipedia-w: "" windows: "" wix: "" wizards-of-the-coast: "" wolf-pack-battalion: "" wordpress: "" wordpress-simple: "" wpbeginner: "" wpexplorer: "" wpforms: "" wpressr: "" xbox: "" xing: "" xing-square: "" y-combinator: "" yahoo: "" yammer: "" yandex: "" yandex-international: "" yarn: "" yelp: "" yoast: "" youtube: "" youtube-square: "" zhihu: "" ruby-prawn-icon-2.5.0/data/fonts/far/000077500000000000000000000000001354577744400174105ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/far/LICENSE000066400000000000000000000030141354577744400204130ustar00rootroot00000000000000Font Awesome Free License ------------------------- Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. Full Font Awesome Free license: https://fontawesome.com/license/free. # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) In the Font Awesome Free download, the CC BY 4.0 license applies to all icons packaged as SVG and JS file types. # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) In the Font Awesome Free download, the SIL OLF license applies to all icons packaged as web and desktop font files. # Code: MIT License (https://opensource.org/licenses/MIT) In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. # Attribution Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font Awesome Free files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally. We've kept attribution comments terse, so we ask that you do not actively work to remove them from files, especially code. They're a great way for folks to learn about Font Awesome. # Brand Icons All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa. **Please do not use brand logos for any purpose except to represent the company, product, or service to which they refer.** ruby-prawn-icon-2.5.0/data/fonts/far/fa-regular.ttf000066400000000000000000001024601354577744400221570ustar00rootroot00000000000000 PFFTMȔQGDEF*OS/2AX`cmapǠ gaspglyfl nhead9.R6hhea5$hmtxtTlocaEˈ6maxp8 name660w[postiA}@J|_< ٮ*ٮ-@LfGLfPfEd.T: @@@@@@@@`@@@@@@@@@@*"$.>DYnpsu|3DFJNR\e IM[]tz([Vgz"$.>DWnpsu{3DFJMP[d GMT]qy(XVgy|zwZYB81-(}zpf`USC m H  g $   @|n*b H*Nbb ^  : :  6  ND>n8(fLDLl.lDfZhDh  h ! !J!!"f"#N#$$j$$%%P&B&' 'P'''(((l()$))*N*+6+~+,J,--..f//0,01 12 2p2334:445 566Z677b$"/.676>64'&'.7$,$+u**u$O##O$UNOT$ ** W"##"W1"/&?'&6?627/7 j  j A ( Ad>>d||&g DD g&b~~bBB"*2%2#!"&=46322654&#"#"&#"6"&462&"264:7OO7 344b3#99#3xTTxThP88P8O77O#33#TxTTx8P88P2"&4264&"'&=4;2ΑΑuuuU C Αuuu > 0  '3?GOW2#!"&5463254#!"3%+"=4;25+"=4;25+"=4;2"&462"&462"&462`lj `pT\  T  T  uu(8276#"&#"+"&5&5466325#"&#"63232P,A+=C%gA?  ')%gE;f9-4Lf9p ( S    2'4634#!"7P 0ppTvT#.2#!"&5463254#!"362"&457676`l9""((xX ""0((xXPA*/7%76#!"&5463!2+!547&?62'7'&76   `Z 0+t:A+:g `  r Z+10:A +:+2"&4264&"%//&?'&?676ΑΑuuu.>> >> >> >> Αuuu>> >> >> >>2"&4$"264/&?676ΑΑKuuu< [  ; Αauuu  [ = 8@2"&4264&"%+"&=4>7>54&#"/&7632"&462ΑΑuuu3.      %@&?A""Αuuu     64""@#/2"&54732654'6#".'&47>2267." /AA]A !-*[7&54264&"6?Ԗj/.AJ 5Vzzz(  &zz. %8FV^^^B3*   2#!"&546;25#"/#` 7 7@  7 7H"&%2#!"&546;32%763!54+'#"7!Pp@P?@PM1 @0jh*@/DT%"&=46;2+"&=46;2#3"&=46;2#2#!"&546;27"&=46;2#J 0   =`0   P 0FFE#6M%#"'#"&'&'#"&767&54632%3264&"67654&'32?&/  A<@g;B ,zV@hKeKA___x@1/R21R>  '6,' #+7B^6, Y<71B\BB.# /#$; (E,2   %&?'&6?63  j A >d?7D g&D~b#AQ&.7>&>6766&&7>2>7>&6&.7>76*  '>D88(%6*  '>D88(%5 ,36&  *6%(88D>&  i+  DF<63+ !"F<63 `)  7t@ ,82#!"&5463"!54#2=!37+"=4;2+"=4;2     H H   `0**d( ( ( ( @%-%#!"&=4?>3!2!'5!$"&462"&4627   i  NNi M  ppM2U]2++"&++"&=46;2327167>322654&+4654#";2'>'>'4&"2"1 $5."S  @  @    *2V,   **=  61" "(3( $/$ v,#$=  & 2V^546;&546321;6;2+"'#"+"&'&7&'#"&7;;2675&'&'.#"#""2641"V2*    @  @  S".5$"10[  =L   , "1 $/$  (3(" 1" &  =&$#, 3U]46326+"&=4754'1&'.5463274&#""&#"3>=4.."264j1"' "(3(   /$ v,#$&=  & m"1'$5."S  @   @     *2V,   L=  1S["&=#"&54>76716=&=46;2''26=6767=4&'#3263264&""1 $/  (3(" 1" &  =&$#,@1"V2*     @  @  S".5$"10[  =L   ,*9B++"&546;546;22=#"&=#"3%2=#"&=#"354/&+PPt`JTX j0 ~0@0>*` X 0@+3;#!"&5463!2#3254/+"&=#"362"&4264&" NzN *H44H4G"">`"PNd  h4H44HL""2#!"&5463254#!"3Z`pT 22#!"&5463!32>567!5".'&'``#dd#`#FF# 0)N N7  7`B2#""&54653+"/&2#4767654&#"#.'&546 &  8( N PIg,0+ K54L +0,ep  & (8++%%gIB25=1$05KJ60$1=% 2BGi%39%#!".54767>54675462!&5414&"0"&53   H8%:!8,B\B4&V   C,:V   ,B&,C;d.BB.d% #/Ka}754;2+"3"=4;2#+"=4;2"=4;2#!54;46;546;23232%354;23#+"&=#7#54+"#";;2=32=4 ( ( ( t ( ( L ( @  X p X  p ( p@ p @( ( ( ( T ( 4 ( ( |$$ { (  ( C C_  0+7%++"=#"=4;54;2327#!"&5463!24#!"3!2` X X X X ``0T X X X X`T2"&4264&"ΑΑuuuΑuuu/2"&4264&"6"&462"&462>"'&>2ΑΑuuu//!fΑuuuc\ 99 '02"&4264&"6"&46262"&42&'&".7ΑΑuuuso~)RΑuuuc-m1 +2"&4264&"6"&46262"&42+"&463ΑΑuuus(   Αuuuc-}@'3?KWco{2#!"&54634#!"3!2%+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2%+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2     `   `   `          `   `   `   `   b           n              '2#!"&546;54;2354;225!30 ( ( *`4 44 4p* %.=46"&462264&"t   4Αuuue ΑΑuuu '7"=4;2#7#!"&5463!24#!"3!2l l`0T `T#2#!"&5463!%/&?676`< [  ;  `p` [ =  A2Y&='.54767675467'".>7676#!"&546;2+"3!2=42;1+ 6(-$50I;"!0<*&>))   VT"( 6  )K-;(!9 h)A'% +`     %6&?6764&"2"&4264&"\ B B 9ZΑΑuuu> B \Αuuu &732/&6%#!"&5463!24#!"3!2}ccK`0Tcc`T &%#"&?67#!"&5463!24#!"3!2Cccu`0Tcc`T &7546&#!"&5463!24#!"3!2cc`0T]cc`T#!"&546;2'!#"&=#r.L h ^rLL  h ),5%+"=4;22+"=43%#!"&546;2'3#"&=# TLh   T   T7>3232>'2654&+4654.#+2;2'>4&"23&-E/ @  c  -3 $(K h  m&%@ !$*   # :/45'N) 9  G%&B"U.6[%+#".'.'#+"&=46;232>3:32264&"2>54&'6&'6+"#322>54&52$$ 3-  0  @  @ .G-88]b    @%&m "("454/: ?  3,$h   )"BG  9(8@H%/"/&?'&4?'&6762767'7''77&2"&4264&"<G( + (G<<G( , (G5MM[44[MM[44[V==V=Q.!!.! + )G<<F) + )G<<G54[MM[44\MM=V==Vc!.!!.&"&463276"3267&5467&jj %a>!"$h;VzzV0UT2*@Ԗ#( >$?P 9-2zz)$mU2T &/&?67#!"&5463!24#!"3!2cc`0T#ccE`T"264$2"&42"&4SuuuΑΑB//B/uuuΑ/B//B #/;GYe54;2+"3"=4;2#"=4;2#3"=4;2#+"=4;2"=4;2#!54;463!232%354;23% ( ( ( ( X ( t ( ( L ( @  P  p ( p,( ( ( ( ` ( ( ( ( T ( 4 ( ( |$$   HC C7=DJQ#!"&546;2'!#"&=##"''&76767&766>77"6467&'6&7r.L h  6' . $ 3N-  x^rLL  hD .0*[" #R#!"&546;2'!#"&=#32+"'&/+"'.'&6;2476;21676r.L h          ^rLL  h&b + H 78 `b aa B#!"&546;2'!#"&=#2+"'&'+"&?'&6;26763r.L h # . ..  ^rLL  h =N 7 NN ($6>#!"&546;2'!#"&=#54;2*#+"73264&+r.L h H E#   0 ^rLL  h %  /c(0#!"&546;2'!#"&=#57676&2"&4r.L h  ((X((^rLL  h@((X((  !$1@LP3#7#53#3#57#!"&546;23#"&=##5#7#"&?53322654."7#5 @ @ Lh 0 P   -  @  &L  h`W'a     /=#!"&546;2'!#"&=#/#"&=46;7664'&>.r.L h $$)   ^rLL  h$8$Y  : 7#!"&546;2'!#"&=#6/+"&=46;2r.L h 5 h h ^rLL  h p 4% h %$'0<M7#"/&?67#!"&546;23#"&=#7/&?6&?6/5&?99!Lh  7  7!99!c66&L  h`  O66$+"&46227''64&"264''&"67&7gΑΑ/p/522/B//B5/p/52258ΑD5UB//B//p/5225/p/522!6#"/&='.77'762< p+) r%%;`l !| .;T0 <2$-   '.5#"&'&676326767'7&'7'757/?'# ^a&'O ^a&'4_H: 'G,4%=/@G<& G@]+G'%e:@,O+ b ^Mb *N */%L=4J/}45/J>J%?4I0== @+/;GS_2#!"&546;>32=#!7"=4;2#'3554;2+"754;2+"=4;2+"54;2+"(  ! +@`= lPx h h h h h h  !  x ` ` P((      <   8@'&?63!"&54767>57"'675462'&5414&"&53z >   . |"&&%:!;B.&  0  *#D  ,B&7&/.B`%42"&4264&"#"&54>32'&#"3276ΑΑuuu3)?=O$@(;& !$*$$ Αuuu)Q<'@%# %"23K2#!"&5463254#!"37&546'&76&546'&76`lR@AR@=R@AR@> V6/.4"%6/.4"% +/37;Ocgo#32+"=!+"=4;#"=4;2!54;2'35!355#!5#'#"=!+32!543'2+"=#"=4;2'355#+ H H H @ H @ @   @  T `8 L@ H H  H H @ @ 4 4pppL  @CGKOSgk%#32+"=#+"=4;5#+"=4;5#"=4;2354;2+354;2'35355#5#354;5#"=#+325#%5#"=#32+"=#3235435#5#4 H H X H H H X H @ 8 X H X 4 H H  H H H  H  @ X H  @  %#!"&5463!27#!3546;T`LLP hdT`Lh (42+#!"&546;54632=#"&=#"3%254#!"300*0@00*`4%+132#!"=4;467.5#"=43!2#!2654&"p2//2 2//2 h KjKKjK?ss?   ?ss?   LllL`LllL)p6+"&5<&4&/&=46>62654&+"&=4&+"&=4&+"&=4&#"/&=4&354?6$C + b'8#I$@:H       a+q,(rd !  U"49#,)( r    ( )  t ) 9U d Y6+"/&676546>654&+"&=4&+"&=4&+"&=4&/.376u.  w!3 P4       sO)  7 ~!($%)!ф L       & w ]"&7.7#"&463'.>6#'32?6=4/&#"/&+";2+";2#""( X++^O8+1b"wFFw b       6 #+<+  88 857'%0 7 @  ;      @A%#5'&+"&546;7#"&=463!254/&#!";2+";2-d!4$r!/!&'v    r c$|H&!$40/!!!L  @ '(i7.7>'&67>767>2+"'&376=4?6&+"&?6."+"/.+"/./&5' /0 )   [ |  & * -* #5B82"i3 %k u` %  q      E 2^p6+"/&676546266&;2?6=4&+"&=4&+".=4&+"&=4&'546;2+"&7546;2+"&754;2+"f!9%"m!'7'!-m    DL K (#Tw7 ''J w  wT    # #   R` ` ` ` ``#^6+"/&7'&676'462654&+"&=4&+"&=4&+"/.;2?6j(%'758 % +<+#0      ;@ 7 #Fw"b1+8 O^++XF      b w,52"&4264&"+"/#+"&=46;2'254.+ΑΑuuu6+0 'Of(: Αuuu#ZTU3)! @;C%++"=#"=4;54;2327#!"&546;54;2354;232!3!2P L  L L  L p0 ( ( 00T L L  L L`4 44 4* +37"=4;2#7#!"&546;54;2354;232!3!2| |0 ( ( 00Tx   `4 44 4*;C%//&?'&?6767#!"&546;54;2354;232!3!28 66 66 66 660 ( ( 00TI66 66 66 66`4 44 4*'72#!"&546;54;2354;225!3%/&?6760 ( ( * K  ,o  `4 44 4p*Ɏ K -n  @!%*/2#"/#"&54>?6327673#0        5=? Z 5=?:./,!/*2+#"=#"&54634&#!";?326&&} `&&  C  &&^ T& &   <2 /2"&4264&"%+"&=46;2+"&=46;2ΑΑuuu( 0 0 p 0 0 Αuuu    "&462264&"+"&=46;2Αuuu   'ΑΑuuux  #+Lfn3#"&5#'#"'&/#+376;2264&"6/&'&6?#"##36???5#'&+"6?6264&"y@ : #;U  @v0Q  l - '9>*a ! % -=T A7 gn  @  L  0 W ;#>X    $I> <3 S0 5`#!"&54767>254'&'"."#3!2'#".'&'&?6232>7676`(_  dQ4/V  7  7  7  7 !K  OB) %F -    -  ,     , '+3H#32+32+#!"&5463!232!6"&462"&=463232632#  @ P4&&4& ''  @ ( @ ( 00 ( `&4&&4 "" @0<HT2#!"&5463!6"&462"&=463232632#7"=4;2#'"=4;2#'"=4;2#  4&&4& '' >ppppp`p`&4&&4 "" @@@"42"&4264&"&2"&427&'#"'%654&"6322632P88P8L((7ΑΑ8.-%%uu%)@%$%@X8P88PX((ԑΑ0& '$4@SuuS@44 '<2#!"&5463!"&46;2#"&462"&=463232632#P ` ` 4&&4& '' `0``   &4&&4 "" @$0<HP2#!"&5463!3&54632326327"=4;2#'"=4;2#'"=4;2#"&462  !''9ppppp4&&4&`p ""P@@`&4&&42#!"&54635!3!2```v !"&463!2@    &2+#!"&546;54635!%!32000@00`@0%/&//+"&=/&4?5/.?&/&?'.?>7'&/&6?'&?6'&6?65'&?6546;276?>76/76'  H;    :H  ' '" PHHP "''  H:    :H  ( '" PHHP "] "Q*T; . . ;2'3'&+"!7"=4;2#    R" d"^L  P  P  9  9`P0 @$4<G%#!"&546;#"3!2=!"3!2=452#!"&5463"&4627676! tZtx""1((hH 0 P0_""((hHP12#!"&546;462&"2644++"=#"3!2PP&4&6x* *`&&lT$ $"2"&4264&"74;232/&6;ΑΑuuu ( CddCΑuuu tdd"6462"$4&"27+/&?632Α/uuu- tddt YΑΑuuu( CddC""&462264&"54;546&=#"Αuuu- tddt 'ΑΑuuu( CddC""&462"264#"=#"&?6+gΑΑuuu( CddC8Α/uuu tddt C!$2"'&?63#3%3'#37'377#d dM94D44?D4dxD3aax4U0``````%5E2"&454+54+"327#";22#!"&54635"&5!#2!46P88P8@   0%`%%%0B\BB\fX 7  @ %%%%72#!"&54634#!"3!2'//&?'&?676`ll==  ==  ==  ==  `vT==  ==  ==  == +>62"&462"&462"&4&2#"'#"&7>7&54264&"6?Ԗj/.AJ 5Vzzz(  &zz. %8FV^^^B3*   '92"&4264&"$"'&>276&"&46272/&"&7>ΑΑuuu6//!f!% & Αuuu$ 99 ''A)    3H2"&4264&"62&'&".?"&547'.>6"&5"'&>?6ΑΑuuuj">'  P  P Αuuu) q     @    +GO2"&4264&"6"/"&4?'&4627626"/"&4?'&462762"&4ΑΑuuu        4&&4&Αuuuk    L    &4&&4 '/7?K2"&4264&"$2"&4264&"62"&4&"&462264&"62"&42+"&463ΑΑuuuB//B/<((&X/B//B5((&   Αuuu/B//BQ((,B//B/((,-2"&4264&"6"&46:"&42'&"&76ΑΑuuuN<= 141 Αuuu]"   /6=AEIMT[2"&4264&"6"&462"&4622+"&=4635#375#"5#75#5#75#5#326=4&+ΑΑuuu(  h000p000h( Αuuuc#  ` ( ((((  '/2"&4264&"%6#".'&62&"&462"&462ΑΑuuu2 M)6( )Αuuu" ".&  N #+97"'&'6762"'&'6762&2"&4264&"%6"&'&62qΑΑuuu2 MRM ) "" "" "" ""ڑΑuuu" ".."  4E2"&4264&"%6#".'&62'&7>32/&"7&7>2/&"ΑΑuuu2 M)6( ) #  & #&#  & Αuuu" ".&  V  ))) +EZ"&5476".'&62766/&"'&7>27"&4632&#"2654'2$"'&7>32/,..6' )) M`  & #&#d ΑgC:2:Suuu &  #   "E E%   ".)),%(gΑ" uuuS!  ) 4<D%6"&'&62/.7>7>7/&67676&2"&4264&"b MRM )pFF   ΑΑuuu ".."  > FDF  Αuuu,:2"&4264&"%6#".'&62.?'&63'&4?6ΑΑuuu2 M)6( ) !!PPPP !! Αuuu" ".&  /((0000(( /;JYh76"&4767&67632&#"%67#"'67327>'&76762+&/.?"'&?6367>'&676u /")7Hg<5/6S:.{$9Ig30)-S:1C /"   4  Z4  4  &.:T&@R"/6D6I;-E9I;0TR"/s Z  4Z  4p/%T:6P2"&4264&"%6"&'&62'7'&6?62/&%/&?'&6?62ΑΑuuu2 MRM )# ## Αuuu" ".."  G#  #N ##  %5CTi76"&476"'&'&6"&'6726%&>2&.""&'&62766/&"'&7>2&"'&7>32/u /"M"/ Rl #l~l# _r_ 'Em~mE& ppRM ))   & #&#&  #  R"//"R P 2;;2 1;;>f;;f? H``."   "|))"  );CK2"&45'&"/.32>>54&"&=&'&6276&2"&462"&4ΑΑ8  %1;uu;1 )) Α,    +'_9SuuS9_ ,   , ;HU2"&45'&"/.32>>54&"&=&'&6276/&4?&?'&6ΑΑ8  %1;uu;1 )) !! PPP !!Α,    +'_9SuuS9_ ,   , ((0000((!)1Ge2/&"&7>2"&4264&"62"&4&2"&45'&"/.32>>54&"&=&'&6276  & %B//B/<((&ΑΑ8  %1;uu;1 ))     4/B//BQ((,Α,    +'_9SuuS9_ ,   , %-52/&"&76"&4626"&'&622"&4264&"4(% & Z MRM )ΑΑuuu    $T ".."  6Αuuu)19A2"&4#"'&?64/&4?64/&762"&4264&"$2"&4##) ΑΑuuu q     %Αuuu#EU2/&"&7>&2"&4264&"%#"'&?64/&4?64/&7662/&"&76#  &   ΑΑuuu##) &#  &  ()  Αuuu     )!4<Ol%#"'&?64/&4?64/&7637&"&7>32'&462"/&>7676#"&4632&#&'654&"320##) F &   %ZS   /4ggg  uuuS-      L    ! S  1(Αg.,  Suuu-2"&464&"6"&462"&4622+"&'&63ΑΑKuuuuE..EΑuuuuS -<<- /=2"&464&"2/&"&76&7>2/&"2+"&'&63ΑΑKuuuu&#  &   #&#  & E..EΑuuuu0)#))M -<<- )72"&464&"/&4?6&?'&62+"&'&63ΑΑKuuuu!PP !!PE..EΑuuuu(00b((0R -<<- !)72"&464&"2/&"&7>"&4622+"&'&63ΑΑKuuuu & lE..EΑuuuu$    2S -<<- 2"&4264&"62"&462"&4ΑΑuuukΑuuu)1CO2"&4264&"$2"&42654'"&547&"&4622654'"&5472+"&463ΑΑuuu<**<*7"@*<**3262/&"&762"&4ΑΑ8uu8-f- &  %p(% & >.!!.!Α:PSuuSP:r    2     * D&4&&4&.92"&4264&"72&'&#"&46&"&46262"&46"&54ΑΑuuu<&& As$"Αuuu#.@-P14E2"&4264&"%>"'&>2''&7>32/&"62/&"'&76ΑΑuuu//!f  #  &&#  & Αuuu 99 '  )%)'2"&4264&"62"&46"&46:"&4ΑΑuuu4&&4&Αuuu;&4&&4{)82"&4264&"$/&4?&?'&62'&".76ΑΑuuuC !! PPP !!PHC #r#Αuuu((0030((0J6'  'V6"^&! , 1U 4 6Q  D 6& Lz 0 X: . &  E 6] & Copyright (c) Font AwesomeCopyright (c) Font AwesomeFont Awesome 5 Free RegularFont Awesome 5 Free RegularRegularRegularFont Awesome 5 Free Regular-5.11.2Font Awesome 5 Free Regular-5.11.2Font Awesome 5 Free RegularFont Awesome 5 Free Regular330.498 (Font Awesome version: 5.11.2)330.498 (Font Awesome version: 5.11.2)FontAwesome5Free-RegularFontAwesome5Free-RegularThe web's most popular icon set and toolkit.The web's most popular icon set and toolkit.https://fontawesome.comhttps://fontawesome.comFont Awesome 5 FreeFont Awesome 5 FreeRegularRegularFont Awesome 5 Free RegularFont Awesome 5 Free RegularFont Awesome 5 FreeFont Awesome 5 FreeRegularRegular      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~heartstaruserclocklist-altflagbookmarkimageedit times-circle check-circlequestion-circleeye eye-slash calendar-altcommentfolder folder-open chart-barcomments star-halflemon credit-cardhddhand-point-righthand-point-left hand-point-uphand-point-downcopysavesquareenvelope lightbulbbellhospital plus-squarecirclesmilefrownmehkeyboardcalendar play-circle minus-square check-square share-squarecompasscaret-square-downcaret-square-upcaret-square-rightfilefile-alt thumbs-up thumbs-downsunmooncaret-square-left dot-circlebuildingfile-pdf file-word file-excelfile-powerpoint file-image file-archive file-audio file-video file-code life-ring paper-planefutbol newspaper bell-slashclosed-captioning object-groupobject-ungroup sticky-noteclone hourglass hand-rock hand-paper hand-scissors hand-lizard hand-spock hand-pointer hand-peace calendar-pluscalendar-minuscalendar-timescalendar-checkmap comment-alt pause-circle stop-circle handshake envelope-open address-book address-card user-circleid-badgeid-cardwindow-maximizewindow-minimizewindow-restore snowflake trash-altimages clipboardarrow-alt-circle-downarrow-alt-circle-leftarrow-alt-circle-rightarrow-alt-circle-upgemmoney-bill-alt window-close comment-dots smile-winkangrydizzyflushed frown-opengrimacegringrin-alt grin-beamgrin-beam-sweat grin-hearts grin-squintgrin-squint-tears grin-stars grin-tears grin-tonguegrin-tongue-squintgrin-tongue-wink grin-winkkiss kiss-beamkiss-wink-heartlaugh laugh-beam laugh-squint laugh-wink meh-blankmeh-rolling-eyessad-crysad-tear smile-beamsurprisetired k%ٮ*ٮ-ruby-prawn-icon-2.5.0/data/fonts/far/far.yml000066400000000000000000000057751354577744400207210ustar00rootroot00000000000000--- far: __font_version__: 5.11.2 address-book: "" address-card: "" angry: "" arrow-alt-circle-down: "" arrow-alt-circle-left: "" arrow-alt-circle-right: "" arrow-alt-circle-up: "" bell: "" bell-slash: "" bookmark: "" building: "" calendar: "" calendar-alt: "" calendar-check: "" calendar-minus: "" calendar-plus: "" calendar-times: "" caret-square-down: "" caret-square-left: "" caret-square-right: "" caret-square-up: "" chart-bar: "" check-circle: "" check-square: "" circle: "" clipboard: "" clock: "" clone: "" closed-captioning: "" comment: "" comment-alt: "" comment-dots: "" comments: "" compass: "" copy: "" copyright: "" credit-card: "" dizzy: "" dot-circle: "" edit: "" envelope: "" envelope-open: "" eye: "" eye-slash: "" file: "" file-alt: "" file-archive: "" file-audio: "" file-code: "" file-excel: "" file-image: "" file-pdf: "" file-powerpoint: "" file-video: "" file-word: "" flag: "" flushed: "" folder: "" folder-open: "" font-awesome-logo-full: "" frown: "" frown-open: "" futbol: "" gem: "" grimace: "" grin: "" grin-alt: "" grin-beam: "" grin-beam-sweat: "" grin-hearts: "" grin-squint: "" grin-squint-tears: "" grin-stars: "" grin-tears: "" grin-tongue: "" grin-tongue-squint: "" grin-tongue-wink: "" grin-wink: "" hand-lizard: "" hand-paper: "" hand-peace: "" hand-point-down: "" hand-point-left: "" hand-point-right: "" hand-point-up: "" hand-pointer: "" hand-rock: "" hand-scissors: "" hand-spock: "" handshake: "" hdd: "" heart: "" hospital: "" hourglass: "" id-badge: "" id-card: "" image: "" images: "" keyboard: "" kiss: "" kiss-beam: "" kiss-wink-heart: "" laugh: "" laugh-beam: "" laugh-squint: "" laugh-wink: "" lemon: "" life-ring: "" lightbulb: "" list-alt: "" map: "" meh: "" meh-blank: "" meh-rolling-eyes: "" minus-square: "" money-bill-alt: "" moon: "" newspaper: "" object-group: "" object-ungroup: "" paper-plane: "" pause-circle: "" play-circle: "" plus-square: "" question-circle: "" registered: "" sad-cry: "" sad-tear: "" save: "" share-square: "" smile: "" smile-beam: "" smile-wink: "" snowflake: "" square: "" star: "" star-half: "" sticky-note: "" stop-circle: "" sun: "" surprise: "" thumbs-down: "" thumbs-up: "" times-circle: "" tired: "" trash-alt: "" user: "" user-circle: "" window-close: "" window-maximize: "" window-minimize: "" window-restore: "" ruby-prawn-icon-2.5.0/data/fonts/fas/000077500000000000000000000000001354577744400174115ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/fas/LICENSE000066400000000000000000000030141354577744400204140ustar00rootroot00000000000000Font Awesome Free License ------------------------- Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. Full Font Awesome Free license: https://fontawesome.com/license/free. # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) In the Font Awesome Free download, the CC BY 4.0 license applies to all icons packaged as SVG and JS file types. # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) In the Font Awesome Free download, the SIL OLF license applies to all icons packaged as web and desktop font files. # Code: MIT License (https://opensource.org/licenses/MIT) In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. # Attribution Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font Awesome Free files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally. We've kept attribution comments terse, so we ask that you do not actively work to remove them from files, especially code. They're a great way for folks to learn about Font Awesome. # Brand Icons All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa. **Please do not use brand logos for any purpose except to represent the company, product, or service to which they refer.** ruby-prawn-icon-2.5.0/data/fonts/fas/fa-solid.ttf000066400000000000000000005677301354577744400216500ustar00rootroot00000000000000 PFFTMȔPGDEF*OS/2C8X`cmap$*/ gaspglyfT +`headG.Q6hheaC$hmtxil locanFPmaxp%S8 name$&,|+post 1.J|"_< ٮ)ٮ-P @LfGLfPfEd.T: @`@@@@@@@`@@@@@@@@@@@@@@@@@@@@ @ @ @@`@@@@@@@@@`@@@@ @@ @ @@@@  @   @@@ @@@@@@   @@@@`@@@@@@@@@@@@@@@@ @@@@@h@@@@@@@@@ @@@@ @@@@ @@@@@@@@@@@@@@@@@ @ @@@@  @  h>DN[^n| ".15:>DFKNY^e -69IN]lwz (8[]`b46:JLPScmy}!AHP^`p  $037=@FJMP[` !38@MQlqy (7X]`b369JLPScmy{|{zywjihd`]TSRQNEDCA?431,+%"  jigfH&   } | { z t f a ] [ Z Y X P L J H F 0 % $ # "               z w u t r h g f e d c ` ] [ Z W U N M K A @ ; : 4 1 , (        | n c b _ ] N E : 9 6 5 , ' L`dHp  < D$LHp<|p8\ \ ( p ! !""\""#D#|#$0$x$% %l%& &&'x'() ))*H*++,`,,-../</0,11t1333445<666708 89\;?8?@@AAB$BC|D4DEFTFG<GH$HIpJJKDKLMMNhOOP0PPQlR8STUPUVTWWWWX$XTXXY,Y\ZZ[,[\\] ]^L_@``aabcpd8deXefXfglgh|hii\ijjjk,klXmm(mn(no0pqr$rsTst,uuvtvw,xxy<z z{t{|}8}}~X~ ph$D`0Hd\@$ X08ddP ,`||TPD h4@<8T`l\T@d| ` 4@0¼üŤ,Ơ\P0̈ͤ4DМѤpP,Ԑ՜L t|ڨ$h`޴8|8h l(t,\H|T\$D`t| 40<  $   x   @  0 \\H@\ t@|L\,tD  !h!"#l$@%P&&P'''(t)*X*+\+,4,-X.H/X0@112D23l4456P67|889T:D;,;<==|>$>?l@A8AB<BCDDEFGHXHJ<K,KL|LMDMNDNOP8PQRRS(TUUVhW$WX(XYDZZ`\]^^_@`a atb bchcddeefg8ghHhi(iijljkDllmn,no\oppqlr0sstXuv<vwtwx\xyz{<{|t|}}~4  p\PLh@0,L,Pp<h@dxD84448l84LT4Š hȜtʬhpPЌќҠӴ$thx$T(۰܀p, HX4H@8< hp\|pddH Pd|  H   4 @DX`@P 8 !L#8$T%|&&()P*<*+,|-t..X/80 0l1<1224H5$6x70789,:$;d<<=h>@ABCDEFGHpI,IK\L LN8OOP8QQS`T`U$V8VXXY4Z[[t\\x]^`^_l_`a4abcd|dehfPg,hhjkl|mnnotp,pqr4rrst ttuv@vwxxy`yz{@{|}(}~` `@$Dh32+"546;5'&63!288** 632"&46325"&4632467  8P88(8P88(   %%6%K%%6% !%"/&=#"&46232&264&"d8HVzzz, jKKjKd ,zzzVH8KjKKj"/&6767>/+  +/)k&&k(|+ +|(# '' 162/&?'&6? ( A j  j &g DD g&$"&4622#!"&=46;27jKKjK&7OO7#L#KjKKjkO7**7O /;GS_kw2+54+"!54+"#"&546;;2=!;2=54+";2=4+";2=4+";254+";2=4+";254+";2=4+";2=4+";2   ( (    ( @ ( ( ( ( ( ( (  p ( ( ( ( ( (     P   ( ( l( ( l( ( ` ` ` ` ( ( l( ( l( ( /?32+"&=46#2+"&=46346;2+"&5"&=46;2#(  F     (              0BRbr+"&=46;2+"&=46;2746;2+"&5#+"&=46;22+"&=46346;2+"&5%"&=46;2#"&=46;2#%46;2+"&5 e  e  f  f   e  e  f  f   e   e  e   e  e  e   f  f P  P   P   P    P   P  P   P   P  P  P  P h  P  /?O_7+"&=46;246;2+"&52+"&=463"&=463!2#463!2#!"&5"&=463!2# e  e  e  e }  e            P  P   P   P  P @ P  P   P   P  P 7'&4?62762"%p% $p$aq#7"/"/&4?'&4?62762d   dd   dd   dd   d   dd   dd   dd   5=++"=#"=4;54;232"/&=#"&46232&4&"20 8 8 8 8 d8HVzzz, dPpPPp 8 8 8 8d ,zzzVH8dpPPpP %-+"=4;2"/&=#"&46232&4&"20 d8HVzzz, dPpPPp d ,zzzVH8dpPPpP)9#".54>7632654&'.?>+"&=46;208gCrC.  bFEc$ _  "k=gBrD)L>  "'EcbG'G    h/?O72+"&=4632+"&=463%2+"&546372+"&546372+"&5463 0 P 0 0 0  0  0    ` ` `    `   `    <D%/'&=&''&'&?&47'&767667547676264&" &+" 76 "* & ** & *" 77 "* & *B//B/ 5) 1   1 )5 $ 5) 1   1 )5 ##-/B//BAD62+"&=4.+"+"&=%#"/&"#"/&54?62546;2 p @ p " Z8, ` ` 1 JI2"&4?6/54+"ΑΑ1  @ 0 Α ' . E"0B%+'4&+"#"&76;;265'32;26/&+"2>5'4&+"3= D bb((7 . -bb@4,,00+3;3232"/&6;546#!"&=46;2?324&"264&"2P X  X2 0  1*1 |  L      p  p 11j    @%#!"&=4?>3!23373'8 j  U{ p {U    +@@<2+"&=46303.#"3267632#".54632'41463eU'IggID")-.CsBfIA/ .gg"  BrDf)R*T4146;2+"&=463.#"+"&545>322676;2#"&'1+"=46;2#'/ fU':d  1ZIA9d 1Z0n/ fV / .O8 Ws)O8 Ws3$R / .'3?K!"&5463!2"264"264"264754+";254+";254+";2`"""""" `h""I""I"" T T %2#!"&=46;5462#54&"Y~YP*<*H?YY?HH**H'276#"&#"+"&5&54662^0E;?$h>4  "!Gh]  )#^  ! #12+"&=46;254&"6;2+"&/.=4Ԗ A-  /!qq!/  -A j0-? "OqqO" ?-0j6/#"&=46;  Yf  fy  Y #6/#"&=46;.6764'.>  Yf  f    x  Y  )0)  . @'>P6/#"&=46;%.67>54&'.>&'&67>4.'.>.6764'.>  Yf  fB;2324&"26"&462`X   ~ XFdFFd&4H44H0 ! !dFFdFH44H4-0%2+"&=46;'#32+"&=46;>;2'3'     0 ^/     @@     j %-%+"&=46;#"&=46;2'3264&#264&+MR6   9LW W?$4F 0  0 T9$a`(!.!p@#+32+"&=46;#"&=46;2@ ?P/  ?P/        @   C-I2+"&=#32+"&=46;#+"&=4632"/&6;5#"&?62+0   8(  (8    PP 00 PP 0 `      0  ` PPPP-I2+"&=#32+"&=46;5#+"&=463&=#/&4?63546   x  x   [PPPP P p     p P PP 00 PP 00 /?7"&=463!2#"&=463!2#2#!"&=4632#!"&=463  `  ` `&&&&@         /?2#!"&=4632#!"&=463"&=46;2##"&=46;2 `  ` \         @((((/?7"&=463!2#2#!"&=4632#!"&=4632#!"&=463   `          &&&&/?%2#!"&=463%2#!"&=463%2#!"&=463%2#!"&=463 `  `  `  `                  /?O_72+"&=4632+"&=4632+"&=4632#!"&=4632#!"&=4632#!"&=463P @ @ @ @ @   @  @  P @ @ @ @ @ @ @     @          +;K7'&4?62#!"&=463%2+"&=46372+"&=46372#!"&=463e``D `  ` U`` -     &&&&      +;K7&=462#!"&=463%2+"&=46372+"&=46372#!"&=463`5 `  ` U `     &&&&     @2#!"&54636/5P"#n &  K")"&5463!2"264!5'&'&`.!!.!hX8H H!.!!.pX8H.5462"=" pp "=6#X$5"PppP"5$X#  6462"7264&#ΑgLllLYΑΑ@ll`!"&54>762264&#"&54&"6,!gg!-5- !/  B4_6I&JhhJ&H8^4@  /! .B@ 7.?67/&?624?6#!"&5463!2+!Z\   $Z$ ((@mZ  \ #Z# (`(@4;276/+"@ 0 %% 0   54;27676//+" ( %%%% ( h     7&4?6'7&4?6' %%@ %%      %&546136#"&546;2%+"&546;2`````0`2#!"&5463` %&546&546 %%@ %%  @  @ +"=&=&54654654;2 ( %%%% ( t  @  @+"=&54654;2 0 %% 0 X  %#!"&=463!2%"&?62#   p*@@  @ 399%?62"/&4#%%"/.?'&6?62#2"&454+54+"#";;2=32ΑΑ \ 8 \ \ 8 \ Α΃8 \ \ 8 \ \2"&4!2=4#!"ΑΑt ΑΏ 8 8 #2"&4'76/&'&??6ΑΑrBB( AA (BB( AA (ΑΨAA (BB( AA (BB("&46276/&'&Α΄  F  h 'ΑΑ  F  h +3"&462"7>32;2=4>54&"264Α`J+ #    8 H &&'ΑΑR@     &*<&&'2"&4$"26454+54+";#";2ΑΑ "" @ X Α#"" d  @  (PX%2++"=.'#"=4;>754;2>7#"=4;.'+"=32+54;24"&462 3N. ( Fe   eF ( Fe ,? ) ) ?, ( ,? ) ) ?, (  ( .N3  eF ( Fe   eF ?, ( ,? ) ) ?, ( ,? ) y 2"&4.67ΑΑ`4&`4&Α` &4` &4%"/&4?62!2#!x  xs s762"/&6?!"&=463!'.x  x}s s7'&4?62&/+"&5#s sx  x%"/&4?646;27>s sx  x&='.54>7546 1D2  #02LP4  X *@+ U,,B) P !2C546;2++"%4;2+"=#"52+"=4;543+"&=4;232 | T (  |  ( T  | T |  ( T  |  ( T  | T |  ( T  | T !2C#"&=4;232%+"=4;54;2+"=#"=4;2+"=46;2+|  ( T  | T ( ( T |  (  | T | T (   ( T X T (  | |  ( #%2++"&=#"&=46;546;2            %2#!"&=463     6%/+"&?&/&6?'.?>'&>;276  &   &  r " T  T " NN " T  T " N"&462"264';2574&+"ΑT&&Z 0 @'ΑΑ&&  .9C353#"&53#2#!"&=46;&54632>32!3.#"3264&#"      , 4$..$4 V#!     @ P P $4 $$ 4$5  "$%@'&'.7>3264&#"&546;26762"u8[5  @Q}G upPP/OBN .%,.  />0"  TPp/)!"&547632654.676#11#qq7 %& "2,2M/OqqON9 U&% "*=% @-%#".'&47>22654&"72"&54732654'6=*[32'654&#"654'6320@ 4)%[*i'@_57[* 0IT<6I '80) aPQ%=#:c  aP<9;2BBri B 1g+(   (+g1B i'2' : ll : !-9EQo!#!"&%;2=4+";2=4+"';2=4+";2=4+"';2=4+";2=4+"2!546;546;23546;2@ ( ( ( ( ( ( ( ( ( ( ( ( P@0     ( ( ( ( t( ( ( ( t( ( ( ( @000 00 0;%&=#"/73546%"=4;2'!#+"=4;76;546&5P ;F55  c oF55 o T; PP YP (K:9( g 8 K:9 8 ( PP 2#"'#"&'&>7&54Ԗj83AL9zz319JV?#"&=46;2%+"=46;232".54546;226=46hY hNt{tO2<2,PP  P|, Ht;;tG14-44-4;E/&/&4?62=;E7'&4?>76"C}!C%"/&4?625#"/&6;2762+"&="/&4?62"/32vee (   (   ( ee ( hdd +  +   + dd +B.%#!!2"&547#"&547#"&=46;2!2  !.!!.!FF  g     #!!!! W   - 2#!"&546;`@@ @D %#!"&?>3!2%"46;32=I!pI!T  E@|  | 8 v@0/?T%"&=46;2#3"&=46;2#!"&=46;2#3"&=46;2#2#!"&546;2M&:&&:& 0    FF@    P -5=M!2#!"&546";2=4#2=4&+"#"3264&"62"&4265463264&#"0` t@ dFFdFTH44H4!   &`  `J -$FdFFd4H44H4    &"*#"'+++"&=4?&54>32264&"gI % ( p  /Q0Ig((Ig( (  N 0Q/g((;C'&'&?&'#"'&76;67'&767667632+/'>'&/'.=&''&'&?&7'&76766754676276>.6'&'&?&'#"'&76;67'&767667632+/'>'&            & & g" !  &&  !!  && "{#0#0             & &                     > # # (  ""  '   '  " "  & 50#0#                    > # #B+#"'#"&'&767&5462#"'#"&'32654'zV<3+.&z.+3<@hc9HB^")3B^" 6,qO Q13  &?'&6?6  j A HD g&,%+"/&=#"&546?#"&=463!2+*&   0& *    * - h00h $<v 0  0 @19A232#!"=46;5.'&'&=46;5463!2&'#%5#676( >0>%0% %0$>0> h   @@ # 88-"4H H &"-88 (  ( )--) /7?%#"&=#"&?62+7#!"&=46;;26=324&"264&"2(P X  X 0  !P! |  L  @    p  p !!j    #7&.7>&>676>.2327>"  'BF:;-+ +"  'BF:;-+  4j  ^"+ +-;:FB'  "+ +-;:FB'  c j4 ,^#"/&?6>7'&?6p 1;[<0h0<\:2 p.2#!"&54632654/"#"'&#".x A %#KF `x  FK#% A &%2#!"&=46;5462+"&=4&#"Y}Z +*f@ZY?  *+g@ !+=!#!"&7;2=4+";2=4+"!5463!2@  H H X( ( ( ( 0016"&462+"&5.'"&=463+"&5.'"&=463%5&&5 0 wT t 0 ː VsF;5&&5%o Tw 0 t  0 Gr@&.%#!"&=463!2'!"7>3!2&"264&"264@ 0 a  a3s``<  `@,4$#"/&++"'&547#"&=46;2?632#2@  UBU K"%%UBU @!TkkTJ D5+"#5:%`%5D C`C;%//&/&?'.?'&6?'&67>7676.  ?> -- >?  ..  ?> -- >?  - >? .. ?> -- >? //  ?> '7?%+#*#"&'.=47>763232+"&=46;24&"2d  ##G E   ` 0  0    +% $  -+     &6>3&'&632#*#"&7.7.7#"&54632+"&=46264&"-   E G#('  d0  0   $ +-  $$#%+     '7?2666+"'.'&54654632+"&=46"264 +%#$$  -+     d  '(#G E   ` 0  0   &6>5&547>76;2'''#"&546;2+"&64&"2\ +-  $$#%+        E G#('  d0  0   %"&462'326=4&+764/&"2?64gΑΑL  L  8ΑH  H  %2"&47#";2?64/&"ΑΑL  L  ΑH  H  %6462"'7;26=2?64/&"2ΑH  H  YΑΑL  L  %"&46254&+"'&"2?64/&"ΑH  H  'ΑΑL  L    "+17=#>2473#%#&'%#>#64'#&4733"&673%3.P 0:0Bl#5S$lSk rr r( 0:0$lSl#5S DTT@ @ \2K[2\3K !>!@"!>!!DTTJ2\3K~\2K$'"&4?&67>76264&" P&5% J$J DK <S$I %5%Q  KD J+3CSc"/&4?62762"/&4?627622"&4%2#!"&=4632#!"&=4632#!"&=463I / @ H / @ \((         H0 ? H/ ?((     @         2/&='&63  P   8 ι '+%53#!"&=3;2672!546;546;2#5#@` ` P@p00 PP00 ;%"/&6;5#/&4?635#"&?62+3546&=#32`OO 3e OO e3 OO 3e OO e3 OO e3 OO 3e OO e3 OO 3e&:H6"&462"&4622+.'63*&4622#!"&=46;27'#"&=46;2z4&&4&4&&4& & B \BB\B#0CC0 !F!(B &@&4&&4&&4&&4F& *! B\BB\bC00C :# &%K"&4?62?64'&'&5&?66&'&'&?>'&"&'&4?6G,,D,~Y,&  <C  jY,&  <C   ,,D,-~,D,Y~,&  ;C<  Y~,&  ;C<   -~,D,%#!"&5467454632632.K5`%6%%6  h 2#!"&5463`/"&=463!2#"&=463!2#"&=463!2#  `  `  < ( ( ( ( ( ( '7G2"&42"&42"&4%2#!"&=4632#!"&=4632#!"&=463((((((  @  @  ((((((     @         *:JZt7#"'&?63254+"/&?67#"=4;20%2#!"&=463%2#!"&=4632#!"&=463'"=4;5#"54?6;232#"=4>54#"/&763232#>  9   @  @  D       '/                  @X    1T%2#!"&=46;&'&54>;2#"'.+"3+"./&54?632;2654&   f!9"D C +  B W^H4D.%  +  B     "9!)   ` 3I!   /?"&=46;2+26=#"&=46;2+"&=2#!"&=463    /B/    ^^p `      !//!     B^^B     2#!"&54635#75#5#75#``````````'+/?/?/?"/&47627'  5555E5555b  U l  ;W3V`  `555555  U  l V3W'/7<%2+"&5#"&5#"&5463!232264&"264&"75'#p 08P88P8@,d,((\((d,`   (88((88(@0dlp(((( dp!&+2#!"&546334ᒑ#264&"5"75#`   @%%@B//B/`%@@%  @ %%8P88Ph@%@%W9 !2"/&6    `9 %!"&?62!  `  'Y /&4?6  A  'Y 546&  ?  2#!"&5463#!#`` 3 732"/&6%+"&?62) ww   w ww i  w 3 732"/&6) ww  ww  4 %#"&?62 ww  ww :6#!"&=4632>76".#&'&=463!2"`!y  vz4  1}X  Ue Y(  &[ +7#"&=4;2>3#"'&?63264&#"32 0 #a6gg_G " 2BIggI+Jb N'+͑@ ",gg'!07%"/&4?'"/&4?627'"/&4?62762|(Q s  . s  Q(}q}(Q  s .  s Q(|qD2#"&?#".?>;2( .w    *      5EU72+"&=4637#546;5#"&=46;2+32#5##52+"&=463!2+"&=463  `  H0(   (00H  `  P  `  ` `  ` P0:@ `  ` @:000P `  `  `  ` B-C%'."'0.#""'.&7>75462632#"&'&>3265@ 57   ( 74 \\/!*     #+ '"+$ cz    zx!/  /8#"&546;6232#"6"2643+"&546;7#532h  QJQ !*h  r` B P   H!y  0 h &`B` 053+"/&46320#41&'&7264&#"26546` > `dKJg,%%, .B  /&&  GigIB2+00+2  B. !/U$"&462462"7#!"&=4672654&'527267?6/546?6=4&'jKKjK6J@0!.! :$00 $KjKKjN5--1KQ!!R .,,  *,BJ2#"&'.=46?6326='.?>326=&7>264&" gIGg7I ?  9('8  ? I73.B!$  P%qEc_D Y9    {(8:'z    9X .=+q&%P   !46;235+32#"&546;00`00 p P`+"&537#!".54767>546754624&   H8%:!@%q   C,:V   ,B&,C'7"&=463!2+##3264&!"'&763!2(8 5KK5 8( &&! H@8( KjK(8 &4&  '3;GSo!54;46;546;23232#";2=432=4+"#"3547#";2=44+";25'3;2=32=4+54+"#"@  X p X  ( ( ( ( t( @4( ( ( ( , h H  H  ( ( @ ( ( TT ` ( ( ( '/KSX%2+"&5#"&5#"&5463!232264&"754+54+"#";;2=32264&"75'#p 08P88P8@,d,((808808((d,`   (88((88(@0dlp((088088(( dp %I3546;2335+32#"&546;4&+54&+"#";;26=3265`  @ 0   0 0   0 `00 P` 0 0   0 0 /%#32+535##'53535'575#5#57335#532+3 ``0u(s0C" 0@@0 "C0s(u0 P E*E P ".:2#!"&5463!254&+7626=4&"26=4&"p!/Q   @ 07   W  `/!' $*    (с E    3#!"&5463!2#"#54&+";26=3;26=4&`p        p`D PP  PP  +2#!"&546354+54+"#";;2=32@ \ 8 \ \ 8 \ `8 \ \ 8 \ \a*?62"/&4&4?62"'````ш`` ``a+7"/&4?'&4?627"/&4?'&4?>2```` ````A+7"/"/&4?62'62"/"&/&47```` ````A)7'&4?62762""/&4?62762````````a?62"/&4 ``ш`` a7"/&4?'&4?62````XA("/"/&4?62`` ``X@(7'&4?62762"`````@#2+32#!"&46;7#"&5463!H   H@00@ !%%2#!"&=46;;267!463!2!p &&  =@ && pP2#!"&5463264&"` @2+"&5463264&"c` 9%2+"&=46;2+"#2+"&=46;2+"^B  &^B  &B^ 0 &@B^ 0 &@92+"&=46;26=#"&=463#2+"&=46;26=#"&=463^B  &P^B  &PB^ 0 &@B^ 0 &@'/7"&4622"&462"&4 "&4622"&4$2"&42"&40(((((((((((B((((((`((((((((((B((2"&4ΑΑΑ)2"&4"264&"26464."'.2ΑΑU #n# -Α ** 6%2"&4"264&"264>'&"762ΑΑU--#nΑ66*2"&4"26424+"36264&"ΑΑΑ  `-5=2#"&'##"&46354+54+"#";;2=32264&"6264&"B^^BC\CB^^BX 4  4 4  4 ""W""`^^^^ 4 4  4 4@""I"" @'3?KWco{)"&5463!254+";2754+";2754+";2754+";2754+";254+";2754+";2754+";2754+";254+";2%54+";2754+";2 \ ( ( ` ( ( ` ( ( ` ( ( ` ( ( ( ( ` ( ( ` ( ( ` ( ( ( (  ` ( (   ( ( ( ( ( ( ( ( ( ( T( ( ( ( ( ( ( ( T( ( ( ( ( ( .4X.'76#"&#"+"&5&546623256%5'5&'&56765767556 2 2;?$i>4  "!Gh0"(#M'##& >&#7.(! ?&#%% *D )"^  ! #HF GH DD GFFDD HFG$%"/&4?'&4?62#!"&=463!2w  0     +'&76'/&?6/&?'&?6=  = } + [[  + [[ + @   * t   . PP / . PP .  @076&76&'/&4&4?61' 3N>!0# 9T x m m  S)F/,U ZR T  ^ ^  6.=#"&67/    /`%- 7%2++"&53#"&5#"&=46;546;27#5376  ( 0 s (  ( 0 s;  ;` 0 (  `  0 (  `;  ;6>FN"&54>75.546267>767.5462$"264264&""264 - 2 /B//B/9 /B/      0** )!//!*!//!*   !///    7  /?%"&4?62?6/&?62/&?64&""'&4?620 -,~Y,- (-*<-( -,~Y,- (-*<-G* -,Y~,- (-<*-( -,Y~,- (-<*-Gz)12+"&=4>7>54&#"/.762"&4Bn%% H  ,+?F:((:(Z@ 1   "  ![)9))9&735#"&=46;232+"&=462"&4 p   6<**<* 0  0 0 *<**<6"&46246;2+"&5/B//Bh ^  B 1B//B/G  S2+"&=46;5#"&54?6;2'2+32+"/+"&=46;7'#"&=46;2763 `   0  !NN! CPPC !NN! CPP     `  ` 0 pp 0 ss 0 pp 0 ssS!2+"&=46;5#"&54?6;22+32+"/+"&=46;7'#"&=46;2763 `   0  !NN! CPPC !NN! CPP     `   0 pp 0 ss 0 pp 0 ss%32#!"/&4762%37 `(|PrD ( `((1}PC@K%2#"&#"".54654&#"&/054&54632>?0326 1 ! $$#%54@p '#$#**" ) 2#$##  0  M 2 20 Ek` <6"&=4627232+"&=46;5.=46;26=463P88P8@ WA8  8AW  B19T `8((88((h 0Bc "   " iD( *3NM80 %F'&?6546326=46;22+"&=46;5.=7z   8(,  L  8AW4/2    -(8,0 0*&   " iD),'" +!2#!"&54%#!"=46;54;2354;232   X 0 ( ( 0  , $4 44 48@6/&5#+"&=4675*.767&632347264&" (  ) < !":   t  !5   L1-  *2#"&="/&4?#"&54?>;>32264&"D< b   3 h 1 h&eH3 ""!2Hd'h 1 h 3   c =C"""&462%2?64/764/&"gΑΑee8ΑVff2"&4'&"2?64ΑΑjeeΑVff6462"2?2?64/&"ΑVffYΑΑjee"&462764/&"'&"2ΑVff'ΑΑeeBBJ7"&?6+5#"=4;5.54632+>7#"&?6+"&'"264 DD#R04 4$9((7$440R#DD `DD'1 (  2(98'2 (1'DDIWWI &2%2#!"&=46;5462+"&=4&#"54&"26Y}Z +*p""f@ZY?  *+g002"&4264&"62"&4264&"ΑΑllljKKjKf4&&4&ΑlllKjKKju&4&&4x$"&46:"&4$2"&4H*<**4&/&7ΑΑl  Α k2#!"&5463!2=4#!", ` 8 8 !"&5463!2'76/&'&`  F  h `b  F  h *!"&5463!23?6/&7'&"?64`97g7 `.98 7A@&="'.54>3546463276#!"&546;2+!8 -?0  +-FJ/   y 3@ H ';( O)*>& H Y`>2"&2"&46.?67GΑΑv B ΑB B #!"&5463!2?6&+"`||p`||5463!2#!"&%'&;26`d||`||!2#!"&54676/&0`||`||BE%#"&'#"&=4;&7#"&=4;>32'&#"32+32+32767  Mp  !oH  (>  r& ", VF  @P, (#      @6%2#!"=4;5#"=4;54632'&#"32+354634 $ O=7/    T T{` h ( ( B7G# $ @ ( 3*A7+"&="'.?6;2654/.'&6;546;22'&+",- :$   0&" B g".A1   0&" B  T-!'0 0"    4"1G0 0"   @4#32++"/&=46;267#"=4;&+"&=43!24I ; 5L9ST' )U ( ` ( 8F5  ( - ( n:232+32++"=#"=4;5'#"=4;'&6;236?63_P: Xl l 8 l lX :PA7 7  % \ \ %  qH%#q)27#32++"=#"=4;5#"=46;54;2'32654&#\ ; 4 44 4 @QQM$((# ( 4 4 ( - OQۖ)#"(@ENRZdh#32++"/#+"/#"=4;'#"=4;'&6;2376;2376;2327#32>?#;'&'#7#136?#4?F U* 9 +7* 9 )T F> 0* m , n .0 x & Q  ' Q ( ( ( Q VV VV Q ( 66/  66   ;#!"&546;#532   Ƞ b8    zb)5>;#!"&546;54+";2=4+";254+";257#532   @ ` b8      L  T  zb5OR72"/&6;46;2%232+"&=4?#"&=4637+"/#+"&54?6;23' PP 0     =8  =8   G  ; * 4 ```0 @  F    F   U  e05OR"&?62++"&5232+"&=4?#"&=4637+"/#+"&54?6;23' PP 0   ` =8  =8   G  ; * 4  `` 0  F    F   U  e0%5EU%2+"&=463'2"/&6;46;2%2+"&=4632+"&=4632#!"&=4630 @ @ PP 0   0           @``0               %5EU%2+"&=463"&?62++"&5!2+"&=4632+"&=4632#!"&=4630 @  PP 0   p           `` 0              5=S"&54?6;232+"&=46;56&/&767.7>264&"2"/&6;46;20  0  `  (>%   $+    PP 0   `  p     @ 1' #2" =&\  ``0 =S%6&/&767.7>264&"'"&54?6;232+"&=46;5'++"&5#"&?62J(>%   $+ !    0  ` P 0   0 P 1' #2" =&\    p     @;` 0`D72+"&=463264&"32#+"'&#"&=47>767632h  P  X e#   *!0H#5    y?#.) M,:$F46;2+"&56264&""'&'.'&=463276;23+ P  P ( #H0$   #e    2:, (+  ).#?$$2"&4++"&=#"&?>;732e6%%6% 8 8 0  %%  %6%%6 h  h   $2"&42++"&=#"&=46;7E6%%6%p  @   %%%6%%6k    /72"&4/"/&?'&4?'&67627664&"P88P8V ^! d0/d !^ ^! d//d !cKKjKK 8P88P/d !^ ^! d//d !^ ^! dKjKKjK".5463276EvEj/7]>J@EuFj^6^y* %3!#!"&7;2=4+"%2#!"&=463   h h          0 0 ?E%+"/#54+""'"&4?&=#"&546;5'&4623762322#4 7=  6(3  3(6  =7  8/  66  /8 \B  <  7 7  <  ;.  77  .;B..!"&5463!26=4&`|| `d||2"&44&"2ΑΑH/B//BΑΈB//B/-C%&/#"&'&54>32+3276'#"&54673267A >  # y9% W5Ig=2B.*?> !  $!   {7/:gI7Y'3.B7):%2+"=&=4?5&=4?54;27676265463t{eP 1 71 7 8   Fbdp )   )  E 3) ) MH3<%#!3#5#"&="=435"=435463352#!226&#"Q//4E (B+*7" "7*+B( E5 4 #$#%@((@%#$# p((@%=2#!"&546322>36754&#!"".'&'3!265 J( (I I  `5    5    5  %9+#!"=#"=4?622#!"=4637335335332!54; x  0 8@@@@@$ ` $@ XX    #./+"&?&54767'&47%67"&57n 8 0 pp!'"U<  s s  "U,q%%q,  `DNe7#?%2#!54+54+"#";&'&767?6'&'6732%463!!"&57;2?3;26/&+" &    @  @ r           ;  <  9 &&! @x             ##l  8  %5EU^n2#!"&546;254&+";26=4&+";2654&+";26=4&+";26=#"&=#'2+"&5463   .                 0        .       y       w@ 0@  @ )5=IUa2!54;463!2;2=4+";2=4+"2=4+"354+"754+";2=4+";2=4+";2 @  P  ( ( ( ( 4 ( t ( ( ( ( ( ( (    8( ( l( ( ( ( T T( ( l( ( l( ( )462"6+"&=#+"&5'&462376x*<**< _    _  VfV Z<**<*P ^  pp   ^  WW (3?62#"&#"#"&546&.'&>.676.7>.>L\>&"LM"&>,/- *,-/ C_&&_j4- -  &A7 !-4 - !7A& 7!6/&=46?7575N h h HNNPB!'+/37%//&=4?54?65'75'57'57'dhhdad d"UwfffUUfffVUUfff n 2442 n $l && lI$E))&K'O''*FK'O''*8U7/;2+".?'&6?67&"/&?6276/.?+/&?6326/&?6 (3 4 4$6 3)  n | $  " j*(  n  (-`P P`  "  Q! ( 0A"QI  --B n5+0 P P 0!,  7APa2++"&=!+"&=&=47#"/&6;7>;2%!'.+":>54&"!264&#":    < "9 9  "N     06   60  * & *22 ! 19BJ%+"&=!+"&=&=46?>;546;232264&"7!'.+"264&"    +   +5   #0$)   )%0#U"  "]C/%++"&?5#"&?#"&?#"'&?>2++z  `  P O nn O F 11 Z [ uu [ ##".=4632"&= "&= ]=g<]=g$ O %+(6V       $/  76 & >"  <E;#!"&546;"&'&+"&'&+";27673;2?6.#7#532   9    % %  & &O b8     es s_  c X b4=;#!"&546;6&+"4'&+";2767;26/7#532   <#%%#<<#"#< b8     ED ]^ =!$ ^b"=72+57#532;#!"&546;4&+";26=:>   7   5(!Q  =     !,9 "-#5323#!"&546;"2645'&'& b  j''( g((Fb0    ((p(h((0*.O#5322"&5467;#!"&546;3533526/&+535#535#535##3#3#y   w   h @ 2  W         &W a!/=F;#!"&546;54&#";67764'&7&7647#532   @$ $!    O    )@ b8    l$ 8 $8  ;  n  N  *ub4#532;#!"&546;4&54&+";26=65 b   ` 7 p  p 7 Fb     7&  p  &7 3G`#5323#!"&546;7654/7654/&#"32032?454/0#"764/&#"327 b  s((AA5>>A((Fb0    $$==1g=$$ !'2"&4%&'264&"'677&'67'ΑΑ?P88P8 @m?@Α@8P88P?@m?#46#"&'46762654&'&5  QiBrCgiQ :LllL: VCrCgV b?LllL?b6/&=6&'.7 H }@ j P 4M Q%,%7#"'.?>3264&#"+"&=46632/546;2gXD 2@LllLI53  2Hcg$A  )'͒7 (ll23  2E3  h K32+"&=46;5#32+"&=46;#"&=46;2+35#"&=46;2#            `         @          !++"&5#+"&=#"&46;2 0     B^^B    p p^^ #Gk%2#!+"&=#"&=46;546;2%2++"&=!"&=463!546;272++"&=#"&=46;546;2    P P   P P    P   P        @                        %%2"&547'#"&46327&5462#"'6`(88P8f"(88("f8P88("ff8P88( @8P8@ (88P8@  @5#!"&5463!2"'64'73264&"&#"327264&`DD!!.!D!!D!.!!p`))!.!!)!.!)!!.!'/7?O"&4632762?2+"43&2"=&?6'&6/&6463264&#"264zzzV-)4M  0. U ; & (8  h4)-Vzzz4 <  +     &  8( %*"&462'7&''77'77'?6'7Αa?"'>KK>'#?&U%>>%U&NN'ΑΑ:T6**6T:B4" MM "4\88\ !-9EQ]iu>#"/&5417&0#"/&54+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2DD + W `` W +` ( ( ` ( ( ` ( ( ` ( ( ` ( ( ( ( ` ( ( ` ( ( ` ( ( ( (  ` ( ( XD11D E# <##< #E ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (  3=A#546;246;#+"&=>%+"&=#532%2#546353` @  `  `    `  `   ` p@00 w   ,$;)%-9)G,,  w 00 #+54622+#5.=#"&=4637#54620 I7@7I p@0p  p   :X cc X:   p  @&2>JV2#!"&546;54632=#72=4+"3!2=4+"3'2=4+"3!2=4+"372=4#!"3( (! ( ( h 8 h  !       `     ` ( ( ,'& /&47>2"&4%'&"/&4762{" nn "W6%%6% " ?? "W%" dd "Q99%6%%6y" 66 "L/?O_o2#!"&546354&+";26=4&+";2654&+";26=4&+";2654&+";2654&#!"3!26P&&&&&&&&&&&`M&&&&{&&&&{ff#/7'&?66754621%#".547>"&53z   %=8H ~   &    p1    V:,C   2%!2#!"&=46;76;2!+"& ` x r       MS82"&4654/.#"&546326?654'.#"32>ΑΑm   #'("$   >R$C) 8Α" 0 !+# R=)B&:F2#".'#"&546326;2>54&#"3276#"&462654&#"jJL *,4Q9* -   jNLllL6-  =JgQ%$|d?T 91BV  y 2JVll (Α))  #?+'754"/&4?62763~~-8 8M )) Ms~~ 8-`8PM )) M,70#"&532762#"/&54>76XF:@@   j UP. @ '%?J8@XC  D:a5  #8#4?JU%"&""&#"#"&"#546;5335335332!526226226323"&546523"&546523"&54652 '/''( '/' @@@@@@''/''/' '  r  r  @ P` @ %& %& %&%2#!"54;2%6!57>  ( 5 ZW U@ ( h hr!#%2/7+5463&'&676  =  Y;23'#"&=46;263&267#"&?&#"?#654&#"&/5KK54K)V 4 E,5KL41  W r3 @ N+J( Q- !//J$"2/! -  -,M55JK48& *6K64K0     }J&v I/B/`x( 0`0"!/H  G,4<LT2+++"&=#+"&="&=#"&=46;5462264&"7!26=4&#!"264&"        0  @ P       P 0".."0]  p'?2#!"&5463&546?6'.676/&&546?6'.676/&`=@RA?S>@RA@R %"4./6%"4./694&++"&546;2+"&52+"&546;23265463!p 0  8P 0  P8  0 p! !  P8 0 8P  !( B3W%!!2#"&'&7#'.'4>7#"&=46;2!2'#54&+"#";;26=326=4&  ! # FF  g   /t0  0 0  0  #! ! W   - ( (  ( (  B3F%!!2#"&'&7#'.'4>7#"&=46;2!2'#54+"#"?6&  ! # FF  g   /y+  +DD  #! ! W   - < <DD<D%32#"'+".'#"&=463267'&6?546;546;232%7625=,  X7 0#7X  ,> F * @ @ * v vK")  ;!;  )"F # (  ( # X&&X26:V%#!"&=467'&6;&5&54767>?6327/77475#"'0326762676#% :@F  F@;  2*2J,42. =#--$><!  1"  "1  !x( (  HWm2'"&547'+#"&7>767&+"&546;23'#"&=46;276;2+6267#"&?&#"%6&#"&/7>4KL64K-   T E,6KH2  8  8EB P& -  R ( Q)!//0"1  22"+K46LK4;')- *6M63H (  &* 7 K/B/L"2Q R "0+$@%"&54672654&'56&"&462"&=46;2732#+"&5pAOԖOA!3zz=3M6%%6%  &   @ v .(88(.  !!%6%%6 `` `   )%3"/3727#'&"'&"#&6?62762@m^9$!w1:$f!$&n''n&,H  %i(7 b V(i%(('' !)32++"=#"=4;5.5462264&" ?1$ $ ( $ $1?TxT/B//B3N 4 ( $ $ ( 4 N3327'&?67'&63264&"t  TxT'B'*# B//B/O  #*KjKKjkO7**7O+6"&462%2+"&=!+"&546;235463B//B/.B       /B//BQB. 00 ` А '/##!"&?"&546;254&#!"3!26"264N4??4NO12N0  0 .!!.!`'92 29''99p  p 6!.!!.'7?G##!"&?"&546;254&+";26754&+";26"264$"264N4??4NO12N h  h  h  h ((((`'92 29''99p  p  p  p .(((( `!%!!535#7232+#!"&=463!5    ` @@ ` `!%!!535#7232+#!"&=463!5    p @@ ` `!%!!535#7232+#!"&=463#5     @@ ` `!%!!535#7232+#!"&=463#5     @@ ` `!!!535#7232+#!"&=463     @@ D%#&/&546.j81 5W wY  H#"32+72#".'#"&=4632=#"=4;54".=4>32>32T$ $T-.T$ $T-.0p ( p1((0p ( p1(,8G32+"=!+"=4;#"=4;2!54;2+;2=4+"54++;2 ( (  (  (  @ T H @ (  ( @ (  ( H 4 @+]7+"=4;5#"=4;2!54;2+32+"=732+"=!+"=4;53;26=4&+5354;2+@44 4444 @  h44444@44H  @ H4%"!"&5463!2+538    b     7b !2#!"&54633#!"&546;0/ `0 !/47c%"&5054676762'3#"&505467>762'3'2#!"&=46;&'#"&=46;6232+KjK  <  H";#5K    <  ȐH ` & N &p!//!<4&(59 %/!<  (59      ')     )*02#2#!"&=463467.5"&=4634&"h  D55D   D5#7  =V=  CkkC    Ck 8O-  @;UU;*062#2#!"&=463467.5"&=463."65#h  D55D   D5#7   2<2   CkkC    Ck 8O-  $,,$""*02#!"&=463467.5"&=463!2265#hD55D   D5#7  P V=CkkC    Ck 8O-    U;;*2#!"&=463467.5"&=463!2hD55D   D5#7  P CkkC    Ck 8O-    ?2+"&=4/&=463254632354632354632346  0  p p t  d+B00/ 82+"&/&>54>32354>323546323546   } !     @  q ! ,     ױW.4635#"&46;5#"&46;5'.7>7>+"  в $  p P ""(E K @  @&54/&+"&=46;26?6&+"&=463!2 p  %| ! N  =G % 3 !  t7+"/.>5'&>763'&67637>376 $ ! =' # 0 40 , c * Y ~ ! 9P  -159%+"/&>46235462354623462#37#37#3  ! """"XX`! ,((a`````-$2+"./&6?'&>354623546234"  @ K%$E("P p  $   `G2++"&=#"&=43+"/5#+"/#+"&76;236?6;2U6U t 6    2   6 A + + A `++ 6"UU6 ( 5  *%+5326"&462&'654+";26=3;26ۑΑ+&jG   ,8 'ΑΑO2Y  HS #'2+32#!"&=46;5#"&5463!P `      @ +G!"=46;54;2354;232!2#!"&544+54+"#";;2=325X 0 ( ( 0L H < ( < < ( <  $4 44 4$  < < ( < < +7!"=46;54;2354;232!2#!"&542=4+"3X 0 ( ( 0L <  $4 44 4$  ( ( +G!"=46;54;2354;232!2#!"&5476/&'&??6'X 0 ( ( 0L  0  00  00  00   $4 44 4$  0  00  00  00  +;!"=46;54;2354;232!2#!"&54'&'&?6X 0 ( ( 0L Y j.  R   $4 44 4$  ` j/ T 6#!"&546;276  0  p      XD  727"/2"&4724#"2546p xTTxT &6(!!TxTTx6& ($9#!"&=46;546;23253+"&2#!"/&?6;53 +      @     + + @k ,  P   9pp  P  , , @ 4>?&576   J 8? 0@ 82+&=#"&5463&&} `&&&&^T& &'2"&454&+";26754&+";26ΑΑ 0 0 p 0 0 Αη    2"&454&+";26ΑΑX   Αη  !)3#!"&535462#354&"264&"264&"``/!!/`KjK&4& !//! 5KK5 &&@*6BN%+#!"&/#"&=46;7>3'&>3254&"26754&"26'54&"26@     CkPPkC p       mm  p  p  p  p  p  p CG+32++"&?#+"&?#"&?6;7#"&?6;76;2376;2327# OK P (b )K OK P (b )Kc ( V RV R ( ( V RV R -6"&462&"2642"&4264&"32+"&76\BB\B\((\BB\B\((h  " pB\BB\^((B\BB\^(( 0   G"264$2"&462"&46"264>."'&67673>'.56VzzzΑΑpppR HLH 5       zzzΑYpppDM   /A.!!.A/ B#"/67'&/"&462&/&#".?5#"&=76;2|}~? $$$ofB 6 = ?Ú  X<$$'l  P  _O 7G7#76772+57#!"&5463!2'&+";2?3;2>74.+";26  /`9 $9 4 -99.5 1b_   T+4!3CS.676#"#'7232#"/&764'&?67/&764'&?6/&764'&?6a@-.? @  8 8  @   _--  %%  &  ;@@ ( Q ZZ Q ("V66 -t- 7#X# B '/7?GOW_6"&4622"&42"&42"&42"&42"&42"&42"&42"&42"&42"&42"&4%6%%6(6%%6%6%%6%6%%6%6%%6%s%6%%6s%6%%6s%6%%6S8@H`d7"&5462"&54&"&2#"&4632654>54&""&542"&42"&4%"&54=.'.7>'7/B/1g?-  FdFSmQ@  Qf"P"  !//!  gI+ -?%&2FF2  Im  Do  V"P"2At&2#2#'&/&?6766766&#"32763&%.6767&'&>767'.7>7"'&63"&7>376"#32654&# != +^C,:) F "(  -+ %    p:) F "(  -+  != +\C   3   !Y !JZ9    A 4!JZ9     3   !G8DQ7"&5462"&54&"&2#"&4632654>54&""&54%/&?6"/&?6/B/1g?-  FdF W W      !//!  gI+ -?%&2FF2  I W W   2?k46;5#"&546;5#"&546;5#"&746;'.>+"&7'&6767154/&'&6767'&6767'&676'&>[ >~    }    | Pk I%   ={4 N^ _M g$    Z  .   #  0 ZC  cy  zb  &  @-E%&'#"/&'&767'&6?6632654&#"6"326591W+ )w }q<1W+ 5(*Y"P8*&    T+: e :(fT+: H W'38P    = (/7W2&/76'&"&'&4757633#"&5:64&"3#&"264///#576;? 7  P " b `@ )  `        5[7 TR; 7v I  ! Z@  ) @     &  R7 K<F#!"&547670>321&0#".'&'&2>767654'`)||)B#G G# $FF$ Z Z B3  32  2'/D#32+32+#!"&5463!232&"26454&+"'#";26  @ 4&&4&0'*  @ ( @ ( 00 ( &4&&4" @+7CO2#!"&5463"26454&+"'#";26754+";2=4+";2=4+";2 4&&4&0'*' ``&4&&4"" =HH2"&4$"26427.#""'&#"ΑΑH44H494 ( 4Α14H44HD!!#72#!"&5463";264&#"26454&+"'#";26P` ` 4&&4&0'*' `   &4&&4"" @ +7?R2!5463!#!"&%;2=4+";2=4+";2=4+"&"264;26'.+"'#"0@ `4&&4&  "*p0HH&4&&4  3C#0#"&54754622654.'54&"37"&5475462 K55J 8P8`!/(%A%6%  `%05KL50$(88h/!      %P%%%  "C7"&54754627#0#"&54754624.'54&";26%6%  K55J 8P8(%!/@%%%  0%05KL50$(88(      %/"C7"&54754627#0#"&54754624.'54&";26%6%  K55J 8P8(%!/@%%%i  i0%05KL50$(88(      %/"C7"&54754627#0#"&54754624.'54&";26%6%  K55J 8P8(%!/@%%%)  )0%05KL50$(88(      %/;6"&4627#0#"&54754624.'54&";26%6%%6E K55J 8P8(%!/[6%%6%%05KL50$(88(      %/!)19AIQYaiqy"/&47.7&#"#4632662"&462462"6"&462"&46:"&42"&462"&462462"6"&462462"6"&462"&462"&462"&462"&462  .@S;7):   )  W    2  `    )  W  w  W  W  I      8 O . 2;S%  H      )     )      7    )    )  )  F%2++"&=!+"&=&=#"&=46;5463266/&7.7&#"          /!*$ _       +    +   !/"   _ /  +QY"'.542''&546'&'&7654&2&767>54.#"'.542"&4 Ju.W=9R0;)%5F8%,!+6Ig*$9E6%%6%)U,,U +>=UQ9A, ()95%+]BlN.5, gH-NlB]%6%%62#!"&546354#!"` `T T`%2#!"&=463``  !)+54&+5463!2#!"&5463!24+"30/!  D !/0 0 4 /?O_o+"&546;2++53232++53232++53232++53232%3#"=#"=4;5473#"=#"=4;5473#"=#"=4;5473#"=#"=4;54`****************`N 0f 0f 0f 0 0 `0 `0 `0 %/&/"/+"&="/&4?5/.?/&?'.?>7'&/&6?'&?6'&>?65'&4?6546;2762?>76/76! ?5       6? !" F@@F "!?6     6? ! " F@@F g   G$N5  ( (  6N$G    %%   G$N5  ( (  5N$G    %%  '"/&4?&67>(0$X% 3  $1*1$  3 %X$0*<+"&?.5476227>56227562.>32+"&7%  @  ,,,y,"*9  8 _"&7  *"_ G;#VLB& 0  &2#"'&?632676&+"&=466CrCg_G (0?FaeEB0*   $GBsCg@ (*bEGc,*   $E !-E!#!"&26=4&"26=4&"26=4&"%2#!"&=46;76;2    `   `   @ ` x r P           :&#"+"&7>3276+"&73232>76;2#"'&=46s1B:[ 9ZcH$   ׆ *1B&D0  9ZcH$ ;-G8 WsE$   y *-!9% WsE$  "0%"&54675#"=4;2+7654&+";2zzeK x 8,  "( ( VzzVMu " ( ( " $  3b 1%&=#"&=46;546+"&=46;2+";2     T(88(T T  T ` ` `  8((8 (   1!#"=4;26=4&+"=4;2'&=#"&=46;546T T  T T(88W    (   ( 8((8 ` ` ` $276+"&?&'&3276#"&46dG$   *0BEeaF?0( G_gE$   *,cGEb*( @Α08DL%#!"&5467&546;&546;2654'6323232$"2646&+"26&264&"#**#*&!/ (8&*<8<%O(**(#*&/!8(&*#[x `@!)4%#!"&546;3%#!"&5463!24&"2!5'&'&/!((D`X( !/PD((`0pX( !(/&?62'6&?6?6&5#75. o .(< o z \  $$ @2. o .<( o  z   h0@ $&?'762#r  99(c  r)(99 !'762&7>?'/&?6299(US"r/ 7"f  w !v(99(TS"7 /r"f  v  732"/&6;4;2. VV . 8 f VV . M37/&4?6!2# VV . . VV . 8 M3%546&=!"=43: VV  . V V . 8  #"&?62++"5X. VV . 8  VV  ;%+"&?'+"&=467'&=46;27'&6;2/76 p $kk$ p  $kk$  p $kk$ p  $kk$ hp  $kk$  p $kk$ p  $kk$  p $kk$ )#!"&546;46232&"26454+";2P&4&PHP`&&4dM346&=#/&4?63z VV  VV  VV .. VV . 72"/&6;5#"&?62+ VV .. VV .F VV  VV "&462#"?6&+54+"ΑΓGssG @ 'ΑΑtsst "&462'#54&6=32=4gΑΑtsst 8ΑΓGssG @ 2"&43?6/&#"ΑΑtsst ΑΓGssG @ 6462"75326/&;;2ΑΓGssG @ YΑΑtsst 4%2#!"&546;2+!54632/"/&4?'&63  @ X  $$  `   p @  $$ ##!"&5463!2#"?6=4&`Xp  p`$  p +5463!546&=!"&2#!/&4?6 h PP     PP  0 PP 0  0 PP 01%#!"&54674546326326&+54&+"#"7.K5Wh0    $%2 p+2#!"&5463"26454&+"'#";26P4&&4&0'*' `&4&&4""  76&7>.'/&4 4PL20#  .6"  P )B,,U 2& X '.54>?62>7'.=9*M@' Kcl?sSC) C_G PF%lJ#2#!"&5463264&"74#!"3!2 H ` Y8 @ &.BLT2#!"'&54%"32?4761.264&"6264&"%6.'&3654'73264&#"264&"' D '   C =# n L   .wNCCNwi   5  %@/!!$3#!"&=264ᕗ!2"'4&#!"3!265@ L  P  t(``(``8   $"&4622#!"&=46;27?>=#"'4"2642#!"&=463   Oq  9      (     pP  2         @#37.546232+#6=#"&=4632#!"&=463i=V=    /+==+/   P++P       I"&4622#!"&=463!'&54?6323>546;22676;232676.!!.!x  ff  '   '  P!.!!.            #+;2!65'546;23546;23546354&"2#!"&=463p @ @ 8 0 P 0 X    VJJV  00 00 @  @     /S2+"&=#"=4;54632++"&546;2'2+"&=#+"&546;235463h  0  @ 0  0   0  0  0  `  h0h 0h    h p      Q'&'&'&'>7'&'&'&??6/7?6/7?6/76/& 634 63ggf        45[45ooT        #-8B73+"+"=4&+"&%#.54622654''4''32674''326`   (   @$-5zzH  @    5,&]7Vzz/  M<62"'67"&5ԖԖ77ԖP88P8((n(88(#5%/6?6&67>32"&54>'7>76W 65_<Q "..C.  ";V " m($*  pJ/B//! A +  m7+ !!@  '%&'762&/"/&4?'.72"&40q"8??/ )$Y5g# >P88P8 /8??/$g5Y#Q"8P88P (2@7.'>7'&67&'.'667&'>7#"&'6#0#6&-V! `D$>_GE#707%0344LS)( F>/Ov]&K 0K*,-'p4/Gr 2Oc?Q&6'2U( 1)+*WR"/D_5E:BJRZbjr2+"/&>5462;2=462;2=462;2=4264&"6264&"264&"6264&"264&"264&"6264&"} !     I    I  )  )  P q! !      H  W    W  )  I  w   ` '/746;#"&52+!&"264"264&"264"264&``&@&&`Fn &&&&@@RnR 0#532'#617>3!#!"&5 3c` !@)>%2+"&=46;75%"&=46;7532#2+"&=46;750  P  P P   P   ``@  ``  @   ``92#!"&546;546;2'3554+54+"#";;2=32`P 808808@ 00 088088 "&5462654'Ukkkj,T6``M:^vv^:5*8ii8*G%/%#"/&'"&=46326763254&"7'&#"+'$<"B\BB.-@ $<"(#RA  ']1 .BB..B>,!1pp-:] )-2#!"&546;462&"2646/&'&7PP&4&6a  j.  R `&& j/ T%-5AMY2#!"&546;462264&"6264&"6264&"6"26454+";2=4+";2=4+";2PP&4&h`&&RRhh3;CK[$"&462&"&462'&67676563267'&'#5&$"264&"264&"&4622#!"&=463  H44H4 7VJ7.'&6;2!676;23&'67+"'&'!+"&67#7!36!&'# B--B   8   *M1,"  *9    $  ./DIID/   (?9@ $Z8   hB5=%'&>?7'76&'.'&7#"&=46;276264&"&5>!=!=<D-+,\Y pd- ((cc 5) G,8,7#   $G((B7"&546;7532#2+"&547#"&547#"&5#"&=46;2 00   S((S 0 `   @     p   6#532;#!"&546;4+54+"#";;2=325y 7   @808808W     88088/8;#!"&=32?3264&+'&"'&+"=4;546;#532   F# 9Z F# 98 ș 8   Fr,  Fr( i @ )346;#"&5!%;;2=32=4+54+"#"%2+00@808808P0p@0@088088@%1=Ieq}2#!"&546;546;254+";2=4+";254+";2=4+";2754+54+"#";;2=3254+";2=4+";2      ( ( ( ( ( ( ( (  ( ( ( ( `  p @  @( ( ( ( t( ( ( ( ( ( ( ( #2"&454+"#54+";2=3;2ԖԖp0`00`0ԖXXXX@.82#!"&546;35"26426'.+"'#"3#546;2 F4&&4& "*  @ ```&4&&4    `` 9E2#!"&546;462&"26454+54+"#";;2=32=4+";2PP&4&6H808808`&&0880888<@7"&=46;7532##32#!"&=46;5#"&=463!25#!5# p@@p 00  00 `    @     @     @@@@@D '2"&=454&"7.7>/&76B\BB\B(/vT"S #/B..BB..pp# Sv/7Tv/"!15!#!"&=32=4+532=4+532=4#72#!"&=463 @ xxxxx   @  @@@ 0  0 52#!"&=463!#!"&7;;2=32=4+54+"#"h   @ @808808 0  0  ` 088088#?G%2+"&=!+"&546;235463'"=4;276232+'"/"&462.B       2f z2L4&&4&B. 00 `  (c 7  ,c 7&4&&4IQY^%2+"&5#"&=32=4+"=4;2=4+"=4;2=4#!"=4;5463!232264&"264&"75'#p 08P88P88,d,((\((d,`   (88((88(00dlp(((( dp #37NZ%2+"=43+"=4&'&=4;22#!"&=4635#+"=4'&=4;22+"=43x0).0$0p `0$<0X0` W1&B%>>  @p@@B9!,*AB>,>7//&?'&??6/7?6'7//&?67'&?6@&@B C8 7-8  -I""9- AC B@&8 7.8  -J""8-  $.2#!"&562#".'463/&76.76dx[  / [<7*T #/F/vT #M::c:M$1kTv/#F# Tv/(#"&4?57?6/7?6/7?6/7>#dYY-2 2-2 2-2 3.M!RYYe.3 2.3 2.3 2./#"'&6?'&?67'" +/ "FO" $ R "EO';?"=4;2+"&=3352#!"&=463"=4;2+"&=335H/B/0@  X/B/0@00!//!``     00!//!`` #A%2#!"=432#!"=43%2#!"5743%+"=4&#!"+"547%62ppPP`00`0000   W q!22#!"&546;2654'"&462'"2654'76.&&&&qqd^^^" " &&&@&-3OqqO3-^^^: O 3}62"&4"&4622#!"&=4632#!"&=46;!'54+532=4+54+"#";#";#";#"26=3264&+532=4+532      `  0`hhhhhh@(@(@hh@         @     `    ((  "-%2?/.=32?7/76!6/.7  @@ \  \ ' 66 'kkp8   8$,2#"'#"&'&>7&54264&"264&"264&"Ԗj83AL9szz319JVv$747#"'#"&767&'&?6632@ E&(83AL, 9:  iI`j9 3 4+9    R5zVH:974&+463!2#"!%2+"&=!+"&=&546;2!5463& 8(@(8 && @ @ &  &(88(&@`&$y  y$& `` Fh$"&462'+"&;26=>54&/&546;2?6&'&'54&+"2#!"&=46;#"3!2=4+67Vzzz"? &    "> '     @  +? l @, zzz$!   $!    `  ` '' )1&'67673+#&'&6?&'&54762546264&" N5  ,pp ^BMA k.U}N/  ;1% E8K@B^8H$Qh=7 EX"#!"&=46;76;2+";2?62m= <m   7/ * N v] rH HrH  y ` &   JAEo.'&67546;2'&+"+"&=&'&5474?6;254'#!"&=46;7>;2+";2?62    $ 6     $   7/ ,  N v] 0%   %    y ` &     J"E7+"'&/&=4622?6/&>$2+"&=4?>2?549  i Z & i  9& ZM"+p   l 3   p+"M  3 l %@2+++&/&6?54?26=%54&+"&=4?6;76   &g P PA*<*, P!"!gg  0 @ &< .0$'z**8% .!X~  < 5++"&=47'#"&7>7#6;5#462#327#4'      .C)>t0pQ^Qp0t>?X     $A,DlRnnRlDTen"&462"&462#"/?#"#.?6?'#&/&/"#"&/&?676546;2?676.7((d((N ) C     +3 3+     C$    #) `((((p E.d L] \1G !! G1\ ]L P '" ` ` "' .E  @CKZ%2++"&=#+"&=.5#"&7>32+";>;26;264&"'"4&54621&#0 1  @ @ ("  + X:,  i  8P8    Q 00 Q'0&   7I"L@  (88()?/.%'.4>?6762'67&"uO[D  E , "k ,"O4!Z!Xf  # I  I@&W;&.;C%2#!673264&+"&46;&5462#"3"2642.54264&"(88(  `(88(--8P80`  mxP80 5S8P8!8P8@ (88(P8(P &V(H2+"&="&5%3&'>@]   ]@tU+)2;`] ]@V =/*#'2#!+"&5#"&=46;546;25!    0 0   @    p   0 0"/<62"4&"276'.#"?62&276&"Α7   % &--  #nYΑΑ     o66  *!2"&42#!"&462&264&"4&&4& p]CP88P8&4&&4   ]^B@8P88P)17'&>?7'72&!#"&'/&7%46264&"21M>M2 LB.-Aw Z((H\] :~p.B?-l.^D @(()19?G%+"&547##"'#"&5463!232264&"264&"%3'&#264&"m /B//!((!/  &0\+V !//!!/ /!P  `0+&/'&?632576%5#!"&z %  N n" n    !  =K   %2+"546;5.?4>;2(4@ @4u W77W u!'&?6>323!"&=46z  M23232+"&'7;26=4&+"/?+54&+"#"&=46722"&4&2#54@ P0.%  P`P8(0(8H $$ $$3EP PE30p  W ` +5$ ` +55+X(88(Y$ $$ L3 @  @ 3L`   00+$"&4622#!"&=46;27%/&?676jKKjK&7OO7#L#T  Q  -i KjKKjkO7**7O R  -h +3$2"&454+54+";2'!"&=46;2732&"&462xTTxT & < (#O7#L# +jKKjKTxTTxB 6 L ,L*7O&HKjKKj;CKv%/'&=&''&'&?&7'&767667547676264&"&"&462#!"&=46;2732332?b !!  !! ((jKKjKI O7#L#     K    0((tKjKKj *7O  ' $/$"&4622!"&=46;277&7%'?62jKKjK&;)NO7#L#>G= *H%KjKKjk.M = *7OG *H&#76"&4622#!"&=46;27$"&4622+46=4'6;27\BB\B#0CC0 !F!P88P80.B(*B\BB\bC00C 8P88PXB.'9+:%#!"&=467&4?6"&547'+"&?&5475?6KK6_`KjKB * M6  6M_P..5KK55 > > ;3;C$"&462!"&=46;2730%2+"&=46;5462264&"754&"jKKjK O7#L#   /B/]@KjKKj*7O  P!//!P}P  P+%2+"&=463"&4622#!"&=46;27p  jKKjK&7OO7#L#     0KjKKjkO7**7O%-%#!"&=467'47&52>32#"&'7"34&#E4GG4e++1#5KK5,C g  L4**4Lf33( KjK5)` 7%'.54?6>7'&"&462#!"&=46;273230n$" 5Ps !;`jKKjK 7, O7#L#$@/&sN-N:&KjKKjsDm#*7O!'&?6>324>7!"&5z  #8!5K0&3     r 6K5)B 9%+@%"/&=46;22>4.#"'".54632#!"&=46;2732w \  [O\   #;"K5#;"KK:O7#L#S  ] [O E X";#5K";#5Ko(:*7O$"&462#!"&=4677'3jKKjK 5KK50 ` KjKKjlN5**5N88;CKb%/'&=&''&'&?&7'&767667547676264&"$"&462"&5462"'&#""#"&=46;323630#3273'#"&=46;2b !!  !! ((4&&4&.BA]B    fD/ !##   (B &@k    0((t&4&&4FB..BB. " 0C ' :# &*BE[^!2+"&5&'&/&6?&5463276%#"&505467>762'3'1"&50546767623'    /!.v    ";#5K   < SȐH KjK  AWZ46;&/.?>632/+"&5'054676762"&73'0546767621"&73'`    v.!/   `  < SKjK8H  <  KjK8H '!, '(/!+ 0  96(!//1 95(&4<!//1;?%2#!"&=463264&"";#";#";!'#"&=463!3'#% %sHri gQQ F@%  %`@@@`@@"6#.5476'&'"&546 O M{O  ' l //  ' R $9Kil"'&476;2#'+"'&476;2%+".7>&'&>;22+"&764'&63&/#/.7&54>23'  "  _  #  #  #   # y  "  R 11  "p`0 6 , 4]+ 9|9 9|9  )[6 @ 6 , d  vv  :t)%/6?6&67>3%'7>76W 65_<Q ";V " m)$*  pJ +  m6+  !#463!2#2#!"&=463!53`@@P  x`     @@472+"&54632276&"&4622+&'3533!ᕗ/AA/(P88P8P L@!`B//B 8P88P&@@ 2.-7@%#54&"#54?5#"&=46;546;232+46?#"&5%+5`%6%`p0 0   0 0 mp m p `%%` D3   0 0   3 / d  (085 7"&5"&46232>7"&5%567$2"&4&'67==qqqqqh:&H>qq?!#ppp 0n37++++&&@&4&&4 4&&)? +  /B//B "%+2"&44635"264&"62"&4ΑΑX^BOqP88P8SΑgB^ qO`8P88PH)12/"#"+/#&54754632264&" (8`M=)  ,'&  ,ay t/!'J%PAep  xh  x= %!/ H;!2#!"&=4632#"'!'#"&4626?&5462?&54 ` (HH(H R(R H     @(( +  + (08@HP2+"&=7>'264&"'"/&4?62264&"264&"6264&"6264&"264&"P ((.1((rr'/72#!"&5463264&"6264&"264&"264&"6264&"%%%%3ss%%%@%ss'/2#!"&5463264&"6264&"264&"6264&"%%%%3%%%@%2#!"&5463264&"%%%%%%%@%'/7?2#!"&5463264&"6264&"6264&"264&"6264&"6264&"%%%%3%%%@%MMMM'2#!"&5463264&"264&"264&"%%%%3ss%%%@%ss2#!"&5463264&"264&"%%%%3%%%@%62"&46"&4622#!"&=4636%%6%[6%%6%   `%6%%6%6%%6U  !!2#!"&=46;463!2&264&"p  p m     s"*!2+#5326!"&=46;467264&"p `p P    @!   m 0P%2#!"&=463%2#!"&=463          "33&'"&476&&67>7>' !b'bGE:B  )!.,_Q'g9,'1B  5t*"-,!@9A32+'6.'&"?632#!"&54>7>2264&":) b6  Zw F#  #& #O  &5HX0,:,S_#Vi  ~,  B0  %1]L<%%%C@D!2#!"&=463'.=4&+!46;23226=.='&4?625#P  /!%&&$4&      U +,p`&&4$  >& @CP]%+"&/#+"&=4?>/&6323632'&'&&/&6?67&#";26%5&#";26>C0%.B$B.%0C- C$ '));7J7;))' $C ##%$%6$%##%F/C=,'',=C/F&%        %&) %% )%&/&6?'.?>n    "   ff  (.?>&/&6?2#!"&=4637   .   p  T  xx  D 0  0 &,>%"/&6;235#"&=463!2+2#'3.#!"&=463!260 V  (+а  ] }#4!# F  @ s@l :@     @] |4#     `)2#"'#"&4632627&#"!2>54&#"FccFQFFQFccFQFF////!+L +///`^^OO^^OO@@&  &@@@4@D%"#"/#"+"&=#"'+"&=.54>76;2264&#"5@  J LL    ,4$0 TFCP .Ew  h 1 ; 16 JY4)D& 0.=K  c %'%&=467%6m   3  Z  "   f&7&=47%6'2#!"&=4637.    D  p  x  DD  B 0  0  $H!5>4&'5463!25#35#35#5!#54&"#54&"#54&"#54&"  @ `@@@`@     = cc#  ``    5U'&?65462#";#";#36=46;22+"&=46;5.=7z   8P8U UU UU),  L  8AW4 <)2    -(88(  0 0*&   " iD)(9'"&,4:@#"'&#"#"'&54632326322>7&.#6264&"575&'m +1>>?5 +1>>?  $"%B//B/`   >= >d=  $8P88PT:1 #&#"'&#"#"'&5463232632264&"m +1>>?5 +1>>?B//B/  >= >8P88P %1=G1!#!"&%;26=4&+";2=4+"%3!2=4#!";2=4+"2!5463  ` ` pp00 @     Xh@ 00 KWco2#!"&54632>54&/&546;2?6'&'54+"+"'&;25754+";2754+";2=4#!"3!2`    -  -  ppPP              h3%#32+/&?#"&=46;7#"&=463!7632bK  S  37  K  R  4 ` j  C ` j  C %-56+".7>264&"6264&"6264&"264&"PU&P&(/hP) n/3=N&@";*P}CJmm-S"*2#!"&5463264&+";26=72+5(88(`   0  0`8P8  0@"&462"&467"/&4762%6%%6%%%6%%F     %%%6%%%6%%6%     $4%2+"&=4633#"'#"&=46;2%2+"&=463   @@$I`        @0p    %1=I6/"/"/&54676276254+";2=4+";2=4+";2f&6 66 6&&6 66 6 ------  -----hh !%-15=G546;#"&52#!"&546;54625#6264&"5#35#6264&"72+5 !/&&/!p`@""@@""    /!&&!/@  @ x"" x""1 7&/&6??6/7?6/7?6/7?6/7?6/76|  P E< <87<<77< ;E   'ef/0ff/0ff' #G7&546;2#";#";#"32#!"'73;2=3;2=3;2= ` 88888x  @)@@)  @@@ ` 888888@@@72#!"&=46;;2=3;2=3;2=3;2=3;2=   0@@@@@  XXXXXXXXXX/73+"&546;2#";#";#";#"X  XXXXXXX @    @@@@ /7A546;#"&52+"=4;27#54&+"#4?62264&"%2+ @P h0 ` 3B//B/p  P  @@(@  u k/B//B  @ #.'7562"/&47@`>S S>+u  5 @S S>+>u 5  !4"&46;46;#"%2'&/52>76#"'.#57676%% % ,IfHM-4#-:+0MH2N/80+:-#3 %6%6%2.&B   B&,  *2:2+54+"#54+"#"&?6'.54264&"264&"Ԗ* N@N  ,24&&4&4&&4&]"A6 B8888 B Z4]&4&&4&&4&&4 /J7546;#"&2"&427735654&#"32+'2+"'.#".'46;2` `v 6ԖԖ=2$q| 3$qO=2| #,# @ ` 7Ԗ$ 2=Oq o2=Oq$| @   t3#"'"'"'#"'.?63!22767#!".=327!5Z&/,XX-/&A     @   I(Z!!!!!!Z(h   dd %%53#!"&53%#!"&?63!23+"&@@ @  U  %@   @  "" /"&=463!2#2#!"&=4632#!"&=463  @ ` ` ` @ @ @ P @ @ @ @  7'7'772"&464/76/&'7?6/76/&'&'76/&'&'76/&'&?'&?'&??6/7??6/7??6/76/&'77'7----------jԖԖ ."   "-  -"   !-  ."   "-  -"   !-------D------qԖԒ -"   !-  ."   "-  -"   !-  ."   "-3---+/M%#54&+"#54&+"#54?6;546;232'5#53#!"&=3;26=3;26     . 33  @      S  S . PP @@`  `  %/&#!"&=4&&/&6?267w9 9 9 9?L?` r  r `C:I"&462/&/&/&/&?.?67>327"&4?6((.   -   < " #8 ( ;  2 `(( E2 Y  J B"<      *"4 ," <  2 $2#!"&5463!2#!"3264&"s%%p  C@%@%  $6O2"&42654':12764./&>'&"67627>'.3232654'ΑΑ P  b FbP  ΑW    &&      @"2!2+"&=4&"+"&=46;!2#!"&=4630  8P8       (88(   `      #:BJ%6?#&''#>#6&'37.'#!"&5463!2"2645!"3>- '' -V ." '--'L    )77)FjKKjK 1) )#*)11))*# 4  7)@)7&KjKKj@,x7327/"&?#'&/32767672>367'&"&'.'&'.'&764'&7>76767676276&2654.#"a4%4 .  ! 4%4  J          7N7+'U &p Y&           P88(,-2#!"/&4?63'76/&'&??6@%% >>  >>  >>  >>  %%  >>  >>  >>  >>  '7M]2+"&=463#>7##"&46322+"&=4632#"&'##&'6=3>2+"&=463p  `  @62 9*P  %% %  `  %% P*9 26U   `   `  ` 8H '?0O  %6% `  ` %6%O0?' H `  ` 1;#"'&54675#"&=46;2+7'&?6/'!&/5#.&4,  ' 4 +%%`@!,34Y     ' 4 +.53,!''  #2!54635!+"&=#"&"264`  %@%6%@%  %@%%@%M4@HR\d2+++"&=#+"&="&=#"&=46;5462%;2=4+"264&"75#";26=4&+264&"        =p  p  ps@ P       P 0".."08] `  ` [%#"##"'&'+"=#"'&767"#"'&4767.'4546320454>762>7632 (8 n ?6264&"6264&"264&"$ E'*M+ 7  $!E'*M*7 3*'E $  7 +L E"$ 7 +#+3;%/././&54?>?63264&"6264&"264&"# E'*M+ 7  $!E&*J5J3*&E $  7 +L E"$4J5Jq1%2++"&5#5323#"&5#"&=46;546;2  ( 0   (  ( 0 ` 0 (  H` H`  0 (  `'3?K[g2#!"&546354+";2';2=4+";2=4+";2=4+";2=4+"754&+";2654+";2`   @@@(   `   H00 0 y!)A2"&4>/7>.'&7264&"7'76.'&?>ΑΑ c4&&4&Α> &4&&4@H%/67#"'".5'7&'&6?67&5462'0"0"132676&"264767,RL\142G6G! D 8P8 4#03C#"9d h`:_~)= {:|"  v(88(Y$ Xt 7/  3N54&"54&"&'54&"&=4>3276322654.'#"/&54?&#"QH4<<4H0>R-97n  Vz'v  IVz8_F9. f  wh  hw  f .-  G  % M /&@  *62"&=46/627.#"75&"26>54&'8DF;<<"} @ &4&/&:!D8K55KK55S, &&    &&m& ,!33#"&476&67> -jQe:K? 9  2D[OV,}n5119  ."3W8.)T];#!"&546;;2=4+";2=4+""'.'&"+";26?212?62;264&##532   ȠPPPP +"       / I 8    HH )6  2     '0;#!"&546;6&+54&+"#"27#532   L A   A ` 8    P P`R G3#532&=#53546;#!"&546;;#" b `@@     Fb ` A@A |      373#"&=46%#532;#!"&=3?6/&#46;pp  7  ` ` Ƞ@       A ` ` A  *6BR%#5%#532;#!"&546;;2=4+";2=4+"54+";254&+";265  7   ȠPPPPPP   @@     HH ` &2m#532;#!"&546;;2=4+";2=4+">54./&546;2?6'&'54+"+"'&;25y 7   ȠPPPP -  -  W     HX          ;CL;#!"&546;&'654&+";26=3??6/76/#5327#532   E !!%P  ;   00 ɀ b8     !&%  0;   7  bA7@EO7;#!"&546;;&'.'&"+";26??62#5327#%'762     +"     b`DED (    /R )6  2  (bDD'0;#!"&546;26/&";;26=7#532   A `` A    8    ``P P &%"/&4?'&?67627'"/ Pu_V  VR  [1;;  ;Q  uP_V  VR 0;;  ;R @ "1%"&546?"/&4?'&?67627'"/@%6%  Pu_V  VR  [1;;  ;Q]#%%@  uP_V  VR 0;;  ;R  -A\n62#"&76'47'.76'4&'".76'&6&'.76'&767'.76'.'".676#"&54'&676'&'.#&#0#"&=&762 +>   " ;I   (Lm Q9     ' "&(X<9  GKl>60 rn ik `<*MK  GH  ML  FI)< #.><  79?1:kJ55 897O z,  ' V   <9R  fHJ* @`$2#"&'&?'&6>264&#"G0a@((@a0>p&X  W&p  `)7337)<*B nn B*<  '/$2"&4&2"&462"&4264&"24+"36264&"NΑΑP*<**<<**<*ΑΑ)<**<* h*<**<'2"&4264&"6'.#"7626264&"ΑΑ =(" 14)Α* "  32+"546;5'&63!2!!88J0**0j2"&446;.'+";2;2/&+";232?676?6?6=4&+"/&6?63232?65ΑΑ Y;  Z  /       ΑG :R               _n2"&4654/&+.#"/&54?632;26/&54?6;2?6/&?6//2?676767654'ΑΑJ  C       G    _ Α         G&     /d /*8m2"&4762;2=4/&4?&#"32?6;26=4/&?63254/&=4+"+"/&+";237632;2?6ΑΑ 3Su>     '     Α_N  & uS-  f        !%)-15=DK2"&45#375#"6264&"5#75#5#75#5#75#6264&"5#326=4&+ΑΑ(   5000p000p000`(  Α( 8( ((8((8((8((8((8((h(% (&2"&4"264&"2642676&"'&ΑΑU`Y // Α6'  '#22"&4%2767&'&"2767&'&"2676&"'&ΑΑ8+`Y // Α!" !" !" !" 6'  '+92"&4$"?626'&'"?626'.2676&"'&ΑΑ[&#  &  #  &   `Y // Α)))  6'  ' -AP"&5476227"&4632&"?626'&'"?626'.2676&"'&(**0 ΑgJ>/L&#  &  #  &   `Y // @77<03gΑ)!.)))  6'  '':2"&4?6&'&'&2676&"'&%>'.'.7ΑΑZFi`Y //  ΑF  6'  '  F#12"&46/764.?64/&2676&"'&ΑΑP!!!!PPX`Y // Α-0(( ((006'  ' /<JZ"&767622"&47667'676&&>'?6&/.?6.>'&26 * )!)yG!)yG Z  4]Z  4"k,<@PH)H) Gy) Gy) ([ 4   Z`"a$,k .G2"&4?6/76&/&"2676&"'&%6&/&"?6/ΑΑ_# F`Y // '# #Α ##   6'  '    ## 6FVd72"&476"'&'&61"&'?676&>32&'&&"?626'."?626'&2676&"'&f )S) Hr  ss   _?lE K&#  &  &#  &  `Y // H))G R9DD9R]:e=b)))6'  '%-K26=676&"'&.54264&"264&":#".=6362?>ΑYH * // * HY&    gO~.$  $.~OgW@%  ?   ;HU%:#".=6362?>26=676&"'&.5464/&?'76&6%&    ΑYH * // * HYP!!!! PPI@%  ?   lgO~.$  $.~OgA0((((00%8@^2"&4&26=676&"'&.546'.#"?62264&":#".=6362?>NΑYH * // * HY  % & 4&&4& &    gO~.$  $.~OgP    0&4&&4@%  ?   "1<62"4&"276'.#"?62&2676."Α7  % & Y`Y /YΑΑ     a '66'  `/?O_72+"&=46;2+"&=46;2+"&=463%2+"&=46;2+"&=46;2+"&=463`  @   @   @   @   @   @   @  @  @  @  @  @  @  @  @  @  @  @ @/?O_2+"&=4632+"&=4632+"&=4632+"&=4632+"&=4632+"&=463`  @  @  @  @  @    @  @  @  @  @   @  @  @  @  @  @ @ @  @  @  @  @  @ "@72+".=4>;2+"&=4632+"&=4&#"+"&=6  %  Ҕ  zV8`8   @&@ ip pVz8`8p piF7+"&=46;2#"&=46;22+"&46;23265454&"+"&=6 %%   %%Ҕ5% fzz  p %0% p %0%`i%5(VzzV i!77/'7'&54%'76DC#)#+3`3 + FC##* 3`3++ǩ';GS_ks&'&'&6;2+"'&'&'&6;2+"2#!"&=46;254+";2754+";2754+";2754+";2"&462+ + n+ +  %%%+o```6%%6%($> ($> ($> ($> @ %%% Spppppppp@%6%%6@-=M]ms#32+54&+"#"&=46;#"&=463!2;26=4&+";26=4&+"';26=4&+"26=4&+"334&"%54&+";26=4&+";260        &&&&&&3&38P8&&&&   P P        -&&e&&[&&&&(88e&&e&&7DQ&=4;2+"=46#"'6+"=4.'&=4;22#"./2!2+"&/<0(0$qYZ).00vYuV   v *AB>,9!,P8!W1/' %>>    p  -52"&4264&"4'654.'&7>264&"ΑΑ##") ΑW      5G2"&465."?624'654.'&7>765.#"?62ΑΑ #&#  & h##")A  #  & ΑK))      !)&.Ma%/&>7676#"&462&#.&264&"4'654.'&7>?626'.#"S  /4gΑ T## ) '   .! S   TΑg.,%#           %2"&4"264&"2642676&#!"3ΑΑU87Q  Q7ΑH6 6H.<2"&4?626'.#"?626'.#"6&#!";26ΑΑ  &  #   &      Q77QΑ6)!  !w 6HH#12"&46/764.?64/&6&#!";26ΑΑP!!!!PP  Q77QΑ0(( ((00 6HH!/2"&4?626'.#"&"2646&#!";26ΑΑ  &  %Z  Q77QΑ5      6HH ALP7"&=46;%+5322+"&547#"&547#"&5#"&=46;2#46;25#  @ 0 S((S 0 ` ``0`      p    000@ #/2"'&547.=462767'5%6hJrrw ,!!/  J4>>40? (%@%( 8 @ !+72"'&54264&"7.=462767'5%6hJrrm""w ,!!/  J4>>4^""I0? (%@%( 8  ?&7>'7'/&?6276^KK"r/ 75bW  i ! %KK"7 /rD5KbW  h $ 4'&6;2%2&'7632"&46&/&"?6/?/o o U o/?E ʒggg 44&  //  = ++ sggg6 // %4  42"&4264&"264&"ΑΑΑW!32"&42654'"&54724+"362654'"&547ΑΑX&4&""4&""ΑG&&&   p&&  &*!2#!"&=463!6?654&+";26p  M M0FF     [; L L&& +#76322++"&767.5#"&=463d  C6  6C c$   76732#!"&5463264&+"36264&"7#&- '' -V.  'j  %%  ;jKKjK-'1) )**h*#f)1 @ %%`   `KjKKj1)?'73264&"'766'OTc!] ];1#]$b!cT;] ]'T(b&7'73264&"'>%'762+  (] o99(5+](  B(99$67'&4?622?'762'&?%"/7?md Z  "> >,.q.(-qk  Z  d,> >d  Z "> >,.q.-(q k  Z e,> >.!2#!"&=4637&=46'46'%&'p   'f0 A db+ (&+     e  C   1 N 1!2#!"&=4637'&6?627'&6?63276+"p  AM(HhAc++.,     kS$4b!R21'$*2%//&?'#+"&546;276%3264&#-N  NN  N   (80$TN  `  `N  NN  NP  8($6TN  @.6J254&""'54&".546'.#"?62264&"76'.#"?62ΑA7  .d.  7A   % &9((  % & gBq!  !qBgG     &4&&4    #.2"&4"2642654'&"6264&">'&#"32ΑΑU(**3-F7Α776 !)-59%+"&5#"&5#"&5463!235#264&"75#264&"'3'#u  8P88P8  R``L((`((0PB o (88((88(  `((``((`=2##"'&7#"&?6&&/&?6>76327>o )"( C#+M b:  7:& *KJ 6 E=  8= ' %#3hG6! ''92"&4?626'.#"6&"'&276'.#"?62ΑΑp  &   #  #n#  -3  #  & ΑF  )  **  6!)(,048<@!2+"&=4>;53#!"&54>3!23'7#?#3'#73'3'#  07  7   j ` gFrj        B 1``pp``p``pA,2"'.543267>&'&'6768'SS''?D++D?'!FG"%;?QQ?;%$'88'$oo==o"%/&&?6/&6?6%">H6 F&3 &)'H!.L  C>"( 4949/!=  !)19AIQ#546;22"&42#!"&=463264&""&4622"&4&2"&462"&42"&4 @ (8 8(B//B/Mss`` m 8(  (8/B//B3s*5!2#!"&=46;26=4'&5463 @(8 @ 8(C  D-+ @@@8(  (8 (2,:+ *$ '#"/#"&?'&6?627// jj A ( ARr 3f&gDDg&Qg 6r#/;I2++"&=#+"&=#"&=46354+";2=4+";2'#546;2#5P     0`0   hPPPP2"&4264&"264&"6264&"ΑΑC4&&4&Α*&4&&4 %-1573622#!>?"&546;2264&"75#75# K   8P8 j8@@@  L   (88( [@@@@ hT\7&'76?6/&"'&+""2+"'"'"'+"&=46;276;2276;2276;23$"&462 D P(1d"dq 0  0 :&&t&&t&&: %JJ%1B//B/b 9 "& P      `/B//B4j%2+"'"'"'+"&=46;276;2276;2276;23%"'&'5462+"&=4&"35462+"&=4&"#5#p :&&t&&t&&: %JJ% 8P8   8P8          (88(   ``(88(    ` '&?66762%47#"&z   (-6,!2BIg    >@4_6I& (&-h#22"&46/764.?64/&"7626'&ΑΑP!!!!PPRM )) Α-0(( ((00>-  -3#"./.""&/&'&'&7>76676/676%   "" %2" #d   0)"2`>1(CS9"    "9SC(2="3 @# 3 1.7>>327/6'&2#!"&=46;7s-G'I!`+ .#:?f  I;&5463232&264&"`I <8(,< ))$ (8, %"2+"546;5.?4>;23'(4@ @4ru W77W uPP/7;%+32#!"&=46;5#"&?#"&?&5462+&"264#3{ p  p ^1 r(r 1V  `  ` `  a ~  ~   y "5#"'&"#"'&'&767676676'#'&7676763_' $+A A+$ '*$$*?#/++G0:  :0G++/#  % $  (/6BJV^%'"''&7&766267&'&'767*#">"6727&'76'&'66''6'&#"#"#2"&47W$|$W77W$|$Wk% , 2 `!!!! % K54 VV 45KK54 VV 45  # # %%x####( # #   `O%#"&'4.#!"#"&=46764'.=46323!2>5>32W,' ',,  ', $,   ,$  $,   ,$+"&462'&'.=46%2.=476`8P88P> F|  < |E DP88P8#   ")@%K2#"&'#"&547.547&5467&5463021>#"'#"&546320212&*&*(&"*&*&"&(&** (.( &( **x%& (+5HY%+"&=!+"&=&=46?>;2%!'.+":>54&#"!264&#":    "9 9  " N   !06   60!2 & 222 !  #/K2#!"&546;546;23546;254+";2%54+54+"#";;2=32  @  ` ` pp((((@   0 00 0((((*fz7&?6/.?6/&6?>?6/.?'/&'&?&'&?676?676767676%&>76&'&'&/&#"&>76 #  NA 2M  +=   %          { }     {  l)   .M  +=  NA 28+$/ 4 C 4. + ! 5 d   )6! +.O $,04<2+"&5#"&5#"&=46?>;2264&"75#;'#264&" (8 08P88P80 0! m|((xM&MY((8(P (88((88( p"z ((```((@Qh!2#!"&=46332'.=4&+!46;2327>=.=46;5462354626&+76&+";327P   2"'%%$4     : D ;     @  *x!..p`%%4$  v*  0 00 ` 3 kS'%"/&4?626/&#";2=37   {U p  `    N6 P@6'8@HPX`%2#"'##"&5475&546323632#0#23'"1"&46;7#264&"64&"2$"264264&"264&"%%%%% %%%%%''&%%&  w     @  `%6% %%%% %6%A A @%6%@b        7AE%'&?67&?'&?6'2#!"&=46;;267!463!2!: : $$ U $$ : :  &&  =@; ; $$  $$ ; ; && pP0&4?62'%/&4?2?/&4?2?   ;  : :  ,jjjjjIIjjII!;G7"&=463546;22++"&=2#!"&5463!2644%"=4;2#  @  ( $   5KK5Oq1     KjK@qOI7  `26A6#!"&='.=4>3235#"&=46;2+325'46?"&v F   88  8920 +$   /  _ 0   0A?>] +>0%#!"&5467&546;&546;2654'6323232#**#*%!/ (8%*O(**(#*%/!8(%*##%+"&=46;2$2"&4%#"&?62  KjKKjK߾ _ & _   3KjKKjk  7%/+"&=&/&6?'.?>546;276   @      @  r 8O O8 NN 8O O8 N +9GUcq2#!"&546354&+"26=4&";2654&+"26=4&";2654&+"26=4&";2654&+"26=4&";26 (88(@(88(@ @ (( @ P !.!!.! P P !.!!.! P @ (( @ 8((88(@(8@ @@@ q8 8!!X!!X q8 8!!X!!X y@ @@@ +9GWes2#!"&=46354&";26754&";26754&";26754&";262#!"&=46354&+"26754&+"26754&+"26754&+"26 (8%%8(@( @ !.! P !.! P ( @ %8(@(8%` @ ( P !.! P !.! @ (8(@%%@(8   8!!8 8!!8    % (88( %P    !! !!   (6HT\j7&>#"./&67632*#"0&'&567%.?>766676.67&'7676.'&6 ]F& #YJ gu$$ dY ,   SaAO6 ,  SF ." ,+ -2 # $D&' 91+   )H! A`) ,'*(O  .6>F3"&'.535.535.53546;23264&"6264&"6264&"  @ F\F %@$@$@ @((((((  &%,99, 2 & 1& 1  %&((d((d((15%2+.#"#."#"&=46;546;546;232%3'#2+/+"&=&'/&?&'#"&=46;67'&?667546;276264&"'2+/+"&=&'/&?&'#"&=46;67'&?667546;276264&"p '0&CBCLC   q SJ 3Q0                ((                ((   """   P `  h @`@                P((4                 P((7;CK%2+"&547#"&547#"&=46;546;546;232%3'264&"264&"p 2B\BDB\B2   q m0 M((<((   .BB. .BB.   @    @``(((( 3K?62"&472#!"&546326/.+";2?33754&+"&#"327;26` 6 6  F  **  55      $*<* @#/%2++"&=#"&=46;&5462&">54(  ` `  -%JlJ%E,     ;5AOOA5;"9 !(:B%#!"&5463!2;;26=326=4&+54&+"#"5!"3   )77)F 0   0 0   0 Z 4  7)@)7v  p p   0 0 @/3B$2"&454+54+";2'"!546;546;232&'5#!"&=33xTTxT & < @7.uPP  TxTTxB 6 L P001` *&0 -9EQ]iu2#!"&546;546;23546;23546;254+";2=4+";2=4+";254+";2=4+";2=4+";254+";2=4+";2=4+";254+";2=4+";2h   (  @  @  ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (   h P PP PH  ( ( l( ( l( ( ( ( l( ( l( ( T( ( l( ( l( ( ( ( l( ( T2#"'#"547>7&54>'./&54;2?6&'&'54&+"+"'&;265Ԗj83AL92    2   zz329JV%      BOg#"'#"54767&5462;2=>54./&54>;2?6'&'54+"+"'&#"'#"&'32654'zV<3+.&zf -  -  Z.+3<@hc9HB^)3B^          6,qO P23#2++"&=#"&=46;546;2`  ` @ `  ` @ @ @    @ `  ` W]ciou}%2#'"/+"&57&'"/&4?&'"&=46367'&4?6267'46;2762'7&'67#677&'7&'6264&"67'367'?&' $  /;  ;/  $ $  /;  ;/  $ +Y%+ l@ L1 C +2:%+ l@ @1  ;/  $ $  /;  ;/  $ $  /;@ 11 % L%+ @ 1w1 % H%+ -T7"&=46;2#546;2+"&2?#!"&=%5!'54767546;>3232     F4```NN   P  r՗ FF  , , !2#!"&546;54&+";26`@`   @ @  52#!"&546;54&+54&+"#";;26=326`@` H  H H  H @ @ H H  H H Z/&='&63!22"&4>54&/&546;2?6'&'54+""+"'&;25?R;#Py^^^-    -  gCQ9 < ''^^^          eoy%2+5#5#5#33#54&+"#53535####"&=46;546;546;54623546235462354623232'354&+"54&+" P P @ P P     @  @  @    0  8   `  ``P P``  p P p    p P p00 @ @1?G%"/&5476;5462;2=462;2=4623226?."62"&4 f88f @       @00 200 = n<76&'&67654'&6323(!QM(;/)V  :)- **    **%5:  U)/`HXWE; )f<G+%74#A !  !   !   !A5% >+G=f)%#!"&5463!20#"/267#"'&54?<14'"'&?&''3276/764/7454&#"#'4"'&32?.547&547"'5!"3   )77)F% =N= %        Z 4  7)@)7v &11&  #  po ! @A .=KY%&546?626"/.=54&?6754&3766=4/&'6=4/&*  ,  PP``PP``l1PP1 OmR 66 "-$ nv~/612#".5'"&5475#"&46307'/&'&6765'&?.5467'&?7>54'&54764'6'76/82 5 P/  ))  /P 8 /< &!M,;;,L"& U ~s?'$= *!       !* AE  (/(F6$ 33 55 33 $6F(/( t && "" &&'7#!"&=4?62335335332!546;2#!"&=463    @`@`@ @    d % % Z 00 `     @'9=L:767#!"&=72"#".'.'5463%2+5.+54635#%#5463!2#"*+ @ @ ,)" ),   $`  @` @ & 0  0 ! " ` ! @@`  `&  '2=HS^it2#546;2#546;2#546;2#54636"&546?"&546?"&546?"&546?"&546?"&546?"&546?546;2+32#!"&=46;5#"&=46;2;546;2326 @  @  @  @ } s s s s s s    8( ` (8      @       .   .   .   .   .   .   . Ӑ (8@     @8(    CP3+"&%!&5476?2+54&"#54&/#54&"#"&=463#5467 @ CXE++EX  @ @    @ C8+5 5+8C< @  @H$ &H@  @ @! 0 h'&4?6"2#".5'546326=4&"+#".5463264&+&/&6;264&#"/&47632?6#".'&66iR;;%'  #/  )K5*A$  !1 &&!   (8% / q%  &'5;)d$4 &+ d !5K01&4& ( & $'$  $     $&#".'&'32#".'"'#"&463267&'#"'&&'&4>7>6767&'#".'&#"&463232>7'.5462627&5462327>32#"#"'7>"264$"264g  !   (  (   !       *#%6% : %6%#*         h   #8-%%-8#      !4"%%%%%%%%"4!  '    2"&44&'657677ΑΑWAY&s3&+E(ΑgCg g)rG"ir "?3N,/)g /%+54>?#"&5%#54&"#54?54?6m p mp `%6%`0 L L Q d L /  `%%` s K K s/?2#!"&546354&+";26754&+";26754&+";26p     `     `     `    @ @ /?%#!"&5463!2326=4&+"326=4&+"326=4&+"`    @ @ `p     `     `     ("&462'+"&46;'.?67676&6%%6%_#n\- 1&(': ! X !@%6%%6An1"#G!\!./ ! H )R2#"&=46?54?03>26=4#"/.=46226=4/&67621/& Zu M  z&/  M u '? / ` Q  M P ` / ?'  P M  Q1NV%#!"&5463!2"3237232/76&#/&"'"327654#0"#"&463:1324#&5!"3   )77)F  ;/DD/'88'u Z 4  7)@)7x CC`C8N8@$_%"/&=#"&462322654.#"7+"=&'&?6;2654/.54>354;2'&+"d8HVzzz, xT'B'+CCJ  d ,zzzVH8 T<'C&Tx+$OO$5  %57#"&'&6?535#546;272#546353#"&'&67( . W   s - ^)!HA  =W!HG;%//&?'&?67672+#"/#"&=46;2>3; ..  ..  ..  ..   b X,  Q :U ..  ..  ..  ..  0  0 jC 92#"&4632#0&#"3267#"/#"&?'&6?62T +.jj.,  W||W7 DD 7L" "  Ԗ || 6L$$L6  EE &),/25%+"/#"&?'&6;76232#'#3373'7#73'5 k8 * 8k 55 k8 * 8k B( 5p55p8.((.(Y$^^$YY$^^$!7XXX&8!!!&8! 'E762#547!#762'#54&#4?6'76&+'&"#";2?326F &r&  `-` H''''+  +f `'&]z f(((( FRUX^%'37'$2"&54737!;32?327654/7654&+'"#"$2"&54#''73@$Q((| < <  < < s(($,B!!B!!R @   `11 1 1 11 1 1 @   o88887;?267+32++"&=!+"&=#"&=46;5#"&=3355#xP 0 0     0 0 P`` ` @        @ ` `@@@@@@DH%+"&=#+"&=#+"&='&'&?5'&4?5'&6?%35!5!y7       7Y7 ww 7@/ 0 00 00 0 1@2@VV@2@@@@-6/#"&=46;//&?'&?676  Yf  fP-  ..  --  ..  y  Y `.  --  ..  --  %2"&4264&"&264&#"3"&462"&4ΑΑP88(PppP(8SΑm8P8pp8P@4DL";#";#";!!&'.7>/762#!"&=463264&"rip ' FF '  -- [% %@@@`@ MN  ? JJ p%  %`0LT\"&462#!"&5463!2";26=654??6/76/&'&5!"3"&462    )77)FB/ @ GGbbFFbb w  8   4  7)@)7&     ++**@8   #!2#!"&=46;'&?676%3p  5  ))  5t     JJ  88  J-7?G327+"&=32+"&54&"&4632>?"&=264&"264&"#!*    & (833@8P8@  Y  & `  & 8(V'`@(88(@P    7#546;2#54'#5##5#+"&=!+"&="&?63!2p0K5@5K0(000(N      j@5KK5.p pp p B<%+"&54674&5463263276&'654&#"&'&54632W*/!(8$8(, &5T%8( qO#)m_.!/8(1 (8&' A$(8 Pp F)F[DQ%#!"&54674&454632632%&?'&4?'&676276&'&"74632.?$8((84%B."6&R L SS X))X  !\B1#) ; 'z 1(88(&6.B$ & X))X SS Y !B\.#1$D/  '0:EKO7'"&?&=46&63''&4?6#76276/&>2".=7#'3'klMArQ =m__}LPujddd8.BY1b zbWBߜŰ #'&4?66&='46/&5   R ww e&] mt ]&;2+'54632264&"3+"&=#+"&=.5462 % 57  @ @ $`  %$.  0  Y6 pp  1 CI7&?>#"&?#!"&547>7.='&4?'&6;2+"/#77 u*x [ #H0  GUZ-3<<> K @  u W+*)EB<#/@ _6m 2 c  %  .&#"+"'&7'&54>32?547>323HV( #2" (?).F3I X! ) #" (VO?   0@P`p7+".767>%+"/&67622+"&=4632+"&=463/.7676"'&'&?6#''&'&?>2+"&=4632+"&=463'62+"5'67+"5+"5  a% * %@ ` ` `   S*   S *S  $ *I ` ` `  @   .+ h h  @ @ @ @   3$ 3+. 3  Z @ @ @ @   -Ohq;#!"&546;54+";2=4+"&=46;22654/&54;2=4+"+"374+"276=4+"&57#532   ` ,   `$$y 8        `  x7''7  DP`p#"546;2!5'&=;27;2732?>72=4+"&546;2'&+546;2"&=46;2#3"&=46;2#0    $%    # p&       @     X' $@@%5N  (   %?p      &.6/&/&"/&&546264&"264&"Rt + )) + lqQ  0 .. 0  PvG'%/&?'/&='6276"&47%; Z  $1Z//-  14% Z   1-//-$ 1%4'/mx32#54#32#54;2#54;2#54#54;2!32#54!2+32#!"&=46;5#"&=46;2;546;2326=4636"&546?"&546?%".546?"&546?"&546?2"&546?"&546?"&546?"&546? 8  H ` H  8( ` (8            (   C  2 (    xxxxxxxxxxxx p(8@     @8(p p   p   '   '   ' 0  '   '   '   '   '   ' $,!2#!"&=4637#7>?#?/7?/   o8V@@ @       @ " k @@    JR7#"'.7/.?>2+"&=#"/1"&='&54?>3235463&"&462Q#4   @:!  0 /W  /# \((5e  b" +   P/S  SV k/ @((>F2#+"&=#+"&="'+"&=4632546;2632>264&"E   @ 3z3 @ pPI7  #  `\     GG B^)1   P  AKS&/0+"&='+"/&54?&5457+"&=4636;46;2264&"@ !  @  B   4$+K5x G  sM   &f-! @i d D) 8 8$4!5K   G43+'7'#"&=265%/&/&7%62546;2  (hFN2+32+'32+";2+"&'&76=46;76;2"264267#7` 8(\7  PK@   p  l0(pP8 9  Mwf (82n  P   %*&.PpX   W;7 2"&=4$"6265427&"ړԖPp II 99:R>b;SS;b>/! ** !ZB"&462+"&46;%2+"/#"'.?'.?'&.6?6$((   M  C  6  >  U % (  '%,G*`(()N$ f W2 .W   (5 &2#"&=4&54'!2!!2#!265(P -P(8 P B.(8P @&'p8( .B8(#7?G/&/&6?'.?>76'.5462+"&76"264&"264     &TxT&  ~  ZZ EE ZZ E:"5KK5":   &?6S  M  =  9  Go'&54?>#/#+"&='"&547+"&=4?#/&?6;'&/&?637>23?632/&6?6#'&'   0/=  J7R7J  =/0  4 NE 5  2=$ $ $=2  5 EN s6N H(  Ha N Iw (==(wI N aH  O P  L44L  P H N6 @$,4<DL!#!"&7>=46264&"264&"264&"264&"62"&4264&"   8  I  I  I  P88P8S:J)1     Pp        ppp%6%%6muz$2"&4264&"2&#"#+"/+"&=&'"/&4?&'#"&=46;67'&4?6546;2354762264&"73'#H44H4Nh  3;$Q  ,   8f  oB//B/fn)kp4H44H< 3 3 0   ,   (.$ (/B//B``  (<#>32#7"&547367#'547"&%2+'72+654&+'327ZR@(\gB6jKbP0 *q7OP/!F*#L#D$,P2K5 5w0*=)D(`O7*!/`$,2+"./&"+"&5463264&"264&"`   :    e6%%6%e6%%6%   == @ %6%%6%%6%%6  A[72#"&'&6;232>'.+"&=4635"&=463!2676&#"+".7>#2&'&6;23264&+&'%9:+#5      N  !26( :-06D /+H " t /$,A,"           ' (.G T7. +' (&'"/&4?>7&?67'  M5ZN#L  zZzw  L#NZ5M  ^zZz-W62"&4$2"&4'#"'"'#"'&7&47&66266+&'&#&""#"&5467&54632632:12((((G  2  $ 2 #8(+ < +(8%B. 5%!/(`(((( 2    2 #$P8  8(2 .B!/! B8ER_l%#!"&5467<146326326#"&"'.'&'>32#"'&?>#"'&?>#"'&?>#"'&?>^%/!!/%8(1,+E+T: %2$ % [$ % [$ % [$ % ,!//!,(8(%5#+:P 5.@@@@@@@@+;J2#!"&5467&54632632:62"&546762#"&546762"&54>(88((8%B. 5%!/ "(" "  " "(@8P88(2 .B!/! 232 32   )7Ec6#"'.?>#"'.?6&#"'.?6$#"'.?6&#"'.?672#!"&5467&54632632: @ @m @ @ @ @ @ @S @ @;(88((8%B. 5%!/Q p p p p p p p p p p8P88(2 .B!/! @EP]jw%#!"&5467<146326321&?'&4?'&6762760"1"&7&54632#"'&?>#"'&?>#"'&?>#"'&?>%/!!/$8(1"; GG K##K  % Ib&D$ % [$ % [$ % [$ % ,!//!,(8(5 K##K GG P & @@@@@@@@1Jc|%'.'!'+"/&?67&'.7676326&#/&""?65'76&#/&""?65'76&#/&""?65'5!+"&=#+"&}  6&   K  +*  Q&C      ` @ @    Nl# c # +**Q$    퐐 PP  1U]emy2+"&54327.5>7327&'.5>7&'327&'.5>676.264&"6264&"264&"7264&"   ,>&3=1S?AW3+O-%>&3=+O-%&.T,+O-. 5!6H+O-%&.T,1N.1(A( 4$)    I     0  $ E V>  = t!E     (  / 9 / !)196"&4?6766264&"62"&42"&4   '-9r9DZjKKjKSI   aZ.@>9r9BL ^KjKKjuM  @ 5=RYf53+"&2+"/#".='0&5#".=46;2&"&462753"&5#"&'#"&?'46;#%2+"&5@    :)   &-Y((  @`    0 Q= 8   8+e   `&-`((D `     0 M%2#"&?#".576;27+76'&+76&+"#"&5467&546;2654'632324X; D|+/! D0!/+ &!/ (8&p  ax Ao.!/"x/!.&/!8(&@<Z6+"&=4&'&+"&=466+"&=4&'&+"&=466+"&=4&"+"&=46 SS   oSf   lW   B19T   _N5      +KQ V e tZ tV 3NM8 JrW0    #9 ";T!546;26&/&"?6/76&/&"?6/76&/&"?6/2'.=#+"&=#+"&=!26=463 ^BB^       )) ` `   @@B^^,    @'1 +p PP p @ /G%2#!"&=4632+"&=463!2#!"&=463'"&4632632632+"'p  @     P3!2?6/&'&`   @    @ J_) `  ` @@@@  K^)@,X%#&'"'"'"&=46767>7>7627#&'"'"'"&=46767>7>7627#&'"'"'"&=46767>7>7622+$)l+)l+) !  X  Y  !+$)l+)l+#, !  X  Y  !+$)l+)l+#, !  X  Y  @                         %="&462#"/&4?7#"'.?'6#5&/.>2?6B//B/   0 .=u. 0   )) )'b') /B//B' ! @  9339  @ ! '       2:B!46762+"&547"'"&54>7&5!5463264&" 4&"2o0+ !h 0<"/B/!F!/B/<&`6`" \   @K8+!//! !//!!8K@&B  go"&'62&.'632767632&7'&'&'&''&4767>.&76767&547632>54'&6264&"  'V' %, 54 ,$k6 +`2+=66>+2`+ 6 ) F2!7  ) ((P  P/C**C/P = Xb   bX= ?13H!8"0@(( 4I7&=46;22654.'&=467+"&5.'.=46+"&5.'".=46:D <)Ej 0 ( 0z   a Sv   S9 d=)< WD   2 z a   `vS :R   7!#!"&7;26=4&+"%2!546;546;23546;2@ ` ` P@0     ` ` 000 00 0 7!#!"&73!26=4&#!"%2!546;546;23546;2@    P@0     @ @ 000 00 0 ")-15;C#"/&67%>'&#"#"/&6?63267'7'?'?'77&'67')6  a     ! %,.O =<<Q - $=d9w!6  7 18>='''.  *'&&'&7276/>76/&67*."'f9 13  7SDX!"&#b.&29 1B 2 8 &"!XD +;K[_o%#!"&=4?>;5#"&=463!2+32;26=4&+"";26=4&#'#";26=4&'35#26=4&+"3;26=4&+"54+";2754&+";26754&+";26 @  U`  `      0  (        0   E[  [ @ ` ` @   G   P     @  x  W  +@V72/"/&4?'&637"&=46762#/&=46;26+"&?'&4?62  c c!   c c! c c  p  p !c c p !c c @ p !c c c  c! p   p  c cB C#'32%#73#5"&?6;2++"&=!+"&='#"&=46;'!0ac  ~~  c        ` ` @         %?N^#53##7/32210'&/&"&?6;#+"&='#"&=46;'%"&54676>'&'&'32=d~! c  '  c51    %4^^D4( '?3&XH > `  ` K7H6    !`A]]A&m/$(?/S!('132+5##5##5##5##"&=46;546;546;232 P @ @ @ P 0 0  0    0 0 0 07>Eeoy7#"&546;'&?6'&6?67>763253#"&53#2#5+#546;&54632632#3&#"7654&#"36            )   ( 7!!7 (5  5   `   66   ``   ``  ,KK, 0  09=A%'&6?'#"&/#"'/&7>7.?>76767'7' ' (?  ?( ' '%W rr W%'_$p$_C h.'KK'.h C  fW( 00 (Wf  G'@..@'2#!".'&63!!889e@cs2"&44&#"+;2=732;2?6;2;2=4?6=46;2+";2;6$;2?6=4&">7#"/&+'&+";2ΑΑuS(    %       }5W  +  + ΑgSu            !  8- %   ` %2#!"&=463%2#!"&=463                +"&546;2+"&546;2`         0     +3.767>7676?6?62264&" /$L # #kS #&"7L /  ((  / L7"&" Sk## L%/ (("/&6?>'7'6$!!$"b&`0`"&a"v%i((i%#W@@h#@j"&4622462"&"&462&54'&>367>'&'&636762'&'.7676&'"'6'&5<546((@(((((@  72   94 27   49  ((((`((=3    :2   1:   +3   /7%+"/#"&'.+"&=4>?6264&". 3 ./   7") %B0 0%zt( @  &R Q?bU;K 6!8"'"/"/"'&63!2WB. ". ,$ W,l}@ '08!>32#47%#534'3+#."#553#"&62#54@'~J`Bp?B 2:F:2 P8~;EC=_=C@`  ##``8(``(%2#!"&=463$!'&>76p  e(H0@te  @ @ "5W:e@:(:B&'&'&6;2+"7&'&'4>;2+"2++"&=463264&+#  n# .BB.8((8 p.#1 , #1, B\B(88( (` "/%4'7>#"'.?2&"&462%"&5>76H&Q,6 Q7|7Q-(( 6,Q&, `8 D   (( 8` , &.6>%4'7>#27"'.7'"&7676"&462"264"&4628*4$*"H"C 4*ΑΑlll#C*B6 C  y B*C#Αllll )9V"&462"&462++"&=#"&?6727%2+"&5463++"&=#"&=46724&&4&Z4&&4&? 7 0 7 .8   |    P  8@&4&&4&&4&&4 h  h         7;?%"//"&46327'&67>7'&4?62762%7'7' a  P k l'Z( Q a  P0  / 0EIEIEI  a Q (Z'l k Q  a Q0 /  09EIEIEI-B7.7>7&5462#"'+"&5.'.=46+"&5.'".=46t9b u z   a Sv   S9 fta9u >z a   `vS :R   2#!"&575#35#35#@&&& 000&&&@`````` #*.546;#!"&575#354&+326=#35#;5'!5%35#"&&&@ @ @@ &&&@@ @@ @@ @`@@@ @(2O2"&42+"&46;264!6"/&627"&4?"&46;2"1"&='&6?|(() ` ` 'D  D =\  0  R=N((\    D  D \  1S=Y  SN8$C"&462#"'%.>7'&776'&76776/&//'((%x   .Kk(  1# >R04  : s/`((fEK5( #JF a  3   9 @.BN"&4622#!"&46;0&5&6?63232647'.?'&3737#"/d((*  +6 (%,G*, F U % '4> +!  = `(( *   (5 "Q2 .W  [)N$ LC%#!"&=463!2654/&?6%5"&46;2;26=32###5##5.e,    &" /= &`  8(@@*6a&'    w ,&@`(80004 E6Wy2#"'#"&'&>7&542654/&54;2=4+"+"3754&+"'&+";2=2?;232654/&54;2=4+"+"3Ԗj83AL9        0   zz319JV  h ## hD88D  EQ"&462'76#"'%&'&>&'&6?54?'&/&>#"'&7((TB4Z  !& J#*  ?o   <U`((?'f" !    5(:   4S --= T\dlt+"'.547&507'.?>54>;2167&5462704=46;276$264&"264&"6264&"6264&"7654&"6264&"! #%c !&,  8 8P8 8     )          ( 7 "-.Q C(?, 7  . !(88(" .  *    7  7  O  2  [`l62"&462"&462"&462"&4"/&=##!"&54>7546;546;2354?623'264&#!"3n^^^$ %)+ B..B O@)% $@zD:H#% $*:.BB.( [p 3:*$ % f S`@((2++"=#"=43%2#!"=43t 8 h  8 8 8 8 %19#+"&?.5475#"&=463!2;2=4+"264&"p /((/  ` 006tRRtR2TGGT2   /9A%"/.7'#'76'"'&7>76'&"&4?264&" 5  u k>`@k04 R*I%J DK   |5%u4  5 u0k@`>k 6R=+ KD J$J R {%5)-15="&462232#!"&=46;5"#"'&67%65#%35+3"&462-    ````c <\  S;  `````` "&54676>'&'&'32D4H_I9* $:\K8+0+__6D5: Y' Cu ((8EA,X7'&67670767>767632%"#"/67>7>7>767  5#$  $7E #3 %.&% L  $7E %C( %.     !5#p  !# J $'  % %&! J6'/  %  &!! !2:%#!"&5463!2;;2=32=4+54+"#"5!"3   )77)F808808 Z 4  7)@)7088088@@2##!"&5".546 AoH(# 2;    >k 5!#!"&5!%630 @ ,Y{  ZA,H3#!"&=26554+54+"#";;2=327#"/&"#"/&547%62  ` ;808808   M D088088 02#"'#"547>7&5454+54+"#";;2=32Ԗj83AL9`808808zz31:IVn088088%."/&4?627"/&4?6?7'76 7-nxf fn-7 D P  7-nf fxn-7{ D  P 2"&546b]2pp2u7PppP7 '/7?%2#!"&4632#!"&=4637"&7>2#&"264&"264"264` && ~~>      (( && 42BB24p  )     @%+"&/&=46?2=4>3762=463212=464/     '$ S4 J L   2 #%!5467546;272#!"&=463@B5) ` )5B   @@;aRp pRa     AKU#"&5467>264&"2767>7>7>7>76'.?6&/  "!/ ` !!(   ' '    ' ' | 3 3 ! /!" ` i  ' '   ' '  3 3  2#!"&46;&5462'!"&pTxTcc ((77'#5'6326'&54?632Kk%KjL!!1$ 56YK$( '"G@)!.!#+2-,&B9N" + $7&.6.'7>#"&5476264&"6264&"264&"Zb  9R] 3XK rC{ _Y ]P9 qJVi L{ 7!+"&7;;26=326/&"72#!"&=46;76;25E 9   9 Z ` x r Sp p^       7!#!"&7;;26=326/&"72#!"&=46;76;2 [ 9   9 Z ` x r Pp p^      7?N7"&547676=7+"'7;;2=32=4+54+"#"26=#!"&5467:  R%^%,(/B/6K""K6_ <$)1001)$< ] !//! N6""6N_-#"&5#+"&=46;546;23546;2+ܘ` p` p \      '/7?G"&462'"&='&54?63232+"2"&4264&"$2"&4264&"((4);*R p G5  @ 6jKKjKf4&&4&jKKjKf4&&4&`((!2   o6  `9 KjKKju&4&&4KjKKju&4&&42#!"&5463#3'#335#35#   `   @/?O_o/?O72+"&=46;2+"&=46;2+"&=463!2+"&=4632+"&=46;2+"&=46;2+"&=46372+"&=46372+"&=4632+"&=46372+"&=4632+"&=4632+"&=46;2+"&=46;2+"&=4632+"&=4632+"&=46372+"&=46372+"&=46372+"&=46;2+"&=463                                    @                                                               `                                          `         `         /?O_o72+"&=463#2+"&=46;2+"&=46372+"&=4632+"&=4632+"&=4632+"&=46372#!+"&5463   @                                           `     `          `     $,2/&?#"&'&6&546766264&"a=Z { %A'  #*=Z { Q<  #D@Q<  #*(E- { Q<  #*=Z { .6Lj7'&6767>"2+"&=46;7>;2264&"%2"&?#"&?6;26"&46325"&46325467ua5 5a    0H[,,\ > L'&5%%p&5%% c> >c`    ,,V Sk 3`(0l(k #%#"54>?6327632  h0 <h21 Vh  p 12h< /2#!"&5463454/&#".'7654/&#"#327P FA& A x ` &AF  x (4@PX_2+##546354+";254+";2=4+";2=4+";22#!"&5463"2645''`   H   `         M` @ @@` g    q  q  0   @`` @ ;?%2+"&=46;7#"'&54?6325463!2+"&=#'7#P   C 5s    v1C v     P4*Y, `  4`5OR72"/&6;46;27"&=4?#"&=46;232#+"/#+"&54?6;23' PP 0    =8  =8   G  ; * 4 ```0 Ѐ  F    F     e05OR"&?62++"&5"&=4?#"&=46;232#+"/#+"&54?6;23' PP 0    =8  =8   G  ; * 4  `` 0@  F    F     e0/?U"&=46;2#"&=46;2#2#!"&=4635"&=46;2#!2"/&6;46;2 @ @       PP 0   `             @     ``0 /?U"&=46;2#"&=46;2#2#!"&=4635"&=46;2#%"&?62++"&5 @ @      ` PP 0   `             @     `` 05JR72"/&6;46;22+"&=46;5#"&54?6;26&/&767.7>264&" PP 0    `   0 6(>*,   $+ !  ```0 @     @  p} 1' 3>=&\  5JR++"&5#"&?622+"&=46;5#"&54?6;26&/&767.7>264&"kP 0   0 P) `   0 6(>*,   $+ !  ` 0`     @  p} 1' 3>=&\  A'DG\%"&=46;2#'3264&#3264&#'+"/#+"&54?>;23'"/&4?62762 K 2 2!3(  (8  D   X   D  ?.p- 7   * # +0`0 $$   E p -8 @&2#!"&4623.546264&"264&"7632GG';(;4BttB4 !47K'6d?7  D5++5D   -%3!"'&7>32#"./&#"7>?632b!-9<&Z:5)=1$+b6@%U! FV ,$  T+A!) =!+"&#546;2#5^B@B^^B@B^`B^^ B^^B 2"&4264&"2"&4264&"V==V=^OΑΑjKKjK(=V==VCΑKjKKjV6 H& ,v 3m 4 2Q   @ 2 Lb , X . &  ' 29 &  Copyright (c) Font AwesomeCopyright (c) Font AwesomeFont Awesome 5 Free SolidFont Awesome 5 Free SolidSolidSolidFont Awesome 5 Free Solid-5.11.2Font Awesome 5 Free Solid-5.11.2Font Awesome 5 Free SolidFont Awesome 5 Free Solid330.498 (Font Awesome version: 5.11.2)330.498 (Font Awesome version: 5.11.2)FontAwesome5Free-SolidFontAwesome5Free-SolidThe web's most popular icon set and toolkit.The web's most popular icon set and toolkit.https://fontawesome.comhttps://fontawesome.comFont Awesome 5 FreeFont Awesome 5 FreeSolidSolidFont Awesome 5 Free SolidFont Awesome 5 Free SolidFont Awesome 5 FreeFont Awesome 5 FreeSolidSolid      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTU VWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~"      !"#$%&'()*+,-./0123456#789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ glass-martinimusicsearchheartstaruserfilmth-largethth-listchecktimes search-plus search-minus power-offsignalcoghomeclockroaddownloadinboxredosynclist-altlockflag headphones volume-off volume-down volume-upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalic text-height text-width align-left align-center align-right align-justifylistoutdentindentvideoimage map-markeradjusttintedit step-backward fast-backwardbackwardplaypausestopforward fast-forward step-forwardeject chevron-left chevron-right plus-circle minus-circle times-circle check-circlequestion-circle info-circle crosshairsban arrow-left arrow-rightarrow-up arrow-downshareexpandcompressexclamation-circlegiftleaffireeye eye-slashexclamation-triangleplane calendar-altrandomcommentmagnet chevron-up chevron-downretweet shopping-cartfolder folder-open chart-bar camera-retrokeycogscomments star-half thumbtacktrophyuploadlemonphone phone-squareunlock credit-cardrsshddbullhorn certificatehand-point-righthand-point-left hand-point-uphand-point-downarrow-circle-leftarrow-circle-rightarrow-circle-uparrow-circle-downglobewrenchtasksfilter briefcase arrows-altuserslinkcloudflaskcutcopy paperclipsavesquarebarslist-ullist-ol strikethrough underlinetablemagictruck money-bill caret-downcaret-up caret-left caret-rightcolumnssort sort-downsort-upenvelopeundogavelboltsitemapumbrellapaste lightbulbuser-md stethoscopesuitcasebellcoffeehospital ambulancemedkit fighter-jetbeerh-square plus-squareangle-double-leftangle-double-rightangle-double-upangle-double-down angle-left angle-rightangle-up angle-downdesktoplaptoptabletmobile quote-left quote-rightspinnercirclesmilefrownmehgamepadkeyboardflag-checkeredterminalcode reply-alllocation-arrowcrop code-branchunlinkinfo exclamation superscript subscripteraser puzzle-piece microphonemicrophone-slashcalendarfire-extinguisherrocketchevron-circle-leftchevron-circle-rightchevron-circle-upchevron-circle-downanchor unlock-altbullseye ellipsis-h ellipsis-v rss-square play-circle minus-square check-square pen-square share-squarecompasscaret-square-downcaret-square-upcaret-square-right euro-sign pound-sign dollar-sign rupee-signyen-sign ruble-signwon-signfilefile-altsort-alpha-down sort-alpha-upsort-amount-downsort-amount-upsort-numeric-downsort-numeric-up thumbs-up thumbs-downfemalemalesunmoonarchivebugcaret-square-left dot-circle wheelchair lira-sign space-shuttleenvelope-square universitygraduation-caplanguagefaxbuildingchildpawcubecubesrecyclecartaxitreedatabasefile-pdf file-word file-excelfile-powerpoint file-image file-archive file-audio file-video file-code life-ring circle-notch paper-planehistoryheading sliders-h share-altshare-alt-squarebombfutboltty binocularsplug newspaperwifi calculator bell-slashtrash eye-dropper paint-brush birthday-cake chart-area chart-pie chart-line toggle-off toggle-onbicyclebusclosed-captioning shekel-sign cart-pluscart-arrow-downship user-secret motorcycle street-view heartbeatvenusmarsmercury transgendertransgender-alt venus-double mars-double venus-mars mars-stroke mars-stroke-v mars-stroke-hneuter genderlessserver user-plus user-timesbedtrainsubway battery-fullbattery-three-quarters battery-halfbattery-quarter battery-empty mouse-pointeri-cursor object-groupobject-ungroup sticky-noteclone balance-scalehourglass-starthourglass-half hourglass-end hourglass hand-rock hand-paper hand-scissors hand-lizard hand-spock hand-pointer hand-peacetv calendar-pluscalendar-minuscalendar-timescalendar-checkindustrymap-pin map-signsmap comment-alt pause-circle stop-circle shopping-bagshopping-baskethashtaguniversal-accessblindaudio-description phone-volumebrailleassistive-listening-systems#american-sign-language-interpretingdeaf sign-language low-vision handshake envelope-open address-book address-card user-circleid-badgeid-cardthermometer-fullthermometer-three-quartersthermometer-halfthermometer-quarterthermometer-emptyshowerbathpodcastwindow-maximizewindow-minimizewindow-restore microchip snowflake utensil-spoonutensilsundo-alt trash-altsync-alt stopwatch sign-out-alt sign-in-altredo-altpooimages pencil-altpenpen-altlong-arrow-alt-downlong-arrow-alt-leftlong-arrow-alt-rightlong-arrow-alt-upexpand-arrows-alt clipboard arrows-alt-h arrows-alt-varrow-alt-circle-downarrow-alt-circle-leftarrow-alt-circle-rightarrow-alt-circle-upexternal-link-altexternal-link-square-alt exchange-altcloud-download-altcloud-upload-altgemlevel-down-alt level-up-alt lock-openmap-marker-altmicrophone-alt mobile-altmoney-bill-alt phone-slashportraitreply shield-alt tablet-alttachometer-alt ticket-altuser-alt window-close baseball-ballbasketball-ball bowling-ballchess chess-bishop chess-board chess-king chess-knight chess-pawn chess-queen chess-rookdumbbell football-ball golf-ball hockey-puck quidditch square-full table-tennisvolleyball-ball allergiesband-aidboxboxesbriefcase-medicalburncapsulesclipboard-checkclipboard-list diagnosesdnadolly dolly-flatbed file-medicalfile-medical-alt first-aid hospital-althospital-symbol id-card-alt notes-medicalpalletpillsprescription-bottleprescription-bottle-alt procedures shipping-fastsmokingsyringetablets thermometervialvials warehouseweightx-raybox-open comment-dots comment-slashcouchdonatedove hand-holdinghand-holding-hearthand-holding-usdhands hands-helping parachute-box people-carry piggy-bankribbonrouteseedlingsign smile-winktape truck-loading truck-moving video-slash wine-glassuser-alt-slashuser-astronaut user-check user-clockuser-cog user-edit user-friends user-graduate user-lock user-minus user-ninja user-shield user-slashuser-taguser-tie users-cogbalance-scale-leftbalance-scale-rightblender book-openbroadcast-towerbroom chalkboardchalkboard-teacherchurchcoins compact-disccrowcrowndice dice-five dice-fourdice-onedice-six dice-threedice-two door-closed door-openequalsfeatherfroggas-pumpglasses greater-thangreater-than-equal helicopter kiwi-bird less-thanless-than-equalmemorymicrophone-alt-slashmoney-bill-wavemoney-bill-wave-alt money-checkmoney-check-alt not-equalpaletteparking percentageproject-diagramreceiptrobotrulerruler-combinedruler-horizontalruler-verticalschool screwdriver shoe-printsskull smoking-banstore store-altstream stroopwafeltoolboxtshirtwalkingwalletangryarchwayatlasaward backspace bezier-curvebongbrushbus-altcannabis check-doublecocktailconcierge-bellcookie cookie-bitecrop-altdigital-tachographdizzydrafting-compassdrum drum-steelpan feather-alt file-contract file-download file-export file-import file-invoicefile-invoice-dollarfile-prescriptionfile-signature file-uploadfill fill-drip fingerprintfishflushed frown-openglass-martini-alt globe-africaglobe-americas globe-asiagrimacegringrin-alt grin-beamgrin-beam-sweat grin-hearts grin-squintgrin-squint-tears grin-stars grin-tears grin-tonguegrin-tongue-squintgrin-tongue-wink grin-winkgrip-horizontal grip-verticalheadphones-altheadset highlighterhot-tubhoteljointkiss kiss-beamkiss-wink-heartlaugh laugh-beam laugh-squint laugh-wink luggage-cart map-markedmap-marked-altmarkermedal meh-blankmeh-rolling-eyesmonument mortar-pestle paint-rollerpassport pen-fancypen-nib pencil-ruler plane-arrivalplane-departure prescriptionsad-crysad-tear shuttle-van signature smile-beam solar-panelspasplotch spray-canstamp star-half-altsuitcase-rollingsurprise swatchbookswimmer swimming-pool tint-slashtiredtoothumbrella-beach vector-squareweight-hangingwine-glass-alt air-freshener apple-altatombone book-readerbraincar-alt car-battery car-crashcar-sidecharging-station directions draw-polygon laptop-code layer-group microscopeoil-canpoopshapes star-of-lifeteeth teeth-open theater-masks traffic-light truck-monster truck-pickupadankhbible business-timecitycomment-dollarcomments-dollarcross dharmachakraenvelope-open-text folder-minus folder-plus funnel-dollargopuramhamsahaykaljedijournal-whillskaabakhandalandmark mail-bulkmenorahmosqueompastafarianismpeaceplace-of-worshippollpoll-hpray praying-handsquran search-dollarsearch-locationsockssquare-root-altstar-and-crescent star-of-david synagoguetorah torii-gatevihara volume-muteyin-yang blender-phone book-dead campgroundcatchair cloud-moon cloud-sundice-d20dice-d6dogdragondrumstick-bitedungeonfile-csv fist-raisedghosthammerhanukiah hat-wizardhikinghippohorse house-damagehryvniamaskmountain network-wiredotterrunningscrollskull-crossbonesspider toilet-papertractor user-injured vr-cardboardwind wine-bottlecloud-meatballcloud-moon-rain cloud-raincloud-showers-heavycloud-sun-raindemocratflag-usameteor person-booth poo-stormrainbow republicansmogtemperature-hightemperature-lowvote-yeawaterbaby baby-carriage biohazardblog calendar-day calendar-week candy-canecarrot cash-registercompress-arrows-altdumpster dumpster-fireethernetgifts glass-cheers glass-whiskey globe-europe grip-linesgrip-lines-verticalguitar heart-broken holly-berry horse-headiciclesigloomittenmug-hot radiation radiation-altrestroom satellitesatellite-dishsd-cardsim-cardskatingskiing skiing-nordicsleighsms snowboardingsnowmansnowplowtengetoilettoolstramfire-altbacon book-medical bread-slicecheeseclinic-medicalcomment-medicalcrutchegg hamburgerhand-middle-fingerhard-hathotdog ice-creamlaptop-medicalpager pepper-hot pizza-slice trash-restoretrash-restore-alt user-nurse wave-squarebiking border-all border-none border-stylefanicons phone-altphone-square-alt photo-video remove-formatsort-alpha-down-altsort-alpha-up-altsort-amount-down-altsort-amount-up-altsort-numeric-down-altsort-numeric-up-alt spell-check voicemail hat-cowboyhat-cowboy-sidemouse record-vinyl k%ٮ)ٮ-ruby-prawn-icon-2.5.0/data/fonts/fas/fas.yml000066400000000000000000000446621354577744400207210ustar00rootroot00000000000000--- fas: __font_version__: 5.11.2 ad: "" address-book: "" address-card: "" adjust: "" air-freshener: "" align-center: "" align-justify: "" align-left: "" align-right: "" allergies: "" ambulance: "" american-sign-language-interpreting: "" anchor: "" angle-double-down: "" angle-double-left: "" angle-double-right: "" angle-double-up: "" angle-down: "" angle-left: "" angle-right: "" angle-up: "" angry: "" ankh: "" apple-alt: "" archive: "" archway: "" arrow-alt-circle-down: "" arrow-alt-circle-left: "" arrow-alt-circle-right: "" arrow-alt-circle-up: "" arrow-circle-down: "" arrow-circle-left: "" arrow-circle-right: "" arrow-circle-up: "" arrow-down: "" arrow-left: "" arrow-right: "" arrow-up: "" arrows-alt: "" arrows-alt-h: "" arrows-alt-v: "" assistive-listening-systems: "" asterisk: "" at: "" atlas: "" atom: "" audio-description: "" award: "" baby: "" baby-carriage: "" backspace: "" backward: "" bacon: "" balance-scale: "" balance-scale-left: "" balance-scale-right: "" ban: "" band-aid: "" barcode: "" bars: "" baseball-ball: "" basketball-ball: "" bath: "" battery-empty: "" battery-full: "" battery-half: "" battery-quarter: "" battery-three-quarters: "" bed: "" beer: "" bell: "" bell-slash: "" bezier-curve: "" bible: "" bicycle: "" biking: "" binoculars: "" biohazard: "" birthday-cake: "" blender: "" blender-phone: "" blind: "" blog: "" bold: "" bolt: "" bomb: "" bone: "" bong: "" book: "" book-dead: "" book-medical: "" book-open: "" book-reader: "" bookmark: "" border-all: "" border-none: "" border-style: "" bowling-ball: "" box: "" box-open: "" boxes: "" braille: "" brain: "" bread-slice: "" briefcase: "" briefcase-medical: "" broadcast-tower: "" broom: "" brush: "" bug: "" building: "" bullhorn: "" bullseye: "" burn: "" bus: "" bus-alt: "" business-time: "" calculator: "" calendar: "" calendar-alt: "" calendar-check: "" calendar-day: "" calendar-minus: "" calendar-plus: "" calendar-times: "" calendar-week: "" camera: "" camera-retro: "" campground: "" candy-cane: "" cannabis: "" capsules: "" car: "" car-alt: "" car-battery: "" car-crash: "" car-side: "" caret-down: "" caret-left: "" caret-right: "" caret-square-down: "" caret-square-left: "" caret-square-right: "" caret-square-up: "" caret-up: "" carrot: "" cart-arrow-down: "" cart-plus: "" cash-register: "" cat: "" certificate: "" chair: "" chalkboard: "" chalkboard-teacher: "" charging-station: "" chart-area: "" chart-bar: "" chart-line: "" chart-pie: "" check: "" check-circle: "" check-double: "" check-square: "" cheese: "" chess: "" chess-bishop: "" chess-board: "" chess-king: "" chess-knight: "" chess-pawn: "" chess-queen: "" chess-rook: "" chevron-circle-down: "" chevron-circle-left: "" chevron-circle-right: "" chevron-circle-up: "" chevron-down: "" chevron-left: "" chevron-right: "" chevron-up: "" child: "" church: "" circle: "" circle-notch: "" city: "" clinic-medical: "" clipboard: "" clipboard-check: "" clipboard-list: "" clock: "" clone: "" closed-captioning: "" cloud: "" cloud-download-alt: "" cloud-meatball: "" cloud-moon: "" cloud-moon-rain: "" cloud-rain: "" cloud-showers-heavy: "" cloud-sun: "" cloud-sun-rain: "" cloud-upload-alt: "" cocktail: "" code: "" code-branch: "" coffee: "" cog: "" cogs: "" coins: "" columns: "" comment: "" comment-alt: "" comment-dollar: "" comment-dots: "" comment-medical: "" comment-slash: "" comments: "" comments-dollar: "" compact-disc: "" compass: "" compress: "" compress-arrows-alt: "" concierge-bell: "" cookie: "" cookie-bite: "" copy: "" copyright: "" couch: "" credit-card: "" crop: "" crop-alt: "" cross: "" crosshairs: "" crow: "" crown: "" crutch: "" cube: "" cubes: "" cut: "" database: "" deaf: "" democrat: "" desktop: "" dharmachakra: "" diagnoses: "" dice: "" dice-d20: "" dice-d6: "" dice-five: "" dice-four: "" dice-one: "" dice-six: "" dice-three: "" dice-two: "" digital-tachograph: "" directions: "" divide: "" dizzy: "" dna: "" dog: "" dollar-sign: "" dolly: "" dolly-flatbed: "" donate: "" door-closed: "" door-open: "" dot-circle: "" dove: "" download: "" drafting-compass: "" dragon: "" draw-polygon: "" drum: "" drum-steelpan: "" drumstick-bite: "" dumbbell: "" dumpster: "" dumpster-fire: "" dungeon: "" edit: "" egg: "" eject: "" ellipsis-h: "" ellipsis-v: "" envelope: "" envelope-open: "" envelope-open-text: "" envelope-square: "" equals: "" eraser: "" ethernet: "" euro-sign: "" exchange-alt: "" exclamation: "" exclamation-circle: "" exclamation-triangle: "" expand: "" expand-arrows-alt: "" external-link-alt: "" external-link-square-alt: "" eye: "" eye-dropper: "" eye-slash: "" fan: "" fast-backward: "" fast-forward: "" fax: "" feather: "" feather-alt: "" female: "" fighter-jet: "" file: "" file-alt: "" file-archive: "" file-audio: "" file-code: "" file-contract: "" file-csv: "" file-download: "" file-excel: "" file-export: "" file-image: "" file-import: "" file-invoice: "" file-invoice-dollar: "" file-medical: "" file-medical-alt: "" file-pdf: "" file-powerpoint: "" file-prescription: "" file-signature: "" file-upload: "" file-video: "" file-word: "" fill: "" fill-drip: "" film: "" filter: "" fingerprint: "" fire: "" fire-alt: "" fire-extinguisher: "" first-aid: "" fish: "" fist-raised: "" flag: "" flag-checkered: "" flag-usa: "" flask: "" flushed: "" folder: "" folder-minus: "" folder-open: "" folder-plus: "" font: "" font-awesome-logo-full: "" football-ball: "" forward: "" frog: "" frown: "" frown-open: "" funnel-dollar: "" futbol: "" gamepad: "" gas-pump: "" gavel: "" gem: "" genderless: "" ghost: "" gift: "" gifts: "" glass-cheers: "" glass-martini: "" glass-martini-alt: "" glass-whiskey: "" glasses: "" globe: "" globe-africa: "" globe-americas: "" globe-asia: "" globe-europe: "" golf-ball: "" gopuram: "" graduation-cap: "" greater-than: "" greater-than-equal: "" grimace: "" grin: "" grin-alt: "" grin-beam: "" grin-beam-sweat: "" grin-hearts: "" grin-squint: "" grin-squint-tears: "" grin-stars: "" grin-tears: "" grin-tongue: "" grin-tongue-squint: "" grin-tongue-wink: "" grin-wink: "" grip-horizontal: "" grip-lines: "" grip-lines-vertical: "" grip-vertical: "" guitar: "" h-square: "" hamburger: "" hammer: "" hamsa: "" hand-holding: "" hand-holding-heart: "" hand-holding-usd: "" hand-lizard: "" hand-middle-finger: "" hand-paper: "" hand-peace: "" hand-point-down: "" hand-point-left: "" hand-point-right: "" hand-point-up: "" hand-pointer: "" hand-rock: "" hand-scissors: "" hand-spock: "" hands: "" hands-helping: "" handshake: "" hanukiah: "" hard-hat: "" hashtag: "" hat-cowboy: "" hat-cowboy-side: "" hat-wizard: "" haykal: "" hdd: "" heading: "" headphones: "" headphones-alt: "" headset: "" heart: "" heart-broken: "" heartbeat: "" helicopter: "" highlighter: "" hiking: "" hippo: "" history: "" hockey-puck: "" holly-berry: "" home: "" horse: "" horse-head: "" hospital: "" hospital-alt: "" hospital-symbol: "" hot-tub: "" hotdog: "" hotel: "" hourglass: "" hourglass-end: "" hourglass-half: "" hourglass-start: "" house-damage: "" hryvnia: "" i-cursor: "" ice-cream: "" icicles: "" icons: "" id-badge: "" id-card: "" id-card-alt: "" igloo: "" image: "" images: "" inbox: "" indent: "" industry: "" infinity: "" info: "" info-circle: "" italic: "" jedi: "" joint: "" journal-whills: "" kaaba: "" key: "" keyboard: "" khanda: "" kiss: "" kiss-beam: "" kiss-wink-heart: "" kiwi-bird: "" landmark: "" language: "" laptop: "" laptop-code: "" laptop-medical: "" laugh: "" laugh-beam: "" laugh-squint: "" laugh-wink: "" layer-group: "" leaf: "" lemon: "" less-than: "" less-than-equal: "" level-down-alt: "" level-up-alt: "" life-ring: "" lightbulb: "" link: "" lira-sign: "" list: "" list-alt: "" list-ol: "" list-ul: "" location-arrow: "" lock: "" lock-open: "" long-arrow-alt-down: "" long-arrow-alt-left: "" long-arrow-alt-right: "" long-arrow-alt-up: "" low-vision: "" luggage-cart: "" magic: "" magnet: "" mail-bulk: "" male: "" map: "" map-marked: "" map-marked-alt: "" map-marker: "" map-marker-alt: "" map-pin: "" map-signs: "" marker: "" mars: "" mars-double: "" mars-stroke: "" mars-stroke-h: "" mars-stroke-v: "" mask: "" medal: "" medkit: "" meh: "" meh-blank: "" meh-rolling-eyes: "" memory: "" menorah: "" mercury: "" meteor: "" microchip: "" microphone: "" microphone-alt: "" microphone-alt-slash: "" microphone-slash: "" microscope: "" minus: "" minus-circle: "" minus-square: "" mitten: "" mobile: "" mobile-alt: "" money-bill: "" money-bill-alt: "" money-bill-wave: "" money-bill-wave-alt: "" money-check: "" money-check-alt: "" monument: "" moon: "" mortar-pestle: "" mosque: "" motorcycle: "" mountain: "" mouse: "" mouse-pointer: "" mug-hot: "" music: "" network-wired: "" neuter: "" newspaper: "" not-equal: "" notes-medical: "" object-group: "" object-ungroup: "" oil-can: "" om: "" otter: "" outdent: "" pager: "" paint-brush: "" paint-roller: "" palette: "" pallet: "" paper-plane: "" paperclip: "" parachute-box: "" paragraph: "" parking: "" passport: "" pastafarianism: "" paste: "" pause: "" pause-circle: "" paw: "" peace: "" pen: "" pen-alt: "" pen-fancy: "" pen-nib: "" pen-square: "" pencil-alt: "" pencil-ruler: "" people-carry: "" pepper-hot: "" percent: "" percentage: "" person-booth: "" phone: "" phone-alt: "" phone-slash: "" phone-square: "" phone-square-alt: "" phone-volume: "" photo-video: "" piggy-bank: "" pills: "" pizza-slice: "" place-of-worship: "" plane: "" plane-arrival: "" plane-departure: "" play: "" play-circle: "" plug: "" plus: "" plus-circle: "" plus-square: "" podcast: "" poll: "" poll-h: "" poo: "" poo-storm: "" poop: "" portrait: "" pound-sign: "" power-off: "" pray: "" praying-hands: "" prescription: "" prescription-bottle: "" prescription-bottle-alt: "" print: "" procedures: "" project-diagram: "" puzzle-piece: "" qrcode: "" question: "" question-circle: "" quidditch: "" quote-left: "" quote-right: "" quran: "" radiation: "" radiation-alt: "" rainbow: "" random: "" receipt: "" record-vinyl: "" recycle: "" redo: "" redo-alt: "" registered: "" remove-format: "" reply: "" reply-all: "" republican: "" restroom: "" retweet: "" ribbon: "" ring: "" road: "" robot: "" rocket: "" route: "" rss: "" rss-square: "" ruble-sign: "" ruler: "" ruler-combined: "" ruler-horizontal: "" ruler-vertical: "" running: "" rupee-sign: "" sad-cry: "" sad-tear: "" satellite: "" satellite-dish: "" save: "" school: "" screwdriver: "" scroll: "" sd-card: "" search: "" search-dollar: "" search-location: "" search-minus: "" search-plus: "" seedling: "" server: "" shapes: "" share: "" share-alt: "" share-alt-square: "" share-square: "" shekel-sign: "" shield-alt: "" ship: "" shipping-fast: "" shoe-prints: "" shopping-bag: "" shopping-basket: "" shopping-cart: "" shower: "" shuttle-van: "" sign: "" sign-in-alt: "" sign-language: "" sign-out-alt: "" signal: "" signature: "" sim-card: "" sitemap: "" skating: "" skiing: "" skiing-nordic: "" skull: "" skull-crossbones: "" slash: "" sleigh: "" sliders-h: "" smile: "" smile-beam: "" smile-wink: "" smog: "" smoking: "" smoking-ban: "" sms: "" snowboarding: "" snowflake: "" snowman: "" snowplow: "" socks: "" solar-panel: "" sort: "" sort-alpha-down: "" sort-alpha-down-alt: "" sort-alpha-up: "" sort-alpha-up-alt: "" sort-amount-down: "" sort-amount-down-alt: "" sort-amount-up: "" sort-amount-up-alt: "" sort-down: "" sort-numeric-down: "" sort-numeric-down-alt: "" sort-numeric-up: "" sort-numeric-up-alt: "" sort-up: "" spa: "" space-shuttle: "" spell-check: "" spider: "" spinner: "" splotch: "" spray-can: "" square: "" square-full: "" square-root-alt: "" stamp: "" star: "" star-and-crescent: "" star-half: "" star-half-alt: "" star-of-david: "" star-of-life: "" step-backward: "" step-forward: "" stethoscope: "" sticky-note: "" stop: "" stop-circle: "" stopwatch: "" store: "" store-alt: "" stream: "" street-view: "" strikethrough: "" stroopwafel: "" subscript: "" subway: "" suitcase: "" suitcase-rolling: "" sun: "" superscript: "" surprise: "" swatchbook: "" swimmer: "" swimming-pool: "" synagogue: "" sync: "" sync-alt: "" syringe: "" table: "" table-tennis: "" tablet: "" tablet-alt: "" tablets: "" tachometer-alt: "" tag: "" tags: "" tape: "" tasks: "" taxi: "" teeth: "" teeth-open: "" temperature-high: "" temperature-low: "" tenge: "" terminal: "" text-height: "" text-width: "" th: "" th-large: "" th-list: "" theater-masks: "" thermometer: "" thermometer-empty: "" thermometer-full: "" thermometer-half: "" thermometer-quarter: "" thermometer-three-quarters: "" thumbs-down: "" thumbs-up: "" thumbtack: "" ticket-alt: "" times: "" times-circle: "" tint: "" tint-slash: "" tired: "" toggle-off: "" toggle-on: "" toilet: "" toilet-paper: "" toolbox: "" tools: "" tooth: "" torah: "" torii-gate: "" tractor: "" trademark: "" traffic-light: "" train: "" tram: "" transgender: "" transgender-alt: "" trash: "" trash-alt: "" trash-restore: "" trash-restore-alt: "" tree: "" trophy: "" truck: "" truck-loading: "" truck-monster: "" truck-moving: "" truck-pickup: "" tshirt: "" tty: "" tv: "" umbrella: "" umbrella-beach: "" underline: "" undo: "" undo-alt: "" universal-access: "" university: "" unlink: "" unlock: "" unlock-alt: "" upload: "" user: "" user-alt: "" user-alt-slash: "" user-astronaut: "" user-check: "" user-circle: "" user-clock: "" user-cog: "" user-edit: "" user-friends: "" user-graduate: "" user-injured: "" user-lock: "" user-md: "" user-minus: "" user-ninja: "" user-nurse: "" user-plus: "" user-secret: "" user-shield: "" user-slash: "" user-tag: "" user-tie: "" user-times: "" users: "" users-cog: "" utensil-spoon: "" utensils: "" vector-square: "" venus: "" venus-double: "" venus-mars: "" vial: "" vials: "" video: "" video-slash: "" vihara: "" voicemail: "" volleyball-ball: "" volume-down: "" volume-mute: "" volume-off: "" volume-up: "" vote-yea: "" vr-cardboard: "" walking: "" wallet: "" warehouse: "" water: "" wave-square: "" weight: "" weight-hanging: "" wheelchair: "" wifi: "" wind: "" window-close: "" window-maximize: "" window-minimize: "" window-restore: "" wine-bottle: "" wine-glass: "" wine-glass-alt: "" won-sign: "" wrench: "" x-ray: "" yen-sign: "" yin-yang: "" ruby-prawn-icon-2.5.0/data/fonts/fi/000077500000000000000000000000001354577744400172365ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/fi/LICENSE000066400000000000000000000001671354577744400202470ustar00rootroot00000000000000/* * Foundation Icons v 3.0 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3 * MIT License */ruby-prawn-icon-2.5.0/data/fonts/fi/fi.yml000066400000000000000000000144541354577744400203670ustar00rootroot00000000000000fi: __font_version__: '3.0' address-book: "\uf100" alert: "\uf101" align-center: "\uf102" align-justify: "\uf103" align-left: "\uf104" align-right: "\uf105" anchor: "\uf106" annotate: "\uf107" archive: "\uf108" arrow-down: "\uf109" arrow-left: "\uf10a" arrow-right: "\uf10b" arrow-up: "\uf10c" arrows-compress: "\uf10d" arrows-expand: "\uf10e" arrows-in: "\uf10f" arrows-out: "\uf110" asl: "\uf111" asterisk: "\uf112" at-sign: "\uf113" background-color: "\uf114" battery-empty: "\uf115" battery-full: "\uf116" battery-half: "\uf117" bitcoin-circle: "\uf118" bitcoin: "\uf119" blind: "\uf11a" bluetooth: "\uf11b" bold: "\uf11c" book-bookmark: "\uf11d" book: "\uf11e" bookmark: "\uf11f" braille: "\uf120" burst-new: "\uf121" burst-sale: "\uf122" burst: "\uf123" calendar: "\uf124" camera: "\uf125" check: "\uf126" checkbox: "\uf127" clipboard-notes: "\uf128" clipboard-pencil: "\uf129" clipboard: "\uf12a" clock: "\uf12b" closed-caption: "\uf12c" cloud: "\uf12d" comment-minus: "\uf12e" comment-quotes: "\uf12f" comment-video: "\uf130" comment: "\uf131" comments: "\uf132" compass: "\uf133" contrast: "\uf134" credit-card: "\uf135" crop: "\uf136" crown: "\uf137" css3: "\uf138" database: "\uf139" die-five: "\uf13a" die-four: "\uf13b" die-one: "\uf13c" die-six: "\uf13d" die-three: "\uf13e" die-two: "\uf13f" dislike: "\uf140" dollar-bill: "\uf141" dollar: "\uf142" download: "\uf143" eject: "\uf144" elevator: "\uf145" euro: "\uf146" eye: "\uf147" fast-forward: "\uf148" female-symbol: "\uf149" female: "\uf14a" filter: "\uf14b" first-aid: "\uf14c" flag: "\uf14d" folder-add: "\uf14e" folder-lock: "\uf14f" folder: "\uf150" foot: "\uf151" foundation: "\uf152" graph-bar: "\uf153" graph-horizontal: "\uf154" graph-pie: "\uf155" graph-trend: "\uf156" guide-dog: "\uf157" hearing-aid: "\uf158" heart: "\uf159" home: "\uf15a" html5: "\uf15b" indent-less: "\uf15c" indent-more: "\uf15d" info: "\uf15e" italic: "\uf15f" key: "\uf160" laptop: "\uf161" layout: "\uf162" lightbulb: "\uf163" like: "\uf164" link: "\uf165" list-bullet: "\uf166" list-number: "\uf167" list-thumbnails: "\uf168" list: "\uf169" lock: "\uf16a" loop: "\uf16b" magnifying-glass: "\uf16c" mail: "\uf16d" male-female: "\uf16e" male-symbol: "\uf16f" male: "\uf170" map: "\uf171" marker: "\uf172" megaphone: "\uf173" microphone: "\uf174" minus-circle: "\uf175" minus: "\uf176" mobile-signal: "\uf177" mobile: "\uf178" monitor: "\uf179" mountains: "\uf17a" music: "\uf17b" next: "\uf17c" no-dogs: "\uf17d" no-smoking: "\uf17e" page-add: "\uf17f" page-copy: "\uf180" page-csv: "\uf181" page-delete: "\uf182" page-doc: "\uf183" page-edit: "\uf184" page-export-csv: "\uf185" page-export-doc: "\uf186" page-export-pdf: "\uf187" page-export: "\uf188" page-filled: "\uf189" page-multiple: "\uf18a" page-pdf: "\uf18b" page-remove: "\uf18c" page-search: "\uf18d" page: "\uf18e" paint-bucket: "\uf18f" paperclip: "\uf190" pause: "\uf191" paw: "\uf192" paypal: "\uf193" pencil: "\uf194" photo: "\uf195" play-circle: "\uf196" play-video: "\uf197" play: "\uf198" plus: "\uf199" pound: "\uf19a" power: "\uf19b" previous: "\uf19c" price-tag: "\uf19d" pricetag-multiple: "\uf19e" print: "\uf19f" prohibited: "\uf1a0" projection-screen: "\uf1a1" puzzle: "\uf1a2" quote: "\uf1a3" record: "\uf1a4" refresh: "\uf1a5" results-demographics: "\uf1a6" results: "\uf1a7" rewind-ten: "\uf1a8" rewind: "\uf1a9" rss: "\uf1aa" safety-cone: "\uf1ab" save: "\uf1ac" share: "\uf1ad" sheriff-badge: "\uf1ae" shield: "\uf1af" shopping-bag: "\uf1b0" shopping-cart: "\uf1b1" shuffle: "\uf1b2" skull: "\uf1b3" social-500px: "\uf1b4" social-adobe: "\uf1b5" social-amazon: "\uf1b6" social-android: "\uf1b7" social-apple: "\uf1b8" social-behance: "\uf1b9" social-bing: "\uf1ba" social-blogger: "\uf1bb" social-delicious: "\uf1bc" social-designer-news: "\uf1bd" social-deviant-art: "\uf1be" social-digg: "\uf1bf" social-dribbble: "\uf1c0" social-drive: "\uf1c1" social-dropbox: "\uf1c2" social-evernote: "\uf1c3" social-facebook: "\uf1c4" social-flickr: "\uf1c5" social-forrst: "\uf1c6" social-foursquare: "\uf1c7" social-game-center: "\uf1c8" social-github: "\uf1c9" social-google-plus: "\uf1ca" social-hacker-news: "\uf1cb" social-hi5: "\uf1cc" social-instagram: "\uf1cd" social-joomla: "\uf1ce" social-lastfm: "\uf1cf" social-linkedin: "\uf1d0" social-medium: "\uf1d1" social-myspace: "\uf1d2" social-orkut: "\uf1d3" social-path: "\uf1d4" social-picasa: "\uf1d5" social-pinterest: "\uf1d6" social-rdio: "\uf1d7" social-reddit: "\uf1d8" social-skillshare: "\uf1d9" social-skype: "\uf1da" social-smashing-mag: "\uf1db" social-snapchat: "\uf1dc" social-spotify: "\uf1dd" social-squidoo: "\uf1de" social-stack-overflow: "\uf1df" social-steam: "\uf1e0" social-stumbleupon: "\uf1e1" social-treehouse: "\uf1e2" social-tumblr: "\uf1e3" social-twitter: "\uf1e4" social-vimeo: "\uf1e5" social-windows: "\uf1e6" social-xbox: "\uf1e7" social-yahoo: "\uf1e8" social-yelp: "\uf1e9" social-youtube: "\uf1ea" social-zerply: "\uf1eb" social-zurb: "\uf1ec" sound: "\uf1ed" star: "\uf1ee" stop: "\uf1ef" strikethrough: "\uf1f0" subscript: "\uf1f1" superscript: "\uf1f2" tablet-landscape: "\uf1f3" tablet-portrait: "\uf1f4" target-two: "\uf1f5" target: "\uf1f6" telephone-accessible: "\uf1f7" telephone: "\uf1f8" text-color: "\uf1f9" thumbnails: "\uf1fa" ticket: "\uf1fb" torso-business: "\uf1fc" torso-female: "\uf1fd" torso: "\uf1fe" torsos-all-female: "\uf1ff" torsos-all: "\uf200" torsos-female-male: "\uf201" torsos-male-female: "\uf202" torsos: "\uf203" trash: "\uf204" trees: "\uf205" trophy: "\uf206" underline: "\uf207" universal-access: "\uf208" unlink: "\uf209" unlock: "\uf20a" upload-cloud: "\uf20b" upload: "\uf20c" usb: "\uf20d" video: "\uf20e" volume-none: "\uf20f" volume-strike: "\uf210" volume: "\uf211" web: "\uf212" wheelchair: "\uf213" widget: "\uf214" wrench: "\uf215" x-circle: "\uf216" x: "\uf217" yen: "\uf218" zoom-in: "\uf219" zoom-out: "\uf21a"ruby-prawn-icon-2.5.0/data/fonts/fi/foundation-icons.ttf000066400000000000000000001572201354577744400232430ustar00rootroot00000000000000pFFTMhOS/2A9^`cmapxBcvt 22\fpgm x9p gaspTglyfjF~head<6hheat$hmtx7vlocaQ(#<>maxp P nameIgXppostg{ 6prep=====xLfGLfPfEd.@ < U33'3#wffU3Tj+A#32+32+32+#!"543!23254/654&";2J    j7"8       4  , , z.%#!"&4736322&264&"794+"1;1251 |  5   K   cr #12#!"=43+"=4;22#!"=43%#1#"=4;12Q'rUcq &32#!"=432#!"=432#!"=432#!"=43Q @ @ @ q e e e cr $22#!"=43"=4;2#2#!"=435"=4;12#1Q 3r 4cr $22#!"=432+"=432#!"=43!7#1#"=4;12Q@rfUBL%+"&'#"54?62+5#"=4;5&546232+67#"54?632&264&#"YjY/ 0 /.."#2""/// . h,55,RT# #%""%# #Rl +%#"'##"&5475&5463236323675&'#h$$ b  ""        u04+!#"&=4?631!326'&+54+"#"27'!'!  * (7@C H E~QQZ/"7&76;54;232#"' > t ? 0P632+/&547 O> t >0P7'&=#"=4;5476 1> t >"%++"=#"'&?632!? t >  )//&?'&6?27>76"'&5 S8RT S8RR8S R8S *767676"&5//&?'&76?2S9RS9RhS9RNS9R-D[//&?'&76?267676"'&5/'&/4763%&'&?'&?676#L5LxL5LL5LL5L L5LL5LL5LxL5L)?U7>76"&5//&?'&76?2&'&?'&?676#/'&/463L4LL4LK4KK4KZK4K\K4K"L4LL4Lxi>367672676762'&'&""27672636'&&'&74767>76767627676'.'&'&76&767>767>765"'"'.'&7632727>727'.5474'546767676767>7'&7>76565'7>767676'&'&#'"^    0   ! J              $      f    ;             1    g             $   v   Vt9%#'"/1#"=1/&72437'51&?5654;1276R W : Y XZ  Y 9 Z YY12g d33 231 4g g31 33=H%#"&'5#"&546276;233265.#"327272#"&4627&#"323"7' &>P%P7:SS:",2Pppp $ 42 $)",Ce,$6JStS ppps4'qx73#?2+&+"#"&5463z45\j - j 5-Z (4L%2+1#!"51143!215!( ^  3 > _  W4L%2+1#!"51143!215!75!( ^  3 > _  W4L%2+1#!"51143!215!7#5( ^  32 > _  W~~zz  P72'2'7'.7>6'7'"'&/23"4#/27776'6   2 9JMRMMRt0          <   MMRMMR!"""" '7#### (#pRdw71#1#1"="&#1#1#1"=+"5173631327=&+1"=4;5143931226351439312':>54.*:>54.*#41-* -J          7$/.// U=/.-//&7@    VL432#"#"'15'#"'15#'9'#"/#"&54?5#".=3#4?632[$%%$k#-1 /%)1 -$6  / [$$%L,U Q%H1 ->`4>7 / 1477"&51=#"&47175'&54625&546321"'57'f 7 WV 7 eH222x f |7 V V 7w e GY3e22/Q"7+"54;2'3254&#254&+ ,) ',M"%P("-  +#Q=!BH6#1!"51=54;32?363232=;2+3!2532HNA/BTTB 5H ,#1!"51=543!32+3!2532;2=4+"H  NA/ 5@@}2#"/&#"#"=43 QS }"R RS R" i!'432#"7432#"432#2432#432#2432#$##$#$$#$###$$$###$$E$$##$$#HHHHHHHH@JVc$+#/"/&=#"&?'&4?'&76;54676276327''7'7''7''7'7'''7'06/17/06017/ " 1 " J** $ #3 .7/.70.7/.7/E;%;&     E1$1$1.C[ciu7'6+#/"/&=#"&?'&4?'&76;54676276326'&'&767&6'?'7'?''7''7''7'06/17/06017/ &   ' U9 & P**.7/.70.7/.7/Y    4. H  0      @$+#/"/&=#"&?'&4?'&76;546762763206/17/06017/.7/.70.7/.7/Fx 6Iaku%2#!"=432654'654&#";632"3#"'#754+;7;22#!"=4;2=32="=42"=42@g   &K"HfH    }X"BB""""    f(7;7432#"72#!5"'&5476;546;22767654&#"75#1001U e :()::K110  )::)(:33k#5"/&4?67632 yB /% y B/{r,#1"/&4?67627+1!9"&546;#3{Q,:3   3CP,4   3; .@Oap1+!#"&51146;=43132132#+1"=#711+"5154;7211+"5154;211+"5154;7211+"5154;211+"5154;211+"5154;2;   K_K 3 3  bb  bb  bbh  j  :     :    :    O%1'&?1767'211+!#"&51146;=431321321+"=#+1"=#35431t;sy#H   K_K ' t;t EE  j  D, -; .1+!#"&51146;=43132132#+1"=#;   K_K 3 h  j  : ""264&2"&4"/&54?676tSStSݠppp"[>#@MStSStppp [>$@4VL3S#'&=4?36&/&#"&462?676'&#"3276&/&#"&462?676'&#"32M   "### !$$#, ^^   ^^  $ #+F+$$ #+F+A?%6#!"'&54632632"4b@. +H0M3%$2G>?y&%3+#"=#"'63!2#"72+"=43.\ , ; h\ ],# [ V O $$ y+D^x+#"=#"'63!22654&#"67364/"4"#3264&#"671654/"4"#654&#"3271#21503654&#"3271224 , ; h  "P  "^#  E"  i,#    %  %%%   &   y"+#"=#"'63!2554+";2= , ; hWA n n i,# | x y+#"=#"'63!2 , ; hi,# p(+#"/#5&+563!22#+#"=#"'563 , !9 s    (  e  ! D h   2"&4264&"76#"'&?pppptSStS <e=pppStSSt d=e 2"&47264&pppp:RRppp=RvR9zG !=4;!325!#!#"5z] z :%$ '+%2++"=#"&=#"=4;54;232!35#% %% T$$ $$ \} 24:>B%1#!"51543!2%;76274;6321#!1"'#53432#$432#242&42\="RR# >>&#QQ# +F>>>>)>> Ew!'?+;;1/#3?#1Efgb^[1.,)SR ^w$$((('4 >{ 'Y08<NVZ1+5"&546;2264&"75#71+5"&546;2264&"75#71+5"&546;2264&"75#| P P KDH Q Q KDH Q Q LDHC   `   `   `\n'/7#!"&5463!264&"6264&"264&"264&"6264&"\llIll\n'/#!"&5463!264&"6264&"264&"6264&"\I\n#!"&5463!264&"\  I  \n'/7?#!"&5463!264&"6264&"6264&"264&"6264&"6264&"\I@BBB\n'#!"&5463!264&"264&"264&"\llIell\n#!"&5463!264&"264&"\Ie!M_!2+#"/15'+"51=14;2%#9#"'54;72M G 23 2    ' : V + 2  F:(=RZn1#1!"&515463!121313;2=4+1"14+54+1"31;2=14+"11;12515325264&"14+"1#"1;251&24/67654'&#"&54 i  L**+kP88P8&+:)    &  $+++8P88P *     c7<A7+"=&'&54?6325.546754;2##"'&'5654'~+(6# %,,%/#=! +# :""*+. } /%2#!"&=46;226763'&76;54;232"{   Z","\F!<!E   bXXb'~Y7"54?632##!&=47%21  e  Y  1  '<Bs{2#1!9"543!!2"/&6;54;2'"&?63++"=%42"'&=4#"#"=4#"#"=14"1'&=437432#"'&=4#"#"=4#"#"=14#"1'&=43 x+0 22I    J     x 4*,,((,,(( H2 !B BB c 2H  H2 !B BB c 2H 2NF%9#"&'#"=4;=#"=4;>329#'&#"32#9#32+32?6%N3KL2N%(+4dnoe5+(}C5- ,4C(, -';mE&%1#"''&4?6325264&"7432#"gO'<3'WP(;4'L44L4/+,,+O,$W O-$4L44L&++,Gt9%#"=#"=4325432t oNTTNo %-732++1#&=#"=46;5&'&462264&")#('NpND11D1)#""#)'pNNp1D11DV42#"/&#"#3+#"'&=##"'&=#"5154?515&#"1##"'&=?63532DTK     ! /TT Lz QQQQ {L i  o#"'1/&515'&546;! (  WN v ` .n 2=H=43132#5#!';;276=326=4+54+"#"'3#"&=46#1#32d 74%44%4l   4- /%55%44m    t!2#"'&#""&54632632327l"2.!&:  -/!&9 E$-  B -k82#!"&=46;76;254+54+"#";;26=326    J ----E    ----k!7$21#5472#!"&=46;76;254+54&"+";21 "f    J  "p     CCk2#!"&=46;76;2    J E     +1<2742"&42#"'&/7&'&54632'42",|ZZL8e "L>+ ,,,,~--,88"  +> " dbW[_k{%2+'"5413762#/"=76+/1#"'1'#"'#'&5476735;762"#/''72+"=432#"/"=?3+"='"=762+"=432+"=4372+"=43E>?>C>>>> :C         ;      """%"""" &$Nl    4k t #/72+"=4372+"5432+"=43!2+"=43HHIHppXie #%2#!"=437#"=432#!"=43| MMwMMMM|~ +"=4"&46;23;2FacddG~bFFdde%[1%!"&5463!2'5!7"/'&?676276"/  g $p , .4 F( %   2  $ H :\{ ;?)W5Lb&5432#"'#5#"'#"/##"&54?&547'&5432273#"'#'#"&54?57+'?25 <    &%   9 8[  %&  SS (H*  @ < * AA 8 .! !s7 AA 6tSi  H*- A{1CRh~21"&5476367=&?67654&""&544&"#"5462"6"'&5472+"=4#"=4;+"=4#"=4;12iV=  1  ):*   ,a F( r 5%/C.>,  $ &   % ++ ,.   % G( D%4 B{2#"'&/.546326'/CkkC/9!!{C/;PP;/C,,a%+"=#+"=4?6\ ` o `  ,j"!'?+;1/+175?+';5,{{^^ T.**MM  M25Zj"" g1 ;b &cr $3C2#!"=432#!"=43%+"=4;125+"=46;124757632#"/"Q@R  @?rUT B$J$cr #0@2#!"=432#!"=43%+"=4;25+"=4;2"=4322Q@R ?@rUT jJ$$2"&454+";2&264&"pppp  ppp||  /lQ+&=14;2l:  :  D   D</7%1++"=#+"=##"&4632;2264&"    -A,1FF1)@ :'':' =' O' *9FbF2'^(8((8z'37"&=463!2#%!52#!"/&=46354+";2<  p  >IRTTe  ⯯)  }p  $75353353#532#!1"&'4635!L9k99   3wwQ888888 3  %9I[gt/&?61"=4;2#+"=4;2$2+"'&'&542+"=4;72#'#5"=4;'2+"=437&?16'p- - @@Z@lllll@5 - _- - @@jI@-(;7)#-1m . !M_79%#9#5"'54;2121+"/&=4;=146321;21#M    M 2 F 33 C   2 : W aq!'6"&4?676?67&'&'26.'76.171&:4  3U<4 4I%%+ )&&p:R4  45 5 M 66 Lf+=431!2#!"&2#!"=4312#!"=4631 5 A 5 %5 6 : 6 5  6 5d$%2#!"&=46;54623'3=14&#"V GdHc   +2HH2++++Zk@/&54?&#"/&7>32?6#"''&=47632676Z$? * T2K5 U2J5$2 G,7  +25 +25, 2#"'5"&47#7&54264&"``D'"R&PzV<U g@>F432##"&=4"#"&=4""&=4#""&=4763%432#"#"/&#"3#3+"&=##"&=#"514?=&#"1#"&=756;121*++Q       *++* !     !  1TT x R57n nn 5R x6**+ N| R RR R |N jVj%+"="&46327#"5154;2264&"V#.NpNN8)#,jD11D1bj.#'8NNpN-#1D11D?432##"&=4"#"&=4""&=4#""&=47>31*++Q      0TT x S57n nn 5S x#'<D##!"5179!925#7#137'!5'21#"'='&546264&" n}]nVe|5H0j$ '( $ R 3!\}|Un]Hjc%CE$]!25#"'1"4/&54264&"TxUZ \r:**:*UM F  U I)7%32+"&46;5.=43226=4321#=>2"&@/D  D/@ 5L6 %6&'6&1H  H1J I&66&I Iw&&w&& %2+"=436"264&2"&4tSStSݠppp,,rStSStppp %2#!"=43 v ` `  8S2+"543254#"75#11#'51'&1/&753171>19'51'&"/5&?562 d Iz X 'p') + C' 3 %c  ''!  f 2+"543254#"75# d Izf 4 &}#2+32+"=4;5#"&=463!5!  , 0  p} ,  , d%!+5"#"54?537627632 gWQr 0  0 ~z2"&46325#"&46325463n(:(( (:(( z!!.!!!.! &Z)%##"=#"=#"=4325432=43321     4  xcNTTNcw  ;]2"&427'"/##"54?+#"/#"5?&547'&543253'7654&#"37#73+pppp2(      A!S!S:2(S   ppp!  $$  A(2:S3(2:S!S $5E%2#1#"=154;2#1#"=43&2"&427'#"=14;'7654&#"32+ppp2(Wh>E!S!S:2(W<ppp!WE(2:S3(2:S!Wh)E%2+!#"==7;29+"=#+354372++"=#"=4;54;2-  ! l [ S ( # ( ( # . -    iZ  $( ($ ((i*+!#"==7;23#+%2#!1"=3256  l [/x  U[ W6*1EM7"327#"&5432&#"'73254&5432&#"73#'37+!#"==7;23#+j    "  8 u  l [w       //x   TZ f)H%2+!#"==7;29+"=#+35437//&4?'&4?6762-  ! l [ > . -    iZ  e  6")19L+!#"==7;23#+2+5254+62"&5254#"7"327#"&5432&6  l [. '4 F    x   TZ /# $    )9<%2+!#"==7;21+"=#+354371'&?'767'-  ! l [ R1$. -   T?Z  T $>Qip%&=#"=4;54762+!#"==7;21+"=#+3543'"327#"&5432&254&5432&#"#"'7773#'^VU<  ! l [    *  . pD :  -   Z  I      $ //>ELU]p%&=#"=4;54762+!#"==7;21+"=#+3543'32+74+327432#"74#"327"327#"&5432&^VU<  ! l [ !   % .    pD :  -   Z  U      >FLSZd%&=#"=4;54762+!#"==7;21+"=#+3543'32+#64+3732+74+327#3##53^VU<  ! l [   !  ;$pD :  -   Z  U   />%&=#"=4;54762+!#"==7;21+"=#+3543^VU<  ! l [ pD :  -   Z  6 "=732#72#!"=6;1251563    V (2#!1"=325#!"=32532#!"543!2}3IWWh6 %9A72+#524+72+5254+53#3#+!#"==7;23#+n  8 *$j  l [ //#  /  ,x   TZ h+7%1+!#"==7;29+"=#+354;272+"=436  ! l [ ! ) V^    Z @ X $$ )<F+!#"=4;23#++"5#=7;2#"'#"&4?&54622654&#" "m [" 0") ( 0DQ&x  - TZ   D0 ) ("0>(6+!#"==7;23#+6  l [x   TZ .%/&?'&4627617'#"&54?41356321 99 ?&nk   :: &nV  4a5"'&76?6'76'&36?676'&"&4?>"M0#"0 -5 &O#+ !0#"0  -5 &"+3&Z#211+1"5114;1+1"5114;21A 6 5 7 5 Z   kp&,"&4622"&4#"'#"&54?67632'42"h,,,,#( !(#%*yrr,, ,,O**((**!{::9 ;`'J7+"&?6;2+"7;27654'&+"+"+"&?32?6;27654'523I(:U)+I  !  TI ( I+)X 3T 3<< =3  1&?3767' " M9* "  8{,23##"'!"&'51463!3632!76327632'42" w   2M tJhhd  H  0! 4432"&4264&"7#"=432pppptSStSxpppStSSt?E#]%!"&5463!2'5!7=  l $===#   3i$#GF#"^$#"'5432   % sz%2++"&=#"&=4;54;2j |W| | W V{{V { {2NQ7#"&#"#"'#'15475654'#1"=4313&546321#"'&#"32+632327621)- -2='G% </   K %02!%{(<"&547632312654'&5471573632"51514;1211#1#1H8pp5)StS(  L8qqOM7+8;RR;:( &Z*2#"/#"/#'+"'5143532763276     9TNcw    xcNTD%'5'#&=4?1763&>.D m9m ` A? *2%'5'76'1/''5'#&=4?536533&>.  h-)I m9d `  X O` A>! "*+5+#"=4;54;213254+"53+" CD D C f   OO n n* ~~ 2"&427'7654&#"pppp2(!S!S:2(ppp!(2:S3(2:S! u &#!"=43!22+"&5475#"&=143 u   k M     %h%1##&#"3272+"&547654&"1+"&=46323264&#""1"&=46;>4'&54623;2%   A* D    K " > * C  B*D     X(2Jb72#"&5472721632#"&547324321672""/&47167#"&54632#"/&47367#"&54645 r5 5 y5 :& :&  :& :&  |~2"&4264&"oooo4$$4%~ooo$4$%2 cu)/&54?&#"3276#"&462?6b$,@@,:-Q-Kjj5Q,?X?/ %+jj56J(4Fi7#"=4?&546327.5&'312#1#1#=312'2#1#&/>76473+"=4?&'&547>32{5) E  rr ~5  = !!  8 6 "" &  ! !  $f ! B 8  8     'Y/@Qa#1#"=94;12#1#"=94;12%1#1#"5154;2#1#"=943532#1#"=94;12%1+"51543352 m l 0 m l P! ! V Dm m U!  Cm m  u/6>F$/&4?&#731211"##&'&676?63#''>&4254#"b&,>A,   KlhKL5? U(()*@X>/hKKk4=cH "**5! ! Gt92#"/#"/&5475763276k   9TNooNTSi762"&472#"'5.+&'54731#"'5.+&'5475;2&&LkE12 c~s&&jL 1E  cr!%#1!"=4;623213'3'!'! 7 '& TU@  %  33f333{|875371+54#9+1#"=43132;2=47631325v '  ' C .nnc   1  f#%2#"'"&46327&47'#"&4626*###2####2# #2#[$$2# TT #2$$ZA%2#"'#"&547'##"&46327'#"&463237&54623632#"'6d  P#"N   ##  O%$N  "#=  < <<?  > <<X .'57>75#53cHHc3EyyycvIkkIvdL4FRr%#1!"&=6;>232!3&#" o \l[+AB .88.3} 86432#242'#!2!1"'&=#1#"&=>;12;2_<"? a 6K K<<<<   !  g%E?+&'#536321%&=#'76;5476&=#"/#"#"'5673235476J,76W _5&66L__M:  W5-76 8 E%66D 8 NV^%'&'&7'#"'5"'&7'&4767&47'"&476&76627&7626'6&264&"264&"    -&'-  ..    .L.   .. P N    --    .L.   ..   .L.1  qx.>y%2#"'&'&'&'767676#"'&54763272#!"&5463654.'&#".'.'&#"327676?327676     g     "                      (        qc 33?#'};W9cFAAxf3>Zw;634&'&'&'.'&7676'.''.'&7665766"'.'&76767627#"'&7>7>56+#'&76   &:7% )!D'  )  >@D7 & $ 0)&'%)(    )*E# %Ca1*>$&(  R-Q`#47'&76627624#"324#"#"&=4632'+#"&#&=#"#"'4&=#"'&='2#"'&=4699.{ o   ;  ""   c<<  PEg  g  7 777 gg `!#"&"#"'.76322632''&767T3 5 ' (&' "%# !51.-I%$r<86w!4"! "mx $7[c%2#62+572!&'63;2=4+"4'&'654+";27674'&#";2>54+"#"'&'32'+5; -a) @@ .PQ w(  M (%$$>l  + % B `57432#"7#"'&'&=36676'&'&'&'&'&#_dccd?  $)+$::;ZJF1#$    CDEEF,= 5c( !!  <$"qx(4@2+"&=463=/.'.'.'#";26'"&54;2#2+"54634$$$$"2++R*') Px$$$$: +S**b   6   \n73#5#53qx9]d%3#'#=;72'+'5'+'.'&'&+#"&546321322313+=;24+322 />?'  +e !39GNNT,L2(    |s(}#{A$Fqx,7GS77#!"'&=7'6'&721'.'#54?3&=&>7%2#!"&54634#!"3!2-0>G C'a78$/   ?/]#v0e 2vi !. # ?   2 -J6#<HV_lu%+"=4;2=+"=4;2=#"3'2+"=;2=4#"#"=4354+;2'53+"=4;652=#372+"=43'"=3#j>>k1Dj> ( C,k={,x]1 9b x_; ) sBJm^& sz%1<D2"&4%64'"67&27&67263&'#27&'#767.nmmn4+3; 8-HIJ)5LH[(>,9 /zmmn  7f "$(#LC<.P  5C2 "&E2f 73#%/'C+yBxBsyssx '7?7'77'5uQuQQuQQvPttPvRRR#ut#xDH@AIDDIAL@HDDFFN cl"?#7#"&5462+*32654&'&'&54"'&'&'./47676;25&=47676224'&6! I $+#  /  &/$""H  ;H *{D!(!"  '  K     qx#2+537#54;5&#"#3#"&5463\ ^07 '00 x  8$1'#)8 H qx2#!"&5463264&"264&"M12##2#2##2"x(#2##2##2##2^#5#57'57'5#'#^A\I @+ !.! ,B$!+CI 977632#1#"/&?632"/&4?62'&"327C! n ! ))Hl2  m  C n ((Hk2 m qx-5D2#!"&5463"632654632>5.547264&"2654&#"MR:166) ,;X,, -- *"x(:)8/)T?#$3)A,, - -$&;2=4'>54'6'&&".#'&'"7'.54vuL< )2 &, 2) '     767632+654'&/&'&54?>767654'&'&'&'37#"=46;5#5##3359  !'          "#o A]]V:;;  "!  I c   #          r::::qx2#!"&54637##&/#3MF Ax(w9 9wXP0 <Fe%#"'!535#536535373'355#54.#"5#3#35#5476#35#5#3#2656&#"737#632#"&76#"+&t%X0PLS L&+!Qz,    !( LBM7  (+ 8% $6N%j$$ ,$$Z$6$(  0\   $ q{"'+/5EMU%4'3#!"&=32672#&#"#5463535#35#75#35!54&+";26"&462&"264 ff 6L69o-,o # " " # # D//D/66%%6&&66H%%H[H4JJJJ4J  /D//Db%6&&6fr'Fa%+&''>73276'.'.'>7''&#&'567&77676'>763676'676'&'&76766&'&./&T 1  .  (|5 % #0g 9& , "#,f, ""+# /  #(b4   ! /  %- T7   "/#0. ;". "  #,P,+# 0  #%L45%#"&/.#"326?#"&546323254/&5432&"b?c99  " 6267405=1 !7UL0D5B,(0')")*979?'.0<1D=qx02#!"&54635#7264&"54&"#5#35432U   R6 L46! x  < ư a(+W-Vqx .#!"'675##'#32+35#537#35#"=43Z DD6  @x ATTY^ss^Y5K !/=$"&46242"&4622+"=462+"=462+"=4<++<*Ԃ0""0#V6&q<)~D-*<**<8 #0""00(3-81! qx2"&472#!"&5463264&"D00D0ahHHhI0D00D(HhHHh\{&%"'56=32>54&".54632\]N) $? (D^C )aMN`>J/A q"+*,)!+8@PO &.'632&'67467&!#&'#%!+;8a;2HvV4% ,4 Uu %<08_A;/=`[4!!A2#"'6?32654&#"7>56'&54632#"&7>54#".54vuuR $0'&'&'5476;6?6376?6#"/#"'&6?&'.#&'&5&7633276'2"&46#2"&46g J   L & 3 &   J w ,  ,K  &[&   Ƕ  3M    QS/(    ((o%#"'#"&547&54632632654'&'&'&'&/&'&54763232654'.'&#"#"'&'&'&'&#"3276 @-Nn@- Nn[     "     ("-@ nN-@nNC            T7#"&/&'&6?"1132303676'./"&#'"&'#./#'#&1#'"4#'&'4767."4#&"/#"&'"4"&+&+'&*4"&+"&#.#76A - ! @ M  8) B % 8 # F     O 2#  C   {oJ%2632'&&'&&'&'&'&'47676'.'&'&765&7676. -   ":2!   /    8%O   0   *   5   9#%#5GS2&'&#"&546'&#"76323276'&#"7632327276'&#"7632#"'67632vu2* .;$"4& 7B)!  $<.! EP.( %(H=  R^12*0UKl2(  uS4Y)9NR &   !C +   &< 0 ,   |%'&'4'&#"'&'&7676'37>7&'&'.5&'&#476254&5&'&'&753>76'&'"&'&7473 D.!< - > (%&    - 1  ,   /m#E "&  "' +  %C' " );& *  $    $Q 753!53753'7'7'77'7'7"! 7bk$ $$@%$Z$.$W <N2%->P$"&462&2##"&/#"&46326;746"264%"325'.>&"'.'3264&,8((@  *V&&X        (8'/L*L<&& m C#"&'32654.54;23265'2"&=4&+"+&546e*uR:_W'! $*(=3b%- Xv:7CSu;2<###  9! !+  Rvm77676>7>'&76767676'.'&767676'.'&=47676'&7676327>7;          e3h %!" , B    "  #"   J 9  :  " qx32#!"&54635#"'&'&=35#5#33276M BB(   x(,G,F 'a  `+#"'327.'327.=3&547&54632676}iD8 8-*  %# Af/"$ : X$#- ,O "/ qxS2#!"&54636'&'&32"'&/.'&'4#&'&6#57676M &   )    .x*u   " ) $=p} %#57#53'53pە˕ } (6&5477.632.#"'>>.'>?%0,6"p$A8JI8C$#7;UV;5+0%/ 5&G0$ 7FM;00 R8*$ >>*)7G6 (-H&:-S@%'77/#&'&5476327+&'?&&;7/?676755.2'Z55-B8D+665VT02-#$3!  4;$2./)>@)!!(A?()m  "&    X&=Pd7>3#"&/&7&4?>2'&/.7>?6/7476#'&'&6?> e+69 0d5 WT  i  Z  F F   =Z 5Y9,v =I.2i  N qx#5?]cs753#5#"'&=32'53##57"=4322#"'#53654#"3272#32753#"'&=47654"72#!"&54632735#"=3276=4'&#"'#357#64'&'&#"3276 S8["  5 !  D M  ,  !CB!JKXCX  FAYffN & & [  $  w' @& 6L       " (5G  ZEB  .!11G/^Vz<73276'.'&&'&767>76&##"'&767676L  %%$.;R($   &;< 7)   / Z2     @.qx*2#!"&5463#767654&+3;67M    x('  &   "^0T\~>2"&#/1'1'9&75357364'1'1'5&?17961#15''1'&?176&'1'1'&?1?16&"&4611/&479717651119/1&4?61#31 01 >x  %e %%  ; >=  0111  > D %hSb %i% D=  >>  11%#"/&?'&76;763232q2 2p21ZOO Z&4Z#!#"5154;!324   O  *8V .R%2+!"&463!2#"'&54?163232654&=435'&54632##"'&#"2+")  !97I,%5 :/C)"3 "y 1'3.'F%0)" ";'(G%+"=4?>54#"9/&71763232''1'/&717'5&?6769C  f CC  CC  CC  CC 6       BC  BB  CB  CC X;^'E+"=473>54#"9/&75356323'1'/&717'&?6767C  d CC  CC  CC  CC !      CC  CC  CC  CC "^#!"&5543!25!%254#" l 3g O_ =2#1!"&5463!254"7#- yl  Y N'/7?%2+"=.'#"4;>75425.'#753>73.>7# &fHHe' 'eHHf(:G33G:B(:I33I:(Hg& &gHHg& &gH8)3II3)88)3HH3)8#2"&4264&"&2"&4264&"642`CC`DY6%%6&ppptSStSfN3C`CC`q&6&&6pppStSStNNM(4@LXdp|&=4767632/&=4'&#"#4;2+"53+"=4;2+"=4;2+"=4;2%"=4;2#3#"=4;23#"=4;272+"=4;2+"=43+"=4;2"=4;2#3"=4;2#3"=4;2#72+"=432+"=43 -lj2A 3!A # # ~ # # E # # E # # # E# # :# # : # h # # #  # " # " # E #  8-28  i ) #  " @  fs&%#"&56?6322?6323f2 R3 ) .$ IX2Y 2 L .+{r +.%2+!"&463!%"54576;2+"/##73l  \ g - g  a4h- #  0/ Lf"2BRas21+1"&=1431321+1"=14311+1"&=4313221+1"=1431321+1"=1431321+1"=43121+1"=14631321+1"=1431321+1"=4631A 5 6 6 6 5 6 6  5  6 6 f 66 6 6 6 6 6 6 6 6 6 6 6 66 6 6 6#>'5'6&'1&7676/&17172#"5'"=7'463732?$?D?$bb' $">$?D?$Lbb '#"$L{3B%+='5&#"3"#"&=4?&'&547>3254+"3327A {{ S  -- !2(M F"#F M& '(  #L{1%#!"&=4?"&'#"=676732173132;+A  S , (' -!M M& !F*)F! L{$%#!"&=4?&'&547>32A  S  -- !M M& '(  i+@V%#!"&=6?4"+"=67632+"###"=4?&54632+54/5#&'632~   J( %!  (7 S!$ h 7$"E   E " 8$"%<  EB ',)2<9 BE =1 *,h/T%+54/&'654'632##"=4?&54632#!"&=4?&'&547>32 :6$ 87 S!$   K ((  BF % *+ FB ',* '7 F   F #  $%  {O7#"&=4?&54632#!"&=4?"&'#"=67673217;2;3+1"'; Z$'"  S!- (' ," J G ). - "*IM M& !F*)F!  s-H%#!"&=476?&'&'=>7>312%#"&=4?'#"=>32  P  (+  M 6; Z$ . |J J %  '  $6 J G ) /@*$ s<7#"&=4?&54632#!"&=4?&'&547>2;; Z$'   P *6+   J G ). - ( 7J J%  %'  A 2#!"543%2#!"=4;54;2%  e H   R # #  Y%++"=#"54?#+"=#"54?#"54?#"54?632++7#"=7#"575762++HHR&e 40 GG 1+ # 22"!,, ZS{{TK<WW<K.26+32#1#"4;5.'#"59=14;=47;2325#!5#K +0"3 3"1* ) ) E #3AA3#  $  $ffff8b-%2#'!5"&463!&"&=46;226=46;2)  Qv>  %D%  =  >5 "''" 5J2"&4264&"742"#"/#'#""=4""=4#"#"54?516;21pppptSStSs00k "" .5pppStSSt8 " ? ?? ? " .  ",8FRbo&613'7&769'&7631/1'9'&6'9'&767'9'&761&"&4?66.12?1"&4?366.1#2?1;  1  $hCD[  2  $hDD:3U<4M ).+.:4T<3M ).+/X  1  ED1   1  ED1J:R4A.& +#$$%X u ^'*  B! -< .OY%#"/+"/&'#"/&?&/&=4?67'&?6326?6;27632264&#" 5 " ) - ( " 5 5 " ( - ) " $$$$ . ) ! 4 4 ! ) . ) ! 4 4 ! )d$2$#4#(061#"'"&46?&5463231?4&"2 @. s):*)sA.H.At)*:)t.A #+3%#"/#"/&54?'&54?6766"264&2"&4#22#22#22#2tSStSݠppp#22#22#22#2StSStppp fr %"/#"/&4?'&4?676fC``C``C``C``D``D``D``D`2NF3312#1#312#1#+1"=#1"=43135#1"=154313'54;276;2 UJ___/^^^HT9DD9K!0/!nn=2#"'5"&47#7&54264&"72#1#+1"515+"=4;=4;2``D'"R&PzV< !h!!"4"`"#r##$V$$%%H%^%%&(&V&&'6''((()H)*&*+*+v++,0,r,,->--..j..//0/L/v/0(0`0011D1z12|223b3404Z445 5V5556F6787889@9x9:R::;8;<<<<<===>>l>?(?@ @AABB^BBC CXCCD:DEF&G GGHHIhIJhJJKtKKLNLMN2NrODOvOOPdPPQQ|QRRS?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     uniF100uniF101uniF102uniF103uniF104uniF105uniF106uniF107uniF108uniF109uniF10AuniF10BuniF10CuniF10DuniF10EuniF10FuniF110uniF111uniF112uniF113uniF114uniF115uniF116uniF117uniF118uniF119uniF11AuniF11BuniF11CuniF11DuniF11EuniF11FuniF120uniF121uniF122uniF123uniF124uniF125uniF126uniF127uniF128uniF129uniF12AuniF12BuniF12CuniF12DuniF12EuniF12FuniF130uniF131uniF132uniF133uniF134uniF135uniF136uniF137uniF138uniF139uniF13AuniF13BuniF13CuniF13DuniF13EuniF13FuniF140uniF141uniF142uniF143uniF144uniF145uniF146uniF147uniF148uniF149uniF14AuniF14BuniF14CuniF14DuniF14EuniF14FuniF150uniF151uniF152uniF153uniF154uniF155uniF156uniF157uniF158uniF159uniF15AuniF15BuniF15CuniF15DuniF15EuniF15FuniF160uniF161uniF162uniF163uniF164uniF165uniF166uniF167uniF168uniF169uniF16AuniF16BuniF16CuniF16DuniF16EuniF16FuniF170uniF171uniF172uniF173uniF174uniF175uniF176uniF177uniF178uniF179uniF17AuniF17BuniF17CuniF17DuniF17EuniF17FuniF180uniF181uniF182uniF183uniF184uniF185uniF186uniF187uniF188uniF189uniF18AuniF18BuniF18CuniF18DuniF18EuniF18FuniF190uniF191uniF192uniF193uniF194uniF195uniF196uniF197uniF198uniF199uniF19AuniF19BuniF19CuniF19DuniF19EuniF19FuniF1A0uniF1A1uniF1A2uniF1A3uniF1A4uniF1A5uniF1A6uniF1A7uniF1A8uniF1A9uniF1AAuniF1ABuniF1ACuniF1ADuniF1AEuniF1AFuniF1B0uniF1B1uniF1B2uniF1B3uniF1B4uniF1B5uniF1B6uniF1B7uniF1B8uniF1B9uniF1BAuniF1BBuniF1BCuniF1BDuniF1BEuniF1BFuniF1C0uniF1C1uniF1C2uniF1C3uniF1C4uniF1C5uniF1C6uniF1C7uniF1C8uniF1C9uniF1CAuniF1CBuniF1CCuniF1CDuniF1CEuniF1CFuniF1D0uniF1D1uniF1D2uniF1D3uniF1D4uniF1D5uniF1D6uniF1D7uniF1D8uniF1D9uniF1DAuniF1DBuniF1DCuniF1DDuniF1DEuniF1DFuniF1E0uniF1E1uniF1E2uniF1E3uniF1E4uniF1E5uniF1E6uniF1E7uniF1E8uniF1E9uniF1EAuniF1EBuniF1ECuniF1EDuniF1EEuniF1EFuniF1F0uniF1F1uniF1F2uniF1F3uniF1F4uniF1F5uniF1F6uniF1F7uniF1F8uniF1F9uniF1FAuniF1FBuniF1FCuniF1FDuniF1FEuniF1FFuniF200uniF201uniF202uniF203uniF204uniF205uniF206uniF207uniF208uniF209uniF20AuniF20BuniF20CuniF20DuniF20EuniF20FuniF210uniF211uniF212uniF213uniF214uniF215uniF216uniF217uniF218uniF219uniF21A22, `f-, d P&ZE[X!#!X PPX!@Y 8PX!8YY Ead(PX! E 0PX!0Y PX f a PX` PX! ` 6PX!6``YYY+YY#PXeYY-, E %ad CPX#B#B!!Y`-,#!#! dbB #B *! C +0%QX`PaRYX#Y! @SX+!@Y#PXeY-,C+C`B-,#B# #Bab`*-, E EcEb`D`-, E +#%` E#a d PX!0PX @YY#PXeY%#aDD`-,EaD- ,` CJPX #BY CJRX #BY- , b c#a C` ` #B#- ,KTXDY$ e#x- ,KQXKSXDY!Y$e#x- , CUX CaB +YC%B %B %B# %PXC`%B #a *!#a #a *!C`%B%a *!Y CG CG`b EcEb`#DC>C`B-,ETX #B `a  BB` +m+"Y-,+-,+-,+-,+-,+-,+-,+-,+-,+-, +-,+ETX #B `a  BB` +m+"Y-,+-,+-,+-,+-,+-,+- ,+-!,+-",+-#, +-$, <`-%, ` ` C#`C%a`$*!-&,%+%*-', G EcEb`#a8# UX G EcEb`#a8!Y-(,ETX'*0"Y-),+ETX'*0"Y-*, 5`-+,EcEb+EcEb+D>#8**-,, < G EcEb`Ca8--,.<-., < G EcEb`CaCc8-/,% . G#B%IG#G#a Xb!Y#B.*-0,%%G#G#aE+e.# <8-1,%% .G#G#a #BE+ `PX @QX  &YBB# C #G#G#a#F`Cb` + a C`d#CadPXCaC`Y%ba# &#Fa8#CF%CG#G#a` Cb`# +#C`+%a%b&a %`d#%`dPX!#!Y# &#Fa8Y-2, & .G#G#a#<8-3, #B F#G+#a8-4,%%G#G#aTX. <#!%%G#G#a %%G#G#a%%I%aEc# Xb!YcEb`#.# <8#!Y-5, C .G#G#a ` `fb# <8-6,# .F%FRX ,1+!# <#B#8&+C.&+-?, G#B.,*-@, G#B.,*-A,-*-B,/*-C,E# . F#a8&+-D,#BC+-E,<+-F,<+-G,<+-H,<+-I,=+-J,=+-K,=+-L,=+-M,9+-N,9+-O,9+-P,9+-Q,;+-R,;+-S,;+-T,;+-U,>+-V,>+-W,>+-X,>+-Y,:+-Z,:+-[,:+-\,:+-],2+.&+-^,2+6+-_,2+7+-`,2+8+-a,3+.&+-b,3+6+-c,3+7+-d,3+8+-e,4+.&+-f,4+6+-g,4+7+-h,4+8+-i,5+.&+-j,5+6+-k,5+7+-l,5+8+-m,+e$Px0-KRXYc #D#p E KQKSZX4(Y`f UX%aEc#b#D * * *Y( ERDD$QX@XD&QXXDYYYYDruby-prawn-icon-2.5.0/data/fonts/pf/000077500000000000000000000000001354577744400172455ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/data/fonts/pf/LICENSE000077500000000000000000000020541354577744400202560ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2014 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ruby-prawn-icon-2.5.0/data/fonts/pf/paymentfont-webfont.ttf000077500000000000000000004366701354577744400240150ustar00rootroot00000000000000 0OS/2j`cmapVTgasppglyf\x2headd46hhea h4H$hmtxxB4llocazd6Lmaxp 80 nameC8PFpost= 3 @sfgf 8  s 797979 *Ue:Mg T#*9./#1"5<546716754654&'1.#*#"101#"09'"&563:32511'"3>75>5<514&#1*#".''3:31 7>71%32032650495432326=<5467>31:32326=4'.#"0#1*#"&#*#"54&+"%6454&'1.#*#"1'"&563:321'1##0"9.'1.'1#0"9"5<5467367"3812671>54&51"73632631>?6'&7.#*37>7354&+*1"913023131130231>32':1265045150414&'1%5#0"9*#"&'1.5<51<54671>3231:3215#<54&'.#*#1"325%"54&+0"1"0932032650495<5467>302312320326504954'.#*#19   6_%g>z, l^%- -afj7Gz93wK|=+%B  > $*3+ =>z*   3^$h^& ;v * Do5gg{77E4434^ ///38:= %= !N   ^!6    _Pc B+    $4!.I3 gUU    K 9 &   _Pc    _"5 0B* v0@f &** / P"==!!<>"& c{m>0  YL~l?KNg3733537!532356373353#'#'#*#"75#.#*#3!'#'#!#*#"15#*#"35#.#*#1#.+'!!735323267#3532!:326713:3267#5#'#'##735373'#'#53732#/#3#3#53#3#35#4&+#53211#32654&#32654&#54&+#532011#53#32654&#%#'#'##"&546;";735353#53#3#3'#532654546;#"6#%#*#1#532654546;#"6V+W%_(+' !!>]   +)' *) "$4I,Ifh6ZKURB?#1k+6nn{vssvM 2*62w4  262w4c44/@?  $H^gh:41252'>FKUMX3ussu)"#bb *e\ -" aa +e\ `l0/#$%%MC1/--%####  KK##/    --..FPND 8//ȐyTTGFFEE'?#>&+)=-%+)}Rc)"*L%6 i.R)#N&i/ Ý//5256.6"Ƒ+&+)UT;- "K - "K% - !K - l%EQTt373353735323563733535#'#'#*#"=#.#*#1!'#'#!#0"#"35#0"#"15#.#*#1#.#*#1#'#37353:326735323:326713:32671#5#'#'##735373'#'#53732#/#3#37#53#3#357#4&+#5320##32654#32654&##54&+#5320#'#53#32654&#%#'#'##"&546;";735353#53#3#3/#532654585463:313#"6#7#"#532654581463:3#3#"60  \0 w4  aMM N j  IU H"4L  Y cZ  K H S))6 : 2)/-$!.6"$mo"#X;iF>>D`]]A??A* A  $# #"   B 6## -'49 9 !  ').+0\\A??A66 H72 H 55 G83 4l*%  ))L   &+*% [ZZ[tnnNNB..&&&t&&#!t^. )t   *u  t kWW ZmnPPu..** * k3,%'##3'&'&'##5!###333#4547#d))}8 ;ktԄimk) 0aa:,'[hPil'Po <\5FO]m 3:3203251#"#81!"&545<5:3267#>75>54&'.'5.#*9 !"3!3:3267>54&'1.#0"9*+32812911&#':32671>54&'1.#*#3*+7221#*#.545<5#7101132671>7#3:3&6#'#".51&454671>71>71%532671>7113:3<5.5<5<5##*'1.5890454671>71>7%"1#7>54&'34&+3#"&'1.5467*#3:3'7#"5#3<5>71>71%2671>3:31:32671>321;814&'1.#"1.#*#3*#"15#27011326715#"&5<5<5#1%.#"15#3:32671>3213134&'#!#3735#"&5<5#3265<5#:3265<5<5:326545.'1*#3:3:3#265<5<5#%"3>71>32113.:3<5467#'.#"713:32671>3213130454&'132671>3210;0454&'1.#"31!5#7"1326717 EE 9!U> :!5$50 )7$   8 *&  S$      -      %   u ?%  A  3  $$   %     %  \    %  #    ' $ $&Pc '%  $&)/       "  #    $S)lD'A` #6#;/   E  V6 l !"  ) ( (  3  !    ]V  b  T  $%    + #  ,c  b-,&*,..   TT$""4(GOYi>s%#7#73##73:32101011#''3023267>50490414&'1.#*1###73#/&=7#'#7367673011#*#1*#"&'5;023267#>51814&'3.'1././.51854671>73>302310232#.'1*1"189811109#73#3##73#3#37#73:32#1011##''3:3267>50490414&'1.#*1#:32#09011109##*#3#73:32671>540514+73:32671>504514+##73#/&=7#'#7367673#'#73?3%4!"931!2654!"931!2654#"93132653+; ;24;   +7"   O5=1 \9;.4;9/       !     [23 U O N4 U O OVv23<   ,8#        !X3  O5=1 \9;.4;9.8#333E32'7'7''7'/0109#*#10&17767>54&'1>516&'!0"1"13733;203267#>71>50490454&'.'1.'1.#*#1#'7>71>71:32118151##89%#3812671>71>71>58510414&'1.#8#181"1189132097133:31023267#>7#'##"09*#"&'1.'1.5<51>7737#7815133:31023267#>7'##89"#"&'1.546514&54671>3:3#:32#7./.#*9*1"7101:3267#>?>?>510414&'.'1.'1.#0"9*#"7#11'133:97023215511#89*#"&'1.5<71467>7>71>30231%#3>71>71>5890454&'1.#0"981"11891389021267137>3102321137>54&'1&#*1"33%4 2( +) mG*J7 7J*  BW          )  \  PX   "    C"     5L@L%  _2        TUP              ! R!            '   M@L:  M1 "M#<   V 1k- rCW 7J**J7 lG  %$#$);%$$%      >$         0   #    : _>P    >  " ; !r                     :4       #k+f76&'776&.#"32>?>54./11''7''7/7052326717'70454&'10&1777~ y)i fc< fNNfV}Z7cPb'$dE6+6'F' $ 'J#5+63@zw22(k.-#FMffN8cP< V}Zi,>2> Y Y Y Z >  e  9W W VX913 )T~IY535#532011#'32654&#32654&+%.#8981"53#535#53>3:9:3254&#"1'>302923#5#*#1"&5463'.#1"3265#535#535#5335#53>3:31:32093#5354�"1"13#%#53533#13:7>71#89"&5%.#"0981"53#535#53>3:3#:32#*#1*#"&'1<1463:318325#3:31:12671'3.#890"#"#*#1*#"&51<1463:318125#3:310232671'3.#89*1"3k%*.(1)'-+I #;&A  $ ,> '2    $G6Z((l; $X X,,$QQ % +S #;%@ )&44%%5 wii)&54%&5 vh""  "? #,""f"   " L"   ""f"4f" $O""E8""=="H ##9 #,""f"h5%%46% 4L5%%45& 4clP371##5##5#73:326589.#*#1#5353353''3<54&'1.'1.'#.'.#1.#0"#3##1323:7#3267#7>7>71>75>5049<14&'.'1.'#'.+.#*#1#3>302317>7#>71>71>75>5<'/W5!  $<[H[B B[I[*#          )  '   BR#  =k.+S&  k _ ")           lI-.5<5<54673$%>32130231:3:321#*#1!*1"&'1<5:3:3:325#1*#"123:7#:323265<51&<654&#!"T -..\\\.  NN/AB./Cs;w<0S;=y< RR&!!]!#': 3fgf3 877B./BC/ :!;T (!'/`__0!!*# QlE=EMq%#.#*#1"3:3267#623#*'3"#"&'1.54651<5467#>3:31:32'81#8#1#"01"&589'#0"9"5434654&#*#17#'5>3:3125'5"3:310232671&'.3267654&'1././"'7>'�"1"72=6.#*1"18#"09#0"1"&540954654&'814638932>38920321021209"3254+3:3267381#89#*#10"#"&'1.5<515#'58146383135?338128981#0"9#"&=#0"9*#"&58943<54&#*#15#'4671>3:3125'>50495#"3:3#:32671%11#*'*#"&'181"&5409704146320133209254'&543:12##.#*#1"781#"09#0"1"&58957302120#181#"09#0"1"&589581463029302128#1X z'";>$(% %L (]5^7 @8l1h%"37 @9m3h$; 3i**'"YYU7<     !"*;&$-  &b<Y-** %D;]r%  7?YL****!' <"$@   M]  jY*33C &P-8Y]D &P#98Y]+7 8228#z+" {* ; - ]  jY  D&3$  " 3&Da &+&#C++g l/7Ma.#"09!81"1113201!812671>71.'3!'7!%"32>514.##5>=4&'#5>7   ^ Tv@pS00Sp@@pS00Sp@d3 %$@4]  v `p0Sp@@pS00Sp@@pS0( (a3]eo:u>G81"10913:31267#1*#"&'1.5<51041467>73>3:3#:12#'.'#.'1##73#/&=71#*#1*#"&'351:3267#>5409854&'1.'1.'5./.5890414671>310212'.'1"0#"1090111309#7##7337307#0"#1*#"&'1.5<51045467>73>3:31:3211'1109#30231267>71>5<51<54&'1.#*9#'#73676735#*#1#73:32110232671>71>5049<54&'1.#0"#1##73#3#37333737>773#'3#73#3#37#73:321511##''3:3267#>5<510454&'1.#*9#73#7'3    "  !    O6>0 *       !     3N343N3W  !   ]    A9<.4;9. $N5F"    $J6 X R R X065,Y3656 K7:3 5 Y QRYz65>  /9$    A;k4)6u   * !( )9c9  @  ,     ! '    Ggg^^V(  ( 0      ɵ#q v_(  n  ++5+@++2  3+5+@3^    i^+ 8c^^f /H!# '&5476! !!!021218931111#!DvvpsYv{bX#>:"$>>#\c]]cTqgTZ>$!;#B&$@w{j(,Ho;%0"1"890130298126540981493#75#3546381217.#1"0#"1257.#*#1"31:32671'#1"&546310111#1#"&'1"&'1.'1.50495#011113267>71>71>50495#'.54632#7.#*1"#0"#"&'1302312654&''5#35463021217.#10"1"18#"7.#"3267#32>54.#89q   L      `  b         F}32~FPj==jPF~32~FPj==jP5   4h[ h:    ':<  =*   h: v/)).=jQQj=/))/=jPQi= zlOk<b81111#"&'1.'1.'1.58953011131326712671>71>504953'"01"15#3546381217.#178#"15#35463021217.#103:31:32671'#1"&5463117.#*#1*#"01%.#0"#1"#0"#"&'1302312654&/.546321%81#898#"&5409814638981289#537#".54>32'8#"732>54.#8967>54.'1&    P            }   b .n=Qk==kQ=n/ !6%%6!#GQZ0/ZQF# GQZ/0YQG#>jQQj>TBKS,,TKABKT,,SKB"0Hq$KYx111"&1.14617#"&1.1461>13'.1461>121%"1111261>14&1.>=4&0#"&=4632126=4�&#"3261726=4&+";326=4&+"3726=4&+"3>=4&0#"&=4632126=4�&#"3261726/76&+";#26=4&+";7#"&546;26=4&#"170632.#"3267;326=4&#"54&+";26=>32;7#"&=463226=4&+".#"3267;7+5>3226=4&#"54&+";326=4&+"#"&=4&+"3267;76&+"'.+";26?-$2%.2-%'0 $<&1 $<   "%%" CI   "%%" 3//3d "% ! !    "    #! B '&<S-%-%3-%3-%?$<&1 $<&1 2$#4#$2$#4#$bJKa) Ns!# w#  t):M$?#Bn8B";$O tx" vv>l1AQUY:12191!*1"&'1.5<9<14671>3:31"1!54&'1&#27>51!13753353$ ;*$  $ :  5132>54.+*#"530290212#".5894>31*#*#21:3:32654&#"&=2632#7541"3+:3:35#"&5'2658949"3154&#=4&#1+:3:35#"&=>712+:3:35#"&5"&'<5<5137<5<514&#*#1"3>?'1'02121+>37"154&#"+:3:35#"&=467123>54094#1>323#:123'.#1"81#""&'1312654&5"&546323'.'#"3>7#7'#8974&#1#+:3:35#"&5154&#"#"&=4&#"#389>71>735#"&57154&#1#5731>5<51<54&'1.'15>712#pG78G8GF8FFc<5894&##*#3#5326325098173#7.5463217.#0"9*#"'0981#0"#10"1"&'130231:326504514&'83:3183267#5#1*#"&5<51<5467325.#890"1"89#"&54632'#37#35#535#535#7>5<514&+3533'#532#&0ʼYBB'D74   \--  #'  )+&QF1  ,, 2GJ34II43J]=2bc1>RPPR+'B->7o l(FXdf* .3A       &   +1F5 ,- 6G24II44IIZK&>'3(`"!$[\|FlE\w%133267#53!*1"&'1.51<5467#>71>71!#5.#1&"#"5935#1513267#*#*#1011135   ': ) pi  *R  l2&uu  !w; K!D"!v]EImF!a$,a@ #?0410497707>7326323###11751##""&'3.'*0+"454546;25811389267267#>71>516454&'.'.'1.'#.#*#31891###*#1"&'.'1.'5.'5.=<5<5467>7>71>?>?>3:312'155&+"133:3267#>757'326'4&'.'#.#*#181"11;%'.'1.#"#3"31113110151###*#3"&'3.'.'3723:31812671>71>51<54&'3.'1.'#.'.'1.'1<5<514&5467>73>73>3:3##'2<5045049>32127>32101269>3:11#1"1"&'1<50451<5045<51.#"09"1"0509#"&'1045<9<50450454�"981"11919#890"1"&589<541%<5<5401463029812810811*#"&'14&#"&'1.5<51>71>32#81532671>54&'1.#"101#10"1"&'1.54671>321<5<581463:110098011"#"&'1'01132671>54&'1.#"11#181"&510454504504946712632>3:111#"0#3"&'17814&'1.#0"91131812673>517>32031210090101811"#"&'14"#"&'1.51<5467>71>3212054&'1.#"1132671>5049%>383#20121020902110"1"&'1#"#"&'1.5<51>71>32311812671>54&'1.#"1130297>30292101901"#"&'15#"&'1.5<514671>3:3#10414&'1.#"11132671>5132326776232101#1#"&'.'1.54671>321+74#1"11:12671>71:32111#"&'1.'1.54671>3898321101#8#1#7.#"1<5<1<9>716232163>32189001#"&'1<5049<5<54&#"11909#0"9"&51045<9.5%<5&41<314632127>323189001#0"9"&510450451<5<5049.#"100101#0"9"&589<54&57>7>32111#"&'1.50451>71>54&'1.'4&514054671:321%812#2110"#*#1"&'0"1*#181"1010311#""&'1.51463029#389:56&/.'.54094671>3029<54'"01"&589854671265<5463181211;20981#89"11#0"9"&5049<50453<54'"&'10454671621:1245<5<51814631063211;811#"1#890"1"&'1<5<514&5%<504146716232161>3:92910919#"09.589<5<5#81"&589041467131#8#1# 4%.^3#^5            SV           )                [C    D            #             b#     B      s       S  aWy+  O.9D M5 R/       "  =>'    '@                    l   !            M    '<              !          )(                   +  $  !B%011#"1"1"1#1*#*#10"#*#1#*#*#1+*#*#10"1"3#"#"&'./#81"&'1.504954671>3:93.5467#81"&'1.5154671>313>?>3:312'1091#*'1#.#1'".#1.'#*#"7!81211#81!5!81210951#30290212670232673623:1:1:313>71267173>3211  >r/1F5&&8G//s@9 #B+  +B$ r\&!&f<@@5<51#3#3'##37.'#.#181"18113:31>7#1*#"&'1.5<7181467>?>3:310212#'#7#731#*#3*#"&'1.5<904146717313:32671>7373#'##3:321101#%#3#3#3573'&%#3:32671>5<510454&'1.#*#3^ )%P&9: `Z Y!>F    &#   %    0:0C & $:%$  $:@':;D   a [ Za :  #?  V ''  'wj /E/j@@   0 $-  !00~&    !  gg  l;/E/ . F@H   f +5lv~'.'53.'3.#*#1#3:3267#>5<510454&'1%573'&%81"&'1.5!1113:7!:32671>5<51#3#3'##37##7#73#7#731#""#"&'1.54690414677313:12671>7173'##5#'##3:32#101#3'573'&5^  E %AJ )%P&;< c\ \"=GE1;1D Ä1;1D & ';%%  %<\!<=)==E    1HI &@I   HA ''  'wl/F/lAA0000&    !  AAii   r HA a$7  [8#"89"0#"&540515*#"7543+73:3267#675%54&+*#"71013203130212650&95>3>3130212658'350414�"9.#1#"'5&454673>3:313>=750414�"9#0"1"090130293021265049#+*#"&'3&74&546716;75&+"'5>3>713#2;:32115&+0"#"1;2755>;2;21#0"9#;+*#"&'1.'1.5174014630293213023132+530231301#"0#1#*#"&'1.'1.5<51%+*#"11+.=&45467>7>3:3134g  8g./A ! Z==e "=EE 71!:32'010#81!!81"1033:3#!1326?>5049<14&'1.#"15#:31#89"&'3:3#812675>7567>=#'>76232#1*#*#1.#"33332671>734&5<5<14&'1.#"3"5351#"#"&'3'.'173:7#232671<71#"&'5.5467>321532671>54&'3.#*1%0232#11#"&'.54651>71>7<54&'1.#*9*#"11302310232671>5<5153>7>71:3#0"#"9#'3#.<7#<5<5>32#81467#>3211#"&'1.5<51#"&'1.'1<54671>7123B]$-#)4]B/v*:  .  %' F&    ' /-L-0       $ D%     B   #   $/  .% a    ~#"7&#":) 6    D   %IHKK     b    8]B3'C M/0`1.\\\.A]/;)*UTU+ii( (  !'%6;$H#8ts 1     2  -%[Z  9    G      q4  &7 3 );t      n( > /?MD@MD-           1l=455.'.'1./&'.'#/.5467>75>3211777#0"9"&'1.'5.54671>?>54&5.'.'.''.'1.5467>71>3:9:12117.'>54&'.'7777##0"90"#"&'3.'5.5467>?>756'&'.'&'.'1.5467>73>71023213S    !    (E       +        #=   #           $)++/%   . 5  ,5A:#?$> !  9-8(     t4^-)K#3;9g0="  > +!40W1!1\,7`.     !J'H&)U63*      7l=k)t%gt381"51*#"&'1.5143:32'81217.'#"302326715>302312578#895./&7*#"1325<54&#*#11"&5>71>3:9237"325.1"5814671>320921.54671>7#>?267#>30291102120917#0"#1#"&'1.#1.'1<54675>5<94&'.51.'#*#"313:3131*#"10132650414&'1'<#"&54671>714&'13#"&546733'1"&5405467146320117515<54&'54654&''.'1#57#31370"1"&'1"&5737'.'1.'1&"#"101326737#89'5463:12977#""#"&'=467>71.'&7>71:3213#'#'37370454&#*#1"3>31:1201'#"326535#"&546;73#73#7"323265<5#01#0"#1"&535.#>3273#37#"0#10"#"&5<95#5357&  H   /<2R!->&<"v./ "P3// "     $$  '   '      % ?f% "  /     " !   !&  D#   g     a         7   2  '    @  3?F+&/W% ,RE8"7**L / L/**L3 /       3{C;l/  #U.  %Bs      p   ;"C  C}8;o1B{5 %d; i s  '  *Q' !9 7DE;E K(#N)UMLTLLL3  ;% MvvvX/*  & " 7  <#%011#81!81"&'1.504954671>3135#"&'1.5895814671>302935<54671>3:#:32110111*#"&'1'.#5'./.#*#1*#"1930232189811#1#350414671>313211#888& !V06`%:    %\VJ.P!%!H  #|JhxB )FY#".54>312'.#"1#0"#10"#"&'1.#"517>54&'5"&5045463:310212#.#1*#"13:9203267#5<5'*#<5<523:7#*97&#>54&550454&'267>71*#"&5<946;54&#3'>31232671#1"#"&'1#0"975*#*#3"03:9>5#"09"&=#73?3#326717"#"&'146302310212#"&9>=4&'267#*#"&'3"64=<54&'267>312#'"1302312654&#*#"&5<946;54&#1'>31232671#1"#"&'1#0"975*#*#1"03:9>5./.'2677>7263*#"7$)H`76`H**H`67`H)     yx n8BH3( !((  ,$>) ?,+  $%# /     6++  >    ! ,> 4 ' "&2  ,+  %%" /  2$  H7`G**G`77`G**G`7d    B23H . ((    7" }0   6  ) ) ""<" ?  6"L("5 F     4  d +     3!+6 I ) ""<" ?  ,  -' e+  .  4l8<|#!!25#4'&#!! %"132671>54&'1.#0"93#%3!#3:3267#>7>71>5<'14&'4&'1.'3.'1.'1.#*#1#53 #5#+5321#535#535#33'#373''7>514u$5@{o?*<<*% %^u   vQ/V&"bVV^D/D/ @<  wksL,.j8ob<**<%%/2a   Y fQ!'&'  M   w?%81#0"1#81"&5894&+81#81#81"&5898146381!21#!0"1"&5898146302138128932658146381381289 [ [A \  ;gM-,Mh: [ @[ \  @[n  ,Mh::hM, $ J[@ 1#81###5#0"1#"&'&'.540515>7#>30293:3267>75#81"&'1.5150414671>3813&+81"&'1.'154671>3029!0212189#1#3812109`& P-` nKA;"xR bP:(C!fNH  $:@L: ) f BFWg W'.'53.'381"&'1.5!1113:7!:32671>5<51#3#'##36767333>773%##*#1*#"&'.5<51041467>?>3:31:32117#33:31>7#89*#"&'3.5<51045467>?>3:310212##.'#.#1"01"1891%#3#3#3"10913:31812671>73>5<514654&'1.#*#1^ )%P&~>?>FH9?ID7><  W@ '&  (%  i>@=e #)&  (      |ga ag >      V ''  'w ' ~    O  $-   $.P / $,  .   ;/E/ +        [l:E13201!01#81!81"&'1.54690&54671>381!5G )     E B    p   [l<c!01#81!81"&'1.54690&54671>381!13895814&'1.#1!"18931!2671655814&'1.#0"9!0"1"18981131!267#>58954&'1.'1!3098111!>71>51!'{)       X||}     p   {##  ##"" [l?Sy0101#81!81"&'1.54690&54671>381!11#8#"&'1.5<515!814671>31!2189#1!"&'1&50212189811#1!"&'3.5895814671>3029#098111!.'1.58950414671>713.'1'./          Z|||M       p   0 #  X##""t [l?S_0101#81!81"&'1.54690&54671>381!11#8#"&'1.5<515!3.'1'./          Z       p   0 E qljGXp33:3#267>71>75>589<5<5#1##*'3.''5454054673>3:3#303##0"1#333:31267?5##*#1.'3.'1.5467>73>3231'35.'.'.#*3375<540546?>3021305#1#<5<5<54675>71>7;#+3023267#>73>54&'1.'#"&'>7#>754654&'#.'1&+538121+7530232111*#q)( 4  !<>1 2.38$)  " "> &!)' ;. ?( + *       P_]U ,lY   +U,[[  6Tkk6wE     #E  4h44Smm"%3(P(%?kk%?M     VN  &#"&'1.50495#"&'.5895814671>320935#"&'.589504146716;.54671>3201302321'>76?>;132189811#"0#1#32#89811#"0#1#14d {o| mn | :2:J    :2: +#*#1#"'##*#1#"&'1.'1#"'&=8146716;'#"'.5049546716;'.54671>302930212137>3:93:12137>3023138321132181+3289%7#7#3573'#7#7# {] Z^wa ZZx  dR  >2N 38 H85 N5@  Tf h>.Z*P)-C,].$ `` $H&&HHHHHHH zl<y*_|.'1.'1.#"3151332671>71>75>54&'11#"&'1.'1.'5.54671>71>71>321115%0"1".#0"90"#"15#354&5463:1235<5463029235<54�"#1.#0"#11:1267135#*#"&546328901#817<54"3029021267#'10"1"&'53>5'>3203181217.#1"#*1"&'373:92654&/.5463:32##32671#89"&=#5353372#.#89"#53>3029%02126732>54.#"7.#"389        #          ""     RS           j(  'T   D|21|EQj>>jQE|22{ERk==kR        %I  p> == =E "!  o\$ ##      4 4""?p R-('->jQQj>-('->jQQj> zl<y*_|.'1.'1.#"3151332671>71>75>54&'11#"&'1.'1.'5.54671>71>71>321115%0"1".#0"90"#"15#354&5463:1235<5463029235<54�"#1.#0"#11:1267135#*#"&546328901#817<54"3029021267#'10"1"&'53>5'>3203181217.#1"#*1"&'373:92654&/.5463:32##32671#89"&=#5353372#.#89"#53>3029%#".54>32'18#"732>54.#8967>54.'1&'        #          ""     RS           j(  'T    .n=Qk==kQ=n/ !6%%6! == =E "!  o\$ ##      4 4""?p #>jQQj># GQY00YQG# GQZ/0YQG#>jQQj>TBKS,,SKBBLS,,SKBzl5S 5Mg'.546357.#*#1"#*1"&'1302312654&'"&=35#5##33812671'#1%*#"1.#0"9*1"15#35"454630292350&5463023#2356454&#*#3.#0"93021267135#0"#"&5463210#8#1%5#3546381217.#10"1"%10232671'#1*#"&'13<5<54&'1>38318121%.#*91023267135#0"#"&5463210#897.#*91023267135#*1"&5463210#89%5#35463201217.#181"217.#*9*#"3:310212671'#1.54671%021267#32>54.#"7.#"3898        o %%              f    M  5       \  i       BE{21|EQj>>jQE|21|ERk==kR* , / 0X  h:  ::  :A   hV I h;   .     hV I    I h;    p-''->jQQj>-('->jQQj>zlDb-Io~+%#".54>32'18#"732>54.#8967>54.'1&'.546357.#*#1"#*1"&'1302312654&'"&=35#5##33812671'#1%*#"1.#0"9*1"15#35"454630292350&5463023#2356454&#*#3.#0"93021267135#0"#"&5463210#8#1%5#3546381217.#10"1"%10232671'#1*#"&'13<5<54&'1>38318121%.#*91023267135#0"#"&5463210#897.#*91023267135#*1"&5463210#89%5#35463201217.#181"217.#*9*#"3:310212671'#1.54671 .n=Qk==kQ=n/ !6%%6!jQQj># GQY00YQG# GQZ/0YQG#>jQQj>TBKS,,TKABKT,,SKB , / 0X  h:  ::  :A   hV I h;   .     hV I    I h;    EBb#^b\/s"e.M.'#.#0"981"1310981113#'05071##"09"&'3.'.'3.'171331021267#>71>75>589814&'1.'1'.'.'1.'5.5045<1467#>71>71>3029:32'#0212'105#111389267#>7#"090"1"&'3.'1.'5.5049041467>71>71>302981"1113.'1.#0"970212#1.'#.#0"981"7#11#338981267>71##8#10"1"&'3.'5.5467>71>3:9011##"&'.'3.'1.5<5530111132671>71>71>504953781:#1.'1&"#181"1#101#53>75>3203130212#1109#11130292671>7###0"9"&'3.'1.'5.5049041467>71>71>3:98#"1113.'1.#0"#170212#'1./.#0"#18#"715133203#:326751###"&'3.'1.5467>73>3:31812111511#"&'3.'1.'5.54671>71>73>3029"1111132671>71>54&'.'.'1.#0"970212153#5#*9"01"&'1.'5.5467>7>38310"1"51111132671>71>75>54&'1.'1.'1.#0"#178125105#113389267#>7##"09.'1.'1./.5049041467>71>73>3:31"01"3113.'1.#*#1%#5#'#373#51#*#3"01"&'1.'5.54671>71>3831021211530"1"315133267#>71>71>54&'1.'1.'1.#0"9.'5./.'#.#8#10"#"118111#50111#89"#"&'3.'.'1731230231267#>514&'1.'1'.'1.5851854671>71>73>30290212#5#0111323892671>7###0"9*1"&'1.5<55#5353370212#109#1113892671>7###8#18#"&'3.'1.'5.50494054671>71>?>310"1"1113.'1.#*#1702123##.'#.#18#"1109#53>71>30293812#1.'1.#"09"1#'#131812671>711#8#10"1"&'3.'5.5467>?>3:31#51#*90"1"&'1.'5.5467#>71>302902325153"01"151132671>71>71>54&'1.'1.'1.#1702123##.'#.#18#"51105#53>71>3023#:121153#5##0"#18#"&'1.'5.54671>71>3203#0"1"151132671>71>71>54&'1.'1.'1.#1                            u               Y                 &' %& ~            Z   #      # "    #  #                  %%                  Y*L-L+ALLA'       '\                           D      $#'Dx              \  &&              '      'Z      &&  ''                   3         !  !       h    d`  `% ^          !  q         $  $ P        #        # k     #       #         !  ׾      !                  N   O$66        " #' c              "        $' c  p     %         3~37Y=j<N"3#.'3.5<51<54671>3:92632#1'>54&'1&#"132671>75%1#"&'.'1.54677#1#"370"1"1315#1*#"&'.'1.'54673>7167.'3.'1.54671>71>31.'1.'1.5467#>73>3:3#!>7>32'1#13:7123267#:326716&'.#'.#*#170414&'#.#1113:3102326712675>51%.#"353>716'%.#"731>5049<5467#4&+1326767>74671>?>3:31:32111375767>7>54&'1#0"1"013267#>7>73511#"&'3./.5467>?>71:32'1'.'.#*31326~=$3 /&4-$K  F0%   ) n2$*'z+& &        /*%! !?   &      ) /" :k '   * h    ),  G% /  / =G  "  L P      0 $)  2).!P- Q& 3-J  * 0# =4& M 1 .2+4   &+             .      # *   9%KZ L  6)   126) & B   (+  - " YiAu3j.r?6577/.7>7>?>?>54&'.'.'.'7>?>54&'.'.'&6?657/.'<545463:3:32#1315##1*#*#1713:3>51<5.'#*#"513:3>75>5<5.'1"&'"0#1"#*'3"&/.5<51<5<5467>73>32#1#<50414&'1.#"3111:38126589645%>7>7>3831:321#&"#*1&'.'.'11#*#1*#"&7>7>7>54&'1.'&673203211%*#"&'.'.+"0#"1#*#"&7>7>7>7>7>7>3:32##3267#%1#81#<545<585463893:32#111"71372671>50454014&'1<54&'1.'.'.'&63:32131267>7>7>30231:320101#0"9#"&5<545.` . *      a %     cC.    =7   #6'  ) ,   )6           '           ( !    W         f    ,n   'D               '; 0n:(\0'>u76_, +"O*H&6"Ay9(D .%T-D#6d0,   )^2*`2  I>' @      k        T0'7 *U**2"1, ,W,.36 2'N'45 "-'O& 9""'!%*    [[!""AA     1  $ "#  =-        #G$ t)>|#./#13#%#532#7#3532654&##*9"&5463:32#'"&#"7>3:31063209'.#*#3"3:3102126717354&#5>32094&#"3832671'#0"#3*#"&58953461#!5##33535#5463832=.#0#1"'"0#"326518143#K  2R&*"(KR1b_^ NZ(gK>e   ,6& 8B>+" MA8d KF8:KLA77 #jM$$M33   +*'MM' ' bp[kBnd/X;G ! 6 70,= 2:!"GZ[FIW/ $dO 'IJ =')QU3 p+ROd#"1'.'1#1;812671>54#*9"#"&54671>3209:32157#"1'.#1132631:126710;8126710454+7>38;21'#81"11;8126717>30213267>54&'.#1;812671<14&+"1#*9*#"&5467>32092632117#"1'.#113263102326711;812671<14+7>31321'#81"11;26757>3813267>54&'.#hM j, LTPM / #/  jL 2Ba.5D )69 &  AL  2OZ  <'AB AJ/ "0  jL 2B`.6E )69 &  AQ  2O[  ;(pq*#*  Y@. +j   h n LK% ` *"*  X@. +j   is LK%E*Xz.+81"38;7>38132>76716&'>;0232#'6&'.+81"38;7%/.#*#3#"1>;2>7465./.'11#*#1#"15#0;2671?>;2676&'_> e % G4\I4  _> e %)9  ) G4\I4  D`E0H % ~  \    4T>.A .A    4T>(\c -   Vk-J*=HO@;ve!\]!Ou<XFb '  O { .'1&"#0"9#81"3109#13813267#>75>5<945854&'1%045049*#1011#89#8#"&'1<5<5145<5*#*#351;01091*#*#1#3:3:31>75>5145<5.'1.#81#81"111353267#>71>5145814&'+0#".589<5<545<1<9463209:320121>50451<5<5.'1.'#.+3:3:3#11#81"118901113831230212675'8110"#0"9#81"&'1.589<50&146514671:3:3#321209%.'1.#1#3:3:911#*#"5110151313>75>5049<54&'181#1#81"&'1.51<5045<546389023:93289135#81"&'5.=<3?5<54014&'1.'1.#1#"110111317<5814671:3:3#3201211#<532671>75>5851<5814&'1.#1*#"&'1"&5851045041463162735#81"3091130293812109811*1*#1#3%#*#*#1<56471>38935#"189023263#545<53:3%>71>51>32#31#<54&'#.#"11>504945045*#*#1#0"#"31891113209:3267>75+*#0"#"&'1.'1&45145405467#>71>31:;811%465049<5<5<51.'1.'1.#1#13:32111#"51898131:32012671>?*#*#1#"&'1.51<5<581467>73>;11#81+81"&589<104514=#11:3:93811#0011:3812671>589450471&"#*308#"09#.589"41<314=*#*#113029309#81#013:3812671>5049450"94&51.'1.+0"1"11090353:30231>51<5+"&589<51<50414638932%<5<514&'1.+"11090353>71<50110+0"1"&54094546;2%.'1.#1#3:3:3189#*#*#1"1011389:32012671>51<54&51+81"&5104504518146302932091%245<'14&'1.#1#3:30291#*#*#115138138126589<5+0"1"&5851<546;21%.#0"1#5"&#"#3354546;223:71041<5814&'14214&'1"#3021:311#*#0"#1"89533813>51<546'81#89#"&5049<546;201289#%814&'1.#1#5320181#"01"109131:381265049<564581#89#"&5<146;2!7<5.'1.#81#*#*#1189113893<5<51#"&5409&67'<54638130210292901%#"&51463135#&"#*1"8181138938121#"09#53:71>51<5<54&'1.#1%3<5<50414051#"11138;0212101#89#3:3>589<54*+81"&510454631%:;<5<51#81*'3.'1.5049<5<71>71>38135#81"3181113029#0"#"&5049<5<546;5#8#"109131313<5<5%"10923:7#5<5<535#"#"<581463502302535#'450414671>71:;5#81"31103126518149!"318126589814&#"09 i l L%   =TfB ,> )   iX:   "# $"" iX/  J)&&UY-# C   k   M^  %M\N   2 $   !1T              K cE   a #1 U  +  n*  ! e/) 0( .( !.) ,0+Q&) $-&) $   "?   BI  %" g   aw  !    ++ ;:9:BB ( [\ ^^C 22 ` + (  '    $a '     /`6-    / l l  -  ,+ 4f3i -+ (  ^]<)  ** ::  (           -,   --,,   # +,    +   .&    &5p     ''    $           +   .    ] --  k??    ' MKIjd.#181"31117#71373;267#>71>?>5<51.'17121#1#*#"&'1.5895>71>7>71812671>31>303106321017%.#"#1#35113>7#>75>75>5<51.'1##*#1#0"#10"1"&'3.589<5467>7>73732#157.#*#1*#"118111111*#"&'1"&=7#01113267#>5<9.'./.'81"&5409'4671>3:310232'1354&'5#*#"&'1.5<95<14671737#7#35;2671>717"173>504515<54&/.'1#1511;>71>75#1##0"#10"1"&'1.=<5467#7>7;:32191#&454671%.#*#1"&#"3#115#3713:31021213:326?>54&'4054&'1511.'1.'5045467>713:321%.#*#1&"#"1*1"11378126589041463029>71391#3113:926713>?35>5045<146717>5<'154654&'51#"&'1.5<9&7>71>31731%'#37#    ->.          !     $            #      3 #,    .  823) -   W '    $ 8    $   z    B8G /  3     2%  H  3,    B R      KaL.>R)H  #        k   3     q         u                           $C 9$z#W            \      & 0 k    ) H   !  $V   \RgD`/%&47>5<9.'.'5.#"315112326767676&'.'*#"&50494632101#0"9'.'&47>717>71>5890&#*#"545<54&+"36326545<54671>73029:3>71.'1*#"51#"&'3.'5.'145<50414�"9#"'3267>75>5<51<5<50414.##"&'1.5467>32117676&'.'#.#"7533267#>71>54&'1.'4&#*#"0130231:326'<54545<5&L,  'B*F'!=    EbcFFdcE "RO !  $        (  '1"(: t  !7 U9)  "2)E!5' 6%0  <(#6n7 >#  7I   $Q- 1O' @ `aae f +b=M'.'53.'3#30212671>5<51<54&'1.#*9%81"&'1.5!1113:7!:32671>5<51#'##3:32111#7#3#3#33:31>71*#"&'1.5<71045467>71>3:90232#1./.#1"109##7##3373#'#3676731#0"9*#"&'1.5<9<54657313832671>7173#'#3676733:31267#7#73#89*#"&'1.5<51<5467>73>32031812'.'#.#890"1"1051^  M )%P&1..5   N FG Ly.yB          0G-/-F,55).52)   ..45)-53)H   (T    !     H   ''  'w|gg   l;/E/ / #, .    ?26321326716'.5467613267>321"&'3.#1*#"1#2#"#"&54651&454632313#7#3>7>73>32111'7"32651&##301>?>3211#"&'181"&589"&'17"81302926516#7#17'##"&'1.'5.54671>32#'34#.#"1&(X  #   ( ?X2! /   $ ,K (K    K  %KKHD %DS7??(302935#0"1"&'1.5895814671>30293814671>3029!:3211#<54&'1.#*#1#3:32671>5<51n&""Z3"` 33Z""'0.3X!!%D Jnn J DTf$ !Z3-.Tn8Kaimqu1#*#"&'53:31254#&5401467163:12''.'1"3#76537#.'#547>321"5"5432#3?#!#7E ;p 0[,#O+\=6p4b.)A"W׾R6#R "  9 HHGCf&A6 3)%@6 .f)9d,H/S${"HGGH={%G|SObRhJy#*9*#*#"15131#1&#>7>7>38932671>510414&'1.'#.'1.5467>71>73>3:31:3:3>7>7>7>7>7>7>30293:3:3211#1#"&'3.'.'4&'#8#1*#*#1"&#"12326754654&'#.#'%:3211573##1"#"&'3.5049<5467>7>73>3:'>71>73>7>75<54&#"1#0331%57"#"&'.'1.5467>7>73>323#10553232671>75>7>51814&'#.#"117#*9*#0"#"3:3:3*+"+>7>7>7>7>7>73>31:323>7>7>?>76&#*#"&'4014&'1!1+"1+0&'>7>7>3:11#"&'3.5045>7>7&"1"##"&'1.51&45<71>7>7>7226767>32#1#%>75>7>51*#"&'3"&'.'.'.'3#0"#1"&7>7>7>7>32111%111#*#1*#"&7>7>7>23:321113029267#>7164549"&#'32675045<51.'"&#"1#'>71>31:3251#0"1"&'.'1&454671>73>32#1"#".'.#"101326712671>75%115011"'.54&'4&'#&#"&'1.54651>7>7>;"?>754654&'1".'3.5467>7>7>32#32671>71>7>7>32#97#0"9%#"&'3.58510414671>7>30231323267#2012671>7>7>71>321.'.#"1111#"&'1.54671>3213326716&'.'1'&47>32#+"6*#"&7>7>7>3:9:32+"6+"&7>767>3029:3#*#0"1"123:32#0"#1*#0"#"13:3:1:#7:3812015#"&'1.5<7167>7>7>%'>2#890"1"&5<31>32031F  9     $9r9       1c1    !/ -"    |  ' #         2  \         + )/)             ,  E   T    . *T+    W  k  Q S 1                   9              !           9                   +e           T           "    &    & !  0C    *     v   A        "      .  %   .  '?    #    # J   (*    && 8$  (     ! ."+ &  4*  %  %         C 2    #  %"  $  F % .+#3     S %    33+, %    ,   ,  ##  .          !         "  g        ,               *     0 +   #        '  $    /     O 2  // + .    lKjs=FP|%1#0"#1*#"&'1.513111254'.'.5<543:32189#4#"7.#"#1"03:9:326?35##"54320454&'1.#"01!8#"15!>51'#!"&5<5463:31!023213#5#*'1"#"&'5.5<515330232671>5<511#*9#*#"&504515041463:313:129.#*#10"#"111131:3267535##"54327"#5363113:9:32675##*#3"'350454&#*#3>32312    9B  F  0+X [4%! FEEF #x# 8''8h :  4  N z z "  !# FEEF0 $24%, "9 4%B%9     4#   B ' 4JW%4eSEEFF#  #x'88'+5     ``= X~ ~  ! SFFEEW4d2$%4"=%4O%= #!Cd.5463'7.#0"9"&#"11#.'31:3267>5<'14&'%#533:312675+"&=3%.#1*#"'#3>323#:12#0"1"09326518549#.#*#1"1'#75;:32671>54&'10"1"&'15>7125.#*#1"3:3267'#0"#1"#"&'.5134654&'>32 #!> J'9E<''G$S- <F=^->1(  K5- % n -. -- I66 #;"&Bz   E(/K5O3(K!>"   n4<>o8 >>pe*:tp"73,O. -- .i2. dB;Y =;."!?Y8=^e  !&6W2/01 2,l~|&0#"&9!0#"&5<5<5463:9!023235.'1.#*#1&"#"3#135>71>3029:32#111'54&'1.'#.#*#3#53326715'##1#"&'1.5<51>71>3029>3211'"&#"13.#*#1%#0"1"09;:120903:93:12654051546;0212650&952414&#"0#12#81"&'1.'5.'.#0"9#04#"09+0"1"&5<90414630293:32'0971"'814&'14#"83209>3:3#3>5049%#0"1"09#"&'1.5<7150414&#"0#1#"0#"031533267#>71>5<'56&#'.'3.51814671>32#165>71676454&'1.#"3133'1#*#1.'1&3:31302126765<54&'#%50414�"9#0"1"090302513021201;26=041463:9320326504950#"0#1#*#"&'"3267#>71611#"&'1.'1.5467>3:#&'&;265t  . &+,     "       B JF-JG  ".x'   -&%#x2   -&  9     2R    !:! -2G) FE  # !  2 !1 =2R  2 ( $  ,      $       ! x..    N  '  Gk   !2  0      I      =& W.)[     . $*%9I#81"&589*#0"981"&'1.=467175"#0"5181"&'1.=467175463813812897:32117623211>518146381381289#1[ {{ \ 5^E( \ ?nS \&I )5%H ) fAI E5BI E.Ia6 Sm?l/a:Wp'Ci}X111!*#"&'5.5467>71>7!:1275#1#*#1"&=?5#"&'33:3267#>?7�"#"37'#*#17354671>75>5<9467>75>3:31271137>7>517>5<'15#*9#1171735>51574671>5157>=70454&'1&32671>7110212671>50456'.#"#3&"#"11"&5737#737#3#3013?#1#320126712671737'756321##573?#?#09335>71467>71>3203#251135>757>54&'1�"1"310"1"0975#17#73'173##5#33:7137#'532012671>71'3>7?327>7=4654&'1&+37#737737#"&=#*"#57##33#5753#*#13#73##717#3#3#1*"+302126717137#"&581"&589'#737#7313:31:326733>775"31.#8#1&563281"89#%#"3+5'#'11501#0"9#3:326717367 '`  ' d$6  ;     61U 5           c 5 6 2 ~  G 1    C }   $b H ,;GG66  >H  H$)   ; C ?V 1  1- 1 ^-C #   $%$  G   6 7 2$$   6 1 1  #  :             bN  %     %   }   #  !(     $                )  6 ):x )  > P "            * $- L U       GJ   G $c g-1  $  1  )5 L) o  C   ?  $lF%1#0"9#.'15.'.'.'&'./.'1'.546717>3029233;023267#>5<9.'.'1.'5././.'.#1./.'1'.'1'.'1.'1.'5.'5.'5.5<90414671>735>71>71302121'#11#0"1"&'1'.'1.'.'#./.#1"&#"1951313#311'11H)K #    8 B%  &          G)K%    ,    (     #  )G'`  `    K#  "         &C&d `  Q        15c +y+aWks~#0&9*#01"&51&'.'4636726567>3029:330292671>7146574&'.#*1115#"&'1.51&45467>32#'65>7463>72+"&5<5%3265<54&'1.'#.#"1#*#"132631>71>211#"&'3.51&45467>32515#%2654&'1.'1"&#"12;:#"153:31267>76011#"&'3.'1.5467>32#15#267>7463:3265<54&+"&7>7>71623:#265<54&'*#*#3#*#";23:3:%4&#*#11101367>51.5'>7165#*#"&'3.7>767463>7#6%4&#*#"7:3267>7647>73265<54&#31&45&'4&#"1#*#1""3232671>71>?6&#*#0"1"10&'1265674&#*#"3:3265>7674&#*#"3:3"&#"11326510414&'1>54&'1&"#"3>713#.#0"#3"#*#"&'3'3:312674&'.5463:32#7%#*#"13067313767#'./3#+'.#*#1.'1Z'GH    >?    Y  2      ,\   G$ '1  &3"   +  G'0  0!_  %   *      + A / %          ,           <  p    $        XlCl0Qf@*0; Uf,/!( Ur dV+ Y i L3`ss̮2UB/%; !IWW&N'~|  L &   96V:9s   (     - 4$  %   &     %8"  p-Z-      &    ;:!z  &  + " )6EEII);      =<+T+  'u&,=uu'N'%  `_JI)b  .    ps J9+3  Z J="5V 3 1o #r77U )6@$@ ,M .H)1#'*#"&'5&'.'#<54671>321>7353535335#5353353####5#3##*#"10913:31232673'1"5732654##632##5#533#5353##3#753#"&'.#10"1"1153"&'3.#1*#152=<54&'.#5>7>735>30231#37#53533"&'.#1"#156756454&'.#574&5463:312#*'1"51#0"9*#"&'1#5332'4'&5814671>302312#73#&#""&'&#"#52=.#57153:321#"&51<5463:31.#*#1"3:#81#"5<54671.#*#1"3254'#"54365.'1632130232654&514&#432#"3.'3.#1*#526=4#"3"&'&#"#150232671>71>54&5156454&'.#5267>71>3:312!8ND XR9 ""!5""""p/.1 &\ka06 ""D"">#"##"         '   ,,#"#""""   \?  !10 SSXo)- HDN~    &WI   < $p?0X   R\  uu'0?p   ::::  5I         .WY"1p<  N  >l2"1""""E'""""& 0-ubQD::D""""""  $? ,R   !"""f""1R   (  ) pkH1,'I%  f\:14Nk,  v     b: &6  ?? I]M  R   XNNNJaNa I 5RpMAQ[gsy3#.#*#3"#*#"&''3:312>74&'.5463:32'7%#"3067313>1067#'.'3#).'.'5Pa6a & P9>{%#3#53#373#7<541302310212671#*9*#"&5<5146311#0"9*#"&5<51045463:3#2032#.#*90"1"53029201267173#3:1:7##0"9"0#"&'1.5<55#535<53>713&"#*1"11#732654&#"#*90"1"&5<51<54630231021217<53>30292#54&#"181#3#.#*#3"#*#"&''3:312>54&'.7463:32'7%#"3067313>1067#'.'3%!.'.'1BI_\FB*    !y "$ C    V  e`#"#""    ˣfe H&=dI)`//&?#'I!(Z0@hJ)BF,1-0;~+  7 & ,6QI "'5"$B C=   A=#"#"   HF I]U 4H,@L! 5K/2P  ! M JS(4jR$HB9S >Qa5a FV9 +Ib7%!"&5463!2#3;265>7>7>?4&+"4&1.'.'4&'4&+0"#0"#1"1001.'5./4&+";021:92631<1<9>767>7#.'./.+";26704545<51;26545<54&+"338513265<5454&+"11.'4&/.'8149#";26540545<73;:5405454&+"101.51/4&#"09#";265<545&65'57>71>54&'1.'1.'#.'1*+"4;26740545463221;<5.'5.'.'1"&'11454&+"811#0"981"&'5.5465145<54&'#0"1"8951123263#>7>5049<5:32671>71>71<54&'.'1.'1.#"3111131#81"8911389:3267#>71>5<5.'1.'#.'.'1.54671>71:3:318321;:5854&'1.'5.#*#1*#"31513#1#".514&#%2;265<5<54&+"&5<546;265<5<54+"&5<542;265454&+"!1;265<5<54&+"&5<546;265454&+*5<546;26545<5<+"%#";2;2654546;265454&+5<54&+";26540504945%;26545<54&+"0;2654545<54&+"78149"3126589<546:11#*#1"&545>7>71>302902121151#"&'1.5<51<5041463183285#*981"&50497>5854*#"4261<546381217'32101#1*#*#3"&51045<510632J=C ;JR3N2E  S2S4 R1 R1   &BD CD     -          B"        ;     ( ~F6>AvF8=BP#?$R AE7  `  Q      Z[e      )"$%        @       E QQ22 DST34%"  FG 1  AA33 ![\11#-[[22  ZY       ! 188;<          )          &('     ,-%% .-bAA@@ZZZ--yccbbgffg   &       3  %s%x11^2NWw; # K X %*#"&5<54632(32#*#0213:3:3265>7>7>7>7>74&#*#""&1.'.'.'4&#*1*#*#"#.5.'.'4&#*#"3021:3:3061645>7>7>70"1.'.'.'.#*#"3:3265<1<7<53:3265<5<54&#*#"%0213:3265<5<54&#*#"4&5.'.'.'.#*#"3:3265<5<54650213:3:3265041<54&#*#"0.'.'.'.'.#*#"3:3265<5<5465'041>7>764'.'.'.#*#*#"03:3265<5<5463:23:3:34&5.'4&'.'"&'8146'4&#*#*#"#"&'.5<5<54#*#0"#":7>7>56&5267>7>76&'.'.'&31*#*#"3267>7>'.'.'.'.'&47>3:323:3:32654&'.'.#"'.'4&#*#%3:3:3:3265<5<54&#*#*#*#"&5<5463:3265<5<54�"1*#*#"&5<5463:3:3265<54�"#*#"!13:3265<5<54&#*#*#*#"&5<5463:3265<54&#*#*#*#"&5<5463:3:3265<5<54&#*#*#*#"1%*#*#"3:323:3265<5463:3265<54&#*1*#<50454&#*#*#"03:3:3:326'041<%7:3:5<5<54&#*#"3:3265041<5<54&#&"#"76&#"3265>7>7>3:32*#*#"&'.5.#"'"#*#*#"&'.'4&'.'&#*#"&5<5<5<5463:3:323"#'2013267>5.'*#*#7:3.>7>7463:32#*#"&5<5<5<5810#*#"&5.'.'4&5#*#"&5<5<5463:32183%<5463:32#*#"&'.'.'0#*#*#"&5<5<5463:32%#*#"&5045<5<1463:32<5<5<5463:3:320101#*#"&'.'.'8#0*#*#"&'.'.'.'""#*#"&5<5<5<5463023:320#'13267>'4&'*#".'.'&47>762"70414&54&'."7267>73<5<5463:3:3:32#*#*#"3:3:32#*#"3:3:32#*#*#8#"&5<5<5!<5<5463:3:32#*#"3:3:32#*#"23:3:32#*#*#*#"&5<5<5"&'.'4&5467021263217>54&'.'.'.'&67>362#""&5.'.3#*#7<5<5463:3:30212#*#"3:3:32#*#"#*#"&5<581%:3:32467>7>3:3:3#*#"&5<74&'.'.'3:3:32#*#"#*#*#"&5<5<54&#*#"&5<5463:3<546322#"&5<5>7467>32#"&'.5<50"14632#"&'621>54&#*#"0425<5463227.''232*#0&1<5061623qqpq       %   #   %  %   $  %      "                             w;      = ?       =#$  V         )                     (        (       )(                  C$               6  P OOON+        !                $I%-&L&.   @       ;  .*R*-   *R*-   )Q(         -26 s                    ##    )"  )X  ;:  ()Q)(-Y-/]]^.,Y,/\..\\[..].   0  04 !     .        1       2   2   0     P    :           9      9    7       #    q       M8dEX73#'##3>7>73#5#*#1*#"&'5.5467>73>32153'1232671>54&'.#1*#"#89%#*'10414675>32'101;#".'5#"&'3.514&54673>73>7267#>71<54&'1.#*3311"3132671>516&511#"&'.'5.5467>3831:3215#3023267>71>30231:3'30414&#*#1093###"&'3./.5467>73>32#11#.'.#1&"#"5320310212671>7%3>73>3215*#*#"109#>5*#*#"11##335#+:AZC55DYD7 C3<-/G / 1?! $#69$!# +  "       x           ' A*,)   ϔ,'= $ ,  %=(&$i<    '@]6% &>>=>>>  56N#>-  ", #  .. !B"+  ('   9    6  '"$%.(   +P,*?-   #!(&  (!   4     ==6$  @A!VgY m9#<54&'1&#*#"713597#*#1"#"&'.'5.5<51330213:3267#>73>50494'.'#&'&'.5<7<5467>73>71636232'!:32#551#3:3267>71>5<51<54&'.'1*+##3#/81217.#"#35#33029201267#5#"&'537!.5<7!7!>;҉ 7 Y4 O.#E"&  2   .BD  --7 6Z\' 0  :& Hp]     ^x৖:EC-N %c8+NC4=%P)%b4AN*+O"L+3V%%&Y5   !    +8$,#   % '-& n $ .. 5#-      _$ '!D$(-=%P  O$=,`#0'O P,5mM#<54&'1&#*#"713597#*#1"#"&'.'5.5<51330213:3267#>73>50494'.'#&'&'.5<7<5467>73>71636232'!:32#571#3:3267>71>5<51<54&'.'1*+##3#/21?5'.#"37#3'7#3'3:9>7#35#"&'535?!.589<5!5?!>;!'7!015!'7#032671'7#"09*#"&/.1#73'<5<57#737>?>3:3#20121'3.#89ӊ 7 Y4 O.#E"&  2   .BD  --7 6Z\' 0  ;& Hp]     ^x৖9FC-M &c9,P""3@$T)%e4BN*,O!K+3T%(%W5'$  % h2,L N+O`$ 7T% E0H(7`% P.9_   !    +8$,#   % '-& n $ .. 5#.      _$ '!E#)>%N O%=,g#/'N O+5lO   O -6$W UD O   O $:(# :"';-56+E(d37"&#"&'.67>7323261>5<5#1:32673%67>3:31:32'515#*#1*#"&'#3323267#>5<510454&'.'5.'#.#0"#3*#"3'#'#1##*9*#"&'.'1.'5.51<5467565.'.'.'1.#*#17'>?>3209:32'1*#"37151389023267#>7>71>75>=36767371#'>7>71>?>?>71.'18, 5'&+,+,$#<( S1$BM,+H$,_!:!9#&2$  &0'//  $A $  +        ( I !<!%'  0!(  "     {  t3          2P5!8<""\dd*)2 (' I-665 $+  F:"!  C      (B-     #    !.  "   C37--%   '   "  3MJ @g|"131!26514:321154&7>=701&'&67>3121.'51#"&5<71467>54&11<54671>7>313"1157>73>31%701.5<555757217>5851<170&5<5467>71>31#132671>5<950"#*#37<54&#254&1.#"357>71>3121326=#"&589581463209*#*#181"&546717#"&518146717#"&518146717 --  --  - ,$+* )   * e  .+ 0!! 1.}X )++      , .   +U K T!/ +" =" =" ?M- --  -     ) +&&7 #I      * \   %"G   R"% $    . +$    v p  Mw   t3 0! 6/ >0 >/  ? )4VZah##32#7#32654&##3#'#7.900137#5'3173'.90#3906?3#'.903#333#333#%4&+81"101131326757245<#10654&5'.#1#"10911011;267574650&90 3Y0@?7" ##3t1w8Q  c4e9HH2b= /)1D E1)4=44k4t4t> {= x8 =99= 8[s1./.3l1A!"Vsst1$$ϰ11+1+ #{ yy z<M0^"&*".'1<50414673>3:9!21%!:326716'.'1!*#"3981'3:313267>746731:3067'.'&6?>=#*#*#"1'7*#*#".'.'.'#!<5467>32031!:3:3209#*# !""#.'16473:627>7>77>32#11##"MM+M:"eJ &H7"rPjJhgI$>R bA[   1LK )R)BA <:t:  J.   B'2ede28PI3EF6MR1cbc1Fh!@  &    L!8L,?}~~?Nt  5E&,YXY,.\-OnhIIg c@  >Q.\/$H# 3g3 $I$ @!  **"!'P84KM7=Ao R;l5Hr\d"7Ol )A\ri"^ M  ; G \ p   $ 4 I \ q | !73!5%37!!5!!8981!81265898149#1!"&54631!21%89151&"#*1#"&5453627113812671<54&'1.#"3:3:3#>589<14&'1*#*#31901%4671>321#+"#"&'3.58938;812671<14#10"1"01#"&'#1"#"&'1.54651>71>73:32676&'.#*#"1467>746?>;0232#10055'<5<514&#*1"11302983265<5.'3.51<54671>71>7;2674&#*#*#37465814631>32#111011*#.'1'0"732671>5<51<1<514&71<5<514546;207>32189190#"#3#.'1<5<'14&'1&"#"1"#*"&%3207>321115#"&545<5814&'10"#"111#<5<5&5<5463265<5854671>733:32#1767201111#"&'1.5049<5"&#"&54&51326712091#""&'1.589<5<'1*#*#1"&5<54673265<5"4146717213#17'.'#.#"11132671701901#1#"&'5.54671>32#201%.#"5113123267#71#*'3.'1.'.'1.5<71>71>32#11%;:3:31#<54546516326;<545<54631#%5.51<545467>5049456471!>51<5041<9'>71>5<51<5<510414>51<5<5<51'%11"&5445"454651019%&4'1<5445<5<54651%45<5<5>711%3:3:31#<5<546>51<5<57'>=<54&'126313231'>71:32>5<5<50414%106%5010%323#"&5<0&5454657&3:31#"&'<5<51450414&51/41#"&545041<51454&5102302313021217>7>389:321#*#"&545<54"5##"&5<54546;:3:910901>71>32109#*#0"#1#"&5<50&'."1011%>71>32'0111.'1.#"1#13023102126711009#"&'1.'1#0"#&##"&'3.5465>71>732671>514&'"9*#"7467>7>71>7:3:31111'4&113029265<5%13267#>721#1'.54673>32#111+*#*#3'3.#1&':32+097>7#1091#"&'1.5<51645145<'1*#"&545463:74651<54670417111#"&'.54051<5#3:712676&'.'.'.5467>71623212.'#.#1"131311109%'.#0"9"01"#11331511#"&'3#.5<9<5041045133:3#>71>54&'1.'1.'.54671>717063263>312#065>71263211009'.#"1+"&545463:32%#"&'1.54671>3211090109#46514=#553013:326545<5467109#"&#%01'.#1"3"2#>716232'%#'<5<50;:3:9*#"&5<545465%>51<5<5<51%023:313265<50451>504#1<5<59%#"#"&';32671%<5<3#45041047#<50414&'1.'114&51<54&'6%>51<54&'1041#009013"&5<5%113"#1#"&'7#021:93:1:9<1<51<54&'17<5<5"45<3137015<5&6<5<5<511%<5<54%*#*#5%#.51<53FNIP$J9p/DD/0CC0W5&x&55&&5Yb0    %    2    (         -            & #  -  +  2          &Q      '    D     !   Yi? j$ :9 " qy+2$ \($1+     )#     *   %    '>)       0     '!M-  P    )B           >            '  Z   3E    5      j  N;02-. (/2{ONVIC00CD00D%55%%55%-!  cc)}  ( %(    F   .2 6   .-#   ??  +!  ) %&AA          J      & 3   &   $tcdbb$@A  %%-.  .,, )//P %*%&''      c  U  Zic i% )T'sg33937723++    /   0/q^^ ))$  #s /%  !V   +3    +(  '    p       m         #BC#   DE88p00  /   @ ,  :$'S7767+? @#T)[%      e   3'      [ @ 88 rl7k!/>7>73>3213267>3201#0"#1#*1"&5<51<5<54&'1.#"38981#"09"#"0#"&50451<54654&'1.#"11#*#*#"&'1.5<51<58546?>321#"&'.#14"1"891#"#10414&'1.#"113267#>50491##*#1"&'1.'5.5467>7>7135>71>7>54&'1.'.#"11#13>7#>7>54&'1&'.#"111131>313%&'.54671>3:#1'81132671>54&'1.#"309!45<5<51463:#10#*9#*#"&50494546321#"&5r>) &   /2O ;    !        Q?!HoP.,B& +$  %! 4   ,1     D    NB=q!L, On$N8R -#  # s #. >   (7 7+#lk   >}?  > "F# >}>    fh  4hih5FoVB#+M % cc # -+ /%     * +"=        aN  -N#qN .Q  +( ,cc 4#   deEO6m-tEf2[m,2511##"&'.'54&'81409504'>7>737751/450414051'4&'.5<51467?>71#13>3515>757<54&/.'.'#'7>74&5.'1.'1'>75#/#/09"#"&'1.'5/3267#'7>7#?>71>51<54&'101023267#'?332##<56454&'&45./.'.'#/#11>71>?12317>7#7>540975<54&'.'4"#0"1/#11113:31023:31.54671<5?>?/#.'18110212631>?467%71#""&'"&5>7461232671>?>71##".'5.5<5>7>73>7;#31113:71>75>746773263#>71>75041049##"&'1.'1.5467>71>7126;71#"&'7#113:71>71>7%>7>716232#171##"&'3#0+7>7>706;>7>71>5<54&'#*#*#11%0232111#1"#"&'3.'1&454671>71>73>313>71>75>54&51.#*91153:9%""#".'1.'1.54671>71>71>323121111#*#*#"01123263#>7'7>3:923:71812671<54�"#1171#"&'3.'1.5467>73>3:3#3'#5532631>71>7%#'*1*5.51<51"#*'1.'1&45<7>7746320933:9812671>71>?64;731232671>54&'1.'.'1.5<51>71>71>71:32#3'.#*#10"1"1311#*#3"&'%#8#1*#"5#+>7>7>746;2>3:310"1"&546716232117<5.#10"1"113:31>50451'01811"#"&'1.5049<5135383183267146589<=3#531' 4#=# (E!^@      %         f $?   .)7                 6                            ,       #   &       K      /  &              %                     Q   :    & "          )    $P              4   1   #     X %#H%t O9!  &E#=#! ?W k #          &          "u                    -           3               '     " (        *T* }    ~               6 Y    !L(}  2   "! "  ' "       '  5  3 !    E"ga]eo:u&]81"10913:31267#1*#"&'1.5<51041467>73>3:3#:12#'.'#.'1##73#/&=71#*#1*#"&'351:3267#>5409854&'1.'1.'5./.5890414671>310212'.'1"0#"1090111309#7##7337307#0"#1*#"&'1.5<51045467>73>3:31:3211'1109#30231267>71>5<51<54&'1.#*9#'#736767311#*#3##73:32153:32671>50454+7370"1"511'3:31>7##1*#"&'1.5465<1467>71>302310232#'./.#1#'#73?3%1#*#1*#"&'1.5<51814677313:32671>71711#*#1##732632153:3267#>50454+    "  !    O6>0 *       !     3N343N3W  !   ]    A9<.4;9. $228 m   n323    !       7#232B;a5! !  2    $247 m   u   * !( )9c9  @  ,     ! '    Ggg^^V(  ( 0      ɵ#q vs U  +   + ( )` Ur!Rrq!    E U   + 3 .6_5#"3265.#1">3:3#354&#*#"1!4&#"3:31:32671>54&'.#*#1*#"1'>7>3:3#:32153>3:3#21!3>7#1"&'#.'17126=#0"9*#"&'1#5##"&'#*#"&'73:312654&/.54>3:32'>32;9;DTB9&[2A2%3o3IL+AH(G7_=>]/: 66 9 U W21W!%^57dK,eWE,P [/}H7p+/Pi:Cw.hC&CV"X2-Q LC@`&sES<^(f99K0"wSm&C[5=p1%cAW!2)% +!C:( ;(!XKJJK,F-.EF.-G!%$ >? %%Ed@;F:B.6'0A`>4+H@<;$;;#!70P#'%% TJ,B, !'/l$9JXhx7.#"89"32>514.#812.#"1'>;732671#"&'71.54632'.530131.546711"&'732675#1֗ !#3*fNNffNNf5R C , #   .6+> X?5Q g7 6/B## 4   "2AX=mA 3#NffNNffNA2;6 . @+>YB1$B&$>8 # S>/"=U- 6AQcz812.#"3'>3177&'"'%?.#"09<546321'.'3011.54673"&'732675#89a>!?@#Oxye-hmo4F{[5N>Vk;qP+K{#yj"7&F:N ("v7;  Mp8[yE'E^8 7E yH_f+0  l5\{F4_)=<7_E& Pq#@50.)P76454&'132+"&=4632+"&=465#"10#"&14#"131326515#"&5817#"1321326515814"31013:90632#"31326=4&##1#"&546313'41#"131326=3812651#5463132#1 @I  K )@  !>OS 155TO O AB5oNdNn4 m 9 5 GD0DD0X0D\$8$$vU;,  5<51<54&'1#"&'1.5<51<5467>3251%.#*#1"13>71>3:3#:3219011#3113:9675<54&'1##0"98#"&'1.5<510454671>737>7#>7#%:3213.'1.#*#1*#"11#3:31:32671>75#1#*#10"#"&'1.5<51<5467>30231'"135<5467>3:135#1#*#3*#"&'.5<934654&'.'.'#.#*#1*#"1530231:32671>75'>30231021211#>7##54654�"#10"1"05#5<54&#*#3*1"05#5<5463023102321>30292%0.'5.#*9*#"1113261#*#10"#"&'1.5<5<54671>3:3#2012#1181##0"1#5<54671>323#:32157#*9*1"&'.'57<54&'.#*#3*1"15'3:310212675>5<5151#"&'.'#.5<51<5467>7263211'.'332631>71>51'32671>71>54&'.'.#0"9*#"101'.#*9"134671>3:31:3255211#1311302316756454&'51#890"1"&'1.506510414671>717>7#>7%.#*#3*#"11013:71232671>5<5<54&'1#"&'1.5<51<5467#>3211122229     'E E    u&$        M)0/2 M wH     /)01    { xBBBB/(*6<#H  +:c V      $*/)   x       #     .!):L07K  v)   'F F     u%%      s11129      2223      %      $ [g   U + 31      =   H     3L!  Ϥ/BC5,L 4/q   !  / 12 d     w )2 /#`*,   wG         $      $ \g   k3223   :l-"32$>=4.$#".54>32#.'./.#89"31##1*#"&'1&6717>73'1>7.'#.'.'1#&"1"331*#.'23>7#>7113023183267#>71>?>313501##181"&'10&'.'181"1101#1"&'1'.'.#181"1111#8#1*#*#1"&'1.'.'#"1#1#.'1>54#4654&'1.#10"1"3.'#.#10"1"1.#"1.'.'3263#31267#12671326711:3:3#>714653312671>7123892671>5<931267>714654&'1>?.'70"1"&'14&#"11"&'1.70454&51'#"1#1"&'1.5465645<'1'#"&5463217>321132671>30292113>31>31:32#*9pddolllk|NOD  ("  ;#QK$C([26f- &X/.W& I'.S!*   K X   ! H ' < !0#    8 6)      -     9  k',25EUeu#3CSh}0FNV^fnv~.>N^nr|*8F]} %/9CMWisx})8@GVjx 7#"&'13#"&'13#"&'13#"&'13#"&'1371#!>71!7%10#0454675310#0454675310#0454675310#0454675310#0454675335!3>75!375#%#"&'#3#"&'13#"&'#3#"&'13#"&'1335!13>?!35<5<51>3253>3253>3253>3253>325%1#.5<7131#.5467133#.5467131#.5467131#.54671335<138902326713:3#:3267337'333?132326713533533:310232671334&'131:32671%3>73##0"#1"&'1538113.5<5##10"1"&585137#'33>71##"09"&'335335313>71##89*1"&'133>71##*90"#"&'1>3213>3213>3213>3213>321%#"&'53#"&'53#"&'53#"&'53#"&'53353;>75309345<5467133<=33.'5337;13645851814&5335335353.50451313>7533401049533>75.'3%5#&45467135#&45467135#4&5467135#4&5467135#.5467#33533454513>323133533'3373;.'1335335313<5<533>5894533533645<5145%#"&5049<1<513#"&5<513#"&5<513#"&5<713#"&5<713#"&546513#"&5<513535>7123.'13>732#0"#";56454&'.'333'#3373090113.'1'.5463257335>71235<14&'1713>323.'13135>302923<54&'1>3213>3213>3213>3213>321%1#>731#46731#>731#46731#46731#46731#46733.'1#14&5373.'133'#337#3137'33.'1#041313.'133.'1#1<5%3<51>323>323>323>323>323>323>323.'3.#0"98#"1!.#*#10"#"33'337#33.#*#3*#"3!.#*#3*#"1!.#"13.'33.#*#18#"1%8#"&546518138#"&5104538#"&5104538#"&5104538#"&51045!35<546321346321346321346321346321!.'1%4632#1"&5#4632#1"&51#4632#1"&574632#1"&51     )) <B t D u D u D u C)' <DC) -D  -  -  -  -  54554)  B  K' G,#3D'D< ! ?C  /  *  B (z G  D'D)  GM          )N.*.4+D'( h G"D'D"G*F#E'M  BABBA)N.Q 4 *9 * ,) 6 } 7D'D"I*I D)HC) / A    k++.+)    ,D  DB I J 6D  Hj          mDBCBCCC F  7..-.b 8Y  CWD( '     ,...  M     ?    Ds    EQQQ                      >                                   ?                     ?                     ?      ????  !? !     ?N  >    PQlFl!26'&"#!"&=&"3!!1#"&5465541!"1"=<546711#*#1#81"&'146381302121'3>71.+32654#"#"&5463:31#"&'1 11#+#*9#.'1'#/.'15 #"&5<51>71#:3:3123#1>71>71:3:313I= =I#1 r M0#"*N68OC%''^#{ {")"ij#lt&(  (&t2"*  ,+,"2>&6KO80"#%''B:{" "l;#".54>312%.#"1#"&'1.#"11>54&'1NffNNffN *  *   fNNffNNf    , / ,j!%k>3813#81"1#81#538126713#7>3813#81"13813#81"&'5'#81#538126717'.#81#532X4,Y3,tt&^^Y3,kk,3Y^_Y3,kk,3XF%+o%+opp%+oo+$pp%+oo+$1l-wA!o 4v2&'.'5.5<71067%>73>7107>#167>5>71.'./0&#"&10<1<546751+0"'.'.'.74651.'1036767>1'.'#.6>75.'>7>54&'10#0"5170513:3132#0"9*#"&'1.5<51<54671>3:312'.#*#3"01"1;0232111.#1"3:12671>30326=<54&'1#0"9"#"&5<51461>3127811311011#*#1.'34632031:7>71>50490414&'1.'1&'.'.'5.589<54671>3:310232'+"7#"&5<515045463250132671>302312#"&546515.'0�"1"57#0"5130513:932#0"9*#"&'1.5<51<54671>3:312'"&54051504546325017.#"15132671>5<'16454&'#"&'1.5<51<5467>321575<1463201#"&'4&10#0"9"=4&1463201'03812671709.#"09"021267#0326=0414&'1#0"9"&'1.5<51<5467>;1,) "P 5DG^%( L  D B g )$ < N+KM20 )K( C A k" < N+JN20 GD5 Q ) 5f #        v      ))     T                )           *           )     --     $ t   (A" `  :     5 g )" -*)#=8i)& 1d 6  5 j ' +(#?8j)&'    j:#(  ?  @         /0 [    B     x &0b P                 u        wz 0`O    8SS        zl4k,Qi}37>5<10&5<5467675<54&'1.#*#3357<5<51>7367>71570&=4&#81"15754&54671>315*#0"#177170&5<17550"1"3117>5<10011&=70454&'1#"&54654673>7246762389"315>3215<54671675.#"113814&'1'#"&51<543209:3:31>735131:3:31735131:3:3173K  >'%?.0A  A  '-?  "%-'$ = ?C GG`D!! I00) *\\3]3lS87A :.  # #$   4 "    %+' 'm$  =$x 62z)*i 2 6-5?E %4,"    q $1FDL;JDO GZ  EY  J>cw+"&5<5.'.'1"&#"5#*#"&54546;27>32#1%+"&5<5#"&'.'1.5467>?>3:3#265<5<51.#0"#1"&5<50454671>09<5<5<54&#"1113267>5<'1%+"&'0450450&'11"#"&51&45467>73>73623:#265<54&'4&#*#1"&5<5<14671>323#'<5<54&#*#123267#>5<#1#";265<54&#1<54&+";265450454671>3029265<5.%*#*#"1;23265<54&#.'#"536'.'1">7>76&qC   & %  C 5  -W A  #  $(1 >0`1'4i%     > 0,?%+ ==  +i  %   F  C +  A D*  @  T/)?P. %8-N;$ !NV  , )     4"    $   cc      !*  -N;% /Q t)?P-  rR  p8##8#10"1"&'3.'1.5465467?#513:3#:326731#*#1*#"&'331:3267>71>75>?5'#.'1##0"9*#"&'3.'1.'#.5045185467>71>313"1'3:31201267>7167>?171##*#1"&'3#3:32#893267>73>?>54051<54&'.#*#3#0"1"&'3.'1.54651467737#7#32631:3267?##*#13#?#30212#101071#0"9*#.'3.'.'37>?>3:31832671>71>75>514654&'.#*#1"7131:3:31i;   j0 #   )  HY e        M-}%     $-  iy!'    ) vwoF " \h\hsii     T0      zl+ [      , :#   X$   W '/  -    .%%X         p?/%  *          Xp$ [*},DD.   .& %      ?+If1#7>5<54&'2654014�"#1"3>7#*#1"&54>32%5#74654&#"7#3>312%>3125#74654&#1#74654&#5#3>31623214&#"32654>32#"&5^ *2;,A &7:TD1K37<40'}$  )~:m70&t;"0&&~$  )|$  )}:l6&  %#1L4O@2M6O=?%"ONK ` $c&  'Dj Y?)QA(8+F4   o,,%      nkb"h!M,P>%SA+SA)\A.8mX GWamy:3:3#3:3267>5<'1814&'.'1.'1.#*#3*#*#3"7'676:32##101011#0"9#"'54&'14&'.'#.#"0#181"11113815131021267#>7###" "1"&'3.'1.'1.54031"41467>7>71>3831023211101#0090932092012671>71>75>5049814&'.'1.'1.#8#1"1011'3>71>302981211111##10"1"&'3.'5#454=021289011#"090"1"&'1.54671>3895373#11302937"#*#*#10"#"&'1.'5.540515#53573#.#*#3"#*#"&'3'3:312>74&'.5463:32'7%#"3067313>1067#'.'3#).'            DE           [          C!" f H&=dI)`//&?#'I!'Y/@hJ(BG*1./;~+  7 & ,Pa6 H hp|t13267.!0"1"132031!021267150.'#"&7>736>?#535#535814638133#374#13#"'137337%.'#.#*#1*1"315#"3531303267#>71>71>5<510414&'.'11*#"&'.'1.5<515>71>7>71>3:90212155%.'1.#1"5>716212#2131#'3131:3267#26717>7354&'1.'1+*'.'.'.5<9<14671>717>?3%35#"%'#11326?%#"&54632 $)J+Q"0S,tX);:));6LU(g8^;- #'v; }={ 26;)%A2/$n$GG+*C   * A      3    ( !     @- A3;CFi 9*"l  e V3*S:*X);:* &2;5 *1?K,%C  C);MM![[S I      u  b            d &,@  P* 4Q4&'#>5132>54.+*#"130290212#".51854>31pG78G8GF8FFc<7>5>7>7467>7467>746?>?>7>7>7?>7>?>?>7>?!%35241<'146?>7467113?>7#?>71>71>71>71>?>?5/#117>=#7#/.'1'57>7>?>71?3313726?546?"#'.'1/5?3746?5/.'1.'1/#331'5511237*1067>?>71>3131372637>7#>51>5045<518##/5?>7>?>737346514676451&"'1/31;23:7#3?>7>71>71>715357>7>5?5/#"##1263#>?3#3"131#;7#'.'1/.'1'57>71?3111"137263>71?>715357>7>?>?>7>51##/1331:37#"&'1/5?>51>7#>7>7>71>71?351#3?46713137465>5?>?>57##4651467>7>7465>7>35#35<5<'46?>?>7>9#%354657>7>564714671>7?3045465>1.#1.'+51115467>=#9357>?467>74651>?>73735>77/#1047>=#0%3?5/#[          %t     %             &   I     6B   '+     " #232 *, #   &A  5   # !     7  "       !!! w'                      <          !          !$#  $!!        F    &! #  !       !       '    qM8jr}!,4?GKVZnt#*#"&'53:3#254#&5814671630232''.'#"3#54&#5#54614�"91#53>;8321>3127"3254"&546327#5<14&#*91#53>7127#76537#.'4#"3>71'1"&53'43273#81#'302126717'770"1"153:31254##'5>712#7#547>32'"1"3254"&546327"3254"&54632"5432#3'#57737#4#"3>71'#"&53'4327"1#53>737#7#.'3712654&'&543:321.#0"9"C;q /\,"P*]>6q3b.)A"W. ) )#   )WBBCC ) .) vR6#R #>=B   RR )3  3. . C/     8 CCBB {BBCC 3HHH..)))).=>C   RR )$ {   .3     .&A5 3)%A6 .bW]W]  ..MHMHq$CbW] g(9d,H.S$HMH  9$W\ RHHq9{"MHMHq$qMHMHq$HHHH>GCC{9HMH  >. M # ) >/M^k;2654&'.5463:32#.+"'0"1"&'33>3125#7>514&#"%#"&54>3232654&#">733>712#*#"&'3#7320312654&#"30"1"&5<518546389:12101#*9#737>71>3:3#:32'.+"3#3>?3#'>7#>75>54&51,'$N?$ (S@.]_&5&(%_$+ C1F*@C2F+B>%)&)B T55-0D* ( (1* @`A 52,,.  C B2 :cu=!.  9+   +2@C  -9> .) Ľ  7/,O<#M8+O<$Q4R#h,$h(\G3I0,RA'g.!6,Qz   H 6K%HP&$@^Q  5qY %0Qh !M301#5:3267#"&54630"#730&#*#"7>3:3#:3289#*#"&'1#53>714�"1"13:31%+"&=#53533#0326133535#7.#*#1"323267'#*#3"&5>3:3#2#%0111#.'#.1.#1##530676&1#35#535#35#35#35#%35#301#530654&1#530654&1#%0.54>7&2>'.'5#".54>;_][a  !F=(&^H  $3 //'   )&'0''7.7 KP     (# ^M,  /  --""LLRT....--_][a.=B=B*:E:,<>*{rR0[QP\L7HIOf:ApVVp@@pV+@0 -$!)  $ 5 FO  8/+&./# "" ; =G.$W yxÞ@/~$$i#$i $=0%7& (=+@7% 5nbSf9 2Of:=kP//Pk==kP/ <7CRam|"&#"3267#*'1"&7>7&'>76.7>7"32676&1"&7>7127?'7''"32676&#1"&7>712'.'#'>7#30&'>?<5654&#"3021267#&572'>3:9HpFNOP 0z1!/ ]I 2=3J `aL3=3oKJmHKJmI?**$ ?*(% qC-Q=8P 'FLNKoJLKoJ@++$ @+)% ,^2,?3%Q+:h,*VK03KV39[mLH8>}{{% ;&m@F@WL; ,5*;('14# ) ) -3# 2O@@NN@@O(40-)65*?V=@W/HTR K+ PA@PPAAO(61-*66,6`,6)H!8$.O50xE+>)gI0DC+!+4 Tx#8933'%#32654&#!3211!"&504517#131!212650490454&#*#1##81#0"1"&50490<546;2#1#0"#"&'1.1#0#*#1#"610>7>3:136232110#0+0"#"&5<9<641.10&;:321?>3:5313>54&'1#0"#"&5049504146302972651814&'1#013203#j {0ZVyy!00!?3uZq%-dH S  { 1  DbbD^,  +6A8 = 8A6y!2=- =2!1 ^_ 2#': %% 4 h0""/{`Y"<O/Hg \յx  ?  aEEa KK   9Zm3  7?43mZ9 ** R'( N %& zl*Mx5132671>51814&'.#"57732675>54&'.#"#7732671>54.'.#"17732675>54.'.#"1    !!$))&  %%))-  .>"!   %]33^& `.o<723:7#737#.'5.'1'.'104504514673023217'73265<'1%0"#"&'1'.518546321;'>3211"&'10&1'.58946717'.#*#311'.?>76&/.#"11311011#".54>32%5732671>54&'.#"3.#"#732671>54&'1532671>54&'.#"1.#"1532671>589814&'"1#ysiiYy,.A)%8   } d% &O  tc DeC    [ $ $m! \+uVffoȣw !%%" %))& L  !!   G   ;4Na7NffN"=V5$//"4  R'# ; ' ^6=,$  ( (   .2Q:JbbJ3\~J 9HH:  @QQB K  +f77f-  2w@Aw31  G&&F  %W00X& C '' ;! ;1l % %%5% '1"(8&.Cc jҭ"`F%?#7!7!.C`b^0> uܠ<4D~A:l $RZjn%13'.''0"#"1230292654&#!#*#10"#*'1#5>3:31:3210911'##737#5'31>?37!!3#'.#81#'1-      9":):g!8%%\Tnnl,4 ..@( G  Y55OONm0   0Dh   -lq%#8981"&'#/4&5<98146312131267#%.#"3101318126717>71#30292>54&'h g x  4&cuFs˗X2H, y  )\1s˘W"  U-I4I~`4cZN  B G I~`757>514�"9.'1.#"554&'41#81"890;265<=3:312671>75>5<'14&'151*#"&'3"&589<5<5814631>30292032157.'1.#1&"#"33897>73:32#15#.'#"&#"31132671>71731232671<5<5<54&'1*#"&'3.'1.5467>71>323#301#10212650495432326=<5467>3102321326=6454&'.#"0#1*#".#1*#"54&+"%13:318126713832671>7167>54&'1.'154'.#*#3"3>5>3:31295#89543.'154'.#*#1"3201265049>3:92113:7>7110212671>71>54&'1'5#1"543%"154&+"01"8932032650&95<5467#>32092302126504954654&'1.#*1#1*#".''3:3127>=4&"&1"1113:310212675>54&514654&'.#0"9"543:3211#'.#*#17>7=4&+"0#"0310324313183209>32#0212654095854&'1"53630271>756'&)- '&    ]K      !                   '    @)  & %N   N '  B K <@ M &  B "  E <M#& ' K9F,WRN$ !KSZ0l! !!  ! u!BAN##F& J  +u+}%__  &^      g      c    "F#z    6l66ll      ~"   @2 <     )D @2 <   "  <  )ql  9l~  ! .!Q&'&(N?  E` o  A  K ) qNo*[%>33:3#>7>7>3:111+.'.'.'.'1?>7>3831302121151"#"&'.5<51<54623:3267#>71>7>54&'1&'.'5&6;023213*#*#30"1"&5<31>71>73>32##8911+0#"&50494671>7>51<5<14&'1.'#&"#*#3.'.'#.#"35.'49"#81"89;265<=3:312671>75>54&511*#"&'1.589<5<5814671>3023#:327%0414&'.'1.'1&"#"77097>73:32#1581#.'#"&#"71133267#>71712326589<5&45*#"&'.'1.5467>71>3:'011q 346~CD$"L( 'K%,URN& *`3$U-D#@,*L$6e^V'B+       ??+ J2#% #   L +  &  (30J  -.*  (  -  "    +C(   ,  2 *4=#F}     = 3[$ *  '$  '% Z  .-             %  8q9       #_< tvtvfgx33Q fvff17wf[[[[q3f3%#s53r3{:zPqz:q(< l D (!"H%')D./5H6 8<@@AGHIJ^adgpkqdt{}h,\X,D4D(0  DѬdX(Tl%),2@8`9=I`ehmq@uvyTh0T״ڬ۠T,8$X( 4X !!D"#,2x >*H '   \{ 9 ^  T &  &[ & 2 & 6(  ,O <|  4paymentfont-webfontpaymentfont-webfonthttps://paymentfont.iohttps://paymentfont.ioA sleek webfont for your favourite payment operators and methods. Font generated by IcoMoon.A sleek webfont for your favourite payment operators and methods. Font generated by IcoMoon.Copyright 2017 Alexander Manfred PoellmannCopyright 2017 Alexander Manfred PoellmannAlexander Manfred PoellmannAlexander Manfred Poellmannhttps://alexanderpoellmann.comhttps://alexanderpoellmann.comSIL OFL 1.1SIL OFL 1.1http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLVersion 1.0Version 1.0paymentfont-webfontpaymentfont-webfontpaymentfont-webfontpaymentfont-webfontRegularRegularpaymentfont-webfontpaymentfont-webfontruby-prawn-icon-2.5.0/data/fonts/pf/pf.yml000066400000000000000000000041551354577744400204020ustar00rootroot00000000000000--- pf: __font_version__: 1.2.5 amazon: "" american-express: "" american-express-alt: "" atm: "" bankomat: "" bank-transfer: "" bitcoin: "" bitcoin-sign: "" braintree: "" btc: "" card: "" carta-si: "" cash: "" cash-on-delivery: "" cb: "" cirrus: "" cirrus-alt: "" clickandbuy: "" credit-card: "" diners: "" discover: "" ec: "" eps: "" eur: "" facture: "" fattura: "" flattr: "" giropay: "" google-wallet: "" google-wallet-alt: "" gpb: "" gratipay: "" ideal: "" ils: "" inr: "" invoice: "" invoice-sign: "" invoice-sign-alt: "" invoice-sign-alt-o: "" invoice-sign-o: "" jcb: "" jpy: "" krw: "" maestro: "" maestro-alt: "" mastercard: "" mastercard-alt: "" mastercard-securecode: "" ogone: "" paybox: "" paylife: "" paypal: "" paypal-alt: "" paysafecard: "" postepay: "" quick: "" rechnung: "" ripple: "" rub: "" skrill: "" sofort: "" square: "" stripe: "" truste: "" try: "" unionpay: "" usd: "" verified-by-visa: "" verisign: "" visa: "" visa-electron: "" western-union: "" western-union-alt: "" wirecard: "" sepa: "" sepa-alt: "" apple-pay: "" interac: "" paymill: "" dankort: "" bancontact-mister-cash: "" moip: "" pagseguro: "" cash-on-pickup: "" sage: "" elo: "" elo-alt: "" payu: "" mercado-pago: "" mercado-pago-sign: "" payshop: "" multibanco: "" gratipay-sign: "" six: "" cashcloud: "" interac-alt: "" klarna: "" bitpay: "" venmo: "" visa-debit: "" alipay: "" diners-alt: "" hipercard: "" skrill-alt: "" shopify: "" direct-debit: "" sodexo: "" bpay: "" contactless: "" contactless-alt: "" eth: "" ltc: "" visa-pay: "" wechat-pay: "" amazon-pay: "" amazon-pay-alt: "" ruby-prawn-icon-2.5.0/examples/000077500000000000000000000000001354577744400164145ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/examples/example_helper.rb000066400000000000000000000043771354577744400217460ustar00rootroot00000000000000# encoding: utf-8 # # example_helper.rb: Helper used to generate icon font legends. # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. # All example code may be executed by calling `rake legend` ICONS_PER_PAGE = 72 def icon_keys(pdf, specifier) keys = Prawn::Icon::FontData.load(pdf, specifier).keys keys.each_slice(6).to_a end def page_header(text, link) grid([0, 0], [1, 5]).bounding_box do move_down 10 text 'Prawn/Icon', size: 50 if block_given? yield else text "#{text}: " + "#{link}", inline_format: true, size: 12 end end end def number_of_pages(pdf, specifier) keys = Prawn::Icon::FontData.load(pdf, specifier).keys num_icons = keys.size # First page can only fit 60 icons num_icons -= 60 # (First page) + (remaining pages) 1 + (num_icons/ICONS_PER_PAGE).ceil end def legend_text(key) h = cursor - bounds.bottom opts = { width: bounds.width, height: h } bounding_box [bounds.left, cursor], opts do text key, overflow: :shrink_to_fit, align: :center, valign: :bottom, width: bounds.width, height: bounds.height, size: 12 end end def first_page_icons(icons) icons[0..9].each_with_index do |group, i| group.each_with_index do |icon, j| grid(i+2, j).bounding_box do if block_given? yield icon else icon icon, size: 20, align: :center end move_down 4 legend_text icon end end end def page_icons(icons, required_pages) icon_start = 10 # Skip first page icons required_pages.times do |page| icons[icon_start..icon_start+11].each_with_index do |group, i| group.each_with_index do |icon, j| grid(i, j).bounding_box do if block_given? yield icon else icon icon, size: 20, align: :center end move_down 4 legend_text icon end end icon_start += 1 # New icon row end start_new_page unless page == required_pages - 1 end end end ruby-prawn-icon-2.5.0/examples/fas-beer-inline.png000066400000000000000000000222051354577744400220630ustar00rootroot00000000000000PNG  IHDRrsl %iCCPICC ProfileHWT$!!BzWE6BH(1&;ZP`EVE\ {YaAEY 6T$tλܹs73sfPŹy|I\x03%5Iz]ZqRqPll2\q&/Br >K @|1DhK A-8K8C> q,Pr8,优,Gm N"Pq \gGMXbd#fpL'k+sQJP*?%/W649T@'Y^)rL(#:b- y 9~"E$JYfJqB"!6L5h!GX'7ΗaD1ܧT4s\(HHVD/!V4'>ry=#98f' у8*_Mr KSx!ʼ"(q?V.c-p 6iA|ؔ@kgs*9v @` 0da[Oc  Y-C#="ƃBD| h2lU S[@"A.-S ϖCٹk.TyO6J !FÈQ {C  [E3X 9 f}v~0>3p8;~U6Z";Q.9l#5;5(J}_ %j{~̃]x'ۏc0Xv;,kbm 38jRZnσ} ?=_YXS3$,A>3|&[utqrW-o3af+@7[d{fP2I҆uS1D3q^#DOKN?_W`H'؄BaPAN8H8NHdp3Kcv#bD'ٓH1$)TBZGM:J u>TT*TvQPyO [}1dyyLD"S4)?J%2RG9EKyj:NU:Ou^ճT?RvTuUF]JA=FE}CѬh4Z>m)vvAVUTkPP{NVTR^^_zYJјQqHF&]Y3F3Os.sϴHZVZZuv+ի׻IBQn`g0`&S=#G(omC0p6Ë}FFFbuF'zƁƫwMM&L0{hdT Z ("FǗ,FZ1̨NNNNw897;vsT\uumr}fwvӝ>}{OGGg^^^Kzzx󷯃o.gGGW~gO` xh 46(;hw``I,lֱ,$<4-T+41t}0ڰp"+"n\v wcNFR##G>D5EǎrhhQtc aǬk;5qq*=sw&?9~We wmeIIj'$'wJr! UڔFJKJ۞7>t]'L>z&Lʝtxd]91*N_;cCF/]} u~ϲVfu !K^*;"{s9ɹy*yyDZ)SOiۋKĝS}+l"҉Ҧ|mxɾ("{P_PYaZҴ5_a7c񌧅agrg25փAAdik>xn׼y;SȩFKmZB߅ዄ.^k)|SYE%%uuK3-Xi9qh+vk?Z9ve*UoWO^}­bٚεQkY[zk 7,~#ocǦMu6mE UVUۈ =N>o5 mCsgΓ555 w-Ekeݻ'쾼'dOSCzF}^W_u6,m@f46 ;R9|?vT9H񑁣G:ur)'wT䩳N8tY-|:uDž6K.{_nn~#+^}z7&ɻVW nߙwpƽeNB\|#?w?=xj˳?z!~S_^ڼiϤk~i@#(T43;@ o3 7xP?k8{ZAA_:"tuQƢ #H| oR TP.779`r$H pHYs%%IR$iTXtXML:com.adobe.xmp 254 114 5ӆiDOT9(99ظIDATxJ@o;+8<.A\ KW.\(g\u(l4t4NUJݴ P|R#P ]>@ Thtv |0Poe*@T@FgP ]>@ Thtv |0Poe*@T@FgP ]>@ Thtv | \^^`ɒ#''bC]g26IvwwTHRRJKKihFQeRPvvv9rȌ^$333M1 ~Leܔ=Kkk׶6G(?)|_PP?jnTՌܢ)@+9R]mQ[fco-%n?%%E222z|G}XS\\` wn[=55U_WW';FuN͍c\deeICCTVVA8KTc%:0/ӥQjjj퀎f':Z%A)IvÃ|~~PvvQ^__C*cW&X_]]e?Ҭ'ѳYTDzt?F[QAWWWAhWX@%%%vUk[=6)YQ0"lPU{{+[[[*TޮN888p4N~GN`:%5-I2\2#F }rrrW-M DW-**R>NHD >F|ܯ#|޸0K= >Mo'X³ Q>(y-~l_Du 7g} 'm좯 Pٙ,--P;kju}}-aFTDe1Y &SSSl(iЋcϫB266&]]]WbHNo8eaaV3332::jk*B9O&&&;P1#|O D| xip戢Bp|rgg PeO-#'_e(e#ɃDۛ*bi&n; |oa|qK'>':P[>IDATE""b*@ATn;5 Q#R,Q( ф F A߉oݻoݻܷN939ekPHL .#FSO=%n2j(իW5Yj,YDK{mvI6pC|̝;W,Xi֮]+oҵkWu]e+Z?C 駟4Fm$l4mڴ;<^ٳg{'|4jHvai׮ߩS'~Ceҥ5Ҟ6mh١/nʗoV4iDڶm+-ZI /']w]iذYߖ?whBᆱV,f͚ ce˖5I>ܫ[olfE~g ,F7lP,I7;/_ӕ}aÆ/{Lyһwoa0iٲeZc=W\!_=rM7 `o?Ky?믿^x≚{\p :T(T2&?#GqzꩧJG'|RV\Y@nРp޹ CJ8`v?+'LE]҇ C;ˤUV*Io_g-Ç1QSּN.Dˀog;#k֬Qu֪#)QEtNS0bgUP Z>g! RzQ3IL6Mnv)o7V鋚=af z!M1cƨy[aq1Gmԙjw+'I}# 7o\q$N;0yke&~wAx5w},L~ |i$3v=6=NrwWa ePw}r-~ &4>ZObرZO9묳tȩ&馛z̈́I_#{u͋Č {k\-L@ό3 OA`K.rW+V&4α3g/À?c 4J~1h];w zWb;S—h֬Y:K+a |ŊI' }G&Rځo *VXMei00ꫡOw5Dҝ46$|]w|s˳qڽSk&a*o\& =Dб&Kd'pB(0\yH;*RS0 x{ld |$)Sv8ݵzu]G,?2iIA1y10 b (; x: UIq%>Wg&a9\A`8A_nɋ|=\:U`RPb,68>O&.G/:̙: 9r̞?\'I&&PI+6;v'1b?Y q{ADrAѫ_:|&r~ DQO;4\qA*恊IP‰hŊ'CI4n!&=c#Tuus6iS48m+椿/QbXMi@g,@A\L:D|G=wp&D@$a<,'br$лKVb#Jw)i=<d?D4OX0rV#{0W J|ޣ^8IhD  T5A_J3.O3A+ANnAX}{챇eOs={8USw~Xs/ M r\PS\e#& xD\VD8-с|'u38sLU_y͇Luj$>H3/vE,wb_5Å'Gy[C+2i?>;גkqj$5Hjh։$LR;sԻϠ1Oth rQS7肬X;swN5Rן@)®$u6'BiIO`?%y*Y]C?  ۏ)mA?#<|wfu[vGSjWR >>~#iT{@a'nnS Ft!+x9Wu=/+If#;yC /~#i0Df3X [}Eʤ8qR`S~ J%'5SN5ԪP=T#9 cՙdE_7GtA'Ezg% #'Nb Wyۏ_A]DNEIz]W|$;f2g ,@r[씛R2: +&*ﴀԿ{ԹF]znsXr %T`' L:5֘ȳf۞vJ{.1L†ئY؏^k3*Q4h# 0'sO?UFl:3)!=}T|4jg%@J8?R] Tgq${aާOu0=vL < KP8ߏ߀'?H4ڥ7'Znpcrqmx'>U۩ۨ8₶qB8G'&Ivq-G >j!C8pÁ?Eן>; 4n5`QkӮjHjdT:'>y!ScBO0G1 {#mbl{gƤs0ׇ{޻-#- ņ袮O{T^LL wKS+<SЎ|?7b~GjXc 1{+u@leUc^ɨv~@ؑI+.L_=oϻ]쿂7@ T $+1=# j~U7p>朂w2OY듼%f99kT"ե|<հERbnKSGP&(x}WKT?~`BKD]Ϟ=^|iD5%/>QzsP(g}J奥  Α,Iy@Yw'ȆerۅlCF> iT 0="pris7ٯ*@$ 챇Ɓ|r~V"9`d=4|8~${q 0_UƁH#c?j2Dr{h' Wkq HC@>9`gZ0G~>Ze?=8Oٯ*@$ 챇Ɓ|r~V"9`d=4|8~${q 0_UƁH~HdIENDB`ruby-prawn-icon-2.5.0/examples/fas-beer.png000066400000000000000000000234361354577744400206160ustar00rootroot00000000000000PNG  IHDRO:" %iCCPICC ProfileHWT$!!BzWE6BH(1&;ZP`EVE\ {YaAEY 6T$tλܹs73sfPŹy|I\x03%5Iz]ZqRqPll2\q&/Br >K @|1DhK A-8K8C> q,Pr8,优,Gm N"Pq \gGMXbd#fpL'k+sQJP*?%/W649T@'Y^)rL(#:b- y 9~"E$JYfJqB"!6L5h!GX'7ΗaD1ܧT4s\(HHVD/!V4'>ry=#98f' у8*_Mr KSx!ʼ"(q?V.c-p 6iA|ؔ@kgs*9v @` 0da[Oc  Y-C#="ƃBD| h2lU S[@"A.-S ϖCٹk.TyO6J !FÈQ {C  [E3X 9 f}v~0>3p8;~U6Z";Q.9l#5;5(J}_ %j{~̃]x'ۏc0Xv;,kbm 38jRZnσ} ?=_YXS3$,A>3|&[utqrW-o3af+@7[d{fP2I҆uS1D3q^#DOKN?_W`H'؄BaPAN8H8NHdp3Kcv#bD'ٓH1$)TBZGM:J u>TT*TvQPyO [}1dyyLD"S4)?J%2RG9EKyj:NU:Ou^ճT?RvTuUF]JA=FE}CѬh4Z>m)vvAVUTkPP{NVTR^^_zYJјQqHF&]Y3F3Os.sϴHZVZZuv+ի׻IBQn`g0`&S=#G(omC0p6Ë}FFFbuF'zƁƫwMM&L0{hdT Z ("FǗ,FZ1̨NNNNw897;vsT\uumr}fwvӝ>}{OGGg^^^Kzzx󷯃o.gGGW~gO` xh 46(;hw``I,lֱ,$<4-T+41t}0ڰp"+"n\v wcNFR##G>D5EǎrhhQtc aǬk;5qq*=sw&?9~We wmeIIj'$'wJr! UڔFJKJ۞7>t]'L>z&Lʝtxd]91*N_;cCF/]} u~ϲVfu !K^*;"{s9ɹy*yyDZ)SOiۋKĝS}+l"҉Ҧ|mxɾ("{P_PYaZҴ5_a7c񌧅agrg25փAAdik>xn׼y;SȩFKmZB߅ዄ.^k)|SYE%%uuK3-Xi9qh+vk?Z9ve*UoWO^}­bٚεQkY[zk 7,~#ocǦMu6mE UVUۈ =N>o5 mCsgΓ555 w-Ekeݻ'쾼'dOSCzF}^W_u6,m@f46 ;R9|?vT9H񑁣G:ur)'wT䩳N8tY-|:uDž6K.{_nn~#+^}z7&ɻVW nߙwpƽeNB\|#?w?=xj˳?z!~S_^ڼiϤk~i@#(T43;@ o3 7xP?k8{ZAA_:"tuQƢ #H| oR TP.779`r$H pHYs%%IR$iTXtXML:com.adobe.xmp 278 286 iDOT( C9 IDATxKl O֣^@hEQgzE`'6B HTЕg,,DHKCTfff{Q6/<L~~ E|m#B#bX~\hͱ BB J\R_^:ce3:鶻f8O9TY7ꬒT#9sLyUh76&}kbA,3Cd}}&ĂX1FZ.G?Y vVX|~;{\.KJJׯ_d B%Nb@F-Ϟ=+5o>j!U#8 *~<@'7dkkkS cQ2tP1o+? NVru}?+~.33S,\P9z NTUU9 GDA+uGZCرCCE>~Uml=0n֗;?X_zGYSSm̘1nWw2ߏpc,=xe ѤKԳI!2  Q~|H~/^#Fv-..֕ ;wԹIg?bSb%% 2"uPXF8XZ&>F,Lj+1biY2biYeLj;/XbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsbbC,xsuNNk׮رc(&ĂXK 3zڵ:===b֭ha{%vf1G} ݻwOO>=R1S:u*Hŋ0ba҂޵kҥX sZPc"ĂX|Ǐt߾}uVD2~x}55{bA,%|y^d;R[?͛={6^A bA,qfիW tAAnݺNKKԋeʕ˗q8u/C,4uuuLO6dee ň%33Se̼N7ĂXKY o>m5rssĮ9w>}3gmF,4_~Ǐ[C댌 ӝ5c }Ν CĂXfBRZm۶"5%ϛo߿\4bA,VlvvWǍ~AfD + ?ɤ/^X%M6GS;w>잮,D^,AmJ& 3g~Xˆa%'뢢"7]?31ÇD/^G!R??O28dСCvaaˆ%#seltP'dˢEB5R/ĂX"+x7ȯ0`MЏ?54 bA,B} Q9=}mhdҰES1ҲI(vܹmX[i( F,B} ^;V_|9T_/#u"F,Xĉڬh biN,=zpWKk  Nbڻw~]=pPbˆ)KJzKKKϟ?JC߿_ F-zҥɓ'A3{^lD.˥H?^ [jDB0^Kݽ{Wm۶MUTTi,"Э[7qFURRڶmkQ 5Rb1hsڱc+߿8I޽{kת ܤ7O rb1!8Eٳѣy"rrrՊ+ȑ#UvvJKK mE!==]竁*UXXI{e̯Y%HGV,<S"|J3iժ+# edKpPSCD 1E 5AŞ&R@,b)@,5B@bCMAbbj ==mM#XPS!Xik"" `bO[) 1{ {ښH! F CD 1E 5AŞ&R@,b)@,5B@bCMAbbj ==mM#XPS!Xik"" `bO[) 1{ {ښH! F CD 1E 5AŞ&R@,b)@,5B@bCMAbbj ==mM#XPS!Xik"" `bO[) 1{ %UgIENDB`ruby-prawn-icon-2.5.0/examples/fontawesome.rb000066400000000000000000000020131354577744400212640ustar00rootroot00000000000000# All example code may be executed by calling `rake legend` require_relative '../lib/prawn/icon' require_relative 'example_helper' STYLES = { fab: 'Brands', far: 'Regular', fas: 'Solid' }.freeze STYLES.each do |specifier, type| Prawn::Document.generate("fontawesome_#{type.downcase}.pdf") do deja_path = File.join \ Prawn::Icon::Base::FONTDIR, 'DejaVuSans.ttf' font_families.update( 'deja' => { normal: deja_path } ) font('deja') icons = icon_keys(self, specifier.to_s) required_pages = number_of_pages(self, specifier.to_s) define_grid(columns: 6, rows: 12, gutter: 16) sub_header = "FontAwesome | #{type}" link = 'http://fontawesome.io/icons/' page_header sub_header, link first_page_icons icons do |icon_key| # Just call the +icon+ method and pass in an icon key icon icon_key, size: 20, align: :center end start_new_page page_icons icons, required_pages do |icon_key| icon icon_key, size: 20, align: :center end end end ruby-prawn-icon-2.5.0/examples/foundation_icons.rb000066400000000000000000000015531354577744400223060ustar00rootroot00000000000000# All example code may be executed by calling `rake legend` require_relative '../lib/prawn/icon' require_relative 'example_helper' Prawn::Document.generate('foundation_icons.pdf') do deja_path = File.join \ Prawn::Icon::Base::FONTDIR, 'DejaVuSans.ttf' font_families.update({ 'deja' => { normal: deja_path } }) font('deja') icons = icon_keys(self, 'fi') required_pages = number_of_pages(self, 'fi') define_grid(columns: 6, rows: 12, gutter: 16) sub_header = 'Zurb Foundation Icons' link = 'http://zurb.com/playground/foundation-icon-fonts-3' page_header sub_header, link first_page_icons icons do |icon_key| # Just call the +icon+ method and pass in an icon key icon icon_key, size: 20, align: :center end start_new_page page_icons icons, required_pages do |icon_key| icon icon_key, size: 20, align: :center end end ruby-prawn-icon-2.5.0/examples/paymentfont.rb000066400000000000000000000015011354577744400213020ustar00rootroot00000000000000# All example code may be executed by calling `rake legend` require_relative '../lib/prawn/icon' require_relative 'example_helper' Prawn::Document.generate('paymentfont.pdf') do deja_path = File.join \ Prawn::Icon::Base::FONTDIR, 'DejaVuSans.ttf' font_families.update({ 'deja' => { normal: deja_path } }) font('deja') icons = icon_keys(self, 'pf') required_pages = number_of_pages(self, 'pf') define_grid(columns: 6, rows: 12, gutter: 16) sub_header = 'PaymentFont' link = 'https://paymentfont.com' page_header sub_header, link first_page_icons icons do |icon_key| # Just call the +icon+ method and pass in an icon key icon icon_key, size: 20, align: :center end start_new_page page_icons icons, required_pages do |icon_key| icon icon_key, size: 20, align: :center end end ruby-prawn-icon-2.5.0/gemfiles/000077500000000000000000000000001354577744400163715ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/gemfiles/prawn-1.3.0.gemfile000066400000000000000000000001131354577744400215020ustar00rootroot00000000000000source 'https://rubygems.org' gem 'prawn', '~> 1.3.0' gemspec path: '..' ruby-prawn-icon-2.5.0/gemfiles/prawn-2.1.0.gemfile000066400000000000000000000001131354577744400215010ustar00rootroot00000000000000source 'https://rubygems.org' gem 'prawn', '~> 2.1.0' gemspec path: '..' ruby-prawn-icon-2.5.0/gemfiles/prawn-master.gemfile000066400000000000000000000001311354577744400223360ustar00rootroot00000000000000source 'https://rubygems.org' gem 'prawn', github: 'prawnpdf/prawn' gemspec path: '..' ruby-prawn-icon-2.5.0/lib/000077500000000000000000000000001354577744400153445ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/lib/prawn/000077500000000000000000000000001354577744400164735ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/lib/prawn/icon.rb000066400000000000000000000007051354577744400177520ustar00rootroot00000000000000# encoding: utf-8 # # icon.rb: Prawn icon functionality. # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require_relative 'icon/version' require_relative 'icon/base' require_relative 'icon/font_data' require_relative 'icon/parser' require_relative 'icon/interface' require_relative 'icon/compatibility' Prawn::Document.extensions << Prawn::Icon::Interface ruby-prawn-icon-2.5.0/lib/prawn/icon/000077500000000000000000000000001354577744400174235ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/lib/prawn/icon/base.rb000066400000000000000000000006311354577744400206620ustar00rootroot00000000000000# encoding: utf-8 # # base.rb - Base configuration for Prawn::Icon. # # Copyright September 2016, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'prawn' require_relative 'errors' module Prawn class Icon module Base FONTDIR = File.join \ File.expand_path('../../../..', __FILE__), 'data/fonts' end end end ruby-prawn-icon-2.5.0/lib/prawn/icon/compatibility.rb000066400000000000000000000025001354577744400226160ustar00rootroot00000000000000# encoding: utf-8 # # compatibility.rb - Prawn::Icon FontAwesome 4/5 compatibility shim. # # Copyright March 2018, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Icon class Compatibility SHIMS = YAML.load_file( File.join( Base::FONTDIR, 'fa4', 'shims.yml' ) ).freeze attr_accessor :key def initialize(opts = {}) self.key = opts.fetch(:key) end def translate(io = STDERR) @translate ||= begin if key.start_with?('fa-') map.tap { |replaced| warning(replaced, key, io) } else key end end end private def map SHIMS.fetch(key) do # FontAwesome shim metadata assumes "fas" as the default # font family if not explicity referenced. "fas-#{key.sub(/fa-/, '')}" end end def warning(new_key, old_key, io) io.puts <<-DEPRECATION [Prawn::Icon - DEPRECATION WARNING] FontAwesome 4 icon was referenced as '#{old_key}'. Use the FontAwesome 5 icon '#{new_key}' instead. This compatibility layer will be removed in Prawn::Icon 3.0.0. DEPRECATION end end end end # rubocop:enable Metrics/ClassLength ruby-prawn-icon-2.5.0/lib/prawn/icon/errors.rb000066400000000000000000000007471354577744400212740ustar00rootroot00000000000000# encoding: utf-8 # # errors.rb - Prawn::Icon standard errors. # # Copyright September 2016, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Icon module Errors # Error raised when an icon glyph is not found # IconNotFound = Class.new(StandardError) # Error raised when an icon key is not provided # IconKeyEmpty = Class.new(StandardError) end end end ruby-prawn-icon-2.5.0/lib/prawn/icon/font_data.rb000066400000000000000000000044351354577744400217150ustar00rootroot00000000000000# encoding: utf-8 # # font_data.rb: Icon font metadata container/cache. # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'yaml' module Prawn class Icon class FontData class << self # Font data lazy-loader that will initialize # icon fonts by document. def load(document, set) set = set.to_sym @data ||= {} @data[set] ||= FontData.new(document, set: set) @data[set].load_fonts(document) end # Release all font references if requested. def release_data @data = {} end def unicode_from_key(document, key) set = specifier_from_key(key) key = key.sub(Regexp.new("#{set}-"), '') load(document, set).unicode(key) end def specifier_from_key(key) if key.nil? || key == '' raise Errors::IconKeyEmpty, 'Icon key provided was nil.' end key.split('-')[0].to_sym end end attr_reader :set def initialize(document, opts = {}) @set = opts.fetch(:set) load_fonts(document) end def font_version yaml[specifier]['__font_version__'] end def legend_path File.join(File.dirname(path), "#{@set}.yml") end def load_fonts(document) document.font_families[@set.to_s] ||= { normal: path } self end def path ttf = File.join(Icon::Base::FONTDIR, @set.to_s, '*.ttf') font = Dir[ttf].first if font.nil? raise Prawn::Errors::UnknownFont, "Icon font not found for set: #{@set}" end @path ||= font end def specifier @specifier ||= yaml.keys[0] end def unicode(key) yaml[specifier][key].tap do |char| unless char raise Errors::IconNotFound, "Key: #{specifier}-#{key} not found" end end end def keys # Strip the first element: __font_version__ yaml[specifier].keys.map { |k| "#{specifier}-#{k}" }.drop(1) end def yaml @yaml ||= YAML.load_file legend_path end end end end ruby-prawn-icon-2.5.0/lib/prawn/icon/interface.rb000066400000000000000000000144031354577744400217120ustar00rootroot00000000000000# encoding: utf-8 # # interface.rb: Prawn extension module and logic. # # Copyright October 2016, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn # Easy icon font usage within Prawn. Currently # supported icon fonts include: FontAwesome, # Zurb Foundicons and PaymentFont. # # = Icon Keys # # Icon keys must be supplied to most +Prawn::Icon+ # methods. Keys map directly to a unicode character # within the font that produces a given icon. As a # rule, included icon keys should match the keys from # the font provider. The icon key mapping is specified # in the font's +legend_file+, which is a +YAML+ file # located in Prawn::Icon::Base::FONTDIR/font/font.yml. # # Prawn::Icon:: # Houses the methods and interfaces necessary for # rendering icons to the Prawn::Document. # # Prawn::Icon::FontData:: # Used to store various information about an icon font, # including the key-to-unicode mapping information. # Also houses methods to cache and lazily load the # requested font data on a document basis. # # Prawn::Icon::Parser:: # Used to initially parse icons that are used with the # inline_format: true option. The input string is parsed # once for tags, then the output is provided # to Prawn's internal formatted text parser. # class Icon FONTDIR = Icon::Base::FONTDIR module Interface # Set up and draw an icon on this document. This # method operates much like +Prawn::Text::Box+. # # == Parameters: # key:: # Contains the key to a particular icon within # a font family. If :inline_format is true, # then key may contain formatted text marked # with tags and any tag supported # by Prawn's parser. # # opts:: # A hash of options that may be supplied to # the underlying +text+ method call. # # == Examples: # pdf.icon 'fas-beer' # pdf.icon 'fas-user-circle', # inline_format: true # def icon(key, opts = {}) key = translate_key(key) make_icon(key, opts).tap(&:render) end # Initialize a new icon object, but do # not render it to the document. # # == Parameters: # key:: # Contains the key to a particular icon within # a font family. If :inline_format is true, # then key may contain formatted text marked # with tags and any tag supported # by Prawn's parser. # # opts:: # A hash of options that may be supplied to # the underlying text method call. # def make_icon(key, opts = {}) key = translate_key(key) if opts.fetch(:inline_format, false) inline_icon(key, opts) else Icon.new(key, self, opts) end end # Initialize a new formatted text box containing # icon information, but don't render it to the # document. # # == Parameters: # text:: # Input text to be parsed initially for # tags, then passed to Prawn's formatted text # parser. # # opts:: # A hash of options that may be supplied to the # underlying text call. # def inline_icon(text, opts = {}) parsed = Icon::Parser.format(self, text) content = Text::Formatted::Parser.format(parsed) box_options = opts.merge( inline_format: true, document: self, at: [bounds.left, cursor] ) icon_box(content, box_options) end # Initialize a new Prawn::Icon, but don't render # the icon to a document. Intended to be used as # an entry of a data array when combined with # Prawn::Table. # # == Parameters: # key:: # Contains the key to a particular icon within # a font family. The key may contain a string # with format tags if +inline_format: true+ in # the +opts+ hash. # # opts:: # A hash of options that may be supplied to the # underlying text call. # # == Returns: # A Hash containing +font+ and +content+ keys # that match the data necessary for the # specified icon. # # eg. { font: 'fas', content: "\uf2b9" } # # Note that the +font+ key will not be set # if +inline_format: true+. # # == Examples: # require 'prawn/table' # # data = [ # # Explicit brackets must be used here # [pdf.table_icon('fas-coffee'), 'Cell 1'], # ['Cell 2', 'Cell 3'] # ] # # pdf.table(data) => (2 x 2 table) # def table_icon(key, opts = {}) key = translate_key(key) if opts[:inline_format] content = Icon::Parser.format(self, key) opts.merge(content: content) else make_icon(key, opts).format_hash end end private def translate_key(key) Compatibility.new(key: key).translate end def icon_box(content, opts = {}) # :nodoc: Text::Formatted::Box.new(content, opts).tap do |box| box.render(dry_run: true) self.y -= box.height unless opts.fetch(:final_gap, true) self.y -= box.line_gap + box.leading end end end end attr_reader :set, :unicode def initialize(key, document, opts = {}) @pdf = document @set = opts.fetch(:set) { FontData.specifier_from_key(key) } @data = FontData.load(document, @set) @key = strip_specifier_from_key(key) @unicode = @data.unicode(@key) @options = opts end def format_hash base = { font: @set.to_s, content: @unicode } opts = @options.dup # Prawn::Table renames :color to :text_color opts[:text_color] = opts.delete(:color) base.merge(opts) end def render @pdf.font(@data.path) do @pdf.text @unicode, @options end end private def strip_specifier_from_key(key) # :nodoc: reg = Regexp.new "#{@data.specifier}-" key.sub(reg, '') # Only one specifier end end end ruby-prawn-icon-2.5.0/lib/prawn/icon/parser.rb000066400000000000000000000073411354577744400212510ustar00rootroot00000000000000# encoding: utf-8 # # parser.rb: Prawn icon tag text parser (pseudo-HTML). # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Icon # Provides the necessary methods to enable the parsing # of tags from input text. # # = Supported Tags: # :: # Place an icon key between the tags and the output # will be translated into: unicode. # # = Supported Attributes: # # Various attributes will be extracted from ++ tags: # # color:: # The hex representation of a color that the icon should # be rendered as. If left nil, the document's fill color # will be used. # # size:: # The font size of a particular icon. If left nil, the # document's font size will be used. # class Parser PARSER_REGEX = Regexp.new \ ']*>|', Regexp::IGNORECASE | Regexp::MULTILINE CONTENT_REGEX = /]*>(?[^<]*)<\/icon>/mi TAG_REGEX = /]*>[^<]*<\/icon>/mi ATTR_REGEX = /(?[a-zA-Z]*)=["|'](?(\w*[^["|']]))["|']/mi class << self def format(document, string) tokens = string.scan(PARSER_REGEX) config = config_from_tokens(tokens) content = string.scan(CONTENT_REGEX).flatten icons = keys_to_unicode(document, content, config) tags = icon_tags(icons) string.gsub(TAG_REGEX).with_index { |_, i| tags[i] } end def config_from_tokens(tokens) [].tap do |array| tokens.each do |token| # Skip the closing tag next if token =~ /<\/icon>/i # Convert [[1,2], [3,4]] to { :1 => 2, :3 => 4 } attrs = token.scan(ATTR_REGEX).inject({}) do |k, v| val = attr_hash(v) k.merge!(val) end array << attrs end end end def icon_tags(icons) [].tap do |tags| icons.each do |icon| # Mandatory content = icon[:content] set = icon[:set] # Optional color = icon[:color] size = icon[:size] opening = "#{content}" next end opening += " size=\"#{size}\"" if size content = "#{content}" if color opening += '>' tags << "#{opening}#{content}" end end end def keys_to_unicode(document, content, config) [].tap do |icons| content.each_with_index do |icon, index| key = Compatibility.new(key: icon).translate options ||= {} options = config[index] if config.any? info = { set: FontData.specifier_from_key(key), size: options[:size], color: options[:color], content: FontData.unicode_from_key(document, key) } icons << info end end end private def attr_hash(value) #:nodoc: # If attr == size, we must cast value to float, # else symbolize the key and map it to value if value[0] =~ /size/i { size: value[1].to_f } else { value[0].to_sym => value[1] } end end end end end end ruby-prawn-icon-2.5.0/lib/prawn/icon/version.rb000066400000000000000000000004121354577744400214320ustar00rootroot00000000000000# encoding: utf-8 # # version.rb: Prawn icon versioning. # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Icon VERSION = '2.5.0'.freeze end end ruby-prawn-icon-2.5.0/prawn-icon.gemspec000066400000000000000000000026501354577744400202230ustar00rootroot00000000000000basedir = File.expand_path(File.dirname(__FILE__)) require "#{basedir}/lib/prawn/icon/version" Gem::Specification.new do |spec| spec.name = 'prawn-icon' spec.version = Prawn::Icon::VERSION spec.platform = Gem::Platform::RUBY spec.summary = 'Provides icon fonts for PrawnPDF' spec.files = Dir.glob('{lib,spec,data,examples}/**/**/*') + %w[prawn-icon.gemspec Gemfile Rakefile] + %w[README.md CHANGELOG.md] + %w[COPYING LICENSE GPLv2 GPLv3] spec.require_path = 'lib' spec.required_ruby_version = '>= 1.9.3' spec.required_rubygems_version = '>= 1.3.6' spec.homepage = 'https://github.com/jessedoyle/prawn-icon/' spec.test_files = Dir['spec/*_spec.rb'] spec.authors = ['Jesse Doyle'] spec.email = ['jdoyle@ualberta.ca'] spec.licenses = ['RUBY', 'GPL-2', 'GPL-3'] spec.add_dependency('prawn', '>= 1.1.0', '< 3.0.0') spec.add_development_dependency('pdf-inspector', '>= 1.2.1') spec.add_development_dependency('rspec', '>= 3.5.0') spec.add_development_dependency('rubocop', '~> 0.49.1') spec.add_development_dependency('rake') spec.add_development_dependency('pdf-reader', '>= 1.4') spec.add_development_dependency('simplecov') spec.description = <<-END_DESC Prawn::Icon provides various icon fonts including FontAwesome, PaymentFont and Foundation Icons for use with the Prawn PDF toolkit. END_DESC end ruby-prawn-icon-2.5.0/spec/000077500000000000000000000000001354577744400155305ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/spec/integration/000077500000000000000000000000001354577744400200535ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/spec/integration/icon_spec.rb000066400000000000000000000140731354577744400223470ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'spec_helper' describe Prawn::Icon::Interface do let(:pdf) { create_pdf } describe '::icon' do context 'valid icon key' do context 'with options' do it 'should handle text options (size)' do pdf.icon 'far-address-book', size: 60 text = PDF::Inspector::Text.analyze(pdf.render) expect(text.font_settings.first[:size]).to eq(60) end end context 'inline_format: true' do it 'should handle text options (size)' do pdf.icon 'far-address-book', inline_format: true text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') expect(text.font_settings.first[:size]).to eq(60.0) end it 'should be able to render on multiple documents' do pdf1 = create_pdf pdf2 = create_pdf pdf1.icon 'far-address-book', inline_format: true pdf2.icon 'far-address-book', inline_format: true text1 = PDF::Inspector::Text.analyze(pdf1.render) text2 = PDF::Inspector::Text.analyze(pdf2.render) expect(text1.strings.first).to eq('') expect(text2.strings.first).to eq('') end it 'renders the icon at the proper cursor position (#24)' do icon_text = 'fas-info-circle icon here!' pdf.text 'Start' pdf.move_down 10 pdf.text 'More' pdf.move_down 20 icon = pdf.icon icon_text, inline_format: true pdf.move_down 30 pdf.text 'End' expect(icon.at.first).to eq(0) expect(icon.at.last.round).to eq(734) end context 'with final_gap: false' do it 'renders the icon without a final gap' do icon = pdf.icon 'far-address-book', inline_format: true, final_gap: false expect(icon.at.last.round).to eq(792) end end end context 'without options' do it 'should render an icon to document' do pdf.icon 'far-address-book' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end end context 'invalid icon key' do it 'should raise IconNotFound' do expect { pdf.icon('far-__INVALID') }.to raise_error( Prawn::Icon::Errors::IconNotFound ) end end context 'invalid specifier' do it 'should raise UnknownFont' do expect { pdf.icon('__INVALID__') }.to raise_error( Prawn::Errors::UnknownFont ) end end end describe '::make_icon' do context ':inline_format => false (default)' do it 'should return a Prawn::Icon instance' do icon = pdf.make_icon 'far-address-book' expect(icon).to be_a(Prawn::Icon) end end context ':inline_format => true' do it 'should return a Prawn::::Text::Formatted::Box instance' do icon = pdf.make_icon 'far-address-book', inline_format: true expect(icon).to be_a(Prawn::Text::Formatted::Box) end end end describe '::inline_icon' do it 'should return a Prawn::Text::Formatted::Box instance' do icon = pdf.inline_icon 'far-address-book' expect(icon).to be_a(Prawn::Text::Formatted::Box) end end describe '::table_icon' do context 'inline_format: false (default)' do it 'should return a hash with font and content keys' do icon = pdf.table_icon 'far-address-book' expect(icon).to be_a(Hash) expect(icon[:font]).to eq('far') expect(icon[:content]).to eq('') end end context 'inline_format: true' do it 'should convert to tags' do icon = pdf.table_icon 'fas-user', inline_format: true expect(icon).to be_a(Hash) expect(icon[:content]).to eq('') expect(icon[:inline_format]).to be true end it 'should ignore all other tags' do a = ['BOLD BLUE', inline_format: true] icon = pdf.table_icon(*a) expect(icon).to be_a(Hash) expect(icon[:content]).to eq(a[0]) expect(icon[:inline_format]).to be true end context 'multiple icons' do it 'should ignore any text not in an icon tag' do a = ['fas-user Some Text fi-laptop', inline_format: true] out = ' Some Text ' icon = pdf.table_icon(*a) expect(icon).to be_a(Hash) expect(icon[:content]).to eq(out) expect(icon[:inline_format]).to be true end end end end end describe Prawn::Icon do let(:pdf) { create_pdf } context 'FontAwesome | Regular' do it 'should render regular glyphs' do pdf.icon 'far-user' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end context 'FontAwesome | Solid' do it 'should render solid glyphs' do pdf.icon 'fas-user' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end context 'FontAwesome | Brands' do it 'should render FontAwesome glyphs' do pdf.icon 'fab-amazon' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end context 'Foundation Icons' do it 'should render Foundation glyphs' do pdf.icon 'fi-laptop' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end context 'PaymentFont' do it 'should render PaymentFont glyphs' do pdf.icon 'pf-amazon' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end end ruby-prawn-icon-2.5.0/spec/spec_helper.rb000066400000000000000000000010771354577744400203530ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. # # require 'simplecov' SimpleCov.start require "bundler" Bundler.setup require "prawn/icon" require 'pdf/inspector' require "rspec" # Requires supporting ruby files with custom matchers and macros, etc, # in spec/extensions/ and its subdirectories. Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each { |f| require f } RSpec.configure do |config| config.include PDFHelper config.include ParserHelper endruby-prawn-icon-2.5.0/spec/support/000077500000000000000000000000001354577744400172445ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/spec/support/parser_helper.rb000066400000000000000000000006301354577744400224230ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module ParserHelper def tokenize_string(string) regex = Prawn::Icon::Parser::PARSER_REGEX string.scan(regex) end def contentize_string(string) regex = Prawn::Icon::Parser::CONTENT_REGEX string.scan(regex).flatten end end ruby-prawn-icon-2.5.0/spec/support/pdf_helper.rb000066400000000000000000000005101354577744400216750ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module PDFHelper def create_pdf Prawn::Document.new(margin: 0) end def valid_unicode?(string) string.force_encoding('UTF-8').valid_encoding? end end ruby-prawn-icon-2.5.0/spec/unit/000077500000000000000000000000001354577744400165075ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/spec/unit/base_spec.rb000066400000000000000000000006531354577744400207640ustar00rootroot00000000000000# encoding: utf-8 # # Copyright September 2016, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. describe Prawn::Icon::Base do describe 'FONTDIR' do it 'returns the data/fonts directory' do path = File.expand_path '../../..', __FILE__ path = File.join path, 'data/fonts' expect(Prawn::Icon::Base::FONTDIR).to eq(path) end end end ruby-prawn-icon-2.5.0/spec/unit/compatibility_spec.rb000066400000000000000000000022531354577744400227210ustar00rootroot00000000000000# encoding: utf-8 # # Copyright March 2018, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. describe Prawn::Icon::Compatibility do describe '#translate' do let(:stderr) { StringIO.new } subject { described_class.new(key: key) } context 'with a non-deprecated key' do let(:key) { 'fas-adjust' } it 'does not write to STDERR' do value = subject.translate(stderr) stderr.rewind expect(stderr.read).to be_empty end it 'returns the original key' do expect(subject.translate(stderr)).to eq(key) end end context 'with a depreacted FontAwesome key' do let(:key) { 'fa-birthday-cake' } let(:mapped_key) { 'fas-birthday-cake' } it 'writes a deprecation warning to STDERR' do subject.translate(stderr) stderr.rewind errors = stderr.read expect(errors).to include('DEPRECATION') expect(errors).to include(key) expect(errors).to include(mapped_key) end it 'returns the mapped key' do expect(subject.translate(stderr)).to eq(mapped_key) end end end end ruby-prawn-icon-2.5.0/spec/unit/errors/000077500000000000000000000000001354577744400200235ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/spec/unit/errors/icon_key_empty_spec.rb000066400000000000000000000006551354577744400244060ustar00rootroot00000000000000# encoding: utf-8 # # Copyright September 2016, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. describe Prawn::Icon::Errors::IconKeyEmpty do let(:pdf) { create_pdf } it 'is a StandardError' do expect(subject).to be_a(StandardError) end it 'is thrown on a missing icon key' do expect { pdf.icon('') }.to raise_error(described_class) end end ruby-prawn-icon-2.5.0/spec/unit/errors/icon_not_found_spec.rb000066400000000000000000000007001354577744400243620ustar00rootroot00000000000000# encoding: utf-8 # # Copyright September 2016, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. describe Prawn::Icon::Errors::IconNotFound do let(:pdf) { create_pdf } it 'is a StandardError' do expect(subject).to be_a(StandardError) end it 'is thrown on an invalid icon key' do expect { pdf.icon('far-an invalid key') }.to raise_error(described_class) end end ruby-prawn-icon-2.5.0/spec/unit/font_data_spec.rb000066400000000000000000000113621354577744400220100ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'spec_helper' describe Prawn::Icon::FontData do let(:pdf) { create_pdf } let(:fontawesome) { Prawn::Icon::FontData.new(pdf, set: :far) } before { Prawn::Icon::FontData.release_data } describe '#initialize' do before { Prawn::Icon::FontData.new(pdf, set: :far) } it 'should update font_families on initialization' do expect(pdf.font_families['far']).not_to be_nil end end describe '::load' do context 'specifier is a string' do let(:data) { Prawn::Icon::FontData.load(pdf, 'far') } it 'should load the font' do expect(data).not_to be_nil end it 'should only load a single object for multiple documents' do obj_id_1 = data.object_id second = Prawn::Icon::FontData.load(pdf, 'far') obj_id_2 = second.object_id expect(obj_id_1).to eq(obj_id_2) end end context 'specifier is a symbol' do let(:data) { Prawn::Icon::FontData.load(pdf, :far) } it 'should load the font' do expect(data).not_to be_nil end end end describe '::release_data' do it 'should remove all data references if requested' do Prawn::Icon::FontData.load(pdf, :far) Prawn::Icon::FontData.load(pdf, :fi) data = Prawn::Icon::FontData.release_data expect(data).to be_empty end end describe '::unicode_from_key' do it 'should provide a UTF-8 string for a valid key' do unicode = Prawn::Icon::FontData.unicode_from_key(pdf, 'far-address-book') valid = unicode.force_encoding('UTF-8').valid_encoding? expect(valid).to be true end end describe '::specifier_from_key' do it 'should provide the font specifier from a valid key' do specifier = Prawn::Icon::FontData.specifier_from_key('far-address-book') expect(specifier).to eq(:far) end it 'should error when key is nil' do expect { Prawn::Icon::FontData.specifier_from_key(nil) }.to raise_error( Prawn::Icon::Errors::IconKeyEmpty ) end it 'should error when key is an empty string' do expect { Prawn::Icon::FontData.specifier_from_key('') }.to raise_error( Prawn::Icon::Errors::IconKeyEmpty ) end it 'should handle strings without any dashes properly' do specifier = Prawn::Icon::FontData.specifier_from_key 'foo' expect(specifier).to eq(:foo) end end describe '#font_version' do it 'should have a font version as a string' do version = fontawesome.font_version expect(version).to be_a(String) end end describe '#legend_path' do it 'should have a valid path to a yml file for legend' do path = fontawesome.legend_path extname = File.extname(path) expect(extname).to eq('.yml') end end describe '#load_fonts' do it 'should return a FontData object' do ret_val = fontawesome.load_fonts(pdf) expect(ret_val).to be_a(Prawn::Icon::FontData) end end describe '#path' do it 'should have a valid path to a TTF file' do path = fontawesome.path extname = File.extname(path) expect(extname).to eq('.ttf') end end describe '#specifier' do it 'should retrieve the string specifier from the yaml legend file' do specifier = fontawesome.specifier expect(specifier).to eq('far') end end describe '#unicode' do it 'should provide a valid UTF-8 encoded string for a valid key' do unicode = fontawesome.unicode('address-book') valid = unicode.force_encoding('UTF-8').valid_encoding? expect(valid).to be true end it 'should raise an error if unable to match a key' do expect { fontawesome.unicode('an invalid sequence') }.to raise_error( Prawn::Icon::Errors::IconNotFound ) end end describe '#keys' do it 'should return a non-empty array of strings' do keys = fontawesome.keys expect(keys).not_to be_empty expect(keys.first).to be_a(String) end it 'should not contain the version as a key' do keys = fontawesome.keys expect(keys.include?('__font_version__')).to be false end end describe '#yaml' do it 'should return a hash with the specifier as the first key' do yaml = fontawesome.yaml key = yaml.keys.first mapping = yaml['far'] inner_key = mapping.keys.last inner_value = mapping.values.last proc = Proc.new { inner_value.force_encoding('UTF-8').valid_encoding? } expect(yaml).to be_a(Hash) expect(key).to eq('far') expect(inner_key).to be_a(String) expect(inner_value).to be_a(String) expect(proc.call).to be true end end end ruby-prawn-icon-2.5.0/spec/unit/icon_spec.rb000066400000000000000000000053721354577744400210050ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'spec_helper' describe Prawn::Icon do let(:errors) { described_class::Errors } let(:pdf) { create_pdf } describe '#initialize' do context 'valid icon family specifier' do it 'should be capable of creating icon instances' do icon = Prawn::Icon.new 'far-address-book', pdf expect(icon.unicode).to eq('') end it 'should raise an error if icon key is not found' do expect { Prawn::Icon.new('far-__INVALID__', pdf) }.to raise_error( errors::IconNotFound ) end end context 'invalid icon specifier' do it 'should raise an error' do expect { pdf.icon('__INVALID__ some text') }.to raise_error( Prawn::Errors::UnknownFont ) end end context 'without a pdf object' do it 'should raise an ArgumentError' do expect { Prawn::Icon.new('far-address-book') }.to raise_error( ArgumentError ) end end end describe '#format_hash' do it 'should add :font and :content keys' do icon = Prawn::Icon.new 'far-address-book', pdf hash = icon.format_hash expect(hash[:font]).to eq('far') expect(hash[:content]).to eq('') end it 'should rename key :color to :text_color' do icon = Prawn::Icon.new 'far-address-book', pdf, color: '0099ff' hash = icon.format_hash expect(hash[:color]).to be_nil expect(hash[:text_color]).to eq('0099ff') end end describe '#render' do it 'should render an icon to the page' do pdf.icon('far-address-book').render text = PDF::Inspector::Text.analyze(pdf.render) expect(text.font_settings.first[:name]).to match(/FontAwesome/) end end describe '#set' do context 'with dashes in key' do it 'should return the set as a symbol from key' do set = Prawn::Icon.new('far-address-book', pdf).set expect(set).to eq(:far) end end context 'without dashes in key' do it 'raise an error about invalid keys' do expect { Prawn::Icon.new('some invalid key', pdf) }.to raise_error( Prawn::Errors::UnknownFont ) end end end describe '#unicode' do context 'valid icon key' do it 'should return a unicode character' do icon = Prawn::Icon.new 'far-address-book', pdf expect(valid_unicode?(icon.unicode)).to be true end end context 'invalid icon key' do it 'should raise IconNotFound' do expect { Prawn::Icon.new('far-__INVALID__', pdf) }.to raise_error( errors::IconNotFound ) end end end end ruby-prawn-icon-2.5.0/spec/unit/parser_spec.rb000066400000000000000000000150561354577744400213510ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'spec_helper' describe Prawn::Icon::Parser do let(:pdf) { create_pdf } describe '::format' do it 'should return a raw prawn-formatted string on valid input' do string = 'far-address-book' formatted = Prawn::Icon::Parser.format(pdf, string) match = '' expect(formatted).to eq(match) end it 'should return unchanged if no icon tags are found' do string = <<-EOS test Here's some sample text. more text EOS formatted = Prawn::Icon::Parser.format(pdf, string) expect(formatted).to eq(string) end it 'should return the empty string if given the empty string' do string = '' formatted = Prawn::Icon::Parser.format(pdf, string) expect(formatted).to be_empty end it 'should raise an error when an icon key is invalid' do string = 'an invalid key' expect { Prawn::Icon::Parser.format(pdf, string) }.to raise_error( Prawn::Errors::UnknownFont ) end it 'should raise an error when an icon is not found for valid set' do string = 'far-__INVALID__' expect { Prawn::Icon::Parser.format(pdf, string) }.to raise_error( Prawn::Icon::Errors::IconNotFound ) end end describe '::config_from_tokens' do it 'should handle attrs with double quotes' do string = 'far-address-book' tokens = tokenize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) inner = config.first expect(inner[:size]).to eq(20.0) end it 'should handle attrs with single quotes' do string = 'far-address-book' tokens = tokenize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) inner = config.first expect(inner[:size]).to eq(20.0) end it 'should handle both single/double quotes in same string' do string = 'far-address-book' tokens = tokenize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) inner = config.first expect(inner[:size]).to eq(20.0) expect(inner[:color]).to eq('0099FF') end it 'should return an array containing only an empty hash' do string = 'far-address-book' tokens = tokenize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) inner = config.first expect(config.size).to eq(1) expect(inner).to be_empty end it 'should return an array containing a single hash of attrs' do string = 'far-address-book' tokens = tokenize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) inner = config.first expect(config.size).to eq(1) expect(inner[:size]).to eq(12.0) expect(inner[:color]).to eq('CCCCCC') end it 'should return an array containing as many hashes as icons' do string = <<-EOS far-address-book far-address-book far-address-book EOS tokens = tokenize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) expect(config.size).to eq(3) end end describe '::keys_to_unicode' do it 'should return an empty array for empty input' do string = '' config = [] content = contentize_string(string) icons = Prawn::Icon::Parser.keys_to_unicode(pdf, content, config) expect(icons).to be_empty end it 'should return an array with unicode content' do string = 'far-address-book' tokens = tokenize_string(string) content = contentize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) icons = Prawn::Icon::Parser.keys_to_unicode(pdf, content, config) icon = icons.first[:content] expect(valid_unicode?(icon)).to be true end it 'should return a single array containing attr hash of defaults' do # Hash must contain :set and :content by default string = 'far-address-book' tokens = tokenize_string(string) content = contentize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) icons = Prawn::Icon::Parser.keys_to_unicode(pdf, content, config) icon = icons.first expect(icon[:set]).to eq(:far) expect(icon[:content]).not_to be_empty end it 'should handle strings with multiple icons/attrs combinations' do string = <<-EOS far-address-book some filler text far-address-book far-address-book EOS tokens = tokenize_string(string) content = contentize_string(string) config = Prawn::Icon::Parser.config_from_tokens(tokens) icons = Prawn::Icon::Parser.keys_to_unicode(pdf, content, config) first = icons.first second = icons[1] third = icons[2] expect(icons.size).to eq(3) expect(first[:size]).to eq(20.0) expect(second[:size]).to be_nil expect(third[:size]).to eq(8.0) expect(third[:color]).to eq('0099FF') end end describe '::icon_tags' do let(:tags) { Prawn::Icon::Parser.icon_tags(icons) } context 'with color attribute' do let(:icons) do [ { set: :far, color: 'CCCCCC', content: '' } ] end it 'should return valid input as prawn formatted text tags wrapping color tags' do match = '' expect(tags).to eq([match]) end end context 'without the color attribute' do let(:icons) do [ { set: :far, content: '' } ] end it 'should return valid input as prawn formatted text tags without color' do match = '' expect(tags).to eq([match]) end end context 'with multiple icon fonts' do let(:icons) do [ { set: :far, content: '' }, { set: :fi, content: '\uf001' } ] end it 'should be capable of handling multiple icon fonts' do match1 = '' match2 = '\uf001' expect(tags).to eq([match1, match2]) end end end end ruby-prawn-icon-2.5.0/tool/000077500000000000000000000000001354577744400155535ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/tool/fontawesome.rb000066400000000000000000000011511354577744400204250ustar00rootroot00000000000000# encoding: utf-8 # # tool/fontawesome.rb: Convert Fontawesome SCSS variables to YAML legend. # # Copyright September 2017, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require_relative 'fontawesome/converter' puts 'Please enter the path to the icons.yml metadata file ' \ '(i.e. fontawesome-free/advanced-options/icons.yml):' path = File.expand_path(gets.chomp) output = File.expand_path('data/fonts') puts 'Please enter the font version:' version = gets.chomp Fontawesome::Converter.new( version: version, output: output, path: path ) ruby-prawn-icon-2.5.0/tool/fontawesome/000077500000000000000000000000001354577744400201025ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/tool/fontawesome/converter.rb000066400000000000000000000026601354577744400224420ustar00rootroot00000000000000# encoding: utf-8 # # tool/fontawesome/converter.rb: Convert FontAweomse metadata to YAML. # # Copyright March 2018, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'yaml' require 'fileutils' module Fontawesome class Converter attr_accessor :path, :output, :data, :version, :legends def initialize(opts = {}) self.version = opts.fetch(:version) self.path = opts.fetch(:path) self.data = YAML.load_file(path) self.output = opts.fetch(:output) self.legends = { 'fab' => { '__font_version__' => version }, 'far' => { '__font_version__' => version }, 'fas' => { '__font_version__' => version } } parse end private def parse prepare_legends write_legends end def prepare_legends data.each do |key, value| styles = value['styles'].map { |s| "fa#{s[0]}" } unicode = [value['unicode'].hex].pack('U') styles.each do |style| legends[style][key] = unicode end end end def write_legends legends.each do |key, value| directory = File.join(output, key) FileUtils.mkdir_p(directory) path = File.join(directory, "#{key}.yml") File.write(path, { key => value }.to_yaml) puts "Wrote: #{path}" end end end end ruby-prawn-icon-2.5.0/tool/paymentfont.rb000066400000000000000000000012101354577744400204360ustar00rootroot00000000000000# encoding: utf-8 # # tool/fontawesome.rb: Convert PaymentFont SCSS variables to YAML legend. # # Copyright September 2017, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require_relative 'scss/parser' PREFIX = /pf-var-(?.+):\s*"\\(?.*)";/ VERSION = /pf-version:\s*"(?.*)"/ puts 'Please enter in the path to the _variables.scss file:' path = File.expand_path(gets.chomp) puts 'Enter the output file path:' output = File.expand_path(gets.chomp) SCSS::Parser.new( prefix: PREFIX, version: VERSION, specifier: 'pf', path: path, output: output ) ruby-prawn-icon-2.5.0/tool/scss/000077500000000000000000000000001354577744400165265ustar00rootroot00000000000000ruby-prawn-icon-2.5.0/tool/scss/parser.rb000066400000000000000000000020221354577744400203430ustar00rootroot00000000000000# encoding: utf-8 # # tool/scss/parser.rb: Convert SCSS variables to YAML legend. # # Copyright September 2017, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'yaml' module SCSS class Parser attr_accessor :path, :output, :data, :prefix, :version, :specifier def initialize(opts = {}) self.specifier = opts.fetch(:specifier) self.prefix = opts.fetch(:prefix) self.version = opts.fetch(:version) self.path = opts.fetch(:path) self.data = File.read(path) self.output = opts.fetch(:output) parse end private def parse matches = data.scan(prefix) initial = { specifier => { '__font_version__' => data.scan(version).flatten.first } } yaml = matches.each_with_object(initial) do |match, hash| key, value = match hash[specifier][key] = [value.hex].pack('U') hash end File.write(output, yaml.to_yaml) end end end