pax_global_header00006660000000000000000000000064143043067230014514gustar00rootroot0000000000000052 comment=e76a2934237f97121fe93223cf5c71499624a594 ruby-prawn-icon-3.1.0/000077500000000000000000000000001430430672300145515ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/.github/000077500000000000000000000000001430430672300161115ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/.github/workflows/000077500000000000000000000000001430430672300201465ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/.github/workflows/ci.yml000066400000000000000000000017331430430672300212700ustar00rootroot00000000000000name: CI on: push: branches: - master pull_request: branches: - master jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - '2.7' - '3.1' gemfile: - gemfiles/prawn-1.3.0.gemfile - gemfiles/prawn-2.4.0.gemfile - gemfiles/prawn-master.gemfile exclude: - ruby: '3.1' gemfile: gemfiles/prawn-1.3.0.gemfile - ruby: '3.1' gemfile: gemfiles/prawn-2.4.0.gemfile steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test with Rake env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} run: | gem install bundler echo 'bundle install --gemfile=${{ matrix.gemfile }}' bundle install --jobs 4 --retry 3 bundle exec rake ruby-prawn-icon-3.1.0/.gitignore000066400000000000000000000001141430430672300165350ustar00rootroot00000000000000.DS_Store Gemfile.lock /doc .yardoc/ coverage/ vendor/bundle .bundle /*.pdf ruby-prawn-icon-3.1.0/.rubocop.yml000066400000000000000000000007621430430672300170300ustar00rootroot00000000000000AllCops: DisplayCopNames: true Exclude: - 'examples/**/*' - 'spec/**/*' - 'Rakefile' NewCops: enable SuggestExtensions: false Gemspec/RequiredRubyVersion: Enabled: false Metrics/MethodLength: Max: 25 Style/SignalException: EnforcedStyle: only_raise Style/Documentation: Enabled: false Style/RegexpLiteral: Enabled: false Style/SafeNavigation: Exclude: - lib/prawn/icon/interface.rb Metrics/AbcSize: Max: 20 Naming/FileName: Exclude: - gemfiles/*.gemfile ruby-prawn-icon-3.1.0/.yardopts000066400000000000000000000001721430430672300164170ustar00rootroot00000000000000--charset UTF-8 --main README.md --title 'Prawn/Icon Documentation' --no-private - COPYING LICENSE README.md CHANGELOG.md ruby-prawn-icon-3.1.0/CHANGELOG.md000066400000000000000000000232671430430672300163740ustar00rootroot00000000000000# 3.1.0 - September 1, 2022 * Update our CI matrix to include recent versions of Prawn and Ruby! Thanks @petergoldstein! (#55) * Resolve a few code smells that were flagged by Rubocop. * [Material Design Icons](https://materialdesignicons.com) are now supported! Currently version `7.0.96` is included. Thanks @maneex! [https://github.com/jessedoyle/prawn-icon/pull/59](Pull Request). * Memoize calls to `Prawn::Icon::FontData#path` to improve performance. #### Material Design Icons All Material Design Icons use the font prefix of `mdi`. That means that you're able to reference an icon as follows: ```ruby require 'prawn/icon' Prawn::Document.generate('icons.pdf') do |pdf| pdf.icon 'mdi-beer', size: 60 end ``` # 3.0.0 - November 10, 2020 * **breaking change** - Fix incorrect layout and line-wrapping logic for inline-formatted icons. Please see [Inline Format Changes](#inline-format-changes) for more details. * Add a `#formatted_icon_box` method to retain the previous inline icon behaviour. * Allow `#formatted_icon_box` to accept absolute positioning parameters (`x`, `y`, and `at`). Thanks @navinspm! * Update fontawesome from version `5.11.2` to `5.15.1`. * See FontAwesome's [upgrade guide](https://github.com/FortAwesome/Font-Awesome/blob/57005cea6da7d1c67f3466974aecd25485f60452/UPGRADING.md) for more details. * Introduce a configuration mechanism so that the font directory can be customized as follows: ```ruby Prawn::Icon.configure do |config| config.font_directory = '/path/to/fonts' end ``` * Deprecate the global variables of `Prawn::Icon::Base::FONTDIR` and `Prawn::Icon::Compatibility::SHIMS`. Use `Prawn::Icon.configuration.font_directory` and `Prawn::Icon::Compatibility.shims` instead. * Use `Gem::Specification#full_gem_path` to get the root path of the gem directory to resolve https://github.com/jessedoyle/prawn-icon/issues/45. #### Inline Format Changes As noted in https://github.com/jessedoyle/prawn-icon/issues/49, `Prawn::Icon` did not correctly respect page boundaries for inline-formatted icons. The fix for the issue requires `Prawn::Icon` to use the inline layout and formatting logic implemented in `Prawn`. This change has ramifications to the `#icon` and `#inline_icon` method return values, but most applications should not require changes. Changes are listed below: * `#icon` - returns `nil` with the `inline_format: true` parameter. * `#inline_icon` - returns `nil` (instead of a `Prawn::Text::Formatted::Box` instance). You can call `#formatted_icon_box` to retain the previous inline icon functionality. # 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-3.1.0/COPYING000066400000000000000000000002211430430672300155770ustar00rootroot00000000000000Prawn/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-3.1.0/GPLv2000066400000000000000000000432541430430672300153760ustar00rootroot00000000000000 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-3.1.0/GPLv3000066400000000000000000001045121430430672300153720ustar00rootroot00000000000000 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-3.1.0/Gemfile000066400000000000000000000001061430430672300160410ustar00rootroot00000000000000# frozen_string_literal: true source 'https://rubygems.org' gemspec ruby-prawn-icon-3.1.0/LICENSE000066400000000000000000000045671430430672300155720ustar00rootroot00000000000000Prawn/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-3.1.0/README.md000066400000000000000000000105261430430672300160340ustar00rootroot00000000000000# 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/) * Material Design Icons (https://materialdesignicons.com/) * 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`). * `mdi` - [Material Design Icons](https://materialdesignicons.com/) (eg. `mdi-beer`), * `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. ## Configuration You can optionally configure Prawn::Icon to use an alternate data directory for font files. ```ruby Prawn::Icon.configure do |config| config.font_directory = '/path/to/my/fonts' end ``` ## 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-3.1.0/Rakefile000066400000000000000000000013771430430672300162260ustar00rootroot00000000000000# 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-3.1.0/data/000077500000000000000000000000001430430672300154625ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/000077500000000000000000000000001430430672300166135ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/DejaVuSans.ttf000066400000000000000000022403641430430672300213500ustar00rootroot000000000000000FFTML <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-3.1.0/data/fonts/fa4/000077500000000000000000000000001430430672300172655ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/fa4/shims.yml000066400000000000000000000321351430430672300211370ustar00rootroot00000000000000--- 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-3.1.0/data/fonts/fab/000077500000000000000000000000001430430672300173435ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/fab/LICENSE000066400000000000000000000030141430430672300203460ustar00rootroot00000000000000Font 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-3.1.0/data/fonts/fab/fa-brands.ttf000066400000000000000000004125041430430672300217250ustar00rootroot00000000000000 PFFTM,^(GDEF*OS/21V:X`cmap!qgaspglyfxheadr6hhea6$hmtxqC0locaqb*maxp5O8 name postZGjYkK`ࡐ _< ۠A۠EL'@LfGLfPfEd.T:  @ @@  @@@ p@@ @@@ @ @@@@@@.@ @@@@ @@ @   @ @Lh@@P  @ @@@@@ @@ @@ @E@ @@@ @  @@00IRW6L^knp~\u} !#1MRWY?B1]{=BIRUw6;Zgkpsy 17:K^`mp|\hx#%MRWY ?B0]z4?QF~}qmjiOKI=,+*) k ` ^ ] [ Y W V U S R Q P N L K J G F D C B A > = 9 6 5 2 1 0 /   q V T n C '      ( !244.|  d 2 N  60j*J4r2"`*vTR&RZ:xp  Z !$!!"##V#$b$%&j'':''(H(()h)**,&,./001122344d45:6X677f778>8^:;B;.>>?H@d@AAB&BvC>CCD D:DE$EEFFG G2GH HJHlHHIBIJJKKLLMDMN"NtOOP8PQUxUVWTWX:YYHYZ[J[\.]]h]^__`_`l`aTab*bhbbcd~ddg"ghhNhhi i~ijfjkll,llm*ooRpp:pq q*qVqtuvvvwTwx(z{n{||} }T~~(ʀt"Jnd܅tRh&d$(NЍ&bJtБxd`ԘVx2:FОȠ\z4tx6f:֨Nb\ެ$fȮ4bLbPڵv<ܸtl8t8`Ř^BȆȲ.TΦFԼՖ(݄ކ>v8h*8 hb.|2>rV #"&=6505656567676767>167#"3>&'6&'&#&'"'&'"'&'�&1�#"#"#"'454767>79305&'_Ze     ,9(% T E.8B Wse (" /   * .?B  !Da($&$ ' )5=IRV2"&4537+5323+532>54&+532#5#5#535#535#;'#373'2#!2654&+3#i)) OI9_  _ "m" 7 c>^5 y pvymK))荍.D  SE[  [[[.@6mtUgeeej >%3#0#&'&#"##"&4632'654#/&""32?32545'3&)\\7>7>7>7 F1GE1YXF1 3 /# "%!<H1FZ9f1F&  4H)  %/#'73?37'#7'5;;mWW.**W223223ml&z,$#"&546301%!!%&'�#"3273  @w8  (  @K N   #+;T62"&47"'&'&476762264&"6264&"72#!"&546364'.'&"27>,,   D00D0  nO0+\+0+\+0,,H    0D00Dd  `\+0+\+00%#".?'&>32#"/&4?632s \\ q  \t$}{$$${$-9dj32'6123%>767676761232126'>'676767&4>767.&/7>'.767&'7~#c% /& 5  "" 7  /2  %^ XJ4##0   B!+)  99&    , -$ ! @z #'%53'3#5353353353353%53!53'53}}}}}}}}}}}}}IIHIIeIIIIIIIIeIIIIeII&7!67"'.5&736.'#>32>W\Nb'4Dz 1X< zc@h4-6 ib69!.+ &5!];64?A+IVgs|73#".'5&547>3032&#"1"32767#$#5##"'&505463254'&#"'6365&#"32'0+#53212654'&+321%3#7'33jc* 3(  9v  "  S'?  ''O4% 1  !   ;O    g   LX  A@x\ 9EQ^go%#0#'#"#'#"/"#"/"#"/""/&##"/&##"/&##"5057&'"#"5457&'#"'&54?4/&54?4/&54?4/&4?65'&54?65'&54?67'&5476;67'45432367'54326?6322?6322?6237632376327232072327267#"&'.5&+32+723232?6324&#"32>'4.'#"26'35#&264&#"3254&+6=4;654/&54?.'#"/32&264&+"264&#"         O0-  %*)$   X5 , ;?#D(>+'               ##6  ## "  x  ( x   ($0 /    %%#"'"&4632&#"3265313C7___D ,",X ,%'D___Z,",] 4 %!533=#5@}}}}?`/S%#!"'&5467&54632>321"13%2+"5057>?27454'&#'&'&?632 U7'(O1#?*'Q":"'32    '8 ( -95""`":"  1!67#&'!".'&546Y'/7V),2+++46%3 ,!6S?H "<$V4D%2#"/041742'054;20+"01+"5417'054;221+"541743nBoCCCmBm1#"/72?6="'&'56?657'&"%62 w! w!4   _E8WP _ D8WP 7%7'3'3+tvfgt 9uQ%'&'.'&'.'.&'.>1'&76'.5&547> /3       *"3;X  G 5 c @A  L       &9= !D> -:D %,!1:%2+5'2+5%2#!"&54634&#!"3!262+51:b:!00!!00!]%%%%}:bba0!!00!!0%%%%(b "EMU]hs7"/#1"/&=4?622#"/&=43254323327676"&4622"&4"&4622#"&4".5462"&54>3262#"&42"&46tdKu  ee JJ   _ `  )   ?      DV s:  +E  :: ++,   G    F  $  E  ;   +92"&47'&=7577.#"7'&?6>54/ƍƍj g -V07_I (!Y} ƍ !4Z%#(3+#Y  h !1:LP7#'#'3733732#"&4254#"#".5463253#'"3254#5##"&=332=33#%&-&#$;#"?   "   "" &&luuttvv,#$;E'('%>f('(fLF#AW%92#!"&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'"&462#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! 7# D D! _ ֓:)#".=#"=47>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"@@*$"&462"&462?654#"&#"'&#"!.0 1:AA:1 0?N@NS UU S"xIIx  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!+3#7'362#"&43#]^'j`80"  "|h]h3Z"  "0%#"&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'!#5#5!373&D'}oMatWDMYnnnng[[J@@!0?O7#"&'&547632&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 @y *5=E1#"''#"&547'36323264&"7467&#"264&"$2"&4$2"&4/U;9)..)8** +?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.   {   .6FRZl~%7&2"&43237654'&#"'32?654'&#"&"2=32545'&#"264/&;24+654'&#"#32?654/&#"232454#"32754"27654/&#"32>4/&"'7%654/"#"32724+"3mGTΑΑq9S>  B `IC>  dttG GmΑS)  Q )  otGH ",7'>32'&4>32"&%'76&'7.547M#f7C:@!)#&#11F1;!%#"&'4&5&7>767>&67>"06764'&'.0#"0#9>3676;20230300210022110010101BsC\ -%\*=     $` #a04     CsBuYC9%,(9"b:1 #!)V$"      %"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  @\#"'&547654'&#">320#"&'&767632.%#"'&'&76732767632  8 !.L/SYI{  Iy)/=*$$ )- c #%#5(fF$! :-) 6 0#2,#UoCoNA<:+ ##  1GAQ3:IO 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    .   ,'`   < <    )632654'67"&4632667&#"o $&3)/Ih- ;zzzV6/B\d%(IhJV6?#hIC2 =TVzzz7^hIRGMSYc?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"&426=4'#3#".546327&#"%35#5##33ΑΑ5BuF) - !"13II##$$$$ΑD5 +  .! 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  >Wp#"'&'467632357>7>'0.7>./.67>/7#"'&547674'&547632aAC 4  ~]        !  4 CA `?[e@ $Aa1J% >(' 4   , #%9* ) %J1b@$ @e[?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   d1276a,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= @ n/<e7#*&'#0#&7&6256&"#&47>323226765&#&/&5&1430367636763:'#/'"'&=47>'.'.5&632#.#"#"#"&'&63216766&&7>&7  &),(V 2 $!  !% 4  !! !  #  '      3CY?~s I4&    "  e          "  #h&)?:T0   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**/%$* RV\qw|"01*#0&1"1'&547450346257622031754506105350>176201310%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  @ @@@ @@ `` ```` =C)Hw{7537#54&#"#546253+"&53;26'5#5462#54&#"32653"&%"#"&/73275&'&'&'&'45>32'&53%"&/767&'=>2'275&"5&"2'53#'#53h!4D10E*&55L6'' '6&     ) F"   D"!)%%?41DD1*5&&55&&&&&b       qDD5       *  R  Z^)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>F? %Md$2#"&4&2#"&462#"&54>7#"''&5476'&5476'&5476632264&"676?30  Z      )Rr$$LO 8 33 8 NM#%rR)`5+-        =)..)$6' ;,5AA5,; '6X}XX>6*,8  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-W7>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\QKTH7 090 iXLBDJ1%;(KO .#8%KV$#327#".547>772#".546)3 &R$Y; :F${% %rYW@76700137654'&'&723230#"#"'4'"'&'&767621450454&'&5<547676362<=4#"&'"#"76760"&747676'4'&'&""#"1"541456767632'00?465632132'"'&5<:232767>76'&'&5&3232=B ((TO+9%&)'QA   "  +!  ,  #        ##$   { !  :I )**  ( 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]]B%R:.):  ˏf3. "A0]]:)-: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  )!$*&&Pb$2"&47'.7654'"1'&7'&'54>767'.?4763226?6'67'&3&545'7654/&#"32?32?322"&46  $  .<,.      (  7  R"# e     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##Zf7'&'&7>'&'47>76327'&5<5&'&"#&=76767676'&76760'.67276 3$# (f42,E%?  d(\N;  ,:m 4!Q!e"( !!%$ ,y. " s7%G. +'  1+1,i *4   *%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--::"++,::- CIOU[ag"&462"264'&/'6373#'#5&''7&'#5367'76?#&'%#63&%3'6&'756_ΑΑ8-%.8.%-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                      : $%                     &&,               gm66&67676327676765&'7>767677676'4&4567654'&'&'&'5>6767`I\*,(!B. %$6!  # */1!- "0!(M;7< 3 93 -!"       '%!  -*6 $#.($/<4-I#"%>,14^0 "*2'62777''''777&547'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 '?  #Jo7"&46323.4>?3:1>'.0#&7"#".54632#"#7>.'.#"56&5463212#"'&5./>7>5<13L  H-u$=,# [  '6   0   G+pH   >-$ [ (3N$ \ )3}  '4wG    ?.$ [ '21   H,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&&6SuoPmm&'*#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$o(2Vl%'#"'&54&5&7461/>36767'767'36&'&5476736'>6762#'&3&476726#&5�&'&#327"/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     mq 1"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   x1I\66'6%'#"&/4547'&54>6767667>.#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 3=?'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;201#"1#;2#"1#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 7!!"'%32#7;; )X=tGgf 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 #)/5;AHMS2+"&=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"&46;2"2"&4U2G22##22##22##22FF22F2#22G22F22G22G22F22F'/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&"O>`>Oww()+3+CjffjCTwwT## %%}bku7&'367#".#.#"#.'&676&'&32>36#"&'47>'&'&'&767>6&'0#"72##"&463224"[& "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#52#4&#4++%@>X+?,pPa+*@@%W>,?kPp+ax#*"#7&62326514.'0.'&&'&'&'467:62>7>5454>2#+"&772'.y  mO "       6    A    (H (<o 1   +. (    6wA )Gy632#"&5"&5#".5"&5#"&=4632327277 '.67672"3>57:>4&'."&#".''"15>7H iO1))1!#C $  ;<  $ C   #NN#      G,  8    8}G[M {f") % %  )"  /) Dg.Jim7#6236#"'&54626'&=4%''.'.67&>3263264'&562506350'&#"'&1327"11102>32&76=4.74+";257&#"32765'4##"53250<.254'&54323'06150'&#"#"'41"374+47632572'&#";"#"01376767325&#"32767&54+";2=476256750/#"432125656#&327617&#"032765'4##"532505<.2# e@ &6 #)-("#:  8"=%"/ #E8"     $  8  %"    P       6*   / 6 %$  BT !#19:>2 1#  #?D  =    " O2 2   : 4 6   8 5'( ` 97#"&46;2+";2+"&46;26&67326=4.+64'32#r);;)r);;) H+A  v!.$;R;"(;R;"x3 x ./!%2"&4%>'4&*0.'&74676&676/&76#".76&"767>74>5>56&'>36ΑΑ~      1        '!     Α    *       !144  '7'$   #  &DJPc%#"&'*'#"1.7&'&632>7>32>76.#"#623632&46646&67>76"& >> ?%  BY0N|t&5P,@n  "<2 H [ $#.( 3@r-*1 2-I'` ).S>%M; * - !! !! )   (%0V'&6727632#"'"'.767".'&63:%&5463237632#0#"'&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#72>54&#"2654.+')+#/`ΑΑ    1=4$Q,! Α    >*. <m#"+"#"&'&'.54=454>7676767>7232;23276'&'656&'&'&'.''&'7367>       F;: LS, /9 N?P+'BQA$      (7v"#N$/S<#!- c0 >#"  S2#"&464'4'&'&5&+11#"+"#"'&'&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.15.1Font Awesome 5 Brands Regular-5.15.1Font Awesome 5 Brands RegularFont Awesome 5 Brands Regular331.521 (Font Awesome version: 5.15.1)331.521 (Font Awesome version: 5.15.1)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{|}~firefox-browserideal microblogpied-piper-squareunity dailymotioninstagram-squaremixershopifydeezer edge-legacy google-payrusttiktokunsplash cloudflareguildedhiveinnosoftinstalodoctopus-deployperbyte unchartedwatchman-monitoringwodutwitter-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 reacteurope artstation atlassiancanadian-maple-leafcentos confluencedhldiasporafedexfedorafigmaintercominvisionjiramendeley raspberry-piredhatsketch sourcetreesuseubuntuupsuspsyarnairbnb battle-net bootstrapbuffer chromecastevernoteitch-io salesforce speaker-decksymfonywazeyammergit-alt stackpath cotton-bureau buy-n-largemdborcidswiftumbraco ۠A۠Eruby-prawn-icon-3.1.0/data/fonts/fab/fab.yml000066400000000000000000000210211430430672300206120ustar00rootroot00000000000000--- fab: __font_version__: 5.15.1 500px: "" accessible-icon: "" accusoft: "" acquisitions-incorporated: "" adn: "" 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: "" cloudflare: "" 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: "" dailymotion: "" dashcube: "" deezer: "" delicious: "" deploydog: "" deskpro: "" dev: "" deviantart: "" dhl: "" diaspora: "" digg: "" digital-ocean: "" discord: "" discourse: "" dochub: "" docker: "" draft2digital: "" dribbble: "" dribbble-square: "" dropbox: "" drupal: "" dyalog: "" earlybirds: "" ebay: "" edge: "" edge-legacy: "" elementor: "" ello: "" ember: "" empire: "" envira: "" erlang: "" ethereum: "" etsy: "" evernote: "" expeditedssl: "" facebook: "" facebook-f: "" facebook-messenger: "" facebook-square: "" fantasy-flight-games: "" fedex: "" fedora: "" figma: "" firefox: "" firefox-browser: "" 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-pay: "" google-play: "" google-plus: "" google-plus-g: "" google-plus-square: "" google-wallet: "" gratipay: "" grav: "" gripfire: "" grunt: "" guilded: "" gulp: "" hacker-news: "" hacker-news-square: "" hackerrank: "" hips: "" hire-a-helper: "" hive: "" hooli: "" hornbill: "" hotjar: "" houzz: "" html5: "" hubspot: "" ideal: "" imdb: "" innosoft: "" instagram: "" instagram-square: "" instalod: "" 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: "" microblog: "" microsoft: "" mix: "" mixcloud: "" mixer: "" mizuni: "" modx: "" monero: "" napster: "" neos: "" nimblr: "" node: "" node-js: "" npm: "" ns8: "" nutritionix: "" octopus-deploy: "" odnoklassniki: "" odnoklassniki-square: "" old-republic: "" opencart: "" openid: "" opera: "" optin-monster: "" orcid: "" osi: "" page4: "" pagelines: "" palfed: "" patreon: "" paypal: "" penny-arcade: "" perbyte: "" periscope: "" phabricator: "" phoenix-framework: "" phoenix-squadron: "" php: "" pied-piper: "" pied-piper-alt: "" pied-piper-hat: "" pied-piper-pp: "" pied-piper-square: "" 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: "" rust: "" safari: "" salesforce: "" sass: "" schlix: "" scribd: "" searchengin: "" sellcast: "" sellsy: "" servicestack: "" shirtsinbulk: "" shopify: "" 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: "" tiktok: "" trade-federation: "" trello: "" tripadvisor: "" tumblr: "" tumblr-square: "" twitch: "" twitter: "" twitter-square: "" typo3: "" uber: "" ubuntu: "" uikit: "" umbraco: "" uncharted: "" uniregistry: "" unity: "" unsplash: "" untappd: "" ups: "" usb: "" usps: "" ussunnah: "" vaadin: "" viacoin: "" viadeo: "" viadeo-square: "" viber: "" vimeo: "" vimeo-square: "" vimeo-v: "" vine: "" vk: "" vnv: "" vuejs: "" watchman-monitoring: "" waze: "" weebly: "" weibo: "" weixin: "" whatsapp: "" whatsapp-square: "" whmcs: "" wikipedia-w: "" windows: "" wix: "" wizards-of-the-coast: "" wodu: "" 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-3.1.0/data/fonts/far/000077500000000000000000000000001430430672300173635ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/far/LICENSE000066400000000000000000000030141430430672300203660ustar00rootroot00000000000000Font 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-3.1.0/data/fonts/far/fa-regular.ttf000066400000000000000000001024041430430672300221300ustar00rootroot00000000000000 PFFTM,]GDEF*OS/2ASX`cmapǠ gaspglyf|7 nheadd6hhea5$hmtxtTlocaeȸ6maxp8 name88"w[postiA}K`朥8_< ۠@۠E@LfGLfPfEd.T: @@@@@@@@`@@@@@@@@@@*"$.>DYnpsu|3DFJNR\e IM[]tz([Vgz"$.>DWnpsu{3DFJMP[d GMT]qy(XVgy|zwZYB81-(}zpf`USC m H  g $   @|n*b H*N`` \ 8 8  4  LB<l6&dJBJj,jBdXfB\ \ !8!~!"T"#<##$X$$%%>&0&&':'p''((V())l)*8*+ +h+,4,,--.P./r001 112Z23z34$4~45 5|56D667L$"/.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?63!2!'5!$"&462"&4627   iNNi 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)q6+"&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  @ '.a+"/&5476'&5467&54>767>3266&&?6&"/././&;267 : E-k=,\('&)+ /+ $ 4  [*k+L *8*V R * 6" Rh  iz"$0  V#^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=? Z5=?:./,!/*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; . . 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.15.1Font Awesome 5 Free Regular-5.15.1Font Awesome 5 Free RegularFont Awesome 5 Free Regular331.521 (Font Awesome version: 5.15.1)331.521 (Font Awesome version: 5.15.1)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 ۠@۠Eruby-prawn-icon-3.1.0/data/fonts/far/far.yml000066400000000000000000000057751430430672300206740ustar00rootroot00000000000000--- far: __font_version__: 5.15.1 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-3.1.0/data/fonts/fas/000077500000000000000000000000001430430672300173645ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/fas/LICENSE000066400000000000000000000030141430430672300203670ustar00rootroot00000000000000Font 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-3.1.0/data/fonts/fas/fa-solid.ttf000066400000000000000000006173601430430672300216160ustar00rootroot00000000000000 PFFTM,]GDEF*OS/23V`X`cmapj4h gaspglyfh-dhead,d6hheaC-$hmtxQ loca8maxpN`8 name!-P+postFa|1.K`O$Ps_< ۠@۠E] @LfGLfPfEd.T: @@ @@ @`@@@@@@@`@@@@@@@@@@@@@@@@@@@@ @ @ @@`@@@@@@@@@`@@@@ @@ @ @@@@  @   @@@ @@@@@@   @@@@`@@@@@@@@@@@@@@@@@ @@@@@h@@@@@@@@@ @@@@ @@@@@@@@@@@ @@@@@@@@@@@@ @ @@@@  @  Av>DN[^n| ".15:>DFKNY^e -69IN]lwz (8[]`b"$46:JLPScmy}AY!AHP^`p  $037=@FJMP[` !38@MQlqy (7X]`b"$369JLPScmy{%$#"!   vutspgfecaVUSNMGDB40/jH0/,)&#  ~ } u q o m k U J I H G E D C B A @ ? > : 8 7 6 5 3 1 . ,       } { t s q g f a ` Z W R N C A ? < 7 2 0 - + " !        v m b a ^ ] T O '    8t HT0D`@ "$$%&H&''X'( )\*+,,-@-.h//01|123@348556<6747p789\:(:|;;;X? ?@ADABCDtEDEFFXFFGGHDHHI,IdIJJ`JKKTKKLpLM`MNOOlOP0PPQRHRRSSTU$UVVWPWXYYZ|Z[[\`\]]^_,ab8btbcd\ee`efXfgdghiDijkhllmmxmno8pTpq qrslst0tuXuvtvw4xyz\{{l||}<}p}}~~\~~48t84@$h 0|X@t `@``p<THPtH8( HX\pL|XtthHx,,4Ȕʼp̤xL|DҤԀ ֜Lـ\,ޘߐtHDTllTPp 8TLT p@L$,X| Px    <  4 |  <  ddd$D$pxX  t!(!#$h%p%%&t')**+(+,-$-.0./x0001d112,2p3334H445H56467,78H89 9`9:,:;h<8<=H=>>?@@`@ApABC0CDEG GHHHIJLK L0LM0MMNODP|Q(QR,RSST(UV(WWXYYZ<[h[\l] ]^L^_``$aabcdcdLdef<gphhi ijk\klxmn4oopPqrsst0tu<uvHwwwxdypyz{||}}~0`dt|,ll(lX H(`04Dl4l$D@ D@Hdx4tX<$@@\`\h<tLd``Ƅ0Ȥ4ɴ 0p͜tϘPDҬԴxlh4hX4\44HD\dD$lxl tT(xl|(P$|l( < L (   p($<D0P d!D!"8#8$X%%'X()+h,,./023L34505678989:;8;<=>t?D?@LA,B<BCtD DEFG$GHI K L(MPMNlPQ R RSTDU<UV WWX4YY|Z\Z\\^<^_|`|`ac(de,fhPijtkl`mPnop@pqs,stvvwpxxy{0|0|~~DH0<hlX@ld$t|XDT4p`L0XHDt`\d<d#>%2+"&4&+"&'#"&=46;6757'&=46546;276/`B^ @  =L=] w" ! n   n ^B ## ` 00`       #-6>FNV%2#!."#"&5463!2%54+"6754+"6254+"54+"354+" 2"&4264&"p >T>2  @q loB//B/C   )77)   Ll YY(lD/B//BAT\%#1"/1#"/"/#0"##"&54?&'"#"&54?454767'&5463267'&54763267'&54763267'&5463267632376327232#"/264&"6264&"#"/#"/#"/#"/#"##"&54?&'#"&54?&547'&546326767'&547632467676767461'&546326767'&46263023763272312264&"                    i                                                  "M  6                         "/#"/"#"/"/#*##"'&54?&'#"&54?454767'&5463267'&5463267'&54763267'&5463267632376327632264&"6264&"        !              ((vY                        ((l -%!32;5!#!"&2!546;#"3!264&+7@%%n@ @   1 `  *@@   @ @@$N"&=46;546;232++"&=#!"&=46;76;2+";7632 @ @ @ @ @ X" 7/ *  N xx  @ @ @ @@ @  d ` &   X`t"/.54?62+"/&546325462;2=462;2=462;2=462#'64/&"2?11"/&54?62k111;& }  &x    @11111111       H   & 0    P1111 !W$"&462'7>&#".=4627>32?>32?>20"%2+";2+";2+"'654&'54>?63232+"3"&4622"&4((  < '/ ," "J/<    _  !$'l /  E((((B  0 )q  2  z  klQ32      ,0#!   ((7L%7654&#"#"'&54?63276;76;232+&'%3#"/#"/#"&=46g !Ku TLX V 7p b~  [  [ EQ 7   R   )4c3+7"264&5#"/#"/%3#".5:64&#"%#"'&54?63276;76;2&/7654&#"H @0  I  [`@ ) Ku TLX V 7 @8 @  R   [ EQ 7v '/QY$"&4622"&4&2"&42"&462"&4&2"&4'+#";+#5&546;2&264&"rb223 `  `&@@pP*#@45~FZv6;  & :UPp'%!)19LT%#"'&54?6326;2'654&#""&462"&462;+#5&547#"2"&4ƴ'1;*#@45  jN `&@@? +!'j  N& :U.( 767#5&1!'>;2&264&"";#";+5!ܠCg>B4Y 0   !ñ=7E/)GR!   0)y$2"&4&2"&4++!5&546;2'264&+"&?64&"&=4&"/&"+";22?626=46264/&63   7  = &@@pPJ4Y5    (  (       (  (    I  Z @&@9VPp/)  (       (  (       (@+3A%&/#!"&=&/&547%62546;2&"2642654&+"3;   e @ 4&&4&0 8(@(8    Z4 &4&&4 (88( 3NR%#"&=#"/&54?62546;2#"54&+"32#!"&=46;54>;2#5#   X   ; @ %  0  N' `4% @       9&"546;2327&54767>32&#"#";6"/&"&=4&"&4?6&+"&46;26/&4626=462?62;2+"&264&"264&"/&'32654/3264&+764&#"54632X    3"&=#"/&4?6235462z4&&4&@2 @  &@ H4&&4& &  @ 2H H  HH  @&4&&4& 0`   `&  D&4&&4F&`   `0 & D D$$D D$$@4547+"&54?#+"&5457#"'&54?632'&546;232+ EB B 1g+( :% B irBB9,u : l '2';R2+"&5457>354&+54&+"#";;2>=3267"/##546;232  %$(((( +C @ C  &!(((( + `  &=2+"&54574>32654'&""/##546;232$&& L#4 4  +C @ C "&% "EF  B + `  !u}2"&4%"'.546?632264&+"&?64&"&=4&"/&"+";22?626=4632>54/&63"2"&4  #-3/*M@' n    (  (       (  ( [    u 5bLA/ C_GP  (       (  (      (   P75!#!"&%2#!"&=46;5#"&=46;235467632+"&=4&"3546;2+ 8((8   `@ P @+" (8   @ P @ (88       0$88(   0    (08D2#!"&=46;#";2654&'6"&462&"&4626"&46232+"&46(88((88(Y(88((8#F4&&4&((&&&&8((88((8%8P88(2 &4&&4z((&4&&4& )S^g'.7>75#"&=46;2+762#67>54#";27543230;2=4754&#"32&2#"="|WVyeI    8, 1 88   R 879E 3>WzULp "     " $  =< ' k ?j?tt,:#"&7#"'&54?632763!2#!3535#!"&53XJ ::#  V )5@@ @DD"-" )c2I  ` F73!"&=327'#"'.7#"'&54?632763!2#"'#"'532767za  +$"  =$-**  @ Y(mh(Z!!pP<D47#!".547>5#"'&54?63263!&5462&264&"@< :6# 28P8+!!6 &   ^*-e>I'3=PppPEh{%6%%6BM[7#"&547#"&=46;2$"&462#"'&54?632>32467#!"&5%2+.'63% B &@4&&4&k>+.B 7!<,& B( % !* & &4&&4g*8B.*+A,B& #:W_g%2+"#"/&"&=4&#"&54?6&+"&46;26/&546326=462?6323264&"264&"  & GG &  & GG &((vG &  & GG &  & G,((T$Yb767#".=4&.6?6&+"&463'&?6626=462?62;2+"%4654&#"r   G  &      ]GG &     &G  I &  &G ~ OW%2+""/&"&=4&"&4?6&+"&46;26/&4626=462?623264&"'""/&"&=4&"&4?6&+"&46;26/&4626=462?62;2#&264&"264&"p    (  (       (  (  e   5  5       5  5    i  `  (       (  (       ( 5       5  5       5  3  .=I%+57#"'#"&=4?546;232?6;264&"32764/&"  J#''#9   5    0, 0 0 ) P   0 0 0.MUk%+57#"'#"&=4?546;232?6;232?264/764&"'&"264&"%26545.+56&'"#"3  J#''#9   5      ""/     ) P  p   ""a    032+"546;5'&63!288**632"&46325"&463247 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"&4654/54&+"327ΑΑT:   CΑΨ*  1E"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?63!23373'8 j U{ p {U  +@@92+"&=46303.#"327632#".54632'41463e,8IggIB2"F`CsBf%G:/#gg,"@BrDf'R)S4146;2+"&=463.#"+"&545>322676;2#"&'1+"=46;2#'/ fM->_ 1Z8b#=` 1Z8b#/ fM /$*L; Ws.)L; Ws.)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]  )#^  ! #/2+"&=46;254&"6;2+"&/&=4ԖA-  /!qq!/  -Aj0 -? "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+.%2+"&=46;'#32+"&=46;6;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=*[;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=46hW 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 %#!"&?63!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'!"763!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    /M%2#!"&=46;&'&546;2#"'&+"3+"&/&54?632;2654   fH4D%= + BW^H4D%= + B     3I'  ` 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&"ΑΑΑ `+3;2#"'##"&46354+54+"#";;2=32264&"6264&"B^^BC/\/CB^^BX 4  4 4  4 ""W""`^^00^^ 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 .  @.76&76&'/&4&4?61' 3N>!0# 9T x mm  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-  ,8#"&=&/&6?#".54?>;>322>4.#"D< b   3 h 1h'dH3 w   !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              7?U"&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++"&=#"&?6;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/,B%&/#"&'&54>32+3276'#"&54673267A >  # y 9% 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>#"/&5057&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#5462@@0 I7@7I p@``    9Y cc Y9   `` @&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/ 72+"/&>54>32354>323546323546  } !     @  q! ,     ױW-4635#"&46;5#"&46;5'.7>7>+"  в $  pP ""(E K @  @$54/&+"&=46;2?6&+"&=463!2 p  %| ! N =G %3 ! tP+"/&546324/&54>3232545'&54>3232?>32132?>32D 8%6'l  = *   &3  8&  "/#-%f  9)(   }   {-159%+"/&>46235462354623462#37#37#3  ! """"XX`! ,((a`````+$2+"/&6?'&>354623546234"  @ K%$E("Pp  $   `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 J8? 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'&6767054/&'&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(      %/'/7?GOW_gow$2"&462"&4"&462"&462&2"&46"&462462"&2"&42"&462"&42"&42"&42"&42"&462"&47"/&4?&547'&#"#+"&5462632762)  )  7  )  7    @     i  )  7    7    I  &      Ie# .   i  7  )  7  )     @    )  7    7    I    . $ /4M$  I75!+"&=!+"&=&%2#!"&=46;5462662"/&47&7'&"         )9-#  i   @00+)  )   )  i  #,  +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&76?'/&?6299(USQr  Qf  w !v(99(TSQ  rQf  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;27546;232>76;23276.!!.!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 %-;7&'>7'&67&'&'667&'67#"'6#"16&5K$`D$>_GE#70Z0344LS)( F>!3vE[F; 0K*,-'!c=#.Gr 2Oc?Q&]2U( 1)+,GR;$/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 ` &   JAEn.'&67546;2'&+"+"&=&'&5474?6;254'#!"&=46;76;2+";2?62    $ 6     $   7/ *  N v] 0%   %    y ` &    JA 1$"&54762#!"&=46;76;2+";2?62HP8SS   7/ * N v] 7',pp,'  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 > > ;4<D$"&462!"&=46;32730%2+"&=46;5462264&"754&"jKKjK O7#&&#   /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.-6?%#54&"#54?5#"&=46;546;232+4?#"&5%+5`%6%`p0 0   0 0mp 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*"-,!@8@32+'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 %'%&=47%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 "*.2:>H73#"&=46%#!"&54>;5462324&"2#37#364&"2#37+532  &&%pp!/""@@`@@h""@@  0&&%@  @/""X ""X 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 /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:kJ 65 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&&7@L&=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.=42767'5%6hJrrw ,!!/ J4>>40?(%@%(8 @  *42"'&54264&"7.=42767'5%6hJrrm""w ,!!/ J4>>4^""I0?(%@%(8  ?&76'7'/&?6276^KKQr  5bW  i ! %KKQ  rs5KbW  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&"'6%'762+  (] 99(5+! ](  J(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++/#  % $   (3:AIQ\62"&47'"'".'&7&766267&'&'767"&#">"6727&'6264&"6''6'&#"#77W$|$ (" 77W$|$W% , 2 B//B/ % s5KK54 VV5KK54 VV  # # %%K/B//B? # #   `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 #+/3;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?   ;  : :  ,jjjjjIIjjIIX%/.=32?654/32?&54767>3276=46;254632|N/<(V  V(3235#"&=46;2+325'46?"&v F   88  8920 +$   /  _ 0   0A?>] +>0%#!"&5467&546;&546;2654'6323232#**#*%!/ (8%*O(**(#*%/!8(%*#%62"&4%+".?622+"&=463KjKKjK  k * P   KjKKj%    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((04%2+.#"#."#"&=46;546;546;232%3'#2+/+"&=&'/&?&'#"&=46;67'&?667546;276264&"'2+/+"&=&'/&?&'#"&=46;67'&?667546;276264&"p '0&CBCLC   qSJ 3Q0                ((                ((   """   P ` h @`@                P((4                 P((6:BJ%2+"&547#"&547#"&=46;546;546;232%3'264&"264&"p 2B\BDB\B2   qm0 M((<((   .BB. .BB.   @   @``(((( 0H?62"&472#!"&546326/&+";2?33754&+"&#"327;26` 66  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`@X @  @ @  @ @ @ @ @  @ @ 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<7654'&547654'&54763231!QM(;/)V :)9+**  **%5):  V)/;`HXWE; )f<G+%7-D A!  ! !  !A5% 7%+G=f);%#!"&5463!2!"3!0#"/267#"'&54?<14'#"54?&''312545'764/7454#"#'4"'"#"32?.547&547#"/  )77)FC % =N= %       F 4  7)@)7  &11&  #  po ! A-<JX%&54?626"/.=54&?6754&3766=4/&'6=4/&* ,  PP``PP``l1PP1OmR 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 pmp `%6%`0 L L Qd 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 (Q2#"&=4?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  %47#"&'&6?535#546;272#546353#"&'&67( . W   3s - ^)!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(((( EQTW]%'37'$2"&54737!;32?327654/7654&+'"#"$2"&54#''73@$Q((| < <  < < s(($,B!!B!!R @   ` 11 1 1 11 1 1 @   o888859=27+32++"&=!+"&=#"&=46;5#"&=3355#xH@ 0 0     0 0 @H`` ` @        @ ` `@@@@@@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 ]&  4<%+"&=#+"&=.54623%+'54632324&"2* @ @ $ & 5 @ p  6 pp  1 p &$.    AG7&?>#"&?#!"&547>7.='&4?'&6;2+"/#77 u*x [ #H0  GUZ-3<<> K  @ u W+*)EB<#/@ _6m 2 c  % (&#"+"'&7'&4632?547623HV( #2"# (?23I X! ) #"1$ (VO?2  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  CO_o#"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#76?#?/7?/   o$8V@@ @       @ &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  AIQ&/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%%6ksx$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 / %-7?"&4726767632676324&"2'"&462"&462  LB9r9D [a KjKKj5  a[ D9r9BL   jKKjK  I  @ 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         ;?C%"//"&46327'&676327'&4?6;2762%7''a  P k l*0)& Q a  P0  / 0Q IEI2EIDa Q &)0*l k Q  a Q0 /  0P hIEJEIE6Q.7>7&5462#"'%1+".5.'.=463210+".5.'"&=4632119bu C  a zZ  S9 Sv b9t   + a   z :R   v 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{  Z@,H3#!"&=26554+54+"#";;2=327#"/&"#"/&547%62  ` ;808808   M D088088 22#"1"'#"547>7&5454+54+"#";;2=32Ԗj73AL9`808808zz31:IVn088088%."/&4?627"/&4?6?7'76 7-nxf fn-7 D P  7-nf fxn-7{ D  P"*2:%/&&?6/&6?6264&"264&"6264&"%">H7 F&3 &)'H!.L )  C>") 4949/!= Ssm   2"&546b]2pp2u7PppP7 '/7?%2#!"&4632#!"&=4637"&7>2#&"264&"264"264` && ~~>      (( && 42BB24p  )     >%+"/&=4?2=4>3762=463212=46B..!    '$ S.B! J L   2  #%!5467546;272#!"&=463@B5) ` )5B   @@;aRp pRa     >JVr~$"&46220+"&50546322760!"&546;546;23254+";2=4+";27532=4+54+"#";;254+";2=4+";2P88P80.BB.**     ( ( ( ( 0P ( ( ( ( 8P88PXB..B *< p @  @ 4( ( ( ( ( ( ( (  7AK#"&547664&"2767>7>7>7>76'.?6&//"!/`(   ' '    ' ' | 3 3 /B/!"`w  ' '   ' '  3 3  2#!"&46;&5462'!"pTxTcc ( (( ;UU; %)A7"=4;54;232++"=%!463!2!2#!"&=46;;26780880 @ &&  =088088P` && #32#!"&54635#"3754&+326754&#!"3!26&&&&`P  PP   @ &&&&0   0 @  @ 0%3#"&4632>77'#5'6326'&54?632Kk%KjL!!1$ 526YK$( '"G@)!.!#+2-,&.D9N" + $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^      :B%#!"&54676"&=4?62';;2=32=4+54+"#"26=?6K""K6_5jKU  U(/B/N6""6N_oK5n  n5]!//!-#"&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 { +3Ig7'&6767>"2+"&=46;76;2264&"%2"&?#"&?6;26"&46325"&46325467ua5 5a   0H[,,\ > L'&5%%p&5%% c> >c`   ,,V Sk 3`(0l(k %#"54?6327632h0 <8y1 Vhp 1y8< .2#!"&5463454/&#"&'7654/&#"#327P FK#& A x ` &#KF  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&@CX%"&=46;2#'3264&#3264&#'+"/#+"&54?6;23'"/&4?62762 K 2 2!3(  (8  D   X   D;.p- 7   *# +0`0 $$ E p -8 @#2#!"&4623&54264&"264&"xTT<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ΑKjKKj"*:D$2"&42#!"&5#"&5463!2264&"754&+";2654&+"   8P8 &&`B^l((p   @   g   (88(&&^Bp((@  @ s  V6 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.15.1Font Awesome 5 Free Solid-5.15.1Font Awesome 5 Free SolidFont Awesome 5 Free Solid331.521 (Font Awesome version: 5.15.1)331.521 (Font Awesome version: 5.15.1)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:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvw xyz{|}~"      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWX#YZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~faucettrailerbacteria bacterium box-tissuehand-holding-medical hand-sparkles hands-washhandshake-alt-slashhandshake-slashhead-side-coughhead-side-cough-slashhead-side-maskhead-side-virus house-user laptop-house lungs-virus people-arrows plane-slash pump-medical pump-soap shield-virussinksoap stopwatch-20store-alt-slash store-slashtoilet-paper-slash users-slashvirus virus-slashvirusesvest vest-patches 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 compress-alt expand-alt 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-usdhand-holding-waterhands 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-grouplungs 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-dollargopuramhamsabahaijedijournal-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-medicalcrutchdiseaseegg hamburgerhand-middle-fingerhard-hat hospital-userhotdog 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-vinylcaravan ۠@۠Eruby-prawn-icon-3.1.0/data/fonts/fas/fas.yml000066400000000000000000000464251430430672300206730ustar00rootroot00000000000000--- fas: __font_version__: 5.15.1 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: "" bacteria: "" bacterium: "" bahai: "" 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: "" box-tissue: "" 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: "" caravan: "" 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-alt: "" 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: "" disease: "" 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-alt: "" expand-arrows-alt: "" external-link-alt: "" external-link-square-alt: "" eye: "" eye-dropper: "" eye-slash: "" fan: "" fast-backward: "" fast-forward: "" faucet: "" 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-medical: "" hand-holding-usd: "" hand-holding-water: "" 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-sparkles: "" hand-spock: "" hands: "" hands-helping: "" hands-wash: "" handshake: "" handshake-alt-slash: "" handshake-slash: "" hanukiah: "" hard-hat: "" hashtag: "" hat-cowboy: "" hat-cowboy-side: "" hat-wizard: "" hdd: "" head-side-cough: "" head-side-cough-slash: "" head-side-mask: "" head-side-virus: "" 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: "" hospital-user: "" hot-tub: "" hotdog: "" hotel: "" hourglass: "" hourglass-end: "" hourglass-half: "" hourglass-start: "" house-damage: "" house-user: "" 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-house: "" 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: "" lungs: "" lungs-virus: "" 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-arrows: "" 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: "" plane-slash: "" 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: "" pump-medical: "" pump-soap: "" 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: "" shield-virus: "" 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: "" sink: "" 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: "" soap: "" 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: "" stopwatch-20: "" store: "" store-alt: "" store-alt-slash: "" store-slash: "" 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: "" toilet-paper-slash: "" toolbox: "" tools: "" tooth: "" torah: "" torii-gate: "" tractor: "" trademark: "" traffic-light: "" trailer: "" 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: "" users-slash: "" utensil-spoon: "" utensils: "" vector-square: "" venus: "" venus-double: "" venus-mars: "" vest: "" vest-patches: "" vial: "" vials: "" video: "" video-slash: "" vihara: "" virus: "" virus-slash: "" viruses: "" 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-3.1.0/data/fonts/fi/000077500000000000000000000000001430430672300172115ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/fi/LICENSE000066400000000000000000000001671430430672300202220ustar00rootroot00000000000000/* * Foundation Icons v 3.0 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3 * MIT License */ruby-prawn-icon-3.1.0/data/fonts/fi/fi.yml000066400000000000000000000144541430430672300203420ustar00rootroot00000000000000fi: __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-3.1.0/data/fonts/fi/foundation-icons.ttf000066400000000000000000001572201430430672300232160ustar00rootroot00000000000000pFFTMhOS/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-3.1.0/data/fonts/mdi/000077500000000000000000000000001430430672300173645ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/mdi/LICENSE000066400000000000000000000017401430430672300203730ustar00rootroot00000000000000Pictogrammers Free License -------------------------- This icon collection is released as free, open source, and GPL friendly by the [Pictogrammers](http://pictogrammers.com/) icon group. You may use it for commercial projects, open source projects, or anything really. # Icons: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) Some of the icons are redistributed under the Apache 2.0 license. All other icons are either redistributed under their respective licenses or are distributed under the Apache 2.0 license. # Fonts: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) All web and desktop fonts are distributed under the Apache 2.0 license. Web and desktop fonts contain some icons that are redistributed under the Apache 2.0 license. All other icons are either redistributed under their respective licenses or are distributed under the Apache 2.0 license. # Code: MIT (https://opensource.org/licenses/MIT) The MIT license applies to all non-font and non-icon files. ruby-prawn-icon-3.1.0/data/fonts/mdi/materialdesignicons-webfont.ttf000066400000000000000000045745541430430672300256210ustar00rootroot00000000000000 0GSUB %z8TOS/2O[VcmapDpMglyfI#-$headb@6hheam$hmtxN4nlocanmaxp namels$postlUgƟ_< y-  0>DFLTlatnligaDfGDfPfEd@.B,JD, J L            !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~                  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~                  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~                  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~                 !! ""!##"$$#%%$&&%''&(('))(**)++*,,+--,..-//.00/110221332443554665776887998::9;;:<<;==0>><??=@@>AA?BB@CCADDBEECFFDGGEHHFIIGJJHKKILLJMMKNNLOOMPPNQQORRPSSQTTRUUSVVTWWUXXVYYWZZX[[Y\\Z]][^^\__]``^aa_bb`ccaddbeecffdggehhfiigjjhkkilljmmknnloomppnqqorrpssqttruusvvtwwuxxvyywzzx{{y||z}}{~~|}~                 !!""## $$!%%"&&#''$((%))&**'++(,,)--*..+//,00-11.22/330441552663774885996::7;;8<<9==:>>;??<@@=AA>BB?CC@DDAEEBFFCGGDHHEIIFJJGKKHLLIMMJNNKOOLPPMQQNRROSSPTTQUURVVSWWTXXUYYVZZW[[X\\Y]]Z^^[__\``]aa^bb_cc`ddaeebffcggdhheiifjjgkkhllimmjnnkoolppmqqnrrosspttquurvvswwtxxuyyvzzw{{x||y}}z~~{|}~                 !!""##$$ %%!&&"''#(($))%**&++',,(--)..*//+00,11-22.33/440551662773884995::6;;7<<8==9>>:??;@@<AA=BB>CC?DD@EEAFFBGGCHHDIIEJJFKKGLLHMMINNJOOKPPLQQMRRNSSOTTPUUQVVRWWSXXTYYUZZV[[W\\X]]Y^^Z__[``\aa]bb^cc_dd`eeaffbggchhdiiejjfkkgllhmminnjookpplqqmrrnssottpuuqvvrwwsxxtyyuzzv{{w||x}}y~~z{|}~                 !!""##$$ %%!&&"''#(($))%**&++',,(--)..*//+00,11-22.33/440551662773884995::6;;7<<8==9>>:??;@@<AA=BB>CC?DD@EEAFFBGGCHHDIIEJJFKKGLLHMMINNJOOKPPLQQMRRNSSOTTPUUQVVRWWSXXTYYUZZV[[W\\X]]Y^^Z__[``\aa]bb^cc_dd`ee/ff0ggahhbiicjjdkkellfmmgnnhooippjqqkrrlssmttnuuovvpwwqxxryyszzt{{u||v}}w~~xyz{|}~                 !!""##$$%%&& ''!(("))#**$++%,,&--'..(//)00*11+22,33-44.55/660771882993::4;;5<<6==7>>8??9@@:AA;BB<CC=DD>EE?FF@GGAHHBIICJJDKKELLFMMGNNHOOIPPJQQKRRLSSMTTNUUOVVPWWQXXRYYSZZT[[U\\V]]W^^X__Y``Zaa[bb\cc]dd^ee_ff`ggahhbiicjjdkkellfmmgnnhooippjqqkrrlssmttnuuovvpwwqxxryyszzt{{u||v}}w~~xyz{|}~                                                                                       ! !  " "  # #  $ $  % %  & &  ' '  ( ( ! ) ) " * * # + + $ , , % - - & . . ' / / ( 0 0 ) 1 1 * 2 2 + 3 3 , 4 4 - 5 5 . 6 6 / 7 7 0 8 8 1 9 9 2 : : 3 ; ; 4 < < 5 = = 6 > > 7 ? ? 8 @ @ 9 A A : B B ; C C < D D = E E > F F ? G G @ H H A I I B J J C K K D L L E M M F N N G O O H P P I Q Q J R R K S S L T T M U U N V V O W W P X X Q Y Y R Z Z S [ [ T \ \ U ] ] V ^ ^ W _ _ X ` ` Y a a Z b b [ c c \ d d ] e e ^ f f _ g g ` h h a i i b j j c k k d l l e m m f n n g o o h p p i q q j r r k s s l t t m u u n v v o w w p x x q y y r z z s { { t | | u } } v ~ ~ w   x  y  z  {  |  }  ~                                                                                                                                                                                                                                                                                                                                                 ! !  " "  # #  $ $  % %  & &  ' '  ( ( ! ) ) " * * # + + $ , , % - - & . . ' / / ( 0 0 ) 1 1 * 2 2 + 3 3 , 4 4 - 5 5 . 6 6 / 7 7 0 8 8 1 9 9 2 : : 3 ; ; 4 < < 5 = = 6 > > 7 ? ? 8 @ @ 9 A A : B B ; C C < D D = E E > F F ? G G @ H H A I I B J J C K K D L L E M M F N N G O O H P P I Q Q J R R K S S L T T M U U N V V O W W P X X Q Y Y R Z Z S [ [ T \ \ U ] ] V ^ ^ W _ _ X ` ` Y a a Z b b [ c c \ d d ] e e ^ f f _ g g ` h h a i i b j j c k k d l l e m m f n n g o o h p p i q q j r r k s s l t t m u u n v v o w w p x x q y y r z z s { { t | | u } } v ~ ~ w   x  y  z  {  |  }  ~                                                                                                                                                                                                                                                                                                                                                 ! !  " "  # #  $ $  % %  & &  ' '  ( ( ! ) ) " * * # + + $ , , % - - & . . ' / / ( 0 0 ) 1 1 * 2 2 + 3 3 , 4 4 - 5 5 . 6 6 / 7 7 0 8 8 1 9 9  : : 2 ; ; 3 < < 4 = = 5 > > 6 ? ? 7 @ @ 8 A A 9 B B : C C ; D D < E E = F F > G G ? H H @ I I A J J B K K C L L D M M E N N F O O G P P H Q Q I R R J S S K T T L U U M V V N W W O X X P Y Y Q Z Z R [ [ S \ \ T ] ] U ^ ^ V _ _ W ` ` X a a Y b b Z c c [ d d \ e e ] f f ^ g g _ h h ` i i a j j b k k c l l d m m e n n f o o g p p h q q i r r j s s k t t l u u m v v n w w o x x p y y q z z r { { s | | t } } u ~ ~ v   w  x  y  z  {  |  }  ~                                                                                                                                                                                                                                                                                                                                               ! !  " "  # #  $ $  % %  & &  ' '  ( (  ) ) ! * * " + + # , , $ - - % . . & / / ' 0 0 ( 1 1 ) 2 2 * 3 3 + 4 4 , 5 5 - 6 6 . 7 7 / 8 8 0 9 9 1 : : 2 ; ; 3 < < 4 = = 5 > > 6 ? ? 7 @ @ 8 A A 9 B B : C C ; D D < E E = F F > G G ? H H @ I I A J J B K K C L L D M M E N N F O O G P P H Q Q I R R J S S K T T L U U M V V N W W O X X P Y Y Q Z Z R [ [ S \ \ T ] ] U ^ ^ V _ _ W ` ` X a a Y b b Z c c [ d d \ e e ] f f ^ g g _ h h ` i i a j j b k k c l l d m m e n n f o o g p p h q q i r r j s s k t t l u u m v v n w w o x x p y y q z z r { { s | | t } } u ~ ~ v   w  x  y  z  {  |  }  ~                                                                                                                                                                                                                                                                                                                                               ! !  " "  # #  $ $  % %  & &  ' '  ( (  ) )  * *  + + ! , , " - - # . . $ / / % 0 0 & 1 1 ' 2 2 ( 3 3 ) 4 4 * 5 5 + 6 6 , 7 7 - 8 8 . 9 9 / : : 0 ; ; 1 < < 2 = = 3 > > 4 ? ? 5 @ @ 6 A A 7 B B 8 C C 9 D D : E E ; F F < G G = H H > I I ? J J @ K K A L L B M M C N N D O O E P P F Q Q G R R H S S I T T J U U K V V L W W M X X N Y Y O Z Z P [ [ Q \ \ R ] ] S ^ ^ T _ _ U ` ` V a a W b b X c c Y d d Z e e [ f f \ g g ] h h ^ i i _ j j ` k k a l l b m m c n n d o o e p p f q q g r r h s s i t t j u u k v v l w w m x x n y y o z z p { { q | | r } } s ~ ~ t   u  v  w  x  y  z  {  |  }  ~                                                                                                                                                                                                                                                                        !!""##$$%%&&''(())** ++!,,"--#..$//%00&11'22(33)44*55+66,77-88.99/::0;;1<<2==3>>4??5@@6AA7BB8CC9DD:EE;FF<GG=HH>II?JJ@KKALLBMMCNNDOOEPPFQQGRRHSSITTJUUKVVLWWMXXNYYOZZP[[Q\\R]]S^^T__U``VaaWbbXccYddZee[ff\gg]hh^ii_jj`kkallbmmcnndooeppfqqgrrhssittjuukvvlwwmxxnyyozzp{{q||r}}s~~tuvwxyz{|}~                 !!""##$$%%&&''(())** ++!,,"--#..$//%00&11'22(33)44*55+66,77-88.99/::0;;1<<2==3>>4??5@@6AA7BB8CC9DD:EE;FF<GG=HH>II?JJ@KKALLBMMCNNDOOEPPFQQGRRHSSITTJUUKVVLWWMXXNYYOZZP[[Q\\R]]S^^T__U``VaaWbbXccYddZee[ff\gg]hh^ii_jj`kkallbmmcnndooeppfqqgrrhssittjuukvvlwwmxxnyyozzp{{q||r}}s~~tuvwxyz{|}~                 !!""##$$%%&&''(())** ++!,,"--#..$//%00&11'22(33)44*55+66,77-88.99/::0;;1<<2==3>>4??5@@6AA7BB8CC9DD:EE;FF<GG=HH>II?JJ@KKALLBMMCNNDOOEPPFQQGRRHSSITTJUUKVVLWWMXXNYYOZZP[[Q\\R]]S^^T__U``VaaWbbXccYddZee[ff\gg]hh^ii_jj`kkallbmmcnndooeppfqqgrrhssittjuukvvlwwmxxnyyozzp{{q||r}}s~~tuvwxyz{|} ~                   !!""##$$%%&&''(())**++,,-- ..!//"00#11$22%33&44'55(66)77*88+99,::-;;.<</==0>>1??2@@3AA4BB5CC6DD7EE8FF9GG:HH;II<JJ=KK>LL?MM@NNAOOBPPCQQDRRESSFTTGUUHVVIWWJXXKYYLZZM[[N\\O]]P^^Q__R``SaaTbbUccVddWeeXffYggZhh[ii\jj]kk^ll_mm`nnaoobppcqqdrressfttguuhvviwwjxxkyylzzm{{n||o}}p~~qrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,-- ..!//"00#11$22%33&44'55(66)77*88+99,::-;;.<</==0>>1??2@@3AA4BB5CC6DD7EE8FF9GG:HH;II<JJ=KK>LL?MM@NNAOOBPPCQQDRRESSFTTGUUHVVIWWJXXKYYLZZM[[N\\O]]P^^Q__R``SaaTbbUccVddWeeXffYggZhh[ii\jj]kk^ll_mm`nnaoobppcqqdrressfttguuhvviwwjxxkyylzzm{{n||o}}p~~qrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,-- ..!//"00#11$22%33&44'55(66)77*88+99,::-;;.<</==0>>1??2@@3AA4BB5CC6DD7EE8FF9GG:HH;II<JJ=KK>LL?MM@NNAOOBPPCQQDRRESSFTTGUUHVVIWWJXXKYYLZZM[[N\\O]]P^^Q__R``SaaTbbUccVddWeeXffYggZhh[ii\jj]kk^ll_mm`nnaoobppcqqdrressfttguuhvviwwjxxkyylzzm{{n||o}}p~~qrstuvwxyz{|}~                  !!""##$$%%&&''(())**++,,--.. //!00"11#22$33%44&55'66(77)88*99+::,;;-<<.==/>>0??1@@2AA3BB4CC5DD6EE7FF8GG9HH:II;JJ<KK=LL>MM?NN@OOAPPBQQCRRDSSETTFUUGVVHWWIXXJYYKZZL[[M\\N]]O^^P__Q``RaaSbbTccUddVeeWffXggYhhZii[jj\kk]ll^mm_nn`ooappbqqcrrdssettfuugvvhwwixxjyykzzl{{m||n}}o~~pqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--.. //!00"11#22$33%44&55'66(77)88*99+::,;;-<<.==/>>0??1@@2AA3BB4CC5DD6EE7FF8GG9HH:II;JJ<KK=LL>MM?NN@OOAPPBQQCRRDSSETTFUUGVVHWWIXXJYYKZZL[[M\\N]]O^^P__Q``RaaSbbTccUddVeeWffXggYhhZii[jj\kk]ll^mm_nn`ooappbqqcrrdssettfuugvvhwwixxjyykzzl{{m||n}}o~~pqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--.. //!00"11#22$33%44&55'66(77)88*99::+;;,<<-==.>>/??0@@1AA2BB3CC4DD5EE6FF7GG8HH9II:JJ;KK<LL=MM>NN?OO@PPAQQBRRCSSDTTEUUFVVGWWHXXIYYJZZK[[L\\M]]N^^O__P``QaaRbbSccTddUeeVffWggXhhYiiZjj[kk\ll]mm^nn_oo`ppaqqbrrcssdtteuufvvgwwhxxiyyjzzk{{l||m}}n~~opqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--..// 00!11"22#33$44%55&66'77(88)99*::+;;,<<-==.>>/??0@@1AA2BB3CC4DD5EE6FF7GG8HH9II:JJ;KK<LL=MM>NN?OO@PPAQQBRRCSSDTTEUUFVVGWWHXXIYYJZZK[[L\\M]]N^^O__P``QaaRbbSccTddUeeVffWggXhhYiiZjj[kk\ll]mm^nn_oo`ppaqqbrrcssdtteuufvvgwwhxxiyyjzzk{{l||m}}n~~opqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--..// 00!11"22#33$44%55&66'77(88)99*::+;;,<<-==.>>/??0@@1AA2BB3CC4DD5EE6FF7GG8HH9II:JJ;KK<LL=MM>NN?OO@PPAQQBRRCSSDTTEUUFVVGWWHXXIYYJZZK[[L\\M]]N^^O__P``QaaRbbSccTddUeeVffWggXhhYiiZjj[kk\ll]mm^nn_oo`ppaqqbrrcssdtteuufvvgwwhxxiyyjzzk{{l||m}}n~~opqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--..//0011 22!33"44#55$66%77&88'99(::);;*<<+==,>>-??.@@/AA0BB1CC2DD3EE4FF5GG6HH7II8JJ9KK:LL;MM<NN=OO>PP?QQ@RRASSBTTCUUDVVEWWFXXGYYHZZI[[J\\K]]L^^M__N``OaaPbbQccRddSeeTffUggVhhWiiXjjYkkZll[mm\nn]oo^pp_qq`rrassbttcuudvvewwfxxgyyhzzi{{j||k}}l~~mnopqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--..//0011 22!33"44#55$66%77&88'99(::);;*<<+==,>>-??.@@/AA0BB1CC2DD3EE4FF5GG6HH7II8JJ9KK:LL;MM<NN=OO>PP?QQ@RRASSBTTCUUDVVEWWFXXGYYHZZI[[J\\K]]L^^M__N``OaaPbbQccRddSeeTffUggVhhWiiXjjYkkZll[mm\nn]oo^pp_qq`rrassbttcuudvvewwfxxgyyhzzi{{j||k}}l~~mnopqrstuvwxyz{|}~                 !!""##$$%%&&''(())**++,,--..//0011 22!33"44#55$66%77&88'99(::);;*<<+==,>>-??.@@/AA0BB1CC2DD3EE4FF5GG6HH7II8JJ9KK:LL;MM<NN=OO>PP?QQ@RRASSBTTCUUDVVEWWFXXGYYHZZI[[J\\K]]L^^M__N``OaaPbbQccRddSeeTffUggVhhWiiXjjYkkZll[mm\nn]oo^pp_qq`rrassbttcuudvvewwfxxgyyhzzi{{j||k}}l~~mnopqrstuvwxyz{|}~h\4 <L8 p ` D D <4L  \L4P ! !P!!" "\""##|##$ $$%D%&&D&l&',''(H(p(()X)**p***+ +\+,<,,-L-.L./T/001H112`233456|67l78,8x899\99:@::;0;;<,<<=@==>D>>?D?@4@A\AB4BCCDhDE$EFFG8GH HlIHItIJKLLhLMNDNO@OPPdPQ$QTUTWtYYhYZZXZ[X[[\\d\\]@]]^^_``a(bbxc@cdte<efggtghLhhi0ipij4jjkXkklmmlnnpoop<pq<qqrs,st tuuhuuuvvTvw4wxXxy`yz{{|||}l}~x~`0@$HLt\Hd@4D`00h,Pp((48x,xT\lHXlhP\t DT8Ph@(\T, |4x<0,PH8€Ì ĐhŤƐ Ǡl xɼ|X˜̄͠D ϨЀФ$TѸDҘӈ$լh@׌؜@٘ڤ ۜ8XlHd,,0`\d08 Dh0D\lD@Xl8TPl$t,0$X@( p $ L        D  H,|4d t <p< l\dLlP   !,!X!"$"##d##$$H%(%& &&'('p'(,(()0)T))*\*+$+l+,,,t- -.L/H/0`01812D3 345t66t67p7889:h:;\? ?@(@A8AAC<CDDE|FHFGH(HI IJTJK4KLLLMDMN$NO OP PxQ QR RdRS8T$TLTTV4VWWxWX$XTXXYdYZ ZTZ[8[\\P\]h]^X^^_`p`a0aab\ccXddxeefghghdhi4ijjjkklxllmnnoopdqqrtrsstuXuv$vdvvwwxxlyy@yzzhzz{L{|@|}}~~h0<8t\8d|@\Hd`0|(pX\DL,H@tDlh,TLLL\$<|8l`p(xd0,|TD0t tL l(pXôxŀƨ <pȼ|Ld$L̜P͠ΠTϼ4p 4Ӥ8Դ`֐ׄل<pۼP,,DޔDt߸(ptH`pL|D@xT8$dL H |h,<((    `  P    Dl,Hdlh<t\LdD( !8!h!""X"#L#$$H$$%(%d%&&P&'0'|'(((X((()*+,,--0 012,2t23 3d404d5667p8889:d:;T>P?$???@@L@ALAhAB BCCD0DdE,EFF|FGGHI ItIJ\JK`KLpLMhMN0NO(OP@PQQRDRS`TLTUUUVVVWxXXhXYZZ[([[\d\]d]^l^__`abbccdLddehef,fghxi@ij`jk4kpklLl|lllmmnnoDophpqr<rsHst0tuduvwtwx$x`xxy(yz{ {{|h}}~~h tt<t<| `DhD<@$pPp\8t<l(0D$$p0hph8\<0tLt<tTxH( l<xĐHDƸ@Ȥ\,̈x(ΐδϜPЬdldԔդp LـڈDlܰ݌޴<x߸D0@@ldD `x$$ @4| TDD\,|dh\0LTtP@0    X   L  X ,04< X`| T80  !P!"@""##$T$%$%&$&''( (P(())@)h)*(*t*+L+,<,,-<--.0./D/0D01112d23T34\45<556X67 7P78L89: :L:;P;(>?4?@AApABPBCDDXDE@EFtFGHGGHHXHHIDItIIJK KPKL4N,NNO,O|P@PQR4RS8STT4T|U<UUV<VWWTWXtYYZhZ[\,\\]]<]^l^__0_|__`H``a ahaab0bc cdHdeetefghhi$ij$jkkltmmnXo@op pdppq@qtqrLrrs`ssttHtuu<uXuvvwPwwxdy`zzHzz{|D|}@}~$PT,D4\TxL`(`<p| H`XH(P4|\lL0|(x$P\T44,htLl`L<|pdP<hLlHŤ Ǹ8Ƞ <ʄ ˔̤,ʹ<LhPѴXHPԤ0|$֤0׈@؜@٤<۔HHޠHTX8H  8`4$0tL`p,h P(dTT`4hhTPLH4HL       (  ((,4,P<t,|dt \  X!T!"<"#d#$p%%&'('|() )`))*x*+8+,d--d-. ./0801112X233|35t56D69:P::;\;<<=L=>0>?<?@A<AAB(BClD E$EFxGG8GxGGHH@HXHHII(IJ JJJK@KL,M(MN,NOOPLPQRR`RS\STU$VVWWXWWX(XxXY(YZZ[8[[\\](]^^^_d_``D`a@abccLccd(dldeXeflfg|hhiij$jk8klmn8no,opqqqr rlsst`uluvvwdx xyyzXz{P{{|P|}h~,hp@xH@PX0dHx(0h<X@L, l0,|L$L(dD8|0x P@D@Hp`H0TL(\$$xxx<dĨ8Ƅ,PpTʔ˰p͔|πhtԠdؠl,ژۜHހl,4|T(<tPpLPd@\dXD<DxDTd|Ldx<P dP|     X   X( ,$@   p|Pxp T !,!"`"#T#$H$%(%& &'(8())**t*+D+,,P,,-X--//0122334h5h56X6707849(99: :d::<@<=d> >?\?@@A4AxAAAB4B\BBBCC8C`CCDD\DDDEELE|EEF0FGGxGHHHI(IIJ$JJKHKLLLM@MMNPNOOTOP`PQ8QQRLRSSSTHTUVW8WXXYXY\ \d\\]],]d]]^4^|__0_`p`aaabLbcccddepef`gghij(kkXklmmnPoop<pqqxqrhrsst|uTv0vhvwHwx<xyTyyzLz{{|$|}T}}~((<\H`p@@ttlP@0xH@`XH8tDx$LXl<<p<D`(,`$dp8 P4$@48T\L „X Ĥ`8ƄdPȰɀhlXHXTH<ьhHӤh<,֌p<؜h0|tp| ߘL LxP\8d`Xx D`lH0P<$x|d4 H  t  t  T  d,HlxTXL(,|PH , | !T!"T##$$%D%&<&' 'l(T)*<**+\+,d,-\.`//01<122t3`34|50566\67078889H9:8:;T??@8@ATAB BChCD8DE0EF@FGxHHI$IJxK|KLM MN(NOXOPQ(QQRRSSlSTtTUTVVWWXYtZ`[[\]^_@_`$``a`bcHcde ef\fghiTjHjkkPklxmmntoppqqrstupvvvvw|wx xy<yz`z{ {|@|p|}p}~\~x8HT4t|l\4H$xLXp4|`TlX@x`H`Ld D@4`\Ll( lX0 ,TtÔ<td,l\p@@μx| Ѥ<҄PӨxlT<L ڔP۔4ܰXݤ`8ߜ,h4,\h\0LH$l0 x0<0L|pHp$xP4dD$$t@T ,  @   H   T    L4P4X0`` 8d$tT0 \!!"l##$\$%&0&X&'T'(D()t*H*+,|- -`-..//H/1 1d12X23<34@45\667 89H9:@:;X<(<=><>? ?@@@ABB\BC|DDEFtFGpGGHTHI$IJhJKlLM NOOPPQ(QRSHTTUhV VWWhWX0XYYxZ4Z[L[\\p\]8]^_8_``P`bcHcddTdefhiiijk(kllmPmnXno@opPpq8qr0rspttu,uPuv vw0w|wxxyPyyz z<z{|| |}x}~L<L<H8xdH(X`x$t`@h` hHh4PP$h\D`4d@LL`T,p\84D°ød`@Ɣ Lj$Ȩɸp,p˸@̈$hLτPTѴLtPd4ը | $|ٴl4۠<XܠxTtt,4ht|tTpP`L@t$<<pDhl 40 P     X  `   <Lph!d!"#P#$h$%&`'()x)**+0+,,,,-@--.D./|/081 1d12$23 34 4556T7T8H89 : ;;< <=p=>??T??@,@@A@AB`C$CDE$EFFGtH\IIJ@K0KLLMNNhNOOdOOPPQ(RRRS0SxSTLTU UV<VWXXYTYZx[ [\4\\]$]l]^_T_`aa|bbcdPde\ffgh hi$iij`jkTllm(mn`no@op<pq,qrrrsPt$uuvlvwtwxPyyzlz{|d}dh< lPt,dx(lXpDXDD\@` \H TTHXT  4D$h0h,l\T(t,d$t$8pl|((Lnj<ȰHɔTd͌$$lѼx tִהlِ0ۄ4ݜ@ߨDPT$d0PLhD0\pL X@xHh@l<  d \  d  <     4  X  T  D @  |   h  8     D  L   h  l  8  4  D  8  h  $   d ! " " # $h $ %h % &@ & 'L ' (\ ( )d ) *t + + , -$ - . /< / / 0< 0 1 1 2 2 34 3 4p 5 5 6| 7@ 7 7 8 9 : : : ;d < X ?\ @ @ A\ BT B B C Cl C D$ Dh D E` E F G( G H` H Il I J K K LX L M< M NL N O@ O P Q( R R S S T Ud V4 W W X Y Z [` \P ] ] ^ ^H ^ _ _ `X ` a$ a b b c( c c d8 d d e et f f g| h h i j k( k k l\ l mL m n| o0 o o pP p p q< q q rX r s sd s t` t u w xl x y4 y| y z| z {H | | } } ~L ~ |  x P D H  D \ l  d x $  T ( P t ( x 8 \ l 0 d p  D  @  4 p   T `  T  \ l t | $ H , d x (  8 \ d ĸ 4 H H Ȍ h ʐ X d d 8 Ϩ h h 4 \ ( մ 0 ` פ  x H ٘  d @ ۬ 4 , d h @ p T ( < x  x , X \ P $  p T |  x 0 d @ X ( < p p    `  x  h  X  | ,   x    <   H     |   \  @   $    0   d  P  !L ! "P " # $ %` &P & '< ' (| ( )d ) *x +d ,T - - . / / 0p 0 1l 2 2 3X 4 4 50 5 6 7@ 7` 7 8d 8 9T 9 :` : ; <( ? @4 @ A4 A B C Dt E E E F| GH H4 H H I J J K Kx L L M\ N N O P, P QL Q R< R SD S Td T T U8 U U V VP V V W( Wp W X X X Y\ Y Z, Z [ [l [ \H \ ]D ^ ^p _ ` a$ a b c e f f gX g h h iP i j k l m n o pt qP rH s( t( u0 u v w8 x x x x y y z z { { |( | } }X } } ~h ~  x   \ 8 l  `   d 8 4 | @  X    \ L X   \ $ x  < $  T L 4 4 L | l H D  ` ( H \ $  4 P  L 0 P \ @ < H \    t @ l \ `  Ř , d  L 8 ˄ @ t L ` Դ < T ׌ ( t ڰ 0 ܼ L  p ߈  ( 8 p ` \ P | D \ $ H | ` ( $ h D  T <  ` \ D X   d d h   < 4 8 t x   t (      t   H   h    `  8   |  , p !, ! "L " $ $L % %\ % & '< ' (@ ( ( )0 ) ) *T * + + ,| -x .( . / 0P 0 1 2X 3$ 3 4 5@ 6@ 6 7D 7 80 8 9X :T ; ; < < = >d ? @ @P @ A A BD B Cl Dh D Ex F0 F G Gl H0 H H IT I Jt K K K Ld M M Nt OD O Pt P Q, Q R Rt R S, S T T U U U V W X YH Z ZX Z Z [` [ \8 ] ]P ] ^d ^ _D _ `T b8 c c d( d ep f f gD k< k l, l m m n< n o p< p q r st tP u, v v w x y z {| | } ~t @  | ( , D T ` d D P 4 ` 4   ` \ D < X , d P \  < $  4 l ` ( X P $ < t l <  < ˜ 8 ɤ ʄ ` l < l  Ϝ ( и T Ҙ D Ԙ L P t ؈ $ p ی H  ݸ 8 ߄ h p | X $ ( | 8 ( P @ x H     8  x ` @ 8   $   L  H     D  H  L  P  t   <  p  l  L  H  D  @ ! " # $ % &@ & ' (T )8 ) *0 * + ,8 , - - ., . /h 0$ 0 1` 1 2 3 3x 3 4< 4 5 6 7 7 8\ 8 9 :t ; ; ? ? @ A A Bd C C| C D E, F, G8 G HD H I JP J K L< L Mh M N< N O8 O O PT P Qh R R S S T4 T U U V V Wl W X YL Y Zl [ [ \P \ ] ^D ^ _< _ _ `\ ` aD a a b c, c d e e fL f gL g h8 i\ jx k l l mH m nL n o pD p qx r r s4 s s t t@ tx t t u0 ud u u v vL v v w( wl w w xH x x y yh y y z< z z { {@ {| { | } ~@ ~ ~    ` \ 0 x l  \ H  x , < @  p d @ ( P \ l 0 d p 8 @   <  h @ @ T  @ $ `  p D P @ h T 8  H D P t °  À Ā ŀ |  Ȱ L | 4 ˀ | t X Ѵ Ґ Ӥ t ո < ִ 8 X ٌ P  ۈ  | |  x h p 8 ( 0  $  d l $ 0  `  P ( l 8 @ $ p 8 $ ( , h  <   `  h     8   ( ` <    P     d     $  @  D      D  $   X     d ! "| # %X % & '0 ' (h ) ) * * * +h + , ,8 , -D - .@ . / 0D 1 1 3 4\ 4 5 6 6 7 7| 7 7 8 9 :D ; ; < = > ?\ @@ @ @ Ad A B C< C D` D E( E F| G G H I` J< K8 LL MX M Nt O P Q( Q Q R| S( S TX T U V Wh X X Z4 [ \L ], ^h _8 _ `( ` a, a bH b c8 c d d d ep e f g i j< j kH l l m\ n nh n o pP p qH rT sL s uX v w( w x x yh y y z zt z {$ {t { |$ | | }X } ~ ~  T ,  p P l $ 4 |   D  @ P 8 \ @ T @ l  X H    h p  H h  4 X  x  | < L $ | d  0 8 4  8 t $ | D t ( L  l  Đ L Ũ  t @ Ǡ d 8 \ D ˔ H ̠ 4 T ϐ @ и @ Ѵ L  |  ( մ 0 ֤ ( פ 0 ټ ڌ t  ܬ D ބ ߬  8  \  T @ X  h 4   $  H H  d D | < 0 < < l ( p , HTTxp   H  x P@`4<,H, !!\!"#8$,%P&d&'h'(|))*L++l+,D,--..t./D/0401<11244l45x66t67l78|9:,:;x >|>?@AHAdAAAB\BCD@DEF4FGH$HIJ JKXL$LMDMN|O@PPQRXS ST0TU`UVWWX XYpZ4Z[x\\],]^|_T`<`a abcDcdePefgThhdhhi$ijk@klm4nnoPopptqqrsst0tuXuv0vw<wxxytz,z{{X{|}8}~ ~~l|t0@L4L |\(`|L8@`tH@$ `8h|0$8DXXH(l@x|xp,ôTńxǀȐɤ˄Lͬh@\ѐ<@Հ֐#'+/3353#3#5##535#!5##33535%35!3535!35+*****+++++++****++++V++++++++m !+4L7.467%>4&7&4?>4&"264&#"#3;26535#4&+5i!!!!l$' V lNWN>F??F>NWN/4.GG.4/##U * * UW !+47.467%>4&7&4?>4&"264&i!!!!l$WNVN>F>>F>NVN/4/FF/4/$$k2"&462!54>#22F22#.O..Ok2G22G2'++'k2"&462!54>%53#53$22G22#/N..N***k2G22G2'++'+kV++ &7476762!7"&462%3!2654&#!" . %6%%6%*U  %%6%%:*!*%!!5!"3!2654&4'&'&"3'264&"**G$`(+*+*  f((k%'7'#54>3'2"&46J,@.N/((#22G22J,@+'2G22G2*%"&'4767622"&467"2>54.'D . D'%%6%%*O< ,,GqBQ5D)D(*(DQ`U,>,,>,Al>Q`<# #k)27##5##"&4632#"264&2!5476767"&462++ %% <   &+*& #22G22+++%7$   V ++ +2G22G2)!";732654&2"&46!5476762VUUV""0"" . UU1!0""0!  k%"!54'&'&%35264&"@ &+ V +F22 ++ V+++2G22G2n-9%!57676767632'4.32635'&'&'&'&'"3264&U *B' J)- %,IU 8,,U**    % -),V-**   D ,>,n  3>M%64'632#"'4>#"&7264&"!57676767632#&'&#"735'&'&'&'&,,)- %,+ *B' *5$ U D ,>,K% -), **      V-**   V(4@%!57676767632'4&"2635'&'&'&'"3264&#5##3353 $9! @%5&&5%E@ =  %%@+@@+@U**    %%5&&R,**   C&5%j@@+@@!*%323#+"&5#5346;5#54>22"&46 V (DRD(,,>,,U* * * * "" +,>++>,k 2'>'#5467'7'#2'd/%%@G7Uh.:k2$/d(ր$@+.h +k -2"&46"264&2!547676"!54&'&#22F22#$ &+ +&  (( k2G22G2+## @@ )k#%"!54'&'&'5##33535264&"@ &+ V +&+@@+@#22F22 ++ V@@+@@++2G22G2k#%2!5476767"&462'7''7'7@ &+ +& #22F22----... ++ +2G22G23..----.k$.%2'#"&46"264&'2"&4654>7K(8BC(88( ,$2#22*J, 8(BB8P8+,,2$ 2G2+&(#k!%"!54'&'&'264&"'7/@ &+ V +& #22F224/>>/ ++ +2G22G2 <(99(<(5632".5472>4.#"&2"&462".4>&-@l??ll? 4XhX44X4S$11:11?ll??l@,(4X44XhX4  $$V1:11:1)3<E2#5'&'&'&'64767676762!355#'"264&3"264&U$   H @@@+%%5&&&&5%%   ++ U     ++**@@++@&5%%5&&5%%5&&"2>4.".4>27"&462*O< 747&&7632#5##5463573#73#3#"&=461%   4%/!1%   4%/!*+*+*,?,@@@@ 3%0!1%   4$/!2$  +++++++U+U "2B"&=3#2+"&5&'&5467667654&'4767&'. *  // +++X4"&..&"4X"R # 31/-O"00"O-/13 # Rv'/77'7762 S-SS&D5SS m  ST4D&RT-S '//77/7'7'764&"'= N:&D5:M9 ItS  Sb%< 8N;4D&:N J  S!'!";5#!#32654&UUUU** #'%".4>2"2>4.#7/%')D((DRD((D)4X44XhX44X) eUcbbb)DQE((EQD)V4XhY33YhX4V<2 R R S#'7'7'".4>2"2>4./%'.DJ)D((DRD((D)4X44XhX44Xbbb-D)DQE((EQD)V4XhY33YhX4 R R S$*<'7'72".4>"32>4.3'467#".XY'Yh/N..N]N..N./$$/#;"";8 EW!%,9.O.{JJJK-.O\O..O\O.+$020$";F;" a((D+.$<) .N #5'#".547'732677''2654.#"6)6)D("O4X4#A/ bb)D( !4X4,(!z#)D)5*A#4Y3/@R S(E( (,4X4  %)-##33535#".4>2"2>4.'%'*@@*@@)D((DRD((D)4X44XhX44Xbbb@+@@+)DQE((EQD)V4XhY33YhX4%R SS R "%"264&"&462"2>4.  (88P88(*O< 4.*****O< =535#5>54&2"&46%@@% !U$8D@D9#U! %@@%  %!+ !@@7((7@@! +!%*   1 .%"&46312#"&46312?6.&"'.!.'b    #$,a*$#.::.}     k=>>=Y66X#(06<DJV%4'3654."327&547&'3676'#6&4733.7#>7#&4737#&##5#5353`H9btb99b:  P$` R H7? //?/{dd/? @+@@+  :b99btb9! ),"),,($*+! '' !($ ')+@@+@@!)2332>53/"'?'546;27'"'7"264&*  #+ C(A#R#A(|  ":    * K =/&Ct/qq/ K  6 i   3?%"&#"#'&'&'&567>3226761>3'&76 (     /$     # "   $(&*      :$ (Fa7"&=462754&"267#!"&5463!23&'"'&'&>37&7#"&516767##32671>1    jV2)   %'  V '   * * * * s@    8%@0`    * @735#7264&"7"264&2"&462654&/.54623.""&'-##  ,55Y44- 7 +I+##)C+8%Z   &8b99b8)D))D)x!" !!, L%#!"&5467&54632676321##1( (3&#11#0 ## 0/ (,048<@D2".4>"?.2>54&'7'73#?753'#53'7#5*O< 7#5##*O< "2>4.k@V@k*O< 7*O< 4.2".4>7*O< 2535#5 24."2>kUU 2' '".4>2' 2".%'#3+ 2".72>4."kkUU 2".7'+ 4."4>2".7'+ 23353*O< 2'2>4."k@V@k*O< 27'*O< 4."7".4>27'*O< ;2+"&46;#";264&+";+!6 #22#  #22#@!+ 6 2G2,  , 2G2 '%#"&546;7532#7#&#"26=3565K + , * V m4~o, u++7'77'7''7'7'7"/&4?62555555j5554.4D11I5555555555554.4G11K ?'3733'35#7353'3r.D)D(DK@j@uu@NNy**++jvv!7'"7&54>#552>54UU.O.";";#UU.O.@@UV@.O.1* #;"%#;"@UV@.O.1*3<7264&"35".5477'2>4.#4&"26%264&"   *$;!(DRD(!t$)4XhX44X4     U  "U))@%)D((D)5)sQ.4X44XhX4   k(2"&46"&46;2#7'#'76767632&,  bN[ * = k ,, U[     I 7'7!5#5#5kUUUիVV*++++!"3!2654&''7'77 ss @RLMMMMLL*MMMMMMM&"#7#4>2#"'32>4.4&"264X4@UV@(DRD((D)/(4A4X44X $$4X4UU)D((DRD((4XhX4$ !535!5!735#35k@k@@k++U@@ 3#3#3#3#3#3#3#+**@*@@V@**@@@U@   )2;3#3#3#3#3#3##546;%2#5#53#"&=53+5U++@+@@U@++@+UU+UUU+U@+VV**VV*V*VVVV*v\7&'&55&'.'&55&'.'&5&54767767677676776767#5&'& # # #    # # #*9  1   1  !   1   1   '' +;%264&+53264&#!";#";#"3!264&+5"&5476?     V %  %       @% " %"+37CO3#3&.#"267676327%"&4623"&5477#'32'./6/7>76[o H.#11D0 /!.##2###K a i#1`_1/ 4 o H &2G2-" !--=$3##3$$J 52$U`'#3"&/46;76232#3"264&u 8 acba 9 @@$  [[U$$ $(3#3#73#'3533"&/463!2#'37!@@@@@@+@@k@U@ 8 V 9 .@*@@kUU  * $(735#735#35#73353"&/463!2#'37!@@@+@@@@@k@U@ 8 V 9 .@*@@kUU  *#5##";2654&d$$  k**  G %#37#5##";2654&U$$  @+**  G %#537#5##";2654&U$$  U+**  G %#537#5##";2654&U$$  +**  G %#537#5##";2654&U$$  +**  G %#537#5##";2654&U$$  +**  G %#537#5##";2654&U$$  +**  G %#537#5##";2654&U$$  U+**  G #537#5##";2654&U$$  @+**  G #537#5##";2654&U$$  ++**  G %#53#53#5##";2656&****O$$  +**  I #5##";2654&5#73d$$  +U+k**  G vv%#53#5##";2654&@k@r#$  Ֆ֪**  G  %#53'#537#5##";2654&@k@#$  Ֆ֪j+**  G %#537#5##";2654&#53#$  @k@+**  G ֪#5##";2654&#53#53*+ @k@k** U k֪%#537#5##";2654&#53#$  @k@k+**  G ֪ %#53#537#5##";2654&@k@#$  Ֆ֪@+**  G  %#53#537#5##";2654&@k@#$  Ֆ֪*++**  G 2+"&546;5335d   $k  G **++2+"&546;533#%35#   #kk  G **+%#37#5##";2654&U$$  ++**  G 2+"&546;535#5##335d   $@*@@*k  G **+@@+@@#2+"&546;53##5#5353335#   #@+@@+@Uk  G **@@+@@.%#6?64&"#462#53#5##";2654&A + $*2F2@**O$$     ##22#***  G '-%63!467675."4>75462."&/#5@JK,%)0 "(" -N/  /N- "(" 14 U &@* *@& 1j,5"&54?5"&=46;2##%3!2654/'7"264&% u V u %  06lP  %'  '%@ T6l   "&54?5"&=46;2##% u V u %%'  '%-73!2654/5#"&54?5"&=46;2##k  |*|% u V u %+ ]]F%'  '%-2;73!2654/5#"&54?5"&=46;2##'7#?2"&46k  |*|% u V u %k)9- + ]]F%'  '%Gb  &/6?H33532#5!#354&#353252"&46"264&354&#2"&46"264&+$2++-  m-  2#++U+ 7*--"   U*--"   !#3676?U@*"/(V$ EV '7264&"72"&46%##5#35!354&#532%%5&&  +++2&5%%5&V   @@@$2%!5754675462"&5+;/$/;j$+*2OO2U '!57547'7'54&'54&"265#;+dC;/$PV%:*%!ef2O #;"&7!5754675462'4."3V$+:0$0:*1:1=*2OO211 &/%#33535#5"3&54>3254&'54&3267&'k@@*@@.<+";# <.=  @*@@*@ O3*#;"3O k !)%!5754675462"&534&3467'+;/$/;j$+$N+"$+*2OO2U|G'/W'G!W#+3;"&7!5754675462'4."334&3467'V$+;/$/;*1:1:+$N+"$=*2OO211<G'/W'G!W#;"&7!5754675462'#335#7V$+;/$/;UEEEE=*2OO2+91*:n$7#4632#"75>54#"265426/+3!(*:0"$-7Iv^.6+&.-$*5)#,9 37532#!"&546#33535#5|65@@+@@ V@+kk+@*3@I7"&462'"2>4.735#'.#"35'7"&462'"2>4.'264&"k,,>++11:11YD)  O H&02~++>,,11:11]  +>,,>+1:11:1+&F O  +k#2+>,,>+1:11:1   75'kOư#6o+oW;S>%)3#+"&=73#7#535"&=3+"&53**+ @ +U @@k U+ @ @@ k + k I+++$(,04%32+"&=4635%32#2+73535#73#53#k@@@jj*@@@@****@@+@@++@@@+JPY`g%.#"#"&'#"'>7.54?&#"&54>7&467632>54&'%27&"264&".'7>5=* 0$7& !99! &6$0 *="8"$,&$"9!@B!  !##$i )9 &9$22$9&9) "9#E;-''-;E#9]t10 -S 0-"3!2676&'#'39: :Y d ~!2".4>"353654.*O< 27#7&#"3273#"&46#2W7 &?&%U&$ *#22 VV:kM&3&@%5V'-2G2~*;D1""372?27>7674'./&2".>76"26. =  _  [ -AL"- 0& &+' (%$8%&} 1   L 12  0q %"#$  /$$/ '0!2++"&54675#"&=#"&=46"264&@  %6%    + .!%%!. +    $2".4>".2>54&'FuEEuuEEuF*O< ,E&*O< EEuuEEuuE+ 22 %7=7'#'737'#'**+(((ezbwwbz\*+++++\(Q(((yawwby\+++7'#'7377'5("Az*wb\1(D(#Ayk+lwb[1 Q)z%=7'#'737'35#35#35#=(((ezbwwbz\"++++V**(P(((zbwxbz\+++++ !#5'7'7537'%##5#7'353:\\zbwwb((*++@@@@++\\ybwwbQQ))Q@@VVV@@#,5>GPYbkt}"264&"264&"264&'"264&"264&'"264&7"264&'"264&"264&"264&'"264&'"264&'264&"7264&""264&'"264&7264&"264&"264&"%"264&"264&7"264&"264&'"264&+ c  H   D              I<     V`   J   K     U     V   v   J  J   K  u   `       V   #,09BKTXajs%264&"7264&"7264&"264&"7264&"%!5264&"264&"'264&"7264&"!5!7264&"264&"264&"    _  U   L     L U   V   U   KV  u++     KU+   U   `#,5>ajs|7"264&"264&"264&'"264&"264&"264&"264&''"2654'267&#"2654'7"264&264&"264&"264&"'264&"264&"'264&"3264&"3264&"7264&"@<  L <  7  Q  < <  P Q      Z      K   J  J     K   Q  < <  Q[   V   U     K    _   /8AJS\enw%"264&"264&".4>2"2>4."264&"264&'264&""264&'264&""264&"264&'"264&"264&'"264&+   /.O..O\O..O.*O< 32>32265&&#"5>32")"!!D!8"!E<*")EE)"U  7   3'%!"3!2654&k65k V #"74&k@@U 2'4637''kVg8@@Uh8 2'463"26=35#&kV#@U @@U#j+p%'35#"74&kkk@//+@@U%#72'46333##5#53kkkV*++*++@/@@UU++**+ 2'463#33535#5kV++*++@@UU++**++ 2'46377'7''k44334433@@Uw43333433 %#53#53'#53#53!!Հր*ր #'+/37;?C7#3!5!7#3%35#535##335#535#'#3'#3#3'#3'#3#3'#3#3'#3k++++++*++++++*++++*++V**V++V**++**U++U**U+++U+*U+*+U+++*+++*++*++* 64/&"'32*PPPj2*PPP #'+/37;?C!35#35#'35#735#535#!5!35#735##3#37#3'#3'#335#'35#7#335#++U++U**++++**++****V++++U++*++U+++++++++++*++*+*+*++*+++++++*+++ #'+/37;%35#35###33535#35#35#35#'#3%#37#335#7#335#35#++++**+++U++++*++++U+++++++*++U++U++U**+*++U++++++++++ #'+/37;?C35#35#35#535#535#35#35#735#3#35#535#35#735#535#535#35#35#@++++U++++++++U++U++++U++++++V**********U+*+*++++*++*++*+++ #'+/37;?CGKOS35#35#35#35#35#35#35#35#535#35#'35#'35#35#35#35#35#35#535#35#535#535#@++++++U**++**++++++++**++++++++++****V++++++U+*+*+++++++*++*++*++++*++*+ 7#3#3!!!!#3'#35#3++U***+++V*****++*****+ #'+/37;?C35#535#35#735#35#3#35#35#'35#35#535#35#35#735#535#35#35#******U++++U++U++U**++++++**++U++++U++U+++*+*+++*++++*+++*++++ !!35#35#35#35#735#535#%3!535#@++U++++V**+++++U++++++++++*++*U++ #'+/37;?C%35#35#'35#35#735#%!5!35#535#35#'35#35#35#535#35#535#35#35#@++U++**U++U++U++++**++++++++****V++++*+++*++*++++*+*++***+ #'+/37;?C%35#35#35#35#535#35#35#3#35#%35#35#35#535#35#35#35#35#@++++++U++++++++**++++U++++++U++++U++++*+*++*+*++++++***+*++"+2".4>"264&'"264&>.*O< 32#14&"1261#"/#"&54717'1&54617>H - - %6&+ +&5  + +&6 - - @ )(  // ().  %65% N6&  ( 66 >? 66 ? 7764/&"7'762"&4 v  # |k  2 #  {o+  3232#!"&=46;5465#VVVgV++U++#3232#!"&=46;5465#7''VVVgV o-++U++n,$3232#!"&=46;5465#7#5##VVVgV+k@V@++U++jVV$3232#!"&=46;5465#3353VVVgV+k@V@++U++@kUU2".4>*O< 4.910::019+N4.!BSSB!*O< 4&'63275#'#37357!))!#;"";dGGdFFdGGdF@ ?L? ";F;"dFFdGGdFFdG %".4>2?'5#'#373#;"";F;"";FFdGGdFFdGGd@";F;"";F;"9GGdFFdGGdFF%2?'5#'#373#;"";FFdGGdFFdGGd@";F;"9GGdFFdGGdFF%"264&".4>275#'#37357#22F22##;"";F;"";dGGdFFdGGdF2F22F2";F;"";F;"dFFdGGdFFdG%'##7375#'#373573'1D)E*EQdGGdFFdGGdF2k**dFFdGGdFFdGN '6.'7.z6 'h-$Jz6 J$-h( '&"764"#32654&;& /#2%];% 2#%7%#53#537#&'7'&"'#3#3#326735#6=35#54'3+VVVV<#//#<-++-<;F;<-++-+*#..#* + +##+ + !%3!'32#!"&546;53753%536kVk@@k+Uk6*kUUk@@k#";;26=35 + @k`VV VVV/ . 5%!5!"&462#"&462';26=3;26=6=4'&"  X   2&&2k&  &33k!3#"'32>53!4>327&#"#7U@";# *1.O.@";# *1.O.@VUU#;".O.#;".O.UU !8"'&5476762!5.546;532653264&#!"2653  (88(`@ ,, +!  8(* {{ *(8@@,,'!54&+54&+5##"#"#!52654/@*@+$%U@**@U+++ @@  #?2654/'"/#"'3!26=#"7#5##"2?2?26=4&$$t> V k*k%# .- $ .. #%@ ??  b b ++%! .. .. !% #'+/3732+"&54635353353353533533535335335++*++++*++++*++V*VV++++++V******U++++++%!5!'#5##"3!2654&+5#3*@+*kk++++*+k%!5!'#5##"3!2654&+5*@+*++++*+!%!5!5#5##5##"3!2654&''*++*Fh-D+k++++*h-D0@%3'7!3&54>32"&546;5335332#"&'7"32>54.@ 4DUc(E("++)D)6h//&0<'"(E(*++++6)D)/80&/$(%5!2#!"&546;53353!!"&53#53+*+++UUUU++++++U!*%5!2#!"&546;53353'77!!"&53+*+5_9"H++U+++++_:"H+'%5!332#!"&546;53333##5#53++j*@@*@@++*++@*@@*'%!5!5#5##5##"3!2654&77'7''*++*44444444+k++++*44444444#%#3!5!5#5##5##"3!2654&#3+j*++*<֕*@k++++*+73#!5!5#5##5##"3!2654&kk*++*kUk++++*V3735*U*v %7''3753'kIKtK` Hws`+ '35#357wb++w+bk'5#35#*ՍM*k75+735'+1>>1ր1e*qk1>>11eq"0";2654."&4627"&462%+535#53211G  "&&5%%%11   %5&&5%k*k+k%'#53?!"3!2654&UU+VkDDDDV3#3!7!374&P+ ;**U/ IU@+ *eV. :U%1?';26=3%"&4627"&547"7'632'.#532+'3# "%Q%1+"+< "9 $ Q$1'+"i+k* )37332#!"&546"2>4.2"&46U@++@11:11%%6%%k**@1:11:1+%6%%6%#+#"3!2654&+'".4>32'?/'DVD'@''11::::++'+'1:1;;; &*134'&'&"#";2654&264&"35+37'(|$=jjj@@   *$$***+@@&-!2#!"&5462"&467354>2#37'%%6%%*";F;"kUU@@V%6%%6%k++@ +*@@  (%3267'7/3%#>54'.'7&#"%S&END-OMSl D-O4e&EN"/G@K)VJ)*/G 3%"&'32654'3'2#"#&54>7#'##"3!2654&,U%-1,U%-1D''DVU% 1% 1@**#"&4627#";2654&35+37'#YQjjj@@@##*U***+@@!2#!"&546"264&#37'$UU@@V+##+*@@ %5#'7357#'##"3!2654&@KKK D''DVu66KK66K** #,&462"'2>54&'7".532"&46i  $ .O.! NUO< 54'757"&=7#O+. ?6P-UU#U*PM >\P, MVZUVV 1?3"&462#"&4627.+";26=!;26=k  ,    ``j   #!#5##5!!%#33535#535U@@V+++**@+@@@kի++**+++++ 1>G7!'#264&"#264&"%+"&=!+"&=7>;2'2."'>2&"'6k*  ,   , ">/2/>"# " `Հ  U  1?O^?3"&462#"&4627.+";26=!;26=%264'&'32654'&/3264'&'1k  ,      x   x  ``k         \9%#";#";"&5'3264&+'467'&>54627>U1-,($ $  - k +k V+ & 1% 6&/%"264&33!5#"&4?326?654&#!'"264&k#+M L :#@##U*5 +#  *##&/3%2"&463!2+;!"&54?'#2"&46?!k#F< L M+#<2@##U*  #+ 5##kk 83535#5##3"264&3"264&'57326?'#'#33!5#"&*@@*@@V## S$SYG+M@+@@+####D% *4 +!8<@%4&+54&'&#3265'4&+"353335##!"&=46;5733235#'3#+ UU+U++VVV*V*V++UU k@@*U*++*@++@ !!72"&46'#234635"&5@%%6%%P@%6%%6%VVV#0<IP!!%5!%3"#4ᒑ54&"26'2"&=4654&"26'2"&=4635#7+V  1  FU+kkj<++*<++Uk  @ "!!72"&46'#234635"&53!!k&&5%%P+U@%6%%6%VV**!"&462"#!34547#"3!26=,>,,>,K*`,,>,,* ,7234.234.34&!"35!#32654&4Y3+?l@1+*7@%++4X4@l?V*17*U@%@@@+*#.3!"35!#32654&234.%!3%234.34&+C4Y3+?l@?_x1+*7@%@@+*+4X4@l?@#^@@*17*U@%&7335335335753#54&"#"354&+*++*++@*VV@$jU * +++++k@++*@@@ && a6?Hf&'&#7727677'77'&'&/676'&/"2"&4632"&46332653#"&'1#"&533267'! )%! +*p*+ !%) !'\   L*         &&   >     @     %#35#";2654&k+*V 73!53#!"&57357+*V*vC*Ckkk@tBB k#'+/37;?"#";2654&'54&3#3#73#73#3#73#73#3#73#73#@ Vk tkk++V++V++ @ F j+%#535#";2654&35#UV+*+ 73!53#!"&5?'5#'+*V*vC*Ckkk+tCCk %#537#";26=4&%!5!"#!5#UU a++U* ++@@ $#"53#326=4&%##!75! +U.@ a,' +z2+ Y+o@ %H' @2B++%#35#";2654&35#35#35#U'++U**V++kUU+++++ $(,";75326=4&#7'5'7'3#3#3#U@@+@@@@@@@@kk@@kkj@@j+**J K++K J*++*+x#3##'##7#"&/7637#53'jJ4!P/0X D 9]JL5-'U*k+**  k*UU)%'>73'5#.&54>7"&'7327Y+V,g.L.V/J-O/%1`/OJ(+&J ",JV.L."/q+&+0Q2V7,%+J%7!377'37taV*v[%p~0^|QPڡ)335333353V*+U+U+Uj 335333!@+UUVUՀVU %7'!!37U[%pfaV*vŜP+ .4>73.>76X22X`4T32T5V;^n^;3T44T3I '77uW+uWI 77'%'#' wwYxywwYw!"3!2654&**"2>4.*O< 2"2>4..O..O\O..O.*O< 4.jL*O< 327&"2>5%7'.O\O..O.!&TO< B`*k*B`*#!#3#5##5#535#533533##5#5+*VVVUUVVVVUUVVUUVUVVVVUUVVVVUUUUU-6?GP.5462&".7'67>%67.6%"&462'.'5"'727/467%6%  44(3)444$$@ $,G!$ !%%!< %  3. |  % .45#  $ 5w7 !5 $ I '7'7bbbbIbb@ '7/7'bb"bbb@ 7'?'7wbb"bbbV 7'7/7'bbb7bb 7'bb bbI@%'7'Ibb^bbV@?'7bb^bb?7'bbwbb$%5'535#5##33546235'"&462k++*++kU$ E5 ++++ 5E&@@ &*3'#"&467'!'7 35#6&'#&'&/"'54'&'35"264&)(5FS  'j-%( *)[_@F] i   , ,  #,%#53#53'#53#53#53#53'#53#53#5375'#!5******************@@+**++*++*@@*#."#"3!2654"&46Y!(!Y*  *    5%!5476762'2"&4672"&463#."#"3!2654& . %%6%%  Y!(!Y*+  &5%%5&U   * &"&462#53#53#."#"3!2654&  ****Y!(!Y*U   +*%%'3533'2"&463#."#"3!2654&k@V@k  Y!(!Y*@kUU   *%%#'73'2"&463#."#"3!2654&UUkkUU  Y!(!Y*@kj@   *&#."#"3!2654"&46353!3Y!(!Y*  b***   U** *#53#53#532"&463#."#"3!2654&k@+  Y!(!Y*+*+   *$7'77'2"&463#."#"3!2654&U7  Y!(!Y*UV7   *y@bkt%"&=46226=.5462'226=462".=.5467&"'675462."'6754&""264&#"264&@,  ()9) &(%; $/B/$  ( g   u& & MSr((K K%%r( !//! H  $%2>4."2#".54>'5.O..O\O..O.*O< 4.2#".54>7'5!!7135#(E((DRD((E(00&0D45U++)DQE((EQD).08/&0(N(<@+@UUk (1:2".4>"2>4.3'"&46;'"&46;'"&46;@.O..O\O..O.#;"";F;"";8 1; Q U , @ k.O\O..O\O.+";F;"";F;"+P2;w  k  j  %+35"2>4.2#".54>7'5/U&k'|)D((DRD((D)0&0&D4U'k&E(DRD((DRD(.0&0&'O'<%+75"2>4.2#".54>7'5&UU')D((DRD((D)0&0&D4'UU&k(DRD((DRD(.0&0&'O'< "-"2>4.2#".54>7'535!7'!5(E((DRD((E(00&0D4+UU)DQE((EQD).08/&0(N(<@@UV@@V ''77'wwwwwww7wwwwwww+"3!2654&''7'779*ZMMMMMMMM*MMMMMMMM!"3!2654&!!''7'77***MMMMMMMM**HMMMMMMMM 2".4>'77'7:b99btb99bMMMMMMMM9btb99btb9jMMMMMMMM %%".4>2"2>4.'77'7.O..O\O..O.:b99btb99b77777777.O\O..O\O.9btb99btb977777777 3'77'?2+323#+"&5#5346;5#"&=463777777777V V V@77788887^* * * *375'7''7'ppppMMMMMMMMppppUMMMMMMMM375'3#'5777'7'pppp|WW|WX>>==>>=pppp+W|WW|==>>==>k/?%#5#353+"&=46;2#5#353+"&=46;27!"3!2654& ++ @ @ ++ @ @ * @  V  @  V k%.#"3!2>54& X:-M 4";#198I/'#8!";#1*=k7'777.#"3!2>54&J,o; X:-M 4";#19UK,n8I/'#8!";#1*=#%#"&46;>3232"2>4.`%%-#2 v*O< 54&kkk@Vr X:-M 4";#19kkUU?8I/'#8!";#1*=k*%!"&46;>3232'.#"3!2>54&#22# >( 6 %% X:-M 4";#19@2G2%0 5 %6%8I/'#8!";#1*=k/7#"&463';7.#"63232>54#@;"8!";#+B X:/& 6 %92G2e;#:D;#*e8I 5 %.*= $("3!532>54&'.3#7353535.L 4";#19* X/'$8 #;"UU1*=8Iꖀ*+048<@%264&+54.#"#"35!7+!5".54>7>32353#7#53'3#%% 6 (> #22#*91#;"4 L.:X窕k%5& 6 0&2F2jj=*1UU";# 8$'/Ik**k%#5#77.#"3!2>54&+V@kk2 X:-M 4";#19VVjj?8I/'#8!";#1*=463!2#!"&535#535#3#3@*@U***UU*U++++="+32;5#54=3532;#"+535463"&=#5******U*U+jj+U*U+jj+k3#3!35#35@@@kk@@k++V++ 73#73#53#'3#'"3!2654&#kkkkkkkk*++++++*'7/"3!2654&#bbDDU*"bbDD|* %3#53#''7/"3!2654&#kkkkbbDD *++MbbDD|*7'?2#!"&5463"bbDDU"bbDD|* %3#53#'/"3!2654&#kkkk>DDb *++MDDb* 73#73#53#'3#'"3!2654&#++kk++*+V++V* '757/"3!2654cvww;;*5<994&/.46x###$end%ZdZZdZ$ene7463!2#!"&57#"&46;234&+";2+"&5#;264&@*   *+++   *+++U,,>+,,>+@ %7'7/7'7cccc^bbbb  #8;75757'5'7/73".4>245/&2?'5bY'Y2Y2HY'=(((9btb99btb9Qzzzy&4;;4!6;4!!4;):b99btb99bQQRQP&3!5!%#535!;26=326=4&+++2$#2++@+$22$@@ 75!'7'7=#72++"&=@+%YY%+++2#V#2+*&YY&@@k@#22#"+%5+#54>367.#"!5265"&462 1 0:+$,=,,=,Uo1& O2*+5,,=,,!5!@U"&=#"&5463!2+# VVO @O"+"&=#"&5463!2+#754'&"7"264& VVO 6 U$ @O ##)2"&=#"&5463!2+#773!%#54762'2"&46 VVO B 6 U$ @OBB* ## "&=#"&5463!2+#75#5# VVOJ*** @OꀀU++#'"&=#"&5463!2+#773!7#53#53 VVO B**** @OBBU+!";;2?32654&'77V OJ,n@ OK,n%"&=#"&5463!2+#773!7'7 VVO BJ, @OBBK,("&=#"&=463!2+#7735!'#463!! V+WO BiU+U+ @OAA++"&=#"&5463!2+#773! VVO B @OBB+"&=#"&5463!2+#773!733##5#53 VVO B*@@*@@ @OBB@+@@+ $"&=#"&5463!2+#75##5##5# VVO++*++ @O++++++#'+"&=#"&5463!2+#773!%#53#53#53 VVO B++V**U++ @OBBj+++++9=";;2?32654&#!#5#7"#346323467>54&35UV OVB$b   *#7*@ O*BB   +++"&=#"&5463!2+#773!77''7' VVO Bt77777777 @OBB77788887 $"&=#"&5463!2+#!53535 VVO`*֪ @Oj**U++U++#'"&=#"&5463!2+#773!7!!3# VVO B+ @OBB++* #3'32654&#75#";3#jjjjjjjj+++*+%?'"2>4."264&/Q*O< "2>4.EE&  *O< 4.35##>.O+ ** +*O< #.O.++ ** 54'&'&+54'&+54'&+54'&#2"&462"&462"&462#1"&51462"&464X44XhX4+ +  5 2 xx  h 4XhX44X4  + @U* @kU\!2#!"&5463#13/76765&#"#767#35?67656'&"#7676762'#5573UV2Gn!! !7   &  &Ck+ 6$$      +{ #ajwx72"&4632"&46'2"&4632"&46".547&57.>7&76767626'&/>76''"264&'2654&"67DG  _  ^";F;"$#-   4   -#$#22F22##2F2P@         ''"+           +"$$* #22# k!5!!5!5!"3!2654&VVV+k 5!5!2#!"&=463!!"&=3++U@+++jj*#37;35#"3%#3354&#;5#!#326=#%3!26=4&#!"5!5!5+UU+UU+D+UUUU++k*V*VVV**VUU**7##3;3535'354&+3*VV*V*UVV*VV*+*##3354&#326=#!#;5#3535#"UU+UU++UU++UU+UU+UU+*UU+V%!5!5!"3!26=4&**U*%#35#";2654&k+*+*k%!!5!"3!2654&@+(7#53>7533##5.7"2>4.A,,/J,*,J/,,/J,*,J/)D((DRD((D*,J/,,/J,*,J/,,/J(DRD((DRD($12"&46#53>7533##5.7"2>4.#22F22,,/J,*,J/,,/J,*,J/)D((DRD((D2F22F2j*,J/,,/J,*,J/,,/J(DRD((DRD(k7'77#!"&=!k+uKKu+ *kjj@ %"/&=4?62'7   ` ^^ ^^ GGGG%"/&=4?62'75'5   쀀*` ^^ ^^ GGGGIHHk 75''%35'75%3535UQQQVUUUj@@kWWW%.// ++C1d1dd1d**U++k #533##5#5#3'35#5#%35#35#35k@@@@@+@@@@@kkkk@@@@@@@@@@@ !'!%;267  ++V*{!'!"&5476?;267  %  %++V%%j{&.%64&'5##5##3#3353352654&'32+#532l$+*+@++@+*+#2VVkkk=--+++**++++2#'m$V$)%"&'37#&4737#>327.#"#3#33267'@'B{B'3'&B$>cKVA`c>$B&'5)"+  +")"&G9++9G&"3!267'+654'35#.'&546327.#"#3+0% &i KZ+&( <% 5  5 #(&/ + # ,!* 6  +  +3#3###'53267#73.+FD+:(66*c $6++)<+%+"%)3533533#3##'##5#535#73'3'5#'35U++Ia++++++Ia++++VIz11+*++*+*U**+U**##3#33535#532>4.#532 ****+UU` 66 ``,,+*+@@+* 6@5 +>,53772>53+55755+UUUU1+(E(+@@@{`5262635^1(E(n(2(3(2 +"&'3535'7AA399UDDDq+@UUgDDD#'##!;265!JjJ*k+V -:C%5#535'2"&=46"26=4&72"&=46"26=4&2"&46@%%6%%  %%5&&   U@++*%@&&@%* @ @ *%@&&@%* @ @ k   V )%535#5'2"&=46"26=4&2"&46@%%6%%  t  U@++*%@&&@%* @ @ k   @%2"&46%'7.#"'>32$!QM-)H0*2>51'"".5;".5+@@+@@.O..O\O..O}.O\O.)A.O..O.%.O.@*@@*+'/''/'''B/%'+'!'"/%#52".4>2>5'"".5;".5@.O..O\O..O}.O\O.)A.O..O.%.O.U**+'/''/'''B/%'+'!' ,"2>4.2>=".2>="..O..O\O..O.O\O..O\O..O\O..O\O.'/''/'@''@''T@''@''%+"/76;5462%Y   U#-  y355#3'35#'735#7k[[kF[[Fk[[kF[[@kF[[Fk[[kF[[Fk[[(767'&6?'7&/"&546251'21&R/5  C.jj e+ @  d&/"&54625#/5  C.e+ @  dk-73264'&'&'&'&46753#4&"#5.+&4&&  *!@!*+&4&&  *!@!*"   7-//-"   7-//-k!!+ #'+/37;!2#!"&5463!35353353353533533535#35#35k*U֪********j*j**+*UU******@******@******@353#U**+*32+"&54635#3#3**V*++V*+k3x@V 3733##57#+UKK+UKK@UUkUU 3'3'33#'3#'3#7'U@jVV+@*k+*@j*V@+@UU@@@@@j* "&*."353354&#3#54&+326=4&#>#535#53'U*+++++VV *++++"*"UU*+  S++*!2#!"&546"264&k*$*$$!!2#!"&546"264&"264&k*<##*+####!*!2#!"&546"264&'"264&"264&k*$}##*$$j####!*3!2#!"&546"264&"264&'"264&"264&k*<####*+########!*3<!2#!"&546"264&"264&'"264&"264&"264&k*<###|$}#*+######j$$k##!*3<E!2#!"&546"264&"264&'"264&'"264&"264&"264&k*<######*+####k$$j##j$$k## %5##546;5'1&"2?64+V* kJZ5@U 5Kk7"&462'"2>4.35#35##.N..N\O..O****$$.O\O..O\O.+$"&'7&54>2714&+326#5321'F[#9asa99a:?7QP7@u  V,-:b99btb9/;<lA##57!"3!26=554&##5#53533@  UU I*++++*+  KUUK ++*++V %!5!'2"&462"&46*$$*####%%5#%2#!"&5463"264&"264&k   ***U     !1"&462%!"3!26=4&"&462%!"3!26=4&# V # V ## ## #'+/39%#35#3#535#535#53'#53#53#53#53'#53#53#53#5375#!+++++++++********U+++++++++**++*++*++**++*U+%462"&'462"&'462"&U$$$$$$$$$+k%2"&4672"&4672"&46$$$k$$$$$$ 7!5!%#5##k**UU+ kV #'+/753353353'53353353'53353353'53353353++*++++*++++*++++*+++******U++++++U++++++V******  #'753'5353'5353'5353'5353'53@+++*++++***++++*+++++U++U++U++U++U++U++U++U++U++ @ #'3#73#3#73#3#73#3#73#3#73#++U++U++U++U++U++U++U++U++U+++++*++++***++++*+++23#5#".4>+! + 5 5!++  6@5  %#5"&46237!"3!2654&?..A/|*@|/A..?*/!.=76='67&727#7&#"3273#"&46(E(2W7 {%U&$ *#22 AY-iBB| VV:kMV'-2G24#5##5##";&'#5!54&27#7&#"3273#"&46++ *'%U&$ *#22++++7 U&,2F2/A%#'##'#"&46762!2'7353"&4632"&54&"&54.#"&46320*F %    F*0[% #2    ";# .O.+KK    KK`  2# + #;"  .O 7'7'7'377'@kjjjkkkkjjkkkkkk7636'.'&'267656'&'      *    R +    ,YeX)!     &    % 4F5,*1/),6D5;"264&727671+'&'&'&547>76'"'&'&/7> 1>0(  $   $ =U@1.   % &    *9%7''7'''7777'7LL--LL--LL--LL--%6%.+54&+5326=326=.5473"2>4.~ * *0;*D(f*O< 54'325"'++3'&54>32& 767>'&'&&  ("*#  1r  !R> c?!% TQ &74>@lx ?3  " )?YG'+&)'  K 5IV!!!*U+*0 )57%57'PPPP/`/P/`/`.0 3577'577@PPPO`/PO.`/`/P !##5#'353332+"&=4635V@+@+V@+@UUUUUUU+k'575!"3!2654&Vjj+kk+7'#!"&=46?U jjkk xxk4&#!"3!265'!57V*V@kkjjk3;%46754>254&#!";7'54&"";26=4&+5462 /5-g%.%  v &@< ,+kk+jj    K  K   %6%267#'264&"3264&"".4>2"2>4.%; ;& =.O..O\O..O.:b9 %"&5#"'&5#2>54/"!.".4>2"&'7267/$ $/.O\O./N(N 267".547&4."2>'"&="&57"&'7267 =ELE=.$ 7".4>2%"&462"&462"&'7267.O\O..O\O.* 4.".4>2'"&4627"&462#5*O< '&'&'&'6'&'&'16'&'&/&'&'&'&2;'1.>1&'1&67"#>.">&#62?636"'.76     %(TD.      # _$"#        : T    #&  !&   &1&0 /%!%$     g   &/<%4."2>7".4>2'2"&46"&4622."'>.O\O..O\O.* 4.&5462."#"&5#537."&5462*O< 2"267.%%6%%11:11O%6%%6%1:11:1 YGGYYGGY#454&#327#".54'3277267.#"6D%_!%!1j0 7O1,H1>2O,).C%!%! 11 ,?GYGzU1>)54.:b9/R366+% < 24R.9b9b:5[<>/',5 (><[4:b9 #'3#53'3+3#57#57#"353354&#53@GGGGU*+*+**U****+U++U+++U*/"?632>4./&"&?>?6;b8#  *!;b88bE? 2 C ? 2C 6^;-O&  6_u^6c  %4 c &4  735'3535735355573UVVVV*VVVjkk@@++U**U++U**U++U*UUUUU@%"264&72>&'&'#"'.6767&'&547>67.6  "  'M0 #" ' &%"  'L0 #! ( &   #" ( &%"  'L0 #" ' &%"  'L0@77'@k "+4A#5#!54&'3##53"&462'"&462"&462'"&462%"26=4&*%ۀVVV*    7    ,k%@@kk   @   @   @   ,@!'327672767;76&/54&+5##""'"'+32727;5,0( @@ -)'\')-**,*(Z(*,*@T))    c@@c ++5%"3!265'vuu3/3#!"&54635#35#35#vv'++V**U++u VV%'77";&4>325'#jK +J#;" vvUjJ *J E;#l u!3/3#!"&546.#";264&vv,& !%u V%$3& + #"3!265#7#53'5+k+@+@+vVVj+uu3/3#!"&5465#%5!vvu V++U++ %#537#535#537!"3!2654&+@**U++*++U* #"3!265#'#7'37375+Z&++&>>&++&>vII``HH`uu %#'#7'3737!"3!2654&Z+//+EE+//+E*UQQkkQQk* "3!265'#3''7vvV-<== uE.==<(7264&"5'#"3!27'#".4>32%6%%6%뀫 ^ ''1%%5&&_'+'1 3/3#!"&546;5/"264&vv@U+U#u VU*k## "3!265'#7#7'vv?=--< u/=--<7:%"";26=46&2#546";54?6=4>325'#%  v  % @/vv   K  K    Q,H u3/3#!"&546!!"&5@uuDV+u UU+ #"3!265#"&463253=+*$ @vjk$q+uu #"3!265!33++kVk'>B!"3!2654&"&=3353+#5323#353+"&=&6;2#3#*&  k  6 j5     * `5 + @ $  F  %/37!"3!2654&+#532+5323#3##533#'3#*  6 j 55 V @k* + @   + @@ '*%#326764'&7#"3!265+#532'5 +-  g /"Q@vE   Guu %7326764'.+32#!"&5463532#5  [&f1 B +*M %!5!5!"3!2654&**kk* #"3!2655#535'5+VV@7v*++@uu3/3#!"&54655#35vv@u V/// #"3!265#'#'37373'5+g&&/ && \v+uu %#'#'373737!"3!2654&K ++ 3$!**!$*U֠U*3/3#!"&5467'7''vvO22P11u VO12PP21!%)-153546;2323#+"&54635#35#3535335#35K ^  C+*++*+++  U U++++++++++++ +#53#53#53'#53#53#53#5##5#3533533++++++++++++++++++++*++*+++++++++ $(+7'#5##5#5##'353353/5'#5#'P++++++++++%++eqP%++%%++U**+++++D%*V+++%"/&751'&>3!2+*{ * { + } %"/&75'&>3!2'57@ Vf * fU*U V n zlu+k !%7'77''"/&75#'&>3!2;<<<=<<=3!2'57:==<<<<<2"&54."7"'.54623276"#.'.54622654.#"&'&547>32"&54&"|8 @7 ;F">! 03wb  ,.m-, !7B7!.6. &   8%&7&%*G*-N  W40Q/&7&% a   p .2- ))(455++/# (1)  ,:%%(C'/'"'&)+'-6-M.%%2-G%&/&'&'.7'&'.7767>/&''&'>76/&7y  )  9 $!# D      E"j2<D# %M%      o0'09.'&'&'&/&50#176732&'&'&'&/.'76767632674'&/&71&'&5"32>?644   !   &     9b:4Z< ' ! ! " 8; $    !   :b9.Q2:V/8%7.'#2764'>7'27"264&4T      8&#+! 1!"!2! ]  @( C # F   : ,    k '#353353*x@+*k %)-3#'##33535#5#'5##5#3#35335'53;#3xx**++**++++++*@***@*k++***++++*++++++**+k3#'#57#35335#pH*xx@+++*.O2632327671"'&'&'&#"#467676323276?5"'.'&#" .(   (  -    *              k [Z  K 3#5++Vw.2632327671"'&'&'&#"#46 .(   (  -    *       k k3#7@VV 7'#3733%3#7g*E)D)f@UUNNx++%#7#%377kVVֵj@MX.kOY 7'!7!5!53'"264&@@@@  jj*V    7'#57#'7!5!'+eP@Dk@/POOϛjj*..7F734.72"&4632726=32654&'>54&#"54&"&#"2>5"@4X44X,s ,   ,  4X44Y34Y34X4 ,, f     3Y44Xk#"3!26=4&+ՀVkk $%#54762'2"&467#'#"3!26=4& 6 U$}+VU ##@+k2#!"&546;#5##+F*F[@+UU[k  3#'#73'77#'#"3!26=4&%3=?6fvm< 5+Vka6 ,.j9_+k?77#'#"3!26=4&k`J6J+VU`@`+k/7%#"&546;32&#"+"&=46354622'4&"3+$/  u  $.% 6@+A, K  K   1  k8%#"&546;32&#"#5462354&"";26=4&/ +$/\%.$  u  <++,O5  5 K  K k%5#5357#'#"3!26=4&+VVj+V@@U@j+#'#"3!26=4&#3!5!ժ+UD+k*+*?77#'#"3!26=4&#3!5!`K5K+UD+`@`*+*2#!"&546;!!"&53!5+Uk*+*+k%!5!5#'#"3!26=4&V+V@++k!%#"&546;32&"5##33535+E;#+@@+@+ +|#; @@+@@+k!%#"&546;32&"7''77'+E;#.----..+ +|#; ---....k2#!"&546;3353'+F*F[@+VVZ%)3267#5##5!#!"&%4'.!!$ $k*j0 A A!aa"@+_WW2$ 1!!1+*6%"'&'.""&'&'&76765'&'&/7676325361!     !1-&%"  *%&-,'.+==+.',, @  +k  %+"&=373#476767#53#2#@#2:"0- k @#22#+eR@ 6-?h++h?-6  3'7'7>7'74'.'&s xxYhYhs s( xxbhYg}s( t"&*>76.7>7'7'?7?7A!1H %5A!1H %]--X--->. % H1!A5% H1!A5-B--m.(--7;%"264&'2"#"'&'#'#"&4635"&46;7&+'4>37  1T0  "= P  0T.N/! '\  @  #/N.@@ !!3#!!3#!!@UUUU+*++*++*+ !!!!!!!!!!@+*++*++*+ !!!!!!!!!!@+*++*++*+ !!!!!!!!!!@+*++*++*+{k%#532'32+>54&+32654& KK X@@x1$!.u@ $2/"'V3735!377<3-"|4@!yU<$,P@{Ny!%2654'&'%77'2?64  #  fg%3n v  u   -ff3n  u u  3#'!!!!!!++++*+ 3#5!!#5#5!!!!@ի+++*++V**U+*+ 3#5!!#5!!!!@ի+++**U+*+ 3#%!!#5#5!!!!@Հ+++*++V**U+*+k 3353#5##35355733@+U++U+*55++kՀ+1+k !3353#5##!#"&4?64&"#4623@+U++U+ h #+2G2gkՀ" o $$22Gnk '3353#5##32+"&=335#535##546@+U++U+UU+UUUU+kՀ+U+Uk 3353#5##!5#5733#'5@+U++U+@kk++6kՀk**kMMk *3353#5##3#32+"&=33264&+"&=46@+U++U+kk+#22#++++kՀ++U2G2#Uk $(3353#5##32#5#32+"&=4635@+U++U+U+UUUUkՀ+UUUUk 3353#5##%'7U+U++U+_MMjjkՀMLjkk 3353#5##7533#U+U++U+֕kՀ**++k 3353#5##77'U+U++U+MMkkkՀMLjkk '+3353#5##73733733#3##7##7#537#337@+U++U+2++*$)-2++*$)-X*kՀ@@@@*++@@@@++++ 735#535#'!5!5!5535#իUVի*++U+++U+ 735#535#'!535#'7!5!իիUU*++U+++U+k 3#35#735/H'!5%#5&'&'&#"#'&'&767676^  "6O, U$1U, $ 3" +$).  ;+X         @ $''7'77#57>56&"'67633Ubbbbbbbbh    7"bbbbbbbb &  %''7'77#57>56&#"'>323Ubbbbbbbbh  7"bbbbbbbb@  k'&'.'&+3#527>76=#"'7   6  6   k]      ]%'!!3533535#"U+*++#22@U@*@k*2F2755!5'3533535#"VV++*+#22U@UU@*k*2F23!5!72>=#"&=#k*֕#;"5,>,5";+*#;"++";# #!!#5!!j+++++U+  "#!!3#%#53#%#53#%#5!!kU@@@@@@@@@+++*++++V****U++++U+  "#!!3#%#53#%#53#%#5!!kUUUU@@@+++*++++V****U++++U+ #!!!!kU++++ %54&#!"73267#!;4&k U U+ U V + U@ k55#5VV %+".=!(D))D()D((D)@!%3#5"&546;2##53535#3#53#++****@kkk@+ !32!546##5##5"&=!'3535++****kkj**@@!53'32##5##5"&5463535*@++*++@*kk@@!"3353352654&#3#3#735++***@U+@@@V 3##73#5#3#53##53kj@*j*@@*j@j*U*@jj@j**j@V %3##'3#5#73#5;#53+j@*j*@@*j@j**@jj@j**j@}#&3#'.'76?#537>.M<@ 6#"   @C6#" O=+l#. h+A#.  3535/#3?5#`@@u@`uu@`@@@uu@`@`uu@A!*332#"&'##".4>#33535#5"264&7"264&";##;"22";##; +++**3@";F;"";F;"@+*++*+@@ 8%"&462+531'327"&=4&+54&+"35326=4  O-   ,   j/O- `k@+/37;?#5##5#3533533533533533##5##5##53#73#73#73#73#+*++++*++*++*++++*++*++U++V**U++U++@kVV++++++++++++VVkkkVVVVVVVVV#8AJS"2>4.2.#".54>"676&'76&'&"264&"264&3"264&*O< "264&#;"=.++*++.=";##22F22k#;"0G,+**+,G0";#+2G22G227#53#5".4>"264&)!mb+m";F;"";##22F22m+bl")#;"";F;"+2F22F2 )#53#53##5#535.54>32"264&wL+Q0%+++**$11 :%%5&&k*MR &;,++++,;&1%6%%6%/8#53#53##5#535.547''7'#53#762"264&b+g1%++*++%10+M0A;%%6%%+bg &;,++++,;& 0M+0%6%%6%!"77754.2"&4632"&464X4@@@@@@4Xt$$3Y4@@@@@@4Y3####,04=FJN%#!"&="&=46;&54632171>323235#5#"264&3"264&35335 D% %D wVU  w  * @ %  % @ V     V****3?2654&'5264&#"'6.'762"/&47|$ $ ,#7 $ $ $ |% v  g,$7 $ $ $ -6:>B'7/'!"&5463!2&#"'"!54'&'&'"264&#37#35#34/>>/I$1#;"! %%5&& <(99(<7* ";#   &4&&4&U@@S"6='&'1&'&/&4371767&'&547&5&7326267617>54.*O< QA%     , 8 +@Q '&'&'&'&7367  #L>0MM0&&35'!3!575'.=46;5'55#իQ @*@@k@@*& +V3#35*VV@@_=C313#4767367676&'&'.'&'&767676'&'3&5        *b  !  QQ  !  *!" 7;2>=!+".5+(D))D(V11@)D((D)@+116F7";26?6&##"&/&6;26676;2+"&/&"7";26?6&#@   @ +@( ## )@++ @    ?  D $@''B#":<! A  A k %#5'#3735!"3!2654&++V@PP[[+ !+P"2>'&"#>&">'&"64&"32>76&'&76767676'.$/ fO$#&,&*+-!#  */4&&4 $'##*6 $(  %T)     )%#3#".4>217'&'&'&#"32>54'Ë+&5)F*)FS$ ( !;20:804>9Z3:9 (GWG) *  cmc0Y9A&/!";26?>2;26=4&"&4623"&462  f f ('@  J J  (((( #.?%71654&'3'47327.7"&462'2#"'>7"2>4.J f .OJ ' 4)C'%6%%6%@/N/2G(*O< 73267264&"72".4>c5Q/5X3*I. &/";#)B&&5%%";##;E;""; .I*3X5/Q5 B)#;"/%5&&5%#;E;"";E;#&/8%"264&".4>2"2>4.4&"26"264&@$R.O..O\O..O.*O< %"&462'"264&'"264&"&462'"264&72"&46264&"$#22F22"$#22F22]$#22F22+##2G22G2(!!##2G22G2$$2F22F287"264&"&4627355#'">2"&'32732>4.#"&k#$22G22RKUUKuj}l??l}j@#/N..N/#@$$2F22F2j@UU@2;2"/#33535#53"264&"264&3"264&"264&? 7&&7 ?****  , D ,  k@ %33% @**** %     % k(1:C7'#"&=767335'72"264&"264&3"264&"264&+ef? *&7   , D ,  P@ !6*%U3% + %     %  7!7'#IJI uu.7%.27>7676&7&'&76674'&'2"&46@0/)7G$ 2DO1;.6PJ#  |W~~~~,& 7 7  $J ''y  ~~~~!"3!2654&#5#7>VW ,  V %'&"2?64'7#'7ȧ& & Օ5``` & &```A#57!"3!26=554&#53@  UU I+  KUUK *J[cs}".4>2'"264&#"&'#".'#"&=46;&4>2#/32'"2>4.35#335#+2>75#2>        3   $g         o(q(!] 0  ^C     B   cd   "         !!kxt  ,]z  7467.%?'7'@  'x 1661 j |+  551V &%#5##3353%3"&4627&#"2>54'++**++UN55K));)E((ESA$++*++*37N7'((DRD($B+"&"264&"&462"264&73#53'3##22F22#$#22F22]2G22G2##U2G22G2****.2<U#'#";32654&"&462'&"2767#5377#'3&+7'77'6735#5##'32$33F () /T/\  U  +:: M) U@@3H3 * !&/$ ?  +;99#(V  )2D!"3!2654&#5#!!462"&462"&7462"&!54632>2632*  *kb\( '*' (  Vz  G    #33533535355##5#75#75#35#'!2#!"&546V*VVVVVV*VVVVVVVVkVVVVVVVVVVVVVVVVVVV  "&),/48=7'!"&57'5#'!2'5#'35#'5#'353353'%3'3'5'##5#75'#+*$+O*$+OV*$+O*VVVE*VVE;+EO+$**%*VO+$*VVVEVVVEV'+13#35!35#35#!5!3#!5#3335#53#73#53V*VV*@UUU*j@VVV*V@*U@+Uj*3#'2"/&4?67'73"p$+U'O 2<[=+q+ O&U<<=!&'&'&+"276?676'&*("+  -)$i  *&(S@#  !9Z(&*!K&'&'&+"276?676'&#1"'&/.'&/&5&767276;2*("+  -)$/#%   ) $" % i  *&(S@#  !9Z(&*gW3   >L#  $i2++"&=4?53 _/ ]  Y$@  j  i Dk"%"3462#"3!2>&/5>54&!,+   ,k,  &  ',` %#7#53#7#537";67>4.@  @U  @ $B33B$ 3'&+1S**@@**@3CHC3K+)daT0&/8<!2#!"&546"3'&6?6>54.2"&46"264&77'#;"#;$)";#  b  d57ZV*#;E;"/ 34";#k     e r";5#54>2#326=4.4Y3%@U(DRD(U@%4X4X4&+(E((E(+&4X4+7"&=4>2+5354&"3!"3!2654& ";F;" ;*2F2**@ f#;"";#f U+#22#+U@*"&*2+5354."3#"&=4>53#53#534X4%@U(DRD(U@%4Xt+*+4X4&+(E((E(+&4X4++++++"";5#54>2#3#326=4.4Y3%@U(DRD(UU%4X4X4&+(E((E(++&4X4k.7353#"&=4>;2353++5354&'3!+$++#;"";#+++$V@.k";##;"+@@.+).;5#535377">32#6=4.547 , %U%5(G8)D(Uu 4XLZ, #&+%5z6(E(+u4X4+L'&'&'&54>32>32E+6 22 6+E>,"'' 66 ''",>&!2#!"&546?67654&#".#"k*2" "2*-" "-&*%/&'&54632>32!2#!"&546!2" "2**U-" "-*+*'&'&'&54>3272'7'6E+6 LU 6+E`9#>,"'' 6k6 ''",>kl6%'&'&'&546323>32".#"76767654.@(+ +(+ +(22 6+EE+64:(! ** !(6 ''",>>,"'' 6&73##476767>7>&'"#4>@@+7$!!  @   !"%@";+@" `*   # 7(%#;",%#54?64&"#462#53"2>54.A * $*2F2@***O< 32#"&'32>4. [K 4X4@UV@(E(7*)D)6F'4Y33Yj7-4X4VV)D(*7)D(4XhX4$M2'&'&'&/5&714767632#"'&'."#"&'&'76767676(".!",%%,!7'@0%  ,+   +,  % ##  # U"    " 753353'3Vj@@346372#5#735#'35#35#U****UUU@@kk+@@UUU#5##kk";Jbp%&'&'&'&'&54767676?7'&'&'&'6767'&'&'67'&'&'7676767%671&'&' /!6        27    92     "(/ &,<<,& L7' u      /'q  j'/ "3 %##5#535337!"3!2654&UVUUVU*UUVUU*!%)-146;5332#5#35335##535#535#35#535#35#+ UU V+*++*VVVVVVVVVV@ UU jj**++@+@@+@@@ 21'&'&'&4>35335##5)D(&, (D+*++*(D)2H39#"1)4PD(U++++V##5#35!354&264&"+++2%%5&&+@@$2%5&&5%c %!;2>=+".=!'7M(D))D(*11VQW$H@)D((D)@@11@v %+"&=#5!#+++++ ##5###5!'2"&46+*+$뀀+j##2"&46#5#5!##5#%%6%%@++@*%5&&5%VU+2"&4632##5#54672"&465#7>2#$@ V $@77@##juuj##V  77!4&#!"3!266J`U*@`* ?73'%!"3!2654&@.@Rk65+R7Rm@ VV2#!"&=463!''*`J6U`@'32#!"&=463!''UV*`J6+VU`@!62######"&5463+5353=4&#!";53535353+*++*UU+*v*++**++*+*U+*++*+ '''5463!2#!"&=7@UVU@*@@@UVU@VVVAa@a@VV!%!!5!"3!2654&#3!5!%'3++n+U:*;U+++V+K2K%'#7535!"3!2654&*++*#,"264&#326=##3354&35#"3#;5#%%6%%zUU+UU+UU++UU%6%%6%+U+UU++UU+#,57#;5#35#"3%#3354&#326=#'"264&"&462k+UUUU+*UU+UU+#22F22#$U+*+U+UU+U2F22F2$$k/%!"&46234&'>3232'.#"3!2>54&#22F2+5)1 6 %% X:-L5";#19@2G22$,D  6 %6%7J/(#8!";#1*= !!!3735#'#"3!2654&+`LJ`VUUVV++KK+UU+@'!+P<"`@kQ%!!5!"3!2654&#3!5!++n+UU+++V+   &,2875&'67'767#'4&"26'#7&7'363&''&''56y2@.&~@2%D)+d%6%%6%+))+M+)2@.&~@2&)+"+):2@.C%%6%%@2%2@..@2&b)+"+)D%"&4627&'67>5.654&'&'&2767>54'674&#22F22l "E ## E" "E ## E"k2F22F2L;" #;;# !<;" #;;# ";%4&#!"3!26'7!'3!5!+?V+kg:Oj*+k%'#34&#!"35!!5#3!26+V++U@*@+@@@@ %#5###"&5#5!5!"3!2654&U*V*UU%6%U**@@V%%+*#53#53'"2>4.*****O< 2"2>4.35#**.O..O\O..O.*O< ";26=4&#2"&462".4>"264&!9!!9!!9!!9 -- --  e11:11%%6%%!9!!9!!9!!9!*- -- -  1:11:1+%6%%6% 73;26=353#@+++++%,2;>!32673#"''&676?>"3.7&667.'-I /$ qc>($0M%-1) 6P---z21 3!+ 5"*1%19Gc:0-)+F(U*!!*>+* 6!%: %1"&'&546?'267>&.&Zyyy  ?B? %5/Z5"&4623"&4627&#"53@    4AC2ꫀ@@l  l+` K &;54&#3354&#;354&&6& 6&&6& 6&&6& &6%&6 f&6$'6 f'6%&6 VFa%#"'&/&'&#"3276?62#"&46323264&#"&4?67632+"&5467&54632>24&'&574."'&#"326r         c4$%5&2'"264&U@@0/$";E;##@U@@0$/#;"";#e## V #'+;%#53#53'#53#53#53'#53#5;#53#3#53#7!"3!26=4&****@************@****V*j**j*+k*j**j**j*j@%!7'7'!LL.MMI 7!5!77'b@+b  "&*.>7#7#53#53'#53#53#53'#53#5;#53#3#53#7!"3!26=4&U****@************@****V+V+k++k++j+k++k++k+k  *.1587'#"&=475#5#'5#5#'35#'!2'3/3'5#;'z@ a******/*Z ~z+%%**@%%e@ [**@**@**@*/*Y ~+++k%e**%@ !7'7'!5MMD+VMM@ %3#!!7'**M/M@M*M+ #'+/37;?CG7!!5#553353353353%3#!53+53#53#53#53%53353353353353353Uj@*@UV@@j@U++++U@@@++*****jk+k+++++++++++k++++++++++++++++++++++&6G"?6/&"76?675&/&&76=4'&"36?6/&6 JJ J +IHHJ HH I6  7V IJ J*K H HK GH JV.+";26?x  ]C  V%#53'.+";26?UL)  ]Uk  ?CGK";#3#";26=4&+53#";26=4&+535#5326=4&#3#3#73#UUUUVVVjUUUU@+*+@@++@@+*+@*@@@@26"3#!5#26=4&#3#35#53"3#!5#26=4&#3#U@@j@@U++U+Uk++kU++U+U+7;"3#!5#26=4&#3#"3#!5#26=4&#77'7'73#U@@@@..--..-U++U+UU++U .----.. U /37;?C"3#!5#26=4&#3#35"3#!5#26=4&#35;#'35335335U@@+@@++++U++U+Uk++U++U+++U++++++V597#.5>32'&#"3767#737#73733733#3##7#737# %GGT?$  %0.( =    *  *    +  k4Q?IP5/0+22'2+73732>76&+73732376&+72+73732>76&+FuEEuuEEu  5 ;     6 ;>#A%; ;w& 'EN2+;+"&=46;26="2654&'"&=46;4&+546;2+"7264&"## \$\$$p#B ## \$\$$p#B $Q$$$$P$$9   '#P#$$$P#$9   %"2>4.'64'7'64'7'64'7:b99btb99b  6.9btb99btb9 ) ;#J$_E1d29rk!!26=4&#!"3#!5UVVU@+++ 375353#'7@UX0"*+ՀV+++dU ##353#3#3#3#++k++@@@@@@@@+++V*++*++*@ #37'!5!7U**M/M@M*M .2";23.+"&4637#23.'653;26=353#** + $ g. #++*;*! &. +++3735!35#"3!26=#+L++֕*++L*+ %?''7'####kz{ 7'77'7'7'FZE-K#jP8#>=[5";{RQ0=-73276767671167676767kV:0") PA4(  6 TC1% %*"(-&;$I19-P8D"  # 7)# A"#33533535#54&#2+@+*+@+2@2#+kkkk+#2 $(357%7"#33533535#54&35!35*qAA@F#2+@+*+@+2UUUU1@@@2#+kkkk+#2@++++A"#33533535#54&2#546#2+@+*+@+2#V@2#+kkkk+#2+kk "35#54&#3353357/+2+@++P'+#2%+e:O"#33533535#54&#2+@+*+@+22#++#2"#33533535#54&2#546#2+@+*+@+2#V2#++#2+kk264&".#2>35"%%6%%'b77b''b77b&5%%5&K$'($$('#'2#!"&54635#75#75#5#75#75#*************++k**j++++k**j++&#3!5!#"&4632537!"3!2654&U*++@, U+@*v, u@ $%##5#535337!"3!2654&#3!5!U+UU+U*+UU+UUU* ";26=>54.;26=#)D(" "(Di V (D)%A1 1A%)D(k  12+"&=.54>53+"&"35>54.)D(" "(D V @1$V$1(D)%A1 1A%)D(k t1 5 33 5 1+(746;5#";5#"&735#7#32+32>4.S'VV11VV'XVV''VV11')1:1)'*V)'6')1:1.#32>4.#3%;5#"&467#337kVV' 13.*B$1VV'",:0%V+)'#2<1V*B 6!1)'4&,*1%Ue=7"'.6717>6'764&"762.6?2?64'&4 K77(  &5KOK77(  &5K 77L(77  5&L5G77L(77  5&L51=7'.6?2?'"'.?>6'764&"'62'&'&4+eg877(  &58# j77(  &5GV &Pg8(77  5&8" +(77  5&G#:&"+/2#!"&546354&#"5#35462'264&"5# )<<,;*q) j  jԳ@ 7!!5!3#@*k+++='&/&676&'&'&/&'&'7676>7>>8 364;; 3   E+[D      D422 22A  E9)"+%264&"72#!"&=46;54>2'"354&$1:1k%%U$$+11+k%++%(2#!"&=46;54&"#4>2264&"%6%+1:1k$+%%11+$$#,%5!2#!"&=46;54&"#4>2"&462%6%+1:1k$+%%11+$$ &/%"&4625!2#!"&=46;54>2'"354&$n1:1k%%U$$@+11+k%++%75#535'32+"&=33##546Օkk**U@V@k++V++%5#535'2#5#353+"&5463Uk**U@V@k++++VA!"34>234."34>234.@l?+4XhX4+?l@(E(*1:1*(E@?l@4Y33Y4@l?U)D)11)D) +%".4>2";26=4.##33535#.O..O\O..O.*O< =##".=735#35#@4XhX4U1'UUUU+4Y33Y41'*@@@#2>=##".=735#35#737#@4XhX4U1'UUUUU+U++4Y33Y41'*@@@ u23'5'#".4>"264&%@%!j j'3&@%%@&(88P88%@&3'j j!%@K@%+8P88P823'5'#".4>35)D( *'2)D((D,(D)2'* (DRD(**!23'5'#".4>#33535#5)D( *'2)D((D@@*@@(D)2'* (DRD(@@*@@*@ %746755.%"2>4.##5#53533+.'9GG9'.4Y33YhY33Y7V*VV*V,I/czc/I3YhY33YhY3VV*VV%'57"#'2?7654&@urxrx+--X--),-)B%"&462'"7676764.,)D(  (D,,(DP4)1"##"1)4PD( &:%".4>2"2>4."&462'"76767654&.O..O\O..O.*O< '&'&'&5467+, (E('-!)D5+!"264&".54672>54&'7#;"";#$.O\O.$ ";F;" $":C-#))#-C:"U##''#    #k -:'''"&=462'"26=4&'"&=462'"26=4& * +%%5&&  &&5%%  kk * &+%%+& + + +%+&&+% + + A"%!"&=463!2%5735#'#%#5##  n )))))))<)))>@  54&jL kjM tt '!#!5#575!++ukk+**++++c7575''5777577'57kklVl^Jd>>{ JJ>2>^ wV  "%/67'+57&>3524&"26'f% {'|& +   -R%-5"* !  !+/3;"#"&5+264&'.462374&3532643733732+i$ &)7$ %#<'##q;%; 9$< +   +  :2  746755.%"2>4.#53+/&9GG9&/4X44XhX44X7,I.c|c.I4XhX44XhX4*37;%#535#54&+5##5##"#3#3;35335326=35#5#537#3kU+++*++++++++*++++**+UV++++++++*++++++++***+@ !!!!!!@@+@*@+k77kkkk+++kk+kk@+?'kkUkkk?kkkk !"7!2654&U+U%#53#537!"7!2654&****U+Հ+U%#735762!"7!2654&+u %U+++6& U?7!"7!2654&kJ6J`U+`@`U !"7!2654&!!U+VU %#53#53#537!"7!2654&k++V**U++U++++++U 4&#!"3!+UkU !5!!5!!5!74&#!"3!U+U+k+k+U !"7!2654&!!#537!5!U+UU+@+U+ 2#!4637!!!3#U=U*@++*%'#53?!"7!2654&UU+U+EEDDUU "2"&=46#5.5332>5%%6%%!;$*$;!*'1%&&%%@)AA)@%'1 (%'65'5462''#5.53327'"&=' 1%6%eY*#;"$5#%$"%%+YFF)>#1 #&,%".5#35>5'462"&526=4&"q5:5$";#*#;"%%6%%11#>)FF)>#   >&%%&(,%#".5#35>35#35#726=4&"35#$5:5$";#*#;"U++U**%%6%%P++22$>(FF(>+++%&&%+'02#46#26=46;#""&=#'&'3"264`$2#++2F2M  2##2j$2j$22$*   %187'"&=#'&'72#'>'3#26='73#"'>27'+e;1E2 N#2Y: O+B"$9++$ * P:!/2$ w2#: *%8c$+  3##537#5#53+k#!2#!"&5463#35335#535##5UV4.kk*O< 2"2>4.35#.O..O\O..O.*O<  *@&/%'#3#"326?264&##"&4632#"&462tV^M*(88(#5-8P88(= ,U+*8P8-"(88P8q , & ,, 32>=!734.*D(.O\O.(D0I+.O..O.Uԩ+I0"7'#".=3'#4?#'>'7#+e<".O.P+%k9 *D(P.O.U+l U0I+ ,#546726=46;#"".=.=3+V%11%1%&5%2$**1:1%1+h;&&;hk&;%%k#2k11;&@'47'".=.=37#5''6'33267'746;#"'+e1:1%1%V%18DDV& Hb2$**+P1;&@+h;BW8D%IM#2D*k#'##'##'#"3!265+@+++@+**@*VkVVVVVV+37'#5'7'7**M%MN%NM%MN%N!2#!"&5463357'7'5#'7*=<<=*=<<=*F#%##%#FF#%##%# #"&4632537!"3!2654&U@,U@*u , vU* !#"&46325372#!"&5463!U@,U@*u , vU*+* 5#&#"26='2".4>UU,*O< 54."#!5#%<#(EQE(G6*h*A%)E((E)7S T**)7264&"%4."#5354&+"3!5#5>` (EQE(G6 @ U@%<#')E((E)7S T@V Vj*S*A77z@@ 7'77'77'7'77'7''<=B--[..`|<<3B--[--a %%2>4."2#!"&5463462"&#;"";F;"";@2F22F2@";F;"";F;"@*#22F22 ,%'654'7'2&#".54>7"2>54.j. .~2'.#2.(D)*O< .'&#'574'&'.'&#FN'>#B^Q -5^4/!L#B^P,5^4/!k4%2"&46'32#5#355#"&=46#"&=335#'732$*+@@+g*+@@+$$@@k+@@+k@@k+@@+k.#"2654&'53#535#!!!5!"3!2654&k $ @*U+VV@0  0++V*VEw"326=4&+"/&=4?6/&#2?>=4&/&"#"'&'&+"3264'&'.54762;265.  )  ,( 5 ""'G  /&)' 1&[ \\\[[0   2   %5%"3!26='+u*uuՀ%3/3#!"&546!5#5+uuՀ*u *+֕!%25'#";&54>'###5#5353#;Huu@+@@+]";#u+@@+@@#73325'#";&5###5#5353kuu@+@@++*]5u+@@+@@%3/3#!"&546!535+uuՀ*u *++U+++ 7!5!!5!7!5k*++U+*++++375#53%+535#535#532#2#546;5#532+U*UUVV++VV+UU+U++++*++  +V++++#2#!"&5463";26=4&#3#*****U+,0%!2#!"&5463!!"&5!32+"&=4635+UU+++U+V+V+U*#'%!2#!"&546332+"&=4635****+*U*U+%#5#537!"3!2654&+++Vj*U+U*"%!!5!"3!2654&35#3'#3!5!++*U++UU+++**+%!!5!"3!2654&35#3**+V++*+*+$%+3#546;5#5327!"3!2654&@*U*UUU*++V++*(1%#5326=4&+3#"3!!5!"3!2654&#3!5!kV+UU+U++n+U*+*+U++++V+(%#5326=4&+3#"3!!5!"3!2654&@U*UU*U**++++V**+*(%#2+535#535#5327!"3!2654&@ UU**UUU*  ++*++*!%5%54=4&+3#3#326%#3!5!%!!5!"3!2654&k UU++UU+U++  *++*++U+++,%54=4&+3#3#326!!5!"3!2654&@ UU**UUU**  ++*++C*+* %#5#533537!"3!2654&@+U+*+U*UVVVU*%!!5!"3!2654&35##5#3**++*+U+*+*VV.%54&+535#3#326%#3!5!%!!5!"3!2654&k+VUUU+U++*+**++U+++%%54&+535#3#326!!5!"3!2654&@*UUUUU**+++++C*+*!#32+535#537!"3!2654&@U*UUUU*++++U*&%!!5!"3!2654&35##5#3%#3!5!+++++*U+UU+++UU+#'#32+"&=46;7!"3!2654&35#@U**UU***++U*++4%3#326=4&+535#"!!5!"3!2654&#3!5!++++VV++n+U*+*+*++++V++73#326=4&+535#"!!5!"3!2654&****UU**+++++**+*2#!"&546375#3UUU*ի++ #%75#3!!5!"3!2654&#3!5!VUU++n+U**++++V+ ?5#3!!5!"3!2654&UUU**U++**+*-152#!"&5463326=4=4&+"3"73#53#* * *****    V++%)9B%3#53#326=4=4&+"3"!!5!"3!2654&#3!5!+++++ +++n+U*+    ++++V+%)973#53#326=4=4&+"3"!!5!"3!2654&***** * **++    **+*'2#!"&5463#535#";#326=4&****UU*++++++4#535#";#326=4&!!5!"3!2654&#3!5!@++++UUn++n+U+*+*++++V++%#535#";#326=4&!!5!"3!2654&****UUn**+++++*+*/3#!"&5463!2#5##3353'#";#326=4&3#*+*++++***UU<**U*++*+++++++#7@#5##3353!!5!"3!2654&5354&+";#326'#3!5!+*++*++++@@+U+++**+++@U++#7%#5##3353!!5!"3!2654&5354&+";#326*++++***+@@++*++*+*@V*  $(,%+"&=!32##"&546355#35335352#U$2V+V+++@#22#+j@+++++*++++V**#375Ppppppp375'3#'5pppp|WW|Wpppp+W|WW|-6C%&'&#'&'.2?2?64/67676'2"&462>4."|    1Q?@Q/,22:22    Q??Q ,, 2;11;20:#"&/.546;5#"&=46?>234&/7>{ P hN %  { XXI#-    J" A7=I%"&54767%32+327/+"&=46;5#"&4637/762"&4  #  U + F -N * ,J% %       * Q) @*  @L+<$ % 2J"2654'535#535#535#54&22?5"&/&!22?>35""&/&""&/&'2?>232?>22?5"&/&"#"&/&  , VVVVVV =  7 =     =    =  =     *++*+ +0++k00 n%#5654&"#53&54623{D6W7D{LLTTMM+-5L/871L4--2TCMLDT2I!/<EQ%+".54>7>71>32'"?.7'.#"267'3%64.#" &   *"|+T;  D   1      #'! %43 J)  *MM!  k%33537!";5#5!#32654&U@*@@UU*UUV++3735!35#"3!26=#+L++֕*++L*+.5467537'&+@+D'H86X29a<>%! +3 -$8 +*=#%A)+ `'7.'5>7632#"'&#"3267>4&'.%.. -4X41T2 $B""AT66!&ALA&B4XgV5JTJ#*.26:A22".4675463546"354&"3.3''#7#&'3'267#% '/.O\O./' % * 11"V.U"V.U"11& O]N..N]O &+  k!UUU!UU#*1:CL22".4675463546"354&"3.267#7"264&4'6%>4&'% '/.O\O./' % * 1111$n& O]N..N]O &+  k##+  !%#5#7#35!#"&5!"3!2654&+V*UU***U%6%*@VVU%%* )N%'67"264&#"264&72"&46#2"&46'3772>54/&'&767"'&//}###22G22$22G22B  #;"]]";#  ,6:h:6k//####52F22F22F22F2$$!'#:#]]#:#'!$$#!'!#!"&54?63!235#m&7    瀀U   $ @ 7!'35337'&#!"3!2654muJVJA   *Uu++$ $  #!"&54?63!2!'!3353    &uJVJP   $ vu++"&,07.?6?62"/&=7175'5'?'+   쀀*j  8]^6 j ^^ vGIHD>OMM#%"/&=4?62'7#7'5'5   (}**~A*` ^^ ^^ GIGIIHH#:%"&462'"&462#"&462"&4627"3264&46;2>54.u N xMh4X44X4 %14XUU4XhX41/N. "!5!537533#!'264'&'1VUUUU*%  %****U@@I&5/& -6?a2>32".547.546326"2>4..>>.2265462"'"&5462265'66/ ,4XhX4, /6)D((DRD((D0    _       ,'4X44X4',+(DRD((DRD(q$*$$*$:     7+32+ k(B&&B(O 'BNB'k77!4&#!"3!266J`@` %".4>2"2>4..O..O\O..O.:b99btb99b.O\O..O\O.9btb99btb9k ""'&"27622654&&"5^_  ^_ $TTTk####:7764'3&4764&#!"3!2645####:TTTT^_  __  k!"2?64/&2"'&476RXWXWSKQQQQkCCCC+9r99r9$6?HQZc71>3232#!"&546;&5463234623#'#'7'"264&3"264&2"&4672"&4672"&46 %//%  m-"@@"-  w  I    { %  % f >WW>V       @   @   +"&5462"&=#26=4&"32>=`2G2 ,  ,2G2!+ 5 @$22$   $22$+! 6 %#532'#3532>4.EEU@#;"";V$";F;"V%3#3#+UUUU+**%#53#537"2>4.@++U++*O< "2>4.++*O< 6.6%.>'&'&'&".7676767676762# %$  #& #,$++$,       ( $9,$9,,9$,9$e2/3..3/2 $     !'7''7627#  X[PR2PP*    X[PR2P 64/&"37'2'PPP*2'PPP2#!"&546364/&"37' ,,,* ,b,,"%!2#!"&5463'7627#*, ӂ,,+*U*, {,*/"";26=46&2#546!"764/&37u k @;(P(2UP U U  'P'2DP "764/&377'77 'P'2`P`!VPV'P'2*`P`VPVv  %"264&"264&*@&&5%%%%5&&u*@ &5%%5&%5&&5% %##5#535337#7'!!5'7U@*@@*@k92++++@@+@@DV*++77632#".546;2I-/ $( Hf7 K  -I/  K 7fH ($ "%3%"'&.'76'&54&+"326=4&'5737'7'#'($ /-I/  K 7fH 4F1 =..= 1;;u  /I-/ $( Hf7 K e1Q=..=Q1<<&%"'&.'76'&54&+"326=4&'7'#3($ /-I/  K 7fH 4kkUUu  /I-/ $( Hf7 K `kk@V+"""/&476762"'&'&=&3/ 52?BB?25 /B5//5B2%34.#234.#2"'&.'76'&54&+"326=4&@+1%U+4X4)D(($ /-I/  K 7fH 1+%4Y3+(Dt  /I-/ $( Hf7 K ("326=4&#"'&.'76'&54&#5#7'5#U 7fH ($ /.H/  Juv  Hf7 K  /H-/ $( vuJ=#546254&"";26=4&"'&.'76'&54&+"326=4&I , k ($ /-I/  K 7fH k    U U  /I-/ $( Hf7 K #'+/37%2#".546;2763#73#3#73#3#73# Hf7 K  /I-/ $++@@++@@++@u K 7fH ($ /-I/   +++++++++!,%&'&"27676=622?64%7''35#32?BB?25 /f/ 5u`K \005BB5v` ("326=4&#"'&.'76'&543735U 7fH ($ /.H/  Kvu  Hf7 K  /H-/ $( uvK#'%35#"'&.'76'&54&+"326=4&#3++($ /-I/  K 7fH I++  /I-/ $( Hf7 K  #'+%35#"'&.'76'&54&+"326=4&'#3'#3++($ /-I/  K 7fH I++V**+  /I-/ $( Hf7 K +++:>DH%323#+"&5#5346;5%"'&'.=&""/&476762#5;##75# V 5/f/ 52?BB?+@++U* * * *5 BB50akk@+@V333265#"&=35U++%5&+  +U*%% *%"3!2654&#3#2653"&=##5#k*+  *%5&@*+*U+k &&k6?HWdq"264&3"264&'>76".5467.767>2"&4632"&46'"2>4&'&'&7>'&776?'&] C$54XhX45$  _  "1:1v     k  *=!4Y33Y4!=*      @ )##)   ?>.67764&"ZAB2BA27 ZL2Gϗ2AB2BA,ZKG2%535#333535U+o"o**+** 7'#5#575#'5#53#+e"o++P~~*++*/**35#7#7#7###Օk@j@kk@j@k@kjkkjk@!2#!"&546353'3'3'333UV*kU@V@UU@V@UkV*VUUUUVM32>4."&?'&5463232654&#"'&'&5467632#"&' *O< 7"2>4.'64'7'64'7'64'7.O..O\O..O.:b99btb99b  6.k.O\O..O\O.*9btb99btb9 ) ;#J$_E1d29r%"&462'462"&7".$}$$k8d$$d###|-(U(-S7R֕%!!5!"3!2654&7**k+*+*kU75'"2>4.ՀU*O< 2"2>4.7'.O..O\O..O.*O< &57676'.76?6?%;,",!ERp  K4,   dH  #8e,Tg ( *6, $( $ V %##5#53533*** %##5#535337!"3!2654&kV*VV*V**VV*VV* %##5#53533'"2>4.kV*VV*Vk*O< 4.".4>2U*@@*@@/&9GG9&/4X44XhX44X4(E((EPE((E@*@@*,I.c|c.I4XhX44XhX4(EPE((EPE( )%".4>2"2>4.##33535#.O..O\O..O.*O< 76%7''7'7"&462 'G G *,- u" T T f+#) _U $$]"(* ` F2W u Dw..A7 $V %5!%7'7'75#%%&&*+&&&@@.72".4>"3>23.2>7#"&'#7"264&*O< 24&"262G22G2C4.N.  wEVFFVE;, ,$22G226 '++   &00&&//&, k #'7#337U7`U``U8`U`kcc&.6#'&'&'4624624621462462#."3."30&##$##& == nl C 37#737#73733733#3##7#37sVUVU++VUVU+-U++UUUU++UUU+/463!2#!"&573733737#737#7##7##3#373#@*U+V++++**U*+**+AUUU+++*V*++++*V*V".467'2>54&'#3a!";F;"!"(.O\O.(n**L:E;"";E:I+.O..O.+IL!%)35#".467'2>54&'#335#35#@++!!";F;"!"(.O\O.(n*****V++@+v:D;##;D:J+.N..N.+JK+++V %35#35#35#'3!57!5'@++++V**/Q@kkUUU*U+Q{jj34623###'##7#5#3!5+${&+%6%+&{@*+ꀀ+34623###'##7#5#3!5"&=462+${&+%6%+&{@*  +ꀀU  !!"&462#537!"3!5354&  I@%UU%Uk   j%UU%*.26264&"72#5!#5463"/&=4?62'75'5  %UU% ii ii ???@@@@   U%VV% 99 p 44 ""d#@"??"@ "&!!"&462#537!"3!5354&#53#53U  I@%UV%z++++Uk   j$UU$j+%2:CL%"/&=4?62353264&#532#73533'654&#532#7"264&2"&46    @ v , ` ^^ ^^ +#@+  @++3 @+  @%6%%6% A(15>BF"#";;26=3;26=326=4&+&2"&463#%"264&3#3#U% + + %,,>++VV#VVVV@   ,>++>, ##+";37357'535326=4&#U Z<*<Z   7Z<77<Z7  Z 73773#''#@<[DGDU2e*UWG+2O/%#54&+54&"#"32+;5462326=3264& V,V !! Q"0"Q  V   Q"0"Q !! V,  %)-159=A73#73#3#5#73353#3##5##53535#5#3#735%3#7353#735@++**+U*++*++++*V*U++U*++*+*U+**U+U+****+U+++U++UUUU**+U**ՀU**#'+/37=AJS\e3#%#535#53353#3##5##53735533533535'3#73#5#73#'#546;%2#5#53#"&=53+5UV***++++++@*@*+ՀU+++V++kU*++**+UU+UUU+Uk+****+@+++V@@k+++++++j**U+UUU++UU+U+UUUU+ 8AJS\l|237&5462#"'632"&547'#"&463275'#"&46"264&"264&"264&"264&62'"&57'57'4627"'%62'"&='74627"'u(8n8P88((88P8n8P88((88(, ,  , ,        8((88P8D8P88((88P8D8P8+, , ,, , , ,,       5      k#3%35#+#5#"&=46;2#5##533537!"3!2654&5++K   @ + + *@K V k++55k!2+"&5463#'5#33!5!#@55++*00V*+C".54>72>54&'"&54672654&'5#"2>4&.O\O.(D*.=";F;"2F2$ $ *O< #.O..O.+I0+G/#;"";#/F22#.-   2'654&'".54>2'>54. C-77-C #2";F;"2#.O.', 3F.F3G;00;G$$ k k Akw ** wkA *%".4>2"2>4."2>4..O..O\O..O.*O< 32#"&'##"&46U!!&&!!&&%6%%6%73>23#"&'#+!*!!*!*V%462"&'462"&'462"&%#3+######**$$$%'7'32#'#53264&+lNk#2D+>B@@mOO2#( tjj#a!2#!"&=467#"&46;25  j z'`UF  !%777777''''''!5!!5!!5!@ @  +*+V %".4>2(EPE((EPE((E((EPE((EV0>B"2>54.32#'#73#3#3#"&=46;#3#"&=4635 ;-+IWJ+-;+ k++++++ ^++++ U-; +J++J+ ;-j  +++k @ @ @ /%'#'73'7%3277''7>'&6?''3#&5+557"264&3".4>24&"&'7264&#"'&&"2>54'>5      L   L  9btb99btb9G "2.   42#  !9D9" w  /  :b99btb99b:  C   J   ('+%.#">3235K*Iu2Y88NVD3BM";5#"&46;7'#3&?&&?&KK(88(yBvvB'+++&?L?&+8P8BuvB+k.#"3267##".4>3235y>#.O..O.;[,B)#;"";#.E9.O\O.H8%0";F;"EV)3%"'5&'7#&473'6716756273#1'462"&5U  6 5KK5 6  6 5KK5 6##WK5 5  5 5KK5 5  5 5w#k#%!!5!"3!2654&#3'#3#35#3VV++U++****@+++++*+#73267'#"'.7>76#37#4."+3Y4&G 60&#"D.*R@UT@4XhY34X4 R*.D"#&0UU4X44X !1">27.>27.""&4627#";2654&0V FNF!U','7<7U$. $!!$##  %#735762!"3!2654&+u &*U++6%+*%#55!5#'37'!3kUU*UU*U@UU@@UU@7'#'73'#53'=5#'+e@UU***UU+P@@UU@;eZ+@UU@*%5#3#55!5#'37'!3+ vUU*UU*U+@UU@@UU@552".5#2>4.kk#;"";F;"+.O\O..OUVkkV#;E;"";#/N..N]N.V 552&'&ՕQr(3>UW58[;FV 552&'&'55'Qr(3>蕕UUW58[;F$@@U(5>%7&>2#'#"'&'67>767674'2".4>"264&)/))/ -5 &  t11:11&&5%%/))/)0   1  1:11:1*&5%%5& #535#53#535#53#537#53****U++++U++***++*++*+k *3<@D3546;23553"&=463!2#3#+"&513"264&3"264&#35'35Ukj+UUVUj5 Q :@j@UU++    @7%%7'7#'.54>2>54."1DDKL1:1(DRD(Kb$DCKK'11'.7)D))D)8Ka 73#53#53#!!******VkVVVk.+#7#";73326/73 X4Z : ~H{ 8Z @@  kk |UU#,'677+"&'&5476767264&"S S2 n  $ @ $ $!04d!4Y "(0VQ QVL7( ##!2654.#'7".5467354X4%.O.UU4X4%.O.UUU";#/&2@UU";#/&2@UU"55>4.5&/#7&7'36aa.==.*D((D%/4++iBa_SG^G+0IVI0+S.%{%.(32+"&5462+572#74.#'7U@@g@.N.+#;"VVV@.O.#;"@UV "%67#67'7&'/5.467h+d/%w2a*D((D*.==.u%.L+.%uaB0IVI0+G^GS(55"#'4>732+"&5463#"&=46VV";#+.N@@k@VU@";#.O.*V@ )-157.">2."62#5##"3!26=4&#53#53#537;7.0/$'%@ *+*++J**K++B#uUUUUk+++++7#'73573#3#2#463++++++*+@++*++b72"&46'2#4.#2#4.#&[MK,-264&"735'735"&/.#"#357''"&46;'"&46;"&46;`$;,+- >!1  o+&"i) @* j UK##^++@*" /dH+  +U  +  *%)''/7'?7"264&"264&7' K&&L S;;RJ&&K S;;p] R&KK&R ;<S&KJ&R<;K@#?7%52>53'3#%!"3!2654&kJ6J`1+(E(@&**@`@`+1(E(&k*#+5'6.7'''77'&4?627'#52653#52>5y.-2 ! K  1..y.-<  # =-2#.N.";#y..1  K ! 2-.y--= #  <-#2+.N.*#;"'27'3#54>75'5!#53&''7&'#52#"/76)U,N00N,U)&.*.&i RR %.+3X= +D++D+ =X3+.%**\#&'!2#!"&546"3'34&!5k*#2E ,B2*V*2$;;$2 73575+iYVQQVR ).'#37'7&"2?64/3.#5D GqBQ    {5D GqBQ `Q   `Q"#7577>/&' K+**VJ  / +* JV**+K ! / .+*&%265#"#546;2#54&"+"&=3@ *%%*  %% @ %% %%(@462#326=46&"".'#37'%''77'&"2?64fIk , 5E FqBQ70yy-4     V  V a;Ak?Q6/yy-4   #53#53#537#3!2654&++@++@++VVVVV*V%'''7&54>2'7'7'7'VB>V> (DRD( :559:55#UU)4)D((D)4)]@$#??#$@+%!53233535%6.6#2V&5%&5*2d*++*)5%&5%f%%7%357%7>.-"9`km202(_yB @ 2`""( 2020+7264&"%##5#!54&%%5&&+2%5&&5%ր$2 !75#;5#"&.'.+5#;7>U*1& H J%IO 1+%U  &$ 75#;5#"&#54&+5#;3264&k+1%J k%`1+%e&"%+57#"&=33232%5#;5#"&`%k* +1UU%&@U&1+%..>#"&/#;7#'75&/.#;7r#"Ԗ$***<(h6# $Q H #"'3W.!~@ /&462"5#;5#"&'#535&/.+"; $$.+1%+lJ"8 &lKM ##1+%=R;2X66X2CizB/V:lLLl: $+%323#+"&5#5346;5.=731>= V /<BFK3#35#735#35#735#535#265#535#35##335#5#34&+335#35#'35#535"+֫++++U+++++++**+++++++<+**++U++U++++*++*++*+U+++++U++*+;33533533533#3#3#3##5##5##5##5#535#535#535#53k*++*++*++++++++*++*++*+++++++++++++++*++*++*++++++++*++*++*   $(/37;?C7'#53'#53%2#553#53#5353#53#"&=3'3#%#5%3#%#57#5:++[ +U+*++*+k ++++++++++eq;++U ++++++++++++ +++++U****V++#'+/346;##%#5#53253+5!533#"&3#3#3#%3#+@@**@@**@*@@VVVV****k*@@@@*@@*@@***VVV3- +@@++ /37;?CG!2#!"&=46!2#!"&=46!2#!"&=4635#35#35#353535UV V V tU***** U U V V U U +*+U++**++k!2#!"&=4635+353#UV tU*k U U V++++'7;?CG%323#+"&5#5346;5#"&=463!2+!2#!"&=4635#35#'3535 V  V V tU***+ * * * U U + V V U*+**++ -;EIMQ%323'''#+"&5#5346;5#"&=46;'#"&='?!2+'5#'2+/35#35/35 ;+: V  ;+ +$V <*Y /<U*+ ;;:+ * * U + + V <+ U V*++ +5;?BFJN!2+'35#'6'!"&=46;'#"&=46;'&/72+'2'35#3'35#'3535UV +*' + %+ ,z D /U*** U *+& 0 U + V , , V .++**++k#!2#!"&=4635+353533##5#UV tU*@*@@*@k U U V+++@@+@@k#!2#!"&=4635+35'77''UV tU*M7777777k U U V+++8888777 +/37;?CMS!2#!"&=46!2'#"&=463#"&=4635#35#35#3535357.=7@U U 6  tV+++++`6*)7`5 U U =7 V #C U +*+U++**+++@,J J,@9)L%"&462764'7>/.&/4&+"'&?;2657676?6&',,>,,-+5V5+--+5V5+u,>,,>,6  #J88J#  #J88 J<LU%/+"&5'&'/&?&47'&?66?46;2767!"3!2654&"264&p % < %  % < % %*$3 (( 33 (( 3*$$ 3#%2"&46#%3##5#5353+J(88P88`j@@*@@*8P88P8j*@@*@V %'>3h>3(rQUF;[85W"%"'64'7264&"&"27264&4%%6%4%%4$4$$iX X&5%% W%6%X$$3% >=2X66X2V:lLLl: %.=7>='2X66X2'E))E:lLLl:VV @X.iBBi.X@.%".532653'2#46#4."#"3!2654&'+%6%+1%%*1:1**'&&1%%@11!"34&2#!"&546;4>27'%%z*1:1%%@11jV"&*35335"35!354&#2"&4635335335++%@*@%  ++*++U**Uk%@@%*   kkVVkkk %355'<C,v,J, ,ooC,v, , ,vooo` #37#37UKKK`5+5J`5+5K5#'735##5373!3'#kpppp;<-* `E;`<-*E````@<-)@<-)k #3!57'5!Ā@+++ !##5##5#%75#7##7#77+U++UjR=<=<Vի*ZT 1.?ZF>.1'7'&4?77"/m \EEEF] #  # ]EEEE] %'7&67>= 1.?>.17'&47''7'&4?77"/Z5 \EEEF] # ZF5 # ]EEEE]  !%4&+3!265'#53#53'#53#535#53#53++++++U****V++k***+UU+*UU%#53#53#3!2654&****k+V '#!"&57'74&+ T-3 %T[u3%3#"#35#53#35#53#35#54&+535++*++*++@@@@@@@@V /#3'+U֕*֕V ?3#7U+U֕*֕@%3#7'U++յ@@73?+ @M"'.7&4>262654'&/&'&46232654&#""'&'&'&"!19+VA19+V_,0  * $   7$ 9'   @ V+91AV+91&   "     3J_%"'&54622654/&'&547632#"'&'&'&"7"'.7&4>26"7264'6.&'  "3  1   '4*X!19+VA19+V% 8K%4% 8K%_          ," V+91AV+91 %4%K8 %4%K8 )2>GS7"&46;462"&5"&4622+"&463462+'"&=4622"&=7"&46;2##+$$+$+k#*##*#+j$+k#*##*#+j#+$$k %#57#533#57#533#57#533HHHHHHHHIIHH+U++U*V**V+U++Uk7'#57%#57#533%3#57#533+ePHHHHoIIHHP*+U++U**%+U++U 57!!%3#'3#764&#2#2354&#"&4635";2354&+@ 5 )$1 %Z!**! ,k@@@@@;*   2$00#:'  )<*#& 58#373#'3#765##2354&32354&+"&4635"5#+Օp 5  $1 %{! ,!**S?@@k@@@ 3$,,$9C"'! *;*?m%&/&'&'&6?676'.#"#4'&'.'&"#&#";276?6767127>?>7676716##"'.'&'".'.67676756./&71632332?&7676767632;76732    J         +       #    $  -    ,   !_              "   !   !  =%#".5467&=/'7'7'767.5462?7'k1'?6/* * 9  %6%  9 * */6?U1') % 06! %% !60 % ) &.7%'?/7"/73'.=77/>73'5'264&"i*MM0m TV 6d6 V>|~|S] ?0/V66Vk  <B ]; ** ;@~|~V 846;2#'354&+"%!54&"335!3526=4& KuuK9$+*++.!,,,.!=@k++++k !'35#7#353'53'53U@@UU@@VՕUUUU******* 7/##73#'3/1575#533FEEF>3B@C5G0 f\ceUFFFFd:\.)*)) %3'333##53#@UU@*UUUUU+***** 3'33%3##53#@UU@*UU+UUU***** ,:=@.46"3265;767>7'".677"267654&'7')%'((%&(X   8$+#(&)%  FEEF+<,1:;]:!#I$& >+1'0   NFFFF@ 7!5!5!535#@*k+++ &.33>4&#"."&'35'35&#35"/35;5#"5  9M/ 7. - / . /!%4/<bdh4O=FOX2676767.5462"&5467&'&'&'&'.546"264&3"264&"264&% " " %6% " %6% " %    %! !$$! !%%!$ !%%! $!%*       !*@I2"&54675.546"264&"264&"&54675#'732#"264&%%6%%   7%6%+[[+@  %!!%%!!%+     %%!F[[F!   !1%"264&".54>322"&467#";2654&%%6%%1'11$}%6%%6%1'1:1V$$*V ,57'+"&="&547'327'74.+'>;2/"264&+z %1*S1 *k$P %*1@1 +$$ $6%"&546?2&#"1"'1.4>1"&471>54'7%v82- .O. !  NVO< ,N ># ,3%'7%73#373ͭNl,,),m(m-xɭOm*vvj@"1B%&'&.676'..676'&.676"2>4.~1LG44.ZZZPi))iPB:b9 [ ePP ''7'7'7/>"sh|<+$>OOg|[ f %7'?7/7'PG^$$^G<G2#".'326=73264&"#"'>>&/6&'7"&462264&"*O< 7#'33."35.'#2"&46:S@- @V@>aa>V -@SOW~~~~S: -@?WW?@- 9Sv~~~~V##'@*U*֕V #3#3k@@k@@U**V337k@*U*֕V 3#3#@@k@@U**72"&46%32>=>54&"#"&'>=#3"&=35  >/ L2&?&%5&8( 2 ,:V+2G2+   /H0<%@%O!%%!M(8$ G-@#22#@ 2#&/&6?5"&=46335k " A@ > '!~@*@@@%!!@k%#5;5'!33533=!!U+V@U+kk++k !%#5#53353#3#535#5;5!#3533U+j++@**@@V+@++@@@@VV-6?CGPT73#3546;23546;232##5##5"&5462"&46#2"&467!!!5!72"&463#+@+k U * U @@<  L  VV+  +@+@  @     Uk   @ .%#53"&462'#53"&462"3!5'26=4'&kk kkK SS&2,  ,2&kk@3+ +3&7#"&/&6;26676;2+"&/&"@( ## )@++U$@''B#":<!V '#3'535#UUUU@*@*UU@* 33535##7U@*@@*@UUU֖UU}#8A76763227>763""'.'&#"7"7'&54?#"'.'&72"&46+/'  0   /  /   0  '/i zgp 0 $@@I U"I $$'+/37%323#+"&5#5346;5#"&546;2+535+353535 V @ @U+++++@ + + +  +++V**U++#7"/'7'537)jC9e9CUC9e9C!%".547'37'=52654.#;".O.UUUU#;".O@";# *1.O.@VU@VU@";# *1.O.k)735#7#7>54&'35#'35.54675**Հ0/&8H**20/&8H@//)B,\;#>+@#>3//)B,\k'.#7654&'%35.547677576/ 23/ 2}k//)1#>3)1#>3//, 2P/, !"3!2654&!33ի**U  $(,059=A35#35#535"35#'35#5##354&35#%35#35#35#265#535#35#35#+++++++++++++++U****U+++++V**+*++*++U+++*+*+++k!2#!"&5463533535335k**ր*kVUUUUUUUU !2+3535353533##5#*U@+@@+@VVVVVV@@*@@ !";#5#5#5#5##3353*U@+@@+@VVVVVV@@*@@'32+"&546353535'77''U7788887VVVVVVV7777777'!2#!"&=4635335353353#5##k**ր*+*U@@@@k@@@@@U++ #'+%'7627#!2##"&5463533535, ҁ,,+RY'+Հ, {,YRY'UUUUUUU #'+/3!2#!"&546353355#3535#73535#5#7#3UVV*VVVVVVVVVVVVVV@U@@@@@@@+@@@k@@@@@@@V'!2#!"&=46353353533535#3#@k*kk*kV++UU@@@@k@@@@+@+!-%#!"&=335335335335#35#5#33##5#53*V*V*V*VVVVVj*@@*@@++++++@@@@@@V@*@@*!-%4&#!"3533533533%3#73#7#5'3535#5##3*V*V*V*VVVVVj*@@*@@++++++@@@@@@V@*@@*k #'77''7'%#!"&=463!235#35#35#77777777*VVVVVVV88877778s@@@@@@@k%!!7!"3!2654&*+@+''''''777777!! +*u V * #&!"3!2654&'7#7'#73#75'7V/BBB)n7+xx--V*BBB7++xf--"&462'&+"2?64u F  # +b  # $-4=%".4>2%"&462%!"3!2654&264&"267#7264&"@#;"";F;"";  w 2  4--H  @";F;"";F;"k   *   j$$j   k#264&""/&=46;27'7u j # k C sz7 # k k  $ s|%'&+"2?64'53%2"&46  #   ##'%'&+"2?64'53%2"&467'7  " YvU  "Su@V/8#335>735#.'535#35#.'35#>"264&:S,,S:*:S,,S:**(;));(*(;));=  ,S:*:S,,S:*:S,W));(*(;));(*(;c    5?3"&462#"&4627.+5##";26=!;26=k  55 ,    ``j ++   )73'7#'!"&5463!23>.'uvvuv\  x 0P/.P/0P/.N/''<<''< x  /Q^Q//P_P0/4=FO%+"&'&4627'&?#'7323"&'326762/3"264&"264&3"264& &&   > 0/'"2s  -";%W oF;m$  8  MSN>P("96y ?,CF$$J %!!5!";3532654&kkU+++#'%!2+#5#"&54633#3#73#3#kk+U+++UV*+++U(2&#"327".54>'2"&46"264&`1(%(88(!&XJ+-;%%6%%  U>8P8=+J+ ;-+%6%%6%+    73#3#2"&46"264&jj%%6%%  @@@@k%6%%6%+   V 373#'#@kUmmMM&@U{Œ*h*2"&'>4&'>.467467.'G#((#GNG#((#G V T`TT`T$CDNDC$$CDNDC "&463533'3U %% *;;k@! %6% !+/+ -2"&=46#5.5326577#"&=46;2#=.+-=*2G2[Y+kk/G,,G/#22#bZNVV-7'#5.533267'"&=7#"&=46;2+es 1+-=*2$.(#I[YPr%,,G/#2#'eZNVV ;7526="737.=+UUhf _=*U*U= ^ !$47323546;23546;23!535467'!2!"546U+*+*UUV*****@@*@@   #,/258".4>''7'?'7'?#"'77?/##!66  % %; 6 '^<'//G<6?H?6@6 $$#qp 6Gh;6e;/q%54&"2>&'2#546@%6%8D8\ * %%BA((AB @@  #6?3#3#3#'#4'#5#5#53#%54&">&'&'2#546kUUUUUEU+UUUUE1+%6%#49. L * +*++*>+++U++V*UV%%48/"58 @@ %3+";76=4&VVU A   +b  "%32'&=7#"&=4?>3#37V  A ?]  b+ ++q]%4&+7454/;26?653#   A*VVb   "#"&=4?32#'375#7kV  A ?]  b+ ++q]/%#";76=4&'4&+754/;26?65 1 oj  oj  1 q D i U D i  qk &%'7'?746354&#!"2#3!26="&LLLG[!![GvVZ11W:TT:UU$UUk*3%3#!"&=264ᕗ!2"4'&'&"3'264&"VK$`(UU$UUm  f((k '#53#53#53754&#!"2#3!26="&46******V ***vUU$UU$7'7U@kk@UUjjU )%".4>2"2>4..#>&.O..O\O..O.*O< 27&'.#"2>54&35#7#3)D((DRD((Dm>!4X44XhY3**U)DQE((EQD)  4XhY33X5!=t+C(`g%".=4>27."2>=4&.'.4>234."#".5#2>4%73#     $!  "!    * !     ) % @+5N +)* *)*          $C8w%.'&'.4>234."#".'#2>4'.'>54.#"34>32+32#".5#32>54&   * "    ( %      *       +              '      !      2%".473277/5#7#3.#"62654&'7)D("; 4X4:15+**UV>!:0#QD( )DR!V;0:4Y3 6b+I+! (EP#0:!= !!57''3'75#73'UUUUUUUU*V++UUUUUUKUKK ++!%).@%3'!2#"&'#"&5463&5'35#5#367#"32>54.+ 4D+(D)6dV+\ &0&0<'$6)D(+@"@@@@j%&0&0+#";2>4."&462k1111%%5&&+1:11:1%6%%6%+#";2>4."&462k1111&&5%%+1:11:1%6%%6%!2+'#"&546UVVUUVUU!!";732654&#577'762VUUV-,", UU--"+  !2+'#"&5465'5"264&UVVUUVQU+#UUV+##!2+'#"&546373UVVUUVgDDgUU*DD%!2+'#"&54637333##5#53UVVUUVgDDg*@@*@@UU*DD+@+@@+!2+'#"&546!535!5UVVUUV'*UU@**U++U++?s"32767676762327676767>4&'&#""'&'&'&227>7632"&54'&""'&'&'&'.546              &   F   &;BN 4#    #4 NB;*  5!@#" (!!( "#@!5k02#!".54>7>5.#"3267#"&4632:X *91#;"4 L,11 5 28%% "kJ7=*1#;"!8#(/U1:1#%5&!H"&462"&462"&4627#5>5#54&+"###;26=>5#5>$$$@$@ @$@$@$ $@$##k$$j##. .-. .-!%)2"337335'26=4'&"&4627#5353"&462N'6, 0*Q*+ ,2& >kk*k 3+ ++ +3UUUU )-%54'&'735#337335'#26"&4627#53%>Ff;' "0*Q*+  ^W) ($" ** %`kV2#!"&=4635##3764/&"+u+`5% U++ &!'32#!"&=4635##3764/&"UV+u+`5% +VU++ %[ 3#73#73#@++U++V**UF635#"&47&5463232#"'(88(* +!!+[8R(8!+.+!o/!"3!2654&+"&=46;2+"&=46;2@ O  O  O  O @     @ %7''777U1hUU1@1hUU1%'!!U@U@*@@ '775U1hUU1@1hUU13!!!k@+/3"#4&+;3'&'&'&'56767326=#53#53U//  //+++++$,    ,$ %'7'?#5'#"354&DbbZs++ssqQQoJjj@@+/9="#4&+;3'&'&'&'56767326=#53"'&=3#53U//  //++dV++$,    ,$$$uk%)-5##;3'&'&'&'5>7326=53!#53kjB-    -B@@@k** -.    .- kkk%)155##;3'&'&'&'5>7326=53"&=3#53kjB-    -B@&4&k@@k** -.    .- kk&&kk +%"&4627#5"&462%#5!"3265326535 *_ @+%6%%6%+555V&&&&kk )2"3265326535'#55#533#2"&46!2"&46@+%6%%6%+@@VV5*_  k&&&&kUV+UV@+ 5K!3!#"&="/&4?32653"/7'#"&'73353U =~#%6%#~= V\ #.\@@ <}}< [ [++$7!#"&="/&4?367653"/7'&'&'73353U =~##~= V\\@@ <}}< [[++-%27#7&"32673#"&46&+5#5#3#"&5463#U&, $ +#222 k V& , 2G2 Y@kVk/%27#7&"32673#"&467!3#"&546;32&'#U&, $ +#22N+V& , 2G2 +j 3#73#'37375#5#53TL[M=<=6EA[[[LLL=55k/67&#".'"'#"'#"'3276765'6 )%68c" *  /1@ @LP>9 @ !6& 3*1( !2#'))$>;> '+/373#535#"&=46;2'#332+"&=4635#;#53'3#UU*********+UUUU****'+/377#535#"&=46;2'#332+"&=4635#73#53'3#UU*********+UUUU****F #3#"&=#'35#'323[F+F[[F+FEZ+Z+)9IR[%".4>2'>."'327>67#'23&'&'&#"6467'7.>.'"264&        I4X44XhX44X 8$(  ($8#" =w4XhX44XhX42#"&=326=#4>4X4%5&+  4X3Y4%% 4Y3"!.'2#"&=326=#4>2OP14X4%5&+  4Xk;0/<*3Y4%% 4Y3+"'3'6327. *KLN0>8Y2uMM(B3DV2+53264&+'73# &?&&?&KK(88(yBvvB'+++&?L?&+8P8BuvB+bk ''77'bDDbbDDbMDDbDDbb %'7/7'DbbDDbb7#&4737#&''7'77`H9btb99b:  P$` R H7? //?/{dd/? i..----.  :b99btb9! ),"),,($*+! '' !($ ')....--- 75#7#5!UU*kV++03#53'3#5>54&";2654&'5326=35@@+@@+@ ' @ & @+V*VV,  ,AA*V&";26=4&#3#%3#5#;26=4&#@@++++++&26=4&+"37#535#53354&+"3+***++/37;#335>735#.'53#35#35#&'35#63#%3#3#$8+, 8$%7+, 7%U**+'&&''&&D+++++**, 7%%7+, 8$$8+*+&&''&&''R***k+##.#"32673'#5#".4>32#+d=4X44X4=d**+I,(E((E(+J'9G4XhY3F:U**U'.(DQE(.'"&0";;26=4&+54&#3#"#73#723#53265@UVkUkk++kVU+UkkkkV4=2#"'63'"##'47'"&46327&546327&546"264&  OJVRC1#,++ ON2$O#O ++,#1CRVJO O$2N##!4=C";5#53354&#"3535333533#5#;26=4&##326=35#5@++*k++**+++++@*++++++@+++k+*+@* )2;"353533533354&#353#;26=4&#3#53265%;5#5@++*@++*+VVk++++++++++@@KK+V++*+ )2;26=###5##5#5#3%5##45354&+"37#53#"54&+3*++@*++*UUk@++++****++@@JK*U++++  #,09=FOS"353533533354&#353"326=33354&#3#';5#535;5#53#326=35C++*@++*+++*kk(+k*++++@(++++++(@@++++k+(*+@@k+*++*++** #357353#3#@bbU****bb+**%733##5#53735kkk*V*@*@@*VV+/373#35335#735##'53#%3#33573##5#73#3#73#+0"k'*o"V+++++(!.k3I**k++**))K /Q*+*7IB),,++++3#35735##'353#!3#3#+?*sbs!*V+++++**bsat+*+*#'-1:@DMQZc3##54632#5#52#5#5+5353'3#'53#553#"&=33'53353"&=33'3#73##546+5353@+++*+*+U++****@*@++V+@@++V+++++++*+++++++++*+k@+@**++*@*++++*@@+++*+ 3#35335#'353##53#%3#TQQTU**UV+++++**+*,'''+++!";;26=4&+54&#33#5#@UVVU+7'77'>=U72X66X2UV7V:lLLl:#%#37#";2654&35#3535#35#U  (++@+@++@+++*+  @ +֫A%54&#!"3!26=5k  UK KU#"3!27754&+F: DU : DUK V %5#'735754&#!"3!26=JJK + Uu66KK66K5K KV!"3!26=4&!"3!26=4&    V 73#333#@@@@k 3535#3#UVUUj@@V 33#3#UkkkkkU 3535#35#535#իՀ+!5!"3!26=4&!5!+ k wk@@k @ 735#35#35#535@իիիV !5!5!!5!5!5!UkkkkU**+*++V !5!5!5!5!'35#35#535#kVVVVVVUUUUVUUVV 3535#35#35#35#535#UkkkkkkkkkkkU뀀V 3535#3#35#kkkkkkkU뀀V!5!5!UkkUV/#";2654&3#";2654&!#";2654&@ @ @ @ @ @ U    {!#"/&#"'67567632676#"6TV=%#)*2  6  XB"?lrF~E%$IOAT%g)-172"&4632"&467#"&=463!2+#'!735!35     +     @ @@@VVVV"&IM7'7>2&#"26=46327'%."632"&=4&#"77 ;I<  UJ1<   ;IJUp BI  j@@ @I1  j@@ p BII@ %.2">7.#"3!277"67.354&#3##C!PNNz% &6/@/+e@ *{ O k@.+o@@ %/37">7.#"3!277"67.3#54&#3#3##C!PNNz% &6/+DDP*zU *{ O k*+Do*++U +"27'.27'""3!26/.+"'&? B  SpT  z  C C U""Uk m  m ++A1%"&462!"&4627"#654.#"3!2>54.,,>++++>,,+!`!+ 5 5 +! 5,>++>,,>++>,!++ ++! 5@6 !+ 5 | >4.4&'>%3+.<<.*D''D Ukk{,OdO, 6NZN6. .\kVkVk3VjjkVkk 34&'>kUkkkVk@. .&'#35677'64.'4&'6--eeUk[+#, 'D*.<54k--oek[, ,!*\N6 ,O2. /4V#63264'7"&475762"'7264&"#&"27"&4621@ $ 2F2G22G $$ $$ G22G;U@ "$ G22F2F2 $ $ 2F2; %35#'.#"3573735'?264&"-hM+ t&-S&>1'5 &G $oOCja=^  &%#!"&5463!2#"3535#"&462*U @*+u  C%!5377'3!5!2"&4632"&46#654&#"'.#"#"3!26=4&m-#HH#-mV   t/% %/V<bb<*     + %  % %!5!!5!5!";75326=4&VVVUUV+j**j -%!53353353!5!3#3#54&+"#"3!26=4&@++@V뀀@@V*****+++ &.38@HPU\a"#"#3;26535#4&+5>54.#67'#67#&3#&473#&473#643&73'&736.O.'E* V *E'.O. 6 ' )() //\HHt//) (=6 Z)' .N.+I0 * * 0I+.N.*   '' K      I!'' 74>2".%4&/#37>";F;"";F;"+#####;"";F;"";#(FzzFPFzzF"%3'7'7#".4>327/#3?'+j5ii5j+#;"";#,####6ii6k";F;"zzFPFzz"73'7'7#2>4.#"'?3#/7+j5ii5j#;"";#,####6ii6k";F;"zzFPFzz{%".547676?#;"";#;"*"))"*";# '#".547'7'4'&'16a/#;"!X@ %a#;"&<[6]/${ )2>54'&''72"&462"&46 ";F;"@ 5 k { )"*";##;"6]/$`;%"&47675"&463546;2322+"&4635#32!5463  # + U  $ K#V   +**V*7".4>3>3232#5#54.#"&#"3!264&11E+$>& $22$*1(; %%+1:1&/";#2F213'%5&$ <HT732+"&46!32+"&46%4>3>3272#4&+54.#"&#"#32+"&463!2#!"&46@ k k 1E+$>& #2+*1(; %-)+ + t     @1&/";$2#13&%     4=FO72#".4>3>3232+"&46;264&+54.#"&#"2"&4672"&46'2"&46 11E+$>& $22$ *1(; %%p#qH   1:1&/";#2F2  $13'%5&U##+U6=7".4>3>3232+"&46;264&+54.#"&#";2#7337#11E+$>& $22$ *1(; %% k@++P5k1:1&/";#2F2  $13'%5&  jUj +7'7'?'7'?6.67676.'6{6886D# $% #, )nnR)  EZ .WD&?TVi*A''A*@@++**j )Rnn)  .ZE &&DV.!UT?)/5;AT632#!"&46;.7>&>32.7&'7&7&'6'7#54&"#"3!264&%& %%#22#  3> : 36 ?3,2+V@2F2+ KH'3&5%2F2B$4 ##W=  <~ /  /+#22#$   &_7.?>.?>.?>754.#"&#"1'1.4>3>32321.671>54&#  ^ , ,^  1(; % 1E+$>& $2  g  g   g  g )13'%1:1&/";#2#'  4@T72#".4>3>3272+"&46;264&+54.#"&#""&54?2654'.'1 11E+$>& $22$ *1(; %%$   2F2 $  1:1'/#:$2G2  #13&&5% ++T #22#44^72#".4>3>3232+"&46;264&+54.#"&#"7'&4627>76"/.?.6 11E+$>& $22$ *1(; %%C/# "   / /# "   /  1:1&/";#2F2  $13'%5&V " #/ /   " #/ /   $).32".4>"264&'&"77%.'>7'2711:11%%6%%34Y%%&XX33+1:11:1+%6%%6%I !,Q-Q.-I +16;@734>232#!"&46!2#!"&462+"&46374&"7&"7%.'@U1:1U 4*  %6%@34YL&11   U   V   %%I !,QQ.#(9734>232#!"&46!4&"7&"7%.'764&"'&"2@U1:1U  %6%@34YL&QB 33 B11   %%I !,QQ.C 44 C#(9734>232#!"&46!4&"7&"7%.'"/"&4?62@U1:1U  %6%@34YL&QB 33 B11   %%I !,QQ.B 33 B.E7"&46;264&""&4762#264&""&4762#!"&463!"&463!2"'&462264&U $  F22#   5%%  +%%5    $  2F2+  %5&   &5%  *A>32632#!"&46"3!264&+54&"!"&463!2"'&462264& ?(+!%%#22# J,>, +%%5   @&0!+ %5&2G2+#  5,,  &5%    &.39J%64'3673'#&473&'3'#>73.'&4737#6#&''"2>4.]Hn ?/#dd5 R q?/K? /!H] R ? /:b9 "2>4.2"&46"&54?267#)D((DRD((D)11:11%%6%%e&AFA&(DRD((DRD(*1:11:1+%6%%6% DD '232#!"&54?>;&546"264&#2 6&&6 2#$2##2+##'6F232#!"&54?>;&546"264&3535'75#53";5##535#2 6&&6 2#$+++++@+@2##2+##5 *++* 5Vj@V*%P"732>54.2"/7'&54>"7>&/."/.'&>?6/.#9b9p/69a9 ;N*#@20Q`)B0P)0   9ar1m9a:*M< #2@#0Q/A+30P0N09    '2;L%76'&/&?#632654'7326?4'&'264&"#".547327X1s:+(Y  , F   $c# 6  , 7  D5'[ , #)f  ~ z## 6$  ,k!$7'##737'#'#.#"326737373'D)D+D " F'/N..N/1R& %,1k**#.O\O.4+ yN"%7'735#'5#2>4&#3235#'7'p&&@@k#";F;"#@@*&='&Z+Ygg:F;"";F:H+?' ?'7''5#7'35#!5!j&&&&J&&*&&***'&,'&&'5??&'?׀  $(,77'7"2>4.35#7'''#3'35##3L&#;"";F;"";@@;&&&&y**&&]@@**)&";F;"";F;"*&&&|@&&*@!7&"">27."627.M"V"M@u1&)bjb)&1u@*O!'33'!Of(%3!!3%(3&&3 )676777"6327."7.1  &0'7( M4FC?3'(5b)&1u@D' '!N 3 0 3 6fFFe3 !3%(D 3! <%#537"&462#537"&462'3#"'&/#"'&/376763}((Q((+0    -*% W/ /   hp  s s?@%'#&/.#53"67.'567657&'"?6 &' l (#$'_    R '" R U F,-8,VY \SD Y   %  RL    -V%#'#57'5373vvvvvvvvvvvvvv 735335!!!!2#!"&546UVU++Vk!!!5UV+k%!5!VV 35335!!!!5!!2#!"&546UVU++Vkk@@Vk 35!#!35#35UVV+UVV+U 75775'%'5@֕kpu(6=FWd747.%'7>&##'"'7>&#+>32#"#"'765'2".4>2>4."IW.93B 0(C Q/#@ y9 2)8*O< =X'\@^ P%1+%P=\@\'W 1$-;A!"3!2654&!!%!!!!264&"72"&464'&'&"3'>2VVVV,  t(֯ ($( k+V+, ,K      ,]67632&&'&&5&>4&&/'&547676767'&/&'"13267'&'&'&4?<2 2   h " $  2'2"&467"264&#22F2  K@%%@K@%  8(88P882F22# %@K@%%@K  Xj8P88P8 +C2".4>327".5%#637".5%27#7&"32673#"&46.O..O\O..O}.O.$ .O.V.O.*.O.@$V&- $ +#22'/''/'')'@+T'!'KU%, 2G2V$?'7#"'&'.5'4767676372oo )(%"" )(%""@@'2E" 2E" '%#5#5335#3#5#535#5337!"3!2654&+++++++++++++j*U++++**++**U*k$09!"3!2654&.467"&462'>4&'7'"264&Vm#22F22V$k?B?/2/ 2F22F2$/2/?B?$$k#'+/3353#3#5##535#!5##33535%35!3535!35+*****+++++++k++V++V**V**VU++++++++@ %#35#335#%'7+땕 ` @++*6 ` @ k #'+735#35#35#35#35#35#35#35#%35#35#'!5@kkjjkk++U++V**U++U++իk*****++++++++++++VVk 7!5!!5!5!5!5!5@U+k@VV #%'76735#5##3&'#77#3733'777?*-+(mkB+`+e+"#5=N+**+@2 '5,kjB@@j]])2"&462!5476767'64'7'>&'#22F22# &+ +& $ j))#U2F22F2 ++ $W $.k*lk)""RR '2>4&46?yyy1?B?1ZZ yy?B@11@B?h,]^399 *7'53535##".4>32#.#"32767o`***U8H:b99b:2Y= -\:.O..O.%" +B:ok***9btb9,N07I.O\O.V462"&4&'4&"3353##&5%*@@k##&&jj0%7732#'.5&7676'2'#.#".54>9B >'=%/T< ! V5.O.;0+E'9b6 C  m>' 'E+0;.O.5V &//5j\r  q;)j++  2nt7!!%.''%>5j r)Xj*8a ++   `_%73#53#7"2>4.".4>2****:b9 32>32;265&'&#"&'&jj"!8"!E;+")E!``  7  %%#"&546;7532&#"5##3353565 ";#+@@+@+#V #; @@+@@+V%.7@I#"3!26=4&+5'3#32+"&462"&4632"&46"264&3"264&*+  +*V**F%%6%%%%6%%  U* **   %6%%6%%6%%6% *3<"2>4.2".4>"2>4.2"&46"264&*O< 4.'77:b99btb99bejL9btb99btb9kL "2>4.".4>2'7:b99btb99b:.O..O\O..O47U9btb99btb9.O\O..O\O. 7V5"2654&'&2"&46"#"&=4&"3!264&+54&#  %5&  - +  & @ 3%%3`   `  %  k72"&462"&462".4>((9((#//8//(9''9(f$$/8//8/ "7'!"&5475!'!2'35#'#3'3'|+~+/ V|f*8++ Ue 7'+"&'7!'!'  < +o$eq V*"4D76763234&'.67>5#"&'&7"767674.".567> & ,*  *, &  .:b9,)@=>@(,9b:.O.$ dd $.O    P   9b:Q7227Q:b9.O.A,'',A.O.V%%;#"&5+532654&+53246;#" *5  5* *5  5* + *  * * *  *  7;265!77''?'##!54-------ijJ*+h...----++k %3#53#3#;26=#7#'##!@UU@U@k+*++U@*&3U%"/&=4?62'752"&=46"26=4&#5767654'&76767632   V -   Tm   !  ` ^^ ^^ GTTT!9 9! ; ; l      ! %3##5#'7335!"&762%!!BC!D#V  o_}##ke9 ` +!*3<"2?64/&'72"&5467&546"264&'"264& $  .      $ $ *P    ^C   4@!2#!"&546!"767632"'&'&567676&264&k**w         *+*`  8 -P k%"&462'"2>4.$.O..O\O..O$$.O\O..O\O.'3!26=4&!57'7 V :xx  kk@jkkk %'5463!2#!"&=!57V*V*+4:1'327"&=4&+54&+"35326=4"&4625#73O-   ,5  +U+&O- `k+   `k,@"26=>=4&""&=4&""&=4&!"#33735#57>'&@      _LUU5 v+  +v VV VV -P++9  '35333!26=3!!5j+kH  ~Zy3@*@` JVV/ y B/+*_k3335ku@uk@@+1@I#1"'&'1&'&'77#&'&'&7'1?7617.'71&#"1"   G Y- 7 UbD+ E*]S:@"M"+  S  i Q U'ehR Q# `ck<"37>7>;654.#".#";6?3264&+&/# 6W,  6 33` 4w w4 , k 6 H  r 6   v  v  1  q13533'335!35353533'*@*@**+**N*N+ 3!53'2'&'&'&546"264&@*@"/(   /" \0!(6 !01"+/:%"&.#"267676264&"&4623"&4627!!'.'&!l-.#11D0 /D11##2####2##PV /14& &2G2-" !-2G2$3##3$$3##3$ '3"13!26=4'7'&#"&54>3127.2#54> 2S1*@,+3:0 6 /"+@# 2C+%@";#' (1KK(#*@, +N366%@%%.:%254&+54."#";&4>'462#"&462##5#5353 1:1#;%6%@$@+@@+B+11+E;#%%+$$+@@+@@ %7#53'72'5!!57#!"&5463,88jjJ+*+s8*8kk+c*99*c* !%'#'737/5'&#"26=35= 1;;1 =.#22F2V=Q1<<1Q=.BH( 2G22#U #)%'#'737/5%&#"26=735#= 1;;1 =.#22F2{V*=Q1<<1Q=.BH( 2G22#%zUo*@ %'7'3#bb++^bb@ 7';#wbb++"bb#;DM"27676=622?64'&'&!54'&'&/5##52"&46"264&GB?25 /f/52?B+*#22F22#,05BB 50U@ UU @++k2G22G2 , ,k !%35#535#535#4>;55#";#".+%@% @@ (88(KK%@%+*K+J+&@%+@@*8P8*%@V !3#3#3#%;7'#"&46;5#"+%@% @@ (88(KK%@%U*K+J+&@%+@@*8P8*%@97>7475&76762&'#"&'##"&5467&''&6D  #%v%#    ,**,   ;&((&; /  /7;Dh707676754632#"354632#"676763""'.'&#"%#3#6763227>763""'.'&#"+#&!= k%!< '  /   0  '/kkk /'  0   /  /   0  '/ % %  + *+ Y *  #'+/<%3#535#%35#35#535#535#35#35#35#35#35#35#%4.+323++++++++++++U++++U**U++++U++1jj%+++U++*++*++++++++++++1+%j )773"264&'5'#56?>;2'53` K+U$n@@ 8 L ` JV$$U@@ /! {L1 2"322>=264&+"3"&=264ᒐ6&#U %&?L?&  ,  &%@%%@%6   + U    +k$)532#54&'&52#4.52#4.2#U]OM,/+PCFRFuE*!="&463546&#3#   $1*12# 06    R- , 11 , $1+ K '577/7'kff9@[Uj\'' RN4%G5*%&k'8AJ"73&54>323.2"&4632"&46"327'>4.2"&4632"&46,I+6 (E(Ss  s  i";##;"-";M  ^  k#;"42 #;"&06     51:1(/715     !"3!2654&#53* $-159BFJNR3#53'7##5'5#3#5#5###546;+5353'3#53#53#"&=33'3#53#%3#%3#@*v.3+@+*+++2i++++++@@k+@++++++++++V+-3*+u *++**2*U@U****++*@@*@@!"3!2654&!!V+5#35#73735`+M`M``+~`M+`+``M35#7'5#?35#3L``+`+L`+``L`L+``%7!;2>=ZW$H@(D))D(Ջv@)D((D)@+!&+075&'#5#5353267533##5!%355#5'#5&'++++MVM++++*-B \U+**++lB\M:.,,.:#7#"&5463!2'!%'762#57--*VmՏ -R-k#'+/!3#3#3#3#!5#535#535#535#5335335335@@@@@@@@@@@@@@@@kk*++*++**++*++*@@@@@@ "&5#264&"#!"&54633#'3#73#@Օ%%6%%U**V++++VV%6%%6%UU+V+++++ #,5>GPY%"264&"264&"264&"264&7264&""264&3"264&'"264&#"264&'"264&$$$$$n$n$$$$+$$$$$$$$$$$$$$$$$$$$"&03!2654&+'532#5##5463533#57#|56k  +@++@++V U++U @@k %535#5'#373#VVUVVU+**k@*@UU@*@UVk 7535#53#VU++k@*@UVk #373#V*++@*@UV %#5##!5U@*@UVV*++ 73353'7#5##!5@*@UU@*@UV+VVUVVU+** 73353/!5@*@UVVU++#'5353#!#"&=3332#5#'##5463!!k@* J *@J *@@* J**@J  J@ J@**@J *!=735#"2>4.".4>2"3462347>7654&***O< GPY3##23#&'&=4&+5326=46!2;#"+535463"&=#52"&46#2"&4632"&46k**** <***k  L   +jj+ U*UU*U+jj+       k7'#5323#"&/Y* z+ OE)++%.7@I3#3##53#5333#535533#5355'2"&46"264&72"&46"264&+U++U+UU+@@k$  w$  ***V*@jU kU  &5%%5&##%5&&5%## #-39'&'/%/'&'%'&'9''<h  \5YYD ACQVR %746755.%"2>4.''7'77+/&9GG9&/4X44XhX44X7MMMMMMM,I.c|c.I4XhX44XhX4MMMMMMMk%".4>;#'"2>4.+IWJ++J+L 5 5@6 6.O..O\O.+C[";F;"";F;"09BK%""&54675.5462632767.5462"264&"264&"264&/%5&&5% 5&%5&      %%!!%%!q  &&""!U   +   +   -6?H2>32#"&'&'&'&'"&54675.546"264&"264&7"264&%8%4!%%!*%5&&    %!F"&5%  &!%%!!%+     +   #73535535#5##3355#73535#5#@ի*VUU+U+UU+U****+*++*+U**U+*+"Fj7.67>767675?>&'#7'.'7>&'&'#"&>6'&>'>'..6767&/4+(  ,6 x   W* 0& ,#7! ) 13*   31 A    1+04 6      /4) !5+ f! K73* . 3 k   Pk2"&462!54>3#73#73##22F22#.O..O=++V**U++k2G22G2'++'+++++k"&462!54>27#57#57#5&5%%5&@";E;#%%6%%+''++U**V++ %53'3##5#3#7#3@.nn.@jjj֫oo+ՀU*(15>GP235462+32"&=#"&46;5#"&46264&+'#3"26=4&";264&"#2V2F22#++#22F2V2F22#++#22$+*VV$$+$2#++#22F2V2F22#++#22F2V2F2$V*$+$$+k%''7k 33##73#@gg땕k++++k %53'3##5#@.nn.@jj@nn+ր  #'!!3#53#53#53#53#3#'3#'3#'3#@@U++++++++++@++@++@++@+++k+k+k+k++++++++!'76&2?>74/.#"%4&+4Pj  k  `Jc }!I A  A!A!%"32?>74/.354&#76&/ j  k>JU4jjA! A  !} B!%)2#"&/&6?6;27'7'' k  j R*4jD E  A !A  }BB4U3 "2>4.327&'.547&54+/N..N]N..N!.N.8,%.N]N..N]N.QF&.O. (=#  . -"2>4.2".4>327&'.547&54+/N..N]N..N.";##:F;"";!.N.8,%.N]N..N]N.*#;E;"";E;#'F&.O. (=#  . &"2>4.327&'.547&54%'7+/N..N]N..N!.N.8,%-Q2.N]N..N]N.QF&.O. (=#  .%Q23"2>5#".4>327&'7327&'.547&54+/N..N]N.*#:F;"";# "l3Q!.N.8,%.N]N..N/#;"";E;#" !3QF&.O. (=#  .k8%2'654&#'65"&54735'4>2.'.#";&$2 0+#21&?M$( X:-M 4";# 2#  1 2$  0J%@%8I/'#8!";# ";3354&#326=k*իk735'&'&/737@@@ V @5_ mk@J  I7` n"3764/&35C 4 h + # 4 # g ++"67"264&3"264&'"2>4.".547>7327 u K*O< 4.327"&'7546237"264&*O< 2#$@77@##V  k!54'&'&+".=3"264& @5@+&1V3$22G22k Bn!e+ 3S0 2G22G2"264&"735337'&#$=rL+*+Lq$$kqL Lq3533>5#".53"264&k.'+*+'.*1:1k$,IǕ9I,11$$K2"&4632##5#546$@ V ##juu@k4"264&?676?6&/&&76?6'&   2  kf   <'$ #  -: "764/&77/g -q- C `70&1 -q-  D F17P'.2!7264&"721'&'&'&4>3#,)D(&, (D,,(D)2H39#"1)4PD(*)7264&"721'&'&'&4>3533##5#,)D(&, (D@+@@+@,,(D)2H39#"1)4PD(@@*@@ "764/&372? |y| =  Oy #  |y| # <  # O  2#!463#33535#5U@@*@@UU@+@@+@$3267#53#3!53.54677'7'"*71!5 70':9G~KJK::=*1#**3#**C%:\i *  '+G3#35#535"3!2654&#35335##53!!73#5#353#35#5335##535@@U@@kUU@@@@@+@@j@**@j##35#3354&#;5#5#35#(mL+V+n7+m+L+V+Im+7!(1:C7''&'&'&".76767676767'6'67.>6.6%.>++       # U  #& #,$++$,e{+ $  $8U,9$,9$e2/3..3/2#"326=4&#"'&.'76'&54&#35U 7fH ($ /-I/  u Hf7 K  /H./ $( @+++"326=4&#"'&.'76'&54#33535#5U 7fH ($ /-I/  @@+@@ Hf7 K  /H./ $( @+@@+@ .%+"&=#5!#'";23.+"&4637#23.'65++** + $ g. #+++*;*! &. ~7#3;26=357I$;>++~i++ 33##5#533#3#3#*@@*******+@@Ukk"72>53".4>3"3##5#5353";#*.N]N..N/#;"";@@*@@*+";#/N..N]N.*#;E;"**@@*@ %53'73###5#5353k*UV:>k@*@@*q:VU*k"*@@*@@ 3##5#535353!3#@@*@@***@+@@+@@j+ 3##5#535353!3#@@*@@***U*@@*@U*"2>4.73#*O< 4.2".4>?35*O< 4.3#7'*O< "2>4./#5*O< 4.3#*O< 4.2".4>35*O< 7532>54'+*+(DRD(@)D((D) )#"3!265"&'33264&#"#5>2+ 5 % ,,# "U/911#,>+"U1:1WV%#.5>32'&#"376J %FHT?$  %0.) k4P@IP5.1+2V%17#.5>32'&#"37673533##5#73533##5# %FHT>#  %1.) *++++*+*++*+k4Q?IP5/0+2n++*++*++*++{.;DQU'76/7"2?6/4'&+";2?6%3#76&+"##'73'3;26/37'7i32  ##@@hcddcļ]gT7UGLQQN_U7Tg^ ^^`WW5 640<;/nom?'?'?'::;;5vv55vv::;;;::v55vv55u:;;4=RV%576/4#&/4&+"'"37;265?2?64#"&462'4>3254&#!";&!! * *f (D)>-3$  $%  $ )D(,&Z@k "%3##5#5353'5!!3#"&5463!2#@@+@@++UU+@+@@+@++U+~73#+"&=#5#37I$; d+++~i++++ %55;#@VV@@V@@V #'7#37#37#37#5##5##"3!2654&!5!++U**V++*++**+++++++++**7'#5.533267'&'&'&54?53#4&#"'@eN!@!*+& @ I@!*+& !eN//- @  C//-!("264&'"267.2"&46'3#7&'>7U  +EEVFF+ ,@U (U   @/&&//&&/ ,, 6,%&'&'767676("7 %) |'$ 6) &/!"3!2654&3#5326=3'3;#!#5326=3V I < VVV ;V 4;I7'1.4>3>3232#"&463264&+54.#"&#"7337#"&47671` 1E+$>& $22$ *1(; %k@++P6(  1:1&/";#2F2  $13'%7Uj#)% 8j%"&47671%&6?'&4627>76"/.?&'4>3>3232#"&463264&+54.#"&#""'.(   0# #   0  0# #   0 C1E+$>& $22$ *1(; % 2)% # #0  0   # $0  0  1&/";#2F2  $13'%6 ' )22".4>"3"&46264&2"&46"264&*O< #'##3326=#:b99btb99b6@6֫ 9btb99btb9j+  -9?GOU3&'&5%31#547676716767>5#54./3#'3#'&3#673#5U+)0'%6++6%%+6%%F%6+)0~ } } *&)3<**<3  &**<3  &3<**&) + 7 ",%#!"&46;732'"!'&'&'&'&3!26=!65+6(!  !(%%#**   %%v.26:%#57'654&"5#654&"7#"3!26=4&3#3533#53ku* k00P`P003!    ,+UUUU %#"&5#5!5!"3!2654&U%6%U**%%+*V 7!5!!5!5!5!5!5@+*+U** 3#3333#3+*+U** 73353'33.=*@++@2X66X2@jkkj@V:lLLl:(%'&+"2?64%"&462'&462762  # [[,-  #o[[,,!*-"35335335>54.2"&4632"&46#4X4.'++*++'.4X##D @3Y40TK@@@@KU/4Y3####@@!!!+'%''"2>4.".4>2'335#75#bbb4X44XhX44X4)D((DRD((DiMMMMx R R SF4XhY33YhX4)DQE((EQD)Y'+Z&"+434.65!'#33267332654&"&4623"&462.NX$J/,*-*+ .N..:++,- $+$$+N)!"+"&543#3#3#3#3#3@Ukk@@@@kk@@+*@*'+/346226=3"&54&"3".54675!3#'537)9) (.<(DRD(<.++@@((  P2(E((E(2P @**48#"3!2654&+5##5!!7"34623467>54&35*+@*֙")   *"7*+*+++   ++V3#3#!"3!2654&77++V**j  5&6DU**  D.DZx 7'?7'7bbDD^DDbbNlwbbDDDDbLOmk &2".4>2>4."'.467@.O..O\O..O.#;"";F;"";0%7II7%0k.O\O..O\O.";F;"";F;")B,\v\,B  1.'#327'"73.354&+3##3;35355D GqB QE Q5D Gq++++++ `QQ`Հ++++++#'+/5#54&#!"3!26=35#535#5!!3#73#'3#73#*+****++kkUUkkUU+**++*+*V@@k .3!%#;#5326=5'!2'#'5#[XV<  d-m<*;DI :-;\ dC--l+ D !%+/%'67%5#'#!535#'7537#37'#325#x ( * V@V) q@ox H! *+,+*+@@@ !"7!2654&'7'?U+771@@1U""@+:<+(4;"32>54.".4>2'77'777'7''"3.:b99b:*O< 9b:.O..O\O..O+p%; ;9btb9 54.".4>2'77'7'267#:b99b:*O< 9b:.O..O\O..O-.-Y%; ;9btb9 7&54632>54'&'N%" &."-/)")$(2<-+$h# 4$" b( #$ * * "$ %,  $   #'+/G3+3#73#73#'3#%!"3!2654&#53#53#537#3#5##5##5##535#5!**+++U+++++++*++U**V++****++*++****+***U+++*+++++j*++++++++*#5##573353353k++k@*@G` !%!"7!2654&#535#535#53#537#535#53U+++++++kk@U++++++  737%#53'5%!53#3#>54&+Uz++++~i+Uz+++~)++-%#5#"&4632>2632+5#5!##!"&5467,W`++!/,&&,>,~**.  5##5#"35754&U*V*KjK+UUUUuK@@Ku '#5'547'7'54##'#vjKmX*Q**%v@@Ku nUU&+k !53353'k*UUk++րk0%"767654&"&462#"&5463!2&'5!3,, `V,$$,fEq/@3(2;D23232+#!"&=#"&=46;4>;5.546"264&3"264& (E(  (E( N,, )D) @  @ )D)  ,, ,, #7#7%.#552"'3267>&NNNG&ZZ66= +1&G%7NNNE[ZEMM %ccV7%!2#!"&=4635#35#ZL **y(mUu +++ .>72"&46'3#2"&4654'&#"337335'26!4676762  ֶ  >%>;(!$ < !*/V/*$J$   k   & &! !.D--D  !5'75#575'53UUUU+UUUUUUKKUUKK 1%3#'755#5"&462#576323"&'#5'#`uu55@55u`#a&*p 1#< ,+.%-u %56%56& 0##IGd. "*@,+ 7#'73?/'#7''378ii8((m?~?SP~?Ukk0%00%6nXmmmePn$%#7.67653.>7'5;ML::LM++%ccIJbb%:J[<9LL9,="#'%IbbH$73+++22 +22+U*080080 77'7'kjjjkjjjjkjjjk KK 3!33!53V*kkk**'57#9r d9 %5'7#9rk c93/3#!"&546!!"&5UvvրDu +U+U !!"&53/3#!"&546!5#5@@vvր+@+U@u +*Օ"3!2654&#3#7UVJJJJIVU !>=2''575575462X66X2 ll//ll V:lLLl: KC"JJ"CK k !%'7627#5"357&'"264&, ҁ,,.O.V#22F22, {,'+)U2G22G2%'7/'7?'#535#534M(II(M44M(II(M****;ODDN<;OCDO0++3.""&4627'.#"326?62"/32>4.*<**<!*55*<**< "0553*<*5>5*<*"5>5 /7?'#'##7'~~b%S%DYY5FF00OEE463!2#!"&5'7'5@*K~~KUJ~~J2#!"&5463#7'7'3J~~J*K~~K3"&5463!2#%37'#k*J~~J*K~~K%#!"&5463!257'7*K~~K+*J~~J%#'#5'7#53'75373de*e`de*bdeddb*edc e#0"#654&'5#46226=#"&54&32775)<.' )K (D)L( %.2P  (MK(E( L -7#532#3247#!"&5463!24&'5>54&+326-5473))))#WV#(F#NN))))!'!2#!"&=46!5#!"&=!#!"&=!k* + V V * k %,#."#"3!2654"&46'3533#5#7#Y!(!Y*  IU@*@*@UU@*   UUU ?'77'77'7''@ff[ee[ff[eeeeeeeeee[ee[ff[ee[ffeeeeeee#35!5#72++"&=#;265++++2#$2++@@k@@$22$+ .!!!5!!"3!2654&2"&46#5476762VVVV((+++;((   %773+"&A\l%%%6V$,"3!2654&#3.+54&+5326=3263#k*DD * *f*+ @ + +a` $-#!')#++3'465"'7325++.** *!'K+ *N e++++ +'G*.)@ Ok'575!"3!2654&#3#3Un++++jj+kk+@++`2"&4672"&'>267."%%6%%Omfxffxf%6%%6%`YGGYYGGY6??66??k #/7'#"&'672'672'67.#"'6327'./+eB&(O.%Q O;-f<"!!0f<1!I PA YG9(!% Q`YGD+16? 6?1!I@ %'77%7@@@@@--Z--2"#7>7767&#">7&"6767&>?6 #!*$,$" )-$," -*B(-#$4"  #2.3)*(+ ' + *k&235.#"3>67##"&'7#73277'6,7%@*+:+;&'6,62&h @6,";#$1%%06,h k 335#737#7KK@+@+QL֫9N $33#535#3#537332#5##54635k@UU VKKj@@@'@@@jj+UU #'+%!5#3!26=##"353335#53#53!3#!#53++U+U+@@j@@@@@@+++UVUU*****7"&46;#####22#+*++2G2+UV %#5##573#3##5**ꪪUU@++++V %#5##573#**ꪪUU@+ -1:>B'7/'!.'>7!&'5!!5#547676253#'"264&3#53#4/>>/IV(UUk,U <(99(<7* J  ek ,, +@ $(7!2!"&54673535>54."37#53'2#5.546UVc'EV1:1VVV+#2V2cVEE*k,11,k+2#' !! '#2V+2%'67676'&'&'#3';27673#3265##7) &1D@+*U+b@  9*7k&+{j: A* !38*++@$ " -++& <  &"67654&'2'&'&'&54>32>`) P)+ 6+EE+6 22UH#2( *+6 ''",>>,"'' 6'&'&'&54>32E+6 6$&:>,"'' 6* 5.#"'&'&'&54>32U)P ) +E+6 6$ (2#H*:>,"'' 6*#52+"/?632+"/?63%2+"/?63//`//`//`//%00`00UTTUTUUTuTTTT&#".=#26=.5462264&"$'1j@&5%$2G2U#@.'1kk&&.#12N$$ *%5>.72"&46''.=#26='7+"$327>7'&"27264&"550";<*55*;<*:9<**<:9<**<35>5"455>54532*<*{32*<*3%'.'67&'&/6'&'676&''&'&m'c3*D5f'V] 8;%AK%  0D !;%Bx)160A9-c,Xc- " )1!!732654'&/.46327.#"#"/#3353@ !!       -j %%C   *  |   7'!53"&=473'5!'!2#3#'z+U(V+/U/Ue*+⺺++V"&*.22+"&=.4>+"&=73#%3##5'7#;"# V #";N * @@j@@*----@";F;& &;F;" ***@@6---- (2@%3#%3##5'7'2+"&=.4>+"&=735>54&"@@j@@*----#;"# V #";N * *$2F2$***@@6----";F;& &;F;" @--#22#-&/827&5462#"'"&54675.5462"&46"264&$2$ ` 2G22#a 2G2$$2#22G22$#2#.0`#22G2 a#22#.0.#22G22G2+##k%#'#"3!26=4&#3##535#535#533+V<+++******+@++*++*++**!%#'654."3277'"&462'3#K!%@K@%%@&3'j (88P88^kk'3&@%%@K@%!j j8P88P8k)%'5'#".4>2#264&"7##5#53533Kj j'3&@%%@K@%!o(88P88]++++j j!%@K@%%@&3'8P88P8V++++k #"!26=4.#5462#5#53+53k11&5%*VUUk11%%+*+%#"3!26/.+5'3#33##5#53*@V@*VVV*@@*@@+**++*@@+@@+ !"7!2654&35#35#35#U+**V++++U++++++M%"&4627#!463!2'46'76/&&/4+"'&?;2?672?6 UVo *  * sU %  % %  %%!2#!"&5463#5*+*U***'2+323#+"&5#5346;5#"&=463kV V V* * * *'.2+323#+"&5#5346;5#"&=4637#5##kV V Vk`K*K* * * *`UU'@D2+323#+"&5#5346;5#"&=463"34623467>54&35kV V Vo")   *"7** * * *+   ++'.2+323#+"&5#5346;5#"&=4633353kV V Vk`K*K* * * *5`VV %73533533535#5735335335%!##5#U++*@*UkV@@VkV**V@@@@V %"/&=4?62'"2>4.   11:11` ^^ ^^ 1:11:1?'?7''/$$W#WW#W$$W#WW#iWW#W$$W#WW#W$$W!2#!"&546!5V!2#!"&546!5VVV!2#!"&546!5V*VV!2#!"&54635UV!2#!"&54635UV "2>4.2'76#5:b99btb99b+%,,9btb99btb9l +%,, #'7!7>>QSUu!7QQ !2#!"&46%!53#3#3# I++++V**U   @****k'?!##"+"+'&'&5476?676'ᓽ54&+"&5";26V H 4 H    @   @ UU  h  $  j    %!2#!"&546333##5#53**VV*VV+*U*UV*VV*k 3533##5#73535#5##Ukkkk*kk*kkkkk+kk*kk*k35377'7''3264&#32+U++sLLMMMMU&&kk kkVVtLLLLMMV%5&+   "&*!5264&"5#72#!5#546353#53#53  7%UU%+*+UU   kk&VV&++++++%-5?Dox%2"&4667&'&'7'?/&"27'013&'0167#&6&67'7'&'&'&7&'&4767&7>676>4&'&'6017&'>''2577.676 R ) 2  2 $c )& ++ - - ++ -  !%%! !%%!D){D)!!"-u      "-u  "+ 4 +"  "+ 4 +"        a -"  a -"%2'767>&'.#'7.7&">!!'%' 60kkz)    k!XX  +ACbkj)s2 #Q + @ 77''%'@@@@u--Z--"2?64/& $  $ $ "2?64/&' $  $ $ * $7@2."'>2>4'7".5472'"'.54>"264&*O>D?O.O\O.# "0 o+&"iK##]++@*"/dI+ !&.6=EJO%'5'#".4>2'3&'&&'#3673'7#64'#'364'2367#7#6'&'Kj j'3&@%%@K@%!o = T% ) %"..-[E" = h( %% j j!%@K@%%@&3'5"  X 1! @  5 ## $'7676?'72?/7B< a</   ) & 20$$02 & ) > ) & 20$$01 & r>k%#5.46753'"264&k1%*%11%*%1k%%6%%&;WW;L;WW;%6%%6%k%".546753'"264&k1:11%*%1k%%6%%11&;WW;%6%%6%k 2".4>"264&'5311:11%%6%%0*+1:11:1+%6%%6%U++k 2".4>"264&'535311:11%%6%%0***+1:11:1+%6%%6%U++++k%".546753'"264&53k1:11%*%1k%%6%%0*11&;WW;%6%%6%++k+2#5.54>"264&11%*%11%%6%%+1&;WW;&1+%6%%6%k+ 2".4>"264&5311:11%%6%%0*+1:11:1+%6%%6%++ %.7@%'>4&'7/64'732+"&546"264&"264&2"&46!!Zӫg#$22G22##)>F>NVNF/4/ *+##2F22F2*$$&936253".5467"2764'&267#54&+"#'k*@@2r2*@@!9btb9!9r954.<2FD'  7  "0$";F;"$0G2<V*     V$/";##;"/$  #%5755'5'7%''575'7kM?ˬkM?8r3rjjjjskkkMbL<$/aK<$dI?$dI?:t>p:t>K;;= 373#53'#3#@xyy]Nx]yyxxN*`"73!26=4&+"'&=#"6=#+,%*?"X"0"."rl$(& ,+^!k33'3ggk!2#!"&5467#5##k*k@V@*kUU%'3533%!2#!"&546!k@V@**UkUU*+*h#'7gg#!"&5463!2535#5*kUUU*k@V@?3##!"&5463!2!!kUU*+*k@V@*h75355Ugg7463!2#!"&%'#3@*+kUU+*k@V@%5#535463!2#!"&7!!kkUU*+*k@V@**h%#5#7#@gg)"&5463!23353*k@V@*+kUU##5#!"&5463!2'!k@V@*+kUU*+* 2".4>"654.'32:b99btb99b:>+%.O;%.O.>9btb99btb9*%36.O.+>.O.#3/3#!"&54654'&"7"264&vv 5 U#u V ##-J462#"/76;2564&".54672'>54.".54>  i  h D#2&5%2$";#1:1#&/"; _/ ]  Y$*2#' 8%%8 '#2+";#/ +11 5 B)#;"462#"/76;'7#5#  i  h D@@*+ _/ ]  Y$@@462#"/76;535#5  i  h D@ _/ ]  Y$@@*++462#"/76;'#3  i  h D+@ _/ ]  Y$@@++*462#"/76;'335  i  h D@@@++ _/ ]  Y$@@V-462#"/76;2564&".546  i  h D#2&5%2 _/ ]  Y$*2#' 8%%8 '#29Y%#"/76;54625462'2564&#".467>72'>4.".5467> h D   X $2%" *#;" 1:3 #&/!:}  Y$ + k'2#' 7&" '1* +#;"!8 3<12 5 B)":"C%#"/76;54625462'5167654&".467>32 h D   X U %3  *$2}  Y$ + k'[ & "+ '1* 2#' A%"5676?##6'&'&3767676237676737676765##i  > 5 ( * > 3  =6*K5@64>8 DQ"  6*K5@6"$2.%.C-*  %&/".=4>27>'' (55-6//6,55( &&55'//'55v 373&/U?U(/>-'V{#'+/?2#!"&=#"&=46;546335#'#35#75#75#75!32+35  Y Y +2 0"?666666> >{  >  > XZZZ55P55P55PP5  5k %5#?'7'%4."*%&%`.PZP.+@@5&&&&B.O..O.k.%27#7&"32673#"&46'32&#"#"&5463#U&, $ +#22+"(&@%V& , 2G2+j%@&"35323##5#534.##5#3535+*+N54&35  p     (  c #V  ")   *"7*U  ?   23255##5#53533+#;" v`@+@@+@E;#luu@@+@@ 7'753!!3#6ii6*5ii5+*+ 7'753!!#5'7+^^+**+^^@+^^+U*kUU+^^ %7'73!!3#6ii6*Հ5ii5+*+V 3#735;#3#'77@+*VՀK-bUV++++@K,a+ 3#5733#57*@*+@++VVVV!2#!"&5463535#5##3UVVV*V7''&'&'&54?2>326zLDE+ h22 6-eL>>,"''>6 '(#. "&46325"&46325,>++,>++++>,}-,,>+7'"&46325%'>25'+e,>+++ i  6Po,,>+W i }(5!"3!2654&#33!7#33535#5@ի@@+@@*+U@+@@+@k37'#73533##5#@UkkU@*@@*@kkU@@*@@k 37'#73#@UkkU몪kkU*k37'#%'77''@UkkU"7777777kk@7777777" '7''7sbbDD8bbDD"bbDDbbDD" %'7/'7DbbDbbDbbDDbbA /%!"&54>32632%265467'"2654."$2.O.!!.O.2#0$U$020$ @2#/N. .N/#2U&B$/D/$$/!!!@+*U*!@?'?7''75#75#/$$W#WW#W$$W#WW#***iWW#W$$W#WW#W$$W++V}&/8EN%2"&46'6>&'&67.>&&'67&'>7.>7.'6&'  Z55Z.##.Z55Z.##  6# 6#O %#6O*** %#6   ##.Z55Z.##.Z55ZC#6 #6  6#% ***p 6#% k 3533!"&5@*@V$kk#)3353353353'3#'3##53#3##53V*+U+U+UUUUUUUUUUUUUU**@@*@*@k+U@%7!33?'5taV*7^jU| k%'7/'7?'4M(II(M44M(II(M;ODDN<;OCDO'%'/7'7'?7'7/'7?'4M(II(M44M(II(M';77;'';77;;ODCO;;>"264&73"Z ;#2#1''. y<+Z 2#.1'+'#5P< 5"34>*O< *.Ok* 2#"&'72>4.#"3'3>+"&=4675462'"354& :c99c:7^"L\N..N.+J/;OP9;]v v #1#< ;9btb94-&,.O\O.(D*OO6W3 b b ""  /747"&767"&5'&6265'&'2".4>  %ZOLLOZ*O< 4."7'762'2".4>,,k.O..O\O..O, h*O< 7.467'4&'>!!)D((D)!!)D((DU(DRD((DRD(5 060 55 060 5V%5"32732>4.#"&2#".4>32#"'>4&'6)D((D)!!)D((D)!!  1111  U(DRD((DRD(*7:71:11:17:7V#0%"'#".4>32632'7.467'"74&'>@!!)D((D)!!)D((D11+(DRD((DRD(*7:71:1k5 060 5V%/"32732>4.#"&2#"'>4&'6.46)D((D)!!)D((D)!_11  6U(DRD((DRD(*1:17:7-2--2-V#02632#"'#".4>2>4.7.467'!!)D((D)!!)D((D11U(DRD((DRD(*7:71:1k5 060 5V 2632#"'#".4>>4&'!!)D((D)!!)D((D)####U(DRD((DRD(#;;F;;V%5?"32732>4.#"&2#".4>32#"'>4&'6.46)D((D)!!)D((D)!!  1111  6U(DRD((DRD(*7:71:11:17:7-2--2-V#-%"'#".4>32632'7.467'"7>4&'@!!)D((D)!!)D((D11]+(DRD((DRD(*7:71:1-2--2- %.=7>='2X66X2'E):lLLl:VV @X.iB7#7'3573#2#46355k55k56UU65"&732+2#4635#"&=46;!535  k+ @@ @**U++#35357535@:@*@P@@@Y++e%P/@o@@@ ?'77''37!##'#<<<====<@19=46$Y<====<<u+++  ,ED>>,+++*,  ; % ;60 3!77@+jjjVJK+*De)7"/'7'575#''2?7'-4DD4- e7#&4737#&'77`H9btb99b:  P$` R H7? //?/{dd/? e;"L  :b99btb9! ),"),,($*+! '' !($ ')e@"M  +035#37!4&#234.234.34&" +DY)/+U4Y3+?l@1+*7@%  @;+% +'+4X4@l?V*17*U@%/735#7"3462347>7654&'!2#!"&546**#2*$ *   2*@+2#     #2@* !5'75UUUUUUUU]';%3#"'"'+53272773#"'"'+5327273#"'"'+532727**,*(Z(*,**-)'\')-**,*(Z(*,**-)'\')-**,*(Z(*,**-)'\')++++++ -%#524&#";35>54'6".4>2@1s   &: 28U.N]N..N]N.2GGV # G1 &$n>1, j/N..N]N..N ('77#5'7#5!3#!2!462!54>--w*--@@@0$$0---`@@Q--+++@$//$V !737'#5754&#!"3!26=!5!U@@U@@  + U+@@++@@uK  KV%'7/'7?''774M(II(M44M(II(MU7;ODDN<;OCDO0V7 %'737#!5v*vu.v** 7'7!!'5#3u.v**v*vV '7!5!'3#u.u**iv*v ?'#735!Wv*vV©u.u** 5!3'7'Vvvk**vv/ 3#!7'7'!**vv/vv #35!7'!U**/vvVvv 7!5#7'7+vv**/vv4<%#"&546;7532&#"+"&=46354622'4&"3/ 65 / u  $.% 6@ K V ,UK  K   1  =%#"&546;7532&#"#5462354&"";26=4&/ 65 /\%.$  u  K V m,O5  5 K  K A&#"&5#5463#3'#3'#3"264& &5%V+KKkUUuVV @ %% 55555KA#'0932653265354&#3#73#73#73'2"&46!2"&46 +%6%%6%+66VUUuUUu66  @ %%%% 555555u*5 k $(,048AJ"32653265354&+5354&#3#73#73#73#3#'3#73#2"&46!2"&46@+%6%%6%++VuVVvUUuUUu66uUUVVvUU+  k&&&&@5K 6666666 55555KA"&/8"32653265354&+54&#3#'3#73#2"&46!2"&46@+%6%%6%++KUUVVvUU+  @%%%%@* 55555KA!%.7"32653265354&#3#73#73#73'2"&46!2"&46@+%6%%6%+uVVvUUuUUu66  @%%%% 555555u*5V!04#";26=4&"&462'"&4625#"3!26=%#53kkG&&5%% VUkk&5%%5& U+@kk)6!2#!"&546!2"&4672#."#>"&'32673UVV  "4"!*!"4""4"!*!"4k+`@*!!**!!*k!(/8!2#!"&546!3#%#.'5#5>735372"&46UVVvOOvvOO k+ $KK$$KK$k -!2#!"&546!2#."#>"&'32673UVV"4"!*!"4""4"!*!"4k+ *!!**!!*k!2#!"&546!2"&46UVV k+`9576767'7676&'&767671676716'1&'5 7HE( #;(EH7 5c!  *h .>,/ND2(2!h*  !c@&/#5##"32653265354&+2"&46!2"&46U5U +%6%%6%++  @E @%%%%@KA(1!32#"&5#"&5#5463533'"264&3"264&@@++%6%%6%+ n)  @U@%%%% 5555@&/#32653265354&+%3#73#2"&46!2"&46Uk+%6%%6%++UK)t  @@%%%%@5555K@#,##32653265354&+'3#2"&46!2"&46Uu+%6%%6%++K)t  @Uk%%%%@55K@ )232#"&5#"&5#54637#373'"264&3"264&U@++%6%%6%+@`P(x n)  @U@%%%%@U 5555 &/##"32673267354'&'%732"&46!2"&46k@/!(!!(!/ 0UV   6@  ++ +%";26535#54&#3#73#2"&46k*&5%+jjVV@  +&&++@@@U   n"7'5>4'7>/.?;5*6J@ *  $ "(jJDs:# $3 e"7 :+ &654.".54>753267'$;! 83WK)D(!;$6X2 725>54&#'6467.6W38 !;$#<8Z4:b92X6$;!(D)#;"=.% !h .=;^6-*!%@)!).9b:6^;@)@%)D(";#/HB!%939!BHK?7''KUU5UU.=Ra'67.#52247'&'&/67.#52247'&'&%''4&'77&'.#2"    :%70!L!    :&6/!&%  %& $ $  * c bA*%3>  * c bA*%3> 5-%  )  *  3B'67.#52247'&'&7''4&'77&'.#2"    :%7/ %&  &% $ $  * c bA*%3> 5-%  )  *  V#%'&'&'&'&=46777'7&'.#2U %% U%!$ ! %-5 ?  *  k4S7".54>7>32#'#"&=4&+33"#326=46;%32;5#54=35#"##;"4 L.:X *91       #;"!8#(/I7>*1 *+ ++ +* k!7".54>7>32#'7'?7#;"4 L.:X *91bbDD^DDb#;"!8#(/I7>*1bbDDDDb+ %53%'3#Zj i[+@@j  i#',0I7#'>263"'&'&'&'&'&'25#75#7573#3#3#3#>4./V.8/46& @ 5;@*75++@@+&'96X23Y6)7('% ++@+@% +++++/TbV3k!%)#'#"3!26=4&#5##5335353#3##53+VV**VV+U**U++@+++**U+++**%3##5#53'373ek*kez2cc2++V !!3#!! U*V*V*%3#3##5#535#53'373)Wkkk*kkkWl2cc2*++UU++*#&*-1433733733#3##'##'#53'#53#37#7#37#7#3'3+*U8U*& /99V99/ &0 B0C /0C /{+*++*++*k@U*k@U*@$7277'64'7'&"2".4>^9$$99/u.99$$99/u.i#;"";F;"";9/u.99$$99/u.99$$";F;"";F;"7!#3#"&=#'7#7!!@8c%Wl+**++#'+/"3!26=4&#!!"3!26=4&#!!735335+VU+U*@@@+@0 k/37;32+"&546;2+"&546;2+"&54635#735#35#@U U V V U U ++**++k * * * k*kkK$%/54&"#"2?353354?3>&F N 9@j@ + FG 9~UUn "+2".4>"264&#"264&3"264&*O< 2".7264&"264&"5264&"+ G%"'.'&'1&'&'&54>234."3265#'7.46264&"k    1;1+(DSD(    #2+!$$!m ,, ,  11)E''ES)   $ 2#s V`V FNFm,V"%"&=4.+"3533546226=# (#2UkU &5%5u"2#UU` %%*"+4=T"2727272?6/.#"&/#3#"'&?3"&=73#"&53!26='"'"'#"l5878 *   k*`*  *88^"#^*^ gg ]d  ``  \ji@ %'7#753'?#'7@@U@U@@U@Uk*kU+*+U@*U@U@++k&/#"265326='35#3#2"&4632"&46+%5&*&5%UkjJOF5 kV&&&&V  6373276;2+"&=4?'#35'#37335'575#3#@@ -    &7x****D++++7++,   '**++D****D++*+MY66767567632327676735#&'&#""&676767654'&""&476767b9  % (45*!  %    -  S-*   ! '  05"       ' "27654&"276=4&"2"&46R*)))R*b > **"+"2>54."264&"264&"264&";#$/3/$";m%%5&&,,>++";#/$$/#;"U+%5&&5%,>++>,%*2'5354.#"'>'#5'#"&=47'34X4 uU(D)8Gz5%@% ,NO4X4u+(E(65%&# ,N++ 3353#5##732+726=4&+k*++++*@%%@@ +VVVV&V&+ V @IR[%##57264&"5>54&"'74&"37#5#"#&6?676253%2"&4632"&46'2"&46&<& & &<%  V*<    X  G<%!u  u!%2&"'>2"&46@*@%B5<5B%(<(KGH."2>4&#5##5#7NVN54.#2&'&'17676764'&'&/#.4>3+32#:b9.P1IR2"9b:!F),3   )2+K/, ,d&B'"<(--7S5'B&715 +  /7-U 5V $32"&462"&462"&463'7**6   =****; :   Kk*++* 77'77'77'7'7'7'7'<<<= x<=LKK32+"&54633#53#3#++VVVVV*VV #'+/!2#!"&5463!33#53#3#3#53#3#@**UUUU++UUUUV*VVV 5V 12"&46721'&'&'&4>"6767654.,)D(&, (D)11115,,`(D)2H39#"1)4PD(*1%/AA/%1&3!2654/#7'#37'75'7'7I`!Q=[QKH "Y <<<m!=[t#m2 ;=<= 3!265'3#5###35#5IaamHKZ*ZZVkkkU++U"3!2654&#3#73#73#+++@++@++*V*VVVVV 753#5%!!3#ujuu"+4=F2".4>"264&>..>>.>.'"264&*O< 264&"264&"#264&"+"&5?*O<  #37+'.?2"&46#2"&46UVI7 7I*O<  =4.+>-,>>22a!! #22E --"22!Q##22V )27#"&''7&54>"7&2>54'6$"+'.O.6$"+'.O.#;"",#;"".6;L:b9.6;L:b9*.O.7,$.O.7,$ $).6>FKPUY"3!2654&#2#".4>3&'3673&3&473364'3364'&'3673673#11''(*@ $2$ V@1:1'+' 0       @  k*+ !6";5#5353";26=4&#3#73#"35#5326=4&#k@@@@****j@ `@ ++++`  @  %##535#54&+5#353#3;3*********@*k**@*k*!#535##5332;35##535#U***V***++**@@**++!.72"&4632"&46'!2#!"&546"2>4.  L.O..O\O..OL*.O\O..O\O."3!2654&#!!3535335UVV*KjKV*VV0000 $,3#'!2#!"&546"2>4.3#462#**QL.O..O\O..O**K@+kL*.O\O..O\O.KUf!%#&'7'&'7''&#"#35>'2#>1 I$E ) :\1F::F)A A(tm M IH8@j&&j0&&0 %'73".5467'2>54&U"f" $+";F;"+$+5.O\O.5w333$?(";##;"(?$R3.N..N.3Rs2".4>&>?.67676'667656&#'&'&'&767676'&/&1767>*O< F3#;#"&5+532654&+53246;#"3#3#%5#'4&"267&27kjj +6  5+ +5  6+ @`  +* *  * * *  * *+++@ % 672"&4672"&467"&'#"&'.54632632>32#'K x ,! "/2# !! "/2#+@ ,, ( +$2( +$25bk72"&4672"&467"&'#"&'.5463632>32#''"327271732673264&#"654&"'&#"&"264&K x ,! "/2#!! "/2# %   $ !  !  +@ ,, ( +$2( +$2# $$# $$   !2#!"&546!535#5#UVVV*+UUUU+ /3353#5##732+726=4&+%"&=326=3+*++*+@&&@@ %5&+  *+VVVV&V&+ V && +"+4"32653265354&#'3#73#73#2"&46!2"&46@+%6%%6%+@UUUU5*_  +&&&&VV 66666`+#,"32653265354&#'3#2"&46!2"&46@+%6%%6%+@@5*_  +&&&&VV 6` %53'73#3#77#53'7Uk==o****===kk=**o==kk===Q*=+%32+535#535#732+726=4&+kUUU@@U@%%@@ +++*++&V&+ V k 73#'3#73#73#3#3#73#@@իkkkkkkkkkkkkk%&'&5'#26735"'6765&90M($88$(M09w'477+TL@..@LT+774V 5@MY%264&"72.54664'632#""!5'&'&'&'&47676323#5.'%##5#53533%%5&&   a %% a$  y#0 @# @+@@+@&5%%5&V   SC%5&*   **   V   **,  _@@+@@k,9"264&2"&46#33535#5"!54'&'&2!54676@#22F22#&@@+@@ &+ V +&  (( k2G22G2)%%@+@@+@ @@ ) "&>7.627.!"3!26=4&!5!i!XX!)nnFBBW!!)e^@k "72#5467"&4627;#"&4632'v5"43F22} ** , %+&/+2F34E2++u , 7.;2764&7;264'. h2( F   RP>B f'?!7'alhfS${'-4<7632&%7'&'7'654&/.&54677&7#"'7'62+ C" ?I_"/!F] O$_+1?# BF]C&/  R_1: = 5  R_5>fA#Q= 0;&#5##";2654&>&>&*+ !!)ek** U !XX!)nnFBB &*>&>&'#5##";2654&#3!!)es*+ W!XX!)nnFBBi** U   &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U  &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U  &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U  &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U  &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U w &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U U &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U k@ &*>&>&'#5##";2654&#53!!)es*+ W!XX!)nnFBBi** U K %.#5##";2654&#535#537>&>&*+ _++++  )gk** U +*B!XX (moFCA &*>&>&'#5##";2654&#3!!)es*+ W!XX!)nnFBBi** U + !I%#"'#7326'&'.>'7''7''1'0'777676'676'&0   G   OmqQ OmqQ    /   /    !$ / 13# 08Q OmqQ OmO'%&'  i ''&'' !2#!"&=46;546;2!5'5#VVVV@++++++ 6'>4&''64'2"&46'2#5#353+"&5463!!=# ++  WNVN>F>/4/F$$ `V@` j )@U%4367654&#"&#""5&'&#"3276?0132654'654&#"#32732654'&'=#"=8 !" 8$'!" 8=#"=8 !" 8=#"=+ #">8 !" 815!2++"&=#"&546"346323467>54&35UVO V$*   *#7*O @J   ++ !"3!265!3"264&'3#k*+<%%6%%*&'&"672657 - z$ "# 0M'  40L'  F&Q#!0z "%& ( "# *5'%& ' "# -$Q &#!"&54637'73'"264&"264&+vvu s Vu 753'533'3''#7@@k"@j@@<&j&JP;K`?N@&j&AN@?#5372"&46hHjJ W~~~~І~~~~!#5#353#5#353353!!#5##535UUU++Ujjk@j***UkkU#5%!"7326=4&#!;4&@ U b+ U k* V U+ U@ %2"&46"&54673 (.=&"53'#'37337#/62"762"4XhX4XY$;!FH":$**@+@*@+@@@??4Y33Y442*@%"$%@*)+@@3!53'2"&462#547676@*@(E((  ?#!57367654&#".#"+@֕2" "2." "."&*.@R2"&463#!"&=35463125#35#35#35##76/.?3#76/.?3#j@ N*++*#((S()k$$ !.) ) ) ) %#54&+"#36;2f > df f,Ĭ  -."372654&'727uC\C&kk&BD?-??-#%%#%!2'!"&5'7/'oS(6JQ/9q:S3@`'7'7'73?%2"&46Mb:z5%,D + #,b;F\[J&շ ##&27>!67'&>653473.# (( #)G+ +G)U= 7''7 =,K//K $(,53546;7532#!"&=#535#535#3=#5#@+65++++******+* *V*VV***** *#5#'76'&54&+"326=4&#"'&.' x4ZZ4l  K 7fH ($ /-H@kK4[[47 &' Hf7 K  /H- $,4<@%".4>2'7.'>757&47'.'7'>764'/?ll??ll?"<%O.%<".O0%%"<%O.%<".O0%]@@@@l??ll??li"%/X",/ D )\{"%/X"+-K)\) D Bkkk7#57#2"&46u(88P88*8P88P8 7#5#3#732"&46"264&뫀UU@uu)RL(88P88(, +UunCU8P88P8+, ,;BKRYbi7>7'&>627>72#'&/"'.?.'"&4667'727&"67.'>7"'27''7&++$!F!$+ +$!F!$+ # 2 I@## 2 I@#$=% && %=$  $=% && %=$  6,/9 92,6/6,/9 92,6k+/39?"3!2654&#3#535#73#3#5>4&'3#%3#''.46UV##@@@@##@ * k+-.:.-++++-.:.(VVVPJJ32+"&546353535VVVVVVV+ !5!!5!!5!35#53535#@+++U+++++++*+++++*%#!"&=463!235#35#35#VVVVVVVVVVVVVVk #'+3#73#73#!2#!"&5463533535335++V**U++**ր*+++++VUUUUUUUU!2#!"&5467#'#3353k*@5 @*&0*``* "+47'!"&=46?732'5#'3'3'!"264&"264&+z+^RR7re+ 7;&   P+URR7 e+7b   @   7'##5#"&547!'!2'!3' @k +D (f@++ + (k .%3'#264&"#264&"#"&5#"&5#53'#535@sG,5 k6&4&u&4&++U6&&&&Vh> 75#7#5!!!UU**U+++*(!"3!2654&##5#533533#'#5373* @ &' %&/* `@@@@////@#4"34>234.>54&"77'"34>234.)D(*1:1*(D,I@@I@l?+4XhX4+?lU(D)11)D(FI@@Ib?l@4X44X4@l? #/;G4&"#35#35>=#35>=#%54&"#35'4&"#35#35>=#k  +*U*+  *  ++V+ U!ZZ!**!ZZ!*U UU U!ZZ!*54&+"#3575'3#5##5##@@***+@@@@@@****+8AJ74&"2674&+";26"264&"2>4.".4>27"264&"264& @  @  =@l??ll??l@4X44XhX44XA 8 x+?ll??ll?U4XhX44XhX4kV 33353353535+U*jjUUU 33 373+JJu@55@ubb3%+"&/&4?>;25/#3?5375'75'#c cc 7"55"76"55"6   gddggddg&*.2%26=4&+3#7##5##5#54637"&4623#'3#'3# U+*+ `$$**@**@**U++뀀k@#'64>2!#5467!#54',,>,,v %%E%% &?L?&u6)K)6K,>,,>,6 ,&5%%5&, %%& #!&&!#%#'##"3!26543!3#5537'E&&EVZ&XXKKKKk**+k6KK66KK .''7>#'73533!5!53?H_8D#k++*VkBXb=<O++++**k%3#35#53'73#,l,VV@@@VV@@VVUU@*jUU@*7!!5!!%'3537##5UVVUU@*jUU@*+k+VV@@UU@@k 7355#'73!3UUUU*V*@UU@@UUVV 3'35#7%!!!!@UU@@UUVVUUUU**,04"3!2654&#32#5##546;2#'##'35335k*@ + K   u+j+* k k  -++` /8ENX"/&#"/&/&'"7'.2/&62"/&462'.6>&'      bl AU ; g g 1-T  $[ !!      lb XT- ;g g GTAS[ !! ,BX"73#'267&''7&'#5367'767.67'767#53&''7&%'3#7>4&'GGNG  G    G     & $(*($ &  & $(*($ & RCHC % * %  % * % CHC#"'&"264/?64/&"264&7E + EL( ,KF + E7 ,, A"&=467546;2#   3``3  '77'ZZZZxZZZYx!"3!2654&!!#53*****!!5!'"#535#5##3#.;264&**( @@*@@ D= '#22*k*@@*k#E2G2!5!1"76;4&*# >+,g  2*]* f #2!5!'#7#537.>3#*@..:11:.*+* /101 *%)2#5'.54627&54627&546!! '' $ < $ ; * gg " AO  OA *7!!#5##5##5#33535k*++*++****@@@@@@Հ!5!'".546767&5462*'#(DRD( $ a*-811E  a,#."#"3!2654"&463773#''#Y!(!Y*  .G584B'O B*   ߈D7!&d{='4#."#"3!2654"&463773!%#''#53353Y!(!Y*  B O'B*485G.***   ={d&Uv7D!"&=#"&=463!2+#'#463!! V+WO+U+ @O+!%)7#463!!"&=#"&=463!2+#3535@+U V+WOKի+U @O+++U++(,0"&=#"&=463!2+#7735!'#463!!3#3# V+WO BiU+Uի+ @OAA+++*+CGKO54&+5##3#5##33533535#5##5332".32654&'564'557557'57 @++j++     @ ++++UUUU+++c     d! #2#!'&'&'&'&#"3!26=4&#, 8+`$11$$11$++# 1$@$11$@$1+%5#54&"3#3>'4&'.#"327&75@@5K4   !1# ` @ &65&.  ## !!!###k***++%/C%.77'6&"&462&'.531&'547.7"3>2>74.12% BBB6, , 3A.O. ;0 4C.O.'C(39.O %11BBBQ, ,L-@' @+ -'% ' &-!#'7#576764'&'#"#>21#5573UUuCCr !#" "B")Gr   &  Y,8DP\iu%05&#"&'&/#!"3276767673276?32=4+";2=4+";2=4+";2=4+"'326=4+";2=4+";2=4+"732=4+"32=4+"       >$ }&&7&&8%%8%%f&&8%%8%%%%7&&  '!&1 !!!!!!!!0!!!!!!1!!a!!!%%"&4627+"&546;2264&"#3+$$Uu$VQM77PPPa"+7"327&547#".4>263267."264&#33535#5OO 11:1' O%%6%%e@@+@@`YGGY 1:11 GY`%6%%6%u@+@@+@a%1"327&47#"&'>267."264&#33535#5OO2"7>7.3#73#73#%%6%%11:11Nj?1J++V**U++%6%%6%1:11:1 XH@SJ1HX+++++`#'+/2"&4672'.'>7>7.#37#37#3%%6%%Nj?1Jn]o3 1]o3 1m++U**V++%6%%6%`XH@SJ1HX3>23>2+++++ ,0"3!265'#2#476767654&"#463#vv%   %  u+%     % )7546;32+323#+"&5#5346;5#"&@* V +* * * *}#/&3#'.'77>?#537>.''77' <@ 6#"   @D6$# <<==<<<O=+l#.  h+A#. <<=<<<<V %#5##573#3#%5353k++뫫+++UU@+++kkU**#,5KT2".4>">32>54.2"&46#2"&462>'./.7>32"&46*O< 4.2.#".54>"264&3"264&".7>?>'."264&*O< ">32>54.2&'&67'&67632"&462"&46#2"&46*O< 54'&/#34'&#73K &0   0& B @@:&'##'&;@@  1@@?FM'367'627"&57'"&54675.46327'462632"'77.57 ww|[  [s\   ^^   \)` u M 6 6t 7  m6  6m  7 m7 pp %)!"3!2654&#5##5335;2+735#* + + *V V ++*++55 V @V "2>4.2>="'&:b99btb99b9btb9EEU")"")"e##e  k&#'#35#'354&#!72?'35#"yH%1HW1 dU* d "* kV o"k VCCV@ V *I)VV  3!53#535#53@*@****+* %%#33535#5#"&5463!2&#"''3@@+@@*%J6J@+@@+@*)`@` -%.6?7.6?67.6?6786%  4P"0!TP8!3GM )/uqN(/%Hfl. ,95Q> `CSQJL<x()]vp'(ikV) 09%64''&"627&4727'"'2".4>"264&: ##L#0: ##L#0.*O< =4&#3#k*W  00    +++*IIIII7++-  332+"&=46;5326=463"&=4&+'#"#2(88((88    8((88((8@  @  @  @  )"2>4.".4>2'#5>&'53@l??ll??l@.O..O\O..O V V ?ll??ll?j.O\O..O\O. BB 2".4>3#<*F))FTF**GJJ*GSF))FSG*f %2%''77'!46755.%"2>4.".4>2------./&9GG9&/4X44XhX44X4(E((EPE((E----..-,I.c|c.I4XhX44XhX4(EPE((EPE( ("2>4.&'7'4>7&'5*O< 4&"#&"+ b  a+"%@ +  %4%1   %4%@%V2!4>7&546!5!+E((E+VU 3J++J3 *f-".#".#"327267326732>. ' &*. ,8* $  /.8 *  $ / /80 %>=#2"&46.'&'4>22X66X2%%6%%8""8 #:F:#V:lLLl:%5&&5%+ +&%26=4&+3#7##5##5#54637"&462 U+*+ `$$U++뀀k@# +"3!2654&#2&#".54>'654'k*2'.#2.(D. *+. 2F.7)D(<'27.#k#,5326732654'354&+'3#.'2"&462"&46k#8($7Z%6%jk0 + ( k 2(81% && @+k@"0((0k#'+##5.54>3253."536?35#35#9<'9G4X4<`GERD(/&*++**"3 44X7.O.;0#";#&>#+*+%)"3!2654&#373#732#'##735k*  & pK   +*II -++`"%3'7'7#332#3+#'#"&=46;+j5ii5j''6ii6k''kk"73'7'7#332+#'#"'735#'6;k5ii5k  6ii6kkk  #";37326=4&+'3#kkkk#,6?6&'.54767676?264&"@")!+ (")!+ (8$/<"<,& (<"<,& ($$k-%"!54'&'&'264&"/&'&4632>32@ &+ V +& #22F22 "    " ++ +2G22G2@ '  (  42"&'&4>.>7>."'&'1276?4X4$ \@\ $4X3'!3'8'3!'34 &  .N[5/EE/5[N.747747   V!5&'&>755'!#@16$VPUj@@3'@FU %#53'#37#5##";2654&@k@#$  Ֆ֪U+**  G  %#53'#537#5##";2654&@k@#$  Ֆ֪+**  G %#537#5##";2654&#53#$  @k@U+**  G ֪ %#53'#37#5##";2654&@k@#$  Ֆ֪*++**  G V!#5#35!354&++++2+@@$23!!@*U*  #'+/7#3!5!7#3%35#535##335#535#'#3'#3'#37#3k++++++*++++++*++++*++V**++U+++U+*U+*+U+++*+++++++  #'+/35#35#535#535#35#35#735#3#35#35#35#35#@++U++++++++U++U++++U++++V****U++*+++++++*++ #'+/37;?35#35#35#35#35#35#535#35#%35#35#35#35#35#35#35#35#@++++U**++++++++++++++++++++**V++++U++*+++++*+++*++++++*+  #'+/35#35#35#3#35#35#535#35#35#35#35#35#**U++++U++++++++**++U++U++U++U++++++++*+++*++++  #'+/!35#35#735#%!5!35#535#35#35#35#535#35#35#++U++U++U++++++++++++**V+++++*++*++++*+*++++$)#5##5##";5#5!354&'7627#++jj*+(, ҁ,,+++++U+ z*&,#."#"3!2654"&46353!377Y!(!Y*  b** +` *   U** +` '042+323#+"&5#5346;5#"&=4633764/#3kV V VVV=FF@@* * * *UVUFG+#'+7#535#535#";3+535#53'5#53#53UUUUUU+UUU``*****@+*+֖*+`5++ "'+/3<E"37>'&!"3#3265326535'3#%3#73#73#2"&46!2"&46lU"+%6%%6%+K 6K@@k@@k**  c *@U%%%%` @ @@@@@5k#,"3!26=4&+'23##5##"&46"264&UV+!++/!$$  k++**$7%+   V);D";#"#3;26535#4&+5326=4&+'23##5##"&46"264&k V k+ +*/ %%  U* * * **U*++%6%+   +33531335352"&46+ ` ,+ +, ,@FO5'&'"'"''727277&'?''&'&&676767?'7'"&462HH6FFTLYOD $<5=5 ,(0000>+% $$++  +~ @?O Y  3.t$ )5!326572#!"&=46332653#!"&5U%6%U+%6%@@&&k%%U""2>4."&4627"264&$C33CHC33C,j,U3CHC33CHC3,,,,  $(,04="2>=4.3#73#73#3#73#73#3#73#73#2"&46#;"";F;"";x**@**@****@**@****@**@**+$";##;"";##;"U+++++++++++++++*$$ $2"&=46#5.532>573#%%6%%!:%*%:!*1:1%&&%$@*AA*@$11* ,2"&=46#5.532>573533##5#%%6%%!:%*%:!*1:1@+@@+@%&&%$@*AA*@$11@@*@@$*75%'.#"32?>%"&462;'64j  k   4J }!I A  A!   k #'+/37;?CGKOSW[_cg35!3535335335335335353353353353353353353533533533533533533535335335335335+*V*V*****V*******V************k++++@++++++++++@++++++++++++++@++++++++++++++V**********%'?'7''&'77&<~    8D70 @ *&    .&* @ 07D  +/5?D3#'3#7353#'3#73573353#3#5##535#5#5#5#3'7627#k**V+U**V+UV*VVVVU++++*+UO, ӂ,,U*֫*֫++++++++++++U+UN+ {,!'";#35#532654&#!!%7'77@**KK----K+**+*JK-,",-K#"&'5>32>5467'3HzI$ 11 $ 6  O&IzH  6 $ 1Sq2"&46"264&"&5'&'&/&6?'7'.?>6?46;276/#'737677'6'7'&/#22F22#$=5+--+5V5+--+5;'3- -4& &4- -3'2F22F2*$$8J##J88J##J88!&&"88!'&!8k ##57#3'#3'#3+j+kkkkjjKk뀀k #7#3'#3'#3+KkkkkjjK 뀀k #3'#3'#3kkkkjjk뀀k ##5#5%#3'#3'#3+j+k*ukkkkjjKkk@@뀀/;";#326=4&+5353";#326=4&+535335335##5` 5JU 5J+ 5JU 5J * * &  &  &  &  55++!532+";7'#"&46;264&+5UV$22$VV$22$@U@$2F2@UU@$2F2@k!3"&=4&"#7#546226=3U@$2F2@UU@$2F2@kV$22$VV$22$?"32767676762327676767>4&'&#""'&'&'&            ;BN 4#    #4 NB; %!5!"&462'3!5'26=4'&"$,  ,2&&2j$$ + +44V(4:%!57676767632'4&"2635'&'&'&'"3264&'7 $9! @%5&&5%E@ =  %%e;"U**    %%5&&R,**   C&5%Sf@"!"3!2654&!5!Vj@&&'6767&=>/&'&'&'',o5&*$("*&4$ ! $F  :$[!+1 B B,A /'7 B@Uh+'>$#kU ' 3F"2>54'".4>327&3&#"2654'737#"2>5#"&463*O< > ҭ- ?WJ6   WT -k[$.k>X??X>+?W?8SB&  &3#A&37332#!"&54654'&"7"264&U@++@ 6 U$U++ ##37332#!"&546'!U@++@+!4FU++_:,F]@%!265354&+'3#'73#2"&46 +%6%++@}K)t @ %%@U 5 5K626?2#'&'&'#676'1"&463&'&'4>*  (87)    )78(  *)# 4O2  (% 2O4 #)%'7,27673&'&512>54'&'.'&;  (*    *(  ;<' (% '<%#2+"&54633#3#k+UU+*++*!75#2+"&5463!32+546떖 k  K@U+* @ @ V'.#">32'773&'=!Y3-+("C%+J=U UV+%,E&)% FU Ua,5I:#("2>5#".4>37"764/&37*O< 6?6;276%264&"7/+"5//&?='&?6?4;276S, % < %% < % U&&6++&4 '' 43 (( 3!  ! !  ! k#!5!!5!5!"3!2654&3#73#73#VVV++V**U++++++++7!".%!>2'4&"26,;^l^;X;^l^;, ,6W33W`6W33W%,'7!#3###".%!>32333'4&"26,@+5 6^;X;^63-+ !, ,+*+3W`6W3)*+E,%6='&'&'.>'370761&#21&'&73'"'.'&7&74'567101?6736767676?3763676'2766/&#'&'&6"&0"73'64'6&7"'14'&'&76767>.727767676?6&?64             " *J  +       9  '$ .             D.12"              "   %(  <";2>4.2.754&"32+"&>;#26=7>:b9:b99b*   .?./"$&9b:9btb9X%    63*/B.$%!3/3#!"&546"'3'6327.vv1%-q.$!4  Eu V!-p-& (3k #733#53@+++*@@**k#%#"&546;32&#"37'7'&"764+ ,,O ,۳+.+,,  #'3#73#3#73#3#73#3#73#3#73#@իիիիիիիիի+++*++++***++++*+++ 76&'&766.767676232767".4>9 *   $" (& #  8_p_88_ *  !  "%   5 '+9_88_q_7k !2>4.#32++.N..N.";##;"k.O\O.+";F;"k&32673264&#".#32+%2"&46+7Z %%Z7/$$/@ k@4 %6% 4@+$020$   k"+327673264&#"&'&#2#672"&46+  @D>9< %% <9>D;736637;0 kAjjA$ C %6% C $+!@@!   k %3264&#"%%2"&46+/!%%!@ k%6%Oddy   k327>7.'&#32+64+  3;7e e7;3@@5GA44AG5@kAjjAN,,N+($44$(B|k .73>&'3327673264&#"&'&#2#672"&46+  *! )!!@./!&%%*..""  ""3 kAjjAAjjAAjjA*8%6%;*+"00"   k !3>&'332767&'&#2#6+  *! )!!@MF?CC?FM;737926;0kAjjAAjjAAjjA.(UU(.+!@A!*=I"767676767>'.'&'&2'&'&'&7676"66. % %  ) 0"/A76:'*%(    6/  "#  % ,  @ >  % .7#"&'#35#5>54&'"32>54.2"&46r(E(7; UU0N-+!!+ 5 !+++>,,6)D(,**,5T0&G!+.+!6 +!*,>,,>,?'7'623'5'+.5M<K.MM>3!53'23#53546"354&@*@%% * @%VV%+  3!53'2#4&"3#53546@*@%+  j%U% *VV*%|B32;26=4.#3;26=4&"#54&"#5462621+&'&5+ %>&$?%&  ( '$33% {L ":"":".f  XX  XX%&m"+/37264&"72#!"&=46;54>2'"354&#53#53#1;1k%$****U$$+11+k%++%Հ+#<@"#"3!26=4&+54.2#5462#467>4&#"#&63#11''#*   *$**1++1)'++'   * %7OX"&4621'"176767654&"&462'"176767654&"#.7>73>'.#"&462(80 8(80 8(!r 020 r 02 ! 8(-G#"(88(-G#"(802 0`&3#'32+5335#'3#'32#5##5##''t s(8`9'' '#' v e>U$ wwww"+4=FO2".4>4&'#52>%2"&4632"&462"&4632"&462"&46*O< @@@UVU*   3!#5+gn  !5#5733535UV+++++U+oD+++3!#5+g  !5#5733535UVV+++++U+D+++3!#5+@g  !5#5733535UV@+++++U+@D+++3! %35#35#!35++++VUU++ !7{*$+ 7!7'#n+{*sp+$+s3!!+g#),>'.'5&'675'36#7&7'.I#S::\/5T22@.&%/A1)*+)y*7T.:S+Cg92T5)*+)<1A/Y@2&``@3535"764/&3735@---@++U++- '-** "2>4.".4>2'#534X44XhX44X4)D((DRD((D**4XhX44XhX4(DRD((DRD(* "2>4.".4>24X44XhX44X4)D((DRD((D4XhX44XhX4(DRD((DRD(3#**%.67>73#bdN#A$" 'B$@'Fbd&!'da# $("3!2654&#2".4>?735ZL.O..O\O..O"*%*{%*%*L*.O\O..O\O.LJJJ@UU#37".5467'67>4&**g(DRD(("Cae'!##է<")D((D)!="adP!"MTMQZ!'4&#"632#3#"&4?&'#"&46354>;764767&#"&467'"&46;2321#'"264&: F     /0   !8   G-  e" *(    *.     !  #z    %."35!354&#352>=#".="264&k+*+4XhX4+(DRD(,****U+++@4X44X4@@)D((D)@@, ,$7.7.35327'27. Ff)vh 0F* V@"$"` &*6) fG RvB*E1 7'".677"267654&'7)%'((%&(X   8$+#(&)%  FE+<,1:;]:!#I$& >+1'0   NFF -57'#"&54767''37'#'733.#"'632'65.'#+e 2>W~ 1 >3N@ V@>a@8+9IW~, -@SP ~W>20~3J@?W ,~WI9#h@- 9Sk8%>.277'"&462!";&'#5367#53675354&,4-.7Bm,,%| `Y j B4-,4-BP, ,UU< * !%%'&+"622?64%"&462#53  F;" # R  ";F #o*k 3#"&5#3#2652F2V$*#22#+ "&7'#"&='3#'64&"'5#267'75#+e>-#22 YV  JVP="2#*3 Y/  @@k+"2#3!26="&46354&#!!5>4&'UVVkU$UU$U+6 '.' 66 '.' 3'7/535777@h9vj'R(e@11;<'(+I,1OS+q's('Z1 .<L2".46767>".5327".51327"121654.327654.#"@)D(,$*GTD(,$*G)D(1$\)D(1$$)D(111(DTG*$,(DTG*$,(D)$1V(D)$1(D)$1k11+2754&+>2".4>"2>4.@>W1PFe/<(DRD((DRD(*'11:1!2>J!2#!"&546"264&3"264&"2>54.3#6&'&73#6&'&'  7  "0$";F;"$0l( $) $]) $( $V*     V$/";##;"/$5 #6 #7 #6 #-%27#7&"32673#"&46'3/3&#"#"&546#U&, $ +#22Hvv&@%V& , 2G2uu Y%@&("VA&%7'#!"&=463!254'&"7"264&kUU  @ 5 U#UUK  ##A%7'#!"&=463!2'3kUU  %+:UUK 70% ;Nk!2#!"&546!'UVV,k+ CCk !'3535##5VU++k֪@j@@V !57%735k*%&&*U&&&@@V 357%72>5*%&%.PZP.U@@5&&&&B.O..O.".2&"'6C56CdVm$R$mV,)6),+44 "75&"'6323>7.3535C4Az2&#7&"6+"&=46354622'4&"3 Mo<55:-WVm% u  $.% 6@  A`K),,)I 744\K  K   1  ".2&"'6C56CdVE6}7EV,)6),+4UU4#"75&'&#"'6323>7.3535C4Az< !#:;ETfaY 8 7}+++,)SKD&  U33 ),++3;%'&'>2&#7&"632+"&=46354622'4&"3/ Mo<55:-WVE7>.- u  $.% 6@ A`K),,)I 744U)SK  K   1  ".2&'&#"'6C56CdV* )*LE)V,)6),+44 '34#"75&'&#"'6323>7.3535C4Az<!**IH)TfaY 8 7}+++,)SKD &333 ),++5=%27."7546754>'"'62&'&54&"";26=4&+5462:557.3535C4Az2&#"+"&=46354622'4&"3/ Mo<55:/ u  $.% 6@ A`K),,)I ,UK  K   1  "75'6323>7.3535C4dTfaY 8 7}+++,)|D33 ),++)1#&#7&"71>2+"&=46354622'4&"3:-VV5( u  $.% 6@+I 744E6),,K  K   1  77"6?.F+,"SG-+3*6,hGO ?4),77"632767.'6F+,"SG-+$dVT!:6̾5,hGO $4i)I),FB"1.2'6C56CdVV,)6),+445#53##'5#'#5#575'73'+QV~"o+v&37'5#"676?+h>3(rQk//*<= *$UUF;[85W...3<";5#5363254&#!!3#%"";26=46&2#546@+d!U` j  @*V+*V@ U U  !/#3!5!2#!"&54634&"26!54'&'&"U*+V&5%%5& /!@*j&&5%%k(7@73#54767672"&46"264&2'#"&46"264& "q +&$2#22#%c(8BC(88( ,@ 2$ 2G2)%%8(BB8P8+,,k#2"&466=76&+"'&5&#"!$22G22&; <+1 .N.k2G22G2& [I  I<'+b %!3!3654&'"` V+6 3 ^ %#763123#3.#"p(@0t># +#0#k 333!735#k**VVk**V!$3##5463##54632+"&=467U*g+g=*U+U+V 735#5!#33#!5#53@@UU@@@@++@UU@++@ %5##335!533##5@++@UVU@++@k@@UU@@+#'048<!";;26=3;26=326=4&#53"&462#53#53#53 + + U$++U**V+++  k+@##+%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UQ1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UQ1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UQ1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UQ1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UjQ1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UUQ1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *UU*Q1;<1Q=..<(3%(+#";2654&+53#%'737'7'k$   #@1<<1 =..= *  G *U@Q1;<1Q=..<(3%(+#";2654&+53#!'737'7'k$   #@1<<1 =..= *  G *U+Q1;<1Q=..<(3!%(+/#";2656&+5'737'7'!3#%%3#k%   $1<<1 >/-<++++*  I *Q1;<1Q>-,>X3+!$'#";2654&+5'737'7'k$   #1<<1 =..= *  G *Q1;<1Q=..<(3!$'#";2654&+53#5'7'7777$   $D =..= 0<<0*  G *<..=Q1<;1))H(+9<?C#";2654&+52#6?64&"#46'737'7'3#k$   #@#2 , #+21<<1 =..= ++*  G *U2#   ##2+Q1;<1Q=..<(3* ',17=FLQV['#3735677'6735#&'7'&'5'67/#67#'72"&463&';'&'757+$$,7*7+$$+8*.O&/, @@ -x$@ /@-v&.""#,8*7+$$*8*8+"@@ .. /$"'//$$@.&&. @,,@4%2'#"&46"264&7!3#"&546;5335332&'K(8BC(88( ,4` |++8(BB8P8+,,*++++ %''77'#"&546;2"5#3.----..}րX---....V1)2"353#5#;2654&#"326733535#.2"&46**%% /*+   U@@U%6%++*+   -5#"353#5#;2654&54&"";26=4&+5462k**%.%  v &@@++@    K  K    ;26=7'#54&+"3S(m* @S'5(+ @8AY7615'76/&&/4+"'&37;2?67?6'"&462#"353#5#;2654& +  + i ** %  % %  %   @++@ $>&'64'#";2654&#3-hPAC-  4jV 33##5#53@uu@uu@@"2>4.'53*O< 7>32K(8BC(88( ,<*9%@K@%D#;"4 M-:X8(BB8P8+,,=*- &?&&?&";# 8$'/IG%2'#"&46"264&74&+54.#"#";#".54>7>3254'6K(8BC(88( ,t% 6 (> #22#@D#;"4 L.:X *98(BB8P8+,,& 6 0&2F2 ";#!7$'/I8=*-    )#7##'##'73'##7#37"&462"&462F""F&aat>N>'I~ ;;;;NNg)/8Y%1'&'&546227676?454'&'&'&''"264&1&'&'&'547676767+/4%2H2 ' $(1,&( &4=1'#+,#!  0#33$    4))2    $(,2"&4622#!"&4634>3263#73#73#,i))-<-@+@V*j@*+, ,K(##($$/!"'&'&'1&'&#"#476763232767653`    * 4  !+ -?I3&,8#0.>G4&,8#0 !535335335+Vj++j++U++++++ #3"32>4.#3?#"'32>5#"&'32>56Vp.O..O6kk6i.O.4+2.O..O.#@#W6.O.p'/'W6*6i@'4'+' $'(6"32753'7.#37%32?#5#".267'#"..O..O.>KNf6kk6iX.O."#=.O..O\N(0;.O.'/'JW6*6i@@'!'T@'('##"#35#'654'77.>&#DWNV_ D_=d# 5e**  e6B6#'+4%264&"72#.54>#5#5!##5%357353"264&5!,I++J+**+++*  !!+J+"=="+J+U@**   k(1!2&'75'#"&5462'#"&46"264&@U!.$2(8BB(88(,kg +kk+e18(BB8P8* ,, k25%2'#"&46"264&#5>32754&#!";&'`(8BB(88(,D) $8(BB8P8* ,, ke$, gkk#26767671#'77'7''H3   "$$ffffffff{ #N& VVwgffffgff ,"3!2654&#373#527675'7''7'k*o"# ;<;;<;;;*@775: ;;;<<<<; #"3!265'3533'5+U5@5@vU@@uu #!"&54635#5#7'3533+kU5@5VkU@@%/72'763262 a) .W˚ 1VV  U'k/%2'#"&46"264&'32.#"#"&5463`(8BB(88(,+2&?&8(BB8P8+,,+Q&?&)"k.%2'#"&46"264&7!3#"&546;32&'`(8BB(88(, +8(BB8P8+,,+Q k #37G%5!%5!5!5!#35#46;2+"&535#46;2+"&535#46;2+"&5V+@ + + +@ + + +@ + + +******* * V** * V** * ;S"354632&#">323546327.#">32354.#".3#3!26?#5>735 6*,% % % * % % %,*!+33= ( 6 ,   , +!+4- -4+k'2'.54>327>764&"&"7k11''< # # =k1''1 M< $ $ <h%u h%%  '7'!5 6%**K '7'6+"&14&'.'+"&/;27@@ 0  *& b &*  h yy J %>hh>% (@*-0";5#5462#326=4.'737'7'#;" <+2G2+< #;1<<1 =..= @";#f U+#22#+U f#;"Q1<<1Q=..=)4&"2>4.2>32'&'&546:b9 4.2".4>"767654&#".*O< '6'.53276'3767676'&'&#"'676&'&54676@ uDG+ :% 5$ $(#$4 6   %   #*(  . 06K ">DE@O |@@|>>|@@|>47WV**V*/15jkkjjkk** ++KKKK++k+++ ** V#'+/37;?"3!26=4&#!!7353353353353353533533533533535UVV**********U***********@**********@**h%h%%  7'7!5 @%**3#537&#!"3!2654!!*VVs +@U* o#28"";32>4.#".2#5462".4>7'5(8e;.N..N. 7% k/$#;E;""; N?8( .N]N.%2*   V$/";##;E;"*k/%Y!23'5'#".4>'77'7)D( *'2)D((DV--..--..(D)2'* (DRD(I..--..--!%35'#"&54?732&#"5'@Yrxr1$V@++2,B)--!, '3?7654&/7%57rxrxVVj@@*@@,-),-)B5*32?&547'5>3254&+#33535#5xrYV+r@@@+@@), ,-@+@@+@4%2'#"&46"264&/'"&54?732.#"K(8BC(88( ,6ryr28(BB8P8+,,- ,C(,,48%2'#"&46"264&2&'55''"&54?775K(8BC(88( ,?@Uryr@8(BB8P8+,, |Xc ,C(,,I $%4'6#26/73'7#7&"5%"&462++HH8GxVVVkP55+ÊÉA75R;5*++7CbÊ!>'.'7'7'?|&5;NM5 3!|l??7HH7*] ''>& !+3#5'7'7777'#554>7".=! =..= 1;;1$:"";#(EQD)++=..=Q1<<1((H(n*@:%@*k)D((D)@#'+&'&'&'&#"1""3!264.3'337337U ( (V(*+***+*U  (##(ՕV %!5!!5!%3##5++++**+++^3#3#'7#537#53,(Yk%(Yl$^8*V*I8*V*%)-157";26=4&#'7";26=4&#3#73#53'3#UVV6 VVVVիUU T6 3UU+UU****%)-15";26=4&#'7";26=4&#3#3#53'3#UVV6 VVVVUU U7 wUU+U*****  #'+/335333#73#73#3#73#73#3#73#73#3#73#k*++V**U++++V**U++++V**U++++++KK+*****++++++*++++++***k #33535#5!5kk*kkkk+jj+k++"3!2654&#33##5#533#k**@@*@@@*@@+@@++7@%#5462'2'654&"&4>72'654."&54>2"&46k?X?k&?&! 8P8 !&?&=g<* 3CHC3 *'.'67367'77&'5&.I#S::\/5T\A1%/)*h.D~)@2@.*7T.:S+Cg92T5)"1A/%h-DI@2&.s)*#)/>'.'673677&'5&'5.I#S::\/5T\A1%/)*M)@2@.N`p*7T.:S+Cg92T5)"1A/%~@2&.s)*p9D"(/5>76./'6#63&&'7'35332T5/\::S#I.*/%1O*+)e&.@2`K*K5T29gC+S:.T7*+)G%/Ak.&23*)E`UU"(/5>76./'6#63&&'33532T5/\::S#I.*/%1O*+)e&.@2`K*K5T29gC+S:.T7*+)G%/Ak.&23*)`UU /:#"&463227&'&3271>&'&'&'462#1"&%55%%O> 1&W   45J44" 1KO> KN B +59=F7+"&=#"&=463!5!5463!532#32++"&=!'35335%"264&k j +  +++  K @ ++  + @  @   #"#7#4>32#"&'32>4.4X4@SV@(E(7*)D)6F'4Y33Y4X4SV)D(*7)D(4XhX4 677.='6=''7+2X6;/0|'E)$&g e+e:lL,0 @X.?#JH@14iB.!< "+>=22+"&=463546"354&2X66X2%  v  % @V:lLLl:*   K  K     7'.=7/0;6X2&e{0,Ll:eqVH@"#'+47+"&=#"&=463!2++"&=!'35335%"264&k  +++  u @ @  @   &0%#'##7.=#5!54&"#46;>32#!;265* *  &!%@%%27**72+ &%%%#,8AJS\enr|%2"&46#2"&46#2"&46#2"&46#2"&4672#1"&46;2"&4632"&4632"&46'2"&4632"&4632"&467!5!'#>753  M  L  L  M  4 U  _  ^   ^  ^  I*;(*(;           @         @       ++(:,,:&)2;>";2654&#2"&46'737'7'2"&46"264&UU#1<<1 =..= #22G22$#*+##*Q1<<1Q=..=)2F22F2*$$&"3!2654&#3##'#5377''7'k*;*&:k&&&&&&&&*@+Հ+\O&&&''''& '?'?'2".4>"2>4.@T!!T@I*O< =4&+"#'!#5.'&73#735'.U ">O *U5UU+5T13*,u1 $$髕@@k '+%#5##5#!5#7#54&+"#"353353354&+53++UU+@@U++U|kkk++V++++V+k#/#54&+"#"!54&'3#!53353353'5##5##5!@@++++++++V++++@+@@-3#326=3#54&+3#326=326=35#54&+54&#+jjjkkjjjjkk*V**V*V*V+,03#"35#5326=43535#5353"353354&#3#+U+V+@+@@U@++*++++++V+++V*++@@+@v"3"&=#26=3& b`  +%7$`b U $$U !l72>4.".4>2"&'76767632#"'173676?'"/436?&'#"/5.476?+ ;&546"264&35#53326=4'6=4&#3#3##2 6&&6 2#$k@j@2##2+##*   **"2>=75##57#5'7#7%@%%@K@%+++91"-!53%@K@%%@%")@++jjp C-Ff %!73'7''[xyy-y=y-.[yyy--y=y-G3#53KIi'.'676763'56@UU@U&B*02  ,7UU-!UVV^V@"=& 020&@H"@VU@*#7##'##73'%'&>'.'676763@UV@")D(D+V&B*02   UVV^S++yNNV@"=& 020&@&.1%5".7>7>54&"26'6753'3#3733'7.02 *B%V   +@VU@f+D(D)r@ 702/&>"@V  ^VV++GNN (07&''725".7>7>54&"26'6753'3!-UU7, /02 )B&U   *@UU@@UV@"7@ 702/&>"@V  ^VV %'3537#5##ՀUk@V@իk '73#'535#5իkՀUk@V@ %7'#55''7355+V*kkkkkՀՀ*@kk@@kk@ 7#535#37뫫*kk@@V@kf '!77'7#-yyyZ.-y=y- yyy[.-y=x.G7#53#Ji>632'+676'5."&46365&'&'&'&12#1&'1".676765147&&6'&3.>>7676''4&'&26476326  -/   /F' +k  C " ) !         #!  $  C \    -5)  4"%               $       .%5!332#!"&546;533'#&'&4632632++U (  (++*++ %))%%%!5!'#5##"3!2654&+5#7'7#'*@+*M>>>?M++++*+-J..J-IV )";73326=4&#2"&46;#72"&46U++ CU**j@@#";2654&#3#5##k@*@U*jjV!"3!2654&'77*bb*bb!"3!2654&!!7'**bb**Fbb!"3!2654&'7*Xb*b!"3!2654&!!'7**Fbb**3bb!"3!2654&'7'7*bb*bb!"3!2654&!!7'7**bb**bb!"3!2654&''7*Ebb*bb!"3!2654&!!''7**3bb**bbV"264&#22F222F22F2+%"264&$$$k%!".5467>32'35'35##:#A0L.&C-*81****#;"2H'/":$<+1k+++!!";;2?32654&#'73V Og`'UU%`@ O&VU&(!";;2?32654&#5#!5#7'7'V OBVV`'UU%@ OBB+&UV&!!";;2?32654&'7#53'7V O'b`'U@ O&+&U(!";;2?32654&#5#!37'V OBV`'UU%@ OBBk+&VU&$"&=#"&5463!2+##33535#5 VVO @@*@@ @OU@+@@+@ &-#3#335326735#6'35#.#32##537#53k++++*,I9,,9I,.ր.RU+*+Հ.'++'.*+k *  7;265!3#'##!5+jJ*++@++353#3"764/&37U**-/-+*- '- #7#5!5!5UU**++V**;26575'##53#* *++@V V@Uk%%4>254&#!";&'573##5#535#;E@@+@@+";# +kk+j+@+@@+@k&%47#5754&#!";&'3##5#535«V@@+@@+ jjl  kk@+@@+@"3!2654&#!!353535k***֖*+++V**U++ "3!265'33!73535k+j*k++U++ !2"&462"&=46@$  $$k @ @ !,8DO[gw}7"&547&546;>232#'"&'7265'"'72654&/'7>54&#"'"6274&"67'&32?&'".524>35>7'.(( !*! (( !*!>   Q  @   Q  ?4X44X44X44X/ / / .'''(  )        )  )    U   3Y44X44X44Y34 . .:. .$734.2>5"".=27676@4X44X4X44X4$020$ 33 4Y34X43Y44Xak/$$/k33 1<734..2>5"3>7'2>="'&'&#'77"&5@4X44X. .4X44X44 . /R0$ 33 $054&#"'627'+==@@@@"4X4q ~.3" < zq==@@@@<2R3Y4r ~ < $-!2#54&#!";#"&5462"&462"&46#2*#22#22F22$2#*2##22F22F2$$ %5#5##33572#!"&5463+UU++UU+* 355##!"&546;32''@UkkU.N/$`J6J@kj@j*/N.`@`V #'+;?CG%#53#53'#53#53#53'#53#5;#53#3#53#7!"3!26=4&3#73#73#****@************@****V++V**U++*j**j*+k*j**j**j*j+++++V #'+/37;?CGK3#73#73#"3!26=4&#!!7353353353353353533533533533535++V**U++VV**********+++++***********@**********@** '' %=d.!5,:-4%$=d-7676577bLyKy%KyKx '7'7'7%''77''7'7'7O(FPj#K-EZk_*>l pQR{;"5[ k %7'7'7'7##zzz4{D____d7535#57#3#?5#?'7UU U*V Oi *V++V*NN*VVqH.YHgd75535#57#3#7?'7*jjUU + Oi @*@*V++V*NNqH.YHg#'+/3?7654&#57'75'7777xrxr@jVV@((((((((),-)B, . . . .@@%#'735@ d9@9r`@3#7' d9@9r%#53#37#!463!2!7!****UV*"264&k*1P: :P1)D((D)$*+;/ * /;(DRD(j$$#'+/%!2+3#535#"&54633#73##53#73#**+UUUUUUjVVk*+**+Ukk+kk@+++ 5ALVm7265&%7'&'&'&'&'&"37676?'>5/77''6321&4>7'#.54?;26=  6 4, &)## ,4 $52( ")& *    V   V7_   _77    s!:88J, (4  -62'&54>"3>23."&'#267567#'"264&)D(}}(D)+A7!*!7A+!7 5<5 7! (D),%%,)D( 6**6`k,2#!"&7>3#";264&?64/.CCV V  i Yk  0    pp _ ->7.627."&462#537!"3!5354&i!XX!)nnFBB  I@%UU%l!!*f   kk&kUUk&k'-%35#+#5#"&=46;27!"3!2654&#535++K   @ *k @K V  `k!59#!"&5463!24&+"35335337";35326=4&#3#* `   5  5++@g k`KK` V V @m %#"&54>!"&7>#'5ժ  I  q +   ,  +"!"'&6?622"/.7637+UU+        +rrw7"2?64/& ^^^^6^^^^"7'&?764'2? FddF F FeeeF dF $ F FeeF qF $ FddddF $ ='&'&"&=7"264&2"&462.'>2X66X2( 2 (,,>,,  9119V:lLLl:'Bi64  46i,>++>,+ ## V#3UV%#57#3+VVV*+753VVVk!"3!2654&3##53#535#53VVVրVVk+U+++*+k#2#!"&5463!73#3#73#'3#V+++++k++***+ k #'+/37;%+5353#53#53#"&=3!"!54&#35#3%#3#3#53'53 ++*+k +*++++U++++***+ ++++++++ +V++*++++***U++@$#";2>4.#"&46;2'"264&k";##;"";##;"#22##22&&5%%@";F;"";F;"2F22F2%6%%6%@$#";2>4.#"&46;2'"264&k";##;"";##;"#22##22#%%5&&@";F;"";F;"2F22F2%6%%6%@"3!26=4&#3#&473#73#UV44 k4 4@UV.VV.#,5%54&+>..3!26=5'2"&462"&46 "48 92  U#$J 39/192 KV$$+## #5##5#5#5#3'#37#3'#3UU*UUUիիիU**V**+*Հ$%5'.?>7>&/&/&6?kI U^H @aa;8)  -79'%#3!73'#3!26=''7'2?64/&"*)%&+*@*UjLjjj++++@VViKj-ij'+%#!"&=73#!'#75!7'&4?62"77@@*+&*%)*$ևjj'jLj@VV@++++kijjKi-k #'+/37;?CGKOSW[_cgkosw{55575555755575555755575555755575555755575555756555555&#"567556755632&#32&+329 59B""""" J%%%%%# O(((((((((((&9/:%%%&326# !O  y  y  %  P  &  yy% P% u u ! M   s r   K  qq  K  +( (%%&%%&&&&&( (( b_*4 `  b+/5>32+"&=#""'&7673?6763546;53#3'735'"264&#  p     (  c #Vu@*@  U  ?   232'3"56#"#'#5#65#'25#5##''#'6##6767#5#5&3'&726756?37616'5&6#'67"#47Ȣ6C,D   D- 7,@% ")D   6 DYRtf3L  &)B96'W %($   =F A    DK ! /+ !$      E *    $qY    k%#'67#7&'.54>2  1:1SYVS <11<k #%5355'!573#'3#75#5%#'7@@UUU++U++*) %@@VV@+KJ*Okkkk6&\ +@+KK+V 75355%!57!!73#'3#73#+@UUjk++U**++@+KK+O*jjjjjV %5355'!57!!73#'3#73#@@UUUj++U++**@+KK+O*jjjjj!%%#53232&#"#"&=46;5465#ժVVV$1#;"VgVU**@+v!";F+U++ )-%33##5#533232&#"#"&=46;5465#k*@@*@@VV$1#;"VgV@*@@*@+v!";F+U++ )-%77''73232&#"#"&=46;5465#4--..--.VV$1#;"VgVm..--..-U+v!";F+U++7;%2'#"&46"264&3232."#"&=46;5465#`(8BB(88(,VV?J?&VgV8(BB8P8+,,+k#&?&2+U++,04:#&'7'&"'#3#3#375467535#54'3#535#53'77<"./#<-++-<W+/'**,UUUUf;"L+".."+ * +( (C * +*+@"M;AEI#&'7'&"'#3#3#37547#"&=46267535#54'3'7'#5#5<"./#<-++-<W+$22G2**,2L";eUUU+".."+ * +( 2#V#22#V * M"@f++U++/;?C#&'7'&"'#3#3#326735#6=35#54'3"&=462'#53#<#//#<-++-<;D<<-++-V2F22F2*VVV".."* + +""+ + k#22#U$22$++V*##"3!2654&+5##5!!73535*+@*ր***+*+++kk++#'+%5!332#!"&546;5333#73#3#73#++++++U**U++++*++++++***335332#!"&546;!53#++*+++*k*+%!5!'#5##"3!2654&+5#3*@+*++++++*+";2654&#3#3535#35+ 5 5U@+U5 5 U&*.26:>54&+5##""#"353353353354&#53#535#53'53#535#53*U@+U+*+@++++++V+++++@@+******+++*+@+++*+  BF#5;#3'#3#35#3%#3'#37#372###5##546;5463546;53325#@++U**U++******U++U**++++++*++++*++***+++*+VV+++&*.#.#"3!2654"&46353!3#53#53Y 0 Y*  b**+ *   U**++k2%.#"3!2>54&#537#467>4&#"#&62 X:-M 4";#19**'  *   *$:#8I/'#8!";#1*=+D    '2;%++"&=#"&=46;32'2"&4672"&'>"264&WO Vv [8--  +FFVEE+, UO @3=   @/&&00&&/ , ,=2"&4672"&'>"264&#5#5367#";;2?326=U  +FFVEE+, iB[ vV OW@   @/&&00&&/ , ,EBB@ OU 62'#"&46"264&!3327++"&=#"&=46K(8BB(88( ,v %@&7WO V8(BB8P8* ,, %@%6O @.73#3735++"&=#"&=46%2'#"&46"264&Uv lBi+WO V(8BB(88( ,kBB;+O @*8(BB8P8* ,,  3#3#753353353#53#5+VVj++*++jVV++U++++++++*+ 753353353#53#5++*++jVVU++++++++*+k 3#3#753353353+VVj++*++++U++++++}h%#"1#"&46325;2765.#"32671>32#"&'.+331#32671>32#"&'.+32>74&ȶ""=[50Vu"" ""u V15\< "0!   -I*$  "0"   ((  !0"   $*I- (%!54673"&=7>;2'##33535#=1==1=U2F2 n Ue ,**, e*$22$@W WUk-;DM["&"&#"5&54763>7>54'&'&&'67>723"&4623"&462&'&'363,<,& W;   ;W &    a  w  ^    k .%81 $1\ \1$ 18%.&"8!6%     (*%6!8"&77'357335'#U@*@@+++@U@*@*@@@@@#6DL7'#"&53327>76767'#47654.#"'632'?'>54&'632z}   #2+   +1%*7*D( 2!$ mJ  e|  $ 2#  q 1"'ES) V0,Q A$'Fm I'#'#5##53357'#5#535#35Qz0*@++++(^v+@@0+@@@@'^p@U++)#5#3533357 #'#5737#'5#'3#3355^(++++@*Eqj++.@+p^'@@@@+E+jՑ/++U@#+/"&462'77#5?23"&'#5'#!'!#5PY!$^  *4 &$&++k++$ =T($6$m$ :*E #,%#!"&546;327'654&"3277'"&462v %@&48P88(B-+%@%3(88P8B@--"+"3277'654&"3!26='!36732"&46K(88(BB8++l -8P8BB(8*k++--%35#535%"3!265'#***uuU+j u%35#535%"3!265'33!***jU+j*k #"3!265#5#7'5+@5UU@v@@UUuu #!"&54635#5#7##5#+kU5@5VkU@@5"#"#46754&"#54&"#54&"#54&"2>=4&  &+/Q`Q/ {& 1   а  Ņ  0Q//Q0 B%77'&/.'.'&"32654'51'77?64x.yB 2$H O&)     *J b %y.xA\ WgLG O   %    b |$<73#71'"'';2?6='&'&7&'&#'.6;76&D        @ +@#3j[W ]  $     ~!# |)73#&''.;2?6='&'&'76&  R  " +@ {z  ~$ ]  3   35#"/76;2"&#53D h  i  $Y  ] /_ ^@i3'54?+"&/#"&4653@$Y  ] /_ ^@D i  j  732+"&=46?54623#+D h  i  $Y  ] /_ @+%&'&'&'&54>32>32&'&'&= T15!33!52 vW"42!UN2#'& 66 '($2 fN"5)/0 $'($1!L,F&'&'&5477676767674&#"#.#"2&'&'&54>32> U!24"y ;%+ ,( + +(@`!52 VU!25!33L!1$('$ 0/)5" 6%  ** !'9M6 &(#2 NK!2$(' 6-6?HQZ35#"'&5476?5#3267654'&'"&462"&462"&4627"&4627"&462V  "|"  V  cjc   !  v  v  !  k@@ ,&C(**(C&, @@!",,3.+44+.3PK%     @   @     %2"&465#7>2#7462"&3##5#$@77@u$$ @ ##V  $.U@@(2"&465#7>27>2##5#2"&46$@7777@@$##V   ##%2"&465#7>2#7462"&3##5#$@77@u$$ @ @ ##V  $.U@@'2"&4632##5#546462"&3##5#$@ V $$ @ ##juuk$.U@@'2"&4632##5#546462"&3##5#$@ V $$ @ @ ##juuk$.U@@-2"&4632##5#54672"&4632##5#546$@ V $@ V ##juuj##juu#%#53%463!2#!"&5#;5326=4&+U*****++*U+UV++/;#53#+"&5#5346;5#"&=46;2+32#;5326=4&+@++ V VV +++*+U+* * ** @U+ %?7#7!7!7?373 #$$8$ &u#3%#5($$l. v welrD ̕C T23'5'.67635%7(E( k+k OJ0 !($Ֆk)D)1(k+k  AOI++!$23'5'.676#33535#5'7(E( k+k OJ0 !(@@+@@k)D)1(k+k  AOI@@+@@+@k@37kkk@k*kkv !5'#7539rGr9u D9U +9,L%+54&"#"&=3264&+546;>2323264&+5#54&"#3>23$Q"0"Q""A*8*A$j  kk##. 2@2 .*A""Q"0"Q$$A*<k  . 2@2 .##,4"2>4.".4>2'##532#'3264&+*O< 2&"'>22#!"&=46;535#35#35#3#73#73#/0.7;7$@%'$++u*u+++V**U++W#UUUUk++++++j+++++k!*.7"33533526=35#535#54&#!!7"264&352"&46U+*@#22F22*$k*k++2G22G2 kk ###,5<AEI3#5;#53'.>7'&'.>&>&76.6&76&7?#3%#3VV` V650 5 5  60 | i  VVVV+++  50  5 6/ 5 X f> /&+++ V #'+/%3533##5#'#5##5%#57#5##5##5##5#57#5V*VV*V*++*****++*++*****UVV*VV*****++U********++U++k #)-%3533##5#'#5##53'53'53#73#73#5##5+@*@@*@+@+U++++U*U@@U*+U*U@@*@@****U+V@@jV++V++V+U++k 3#73#73#++V**U+++++++`&%5#3#535#";26#3#326=4&+53` @&&@%UUu5U`@@@%%%@@ @#5##5#35>=#33"++*+."5".*j65"11"U (!%)"&#"1;35335326514".3'33'/!++V6V++!/bLb&,,,,&7'?#32>545#73La4P%&_&@%@j@K&[4LLɪ%@&h2#!"&5463'7/7DY##YDL*W;RR:W. %'7'?72#!"&5463!LLLDY##YD]*U..W:RR;*+* $(,%33##5#53!2&#3#"&5463533535+@@+@@+/O+Հ@*@@*+ VUVVVVVV $(,%77''7!2&#3#"&5463533535J-....--+/O+Հm..--..-@ VUVVVVVV'0%#5#5###3335353#5##535#53353#3'"&462+****+Vk*l++l*k**k   ԗ***++k**k*l++l*  +##5#5;73#57#'#5>+=O457+77* 5[[5#3;26535#53#73#kk++U++++k#3;26535#53#735335kk++*+++@!!#"&="/&4?32653"/U =~#%6%#~= ;}}< "!#"&="/&4?3>73"/U =~#!!#~= ;}00}< 4 %'''777'7'''77@@@@1O@@@@O11O@@@@O1@@@@@@1O@@@@O11O@@@@O1@@@+"&'&"35"&462376#2>54.U# F;"$/$22F*G13"/$"; ";#/$+2G2c4F0+$/#;"l 6A"3264&+>327&2"&'5>%#";#"'32>54&"&462:b9."#22#E%92="#22#E%92'."&462@% +  " G5 "$ %+ +.G##67'"'627&/27&,(_^(,,(^^(,+T+UUO '''' ''''  1:%.'67674."&6765&'&'>72>5"&462&4%190"? D? %$0:1$U&$327:11/1 C?!" ;1**$$327:11##!%%#5>.#53.54>2!! / );?/4$?+JVJ+?Vk+-);?/ );$4-+="+J++J+"=@+%#67'#&'#36737&'3+#'&&($++#'&&($+ZU\cc\T[*ZU\cc\T[#5''7'77#5*11qq11͍Ս11qq11*-%#"&=4&#"&"&#23546235462;7z"&1 +  *  2#"Oz%+ $2O*>5#".5#>&'&".54>32M!'*1:1*'!"'*EPE'm1'11E'11'EFOF&*EP"!1'1:16A%67654&#"54&#"&"&#235462354622735&'2"&5462$&1 +  *  LLO/(% $2 a%+ %*((*.''.#,2"&46254'&#"37"'&=46"264&%%6%%4W87 1+'+(8W4$%5&&5%- {$/ 8${ -+##1:%2"&4672".4>26=4&"375"'>"264&  *O< "2>4.2".6'2"&46.'67632"'547632:b9 32653#'#"'&27'7>54'&"^!0 %)9 \/"<@ ;'$*#d /"#  0`5 / 2%,o&-K/F  $ z#&#(   !'59AGMRW67#3654'3#654.#"6#&'%3277#6&4733.745#&&'367  :+*H6F 9b:=4 ? /?9b:H9< H7? /O745 R  a !# ),* * (F4=:b9 G)# 'k?B$:b9+;-($*+! 'p7),, %"3535"3535#57#";26=4&U*ր++*U++%("3535"3535#57#";26=4&7U*ր++U*U++@@ +!%5473"&675462'54.#"[d+B;V$$$/;*1 e!%*:e@e O2f+;1 !-6"3&5#54>26254&'54&#33535#53267&'.<+k1:1  <.Y@@*@@   O3*113O @*@@*@ #-;"&7!5754675462'4."3'335#75V$+;/$/;*1:1֫EEEE=*2OO211+91*:1 !%%##;&#'5#";>54&#5+ zj++W,?# D+j j"5++ ,%##;&#'5#";>54&3##5#535+ zj++W 18@@+@@+j j/ @+@@+@ ,%##;&#'5#";>54&''7'77+ zj++W 18:...----.+j j/ -....---%%#"&546;7532&#"7''77'65 ";#.----..+#V #; ---....&+232#"&=46;54635#"764/&37+VVVV,.,+++U+++ %,'48<BKT2+"&=#+"&=&=463>"2>4.3#53#3.5#"264&3"264&U)D)";#   XSA%11:112++++ )D)%@)A&  &3##+1:11:1+kU7+/3!"3!2654&77''7'3###5#53533#535#53*kkq* ++ *kkkk*W ++ **:   ?'37337!"3!2654&!!,+=e)r)eVVst77UVV ''335#7'"264&'!"#4춭33x 3[[%%6%%+4Jj4[ZV%5&&5%@UV 7!!5!!!73#k*U+*V++ 2".4>"2>4.2:b99btb99b:.O..O\O..O.7j9btb99btb9*.O\O..O\O.j 2".4>"2>4.2#:b99btb99b:.O..O\O..O.)D(9btb99btb9*.O\O..O\O.(D) "2".4>"2>4.2':b99btb99b:.O..O\O..O.)D(j9btb99btb9*.O\O..O\O.(D)7j !2".4>"2>4.2#:b99btb99b:.O..O\O..O.)D((D)9btb99btb9*.O\O..O\O.(DRD( %2".4>"2>4.2#"&'7:b99btb99b:.O..O\O..O.)D((D)7j9btb99btb9*.O\O..O\O.(DRD(j %2".4>"2>4.2".53:b99btb99b:.O..O\O..O.)D((DRD(9btb99btb9*.O\O..O\O.(DRD((D) (2".4>"2>4.2".5467:b99btb99b:.O..O\O..O.)D((DRD(j9btb99btb9*.O\O..O\O.(DRD((D)7j &2".4>72".4>"2>4.)D((DRD((D):b99btb99b:.O..O\O..OU(DRD((DRD(@9btb99btb9*.O\O..O\O.!%##546;#"353+"&=46;2#3+*U+U*kUUR+%)"3535"3535#57#";26=4&#53U*ր++'*U+++"%!"3!26=4&!5!5!5!'#5#'7 x3[[3U++jJ4Z[4 +12".4>2>5'"".5;".5'77.O..O\O..O}.O\O.)A.O..O.%.O.+;"M'/''/'''B/%'+'!'W@"M +BK2".4>".=2>5#".=32722+"&=463546"354&.N..N]N..N-)^N..N]N.j!/N..N/! j  @'/''/'( '@''@'@'U U U  A/3%#"&=46;2'#3#33#535#"&=46;2#'#3j j jjjjjU @ U++ j!%0!"3!2654&2"&46#2"&46!!"&676?  7  G"0" 9V*     "".S/#5##575'73;26=7577'&"127164+@+++@+* U U@*  @Հ@@@@+@ @U+U@*   +&72"&46#5#53#'#3#3#5##'#535+  +*+k****U+@++@   ++++++*++րր%".5476762+JVJ+"(R(",I++I,.>B+11+B>26762.&''>7'77&'#4&"#4&'7<A @@@ ;RU> @@@   (   8++  @@@+<>+@@@ KCCK k%4>254&#!";&'57'77#;E{;"L+";# +kk+j@"Mk %47#5754&#!";&''77«&;"L+ jjl  kk@"Mk *<'"/&".#"32773276%2+676"'&5326716762 &+!/ .#!#N/D.+f =7#&k'   A!  )M^#!#"S B#'3c #!-##546;'#"353+"&=46;2#5##3353+U*֪*@+@@+@U֫R@@+@@%1"3535"3535#57#";26=4&##5#53533U*ր++'*++++**U++**+++#537#!"&5463!2!!!!#3+VV+UVV++VіVU+ $%#537#535#537!"3!2654&!!"&5U@++nU+*++*V+V+U $(%#537#535#53!!!"&5%2#!"&5463!U@U++*++*+UV+++ %355#'3/3&#"#"&546+UkkUvv#;"!U@``@u \";#1$Vk%+";32>54&'54&+'2".4>7'5@A$)D)+11:11M=k")D)6B+1:11:1k.$[k*7%3'7!3&54>32"&546;32#"&'7"2>4.@ =MU(E("+)D)%Az11:11[$.(E(+B6)D)#1:11:1V #3733'77#53+u/343ת+@@k*/6=N462#"/76;25654&".546##5#7'35332&"#"&46  i  h D( &5%2@*++@@++*+3% -#22 _/ ]  Y$*D%% '#2U@@@k@@@ % !2F2 &=N##5#'35337462#"/76;25654&".5462&"#"&46U@*++@@++*  i  h D( &5%2G3% -#22@@@@@@@ _/ ]  Y$*D%% '#2 % !2F2 #537'#"'#";26=4&/54&@@@@@@k D h  i @@**@@+k $Y  ] /_  #3#7#53"'#";26=4&/54&U@++@@**V D h  i @@@@@+ $Y  ] /_ (73##5##5#54763276=3#2"&46U@@@,'+*+ *-,<,!*$k/D ހ* ?'%/ ##&*3!!3!"&=3;5.546;53355#7"264&@+@&+ #8(5+V ,+`$$ 2+% 0 1(8+++**$$%"/&=4?62'755   ` ^^ ^^ GTTTSH%'5"/&=4?62'75@   xHH ^^ ^^ GTTT7"/&=4?62'75   OHH/ ^^ ^^ GTTT'7"/&=4?62'75   OHHHG` ^^ ^^ GTTT '5"/&=4?62'75   OHHHG` ^^ ^^ GTTT'5"/&=4?62'75@   OHHH ^^ ^^ GTTT 7''7'75MN46MN4kjyxkjy 7''7'7'77'7D+)DD+)D5OL35OL+<75><75ykkyy ik 7'+"&=47'32+e- .]@ e- Z  7'+"&=473''#'32'+e- !6L* ]@e- ek* ZV ?'32#Kgg ]] +V737'#!7'!2KKJk`` ]] Ukkk c.38<AFKPU[a%27676764'&'&/#353'#537&#6767676&'72/767''7'667''7'7'5& Q(%9@ .Q93 -4;E6,,&f -&U 'F % n  ) &'+\ $$O" ?9?/5<(/  CYQ Y h[) "u  1G *  #'048<@D#/&5?6?6555'05/77577'7'MRQBRQ C MCCCCCCCICCC5\-W]\0.&Z0/\L&LdMTMXTM+X'&&&'&&2&L&`T'U8U%#&/27671'&'&'547676?676;2'4&#"'&#"35432354323>'7;'  /49  %$**$%  D$" "$- , -* # <-RI      (.O!**!pm");;)"m+ ,:=.46"3265;767>7'".677"267654&')%'((%&(X   8$+#(&)%  EF+<,1:;]:!#I$& >+1'0   FF*73546755.%"2>4.".4>2/&9GG9&/4X44XhX44X4(E((EPE((E**,I.c|c.I4XhX44XhX4(EPE((EPE( +#"&463253'2".4>"2>4.U@,UU*O< 2#".53".4>32# 6?6 6?6 6 66 66 66 6 6?6 6?6 #)/5;#5#".=3.54>;>32#'>4&'26?3."',";##;",";##; $$.:.0/9.5$$+#;",";##;",";#ӥ.:. $$*$$/9. %1=%!"35!354&"&=462"&=462"&=462"&=462*V*   V   U   U   **k + + + + + + + +5=JRV7#"35!35%"&=462"&=462"&=47?'7'54&#"#'32/7/7F;%K*;*   V   U  '*&+U@ ,Z+%T%;/+K*O + + + + +'//B//BMY@ +}/B//$T "&+/#3#35#";35'34&##3'35'#3265+3**UUUUU++++++++U++*+*+++*++++*+**++ %#5#53533&#".=*@@*@#;"6X2??+@@+V#;","Ll: %%#5#53533'&'6='7.=7*@@*@)E'6X2??+@@+ iBBi.X@ Ll:VV %''7'77&#".=,,.----#;"6X2+--.----TV#;","Ll: %%''7'77'&'6='7.=7,,.---- )E'6X2+--.----~ iBBi.X@ Ll:VV #/%##;&#";67#3753254&3##5#535+ zW g+55@@@+@@+00@+@@+@zDQ72"&46732'54.+'.'&76767676733676+"&'&57"2>4.#u'C' 7  !/ (   3"2V37Z!:!!:C:!!:##'C' 7 $0!&$ +2$N&-&&-&.%&'&5##5#46;'35&'&/#;265e  U+ @ U U4++:**+  !53326=3735!Vj+$+jV@@**+?'@@@@@@@/??'RRRR@@@1RRR̫@@@@7'@ՕҠ24 %'?7';UW;@ՕU@@Ҡ24"2>4.16&5&?4&#764&7>2#"'"&462327367>7.'&'&'&'&7>676'&'&676676*O< 73#'#7'3"!5 '!5 '$. "16P.046S-0+b33b+P[[PP[[PYg3byEkiHGnek(7"3267363#."#276767676763"##33264&  W9$  *9$  *5 W k  "-(*"-(  k(2:"7672654&/17'&'&'&'&&#'632'6767*&   $   &#5-!Zk   + ,   ~YY    *%"2>4.#7#7335"34>5"34>\!8!!8B8 8g85f66=SGE)))GyH=g<)1T 8B8!!8B8 W&W)))EGSHyGQ)=4&#3#++ ***+VVY +++A+";#326=4&+535*UU*U+++++++@+33535+*++++A+ ;26=##5*+*+@+37#'+*+++kkk+7"&=3353353#++*++U@+ 373'7#'++++++++kk66kk66@+357#'+*+++VV@@@+ 335#75UUUU+++++!463!2#!"&5"353354&#3#@*+*+***UVV++ $(!2#!"&54654&+326=4#535#53k*UU +*****  S+*+'!2#!"&546";26=##53354&#k**+**+*U 326=4&#3#!2#!"&546U****++* 35#535#535'!2#!"&546UUUU*+++*++U* 3535#535'!2#!"&546+@@U*+V*++U*"";26=##535'!2#!"&546*+*U*+UU+U* 35335##5'!2#!"&546+*++**+VVVVU* #3#35#53'!2#!"&546+VV*++++* #5#;26='!2#!"&546*+**+U* 353'7#5'!2#!"&546+*+@@+**+GGkkGGU*35#5'!2#!"&546U*++U*!"353353354&#'!2#!"&546++*++*+U* 3535#/!2#!"&546+*++**+kkkkU*#";26=4&#3#!2#!"&546*****++* 35326=4&#3#'!2#!"&546+*****+V+++*k%"33526=4&#3#'!2#!"&546*****+**++"3533'>=4&#3#'!2#!"&546++ ****+VVY +++*'";#326=4&+535'!2#!"&546*UU*U*+++++++U*33535'!2#!"&546+*+*+++U* ;26=##5'!2#!"&546*+**+U*37#/!2#!"&546+*++*+kkU*!7326=##5##5#!2#!"&546++*++C*U+* 373'7#/!2#!"&546+++++++*+kk66kk66U*357#/!2#!"&546+*++*+VV@@U* 335#75'!2#!"&546UUUU*+++++U*k"&,8""3>;23'4&+54&"#54&#3#!35/";264&#U    +  + @**j@k j D ? * *j +kU##k"#";;26=3'#5375 + @k+++VV VVV"V"M/ .&7#5###5##5##";'#5!#32654&U@*@++@+*+@U@++++++*&%3353#5##5##";5#5!#32654&U@*@@++UU*UUU++++++*%".4>2%7'' 24."2>%7'' 2'7' 24."2>'7' 27' 24."2>7'7 277' 24."2>77' 32&#"2>?3232!546-..->>>> %++J+! +!6?4 +%  --->>> JWJ+  !+ 625,J ;J%#'&?6767676'."'&'&176?'6767> !)& # 2#'!(    &! $$  *   !(+9      % &(8%"'&/"'&/376762>.#&727#".>32 "#  :0.#  & '16[""Z7Eq++pF3V3'h TV tW ^34."BhiA-QQ2V3?3%%3/3+"&=37'#5467#3#"&546;+uukUUk++u @+@@*++('#";7'#+"&=335#5##546;++UUk+j++*@@+++k@(+3%&'#"&546;54&#"#4>32'2675#"'3/3#'###+'$#S9W+$e)r)@  S " Ds177@(+37%&'#"&546;54&#"#4>32'2675#"'3/3#'###5#+'$#S9W+$e)r)@  S " Ds177+**@(+37%&'#"&546;54&#"#4>32'2675#"'3/3#'##3##+'$#S9W+$e)r)@  S " Ds177+*7FUp7676/&'&76#67676'&/&'&'&76767&''&76?'&7671767&'&'&76763&7>'67'&76?"76#676.676'767672`     4     $  /" ,,q8:3#'$ @ f.3 211+'$1G 34# E$)/&  `c *+0# >        !    $    ? m ,   q   k 2".4>.467@.O..O\O..O/&8GG8&/k.O\O..O\O.)B,\t\,B++335++++A+3#"35#5326=4&#U*U*+++V+++A+%54=4&+3#3#326@ UU**UU  ++*++@+ 335##5U++*+VVVA+3#326=4&+535UUU*U++++++A+";26=4&+5353#**UU**+++++@+?5#3UUUU++A+%73#53#326=4=4&+"3"***** * ++    A+%26=4&+";#7#53**UU**U++++(72&76?".547676"264&+J+.N +J+.N%%6%%+J+3*M++J+4(M,%6%%6%k 7373#''#+jBAhUjBAhU\*\k$-673>327723##"&547''#"&'#%"264&#"264&+#!& AL!##!& AL !#J %"m*%"m5/83#'#"&=#32!546;'"&'&>3546;73"264&44L^"C{gVd. $E=C"^$k43+"75 $"=$"58"* ##5##'##"3733576764'&'`@@+U**  @737335767654'&'##@q+* *k@UUU   * $(2'#5'###4>"3.3#3#3##=&*+@+*%@%1 2Tkkkkkk 9"Z+& %@%*$$*++*+  ''6?'7/762'264&"7'v [p #  L  |k%2 p  #   {o+"3!2654&#33!735@իU*+UՀ++ !?7''7'!2#!"&546!5#5.----.....----*+UV23##".4>"264&3#5#)D()D((D)#22F22j*@U(D)@U(DRD(@2F22F2U+ '77'''7''3733'64$U$@@`*\*j8\ "+ +)~nJoK6J % % 5 d[[w z'#3"264&73721R[!P{+$R\QxxJn'(ʸk -6%53#35#'2!54767672"&46"!54&'&'"264&**** &+ +&$22G22#!(( %kV++ @@ 2G22G2%%k%35#5"264&"3&547"&kUU@@$22G22#.O. @+*@@V2G22G2'+%#k0%35#5"264&2"&46"3&'#5467632367&kUU@@$22G22## &+(! @+*@@V2G22G2+## @  k%#37/"264&"3&547"&UU@@$22G22#.O. k++@@2G22G2'+%#k0%#37/"264&2"&46"3&'#5467632367&UU@@$22G22## &+(! k++@@2G22G2+## @  *3<"2>4.>2"7&'&"&54>2'"264&"&462*O< C.v/%>%/#.O\O.,,>,,  ++>,kk)/7>"&'#5>72'"&462>4."73'AOI.IXI`I #$00H0011:11 4D%."AO%(/.'+$00I00I01:11:1<(k)6?H%3'7"2>4.'2#"&'#54767632>47&#"3&2"&46"264&U 4D11:11(E((E(,I +& Co  (#22F22#&<(y1:11:1+)DQE(/&@  % "2G22G2)%%V/>GPY"264&2"&46"267&=&!"2>54&"!54'&'&354%354'&2#676,,>,, ~    !%*%!%#@\$@#U+>,,>+* ((      ))  k2"&462!54>27#5'#5462#546?654&"2F22F2V.O\O.J %5&  #22G22++''4 j %%"    k.7DM%#5'#5462#546?654&"2!54767672"&46"!54&'&'"264& %5&   &+ +& #22F22# (( & j %%"    U @@ 2G22G2%%7;'4/.+7>/&% 2 L"ccX@ X = G %''7'7772#!"/763!!LMMMMLL ss @dd@sMMMMMMM+!=HM&'&'&'567>765654'&'&'&'35677>766  ##  c #*O6# (! "+   <c 1   '' N (S  3735'3'7'#53>B@+@U@@o@@@V@V@@@+G6763235276?276?6321"1&1'&'&'&'&'&'&#'&'&    (> &0 %  %%         !"3!2654&!5!3#73#73#++V**U++Uk@V+++++%2?73#53#326=4=4&+"3""2>4.".4>2***** * '@l??ll??l@)D((DRD((D++    V?ll??ll?(DRD((DRD([$.7@%'.;26547>+"&54?"&462#"&4623.462{ 3{ %zz #5#Y#a2 % U##`$$#$k#!"3!2654&33#33#3#3#nիkK   2#!"&5463#'5#!k55+V*00k*%53"#>;#";27676?5'&'&'&@56,/ @@j  k 0(*$   #5##5##"3!2654&!5!5!5!++***++++*+*#%3##5##5##"3!2654&!55!kk++**k+++++*+**#'+73#%#!"&546;5335332!5!5!735#35#+++++**++U****++++<*Հ*** 7462"&''777'7'7'''7'2''2'J&&&&K&&&&L&&&&K&&&&L''2''e&&&&L&&&&K&&&&L&&&&K#3<%?'7#'##"3!2654&!3733"32>4."&462,,,,D''DVW'Z'W''11%%6%%,,,++**'+'1:1%5&&5% %#3!5732!5@@@k ـ/*kի $-17.+";26=!;26="&4623"&462%7335# ,      VV  Uk``+@+6:CL"326733535#.2"&46";26=!;26='.#3!2"&4632"&46%% /*+   + -    -  %6%++*+    `* 1N?3"&462#"&4627.+";26=3;26='.+";26=.7>;7#73  ,    -   0 ``j  X *`k%!"&5463!2Vk2#!"&5463#37#3%#3%#3++**k++++++ !&'!"&547'7!2'35#'35##35'#35Gr1TX4^+#+l*t1  W+*+U+l+ #'%'!"&547'7!2'5#3'#5'#5'#'35#'31U#a@(-(++ *4_+1 $@(-(++*+k #%#53#53'#53#53!"&5463!2!++UU++ի+VV+++*++++k #'+#53#53#57!"&5463!2'#37#3%#3%#3+*+kV++**++++++*++++++ k +/#53#53#5'#53#53'#53#53!"&5463!2!+*+@++UU++ի+VV+++++++++*++++k%!"&5463!2!VV+k%!"&5463!2%35'!5V*++U++k%!"&5463!2!!!3#VV+@+*+2#"'6767.54>:b99b:'$  9b.N]N.   =!/N."2#"'6767.54>35'35#:b99b:'$  9b%****.N]N.   =!/N.**+"&2#"'6767.54>5##5##5#:b99b:'$  9b++*++.N]N.   =!/N.++++++ $."&#"!5>54&#".3#'3#73#;26= -#2$#2#-'@ "2$..$2"jjjj6 k2735337#!".54>7>32264&/.#"36>6U*91#;"4 L.:X%"!A*!8 !+2#@@V=*1#;"!8#(/J%4% *5"1!#2k+2%.#"3!2>54&!"&546?>32%3353' X:.L 4";#192#2+! 8!*A!"%6>6U7J/(#8!";#1*=2#!1"5* %4%k@@U73 #33535#5@@@@j++*++*U+*kk*+ 7'#".5477'7'632';7C*O< &/Jp6C*O< %pua<& "264&"264&%#33535#511,V,11B @ ++*+++1:11:165@+*++*+++7@I2#"&'##".4>3"326733264&#33##5#532"&4672"&46u 6 !+/6/+!!+,,$ d $,,  4  + 6 +!!+/+!+,>++>,    +   #'+/B5353#!#"&=3332#5#'##546375'7'5'7/&=4?62k@* J *@J *@@* VVUUUVVuuu*@J  J@ J@**@J 1b1%1221b1;  D D  D-=E%3264'&'&'&'&46753#4&"#5.32#'##7264&++&4&& *!@!)*&4& ' )!@!*J+!%P/L(*J,, "   7-//-"   7-//-!+#9,>+ $05757.7".5;7'"2>4."764/&#37U(D**E).O..O.R29.O..O\O..O,+,@%>&+'@'R'/''/'+ &, $!''.7>7.'5#>5'#   x2%#.x+,k23F&9O9$O"4/'/2".4>"2>4.+"&=73#537*O< "2>4.2"&46#2"&4632"&46*O< "2>4. *O< 4."&'>'"264&"&462,  ,  *O< 2'2>4."72"&4672'.'>"264&*O< 2'327.#">74'#"&'2>e  3255.----...#;" v!...----.E;#luu 3#'##33# w w++U+k* %33##5#533"#'##3k*@@*@@bw#;& w+@*@@*#+k %77''73"#'##34--..--.Yw#;& w+m..--..-#+kk %)%2#54767264&"7#!"&546;32!!@ $+*V  ##j+k$%#"&546;32&'5!375##33535++@@+@+ +| l @@+@@+k$%#"&546;32&'5!37''77'+.----..+ +| l %---....k ?'?#!"&546;32!!AA188+*V<<+?!!?+#&*-27%/."#'.#1"?>%'?3#/#&?77. *+  D75MwW'M&=B&M||EA$wuFwY4ee4 /Sw!2#!"&546";26=4&#32+"&=46'";5#"&=46;2+326=4";5#"&=46;2+326=4&#";26=4&#32+"&=46'";5#"&=46;53"3546;35335UV B 5(( .!'HV  . 'HU  B 5((s H;; *6 B B '' B 'O i B 'O i B B '' B ' VHOOOi"32&'&"547635355676V3%$\$% )/EBVK%#8 8#% U 4$'*9267546;#632#"'"'#".4>37337377'#/++,,F,,P6e6*+ L++@.*.+JVJ++JVJ+U000f@ h+%454.#""'.'&#"227>4&'"'    LYY XX $G.-G% u,0"2?64/&#47>?>&'"#463# $ #      &  $ $ i"0     & 0473#7#47>?>&'"#467"2?64/&' #      & $ u "0     &i $ $ * 7335'37@@k``+%7<A2#!"&=4633&'5#75!326=#!"&=326=33&'5#^B^j""^B+++U@@U+***5##5##5##!5##5##5##!5#@@@@=# @@@@=#  ` %-2".4>>.7676'/7*O< 2%4&'>7264&"5&"7654' a .''. .'.>&7.>>76.'&I/-/16G*Xq6'>"@+L4Z6@7) @: )"5?0#| ./.0 |YplG:NT(+@2W4;di?; ? j8#1eP %.>"264&)nnRRnn)#)RnnR)l$$"&!"355#3!2654&#537#535#53#53UVVU@QVV@@@+@@+*++*++*"&*!"35!!5#3!2654&5#535#535#53#53+j+jV@VVUUUU*+*+@*+++"&3!26=#'7354&#!"73#53#53#3#U@UVVUVVk@@+@@++*++*"&*!2#5!!53#!"&546535#535#535#35#+j+j+RVVVUUUU*+*+@*+++377'"264&7U```$gUU`UUU+$$``+ %2"&46$|y$$@y %2"&467$'y$$yV %"264&7$gUU$$``77'"264&```$UUU+$$+ 7"264&``k$UU$$ 7'"264&k`$U+$$+V %2"&46''$y$$cyV %2"&46'7$y$$yV 3"264&UU$`@$$V 3"264&7UU$gUU`@$$``$267546;#632#"'"'#".4>++,,F,,@.*.+JVJ++JVJ+':#!767676767676'&/&'&>46;2."' I#&+0)%> (*  'B(9 8  %  K)[$'*! #%+"&=!3#"3;462354&| $!*$   *$$$  $ #'+%+"&=!32#54&"#"&=#54633535| $!*$*   $$$ $U++U++&*.2%265#"#546;2#54&"+"&=33#3#3#@ *%%*  %%nkkkkkk @ %% %%++*++*'2"&46.=7"3535#5>54&  2X66X2%*++%   @:lLLl:VV%!+*/!% *3%.=7>='23##5.546"264&2X66X2'E))E'%++*%  :lLLl:VV @X.iBBi.X@5%!/*+!%+    #,/8%''7'77'#5##5##5.54>24&"26'74&"26Q Q***";F;"*j5"(55("")55)07++++70#;""; >++K   1I%''7'77%"264&3"264&'7"35>54.#5##5##5.54>2Q ^ -)D((D*1:15"(55("")55)k++(E)6BB6)E(++++++,11- '?7"&46277"&46274."!5676#5##5##5.54>2#$ 5#n 7&67'&"&'76&/67>7577'5767677.'.'7''76&'6262'&"## + ;2~2 ))  7kk7  )( ;M,*" *; *M=!: m #$|*^*J1!,Y#FQ  7}&M3  4M%|6> %8  k 8%,!,J$a#[-$H:1J&V !!5!5!@U*V++V 3#3#5353'53իU**V++**U++ 73#'%'#3@k@uu@k@ ##5#77#5##+@k@uu@k@V."2?64/&#'5"264&"764&"'&U # 6R JK $  # *u$ JJ $ 3=F%3##5.'#53>7533#53>7#53.'#5#54762'2"&46!!/J,*,J/!!/J,*,J/G1*1GG1*1G 6 U$*,J/!!/J,*,J/!!/J,*1GG1*1GG ####5537"&462%#!"&='75463!2U**$$++V$nU++U#'#5537"&462%#!"&='75463!2!U**$$++V$nU++U#'+#535#74&"26%#!"&='75463!2#37#3U***@$$++k+VU$U++U++ #*.27"&462'#553#!"&='75463!2!!'3#3#k$$**+++ի$ÀVUU++Ugg+*+"'!2+'#"&5463732"&4677UVVUUVgDDg k*kUU*DD+k+k!2+'#"&546#33535#5UVVUUV@@*@@UUU@+@@+@!!2+'#"&546373!!3#UVVUUVgDDgUU*DD@++*k;?HQ#"3375#53354&2"&46%.+";26=3;26='3#"&4623"&462%%*+k+%  U       ̙   k&%,k+&   ]Xu  uQ@@     v3#7# kuBWj"32>54'&'&2#".5476732>54.#"'>2&'&#"'&54>21#"&46:1$5.1;8^7!4152T1M-!:#  7)!4*F*J )E  (";F !"# 4_7^7F50$1Sb)&-7! (4":"'C( #'K1%A  #:#X   0#"3!277%537554&+I: D%U w*: DM7UK +A#57!"3!26=554&@  UU + KUUK %)2"3!26=>=4&'54&#!#";!73#7"264&k* *֪@ 0 0+**Հ`+OYc}#"&'#.547&'&>32676567>7632>76'.#"#63>'".>3".>&>1767>+&'B#4! 6F.R7+ U2 1&)   0$ L$z   c     +3%)M !+ 0+* -3/+7!.   (         %V!5!!5!%'!!UU@+**k@+*+)%'6&'.'72?64'.77'6%f)RR%P&1G-,BZB+ +&Q$RQ)f$1 &B[B--m JQ%64'7'4&"6>4&'5#'#+"&5#5346;5'.547'.47'7/32</% <N!!E +: V 9 $!'a; G/4.Z< eNWN?F>x*+ * O9 . $#>NW('*;% k+%'72"&46"264&2'"3#547676J,j#22G22$#$ (( +&J,$2G22G2+##$)@ k'6B7/&'&4632>327"264&"&462"!54'&'&!546762k "    " #22F22#& &+ V +&b( < ( '  ( 2G22G2%%> @@ mk#,;G7.#"326733535"&462%"264&"&462"!54'&'&!546762| %% ++   #22G22$' &*U+&b(!;!($7%++++   2G22G2''> @@ m V 5@MQ%264&"72.54664'632#""!5'&'&'&'&47676323#5.'%#53%%5&&   a %% a$  y#0 @# &5%%5&V   SC%5&*   **   V   **,  _+3;%264&"72"&464&+5354."3#"#3;26535%6762,,>,, M (DRD( V >+>,,>+j * "" * * *k  k (17'#54767'54&/3'2'>"264&;Ő@#-) ;2#+өB#2'd/$+ŏ@@ N.( < B2$/d(+##k -72"&46"264&2!547676"!54&'&'7'?@#22F22#& &+ +&  (( 6/>>/k2G22G2)%% @@ )# <(99(<!-#".54>2#'2"&46#7'6=4&"+1'1:1L6*K #&"354&--w*--@@@0$$0#22---`@@Q--+++@$//$*2$$2!%463!2#!"&5!32#5##54635@*+**+*+*U***VV+++"2".4>"353354&#3#*O< 4."2".4>*+*+*.O..O\O..O.*O< 54&+326=4#535#53*O< "2>4.@ UU+****O< ";26=##53354&#*O< "2>4.*+**+*'*O< 326=4&#3#*O< "2>4.UU+**O< 35#535#535*O< "2>4.UUUU@*O< 3535#535*O< "2>4.U@@+@*O< ";26=##535*O< "2>4.UU*+*'*O< 35335##5*O< "2>4.+*++*+@*O< #3#35#53*O< "2>4.+V+*O< #5#;26=*O< "2>4.+*+**O< 353'7#5*O< "2>4.+*+@@+*+@*O< U*O< "2>4.+U@*O< ++*++@*O< "2>4.++*++R*O< +*++**O< "2>4.+*++*+@*O< *****O< "2>4.****O< +*****O< "2>4.U*++**O< "33526=4&#3#*O< "2>4.32##5"&=4635*O< =4&#3#72".4>++ ****O< "2>4.U +++**O< *UU*U@*O< "2>4.UU*UU*'*O< +*+@*O< "2>4.+*+@*O< *+**O< "2>4.+*+*@*O< +*++*O< "2>4.+++**O< ++*++R*O< "2>4.++*++@*O< +++++++*O< "2>4.+++++++*O< +*++*O< "2>4.+++**O< UUUU@*O< "2>4.UUUU@*O< BF%2'654&#'5"&54735'#535#5"&5463!2&#"'35##3#3$2 00#20@@@**&?&kk*kkkk 2#  0 2$  0P@@@*%@%)"+ukk !%)8G753'3573#"&5463!2&+5!3#55#2'654&#'5"&54735kV@@kk* ֮ @kU@$2 00#20@kkU@@+*@kkU@@+ 2#  0 2$  0!*!";5!32654&#5##546;27775+*+g++*++*UU@@@KK++++KK(,!";77732654&#5#54&+"##!53L*++*L@@k++++k*kk*kk $(%'3533'3232#!"&=46;5465#!5k@V@VVVgVV@kUU++U+++ +/%2'76#532325!3#"&=46;5465#,%,,@VV*VgV +%,,~+**++U++"&3232&'5!3#"&=46;5465#3#VV VgVV+v \+U++*".3232&'5!3#"&=46;5465#3533##5#VV VgVV@*@@*@+v \+U++@@*@@".3232&'5!3#"&=46;5465#77''7VV VgV_--..--.+v \+U++..--..-"093232&'5!3#"&=46;5465#'#"&462264&"VV VgVBB(88P8`,+k@+U++BB8P88(,, $(##5#3232#!"&=46;5465#!5k@V@@VVVgVVkUU++U+++%#5##5##"3!2654&!5!%5!7''++***h-++++*+**~h-+#5##5##"3!2654&!5!%5!77'7''++***4444444++++*+**4444444#'#5##5##"3!2654&!5!%5!3#3#++***֖++++*+**V*++  $.?CGSaeo%'>4&'75#";#326=4&+5'623."2+532#35#3/7.465##546;2'5#"'#267'$##$'UE#EE##R#CJTJ DD""""$''$##W#"#"##R#CJTJ4^#RZR#^""""""M""  "f"#^h^#RZRDDf""""!-973#53#7"2>4.".4>2>4&'!.467'****4X44XhX44X4(E((EPE((E$''$####$''$+ր4XhX44XhX4(EPE((EPE( #^h^#RZRRZR#^h^# !-1=GS_>2#&"5#";#326=4&+57#35326=4&#53#5#35#535#5"'#267>4&%'7.46qJTJC#R#D"DD"E"###ggEEE#R#CJTJ&##$''$''$##@""M"""""""D"D""""""""5RZR#^h^ #^h^#RZRZ#*16"3276764'&'&&'&4767''?'-+..++ !!$$!v z Z0,|,0"$\$"!V! B  )m(  "(#D"3276764'&'&&'&4767'3#3##5#535#535#53533-+..++ !!$$!++3 @+******+@ Z0,|,0"$\$"!V! B @*@ @@+@*@+@@ Z#,27="3276764'&'&&'&47673##53#57#53-+..++ !!$$!Z0,|,0"$\$"!V! B  V+*++373#53#7#.54675#35335335335>4&'5#****#1((1"*!!*++*++*!!*+ՀH'/PP/'H;'OXNR******RNXO'/67"&4627"264&';!"&54?'#53!2+737'####M+F< L U@@U###H+ 4**  J*@@+6E632"&4?6&"&4?6&"&4?6&"&47673276&''.762"' *6!  bb b b bc W"L   +["&j%[ l)m bb bc bb W!K  /[q)&&[ .7676235"'&'.'&'&"##!5!527676 ,  &  ? !*' <<4)*_$$/F%@V*)"!"3!2654&!!!"&53%''V*6h.D*h-D!"3!2654&!'77*jU7*+*V7'-%4&+5326=4&+";#"#3;26535%77@ VV V "Le ** * *"Le'+1%4&+5326=4&+";#"#3;26535%53'77@ VV V $Rl ** * *kc$R l&/72#!"&546;>2#"264&5#!#2"&465462Y!(!<  t***k$C2F2*   U***+##&-2#!"&546;>2#"264&5#!#'3533Y!(!<  t***kk@V@*   U***kUU%2#!"&546;>23353'"264&Y!(!2#"264&5#!#k@V@Y!(!<  t***jVV*   U***!#.#"3!2654"&465Y 0 Y*  "k *   իU&)#.#"3!2654"&46353!35Y 0 Y*  b**@k *   U**U#'+/22&#"#"&546;676#"264&5#75#75#";#Y 0 <  Vjj#;"*    ++V**U++@@%(,0#.#";5#3353354&"&4627'#53#53Y 0 Y**+  bjj+ +***+   @++$7!!"&53%!"3!2654&''7'77U+*Z *LMMMMLL*+U MMMLLLL(!"3!2654&!!!!"&57'77'+===<<<<=+*+=<<<<==='+7%4&+5326=4&+";#"#3;26535%53/7''7@ VV V .------- ** * *k=.----...'+48%4&+5326=4&+";#"#3;26535%53'3764/#3@ VV V LL6>?u99 ** * *kխLL?>r&%+332653#54&+#321*&**&*1k1%k%1k !%3#53#3#'#57#;265#'##!@UUU@U@k+*++V**"2>4.5#'735*O< 4.".4>275#'735*O< 327#"'"&2>54&'Y#' 4.2"&46#2"&46"&'3:b9 4.5"&."'>27"&57*O< 4.".4>2'2."'>'"&="&57*O< 2!".5473265327653'"&'26Edxdt 54'327.#"&/>4&"&54>2'4&"26n  +g 2#"'32>4."327.7"264&4&"26  I*O< .O\O..O. *O< 54.77''7>27''7'77:b99b:*O< 9b ;J; 9btb9 54'6"&5"&'72677"&57=ELE=.$ 54.''"&'37''7:b99b:*O< 9b}.p%; ;4.-9btb9 4.462"&"&'72677"&462*O< 2"'&"'264&"4&"267'7?_G&+N263.#"327*..S JK $ :(\N..N[L/<]6+N4.462"&#53'"&462*O< '&'2.>3"1#"'&'&'.7671671767;>.'"676?'&7673327673%&6732&62?636"'.76     #      %(6[ w    [ N0O ##%  ! / !     : T        #&  %!&>   o      -7&!  "-  J   G  %."2>4.462"&."'>2'"&462*O< 4.".4>2'"&5462.3."&5462#"&5#5*O< 4.462"&"&'72677#53*O< 4.".4>2'"&462"&'72677#53*O< 4.".5&7>732746;##+5353"&=332#5#5 u K*O< -UU+UU+++UU+U 55>.277'"&462+ @Cv&,3.-7B, GH @uu3.+4-B@,,$-#";.'#335>.277'"&462+ kk,3.-7B, Vk @3.+4-B@,, !%(#"3!265#535#535#53#535#535#53'5+@@@@@@V@@@@@@v******+uu #'+#"3!265!33#53#53#53#53#53#53++k@@V@@V@@V@@V@@V@@VkU***j***j***DH"326733535#."&4624&+5326=4&+'#";#"#3;26535%5!%% /*+   v * V *$7%+++U   *+* * *k)-%4&+5326=4&+'#";#"#3;26535%5!@ * V * *+* * *kk#'#"3!26=4&#537!5!+V|@@+*++k%!5!5#'#"3!26=4&#537!5!V+V|@@++*++#=O%.5#&2767>2267676"'&"#&'&7>23762''&'&/7676322:*:21!     !15728  &*& "  kk,'.+==+.',1P>>O   V 355#737#546;2+"&=R%5$3 +BhCUU U U !3#'5;#3733!26=26=5#73*+UU*+ * '8%+@k+U EmF &>'.32677'&'&'7>9 !q .!$ D1 > ?o!.uR+%p:7264&""/&76?>?373'&/#/&"# ..@..  --)).@--@.O# J) NN wImm %#73 !!2c1||UUk@'+EI%4&+5326=4&+";#"#3;26535%53'";4623467>54&35@ VV V l$   &1& ** * *k    &&!"3!2654&'7'7'77!5! `` @ @@ `+V `` @` @@ `@ ''7'77!"3!2654&!! @@ ` @@ `+ @@ `` @@ `V+!"3!2654&77J6J`*`@` !%*.29>%3#53##263#3#534&3#%3#3#"373#'3#3!577+++++++++++E++V****+++U**V5'5D+*+e+*++U+++++++ժD.E[  $(,059=A%#35#3#26#3#3'34&35##3#3#3#3"3#37#3'#3+++++++++++p++++U****+++++V**+*+e+*++U+++++*+++'+/;?%4&+5326=4&+";#"#3;26535%53'#37#35326=4&#53@ VV V ֖**V@* ** * *k+*U*%";2654&#3#2"&46"264&k#22F22#$V*+2G22G2+##V ?'337'3#'7'3/3,ddKddddKK>>!t!+]]W22J22%'#57'7'?'3737|V*V|"MI"*++*"IM"@+PP+@%E&Sh@@hS%E+ ,3#";#".4>32#4&+53#733##5#53VV&&VV111*&Vj*@@*@@++%6%+1:11%+V*@+@@+21'&'&'&4>7''(E(&, (En,(E(2H39#"1)4OE(o-+'+C";26=##53354";26=4&#3#7";#326=4&+535U+++++k****+VV+U+++++++++#-";#326=4&+5353#3#535#533535#'U+UU+VV++**++++++++++++kkkk+#335353"353354&#3#73535#'+*++@+*+***j++**++++VV++VkkkkV )"3!26=4&#!!%2"&46352"&46UV@  w+U  U*   ++   '+/%4&+5326=4&+";#"#3;26535%53'5#@ VV V + ** * *kU++ ,/;#"#3;26537 4&+57>;2'VV V :+q ;) OPVz* * + %;C H#&7;#"#3;26537#4&+53''>;2'35#UV V ;+pdQQ ;'  (PU{* * +Pk %;((  ('+%4&+5326=4&+";#"#3;26535%53@ VV V  ** * *k335'2".4>+++*O< "2>4.V+++*O< U*U**O< "2>4.U*U*U@*O< @ UU**UU@*O< "2>4.@UU**UU @*O< U++**O< "2>4.+*++U@*O< UUU*U@*O< "2>4.U*UUU@*O< **UU***O< "2>4.UU****O< UUU@*O< "2>4.+UU@*O< ***** * '*O< "2>4.**** * *O< 26=4&+";#7#53*O< "2>4.UU****O< *++++***UU<**U*O< "2>4.*++++UU**+*O< 2>32."6 .;:. ( (0' ($ 7"632>2>32. .;:. 'F !R"!F(3Z< $( (0' ($ '.'6753677&'5&'75#5#.I#R;:[.4S[@2%/)*M)@2@.&~****7T.:S+Ch:1R4) +M1A/%~@2&.s)*sV++#)?>'.'673677&'5&7'6.'72?>.I#S::\/5T\A1%/)*M)@2@.X(** $W*7T.:S+Cg92T5)"1A/%~@2&.s)*aX%**'X + #"353354&#3#7"353353354&#k+*+****++*++VV++V+ 3535#5353"353353354&#@+@@UU*++*++V*++!"2>4.5##"&463235*O< 4.".4>275##"&463235*O< F2"&4626&'&'63&'7632367&#"77'&'3%6767&$1*88 -  - ,-5-  K n 6+ T##,F /=-''.A >w@  aI.6?H{#"&'#"'#"'#"&5467&54632>32>2632632"264&3"264&7#"'5#&'&'&5#"&'32727673276?'&        M  |        ""             ^     0%.**.%0  J+77+J    -%.=7>='2''575575462X66X2'E))E' ll//ll :lLLl:VV @X.iBBi.X@< KC"JJ"CK  %.=7>='/772X66X2'E))EU7:lLLl:VV @X.iBBi.X@JV7 >=##5#535332W77W2k@*@@*@V:kMMk:j*@@ #%.=7>='7#5##33532W77W2(E()E|@*@@*@:kMMk:VV AY-iBBi-Y@@@+ "%.=7>='73353'332X66X2'E))E*@++@:lLLl:VV @X.iBBi.X@@kkkk -5%.=7>='754&"";26=4&+54622X66X2'E))Ec%.%  v &@:lLLl:VV @X.iBBi.X@    K  K   @!%)%54&"";26=4&+5462%5!%!!53%.$  u &@k   K  K   **+++@"&*%+"&=4635462#54&"32%5!%!!53 u  $.%\ UOK  K 5  5Q**+++@IR[!2#!"&5462767>54&"#"5>54&"2654&'6762"&4672"&462"&46'( ((( <      V U @       @IR[d!2#!"&5462767>54&"#"5>54&"2654&'6762"&4672"&462"&46!"&53&(  ((( <   *U T @ +U %.'6.#676765"K%"!'*!!!#qA4&=#"=&4Aq-T!!T-""f6?`A00A`? !@%&'>7>3&'&'&5277&67676767671'&'&'&'K*!!*'!"%H#qA4&="#=&4Aq$ 6+  !#+(""-T!!T6?`A00A`?!''  )&# ?+ V )"3!26=4&#!!%2"&46352"&46UV@  j  U*   ++++   k"+1!3#"&5#"&5#5463'"264&3"264&'7''@+@@+%6%%6%+=_*  b-kVUk&&&&v55 b,#5'5!#33527Հ +#@Y#+ %"&47'#33527'3#5'53 $  +#g*+ $ #+ @Ҁ +0=J675462#/76015'>7667&73'&'.'&7&'7'5$"R6" @@ #6oL==C  6  A  -TN-    ,NCH,,08;;9'+2%4&+5326=4&+";#"#3;26535%53'3353@ VV V kU@*@ ** * *kUVV %)-'6;2'535#5#!35#'+"&='7'3735# ++++++@X= h"+U$ +ՀּX>  hՀ'0483#%2654&/#65#''#'.67'7'3273535#++,  1 +Oxq { ,+@++, 5\30ּxqL[;?|р,'7'5".4>2K~~K*O< 2'2>4."*K~~K*O< 2".%#7'7'3+ 2".72>4."KK 237'# 24."2>KK K~~K*O< "2>4.*K~~K*O< 35#:b9**9bUU+I,5++5,I+U"2!5&54>>54."!'53:b9**9b.O\O.U+I,5++5,I+' 6 6 '+UU&.#54&+"#"3!26=4&'3#2"&46#5462VVVVVV+,?X?@++++@, , !*22#!"&=46;546;2!5'5#2"&46#5462VVVV+(t8P8@++++++@((!%5#'#37357%2"&46"&462#'7eGFeFFeFGeF eFFeFGeFFeGj + #53'5#35'3=&'&+VV*V+*@@     !%)-157!!35#53#32!74635!353353533535335'35+VZ;@@ k++k++k++VUU+@@++++*9.'5##335>73535/&'37#'#>7?5##| 1"@"1 // 1"@"1 .4"544"1 $$ 1"@!22!@ 44" 44  5##33535##5#53533Kuuu+u@uu@u@kk֕k@kk&*.2#!"&546;>2#"264&5#!#3#3#Y!(!<  t********   U***+` +&-2#!"&546;>2#"264&5#!#535#5Y!(!<  t***kUU*   U***k@U@%%5#53=2"&463#."#"3!2654&kkUU  Y!(!Y*k@U@k   *&-2#!"&546;>2#"264&5#!#5#535Y!(!<  t***kUU*   U***k@U@%*?.5463275'!";3#"764/&37%"VW,/,+"&+UUUC+ %,$.73#"&5463!5'#5#&"764'37'4&";7UV+<I ,,,V&5%%>++*U.*F/7>&/1&53'7'3#77#53 )# ;#3Uk</7>&/1&53'7'3#77#53 #" )# ;#3Uk<327".5%#637".5$2 00#20.O..O\O..O}.O.# .O.V.O.*.O. 2#  0 2$  0{'/''/'')'@+T'!' *7%77''72".4>2>5'"".5;".5J-....--w.O..O\O..O}.O\O.)A.O..O.%.O.m.---.--@'/''/'''B/%'+'!' (83#73#73#2".4>2>5".52>5#.5++V**U++@.O..O\O..O}.O\O..O\O..O\O.+++++'/''/'''@''+''@" "!'7AKN7./&6?6'&'7'>7./&?&'>7376>.'>.7'#3#]#6K(2!#*86&2 %(+`$   i%*! :&,$(: '-5& )  + R    %"3!2654&#32+"&=4675k*  *K   *VV*U`.%'77'2"&4627"&'>2&#"654."jK +J%%6%% O $1:11UjJ *J%6%%6% YGGYYG 11:1`)%'77'2"&4672&'7."37"&'>jK +J%%6%%O  fxff<OUjJ *J%6%%6%`YG 6??66? YGGY#<">3235.+"&=46;235+535#535#532#2Iu2Y8>087Kv++U+UU++UU VD4B(87*++*+  #'7#"353354&#533#57#53#53'3#*+*+**+GGGGի++V++U++U++****'09%2654.#"4&#"3"326532>54&"&4627"&462+%@%,,%@%++%@%,,%@%+#22F22,,,%@%++%@%,,%@%++%@%,U2F22F2U,k1%3#7#!"&546;32#7##7##3#33733735#73E+ *+*  *   %  +   &++g++++++++++k15%!5!5#'#"3!26=4&5#7##7##3#33733735#7#73V+V'  +   %  +   + +@++++++++++++++k%432&#"#"&54632'654&#'5"&54735+&?& @$2 00#20k+J %@% 2#  0 2$  0k&632&'5!3#"&54632'654&#'65"&54735+@$2 0+#21k+J@ 2#  1 2$  0k *75!5!5!5#5353#535#535723#57#5@+++@++@@+ $(@++******@VV  %, 3#;#33**֫** 3#;#3#37'#3**++++j@@+*+"3#3!#3#32+553276764'&'&****UU *@@*   * 2 +@@+ > #/75##5#3#35335#5'3#%3##53#53'##5#53533##5#5UUUU+++++++++++++@*@+UUUU@++++++** ?62'7627[y-<- -Zy[-Z- -v'7&6762'?'Lij  LjujjÊ  KjL &72&'&5467"'7'&2'7'67"76767654. 3O + !5+D@UL +'Jg1 )8`E+5UWb# *+6 ''#+<k+* '/$B1q`+ mj?,"'&!7157#5##'5#'5#35#35#3kj*V++++++jj땕k090*++  $(53#3!5'35335#5##5%3535+j@"++u@j@U+++0"+@jU+++ K++V**7@5>=4&+"'6.7"&#"26514'7>."&462m  $  +(;6$.,""0!! 3  3m "!kD+(1;6%"0!!0" $(,0#3!5!!"3!2654&#535#535#53#535#535#53U*+V******++++++@*+*++*+*++*#3!5!!"3!2654&5U*+V@*`'+C!"3!2654&#"'&'&47676;#";7#5#532764'&+532*    Uk    * : * 3 @**j* 3 * : +CG!"3!2654&!!#"'&'&47676;#";#532764'&+5327#53**    @    ** : * 3 ** 3 * : @*,I!"3!2654&"&4?2?64'&462754/764&"'&4?62*~/<*  /  -  /  /;**/*;   /   ;-   /   ;/*;0N!"3!2654&!!"&4?2?64'&462754/764&"'&4?62**l/<*  /  \  /  /;***l;/*;   /      /   ;/* (5%3'7#"&/"&54?7324675'7"2>4.@ =M)D)/Mryr#4.%75@ =M@)D)/Mryr#/&U11:11@[$.bD)D)7+ ,C(,,A%,HQm1:11:1w  /AJYbfj%2#"&'#53>"264&'264&"721'&'&5463##"&546753"264&2#5.546"264&53'#53%%!!   #2*2!%*8  %*%  b***%6%*+   t2#(? !)#2*%!   +%!!%+   ***8A2"&46'&'&'."54?&'17#'27676'"&462%%6%%+ %2% +)7 % +'+(&c%5&&5%t   t /     8% {/37:>BGM^fi7".4>2#!"&=#"&=46;546;2'35357'353575'3252>4."3'+5      Y t  j55556CCCC+%^  *܌ > i     <  =  66P66P!!66P66P$1()   YW 3? %!7'535#7#37!!a99 UUVVVVU@UVU@+@@+@Uj %!?535#'#37!!a99VVUUUUVUVU@+@@+@Uj !%)'7/'7/%'7/#3#53#534/==.v5/>=/4/>>/5V) <(99(<` <(99(<` <(99(<ꀀ+ 7'7/#5373#5335#53U5/>=/u++**V+++ <(99(<֫ '7/#335#53%35#534/==.uՀ*+++++) <(99(<U+֫k %'7/#5335#5373#534/>>/v**++U+** <(99(x%6753'"'&'&/#&'&'&'&754767676'6/&'#"4/&514676323>'&'."73       ,  "/NF2(      ,+/   %45!-%/$     +    $7'! 1%)2.#"#5>#5#5+"&=46;235 Iu2Y8>087K *+**U*VD4B(87ժ++27"264&3"264&7454'&'&'&/"&'#"&46;5#"&46;5#-,5 '<555@, ,, ,    @2;7"264&!"264&7454'&'&'&/"&'#"&46;5#"&46;5#"264&`, ,  '<555, @, ,, ,    @, ,&51&'&'77#3'7'77>&>7&"!;2*|A[ F;(@F:( ! 554 e$ * 9D?+ :E!(+"'&'&'&?67676?''37U  $$  ++U++!%     %!k***jj)2;?'77"#"'&'&'&?6767673'264&"4&"265'+U++U+UU$    +j****j   %!!%   +22+'&"#"&=463%!"1#3;67623265135#4&0H##22#5% $ &B#22@@+2$@#2% '2#@$2  "&:>BJN35335335335335.#35!3535"'377'764/&35!/;5335S +*++*++*+ +*++1!`3_!+V *+ +++++++ U++++V**!_3_! @++V +++ #)/?&7'67'6%7&%7&'7&'67'67!*%,!e+"+"X"+*((*!e+""+<"++&!('+"d+""+*( (E>="&4?2?64'&462754/764&""'&4?622X66X2+6'  +  )  +  +7&V:lLLl:+'6    +   6)    *   7+'6 4R%.=7>='7"&4?2?64'&462754/764&""'&4?622X66X2'E))EX+6'  +  T  +  +7&:lLLl:VV @X.iBBi.X@6+'6    +       +   7+'.2%+53456'&'&'&/"&'#"&46;5#"&46;5#3#!267#53* @ '<555@V`.CU%+   @+*=-@+%#?#373#u,i-@V+UU@*@%#?#3'#3 -i-@U+UU@*@.7%"264&".4>22"&467#";2654&!!"&53+%%5&&11:11#|+&5%%5&1:11:1U##+U++"&"#"!54&#"'&76767654&!5%9V9$%    ++    !++@ !*3%!53733'35#!"&463!24&"2674&"2674&"26+k %%%*%       kkV++%%5&&    J,:"237273'767>7232654'&'&">?."64b*  @+ 1 @   #;"`j ?I   **@ ";# $ !(A$-6%4&'5>54&"2654&'5>'2"&46"&462@%6%%6%@   !3!&&!3!(!3!&&!3!     S\e%#."#"'&=476;3264&#"#";26732+.#"3267327676=4'&'&72"&46"&462D!(!D  !%%!  D!(!D  !%%!       &5%    &5%       !$''73'##'##737#/#737'3'3'&&`8`'&-,JJ,>,,JrL66V@@6oo&&U``&6%.+654&"#"3!2654'2"&46#353#"&=46;6 2F2 6&V$RU*+UU#22###V@jV!5!'!!#!"&=463!2'V+UV+U*gE53267'"'.'4?5#67654."36236W& *O< !  k#3#3'4&#!"3!265'!57++++UU+U+++kkjjY~%+"&=&#"&46325&#"&46325&#"&4632546;2"/&'&#"##"'53276767635#352'"#"'3276?676321264'&'&"#"'3276?676321264'&'&   (     (    ,    9$O  )  )  /.  * ++ +     V +    k)9I2"&46"264&'32#54&+"353!4627>763"#27>763"##22G22$#g#2++22G22G2+##2$+U*$2+++F32654&/76%4'&'#54&+"#5>54'&'354623>\\n  ++   $  $ >< %  [**[  UU #'+/3!2#!"&546353353353533533535335335k*<++*++++*++++*++*U++++++V******U+++++++33535+"353354&#53%#"353353354&0 0@ * **K`    `` k k @ k`KK`k 3'753'8*%tt%t#77''775#U@ u u @UQ7t7QQ7t7Q/2+"&=463546254&"775#7#77'  u  $.% \@UV@ u \!U K  K     u76UUV7t 8V59&2+"&=463546254&"''753  u  $.%ɑ+U K  K     t%tT%T ?753' *Ȍ! t6Pt%tP8+2+"&=463546254&"7753'  u  $.% \+\!U K  K      u65t%t59"(-%3.#"54>323"&'72677/7#'>#+1-BVU2 %&! 7"N8H*I, :b9,N0V<2(1=0>NB&|"'&-.%7##"&'73267%3&/2'.#"54>UVB-2 %#Jku$9 "+1VV0N,<2(1H8BJh&&=xWE4D*I, :b9,2+"&=463546254&"775377'  u  $.% \+ u!\!U K  K     u76Q7t7Q59 %7''7537u * 7Qt%tQ7 !)777''7532+"&=463546254&" u +  u  $.%V7t 8VT%T+ K  K     .%7#.#">32%7'3'7'267'#"./UVB-2 %#Jku$9 "+1VV0N,<2(1H8BJh&=xWE4D*I, :b9"(-%3#"./32>73/">27.7'7'#>#+1-BVU2 %&! 7"N8H*I, :b9,N0V<2(1=0>NB&|"&- #''75#U@@Ut%tt%t)2+"&=463546254&"'#''75#  u  $.%V@ɑ@U K  K     @Ut%tT%T $(%5>4.''4675'7.7#75'+VV0N,,N08HH8H80N,N>0=***UVB-2-+#,#>#+-"7 !*+@ $(75.4>774&'57'>'3'57VV0N,,N08HH8H80N,N>0=***UVB-2-+#,#>#+-"7 !*+@"#53#"!5'54&'54&265+++.<++<.=$++@ O3**3O k$*2".4>5'54&'54&"#26*O< "2>4.k!  !K *O< 4."&462D''DVW'Z'W11:11%%6%%k**++1:11:1%6%%6% %1="2>4.".4>2>4&'!.467'35335##54Y33YhY33Y4)D((DRD((D$''$####$''$u+*++*3YhY33YhY3(DRD((DRD( #^h^#RZRRZR#^h^# VVVV %1=A"2>4.".4>2>4&'!.467'35326=4&#3#4Y33YhY33Y4)D((DRD((D$''$####$''$*++++3YhY33YhY3(DRD((DRD( #^h^#RZRRZR#^h^# V+++8?%'767#53&''7&'#52632"&547'3#7.54>2%'35#7))+@#@((8#.N]N.FFV)G7*))@$@*7G).O..OFFV/Y"&67167654'&/&'&547>#'016764/&'&5476?>.13'036764'&'&476?>'.12"35#&54>2#36764'&'&@        I     N     b,)@%1 / 7Y`Y7 / 1%@)+         !!:#    ="    !:#   ="    ER@7+0   0+7@RE(Ph7#"'&6767654'&/&476767476?>.3716764/&'&7!";5#5!#326=4&47671>.32?367654'&/&'&     +     Vb        :!    "=   #K  ="    !:#  ++      !   ^ #38=BHMS7&4'"326764'.&'&4767"32764'&%'67'7&%357'%45#3    ,, ,,  47N7474[Ki47KK , JF"V">/J , 7>"V""$%%$"%$"~ *"$%p *Cg7326=3;26='.+"73##4'&/&'&476?67653#4'&/&'&476?67653   +"+ .(+)  .* .) +)  . `\ \`@   =         =       (%7'7"&=46;5"&532#"'#7"264&F=L-}kU#;"";#& O#22G22\<L.z@#;E;"2G22G2!*3#7#533!5#"&=7326?'#'"264&3"264&*UU*+M S$SY9##UVVU+*4 +% ####!*33353%33!5#"&=7326?'#'"264&3"264&U*V*+M S$SY9##UVV**4 +% #### 05#"264&3"264&'57326?'#'#33!5#"&U## S$SYG+M@++####D% *4 + 8''7'772"&4632"&46';!"&54?'#5337+---------##K+G[S$S  ,,,----,####D+ 4* "3H_&'4676'6'&'676#'.74?6'&'.>/&'4764'.6/&'&676'6'&'&676'f1/  #  " k '      `     Z  + XeaV  CI:;KD/  JS;5!(=;. +c+ 3u4 ,    $T#+<M7.#"327#"&4632.#"327#"&4632'2".4>7"2>4.#$(   "#(h$C33CHC33C$*O< 7.627.!XX!)nnFBBU++!!)e %72"&46762"/&42[++>,,<<EZ+>,,>+m=<K )>S7+'32%#!"&=463!2.'.+32>7#";5'575#5374#/4+267>  0V X   /0}  ! a Cl f ,?##21`e ~  "0%3'#'5#5#'5#5#5#'!'3#''33'5#'35U*++***++++++9@)S++>*>+*+++U**++U++U**oB@U)*>U+>*1:C%654'#"&'327##"&'&'#53>323#'53'2"&4632"&46 0S4"+9!5'G" 6Q.&H) Lqg ~ , 9+#"-a,F))9aF #U)7#5#5+"&=46;235'27#7&#"'>*+**U*`*K780>8Y2uժ++78(B4DV   $(7#37'7#3'35'"264&7'7'35#/..o**s.%%6%%!...E***o...'**+%6%%6%....e 7'33377575'5@+*+kk*//@ P(e,j,e %5!5!5'3'7#'##7@ P(e,j,e@@+*+kk*//I %!5!'7'%3##5UUի*V+++-7#7."#5>2+"/76;546232(j,QjQ,j(\r\ j Iam(j,,j(""p  i  0 V*462#"/76;'5462>54&"  i  h D#2G2 _/ ]  Y$II '#22#'%)3!"3!2654&#353+"&=46;2#53#3##53*5    @ ` @*@ $  F  d  +L"+4%#'7'7#'32653265354."&4623"&4625`;^#$-;+%6%%6%+1  $#@#%6 G.+&&&&+1i4&"#"'&'&'&#"3546322>=462"&54&"#"&=35#326=4622654'&'&'&47>76+>,%  #2* )1  $/B/&++1<,2F2 K++ % 2#1  ).-&!//! &++++1+ #22#   0 &3%#".4>3253#"'&'3;276765'"2>4.k6!8!!8!6#*&"f//7.. $=I=$:7 &/4=33=4k#,5>G7"264&'"264&"264&7264&""264&7"264&'"264&'"264&#g$$$C#D$g#g###U##$$$$$$U##U##V$$(,%54&+3533'>'#53#5#35335#3#326=4&#53 K   +++ + JJ  ** ++-  +55 @ `@1%533'>=4&+73#'54&+/##5#3533537u   K++`  ( Bu+ + H++-  i` )  u++55i I#,3#5.'#5'#>2/&7"264&u .0+/(.C  /{#A//T #bU  $$ 3!53%3#5#@*@V++Uի3!53%32+3#546;5#@*@U*U*UU+*+U+#!5#%54&+3#3#326=4@@UU**UU  *++*+ 3!53'32#5##54635@*@*+*+*U@@*@@3!53%32#2+73535@*@U U+***U  ++V**3!53'3#353+"&=46@*@UU*+*U*UU 3!53%33#@*@+UU+2;D73"/#5''7'&?632#5'#'#57'&'6?>%2"&4672"&46 -=01/+ZMG  B+&-',+- 1 m#~$ --3-o/[LKFMI^o^++@  (" /<##X$$k"#!26=4.#2#5463#5#1+1&%+Uk1+1+%%kU+k'%3#5#7#"#!26=4.#5462#54'32++UU1+1%5&ի%U+1+1%%$%k"#!26=4.#2#54653#1+1&%V+k1+1+%%+Un'%53#7#"#!26=4.#5462#54'32+U++1+1%5&ի%+U1*1%%$%k%)#"!26=4.#5462#54'32335+53k11&5%֫&V*UUk11%%$%+*+U+k 3#%#!54>;24&"37#353kUUj11%5&U+*++11%%Uk%)#"!26=4.#5462#54'323535##53k11&5%֫&++VUUUk11%%$%UU+V+(%5#72+"/&=46;24653+"&@  @@@;UU{@@@ "%3#535#"&5'7'%3'%2+'3!'+**{+2+@+**+E{+U+* 8"264&35".5335"&5335"3573735'735#'. i*H+#;".)s&-S&=2&5hM+  +H*";#.)+A$oOCja=&&G  &*.26:>BFJNRV"6=4&'#";;26=32654&3##=3#5'3#53#53#537#535#535#535#53  V 3@@@@@U@@@j@@@@@@@@@U  @+ +&*****V**@*@**k+++@***++q"7;26=4/#"&54?&'&;&'/1.O//g8HD< (xJ:8  /3-(/7( H+1#,26:AEKPT[`ejn%2"&46"35>7654'&'.#5#53#5353'4=3#73#723+56353'#67673'&3'&#53753-;B;@;B.*@@@j*@@V!@@&@ 9* +*Dk--@&<"'"9 ii 9"'"=&E /z@@@@@Z6@@@:7 @@/ $ LF$  '''77726&'.#5'7&'.Z? ,#/ *?!WWs  )  $Y++[IL$ 0q)FUX 2t+ + Q,<%+"&=46;235+535#535#532#22.#"#5>++U+UU++UU  Iu2Y8>087K*++*+ KVD4B(87V2!4>7&546!5!'"!.+E((E+V1NNU 3J++J3 *5++56G7'3>327>54&'"&'32>54'&#?2."35.4675F0/ 4 >L?5#0(1:1,  (!!0@E;b9?5#-N0E;b9L> 4 1, @l??5#4X4 +(0-N0jF0/81, 0"%676'6767677#"'.67>32ZA#MirA@Mi'.)t8D'.)t8DfAjM#Aj,'@#e.*'e.*'#2"&46.=7'654."327%%6%%4IRn)>1:11 %6%%6%=YVVLB> 11:1#'+!2+3#5##535#"&=463535#5#7#3UVk@k*k@kVV**V*VVVVVVV  #'+/K35#335335335#3#3#5##5##5#535#335#35'!2+3#5##535#"&546@@@k@*@+@@@@@k@*@+@@@@@@k*k@@@@@@@@@k@*@@@@@@@j@@@@@@+kk+@ .26%5#264&"'5#264&"2#!57"&=4765353UjJ ik lS&2, ,2&(***kkkk@3, ,3ꀀV+++7!!5#72++"&=3;26=4/5UVV+++3""4k&U'++@@k@@"44"3[[3377!!&#!;26=326=4+"&=3;26=4/5#53UVt 4""3+U&V&++++s "44"@@@j\\@@*7%2"&46"264&%676765&>'"'.>&#22F22#$ >LH1 >M# ZZ26-!26-2G22G2+##5 $M= 1HM=[=-62!-72 #5#5#5!U@*++U++V**UV %#53#53#53''++U++V**Uk@֕ 353'53'537!7@֕++U++V**U3773'7'#4&+37#53326=#"#3'&'&'56767#53$ o@UK9U+++/U,;`; $5++ 7 k*k 6Hh-6%654/654&'7&?35'&''462"&>    _ ,    5>  ! ^ 8    < 06>FQ[c4767'767672654&'57'&'&'&'67&'5'&"'62#5&'&'7%#4767&"'62 && /(   $   (YZ7PW/% /S+  +  /@      ,  ,  Y7((k =   .((&*.2##5#";2654&2"&46#54762'#53#53#53k@V@|$g 6 @**@UUU@@Uk## V@&*.26:##5#";2654&2"&46#54762'#53#53#5375353@@U@}#g 5 @++@VUU+++@@Uk## V@V++ *.26:>#3#35#";2654&2"&46#54762#53#53#535353@@@@@}#g 5 VUU++++++U+UU$$ U@*VV++ *.26#3#35#";2654&2"&46#54762#53#53#53k@@@@|$g 6 UUU**+U+UU$$ U@*V!*.26!!>7.!!54'&'&"7"264&3353535VV(k,UU**   ,, ++8/&'&'&#32+"&=4?6;5"&4635327676?6$! j  )*!$DD  4'  ' $0$ 4   73'7'7#!!54&#!"3!26=5hh5+5hi5H8+7+b 73'7'7#!"35!!5#3!2654&5hh5++5hi5WVVV#,09BKO%764/&"'&"2?2?64/2"&46'7"&462"&46272"&46'7zU\TU]UU]UT\  [NNM  "  "  AMMNT\UU\TU]UU]   *MNMy   +   U   MNM%3#!53'"533#'3#+6k*@L@-@@U*k++U-@$d !%%33##5#53!53'"533#'3#k*@@*@@vk*@L@-@@@*@@*Vk++U-@$d !%%77''7!53'"533#'3#4--..--.mk*@L@-@@m..--..-kk++U-@$dk%#5#35#75757+V+VVVFFq@GS>+:* S>+:+ T@#,+"'&'#37676;2654'3"&4622#9 AhA4)$33H33@/ V## +k'%#5#"&=462;5462326=462#+V%  $  %kk@%@ @  * *%.=%2"&46752#4.52#4&3#!"&546;7322>4."((8((q#;".)jD'k11:1'(9((9(";#.9)@+@1:11' (7@!3735##"3!26='34.#234&#232>4.""&462W'm'DV";#.9)'11:1%6%%6%+++#;"-)'1:11&&5%%@$:%"&462'"767654&'.#"3276#4춭35!3'&  ,,k#%%  Zf,$$,%6%,EVb 77'77'77'bbbbbbbbbbbb@ '7'7'7bbbbbb"bbbbbb@ %7'7'7'7'7'77bbbbbb^bbbbbb %''7''7''7bbbbbbbbbbbbbk+C"3!2654&#!!7";26=##53354";26=##53354&#k*@5 @ ++ V @ ++ k V  @  V  @  k*3%#53>3254&#!";&!!"767654&"&462 .("V6,, @q+U,$$,f:.'&6?..?>&/&67235"'&73& %/ #3-        -r  -   T  H 0=%"&46273#"&'67&'#5367537676534."2>U2F22F2J$$7[r[7$$0%* M1:11:1#22F225 !!0$$  'd11:11:E%232#54&+#"&46"264&2+"&'.+"&=4635!3>7!D#2*D!%%  wC   Cc 2#%6%+   +jjjj  k!+j@j@V+&%"&54675##54675#53546232,`++`5 $$ +  .7%"&54675#!54675#5354623546232'5#46,`**V`V5 $$ +    $$&E!";2767>;26=4&#.'#5!7#"&'&'7767>'73265UD   Cc d%@%2 <)' ((8jj  j@%@% :8( !)3/3#!"&546"264&2'647#"&vvr(88P88(% W. W%u V8P88P8 %W @W & $,#!"&54635#5#72"&46"654&327'+ku(88P88(W %[&W Vk8P88P8 W&@% W"'";57#537#5!75'#"764/&37U-*)vv,0,(-+*+), uU, &-&+73##3375'#";'375#%2'76#57*Uk+U*Wj--+VkB+,U@ -T-03%2"&467"267."&462/7>325'#";&#k  +FFVEE+ ,[8 `Fvv@   @/&&00&&/ ,, &4= vvu1%2"&467"267."&462'#335'#";&k  +FFVEE+ ,Fk`@   @/&&00&&/ ,, VkWvk -%3#3#7#"&'#"&546;32'"2>4.@++++)D)%A+11:11k+V)D)#+B6L1:11:1k,9%3#3#725!3&54>#"&'#"&546;32'"2>4.@++++"(E)D)%A+11:11k+#(E()D)#+B6L1:11:1k"'73#"&546;32&#"5!'&"76437'U+   ,,,@+.1t, +,k75!4&+'#"3!26?!7!-k+@1Z"+k 3#7!53#7!53#7!5@UUUUUUkV@**jV@**jV@** CGLPTY]bfjo35#5#!5##3#35#3332"'.32654&'5>'&'5353#35#%55777755577775@@jk       kjV@++**+N     O**eO"" ,O""  73#7#!5#74&+";265**@@@**U 3!53#53#5#53@*@VVU+*U@+k* !%##5##5#7'##5##5#%##5##'5#k+@U@+UU+*+Uk@*$kjjU@@@@@kU@@=,Sk&547107676'&767>'&'&'6&&5&667676&476'&176'&'&'&7676'&'&'&62676'&'&'&46p5-=L#=+#+% S       @       *   F   v1& ,(W;!  $& ( @     . )   V'09%#5#".4>23#3535#'.#"326?3"&462'"264&$JTD((DTJ@U*@ 7"11"7 m%%7$$  @@&/(DRD(/&@* '1:1' +%6%%6%U   "'1#267##2>'##2>34>35"35"34>35"@%+4X4@l?V*1)D(+4X4@l?@%U*1)D(@%4X4+@k@1*(D4X4+?l@@%1*(D%+17#6'#27#267346734773#6635"'635"*" =!3(>"*N 5+*=+"~ ?+.A "=*+5 N*">(3!=e.+7* >+'8%2"&46"654&327'2&#"'76"'#7&47u(88P88(W %[&W V = QS| L! # yO 8P88P8 W&@% WJ < # P S| M=# O # '0%5#&'7'&'5#'#3735677'67'"#4>3B..%/*/%..BB..%/*/%..#2+";#*/%..BB..%/*/%..BB..%/j2##;";%22+"&=463546"354&'!!#3#535#"&5463!2&# k  @+++  U U   ++**+ %%!2+3#535#"&54633'7'37**@4554@k*+**+&>''>&@k7!!5%##'##'##'#"3!265{0U+@+++@+**@*V5VVVVVV #33535#5'&#"26=35k@@*@@#22G2U@+@@+@ 2G22#Uk'57#3 Uꀀ@*V'09BKT%&/.3767676?6764'&'"&462"&4627"&462"&4627"&462"&462Pu&51 !/*6,    !  !  "  a  6  (H B=(1   %   @   @   @   @      k("3>2354&#"264&3!26=#"&'U.:.$V.:.kk##k$$@kk## 6>'7''7627#54&"";26=4&+5462   XZQU1OQV- k @+    WZRQ1QU  U U   $'7''7627##5  WZQV1OQ+    WZRQ1QU**"&377/762'7'71`Q`.RT1  WZ6Q6U^Q`RQ1    WZ6Q6 ,'7''7627#3##5#535  WZQV1OQU@@*@@+    WZRQ1Q@*@@*@ ,'7''7627#7''7'  WZQV1OQ--..--..+    WZRQ1Q..--..--*2#5"764/&37'54&"";26=4&+5462W&O&1VQ- k @B'Q)1DQh  U U   64/&"37/#51'QQOX+1'QQQ**#5"764/&37'#5- 'O'1UQ맪B'Q)1DQh**?'7'7'&"764'#57'7'3VQV781'Q%+^Q`SVQV:71'Q)`Q`S 64/&"37/3##5#5351'QQO@@*@@+1'QQQW@*@@*@ #5"764/&37'3##5#535- 'O'1UQ@@*@@B'Q)1DQ@*@@*@ 64/&"37/7''7'1'QQO--------+1'QQQO---- ---/  "764/&37#57'7''7'z 'O'1UQ--------'Q)1DQ--------' 7326=4&#"'&&'7%"7&'76'&54&#i1~C ($ /$ #" /  h-0 K  / 9m./ $( "(.%"'#".'7>'&54&+"326=4&%3&&'73*#/.I/ K 10STc '&+"u /I,/ '& cTS01 K  ++U2676761&'&/&'&762"/&4476327.547>765#"'.'&#x=C ',"S6RR6SY  "     C;)& "#SS5RR5x        @ %'7/'3#5!!!!k5/>>/) ;):8);*+*+k *%'5#75757"#37'&'&# U@j@j@j@V@ U*@@@F>++*G>+++F ++k ?'7753575575V++VV֫$:I**:* S@@U@O S@k&*5#75757"37'&'&##55@j@j@j@V@ 5@$@G>+++F=**+F ++@k%)5#75757'3'&'&'&"#55@j@j@j : @$@G>+++F=**+F   @k (%'5#75757'3'&'&'&#" U@j@j@j 5 U*@@@F>++*G>+++F  2".4>7*O< "2>4.՘U*O<   l#   ?!5!%7'77'V[===<<<<=*D<====<<<4!5!%''7'7774'.54632"/"#"546326V.9+u$ [ )"'y7.  H*:$9K +#+1 V$!5!%'7''7#";26=4&77V68&3E*:F/G^4!5!%'7''7'.'&+3#527>74=#"'7V@  5 5  *:@^   $\b%!5%'.7>77Vl&3"&g+@u;@"&3# @<8a%!5%'.7>?Vg2)3 @8;@3)@;#%5353'54&">&'&'2#546k***$7%$48/ M + V++V$$58.$48 @@ !%'7'54&">&'&'2#546sCab%5&"58/ M + DbbU%%48/"58 @@ !%7''54&">&'&'2#546sDbb[%5&"58/ M + Dbb+%%48/"58 @@ %#3#54&">&'&'2#546ժ&5%#48/ L + *%%48/"58 @@  '%5##3353554&">&'&'2#546*@@*@&5%#48/ L + @@*@@**%%48/"58 @@  *6735#5##7'#%#3#773737  A, , GO, 6,)pnD-,fD(,,,,, $PGҸ,,7-onD'wBf 7353'7##5#!!U/**뀀Y/+s ''#53'7'xPUjVTLrTDkTL (135#"3!'74&"267#3354&#326=#!#;5#U*U@+V@***k**kU9 ***p*2>54'&'&/"&5476767 ";F;" 1H1p''";##;"''1!#22#! $."'>2.47&#"?6?.">327'?'6a)&0vv0&)a!(MQ!OTO!'<8(/>>/6@!3%((%3!,  f$3<(:7(<6?HQZ".4>32+""32654'5&546;2654.2"&4672"&4632"&462"&46*O< 322676?&#/""&/4;27>;27>;2+"&5'#"&'.=4;32654&/.54>;"'&#"#"&'&632767&#&7676&?6   : |"  #         "0--=l*/l8UM/    "  -  o]]__t\[     E *&!   -'54&+""3!26=4&'3#'##5#5!UV$22VV+++++U2##2U+**j++$(%3!277%#5#53746&+"'#53N +~2$VVV#xNu++#204%3!27747#!533532546&+"'3#N +mS++2$V/VV#xN kV++S|*#2/@'154&+""3!26=4&'3#'!533535!546;2UV$22VV+++++U2##2U+**V++ :>2"&463#53#/+'&/7;264&#/.#"#!27'# : j+*.F K3/ #(  R@+("(Vrǀ =@[:1  I *"@8 2'463732'!46@U+U@@VVC 32'!46#72'463+jkCj/@@V #'+/37#53#53#572#!"&546;533535!7#53#53#5+*+U++U+*+++++++*++++j****** #'+/3773#%#!"&546;5335332!5!5!753#533#353#53+++++**+*+++***++++<*Հ****++++++.#'##"3!2654&"'73264&#"3'3>@++@V$%%!'@@,&69*;U++ %5&@@+ %6%06#'##"3!2654&!3733"'73264&#"3'3>D''DVW'Z(V$%%!'@@,&69*;U++** %5&@@+ %6%0V#'+?37.+";26=!;26=#53#53#53 ,    ****jVVVVk ++ U*****/%';26=37%"&462'77#>5'.+VI!  e-2 {> =, ,UJa ek11``? > ",26!"35!#32654&34&'234.'234.7557+C@%1+*74Y3+?lJKKuuv@@+*@%U*17*V+4X4@l?*))*(@@@X7'774.#53/77*O< 4.".4>2'3#7'7'*O< 323#4&"#5367'36'32673&&#6'&+'6'&'  d8 %@*,%5&.0$*||* ; **   f";#+%%+H8S!$  *** j3#7#ViTjԫ?#53!2#!"&546!+@+**UVV+*+*"2>4.#7#53*O< "2>4.375#3*O< 3265#53355#k ! %]#+VjjV /+U@``@$(%355#7&">#35'!";&'35#VjjV4%"!<U pU@``@% "9t*<` UU%'77#33625'#";&jK +Jk   UjJ *J`VkWl !#!"&54635#5#7#"&46325+k*$ Vk+k#q!2#!"&5465#33k*@+@*ՀV #!"&54635#5#7'#537+k5uu5Vk+$$k%%%<@!"3!2654&+#532#'#5353#353+"&=&6;2!3#*  5 k   j5     * + `5555 @ $  F  9M!5!!5!#5'&'&"#1.'&/&676=&676716'5&'&/7VV*@0@        *+@U"     /   C    !5!!5!#5'&'&"#VV*@0@*+@U"7'7'1+532?6?6?6'|Z  G^Z + $ ?#&4?"'62'U; e[e   - F[U;  e[e - -  F[V ?'373333Hv//q@@*#2"&4672"&462"&4672"&46k#22G22#22F22##22F22$22G222F22F22G22G22G22G22F22F2#,5>2"&4672"&462"&4672"&46'"264&"264&!"264&k#22G22#22F22##22F22$22G22r$##2F22F22G22G22G22G22F22F2k##$$$$#,5>2"&4672"&462"&4672"&46"264&"264&"264&k#22G22#22F22##22F22$22G22##$$2F22F22G22G22G22G22F22F2*$$##+###,5>G2"&46"264&72"&46"264&2"&46"264&72"&46"264&k#22G22$##22F22#$#22F22#$$22G22##2F22F2*$$2G22G2+##2G22G2+##2F22F2*$$#,5>2"&4672"&462"&4672"&46'"264&"264&"264&k#22G22#22F22##22F22$22G22r$#$2F22F22G22G22G22G22F22F2k##$$###,5>2"&4672"&462"&4672"&46"264&!"264&"264&k#22G22#22F22##22F22$22G22##$2F22F22G22G22G22G22F22F2*$$$$## 7537'335353#@@u@@@@u@U**u@@u@@@@`@uu + 7537'3353#35@@u@@@@u++@u@@u@@@@+* @uu 7537'3353#35@@u@@@@uU++@u@@u@@@@+* @uu#3546;232++"&=#"&=46UVVVVVVVVVVVV#'3546;232++"&=#"&=4635UVVVVVVVVVVVVVVV#'3546;232++"&=#"&=4635UVVVVVVVVVVVVV*VV#/3546;232++"&=#"&=4633535#5#UVVVVVVVVVVVVVV*VV#'3546;232++"&=#"&=4635UVVVVVVVVVVVVV*VV#'3546;232++"&=#"&=46735UVVVVVVVVVVVVVVVV 753#37'33535@@U**u@@@@u@u@@u*+@@@@@`@uu(.2".4>">5#3'>327.32*O< 52"&46 !0(U   &&l*   $3*  %%%-I  "&4&A!Q'   .75462354623546235462376?6#".@ @V4/N.k     K 0;.N."&/&6354623546235462354624V@ .N@;0 K    Ņ  /N. 7'%###&/&6?7S-*@@@F "" J G "K"Ut@@@@@$< i# 1<i 73'!+"3!2654&+'J9*)8p])?UVdK2D+8+VV#%/3277'".54756&/3:;?!=.:.%f&yO2;;!SR&:#%.,!fb/j'yO   $).;?;7533#3'3#%3#7#533#/#'537'35#'!2#53 @$%%:e*******j** (***e @z%%****@*@*/ (*Q*%#5/77'7ժ@"U** %33##5#53/77'7k*@@*@@"@*@@* %77''7/77'74--..--.w"m..--..-+ #">54.;7';26=#=(DA" zV V =#)D(*A %A1 U $*4">32>54.;7%#5.;26=#=.1(DA" zVv; V 1.=#)D(*A %A1 Uu3 "  '#353##3!!5!";#35#532654&U*+*+U+**@U**++**+**+ 37/7'>32#[R&k:B O7!.C& R6%soO#?-#%*3H%2'#"&46"264&7&5#&546754633#3!3#"&5463!2&'`(8BB(88(, @ ( U**V8(BB8P8+,,Y*0 (  0++V ),0'!"&5'701!2'!'!'#%'5#'546;3'7#'3++QZ*+*+@ @kdd*+/G+:++/q*+&+0 @dF+ A#535#546;7532+"&=35#5335#535#5353#3#3#3!!"&=#***46***++++++++++++U+@* *@@+@*@@*@+@++V !"!54.2!>#5473#53#53:b99b:(EE-V IVVVI U9b::b9*""U!!%#34&#!"3!26'!!V+Հ**+%#3'#537!"3!2654&!!*VVUՀ++*+#37!"3!2654&!!++**#3'#537!"3!2654&!!*VVU+*+** 33##'#53#5326=3*5K*K5*@ *%jVVj* % "33##'#53#5326=33735#5#*5K*K5*@ *%[ KK +jVV* %+UU+kk $35!337354&#2"&463#<P!U+D%  :k'&'737>5&'33767367'4&"26<;  U+; *;>  U+; $$; *<;  U+ = *;>  U$-&'&#"327676767676'&'6767676763 M"";#+2#++@@*'7'72?''O< Z54Z # <[[< # Z45Z <[[[m H576762&'&'&7&'&'12357676767767676?'"+('8^8'(  "  *   ) ! *   *  '   bZ " (d5'&#"&#";!5'&'&'567676"#5'&'&'&##"'&'&/763267632+47671*A_-B ( $336'$>*"  "  ** @*<  % (i&$"$'&/"H **  D+#;/w    &? + /k5%2"&4626=476?'376767654'&'&"3-U@#;"  ,, J  J  %2$$2/8"3273532>4.+.2632"'#"&4767.546(88(*+!!+*,,?  8( $(8[p!+.+!+,>,*   V #'+/35#35#35#35#'35#33535#35#35#35#35#535@UUUUkUUjVVjUUjVUUUUkUUjVVkUUUUVVVVVUUUVUUUUUUUUUV 735#!5!'!5@+V !!!53353@@U+U**VVVVV%'3 373WWaYYaWk*1>32632#!"&46"3!264&+54&"5!5!5 ?(+!%%#22# J,>, @j+&1!+ %6%2G2+#  6++ @*++"2>4.!!!!!!*O< 4.3##73#735:b9 323.#"&463253'75sbbbX4X44X4)D((D)2O, 7O@ ,VUe S!RR R 4XhY3+)DQE(;0,D&u , vjp2<,8<@D%535%73275#".5477767723."65#/77@H("!'A#)D("fSYT*2O, 7OX'  Mb<&+( (da"+)D)6*g15T )( J;0,D& 1 &c - S!5 7'7!'7'7!uuA2AuuAALttAAttAA@ 7'7355UUUU !35#35#35#+b+ bb +b 537#7|<<<<<<<< 3#53#53#53+ b+bb +b 5#'3'<<<<<<<<u %'7'7'7tttAAttAAJuuA2AuuAA #7#3'3UUUU#?HQ2"&547&#"'4>326"264&232>5'7#"'#"&46"264&72"&46&&5%$'.O.* 7467>2"&'.%"264&#"264&267%&474&'>#]r]""]r]# u 6 4@4     -1==1-:-1==1-Xf$$+ ( (,E%2"&46#2"&463"&'467>2"&'.7"#";2673264&+.5 _  4@4#]r]""]r]#2OOdOOf$$G-1==1-:-1==1-<.$.<<.$.<3!2?'&#!"77''7+@ssRLMMMMLL MMMMMMM 777'7'''"3!2?'&#!!kLMMMMLL@ ss @ddsMMMMMMM+ 7#37#3!!'#3#7!5++++k5++oo떖*+%:kk++#'-"!5'54&'54&2#54>3535265.<++<.11+++$ O3**3O U11++%#"&546;7532&#"7765 ";#Vj+#V #;@%#"&5463!2&"5#'5#77   k55+jV«00V@2%2'#"&46"264&"&546;7532.#"K(8BC(88( ,652&@%#8(BB8P8+,,V &?J?1%2'#"&46"264&''5#3#"&5463!2&'5K(8BC(88( ,L55+U8(BB8P8+,,֫00V "&*#."354퀐&"&4627'33'33'35)  S 5 6 $  #K ++++++ $(,04.&#""3549>"&4627'77'77'7#35#3 " %  Q11/21-11++++ ~$  { ">+ր&*.26:.&#""3549>#527'"&4627'77'77'7#53#53 " %  @$ Q11/21-11++++ ~$  { ">+ $(,3.&#""3549>"&4627'77'77'7'3533 " %  Q11.11/11"k@U@ ~%  } ">kUU&*.292#546354632765"'7264&"?'?'?'33'3  % "" k1{1{1+@UV@" }  %~ >kRR$(,0#."354퀐&#527'"&4627'33'33'35) @" S 5 6 $  #  ++++++ $(,3.&#""3549>"&4627'77'77'7##5# " %  Q11.11/11"j@U@ ~%  } ">jVV&*.292#546354632765"'7264&"?'?'?'5#7#  % "" k1{1{1@VU@" }  %~ >kRRk 6%2'6.#'5".735#5##5##";&'#5!54&!/ 00!/ 0++ * *?% 0 *?% 0e++++7  6:%2'6.#'5".735#5##5##";&'#5!54&!5!!/ 00!/ 0++ ** *?% 0 *?% 0e++++" U* -7234.34&'234.%#"53#32654&+1+(E(@&4X4*?lA-k+1)D)V@%+3Y4@l? '.k)377V*v[%Q 3!!2"&4672"&462"&46+*V%%6%%p%%5&&%%6%%*&5%%5&%5&&5%%6%%6%@/77&6762727&5462#"'"&57''"&46@ a # 6 L$L$7 b$a   6L#L 7b # 3#!5!35#3#3#+VՕ@@jj@*+*3"2>4.2".4>"2>4.2"&46*O< &.>UVVVVVVMM99MM94<<--<<-kVVVVVVA9MM99MM-<<--<<@$48<"3!26=4&#!!7337533533353";26=4&#3+35+VVEE%F  + @ 6++ @+ `` ` V V @ &/=C!"3!2654&!!#3''57264&"72"&464'&'&"!'>2VV6556%%6%%  !0! *(* **k@%%&&k%6%%6%U     + &6!"3!2654&2"&46!547676273&'&4767#V&&5%%!/ R# ++++ #*@%6%%6%  @*+!4*3"+**#,5CI!"3!2654&!!7'#&4737''264&"72"&464'&'&"!'>2VV@+ ## ++%%6%%  !0! *(* **+***+"3*4_%6%%6%U     +  7!54>2%3"&57"#'&'.'&#54&"3!26=4&.O\O.2F2      *(($22$ @  @  k)573#73#3+"&=3;26573353+"&573+53265**@**k+2$*%* *@+@*@*%** U***@#2%UU jj@&+ %773+"&735'#A\l+v4%%%6VD!)7.>'>.777'7%3>7' " =!ABA`@ef )mBL V! ! r @C@B3P3q%  %B/*Y(173>27#"&'#%##"&4632!"264&3"264&/!)%!//!%%!    d#d %**%6%     k "2>4.:b99btb99bk.O\O..O\O.k 2".4>7"2>4..O..O\O..O.:b99btb99b@";F;"";F;"+.O\O..O\O.k 73#35#%35VVVVVV@ !#33##5335##335#@U**@V++U++*ժC%267'"'>7&546364'#"&547&'"&'+727&54626"&'&'#7&'#"&547&47&5463267>2632#"'#'&&&  '66'  )2F2) z.   ,@ ?-    .+ YY  8 *  * 7! `#22#` d 2G  @ 2  1 @  G2  #"3!265!337#53++k+@+VkUkkU!%!'77#"&5463!2&#5#35#37#3k;"L*#֤kkk@"Le**8Dc++$(!'77#"&5463!2&'5!3'#537#537#53k;"L*֗kk9@"Le* A++*F+#%#5#5#7#3#"&5463!2&#=#ժ+k֤*#U**++*8D*B++"&%#5!2&'5!3#"&5463#3#3#ժ*֗ <kkU**+ *U++++ '+%33##5#53#5#7#3#"&5463!2&#=#k*@@*@@kk֤*#֕@*@@*++*8D*B++ $*.%33##5#53!2&'5!3#"&5463#3#3#k*@@*@@*֗ <kk@*@@*+ *U++++ '+%77''7'5#7#3#"&5463!2&#=#4--..--.bk֤*#m..--..-++*8D*B++ $*.%77''7!2&'5!3#"&5463#3#3#4--..--.*֗ <kkm..--..-@ *U++++37%2'#"&46"264&3#"&5463!2.#"#375#K(8BC(88( ,+#|*>$("l@ 8(BB8P8+,,+1$*#*++,05;%2'#"&46"264&'!2&'5!3#"&5463#3#3#K(8BC(88( ,*` | z6# %       !8 @7 ;F">!0  Vc,1r>!7!9(E = *G*0Q/  Z71 2:#/# (4("'&)+'   B   - ),f5&7=9(C' -M. v 7#7!5!'#7!5!'#7!5!k5kU5kU5ku`*`*`*!5!7'3733k*b33Hv00vU+뇇@@+ 37;?%!463!27'#"&=!532%"134623467>54&3535#535U @ bV + "*   +#7+U+++UU V  b   ****@$-!"3!26=4&##5#53533"&4627"&462@+@@+@`H @@@*@@U@@(1!"3!26=4&!5!3535#5##372"&4672"&46+**+++c @ժ+*++*@V 2H33##5#53%2"&462"&4672#"&'#".4>3"3267332>4.#+**+++ 2 .(E((E(77(E((E(11-*-11+*++*+@(DRD((DRD(*1:11:1+04=1'327"&=4&+54&+"35326=4#535#53"&462O-   ,  &O- `kvu+jj    #/;GS_k"&=462"&=462"&=462"&=462"&=462"&=462"&=462"&=462'"&=462y^\_^&   #  J       b   `   M   _  _ b_  _  3!53#53#53#53@*@++U**V++Uk!"3!2654&#535#537#53VQ@@@k++*+@$'772&#"5''#"&54?7:"M6,VYryr@"M0, ,B)--$('7725''"&54?775:"M6@VAYrxr@@"M0,B)-,I'+15%/67'#'57.>3524.326''7'77'f%{'|  +   &4 @@& 3-R%-%#* !   7';5y :@@;';5$(,0'5#3535463!2#!"&=#535#53=3535#535#k++U+++++******k**V@**V*V****V*#,09B%!47.5#4671>=4>21#4&"26'7/"264&3"264&+1:1k2F22F2++++  M  k22# 7117 ##22G22 5     $7'"'7327'#472/'64&'753{3F b /O-\0;Geq6 k b =3E/x\* wkA"2>4.2"&46*O< 4.2".4>"264&*O< 2.#"'>2'+zP U0V F'$A Q,6'%2[ nPP: $! Uk Zo\k#'+/";2654&+#533##5#533#73#3#73#+**++*+++++U++U++U++V**U+*++****++++ #',17'+"&=733532'535#5##'54635#35'#'35'+e%++*+V++*<++U+%U+P%а**U*++<++%U*% FUal.'#37/".5#2>54.'>54'."34>32+327.+32>=4&+532'73.5D GqBQ           21   aQ5D Fq `Qo               ~ 8 {Q` ;?36'&'&'&'&'.'!"'"'"''576727277@ 1*(1 1001"EE 5GG:LG>,)p6L *+  +72"&4672"&462"&46%%5&&p&&5%%%%5&&%5&&5%%6%%6%&5%%5&#,57"&462'"264&7"&462'"264&"&462'"264G22$#D$22G22##f#22F22##@2G22G2##+2F22F2$$2G22G2##@ !5!!5!!5!+*+ >=3#3#2X66X2****V:lLLl:*++ %.=7>='3#3#2X66X2'E))E****:lLLl:VV @X.iBBi.X@ ++k#%!!7!"3!2654&3#73##53#*+À@@@@@+Vjj*jj@*!";3532654&!!5kkk++Ua>"&462#"#/&+"3#"&=4+"2>=;2=4 +D?  00- X:@ Jh*4~,&!, -r)A /9%+5327'#!"&=463!2'4&+3#3#326574&+3265+U   KK66KK  @@ VjFUK K % % j&%54&#!"3!26=5%>7.627.k  U WW!)mlFBAJ KV  (c!*%#57!"3!26=554&%>7.627.@  UU  WW!)mlFBA+ KVUJ   (c (27'!5476762'#"&54?2''64'7'>&'+U +&?&+^#2 H#2Y $ j))#zqU ++ ^ 2#(2#Y$W $.k*lk)""RR >GPY%4'7'&'7'&'7'&'7'&'5#'#3777'35677'6%"&462"&462"&462"(%&! !#+7>*+: : 36& &*"! (  Wk '*1'1-,, 8? *) "$$(+ +, !@   @>]fox#'#3777'35677'654'7'&'7'&'7'&'7'&'"'&'&754763232'"264&"264&"264&+7>*+: : 36& &*"! "(%&! !#_0"  $  ,  (  W, 8? *) "$$(+ +, ! '*1'1-4%>   & U   +,2.46#5462!5!'#5##"3!2654&+5't8P85*@+*')-+++*+(0#5##5##"3!2654&!5!5!5!2.46#5462++***'t8P8++++*+*j')#%5!332#!"&546;5335373#+++++++*++Ֆ#'2#!"&546;533535!5!3#73#++**++++*++++**V .7533##5#5535332#!"&=2>'.'&'6."@+@@+@@'D#40!;1'(8)&:(k@@+@@+@@+$; 1#1j&*7))'0<#'#33!5#3!2654&7>76&'&#"72"&46'35#5##33D'm)U+U;!0#1j%%5%%@@+@@+@+++"0!:1#%5%%5%k+@@+@ 7N%''7'77'&'&'&'.7'&'.7767>/&'&'>76/&7S |      ( /  5"(55("")55) 2M$+1  8 a      #">732>4.".4>2:b9  %G%&:b99b:.O..O\O..O.N/">! .N]N.#;E;"";E;#/AV#"#3#3;35335326=35#535#54&+5##532+535#535#732+3#546;5#+++++++*++++++++*VK K@ @vJ *@` +@+++*++++++++*+++++ V   &  ; /CMQ#"#3#3;35335326=35#535#54&+5##53#32+"&=46;353#5#35+++++++*++++++++*@J@+ 5 i @V +++*++++++++*+++++  & V ++5k)-%3'7#"&'#"&5463!2'"2>4.75!U 4D(E(,IV11:11#<((E(/&6M1:11:1+@@k$15%3'7#"&'#"&5463!2467#3&7"2>4.75!U 4D(E(,IV11:11#<((E(/&67y1:11:1U++k #)%"764/&#37'!";5763254&'57,+, * %,\Vjj+kkk"%%3?'&"764#57354&#!";',! ,*,2* [jj*U+kkk%4>254&#!";&'57#5#;E+";# +kk+jk++k%47#5754&#!";&'#5«+ jjl  kk++5'72#!"&5463!!"&5ժU@+kk+kU*+ !!"&5%4&#!"3!265'!57+U+U@*++kkkk7'#!"&=46?!!"&5 +jjkk xx +*"!!"&5%'3!26=4&!57'7+ U +*%xx  kk@jkk .6>"3!265'#32653/"'57'5463"654&27'"vvB  $!8!E  ( u ,!"> 99 x,   B" "-6>"3!2654&#32653/"'57'5463">4&27'"k*  +'B'S   0 *0 5() J EE 5     O)) !#"&546;&"5#5#37#5##3353'  k@+@@+@VlWkA@@+@@%"/&75#'&>3!23# +{ + {? + } k*%3#"/&75'&>3!2'57@+Uf + gT+TU* V n zlu+k!%"/&75#'&>3!23533##5# +{ + {?@+@@+@ + } k@@*@@ %%3533##5#"/&75'&>3!2'57@@+@@+@+Uf + gT+TU@@*@@ V n zlu+kk37##5735337'#32#46%[+++** +*5 5K @ *  '535!33>54&"'#2646327"'6?3&(( B66B #    %!//'\'"  "U++M+?gg?+M 0 , 1G35!33>54&73&'"'6#.5476727'"'#264632(( B66B  "'\'" ݤ)0+'(Z('+0/D    %!/U++M+?gg?+MP//PJ  0 $+!"3!2654&##5#'73#'353375#535V@+*++@@++k@+*++++@V*@++@@+*@++++*+@!(/!"3!2654&!!#5#75#535#'73'353VV*+@@**@*@@*k@@+*VVV**@@+*+@+@@+j@@** 3#73#53#k@UU+****+ր 335#737#73#53#kKK@*@+PKp****֫9N+ր!".#"76767654.5#73`33 6+EE+6@@@6!&'"-??-"'&!6UUX%""'&'&'&""'&'&'&"#27676762276767622767676235"'&'&'&'276767622767676235"'&/7'7&#"#276767627"'&'&'&#"'                                *,!          +** *'^&J*rH "&*.22.4632##5#546#3#35#3#3#3#35#3#@ U \@@@@@@#$juu*****V*j* $(2.4632##5#5463'3#7##3#3#@ U 1+@@++@@+@#$juuVVVV*** %'>&'6767'W $K"9"O'-% $JK+ #3#535#532+5#3UUU**++++++#,">4&#;5#35#"3%#3354&#326=#%04E22+UUUU+*UU+UU+2E40H2U+*+U+UU+U!*3<%4.32>".6+;5#35#"3%#3354&#326=#k%: 1"1k$'4&%+UUUU+*UU+UU+"41 :1#&4'$6%U+*+U+UU+UVf%&&=7>74'.""&56&&26'53&56&&26'5326'4&&=326'6&'.7>72  % SdS % .   .. - (  . 1  9,*//*,9  1   'z  !uu z'   !  hw2"'4>7""&56&&;6'53&56&&;6'537326'4&&=37326'4&&=7>74'..7>76(?$CC$?(2S %     % S2' .k%B**B%*/*,9  1    'z  !uu z'  1  9,*/Y ! NW254'>54.".54>2#76767672'&"'&'47.546"264&:b9)I.6F.O\O.'9b+*    +"(  6%,(D)"<*  9$11&5)D(,=,   ",+"+!"3!2654&!!26=35#&#"'#3!5!@U *+v*u ,*21'&'&'&54>3535)D(&, (D***(D)1H49##0*4&)D(U**(,021'&'&'&4>"6767654.3#3#)D(&, (D)11112****(D)2H39#"1)4PD(*1%/AA/%1+k*+2"7676764.#535#476767654&"#462(E(  (E&&&  &,>, (EN5)1"##"1)4OE(%  ++  $(D"76767654.&'&54>2'3#7"3462347>7654&.O.'--'.O./"/";F;"2 A&&,&  & ,.O.5J5;  ;5J5.O.`9:P2#;"";#5S5R%+    +("7676764.2"&4677'7'(E(  (D),3334444(EN5)1"##"1)4PD(`,,4333344"7676764.7''7'(E(  (E[33443344(EN5)1"##"1)4OE(C44434434V#".5#2654'&'>++JVJ++4Z6 " 6Z4U+J++J+5\7  7\#'%#575!#"&5777777&#"5#ժ#$#$#$$#$#$#%0' NU**@@*$ '#U$$$$$$$$$$$$  +/%33##5#5375!#"&5777777&#"5#k*@@*@@@#$#$#$$#$#$#%0' N@*@@*@@*$ '#U$$$$$$$$$$$$ (,!!"&5%2#!"&5463";26=4&#3#@U++++U+UV+V*!!"&5%2#!"&546335#3@U*U+U+UV+*-!!"&5#5326=4&+3#"32#!"&5463@UVV+UU+UU+U*+*+U++!1!!"&554=4&+3#3#3262#!"&5463@UV UU++UUUU+U  *++*++"!!"&5%2#!"&546335##5#3@U+++*UU+UV+UU*!!"&5%2#!"&546354&+535#3#326@U+VUUUU+UV+*+**+ 0%3#'!!"&5%2#!"&5463326=4&+535#"++U++VV*+UV+*+*!!"&575#32#!"&5463@UVUUU+Uի**++.>%3#53#'!!"&5326=4=4&+"3"2#!"&5463++++U+ +*+U+U    ++ 0#53%!!"&5!#";#326=4&72#!"&5463@++U+++UUn+*+U+*+V+(<5372#!"&5463!!"&533535#5#54&+";#326UU++*++*@@@+V+UU+**+++@U+ $(673##"34&3+"+"&5#"&=463#3%236&"&5#kjY#22##2++++&&*j@2$#22#@*@&&#'77632#".546;253'53I-/ $( Hf7 K  ***-I/  K 7fH ($ I++UvV'7qq*HH֕%'.+5'##"3!263#G*V*GbVV)U++U=U%!?##"3!26/.+553V*GbGVժ+UUUUU09B%"#57'7'5#'7#.673"345>."&463".6y!$JLLK+JKLK# (--( #$+/#    e,$..$,//,$..$,e!4!vv )/!U       V 7&+'752&'&/55'$L2:>*/YQr(3>hU .-W58[;F@@UV 7&+'752&'&'$L2:>*/YQr(3>h ./W58[;F "7'#4/2"&46'2#4.#75z +/&:a9=(F)nGlp +&&w9a:)F(lG '0'67&'7'67'54'7&'7#"'7;#53#')#+2&2#** ' !( 1,#'g+7::k%Z )$8!(3){ $'&1 ''+;9 '5'>7'7'7'o"Hi& B3U> $o B55=g#Y>U>77%677'75'7'\5  $jG"o>$ > /  7/?55B"q ,%U> /V %'73#'7..+++//*..**..*V 7'?#3''7..+++//*..֕..֕@ ?'73#+@@++@R..@ 3#7'7++K+@@@..%+/3%'57''/7'?77'57'7'75353_J%%6* ) % 1++1 % * *5%%J5555+++,0$$02 & ) > ) & 20$$0+W> V++/%73'#7'?''/#3#3?77/7'37#0+T3W+W.NM/W*W3U*+T3W+W.NM/W*W3U+D*r/s fft/s+D++D*r/s fft/s+D+$+!"3!2654&#577'53#7'775''7'3VU!!!U!U!!!!UVU!!!U!!!!!!(/!"3!2654&!!'5337'3'7#7'##57VV U!J!U U!J!U VV!U U!J!U U!%.7?CG%#+"&5#3!26=".623"&4623"&4623".62'5!#!5%3#3#VVV*V   L  M  M   @몪k+++         ֕++j%"'"'+32727;5-)'\')-**,*(Z(*,*++V*.27".4>3>3232#5#54.#"&#"3!264&'#53#5311E+$>& $22$*1(; %%****+1:1&/";#2F213'%5&$U* (5BQ&"7%.'4&+";2674&+";26;264&+";264&+"7234."34634YL&5 U U @ @ %+1:1+%I !,QQ.   L   %11%-Q]%#"&'.74&#"'"3!264&#"74'67676&#2#!"&46;546767627.+&47 ; $##22#%%:)  A 5  7! Y=E# %d- (2F2%5&  )  $ ' 5n">>X BPV\bho%"54&'6&'&#";76764'&/#"&46;46232+3264&'".7>&7&'7&7&'6'7337# &%>3  #22#+2F2@ **%%3 : 6 ?3,2+4##A ,3'H %B2G2##22#+  %6%# #>  <~ 0  /yFzWBPV\bhq632+'&'&5476;264&+54&"#";#"&46;.7>&>32.7&'7&7&'6'7"&5472654'&'%& %%* * @2F2+#22#  3> : 36 ?3,2+    %6% aH'3%6%   +#22##2G2B%4 ##W>  <~ 0  /! g %%@NTZ`f7"&46;46232+;264&#"54&'6&'&#"376764'&'7".7>&7&'7&7&'6'7?6?264/7>.76.'&"+2F2@ * *%% &%>3  #22#z3 : 6 ?3,2+l "    " "  "*#$22$*   &5%2(H $B2G2" #> <~ 0  0! "   ! !    %P&'7&7&'6'7"&47671'&6?'&4627>76"/.?&%"54&'6&'&#"3276'&'1&46;46232+;264&'".7>&!6 ?3,2+%  !    " "    "  &%>3  #2  +2F2@  %%3 :> <~ 0  0      ! !    " !2(H $B2#   $$22$*   &5%" #*]7&6?'&4627>76"/.?&'4>3>3272#"&463264&+54.#"&#""'.?6?264/7>.76.'&"U 0# #   0  0# #   0 C'E+$>& $22$ *1(; %  "    ! "   "c  # #0  0   # #0  0  ''/#:$2G2  #13&&5 ' " !    " !    $)-1"2>4."&462&"77'2?535311:11%%6%%34Y%%`33b++++1:11:1%6%%6%I !,Q-bI wV++ %2?!"&463!24&#!"3!264&+";264&+";264&+";26   *  k @ + + U   @  L  L  M  '+/3.'&2?2?64/764/&"'7'7'7 1*     x   ,5DECCD *1    x     >DEECD'9=AEI.'&"2?2?64/764/&"67'.>676&'?'7'7'7 1-     x     p cyy5DECCD -1    x     d   pyy5DEECD264&"'3"7#3#3&54637 ""UkZ' ""'+@ &"353&5467327773#5-SZ  ZWU   j @ $%!!%35"7#46235#4&"26=4&#V@ +&4&+++ &&J"'&'&7>766'&'ǜ7>'ǜ76'&'&'&/.7676k   '$9 S  !'#4.2"&46#2"&46>2:b99btb99b  ;J; 9btb99btb9"))" "+2"2>4.".4>27264&"#264&""3.:b99btb99b:.O..O\O..O X%; ;9btb99btb9.O\O..O\O.5)"")#15?%#326=##3354&35#"3#;5#"353354&#3#73535#535UU+UU+UU++UU@+*+***j+++@++U+UU++UU+VV++VV*++ #'+/37;?CG%#326=##3354&35#"3#;5#73#73#73#'3#73#73#3#73#73#UU+UU+UU++UU*++V**U++++V**U++++V**U++++U+UU++UU+*****++++++++++#'+/%#326=##3354&35#"3#;5#73#73#73#UU+UU+UU++UU*++V**U++++U+UU++UU+*****#'+/%#326=##3354&35#"3#;5#73#53#3#UU+UU+UU++UU******++U+UU++UU+*++ &E2.5462"&462"&462"&4626'.+"7>.71&76U  C 2  #   5+E  -        #5)A"$ $-%'65&''7''7.77"264&'"264&R $%@% %n" %  ;#G 13"o7%b,))" T##V#2"&47546"354&5#7%5& + @^7%%7  T "$$2"&47546"354&'3#5#7%5& + k@^ 7%%7  G`T#0:"3!26=4'7'&.>327&2!54676"35476 2S1*@,/k-  6 **8C$!&'!.19*#:#%!(2KK)"*@, %  +%7KK7 1/# ""2>4.2!>"&'!'&47!:b99btb99b:/MM//M&MJ9btb99btb9*.((..((... 7'7'7####PzzPzz %7'7'7'77'7##zzzz##_{D__``z &"2>4..467.46764':b99btb99bq4@@4)`))4@?9btb99btb9YnYLU&W\W&&W\WLLYnZA+2%!"&=463!2%"3!26=4&#5373#5'3'3533  n n)))))))>)))@  22N22NBFF?33264&#"#'5#3#3UD %% DUk@ZZ@kUV%6%VUkUUk%'#."#'732673VY!(!Y@@Y!(!YU@@@@%'#."#'732673'"&462VC.:.C@@C.:.C$U@$$@@$$@*$$&/:C";#35#!354&##";26=4&2"&46"&46;2'"264&@*U+kkG  $$%% +*@@ $5'%7$`'9B;#35#5;7'"&=#5!'!2#"6;25."&4623*UXO$B^++Q+kQ %"F  +*X$B`@@*|Q% "`2>4.:b99bV9btb92".54>:b99btb9 "2>54.4V'Ie`:.O.:b99btb9 :b99b:>#L9=9btb9=9 ">.!CRRC:b99b:>#L9=9btb9=9V!,"5#&#"5#6767654'&5>325>32K++\$L&$  Y  cb c3/b*'%B  B  k+%35#'5#3#35735#'I"@++@"++"@++@"+@"++"@++@"++"@+KV 767654'&#"5#5>32L&$!++  +*'%cB  Vv 5#7357***VVp0p* V kK%55#5#773573575557k++*++++++*++++**+ 8E ;H + + + 8E ;H + +8 + n23#7#'732>.3462+#5#35332"&5#264&k**& -*+ ++++ +,>++k)- % ++ ,,>,k.2"&462"&46'">&'>32>54.  1"!$2IMXW";U1#2#:U (&jG";#o'/<D%57>'.#"+326=2>54.'46.'&6?52/  C 2  ))** %*K/ $ ECK$( +  /*  A1'l &>=35"&462:)68#U ):2.U #&'"265"&462"&462++#22G2V#y  2G22#*## 35#'.>=7'"&462+U++% 7A(z#+Ub+  ;@$ 2 !z ## &>=35"&462:)68#U#):2.U## %&'"265#2"&46#22G2+`  2G22#+%"&462=#&>=35#5:)68#UU5 U):2.@ 72.5467"264&2"&46  #22G22g   +2G22G2VVA6.;273+' )"F+U@    73533!++VVV7&6767'7>/7&  C'& X  /JY # EB&,$W " -Hk 6.;276.;273@' )"& )"E+    Y    %##5#5!++VV)3#7#!"&5463!2#3374&+";265+***U+****<+)-%!!5!"3!2654&35#3732+"&=4635***U+***+*+*+++!"3!2654&!5!5!5!VVV #53'#373"354ș#'37#@UUU@ V f xk**jk VV k   $(73#35!3#53#53#533#73#3#73#++*V*VVVVVV++U++++V**++k뫫@++++++++*+++ !%)-159=BFJNS"3735335335334&3533533533535!353533535!35353353353353265k+*++*++*++*V*V*++*+V*V+*+*++*++*++++++++U++VVVV++V*****VVVV+++++U++++++++ !=#7"264&3"264&7.=7'.+";26=3;2654!  w  w2X66X2. k +    KK`     :lLLl:Vk kU  +1=F#4."#";.547.53;6765354ǎ6.77'"&462*1:1*# &+%+ 2%6%\ 9I4-HC ,@11>$-$ 7!& "l%%H.4I9 B@,, 127>/127>54.'264'.5467= 5 -9 !(H.G)! 8/# !2U3#> N,0U< #5T #3%2654&/"632127>54.264'.547'%v82- .O. !9b!  k%x .N.#> N,9b:,N ># ,3"&*.2>%#5367#53675354&#!";&3#'3##535#535#5333##5#532- %#5367#53675354&#!";&3#'3##535#535#5377''72- ."&462'67.67.".67676?6632 '4%%  &- &((O*&0#  6d%% +$&4%U   # * " $*"0' ('%'3;26=35#'?#5FK K&+**+<** 3535#5353533##5#*@+@@+@ի@@+@@ &*3#33535#5##3!26=#"&=46;54&#352"&46@@@+@@U@@*Հ@+@@+@@@@k5 04=#33535#53#";!5#3!26=>=4&'54&#3#7"264&@@@+@@j+* @ @+@@+@@+**0 0` !3353#"3#7#3352654&#53U+JuV**uJ+=**k@k@@!%"3353352654&#3#3#'35335++kkkkj*V*@*@@@@@!*.";#326=3;5#532654&#2"&463#@@*@@U$VV+*++*+?## 06;2322+"&4635#73#"!54&+5z + U g[6    V   +6 **m  /<DIP7#&73'367&'67#73&&'7#!"&5463!24.32>'36'#67#'364'33$+ ** ; :  : z* *+2TY@"L-)D(R33*,WFK&&  &*-L"@YT2(D)&v#'+#5537"&462%#!"&='75463!23535U**$$+++++V$nU++U'++#/#5537"&462%#!"&='75463!2#5##3353U**$$++U@+@@+@V$nU++U}@@*@@/3#5537"&462%##5#53537#!"&='75463!2!U**$$@@+@@+++V$*@@*@@kU++U#'+/#5537"&462%#!"&='75463!2!3#3#U**$$++++++V$nU++U++#'C#5537"&462%#!"&='75463!2#3'5462354?>54&"U**$$++ +   %5&V$nU++U    !  &&  #*.J7"&462'#553#!"&='75463!2!!'#5'#5462#546?654&"k$$**+++u &5%   $ÀVUU++Ugg5 k &&  !    %5#5355#7#'353U@֕/fk+V@+@\`+V%5#5355335'#7#@U*kf@@V@+@V+`\k&/8!6=76&+"!54767632&#"3"264&"&462k&; <+*& !( k#22G22$#& [I  I+@   :2G22G2##'#G%#"'&/&'&#"'6763232767#"'&/&'&#"'6763232767                       "    1R!"3!2654&22767#"'&/&'&"'676"'&/&'&"'676322767*              '*o            &/4%4.#37#'#36737'"&462"&=.N.$\$K/&=2,<.N.:. ^++,.3 & B - V(.5B&'5##"'&#"327327>4/76'35&6'&77'5'#'632s ' "  #"  D1g  "%   1"% "(1 &n 1Bk"   @Np75'#'632&7'6'&7##"'&#"327327>4/76'35#&'7&462"&7#'&#"#"2?3276/76'." : &D1  " #" " &q  F         b 1B }  1"%  '' D  =         1"&462#"&'&5'76?6&7#"/326?k--+";' "&S<+&`1HH +=+ (AK`,a$ju M ' -&%;7&'&'&47676;7"1;26=4&+      a & k@90BL     -    5;cz%'577'7''57''/7'?77'577'7'7'&'&'&547676?;72+"'&'1&4?676;             k$ $ B$90B&      -    '>FNV7&'&'&547676?;72+"'&'1&4?676;'7'7'7'7'7'7k       k*%+~+$+{*%+@90B&      -     HIfHIfHIfHIfHIfHIf7!!326763"UV*1[!_t[Q*o+*?9+BH!%'7747'536327654."327&jK +JH B!'9btb99b:UjJ *JJ.%-o) :b99btb9&-%'77#".4>27654."327&7'5#6jK +J.O..O\O.9btb99b: 2B JUjJ *J^.O\O..O.  :b99btb9'q- '!5!'+"&='+'!2#3FO1$2*+*++q+12$*%@@ @%);27!!7"&=!36=326=4&#53+*2$1zqe+(+++z*$21+z+( @@k@k!";&54>254&!5!#5#;EV@k ";#@++k%#575!!3#"&5463!2#@UU+@++++U+k#!";&54>254&!5!''7'77#;EV6...----.k ";#@-....---k&%47#5!254&#!";&!!''7'77UU...----.+  +-....---k "26!5!";5#7#3564'"&4627#";26=4&#53@UUUU*݀ UU@++&8&&8O  ի"%)#3!26=4&/5#3'735'%'35PE, V ,Ekk@2+  ++hBBS    + 3#5#%##5#5#37#37#3+5 U**@**kk+ֶ +@@@@k#,5>!"3!2654&+"/&4?6;2462"&7462"&'462"&LJ  JJ  JkLJ JJ J8   #"3!2655#'735'5+V@@V@Vv++@@++@uu %'#553#"3!265!33k@V@@V+k@++@@++UVkk#'#"3!26=4&5#'735+V|@@@@+**@@++@k%!5!5#'#"3!26=4&'#553V+V<@@@@++@++@@**k 3733#!!5e)r)e+Wk661t1U+k 3733#!5#!5e)r)e+W*k661t1U@kk 3733#5#!5e)r)e+W*k661t@k+o !#7'77'?'7''70Z#8/*_K/8h/L ^f %''7'7/''8h/L ^Z$80)^ L.  #3733'77###'!!E e-k-((@++*@ k//Ukk@ v@*++f 75'575'?333@//Vjj@+*+ e,j,((@ f #3733'77###P e,j,((@+*+U//Ukk@ k#"3!2654&#!!3#73#3#%3#UVVVVրVVk+U++++*+++"%!35#"3!26=#?/'?*U,,,,<:::*+,,,<:::: &/>7.627..7>733535"&462i!XX (moFCA= '20" G$F@@ B!!)g! '1%#@@@@ 37462"&5"'"2>4.'5.54>2&4&&4&@U'\'U0$$/4/$$00?D?0%%5%%BBV$03/$$/30$:++;">11>#%'#3%.'3>4.#>+V/RgaH.#.67U+*PP*;!WT??TW!U@*@+7)+pp+)7AVVA"+"#"3!26=4&+5462354.2"&461%6%+1#1++%%++1$$+/72"&46"#"3!26=4&+5462354.!5#1%6%+1H$$1++%%++17/&'737676&/&+$  "3$  )% &"#/!"3!2654&&'&#&#"/7376?676*T  $   " *S    V!3#3+**!"3!2654&#3#3******/"";26=46&2#546"7!26=#"&= k @U+j V V  Uj/37;"";26=46&2#546"7!26=#"&=3#3#3# k @U+j V V  UjU+++ 7'7'7'73!26=T:**;)*;* hhVL 6K7 K7)  7'7'7'7!5%!3!265T:**;)*;* hVVL 6K7 K7)?+V%54&+""337337354&+53<@@k****k@V!%%54&#!""337!37354&'3#'3#!5!kkkk+V@@k****k@@@@k@V!""337!373546&#3#73#kkkkU@k****k@*@@@V!%""3373373546&#3#73#!!@@j@@U@k****k@*@@@+@V!%54&+""337337354&+53#53@@j@@@@k****k@@@%''575%'jY[*@U@@z8\<)8y33767632#"'6732767>'&'&#"#537W   #'OA ,3.0-)% "&%(+  "$|:.>-/' G # #B767676767#367>'&@ k+" G" 4<=I9/->.:B  # G k%#3+3'264&"5264&"UUUUUU,,,,VK,, ?HTag&'.'.'"&'&"#"3227>3>7>7>'&4656"&4627.>32'7332'76?z          |#22F22   7G  k7 =              v2G22G2U  MX5 <?   $(,37;>3#546!2#553#53#53+5353#53#53#"&=3'3#%#57U+ ^ +U+*+ ++*+k +++++kk+ ++++++++ ******** *++++kkV!%54&+""337337354&%3#!5!*@@k****k@@k@ %3#4635#7'3573##33535#5 g55k55kk@@+@@56UU65@@+@@+@ %3#4635#7'3573#'77'7 g55k55k.----...56UU65J---....-%+?'?'&77'767>&'&7@  m4444. ?Z<  333? 1.GY<k33-!"3!2654&#3*11** %4."2>'5#53'73#9btb99btb9KKUUKKUU:b99btb99bJK5+JK5+  '"2>4.".4>2#37535#:b99btb99b:.O..O\O..OUUKKKUU9btb99btb9.O\O..O\O. 5+5K KJ5+ "2>4.7##5'353:b99btb99bJK5+JK5+9btb99btb9KKUUKKUU  '"2>4.".4>2'7##5'353:b99btb99b:.O..O\O..OJK5+JK5+9btb99btb9.O\O..O\O.KKUUKKUUk$(=#!3265326535"&4623"&462'53'+"&46;5#53#32k%6%%6%+  "5+--- VK-@%%%%k555,,=,,!"3!2654&7373%#75#V+iiV+ii8VU+; +;8!%5#376763!5#535#73#73#3#32673326=U55  j UU5kkjjk @+   @++V*+  /";26=##53354&#"353#5#;26=4&#@**k++@@++@@+++#337#";26=4&#53U+*****++ "2!!"&535#7!"3!2654&#5#53+"&=46;2@U@++k++*U++U+U+ի*"26%!2#!"&5463!!"&53#337#";26=4&#53+UUU*+++++U+V+V+U*&3#7".4>2%#3374&+";265+**9btb99btb9U+***@:b99btb99b1+ /32".4>"2>4.#337#";26=4&#53:b99btb99b:.O..O\O..OYU+*****9btb99btb9*.O\O..O\O.@++ #%#5##3353'#";#326=4&#53*++++***UU**++*+++++V+k!"3!2654&!5!VVk@5!%2#!"&=463!!"&=3+U@+@@+ '!2'35'!"&547'7%'#U|;!@-V@: ![@@k#!";&54>254&!5!3##5#535#;EV@@+@@k ";#@@+@@+@%!"3!26=4&!5!'#5#'7 x3[[3@jJ4Z[4%.7!"3!26=4&!5!%35#"3%#3354&#;5#!#326=#UU+UU+D+UUUU+@@k*V*VVV**Vk!"3!2654&!5!3#73#73#VV++V**U++k@+++++@ %##5#53533UVUUVUUUVUU %##5#535337!"3!2654&!!UVUUVU+VVUUVUUVV-GS35#54&"2654&'535#535#"&5476?/+"&=4633757%"&4?62@@  $ @@@@  #  -M ,BF_% $ U+   1*++  8 @kM&3M)$ $ ,5!7'727674'&'&"#.=4>2U@UU#*^*#&Q'ՀCR9btb9SBU*UU*@U+  h"# #+%53=#75#35#35#7#!"&5463!2##5#!+++++++++*++j*U++V**U+++++***k%05735#5467627&'"7"264&"&462'7627#+(!< -0&+#22G22$#, ρ,-U@)  2G22G2##H+ v*y'09B%.7>.'&#"32>&'2"&46"&4627462"&"&462U   ) 1  / #: X  !    +  64%1& >=+&@E     @  L   .7@G%>.'&#"&'.'"&462/3677'"&462"&462'"&47S ) 1 4  b  / ":R  7   64% P   c >=+%SJ      @ 9BKT]"'.6764'.>"6764'.76&'&'264&"264&"'264&"264&"$7 7C@1# &21   +   "  +2FKD@+ #Z$HG #0$21$ L1F @    @   +   &-RY`''.6764'&/767'"&47'16'"26&676;&'.?67654'&'&#"4&6"26&D A"$7i 4 <# 21  !S  ' h  C2FK"i4 <$21 I!  FS%      %##4635#7'3573#35kU55kk556UU+!"3!2654&3#!5!5#535#53Vjj***UV++*++ !%)!!"'&5%!"3!26=4&3#!5!5#535#53U@ "jj++ U  +U+*++* !%)-!!"'&5%!5%!"3!26=4&3##535#53#53U@ "@@뀀++ *+  @k@+U+k+#!%!"3!2654&!!'#3735##3VV<UU+U*+*+րU+V* 37%#!"3!2654&!!+VU555V+K6*V++++*6K**%'67654&#"#"3533?5"&4620 ,k 6 u+u$<   0  6 (k5-++wK    )'67654&#"#"3533?5#53"&4620 ,k 6 u+u$54'&   *    *   /  +++#)? :?)#+X4"&..&"4X"R # =9!$"U$!9= # R"0"!.25/;27'57''546;#3%#";54&#537'3؃*+ =&[/***+V++&& +B/&i/'*+++VU+Y'+ "&*B"353354&#3#%54&+326=4#535#537";26=##53354&#@++*+++UU +****++++++VV++  S+*++ 6:?'32'554&+"326=##53'+5'#5##546;'7#3'#3*;#+D+++ U+*++-U8++(*+ #fE]*VVU+S)+>GPYbk%"'64'7264&"&'5>54&"2654&'567264&'2"&46'462"&"&462'"&462"&462L.""/"!0!!0!"/"" 9"w   "/""!!'3'!!""0!1  h""C#*#53#53#!"&=463!2!!'#3#3+77'7++++k+kk+@@U;*$jjj++N: %1'0!2++"&54675#"&=#"&=46"264&@  %6%    +  .!%%!.  +   k%.7;I+"&=#+"&=.=4767624&"2674&"265#3%4&35>     "a"     ,+ !  !      V  /8!5##33!4.35>##5##5#546;2'"264& 7% j**    @ @  +JK=jJ)",`jj` ]?/<5##546232%#5.>2##5##5#546;2'">54&#+*  @ *   @ @   @@ @ U"(("_jj`  i  k'<H74767#732'.+";26=3&'"&4625#5326=4&+3#"%##5#53533  - \K @@@++**++k%" `6F -k++@@**+++k'3J.+";26=3&54767#7322"&46##5#535332654&+3#3#32654&i - \  ++**++ @@++@@U %" `6Ok**+++ +++ %1;GZ"2>4.".4>2>4&'!.467'72"/76#2"&467"'&"2?264&4Y33YhY33Y4)D((DRD((D$''$####$''$  0""//""3YhY33YhY3(DRD((DRD( #^h^#RZRRZR#^h^# &4&&5% 7'5#5357#553V@@VU@@U.(1@V@1(gbb (535#3!!.""/.#""/."5!+++  =  =  +*++*+ t#u%#654.+532".547#3;5''&'5654/&"'4'&'&/#&#"62'&737>'&'33276?6&N(E(4X4(E(N4X4m %      &  +!(E(+4X4(E("+4X4+  "  "   ,       ,  ,   T%'."'&'&27>4 +4>4+ 4 ee u   T$%'."'&'&27>''727674 +4>4+ 4 ee \[,),8,),[u     7#7aaaՋ %.:DI7234.%#">2+32654&"&462"'&'>32%234.34&+4X4*?k@1911k|$ !%%1+(D)@%*4X4@k? 1:1 V$$.'%6'@+1)D(U@%%#35#";2654&7kV+*V@'#3#5#3533?3#'3U++ b**k++++*|\(U@@@@VVk+**+&!";;2?32654&#5733#5733V OV+-V+-@ OY<@UY<@&-"&=#"&5463!2+#773!%3#57#3#57 VVO B-VU-V @OBB@UY<@UY<+E%&327>4&'&'3265."'.'&"#"&54>32276767632R$    % ! " &0 !!      .!0    C< $3267>7"#&7654&'#"&462"264&"&547&67676#2'"264&%"&47>'&'"&4632"&'&'&4627&5462#"'7264&"%"'.7>'&.>- & $?$  "+Z  I=42117E   . 1) /!N&2$"05h    ?,&7     -)$([,8>c lE90?    '\#  R!+  B4>"t&$    w- $   "7%2#!"&463%!"3!264&7#5#!'73/7'773&'&'   @k@*5j;FS(<    5   ,,VVjj66%=  a(,";&567".>6667."2>&35NN 6 -@<$' N%%6%&%`XHHX $<@- 6 HX`%6%%6&++a#'";&47#&'>267."2>&35NN66@@6 HX`%6%%6&++ &#"3!265!33"&462#54762++kk##+ 5 VkU#|  #"3!265!33#535'35++k++*VkU+UUU %#"3!265!33+"&467>32++ks  %Vk* #"3!265!33'7'7'7++k,HHsH--Vk,GH-G,-"3!2654&#!!7#'#7'373k**֪E+//+EE+//+*+֕kQQkkQQ #"3!265!33#'#7'373++km>&++&>>&++&Vku`HH``II #"3!265!33''7'++k+,<<2++k.2 # ))! !R,7.VkZ/");* Q/ #"3!265!335#535++ktVV@Vk++*@ #"3!265'7'?'5+v55/>>/v ;):8(uu #"3!265!337'?'++k/>>/5Vk<(97(< "#"3!265!33.#"#5632++k,&^&)$9Vk &^&* "3!2654&#!!#'#'3737k**3 ++ 3$!**!*+֠֠  #"3!265!33#'#'3737++k-&&/ &&Vk@ !5!#367!!'77'7RBeC.----...++*5---....- 7#35#57''77'!@@!D.B5**VffV( 37'#5#3@V@?*?.k.kV6>F%#&'&'?6'&'&'&'&'&'27&47&'67264&"#463"#463U  $(   # -2F &2G22  $  ,S290E2"9! R?%Q! '#22G26  &+/48=C7.'".67>2&#"".4>27'5?&''>74'6"7   Qz!   +,)G- 6>6 6>6 11@, ,,,, 11m1Y-%'C66 6>6 6?   |6 ;  #,5>GP%"&462'"264&3"264&'"264&#"264&"264&#"264&"264&'356+$$##G#|#Y#|#$$!  $$$$$U########U##Q,F 24=FOXajs|%4&'654&#"67'&#"2654'>54'>'1'2"&46"&462'2"&46462"&462"&"&4627"&4627"&462&   &%6%91 K=*K  " %8  % "," " && " "CHu hu H hVU4X\676&'&567673&&'1&#"&762>54&''&'7'.'7'677'777''3"  (,  ""+#:F:#+ " "  " " 5  " #   " T4.O..O.4T ++- %% -+)$& ++- %% -+)$++++#,5F%>&'672"&462"&46#2"&462"&46"&462&'7>&'7^$$"__   L   K  00'kjP( /!!b$__"$   V     U   +   "0""0(Pjj( 0 7Y"&5"&5"&5"&5?6763!2#!"&=3272727324'5#3"&4627'&+"1;27>, ,, , 8 <;@'  '      s§g   ! &4I%"'64&#"'64&"&#"&#"264'727264&#"'64'727327264&##,##,# #,## ##,UF,F--F,F,-FF,,F.FF,F,,IR[dmv%"'64&#"'64&"&#"&#"264'727264&#"'64'727327264&"&4627"&462'462"&7462"&462"&"&462#","#,# #,## ##,    z   P   P   e  UF,F--F-F,-FF-,F,FF-F-,J          :>GS"264&#"264&7!"632.>'."'32654&'7'264&"##5#53533   w 8B>))[5Zn  7@+@@+@     C=(6C>3 /JV r   @@+@@:>GS"264&#"264&7!"632.>'."'32654&'7'264&"''7'77   w 8B>))[5Zn  _-....---     C=(6C>3 /JV r   ...----. $%".4>2"2>4.3353'33.O..O\O..O.:b99btb99bO*@++@.O\O..O\O.9btb99btb9@kkkk#3!5#77/7#3' y% + Y *UU4_%"'"'+32727;5'#"/"/+67632676'7.'6&/&'&5467&676.'32-)'\')-**,*(Z(*,*'" "O! #' "2[ &! %   *$ "& # $8**  ! %78$56 G4 8##-  + 73!53#!"&5@+*+UUU  #'+7%'7'7'7'77%'7'7'7'7%7?r) )H) )H) )I* )r) *H) )H) )H) )ffS]S * ? ) > * > * iS]S * ? ) > * > * u($(k+ 335#53++++ր*k>Mu{7""&/&'2?>232?>22?5"&/&"#"&/&%"&476?'.+53264&+";#";26?>&#537%"&4?62  =    =  =     # F + U * N- J% % @00  # H(P +   +@ y@+5$ %  .#"&=3'!'54'&'&"+5#35327654762@++ ; ++  3 kk\O   U@  O 7136'&'76&/&'&5467&676.'32.  @ . /;!3*)08%1&3P5HH3/ PM.5<+d%"I P2'1%@ -7&264&'&".4>24&#""'&'&#"327>762326! h  }9btb99btb9*)   +"    "+    :b99btb99b)!  5<<"/%#7/"537'#5'#3"32>4.".4>2` D4 8**++t#RE((E)//800O'X*+U+*(EQE(08//80#.'#5'#5''3#5467/5'7.'575!"3264&%~&)UN@g']C| RR  %}%.+DogDd +D+'&# D%55357'#37'.&/4&+"'&?7.>37>+VV@jU@@N+5V4+,-+5K)/%X-@+KK+@5K+@*J 88 J#  #J@.>)#   dnw%5355#'7'"7."&4627'.&/4&+"'&?7&''7&7'76?3737>'"7."&462'"7."&462@@UU@VV+#2&f1#$+5V4+,-+5#4, -3& &3,+-#2&f1#$#2&f1#$U@+KJ*@+KK+2#0W"0$$qJ 88 J##J "&&!78! #2#0W"0$$2#0W"0$$ #(-2>=2"&467&"777.'>7'272X66X2$$4$% N4   44 UV:lLLl:S$3$$3$>+ M. .  k*   %*/49>%.=7>='72"&467&"777.'>7'272X66X2'E))E'$$4$% N4   44 U:lLLl:VV @X.iBBi.X@$3$$3$>+ M. .  k*V #3#3#35#35#53535#35#%33735#**UU**@***j**@**+U+++*@**@+*V++V #'+/3;73#35#35#35#35#535#35#35#35#53535#'35#35#33735#VV@++@++++@++++++k++@++++++++@++*V++k+U*V*j*@+*@***+++++ #463#5!#2#5##546;5**k+k@@V 5#'5'5''5w xxx wMDD܈DDk!%4&#!"#3!535".>7!>2j  IcI**U  %11#+%"/#".77'6%2?'%737 $746)!\u<V.+.+*!)647$ t=*+.+.Vk $"353#7#54&#353533535335+5KJ5뫫**kUU@KK@++@++++@++++#3!#3&7>'7U****eV( UU( UVcU (UU (V#5#"&'##33>235*o!(!o**o!(!oV#3!#335>4&'5U*****Vo!(!oo!(!oA%54&#!"3!26=5'77k   U?%QK  KUD%R A#57!"3!26=554&77@  UU  Kc+  KUUK !Kc1%!3!53'"&/46;2#+#5##5##5#"'.?V*V*Tt7 #*V*V*1k+UU@B@d **a%)933533533532654/!73!3!535!5!'2+"&/463M*V*V*# 71=E*V*UWB** daV++UU+V+B@V%54&+""337337354&+53k<@@k****k@V!%54&+""337337354&'3##53k@@k****k@@k@<E#'5#"3!2654&7676'4"/&4?>76?6'"&46256         V )   )<    A%+"&=47676?#53#@* V  ** @%+"&=64'567#53#@* V 9&&9f1:**:1A$%&'&/35#3;26=4#57673V *+*  ** $%5!2#!"&546;53353!!"&53+*+++U++++++k&"264&7!"3!2654&'#"&462, VV>(88P8>, ,k>8P88(>k &*7277'654&"72"&467!"3!2654&!!448P88( ,VVk44(88P8, ,k,%"&4627+54>232>54'#"''&pe9b:9btb91:.O.?5   :b9:b99b+.O."  %.%462"&7!54>22>54'#"&'264&"%V9btb9.O\O.5\:&k   :b99b:.O..O.0*&<< ,04=F"!54.2#"&'6>>7327".55!#67'462"&'462"&:b99b:.M -NG ( )<*@V1.O\O.++9b::b9*-&-&11=)$*.O..O.+k   "3!265'#35335335vv++*++ u++++++ "3!265'33!35335335k++*+++jU++++++MV";&54>325'#"'"37;2?672?6/74'76/&#&/&#2"&46(E( vvk  +  "(E(W uk % %  % % JJS";5#3335'"'"37;2?672?6/74'76/&#&/&#2"&46k+U  +  *Vk@U % %  % % Jk"3!26=4&+'35335335UV+@++*++k+++++++k!"3!26=4&+'!!35335335UV+V@++*++k+VU++++++kNW";&54>3254&+'"'"37;2?672?6/74'76/&#&/&#2"&46U(E("+  +  k (E(d+ % %  % % JkLU";5#5!354&+'"'"37;2?672?6/74'76/&#&/&#2"&46UV*+  +  k+UU+ % %  % % J*"264&3"264&#3&'#77'6735#5,  ,v1/hong= ),,,,*+*+*S!XX!S82+*V!*#3&'#77'6735#5"264&"264&1/hong= ),, U*+*+*S!XX!S82+*, , ,,  (5F753#"#54&#462"&462"&'462"&7&"2654#"&'&547632+*+   *   U   +|+U|UF +( $'. +**  "    \**5>UU>C $'. $'.2&'&=#54&#"?6=7626?654&J* >M o  mM~8ZY 8 [>9=  <9>[+(,";26=##535!35#53";26=4&#3#+*+UVV****+UU+++V-4%2"&467"264&'#37#3#5#"32653754&"&53  &&5%%jj@@KKU#2*&5%`` +   +&5%%5&+@*9]k2#@%%xH '+/3";#"#3;26535#4&+5326=4&#3#73#73#k V ++K**J++U* * * *U@+++++k+ #3#535#53#3#535#5VV++++++++++ ##3#535#53#3#535#53#3#535#5UVU++++++++++++++37#'##3#535#5+*++@V+kk++++k+37#'3#3#535#5+*++V+kk+++++37#'3#3#535#53#3#535#5U++**UV+kk+++++++++*37#'3#3#535#53#3#535#53#3#535#5++**UVU+kk+++++++++++++ #3#535#53373'7#'Vk++++++++++++kk66kk66k$7'#72#2354&'64&7/7h=Dy<#2 %*=j---j"264&!";&'67#53675363254&#53#53k  +EEVFF+ ,tt&,!X   @/&&00&&/ -- V@ VVV/##35#546;5#"4&+32+3265;5#"&=*ր +6  5+ +5  6+ V++* *  * *  * @2<@DNRVZ#"'&'#37676;;35335335326=4'3"&=46;3533537+532'#53#53#53  +++H++K++@++@++@%  V **E*@@@@@ @V."&462#54>32#3462"&7"&5##234632G22G2(E(/< ,, @@#22G22q+'k, v %.A%462"&'3"#4춭3%2"&467"264&"35#47676325&U ,, @+@@##22G22$(E(  4"', k##+2G22G2'++  0k)8"264&"&462'32#54&+"353!46"&4767$22G22##g#2++2#  # 2G22G2##2$+U*$2 #  "2>4."/#762'':b99btb99bn% ]U Z7T9btb99btb9Y]  A+ !-#"353354&#537#35326=4&#5;3#535#53*+*+**V++++UU+VVV++V+V+++++`3AQ%"'#3'>4&+";#.#"3267372>4."&4632#3!"&54677'632?I64& *  0<'11'<7;1:11,,)^^)+ && ,,{ %sY  p'41:14'!-11:1,>," ", KK,>,048754&"";26=4&+5462#63234&#537!73$.%  u %@5ի/  4@@рU    K  K    , :k *@5A..=>.".76.7"34>'2.546$.$);;)      .(..(.   ;+  +;j   !*535!"3!5#>=##3;262"&46++VV+  k  @+**-jj-V+ "   #(06<DJN%4'3654."327&547&'3676'#6&4733.7#>7#&4737#&#5`H9btb99b:  P$` R H7? //?/{dd/?   :b99btb9! ),"),,($*+! '' !($ ')+++ %1:"26=4&"&=4627"26=4&"&=462"&462&&5%%   %%5&&     +&@%%@& @ @&@%%@& @ k  + &3<2"&=46"26=4&72"&=46"26=4&"354&%%5&&  &&5%%   +&@%%@&+ @ @ +&@%%@&+ @ @ k @@ V&7#'4625535'"&=462#4&"265k  @@%6%%6%+   @@ I*@@++j&&@%% @ V %18@"26=4&"&=46226=4&"7462"&55#535%#'462%%6%%   %%5&&   U@  U%@&&@% @ &@%%@& @ ++*@V@@ !5373!+"&%3#53#kKk@++++k++g+ր 7!+"&735'3!537353'53U+ KKk++++k++++V 7'+"&=%#'373'+e +9j5P q++@ 7'+"&=3'7'5#'73#'373+e ++n+J+9jP ϥ[*o+@++k!"3!2654&!5!VVkk!"3!2654&#3Vkk!"3!2654&#3V|kk%!"&=3#!"&=463!2!!**@+ #'+/37;?CO5#3&5#53675#535#535#535#535#535#53#535#535#535#5335#135#353##5#535 +++++++++++U********++++++@@+@@+U* +*+W *++*++**++*++******U@+@@+@ #'+/37;?CO5#3&5#53675#535#535#535#535#535#53#535#535#535#5335#135#35''7'77 +++++++++++U********+++++a...----.+U* +*+W *++*++**++*++******}-....---3%3#'323!53463!#546254&"";26=4&U++UVH, j *++*+*   U U  '!53''3'7#5#;A-CU%:+A[ < #7#!37#5#[-A;*8HU+ A+:zf8I<*k3#'#57#35335##3pH*xx@+++*+k"%'##33&"5#'#337#33535#5x*x  psY@@+@@k*k+l++@+@@+@k"%'##33&"5#'#337'77'7x*x  ps.----...k*k+l++ ---....-k#'#"3!26=4&#5##5#7+VQ++*+kj@+V@@VUUk #'#"3!26=4&!5!53353'3+VV++*jk+@+@@VUUVk%)-%54&+'#";32>54&".4>2'#535#53+B#)E(11;11++++B+"(E)71;11;1k+k$159%54&+'#";32>54&#5!&#"".4>2'#53#53+B&)E(U%)D(11;11++++B+#(E)6~$(D)S1;11;1+k.2B#"33;5#"&=3527676?'&'&'&#535#3#3#56;2+V$  $ UU $  @@@@@@.V.  *+ *  + +/37C%54&"";26=4&+5462%35#";5#"&4635357#3263. , k @VV11VV''1@++VV#;k   U U )1:1)'6'-**W)))&0 !"7!2654&!!##5#5353U+VV@*@@*Uk+@@+@@ )1977632#"'&'&546;27"264&"&5477'632I-/ $( cTR02 K  (88P88(% W%W%-I/  K 20RTc ($ 8P88P8&W W %'+!!.'>"!54'&'&'"264&35+V! %%5&&U*  %6%%6%U@@!*.!!>7.!!54'&'&"7"264&35VV(k,jU**   ,, @@@  *.#!"!%#5327"&462!5463!2  u, *k+'5, ,$."264&'#3276764'&'&7!"3!3.!5463!25,   +*+D* ,, 5'U++V(1:J"3!26=76/.#"&/#3#"'&?3"&=73#"&532727;!532l* *   k*`*  v5^##^*^ gg ]d  ``  2q%54&"2>&'2#46@%6%8D8\ * %%BA((AB q%54&"2>&'2#546@%6%8D8\ * %%BA((AB @%."2>54&T0@0:G9btb9G'44' %##%V%."2>4&'&5462k/8/199btb99]??&4&!66! '/''/' $22$  33#!3'[t!Bm+;}U>~ t!m++:>~ 33#!'5'#53'[t!Bm+;/+U> t!m++:/&+'>9BK%"&462'254&'&"67632"&'1&'&=476767"264&"&462$!&##4#  .$.&! ,,>,,U$$ ms    m p,>++>,k -1592"&46"264&2!547676"!54&'&#37#3'#3#22F22#$ &+ +&  (( **V++++k2G22G2+## @@ )+++++'0%!5476737'62354&'7'"264&"&462]"" Z&Z P$#22F22 kk %Bl((lB ##2G22G2%4E7.>276?"'&'&57.>26764."2"'.54>'3!'34  &  !3' 3gR!.O\O.!R:b9E04X40E9b747    7474?+0OD))DO0+?3Y4+p&))&p+4Y3#5##";2654&#53#539$#  {++++k**  G + %#37#5##";2654&#35#3+$#  {++++++**  G @j++7CLTf%4&'654&'654&+"3!2654'>32+"&4632+"&4646;#"&#5327#."#"&463!2  ++  ++ʖ  ( KK 6KK d!(!d  @ '',,''! ,, ! k @@k#";724.#757"&ՀV#2U.O.+U##U2#+.O.UV*!,2%54&+54&+"#";>&%3#".>2'3'UUUNTAUUG88E8q 4DX++#" 6PS+*BA((AB<'!->D%54&#54&+"#&;>&%3#5!&#""'.54>32'3'UUUNTAUUU"(E(G1$i 4DX++#" 6PS+:(E(+-1-3-<'#,;26=7'#53%+'546;2'32'53~ K> k Vg* W_~@ > BUf+ (327'".547'632'654.#"[?9b:H9<.O. ,4=:b9 .O., ?B$:b9,<:.O.6- A 9b:=4&,.O.(159#."#"3!2654&3#5##57#532462"&#535#53Y!(!Y*+@@++0 $>   kkkk*kU@, %  +U+&*.4A#."#"3!2654"&46353!353'535#5323#57#5Y!(!Y*  b**kkkk+ $(@++*   U**++++@U+ %,,I!"3!2654&##23#"&=4Ȏ=46;"+535463"&=#5323*++++++++*k**+*+**+'!"3!2654&.467'>4&'7*""""*CJC3"&462"(!!("//"(!!("/    ***     k %4>254&#!";&'573#'#;EUU@+";# +kk+j@++*@k!%47#5754&#!";&'3#'«+UU@+ jjl  kk++*@k %4>254&#!";&'575#535#;EVV@+";# +kk+j*++@k!%47#5754&#!";&'5#535«VVV@+ jjl  kk*++@!*"2>54.2"&>#"'>;'"&462:b99btb9 7".4>32'2"&46"&462#"'>;:`eI'V4.O.*9btb99b:*O< iV' %;"V4V'Ie`:.O.:b99btb9 kk%"/&75'&>3!2'577 Vf * fV*Vkk- U m {lv+lkk "&*/!35#735#%;5#35#"%34&3#35#'35#35#265#@++U++UUUUU+**++U++U+++++*+*++U++* "&*/73535!"35!354&#26%!53573535#35@++*+*++U++*++U++UUUUU+**++U++U+++k%!5!5#'#"3!26=4&33'3V+V*@UU@@++@UVVk#'#"3!26=4&'&462762+V3II # #@+KK $ $k$%!5!5#'#"3!26=4&"764&"'&V+V II # @++U$ KK $ k'0%!5!5#'#"3!26=4&.#"326733535"&462V+V!%%!/+*  @++%7$**++   k%!5!5#'#"3!26=4&#5#7#V+Vg*@UU@@++VUUV72654'7#'&'&#"367632d:7 +*$f * - (7H ;D'&5235'&67'&23675'&'&#"334&'&'&53'"&462LJ'-&5,B 2+ 5,  +  @  %  :XI (  ,,(2<FO7675'&'&#"334&'&'&53'463"&'&5235'&67'&23%"&462LJ'-&5,B 2+ ,RNNR,  :XI (  ,V,  +  @  K #'%2'53+'632.546723#* <%,@#(**,,***"VVU@*9 &*=)(()=(/5G#'?#";2?/&#'?#";2?/&#'?#";2?/&;N`//`//:M`00`00;N`//`//k6556*UTTU5555+TTTT5665+TUUT $(%'32>7#"&'723.#"7>5##37#UVB-2-+#,#>#+-"7 !*+@VV0N,,N08HH8H80N,N>0=*** $(%#>23."#"&''32>7#7#3!3'#>#,#+-2-BVU! 7"-+#*V@+8HH80N,,N0V=0>N,N08H**#!"3!2654&#3#53#535#537!5!**UUU**U@V++++@#!"3!2654&!!35#535#35#3U***UU*V+++*+*,IM!"3!2654&##23#"&=4Ȏ=46;"+535463"&=#53237!5!+++++++++V  + +  +  + @,E!"3!2654&!!"#2;5#54=35323"+535463"&=#5+++U+++V++#+#+*#+#+*'+!"3!2654&.467'>4&'77!5!""""[V =C= 8>7 7=7 =C=@+!"3!2654&!!'>4&/.46s"x""V++7<8 373 373 8<7'37!"3!2654&.4677'#7'373'>4&'77!5!"O 1 /5""FV=C= 8>7++B>++@@+ 7=7 =C=@+7!"3!2654&!!'>4&/.4673#'#7'3^"""| /"1V++7<8 373 373 8<7@+@@**B>AKU%67654&'#57'&'>4&'7''&'&547#77357'?&547467.U=!"-*(+6+!(' @@ '(!+6+(*."!=)L@*@L)% !+,3*L-=-& " 9D9!++!9D9 " &-=-L*3,+! 0****0) %#5 )) 6"% ) $,5=Df%#67'&#76.76?6'2?&'>?>&/?'#'&/&2;76?6?6&/&'&/'.75657674'7&'&##.6?6276?&7'4'&/.6367675674'&=4>776?620331/&'&'"#* y1 '2$/S' ' $Q   & &k i+*'  # -  -, *  !60@! *JJ9   +,&  !%-##D7'.46?>6'764'&"#576&'&"'&4?&76?> K77)  5K K5  )77&# '*'L)77  5M5t++\3 5M5  77)&1+L7'.46?>6'764'&"##5#5353'6&'&"'&4?&76?> K77)  5K@+@@+Q K5  )77&# '*'L)77  5M5t+@@+@@\3 5M5  77)&1@L7'.46?>6'764'&"6&'&"'&4?&76?>'77'7 K77)  5K K5  )77&#-,,,,--- '*'L)77  5M53 5M5  77)&1,,,----,"7676764.3533)D(  (D5V5`(DP4)1"##"1)4PD(jj`"7676764.##5#7)D(  (D75V5`(DP4)1"##"1)4PD(kk`#+%!!5!";#35#532654&?'?'**  m4444k*+**+J  333z#,5'7#'7373##'#7'373'#73'73373#'#'#'7'h8 O87 &:bh/ (E7 (:h8 Oh/ ()11(1Gw11D1(1E)11B11D/V!%/&"'&'&#"3!26%#73/7{  +  y e1JXYaz8 M  X %#,5"3!2654&#355#.4>"264&3"264&ZL**E''E***E''E!  L,))0JTJ0))0JTJ0%.7"3!2654&#2".4>"264&"264&3"264&ZL.O..O\O..O. m  L*.O\O..O\O.+` $7#572#!"&5463"2>4.#5*.O..O\O..O'*jjL*.O\O..O\O.vjj"(4>'.'673677&'5&7'77'7.I#S::\/5T\A1%/)*M)@2@.z77777777+7T.:S+Cg92T5)"1A/%~@2&.s)*77777777"&*73267'#"'.7>76#37#4."3#53#+3X5&G )?0&#"F-+P@UT@4XiX3++++4Y3 ,Q*.C"#%0UU4Y33Yt+ր%)-552'767>&'.7&'.7'%35#35#jj07 ($'  >  x****jHjkbBB*  XX! + Q$ 2t:+#'"#7#4>2#"&'32>4.3#53#4X4@VU@(DRE((E)7E'5X33XJ++++3Y4UU)D((DRD(3YhY3+ր#-77"&462"264&"264&"264&7>/&2?'   +  t  7  vL- &-Kk     +      [Ku %- ,L"+4=1'7"7>/&2?"264&"264&"264&"264&h.v] vL- -  7  t  7  k-^Ku %- ,      +      '%!!5!";3532654&?'?'kk  m4444U+++K  444'3!"3!2654&.4677'#7'373'>4&'7*"O 1 /5""*CJC++@@@:D<CJC@ !5!#367!!#3RBek++*k+@ !5!#367!!#33535#5RBe@@+@@++*+@+@@+@ @DH?5#3375#3375#37"#526=4&+."#"3!5326=>54&#537!5!k*@++k+@**j+@++ @ Q +/* Q @@ @UUUUUU +  @ *V @DHL?5#3375#3375#37"#526=4&+."#"3!5326=>54&!!#53#53k*@++k+@**j+@++ @ Q +/* Q @@ n+UUUUUU +  @ UkU*6:"335326=4&+54&+&232#"'1"&46;5463#2 '2#@ +2#$! 6U    **$0$2* *$2+  # &-4#."#"3!2654"&46353!3#5#7#733'3Y!(!Y*  b**@*+@@+V*+@@+*   U**j@@k@@#";26=4&#537#537!#3!gUU***++U* '02#5&5467'654/&47!'64'&4 * z(+ 33>>.>>33 + ""/(<:+.* 433BBBUY?33-+ +s+/7;CGOS[_gksw%7'5#'#37375#'735'3'5#7'3573#?5'#57'53'#'5#'73#3#'7#73#7'55737#''3573'#37'537>>X??X>>X??X22s s Da #DQ Q4(W2( (D({GQ QDa;2s sjDQ Q4(W2( (D(4Q Q??X>>X??X>>2( (mD D({GQ QaaX2s sjDQ Q D2( (D({GQ QaaX2s sjDQ QGb9%27654/&'.'&#""&#"7#"'.547327654&G&  '0{-$20+8%0.EH@E!$ I   = 0  "&$",k !#####3#3#3#3#@+**+kkV++++k !#####3#3#53'53++++*j***kV++j**Ukkk !#####3#@+**+kkV+ (5>KT^h"264&"35'735#'.'#"&46;"2>4."&462%"2>4."&462%#"&46;7#"&46;U \ O H&02%YD)= 11:11,,>++ 11:11++>,,\ WU (  = O  +k#25&F   1:11:1+>,,>+1:11:1+>,,>+  F  (k 3#53#3@Ukk**V++kVk*377'7'7UVjj4????4J????kVk5@@@@5K@@@@k '%"764/&37#"&546;3'33'33'3,.,ث+@+++@++*@*U, &,lVVVVVVXk%*!'3#"&546;3'33'33''762#57(&+@+++@++*@*^, ,kX(K+VVVVVV +Q,k (#'##'##'#"3!265/?7/?+@+++@+**@*V;;;>,,,k@@@@@@+;;;;,,,,,k .7?'7#'##'##'#"3!265!53?/3,,,,+@+++@+**@*V*&  V,,,VVVVVV+K  ,6"/&5'32'72654'&': C)B  c  x-y ,  BkB b Jx-yI \al"2?32?>/7>&/&'67&'&'.&/&'&'&'&'676'&'&'567627>/&#&'&5M  -(F     /*        w    < = {        &2    >A   \!hs%''"2?32?>/7>&/&'67&'&'.&/&'&'&'&'676'&'&'567627>/&#&'&5`S($ %   -(F     /*        w    FPP< = {        &2    >A   7'77'?64'.<..f }-7-<-if $ |7'77377'?6477}j.<}-x[ZZ.f [jZ..i-<|y[[Zf $ZjZ--+ %3'37'5#@@k@k'`k "3546&35#5352"&46%&rK++*%jj% U V+4=FO%2#5>7"354'&'&'"35#5467667&'2"&467"264&2"&467"264&`77!%u&""  %%6%%  ,u  00  5   %5&&5%J   ,, #'3!54>35#53#2*Vj11k*1++1#'3!54>35#53#24&+"3*Vj11*&V&k*1++1&&!#'3535#3"!54.##5#53533*V1*1 @*@@*@k*++11@@+@@+#'3!54>35#53#24&+"3'##5#53533*Vj11*&V&++*++*+k*1++1&&V++*++*36?%!54>35#53#2'7#"35335335654&"&46277"&46211V#22C    1++1**2# #2U      4=@I#'3535#3"!54.#546;2'"35335335654&"&46277"&462*V1*1#&V&k#22C    k*++11&&*2# #2U      "#5##5##"3!2654&!5!3#'++**UUU++++**+@+K"#5##5##"3!2654&!5!5#535++**UUU++++*+@+K(,H7#53>7533##5.7"2>4.35#7"3462347>7654&A,,/J,*,J/,,/J,*,J/)D((DRD((D<&&,&   & ,*,J/,,/J,*,J/,,/J(DRD((DRD(%,    ,'075#5353%5#3535'#.'5##!!463532'264&"k***+.!*!.$$+U@U+!!+#%/8#3#3%5#5353%5#3535'#.'5##!!463532'264&"****k++++-!+!.##+++++U@U+!!+# "+367"!4'#"&547'>75333##'55#53537'3[{9 ;*!.*QQ%-|9 `;!+@+;U+U/QV )9=A!5#"&=46;535#3135'32+"&=46!353335#535#535!3#+++**++****+*++U***+++++V@@+U++ >='7'?2X66X2~BA:LL:V:lLLl:''J2FF2 !%.=7>='7'7'?2X66X2'E))EhBA:MM::lLLl:VV @X.iBBi.X@`''J2FF2#+46;##+5353"&=332#5#533535+VV*VV**V*V+*+k*V*VVV*VV*j++ENV_.'&"."2>54&'54'65456736762#267>&%2.3"&4"&462P%" &/";E;#0&  G22%/     k2G22G20     B)#;"";#)B    2G2 BBT  / $22G22k#,#33535#5>54&'>5#"&52"&460&++*++&0+%6%@%%6%%--&;-+**+-;&--%%k%5&&5%k&#'72>54&'57'7'"&462**))*%11:11%*))*&&4&&0%&H:'11':H&%&5%%5&%#537!"3!2654&#3!5!*++U* %#537!%!"3!2654&#3!5!+*++k*U* (%##5#535337!%!"3!2654&#3!5!@+@@+@+*+@@+@@k*U*'!"3!2654&#577'762%#3!5! ,,", *+ ,,", *,#3!5!'7627#71!%!"3!2654&U*+:, ҁ,,@*, {,*!'!5!5#5463!2&#"#37264&"''U%*%#& jc   u J+ K+UU%%<j  J* J@ 7!5!5!535#''7'77@...----.*k+++-....--- 7##73#'3/1575#533FE>3B@C5G0 f\ceUFF:\.)*))+ %/##73#'3/1575#533PEF>3B@C5G0 f\ce+FFd:\.)*))!%!"3!2654&"264&** U*+*%!%!"3!2654&"264&"264&**  U*+*@%.!%!"3!2654&"264&'"264&"264&** m  U*+*`%.7!%!"3!2654&"264&"264&'"264&"264&**    U*+*@%.7@!%!"3!2654&"264&"264&'"264&"264&"264&**   m m U*+*@``%.7@I!%!"3!2654&"264&"264&'"264&'"264&"264&"264&**      U*+*@````?!"&762'#5#3353#X  !CB!}99} Z }ek## @%"&=7>27#!"&5463!24'&#"76767635#3?676   *         *   # &/8"2?64/&2"&5467&546"264&"264& $  .      $ $        C$1"2?64/&2"&=463#55"26=4& $  . 8 &  $ $ 8 8 {  < <  (!#5573#576764'&'#"#>213UU")Gr !#" "I    &5AM'&"2?6=4#5767654'&7676763237"&=462'"&=462  m   !  F - -   3^^ ^^       ! 9 ; ;  /8AJS"&462#57#";26=4&7#"353#326=4&"&462"&462"&462"&462+  3   +@Q F      7     U+   Q@+ k   @   U   @   "&*.2"3532>4.#2"&46"264&3#73#73#73##9#%0#;"";#$22G22#++*";#!";F;"+2F22F20  e!*37"3532>4.#3#3#535#54632"&46"264&35#9#%0#;"";#6!j2$22G22#";#!";F;"+$1@@#22F22F20  e33537"764/&37@jVt",/,s, %, %2'76#53#5#75,%+,kV@՟4 ,%,,`+5+'54&"";26=4&+5462'7!55<%.%  v &@UUUU+   K  K   @VU@@UV@'%54&"";26=4&+5462'3'3#7#%.$  u &@@UV@@VU@    K  K   KUUUU,"264&7#5!#53!5#5##5.=326=3$***Vk+*+")+8P8+)U##Vk++k++kkA( (88( (Ak-5462"&467547&#"37+"&=46354622'4&"32G22G2 "&.N. v  %.% 5@$22G22  '+%K  K    0  k'=E7264&"72"&46#54767632&#"3754&"";26=4&+5462$22G22##<+&%* $!!(%.%  v &@2G22G2##@      K  K   ',048<@75#535#535#533#'#2632>32!675#675#7#3'3535!!U+ ?!1D9E++++UU*` +D1+@++  %'7+@J+ Kj++KJ* Jj  -'5%'7+@jJ+ Kj++DD/J* Jj"732>4.#2".4>7'5+ P2)D))D)11:11@0++B0=)DQE(+1:11:1 U+ E!',732>4.#%'2".4>7'55+ P2)D))D)11:11@0k++B0=)DQE(?P'81:11:1 U+ E).2 '5 %U*@?DD/++ #)%54&"";26=4&+5462%'5 % , k @*@@  V V  DD/++-7'"'"'76767654'.'&54767'7'?*']'']'*  !."(!!(".!  BA:MM:k** @  @((K2GG2#Q[327&'.547567654'327"'"'76767654'.'&5476?'7'?),"  /%)..)%/  ",']'']'*  !."(!!(".!  BA:MM:f &$#: ! ! :#$& @* @  @ ((K2GG2@%)0#5##5#3533&547536753535#5##53#3#37@+*+++++*+*++UU@@kVV+++ ' O'  '*kkkV*++@+ 3##5#353'53%#5#3533#53*++++++U+**++++++V+++UVV+V++V '"&462#".5467&"!5'265#,>++>,+6  &/;++V5++>,, 6*O2** !"7!2654&!!77U+VJ6J`U`@`/54&"";26=4&+5462#!46;#7!5- k @U<  V V  jU*j 2#!46335UVU++ !"7!2654&!!35U+VUk++ !"7!2654&!!#53#53#53U+V@++V**U++U+++++ !"7!2654&!!35#35#35#U+V**V++++UU+++++ LU!"7!2654&!!'5765'&'&/4&+"'"?;2657672?6"&462U+VE * * j U$ $% $!.4%54&#!"7332>4%!!"#53#".4>2''53UFO2)D)6m[F//8004D U/<(ER++@08//80l'O!.28%54&#!"7332>4!&#"#3".4>27!5!'53UFO2)D)V'/6mO//800 4D U/<(ER)*!h08//80+'O!%754&"";26=4&+54623#53##!46;#7!5 , k @UU=  V V  *++jU*j"&462".547#"3!26=,>,,>,K 6*`,,>,,6  %)AD#"3!265#"'&'&47676;#";7#5#532764'&+532'5+    Uk    )v ; + 3 @++k+ 3 + ; uu +/G#"3!265!33#"'&'&47676;#";7#53'32+532764'&+++k    @VV    Vk ;  ;  @;   :  +.#"3!265#".546;27632'5+@7\7*3Vv7\73uu 1#"3!265!337632#".546;2++k37\7*Vk\4*6\7k=2"&465"&/&+"#267;546;2+"32654&/5$$<  1G,LR /@@  RLk$$*"":*#"0!     !0"#"264&37354/535#ҀlT* K##j+l2S_ -b+ 75577;26='#5++49b5a*+*K++K*6jc5b+1[#!!!#5.535%35355#75G99G@j+"k9`%%_:*=/kkkkk/3%!!5!"3!2654&3733733#3##7##7#537#337**2++*$)-2++*$)-X*+*+*@@@@+*+@@@@+*** 75735#'7'57V++Zkkkkk/QQOOO::O::(#'&"#"3!26?4&'#!'!"264&f]]f 66 '&54&+"326=4&%3&&'73'34.#234.#2*#/.I/ K 10STc '&+"U+1%U+4X4)D(u /I,/ '& cTS01 K  +s1+%4Y3+(D@#'3733733#3##7##7#537#33?#3#3k1**+$)-1+++$(,W+****@@@@+*+@@@@+***k*+&)7"&4627#!"&546;#.76733537'   Uo /20 *+ vk  V00 **uu #,#"3!265!33.6733535"&462++kn(..(*  Vk$/#**++   !#";75326='5'757'5+@++@j++**++*@`@@++**`` #/4@%5'757#";5#33#326=5'75775#75'757+++**++**Vj++**++*++VV++**++***++++V+**++kk**++(,04!75#75'75?!";5#5!#326=4&#53#53#53++VV++**++*Vр+UU+k++**++k+k+k++/3=MY%#.465";635.7>.#2#2354&'35335#35;5.4675#".>32U **  , $$2 $  k  j j   !*;*#'3+(   3#00":&$@    )/CWk2>.#7767'>5!6?372"&46'3"&7356'&/&'&7#356'&'#&'&7#356'&/&'&7#k%0*l* (//)U!  5@5 1 1  1( A!I,,I !U   ##]   "     "     "   +/5A3#'3#7353#'3#73573353#3#5##535#5#5#5#3#33535#5k**V+U**V+UV*VVVVU++++*+U*@@*@@U*֫*֫++++++++++++U+Uj@*@@*@  +/593#'3#7353#'3#73573353#3#5##535#5#5#5#335k**V+U**V+UV*VVVVU++++*+UjU*֫*֫++++++++++++U+U***  +/5A3#'3#7353#'3#73573353#3#5##535#5#5#5#377'7'k**V+U**V+UV*VVVVU++++*+UQ<<<<<<<U*֫*֫++++++++++++U+Uo<<<<<<<"(.26%"'#".'7>'&54&+"326=4&%3&&'73'53'53*#/.I/ K 10STc '&+"****u /I,/ '& cTS01 K  +s++U"(.14B%"'#".'7>'&54&+"326=4&%3&&'73'5737'7'#'*#/.I/ K 10STc '&+"F1 =..= 1;;u /I,/ '& cTS01 K  +e1Q=..=Q1<<"(.7?G%"'#".'7>'&54&+"326=4&%3&&'73"264&"&5477'632*#/.I/ K 10STc '&+"5(88P88(% W%W%u /I,/ '& cTS01 K  +H8P88P8&W W %"(.5%"'#".'7>'&54&+"326=4&%3&&'73'7'#3*#/.I/ K 10STc '&+"kkUUu /I,/ '& cTS01 K  +kk@V7 &,%&'&27676=62?64'67&'5E\YY\E5 0d0 5s!B"BB5BB 5 @ $"(.7%"'#".'7>'&54&+"326=4&%3&&'73=#7'5#*#/.I/ K 10STc '&+"Juv u /I,/ '& cTS01 K  + vuJ"(.6L%"'#".'7>'&54&+"326=4&%3&&'73#546254&"";26=4&*#/.I/ K 10STc '&+"I , k u /I,/ '& cTS01 K  +    U U "(.26:>BF%"'#".'7>'&54&+"326=4&%3&&'733#73#3#73#3#73#*#/.I/ K 10STc '&+"++@@++@@++@u /I,/ '& cTS01 K  +3+++++++++ %%"'&.'76'&54&+"326=4&735($ /.H/  K 20RTc @u  /H-/ $( cTR02 K  @"(.37%"'&#".'76'&54&+"326=4&%3&&'7735#53($/.H/  K 20RTc '*'@+jju /H-/ $( cTR02 K (4@k@"(.2%"'#".'7>'&54&+"326=4&%3&&'73'35*#/.I/ K 10STc '&+"u /I,/ '& cTS01 K  +++"(.7%"'#".'7>'&54&+"326=4&%3&&'733735*#/.I/ K 10STc '&+"UKvu u /I,/ '& cTS01 K  +3 uvK"(.26%"'#".'7>'&54&+"326=4&%3&&'73535+3*#/.I/ K 10STc '&+"++*++u /I,/ '& cTS01 K  +"(.:%"'#".'7>'&54&+"326=4&%3&&'73#33535#5*#/.I/ K 10STc '&+"@@@+@@u /I,/ '& cTS01 K  +3@+@@+@"(.9%"'#".'7>'&54&+"326=4&%3&&'737#5#'7*#/.I/ K 10STc '&+"+ x4ZZ4u /I,/ '& cTS01 K  +kK4[[4"(.26:%"'#".'7>'&54&+"326=4&%3&&'73'#3'#;5#*#/.I/ K 10STc '&+"*++V**++u /I,/ '& cTS01 K  +++++$"326733535#.2"&467'7'(88( 0 F@@ 0 m>/53 />8P8#@@@#@7(< <(2JN"326733535#.2"&46";5#"'&476;5332+3276764'&'&#35(88( 0 F@@ 0 B    *    k8P8#@@@#@ : * 3 ** 3 * : @** %'7627#'75'- ւ--+SB-->BVVL! %'&"7>37'.=75' *-+BS+<.* ,-!LVVB*QBBi7i"1%26='67&54>552>.".7'37' 2X6 &?&00 ( (00VV:lL'2&@%5 00  /)  /* 00&5!.=76='67&7552>.".7'37''E)2X6 x00 ( (00 @X.iBB{ VV:lL 00  /)  /* 00&4=%'35!#332653265354&"&4627'7'7#'53"&462#+++%6%%6%+% `;o! +U+L1*%%%%*!6%#@#%* /:%7&%67572"'&'&=&""/4&547>'#53#7%H06  -j- 51. K`u&  $K405  BB 5 /5K `"4%&'7326=4&#"'#"&'7&'7#"7&'7>'&54&^ 1 ki2|C *#/+5K D / U Oi-1 K / +&+ u_ / +" @ 75#7#7#57335#7#7#5733(*z3U"+C(+{3U#*B@Uf+eEUUf+eEU@ 33753#7#%33753#7#(*z3U"+C(+{3U#*B@Uf+eEUUf+eEU%77632#".546;2%''H./ %( Hf7 K  q1O.H/  K 7fH '% Sq1O%+1%"'&.'76'&54&+"326=4&%3&&'7/77'% /-H/  K 7fH !')(UO1qu  /H./ %( Hf7 K (O0q"(,2%&'&"27676=622?64/76'#37'22?BB?25 /f/5=L&%**L%\005BB 5L%&[j<L&"(.48>%&'&"27676=622?64'67&'5/76'3#7'22?BB?25 /f/5s!B! L&%**bL%\005BB 5 ? $L%&[j<L& "2>4.5"67675:b99btb99bo< &-Kj9btb99btb9@VB+3 @k 72>4."7&#+9btb99btb9@jK-& +;+k@ !%)32!546##5##5"&=!'35353#53#k+*++++++++kkj**@@@+ր!%)-3#5"&546;2##53535#3#53#3#53#*+++++++++@kkk@++ր!*.26";#326=3;5#532654&#2"&463#73#53#@@+@@V#UU+++++*++*+?## +ր,1'>;2'>4&"3#"&=#+535#"&='7/5'#P }#i@@*@@hf,8/P }"+*++*+h[e+ #,;?C3265326535"&5467#5#21'6/346;23'35#53#5\)+   %,i#2u %++ "+< V @@ ) $$--2#% u + ļU++++ $(,8A#";;26=3;%#53'53#53537>=4&+72"&46\V + O+++X***+@f$ U  O+++@k@## ''!5#5346;'7'>32535#4&+7.#":, B|H1+@$9*[  Bg*$2 @!%048!"3!2654&2"&46#2"&46!!"&676?3#53#U  7  G"/" 9****V*     "".S+ր %.3!27'!32767'34&#!"2"&46[= =^ "0K+c  >:] ." K*(   !.:FJN!2#!"&546"264&3"264&"2>4.3#6&'&73#6&'&3#53#U'  8  "";##;E;"";v) $( $^( % ( $****V*     V";E;##;E;"5 #6 #7 #6 #)+ր &7@3!27'".5467#36'&'3'6324&#!"2"&46[= #;" $ )$ W"/+ #;",c  >:#;"/7# 6# W";# +(   '48<%"'!2#!"&546"264&3"264&"2>4.3#53#2GD'  8  "";##;E;"";****G2<V*     V";E;##;E;"+ր -63!27'".54672?'6324&#!"2"&46[= #;"Z=F/+ #;",c  >:#;"/[=";# +(   k '04%#53#535#53.+";26=34>325"&462'73**V@ ,  k(D)"- +**++V@ )D(Uk``'!";;2?32654&#577'762V O-,", @ O--"+  33##'#53#5326=375353*5K*K5*@ *$+++jVVj* $V++ "&*33##'#53#5326=33735#5#5353*5K*K5*@ *$\ KK ++++jVV* $+UU+kkUV++ #3!!#3U**Uj@V@33#3##5#535#53*kk*kkj@V@jj@V@ 3#!5!35#**UV@@ !5!#37#3V@@@@*%#5##5##3353353j@V@oo@V@jkk*kk !53#35#Vj@@@@**VU##3'#353#k**++jj+jjjV@* 3##5#353#33535#5**+++**+++@@@*@jjjj75353#53##3@k**++jjUjVjj@33!53!5#5!jVjj@k**++jjk 735!3#!5#533535#5##+@*@@@jjjjk**+++**+++!#5#5!#75!3!5kjjjV@*k**++jj"2?64/&3#3# $ &**** $ $ j++"2?64/&'73535 $ *** $ $ *k++k 7#'7'!7!3!265@@@@Ku+*+uJ  o:KK:ŀjj  %3!%'3'!2'5q9 -@+++@(:T**++k+47#"&546;3'33'33'3."'#"&462'4&"26*@**+@+++@+U?J?&B(88P8,,VVVVVV$&?&)LB8P88(3,k,57#"&546;3'33'33'3&'5!'37654&"3277'"&462*@**+@+++@+U'8P88(B,VVVVVVJ (88P8B@,,k"&*3735'!";265326535"&4627#53#53"&462'53**&5%k%6%+ k@@U "5+++&&&&k@55"1#4."#"3!2654&'2#46!!"&5#2>5#*1:1**%%*%+1:1+%@11@%%U%11% .7''7'77''77'7'7.>32>7'74&"2611111111111111 D"1K AD% 7# ];,,K11111111111111Y @.E?=F.8M ",  #"3!26=!33#53#53@*+j*@*jV+k+#'%!"3!26=4&!5!!"3!26=4&!5!  V  V U U 735#3#35#3#35#3#35#53@+UU+UU+UU+UUի+U+U++UUU #;5#3#'35#3#735#533##5#5353@+UU++UU+UU@@+@@++U+UU+@@+@ %!#!5#5#3#53353+V*@@V %!#!5#5!3#5333353+V****++*@@VVU_"327'#".4>2#7#4.37;65767?6/6'76/&&/&+"'&1"&4624X44X4A4(/)D((DRD(@VU@4X&  % F 4XhX4((DRD((D)UU4X4!    !    U_"#7#4>2#"'32>4.'64'76/&&/&+"'&?73257672?6"&462#4X4@UV@(DRD((D)/(4A4X44X( %  &_  4X4UU)D((DRD((4XhX4    !    ! !5#!5!5235"'&'.'&'&#!*)"< "*0)!<!")1U@V* = + >k(!5#352335#"'&'&'1&'&'&#!35*** 5",**" !(3V*k+++ ? ++  #*p %?%#476762'"34'&'&#"34'&'&7.#3353356733535Հ !     0 *+D * D+*#&&#&##&&##& +UU // UU+  '.5"2>4.".4>2'3'35#37'#35#7#3#553:b99btb99b:.O..O\O..O+@@+@@@@+@@+@@@@9btb99btb9.O\O..O\O.@@@@+@@+@@@@+@@+ #%'76237'74&#!";57#777+-*&J6J"i*{,*)`@`-k )%'76237''37'57#!754&#!";+-**:6$?*+*{,*)3L50*)]&'775754675462'""&53{;"L`+;/$/;#;"< @"MM*2OO2";#@  -'773#"&'5754675462'54."3{;"L< +;/$/;1:1k@"Mb '*2OO211 ";575'#"764/&37Uրvv-/-(, uU- '-"7#3375'#";72'76#57Uk+U--VkB+, -T-N2"&462#"&'##"&463235'&/&467632+"/3>7'3&#"3>` X   [E@A 30A K  6? / !# # u0;F 7:  &2, )` 1%7/?'7'."'7'/?35726735'D@)YR9D+ & +D9RY(@C;3S+!6F6!+S3\DE"= Da II aD ="EC<Gta#--#atG4=F&"5#5'"&'#57&'#'7367''7>7'3/4&"2674&"26  ~F+0*.*0+F&;E3!L ^1660_ L!3E;   U   ll(aIIa('#/ +!!+ .$'   k %##5#53533VVV #'77'5#5#2&#"#".4>;"M***:b9#;" :b99b@"M^V++@9b:#;"9btb9 ,'77%3#53#72J."327#".4>;"M****:b9.O\O..O. :b99b@"M3+ր9b:.O..O\O.9btb9!27"&46327'7'"#5533264&'277'654&"%5&&A%W%!@@!&&B%W%B%6%%T%%5&rW\+@@*%5&rWs%%5&"#3575#54&#3#735335UU+*+UV**VU*k++++:%2+"&=463546254&"7.#"#".54>7>32j,*95$(8#;"4 L.:XU UU   =*".8(";# 8#'/IF%2+"&=463546254&"'54.#"#";#".54>7>32.#j, 6 (> #22##;"4 L.:X *95$U UU   60%2G2 ";# 8#'/I8=*".V'0732673267354.#!#654.#"532#3%2"&461,o!*!/:b:1$)HUp %%6%%1+:b9 1@"+2%5&&5%V 55"6767557땕Qr(3>蕕UUW58[;F$@@UV %6;7'5"676?557$L2:>*/YQr(3>hU .-W58[;F@@U.%+".5467>2264&'54.#".#"$=%%=$  4JTJ4 /(08$=$$=$":(@%%@(:R) . '8 )V"75!2#"&'##".7"264&73&':b:/!*!o,1k%%6%%p 9b:+1]%5&&5%+!27#7&#"'>3#32+535#*K780>8Y2uU*UUU78(B4DV+*+*+!2.#"#5>3#32+535# Iu2Y8>087K!U*UUUVD4B(87+*+*+ &3##5#5353&#"2>5'3".4>@@*@@* 11:1+(EQE((EU*@@*@*,(EQE((E)4Y33YhX4%#5537"&46272#"&/7>7'5#U**$$/N..N/9Y22Y$aR V$.O\O.D5225D<1o,2#5537"&46272#"&/7>"2>4.53U**$$/N..N/9Y22Y9";##;E;"";8 @V$.O\O.D5225D+";F;"";F;"jY' !2".4>"2>4.771T00TbT00T1&?&&?L?&&?uEF xy@kl??lk@+4XhX44XhX4EEFyyV 5@MS%264&"72.54664'632#""!5'&'&'&'&47676323#5.'%'7%%5&&   a %% a$  y#0 @# e;"&5%%5&V   SC%5&*   **   V   **,  f@"k%#"&5463!2&"7#33535#5VE;#k@@+@@#;" ^@+@@+@k %3##5#535#!354&#!";@@+@@jU+@+@@+@@ +%3##5#535335#;5#'3&'#5#535#5335335@@*@@*UUUUU ]VVVVUUVU*@@*@*UUVVUUVVVV]  #%35%35#;5#'3&'#5#535#5335335+UUUUU [VVVVUUVU**UUVVUUVVVV^ +735#;5#'3&'#5#535#5335335'77'7UUUUU [VVVVUUV(--------kUUVVUUVVVV^ -------- !'+/37;BFMQ%654&"3277'"&4627#535#53213#&'#53#533#3#'3#73#546#533#"&=3#8P88(C ,_+++ ++D++V**++U++U+++ s+++ ++-(88P8B@,,+*+ *+++U++*+ +++ k+  %)26?C%654&"3277'"&4627#&'53'#532#'#53#3##546#5'3#"&=35#538P88(B ,u **@@*VV@@*+@@***-(88P8B@,,j(*@@**@@V**@@V &%654&"3277'"&462'7/7&#"8P88(C ,#]]#2$+F-(88P8B@,,nI'0' (%654&"3277'"&462'77'7&'7'8P88(C ,#] 2zz[-(88P8B@,,nIRl' __Gk%/2354'6323+"&=3546"354&3+"&5 $ V @ @*  %14'6323/46254&";26=#'#"&=35'7+@V*,* V V a@d+$+ U @;V !+7%#54&''2#"'64'6#2"&46!54>2%7'77'@$ ~%%  a%%5&&#;E;"u---....-U**+  %5&C%5&&5%**'';-....---V !+4;G%#54&''2#"'64'6#2"&46!54>2'"264&"34&%7'77'@$ ~%%  a%%5&&#;E;"  #22---....-U**+  %5&C%5&&5%**''   (-....---$7#'654.#"677'''7'77 (E(2(! 0JO k+--..---(1)E(IOA  k+---.--.)%#'654."3277'"&462/'7'77K!%@K@%%@&3'j (88P88 '3&@%%@K@%!j j8P88P83 )53!53%!!32#546'!5++j[*+ **(#5##";2654&'5&'&54632632#$  { (  (k**  G  $$$(%/&'&46262'#5##";2656&#3 & () "$%  f %)(!**  I +(#5##";2654&'&'&5&632632d$$  c (  (k**  G  $$"+;D";26=3&'>7#5!23254'&2"&467"767654&"&46S&2  2& ,, 3& #'3kUZ3+,$$,f %!377'#!5+yD4M''33#5#53'7"&46;#2+546A<}[V;}[ @K @G! +.+V[};V[}<? k @( !G$+#+   /5;AGMS^h73357#35#>/>67&67&6'>'%335>/#35#3357#35#>'"&46;'2+546 K @ :!F3 %f0 <}[%f0 <}[ !F3 ` @ K @ :!F3 +.+ @k@ 3F!J$[}; /f$[}; /fi @ 3F!Q@ K @k@ 3F!#*#+%474>325'#";.#2'654&#'5"&54735%@%*vvV#2//$2/K%@% J2Eu@ 2#  / 2$  /#2#"&546;&'5#5#3752654&#'"&547'3 ku m//2#//2$VJ+k// #21  $2 83762#"&=462?326=326=326=#+"&=@F71  n17\U   +@F71+ @kU17[   @!!+Vk'32+35#"&=3235#+53235k + * ** *j+k+  ++ V ** k%+%2'53+'%3# ( ;%+UU @+:   !*3!7#7'3#5##4&3#2"&46+ ;*\zD++.Ue@%%5&&e+ +@D'QEU+++U+%5&&5% k"+6?;5!54&#!"3##535#537533#532"&4672"&'>"264&+UUUUUUU+UUU*  *FFTFF* ,@k@@*@+@@@   @/'&//&'/ ,, $*4?C;533277'%#535#535#53"&7'67.#'#354&+;#3 M F*+!UUUUU= @# 7 F*V+*|UU M'.+!@*@+@>(@#7'/@+k+@.7;"264&#"264&'&+"67'53'2?64%"264&#53 1    # =U    #* "7'72?64'7'&+"72"&46bjaB # A  > ajbB # RB  #4="264&#"264&7'72?64''77'537'&+"7264&" bjaB # AB@AA  4UJajbB # BA4@BB  ~ .7C"264&#"264&'&+"67'53'2?64%"264&##5#53533 1    # =@*@@*@U    #@@*@@.7C"264&#"264&'&+"67'53'2?64%"264&''7'77 1    # --..--..U    #..--..--"%'&+"2?64%"&462'7'7  # _UU8vv  #YVVuu$)-3#35735##'353#!3#"764/&373#+?*sbs!*V+++++C,/-**bsat+*+U, &-*!3#35735##'353#!3#3#735+?*sbs!*V+++++**bsat+*+*++%)3#35735##'353#!3##33535#53#+?*sbs!*V+++++@@+@@**bsat+*+@+@@+@+* !%)%'77'7'#'35#3#35735#53#537#53-,,,,---s +@*sb++U**++u,,,----,bsbs***+!%)-!"+"&54&#35355#75#75#5353@U@@@@kkkk+++++U+j*jV++)-1!"+"&543#3#3#3#3#35353@Ukk@@@@kk@@U++++*@*V++!%)-'77!""#"&54&#35355#75#75#{;"L`";#U@@@@kkkk@"M+k";FU+j*0'77!""5#3#3#3#3#3#3#"&54&#{;"L`kk@@@@kk@@ @"M+k*@#'+%#5!""#"&54&#35355#75#75#";#U@@@@kkkkU**++k";FU+j*.%#5!""5#3#3#3#3#3#3#"&54&#kk@@@@kk@@ U**++k*@ #'+/3%33##5#53!""#"&54&#35355#75#75#+@@+@@";#U@@@@kkkk@*@@*++k";FU+j* 6%33##5#53!""5#3#3#3#3#3#3#"&54&#+@@+@@kk@@@@kk@@ @*@@*++k*@!%)E!"+"&54&#35355#75#75##5'#5462#546?654&"U@@@@kkkkv %6%   +U+j* k &&  !    )-I!"+"&543#3#3#3#3#3#5'#5462#546?654&"Ukk@@@@kk@@֠ %6%   +*@* k &&  !     #'+/3%77''7!""#"&54&#35355#75#75#J-....--";#U@@@@kkkkm.---.--@+k";FU+j* 6%77''7!""5#3#3#3#3#3#3#"&54&#J-....--kk@@@@kk@@ m.---.--@+k*@k8FS?'#533#632".5467'##".4>323'#"&46;2+"3267#53.!"'264&47K\11:1;2;&11)= 1 ; j,,']`* )'+>,,y/ K1:11+#%11:18(u   5,>, %UQ>,,>,!%*-1'#5'#5'#5'#5'7111#'#7###3#h*+@S@#J**U@@***%g-+XmS@#JJf+&<@!7#4>2#5#532>4."#5'3#U9btb99b:UU#;"";F;"+@+++:b99btb9UUU";F;"";@@+++3#53VVVUUA)!2##5##5##5"&46354&+"354&+"@ +U++ ++@  **  ` Y !%#5"&54?5"&=46;2#% u V 5)7!U**j%'  '] E,1$+%#5;#"&54?5"&=46;2#'5# % u V 5:*|U*** %'  '] c]] )%33##5#53"&54?5"&=46;2#+@@+@@% u V 5)7!@*@@*j%'  '] E,1$ 3%33##5#53;#"&54?5"&=46;2#'5#+@@+@@ % u V 5:*|@*@@** %'  '] c]] )%77''7"&54?5"&=46;2#J-....--% u V 5)7!m.---.--U%'  '] E,1$ 3%77''7;#"&54?5"&=46;2#'5#J-....-- % u V 5:*|m.---.-- %'  '] c]])2%#5"&54?5"&=46;2#';"264&% u V 5 1 \P !  U**j%'  ']/ \    +1:%#5;#"&54?5"&=46;2#'5#?#?2"&46 % u V 5:*| p9- U*** %'  '] c]]: b   1:%33##5#53"&54?5"&=46;2#';"264&+@@+@@% u V 5 1 \P !  @*@@*j%'  ']/ \     39B%33##5#53;#"&54?5"&=46;2#'5#?#?2"&46+@@+@@ % u V 5:*| p9- @*@@** %'  '] c]]: b   1:%77''7"&54?5"&=46;2#';"264&J-....--% u V 5 1 \P !  m.---.--U%'  ']/ \     39B%77''7;#"&54?5"&=46;2#'5#?#?2"&46J-....-- % u V 5:*| p9- m.---.-- %'  '] c]]: b  k%!5!/#"3!26=4&#5355V+VUUU@+++@UV@ %77''7'#"#5#4--..--.-5U#;"@m.---..--";#$7272#"&'#".547.4>3>7326=4&+";';1 1**1 1;IH  1%1:28112:1%1{E  &73#".=364&"24&+";7'#1+%9 $$# &lKlJ++1%" ##@%Kl %*17?ER%7'570154."3232>4'&#'3'#&''#63&54'#>&4733.".4>2@@0u9btb99b:$RD)E? / R ;* ?/PH7? /11:11U+ E:b99btb9)DRT*)# ':),,V, !+'($*+! 'P1:11:1&/%".5467546;'332'77.'52"&46(DRD(/&  j  &/%1)WR/   )D((D),IN ** NIW;&*WR!/W   %".5467546;'332(DRD(/&  j  &/)D((D),IN ** NI)%".5467546;'332'2>54&'5(DRD(/&  j  &/%11:11%)D((D),IN ** NIW;&11&;W)9%"&=326=3".5467546;'332'2>54&'5@%6%+  +U(DRD(/&  j  &/%11:11%%% )D((D),IN ** NIW;&11&;W 73373%737/? * SSSjjjjkkSSSS !"7!2654&!!'7/U+V71@@1U"@+:<+@ 3!53#537#5.>2@*@** @ "," 4 (**( #75#7#3553'"&=.5462#k@@kր**%6%2`+%%V$4=M%+"&=.>2#;265#5#;&'&7;5.326='326=>.@ V 8D81V * * **  * *  ** *BA((ABj  !$73! .6 !6. !37$["+>K[7#"&=3;26=#';5.5&7326=#5+"&=.>4.35>7326=>. *@ * V **  * V  CI0+ 1( *G*  *+  + .6!$73a -* *ID";%%0*//!U!6. !37$':%+"&=.>#;265'#;5&7.;&74>k U #48/ !U +  s .85! %Ak+ +49.#49 _  !.85* 'C) -6I!;26=#";26=>&'.#5.>#;5&7.;&54> + U+1 U -+02  t .95! &@ 1-+ +49// 010  !.84* 'C)"-7#537#36=4&'#"35335357'35#535#3**8)(=+*++U+++*+]@VVyL@+++j+4=FOX"#54&"#54&#54&"'&#";2654&"&462"&4627"&462"&462'"&462 L*  !  b    4  N b  |  +)    @   +   @   U   !!!'5##7@VV@kkU@@jj )53!53%!!7!5#7#5+++*5UU5U**@UU@ 3!!#5#7!!UVV@kk@@kkU )53!53%!!7!55#7#+++*5UU5U**@VV@ %'35332;26=7&$ S =** 8S  =%;26=7'#5554&+5##S =+ $&*N8S  =ث+ **+ 373!5@U@U@k@+++@&%35'.#"27676#4춭325!3&@$%%  ++H"%6$NV^@ .%33535#5#'.#"27676#4춭325!3&@@+@@+A$%%  +@@+@@H"%6$NV^@ .%77'7'''.#27676#4춭35!3&J-....--8%%%  =...----]"$6$NV^'-#3!5!#."#"3!2654"&46'77U*+VE!)!D  F(q++  F(q$-5!!"&5'7772#!"&546;>2#"264&5#!#U+F(\ D!)!<  ^*++++F)\   U**!/42'#"#"&546;>2#"264&"&=46;#5'#3g#2Y!(!<  7UV<@Y2#*   UV<@ 09"&=46;#'35'#72'#5##5#3#"&546;>2#"264&@UV2#"264&5#!#U+D!)!<  ^*++++U   U**'*3!!"&53%#!"&546;>232'264&"'U+*D!)!E  Vk++* U'/2!!"&5%2#!"&546;>2#"264&5#!#5U+D!)!;  _*+k+++U   U**@"&/#."#"3!2654"&46#537#53!!"&53E!)!D  4@+*  ++*++'/37!!"&5%2#!"&546;>2#"264&5#!##537#53U+D!)!<  ^*+@kk@+++U   U**+*+k&/32&#"#"&546321'&'&54626."+ * 6 6,%, k+G!7)7,"8$,fk/%21'&'&54626."7!3#"&546;32&',%, + +,"8$,f+Gk 73##3!35#3!535#5!5!+*ր*++++*%,!"3!2654&533#6735#"&=#5!#5##*B^Bj$j*@*V*U**+j@@V%,!"3!2654&533#6735#"&=#5!3353'*B^Bj$j**V*U**+Հ@@V !%5!32652#!"&546353'53U%6%U*ր%%***U++%)-2#!"&54633&'#5#75!326='3##5^B*B^j"***U++**%!"3!2654&533#6735#"&=#5!*B^Bj$j***+k :D"32?>&"32?>&"#;26=#54&"#57>&;26=+  *  K    |   Vu  V *@@V>+@ @ : #2;5353#!#"&=3332#5#'##54632'#"&46"264&k@* J *@J *@@* (8FF(88(,*@J  J@ J@**@J U8(FF8P8+,,"7K4632#"&'&''&'&'&5467721'&'&'&4>"6767654. 5+!R2"'&'.=&"'63353'7'!54767'"/&476713267'#"&5467'GB?25/d/!>+*+ %'5"t2#$  05 B!U++@ >f U0!%5$2  #!"3!2654&5*k*Uk)2=F7264&"72"&46#54767632&#"372"&467"267."&462$22G22##+&&-!(r  +FFVEE+ ,2G22G2##@    @/&&00&&/ ,, 09B2+#5##5#"&54634'7'&"'7277'6'2"&46264&"UU  @  B  k%%6%%$V    B    `%6%%6%k$$ )AE7462"&'7&47'7627'"'7"264&72+#5##5#"&5463!$$/  @    B:%%6%%UUV$h B   @  %6%%6%VV'7@I3#73#2#!"&5463";26=4";26=4&#264&"264&"++++k+ U U   *U V   U   #'7;DM!"3!2654&!!32+"&=4635732+"&=4635264&"264&"U U +U U +   *** ++ ++   U    !(,048HQ3#546!2#553#53#5353#53#"&=3'3#53#53#%#52'&'&54626."U+ ^ +U+*++*+k +++++++++ -- + ++++++++++++ ++*++++-$$-g k $(/37;J%3#3#7+533#546!2#553#5353#"&=3'3#53#%#5!3!#!"&546++U** ++  +U*+++k ++++++++  +*+ ++ ++++++++ ++****  k  $(,8HQ3#546!2#553#5353#"&=3'3#53#%#5!33!"&54621'&'&54626."+  +U*+++k ++++++++ T,%, k+ ++++++++ ++*****  U,"8$,f "&6?D46;##%#5#532533#"&3#3#3#%2'&'&54626."73&'+@@**@@V*@@VVVV**`,, +*k*@@@@*@@***V-$$-g2 k".>GLR3##546!2#5#553"&=33'3#'33!"&54621'&'&54626."537&#5++  +U +@++@ T,%, * k+* *++++ ++Uj*  U,"8$,f+ k"&*3B533#546;##"&=332#5#5#57#53+5353%3!#!"&546U+++++++U+++  @++@U++++++@U+  "!!"&57!2#!"&546'7/7U+  )87( 4@* @U8( 33 &8"&!!"&5'?''!2#!"&546!U+ (78) 14L@* @b& 33 (8*54&+"#54&+"#!+*++@+/854&+"#54&+"#3&'>725"767654&"&46+*++6 5,, @,4 6c,$$,f8%"767654&"&46=4&+"#54&+"#3&'#5!5,, +*++ *,$$,f* b#%#534>325#54&+"#54&+"#3&뫫#;"++*+++";#  $%#3546;23546;23!37#3++*++֬֫+j +54&+"#54&+"#!!5!+*+++*@+*54&+"#54&+"#3&54>53##5#535+*++3>@@+@@@ 7$ @+@@+@)54&+"#54&+"#35#5!353##5#535+*++*+@@+@@@+j@+@@+@*54&+"#54&+"#3&54>5''7'77+*++3>!...----.@ 7$ -....---)54&+"#54&+"#35#5!357''7'+*++*+C.----...@+j---....-*354&+"#54&+"#3.>56.77'"&462+*++4GF 9J4.HB,@GF4gH.3I: B@, ,+454&+"#54&+"#3&'#5!56.77'"&462+*++ u* 9J4.HB,@ gH.3I: B@, , 73!53#!"&5+*V*kkkk 73!53#!"&57#35#3+*V*****kkkk+րV!!!!3!53#!"&5%!!U*V*UU*++kkkV+%#533!26=#!5#UV***kkkV 73!53#!"&533##5#53+*V**@@*@@kkk@*@@*L 73!26=#!5#%''7'7+V**..--..-Ukkk--..--.k +39%264&"7#3264&"%#"&5#"&5#5463!%3623577 -5_ 8@+%6%%6%++: J j55Uk&&&&V+` K kk +3:%264&"7#3264&"%#"&5#"&5#5463!%362355#53 -5_ 8@+%6%%6%++:kKKjj55Uk&&&&V+KK6*k<3#3#264&"7#3264&"%#"&5#"&5#5336235!463!K -5_ @+%6%U&5%++9f 5Uk&&&&K Vk +3%264&"7#3264&"%#"&5#"&5#5463!%36235 -5_ 8@+%6%%6%++:55Uk&&&&V+ 0472"&467''"264&7762#".5467%'  [%%5&& QO7)E(vwAv   V&5%%5&PP(E)7,wBw(59=A72"&46"264&7762#".54677'326'''&&5%%  QO7)E(qq1'Z[WwAv&5%%5&+   PP(E)7qq'1LwBw'09FTh%3#"'"'+532727'67#6'&56&&5&'6''&/67&76&&'76;#"'"'+53272**++(Z(++**,*&^&*j"- #L$ '  %$ $ #c4 'X'"U*,**++(Z(++**,*&^k++s ##  (0" $)3!;-$'  "**%#37#5##";2654&#3U$$  /++**  G @%#37#5##";2654&#35#3U$$  /++**  G @@#%#37#5##";2654&#3#3#3U$$  /++**  G @@ @!%#37#5##";2654&#3%#53#$  /@k@++**  G @ի%%#37#5##";2654&#35#3%#53#$  /@k@++**  G @@`ի#)%#37#5##";2654&#3#3#3%#53#$  /@k@++**  G @@ @`ի+";26=4&#3#''7'77++++,----,,,+++---------G2564&".546+"/76;5462!";5#5!#3526=4&$2%5&2 v U 1  U VVV++U2#' 8%%8 '#2  Y% _/ C++$=!"3!2654&2564&".546#"/76;5462V#2&5%2 u U 1  T V*2$' 7%%7 '$2  Y$ _/ +/5"3#!5#26=4&#3#"3#!5#26=4&#3#7''U@@@@k K* U++U+UU++U+U j J* + 3#3##73#5#U@@+U+*+++*V֫+ 3#3##732+3#546;5#kV@@*V+U+V+++*V+++V++ "3#3##%+535#535#532#2kV@@**VV++VV+++*V+++*++  + 3#3##73353#5#kV@@*++**V+++*VVVV+ 3#3##73#32+535#kV@@*U+VVV+++*V++++++ !3#3##73#32+"&=4635kV@@*UU++++++*V++++++ 3#3##3#7#53kV@@*+VV+++*V+++ /3#3##735'35"&=463"&=46;2#2#kV@@*++++ ++++*VV++U++    + !3#3##!#535#"&=46;2'5#kV@@*VV++++++*V++++++ #3#3##73#5#732+"&=4635+V@@*V++++++++*V֫+++ 3#3##73#5#73#5#@U@@+U+*U+*+++*V֫+֫+ $3#3##%32+3#546;5#'3#5#+V@@**V+U+VV+++++*V+++V++֫+ #;3#3#3#73#32+535#"&=46;2#5#353+"&=46UUUUUU*UU*+++++++++*++++++++k )%5'#"33!26=264&"&4627"&462@@#22F22$$@@@@$UU$2F22F2U$$-6?746327&'#"&547&'"&547&#"?2"&46"&462'"&462  8L!@#Y   K [ ; 'J##     V>Rew%./675"'&'7676'7327654&'5677676%'&76?676"'&/767627'&/47676  #3;;3#   $  %  #         $/ /$ 1!1 H%&  2 . J  &%H 1! 1  k   -   +Sgr%567676'./675#"''&/47676/3'&'7676'7327677%'&76?676"'&/567+  X#   #3;D  T;   $2 %     :&%X 0"0 $/ -   +S< /$ 1!1 H22 .  1  k91!%)673"&46;5#"2>=75'37'35P"1dk8O99' %@%%@K@%{35!+qC %+<'99O8+%@K@%%@%")@qF-=jj3####535353''7'3@UUVUVUgv'v'u@@UVU@UVGv'v'u3####535353'7#5@UUVUVUv'v'u@@UVU@UV#v'v'uk")##"&46;7546;2732%2"&46'7'3?$  :u'u'u$$\ $@v'v'uk")##"&46;7546;2732%2"&467#5?$  :v'v(v$$\ $@v'v'u !##5#%335332+"&=4635V@+@+V@+@UUUUUUU+ !?#5##'353332+"&=4635V@+@+V@+@UUUUUUU+ $.<%'7632'7>&#"'#"&=354?'7/;26=#2?>&#"J" . d[  gf "  V *  +   #-4e @+[# @)."&=#"&5463!2+#773!7'7627# VVO B, Y,Y, @OBB+ SY,Z#(!2+'#"&546373'7627#UVVUUVgDDgY, Y,Y,UU*DDZ+ SY,Z%*!";#35#532654&!!'7627#**n, Y,Y,+**+Z+ SY,Zk)8";&54>3254&#7'52654&#37'"&547@ &?&U00 2$G2#00k%@%o+kk+jjU00  #2&$2 00  k(7";&'#573254&#!52654&#37'"&547@ ի U00 2$G2#00kjj@o+k00  #2&$2 00  #'+">732>4.".4>2'35'35#:b9  %G%&:b99b:.O..O\O..OC****.N/">! .N]N.#;E;"";E;#V++*V#'+/">732>4.".4>275##5##5#:b9  %G%&:b99b:.O..O\O..O=++*++.N/">! .N]N.#;E;"";E;#k++++++ .3AO7"&476717577'7''57''/7#!5!57"&47671"&47671$  +2 & * *5%%6* ) % 1+v55v$  $  C&" o ) & 20$$02 & ) }&" N&" k*0%!"&46;>3232'.#"3!2>54&'77#22# >( 6 %% X:-M 4";#19J,b@2G2%0 5 %6%8I/'#8!";#1*=K,a$,:DM'#6='+"&=.7'#"&=.'&67'7&">&6=>'.';26=+;&5;0 V # * ' WEO # * V@* %: 0 *:"96. ! $ 3W[J83!D!4(d  $'+<JT];5.47;273'&#5/62'654&#"654'3+"&5##"&=3[W ' * # V 0;#F**4E% # V * @ * W3 $ ! .69":* 0 :# :-+-"&(4!D! %-7@'+"&=.7'#"&=&'&7'7.6>&'.;26=#';5&'X U "   @ .8 K&E + Uk  %X +:# * !@[_! K73 k !%.=FP;&547;27'&#5/676632'76.#"&=3+"&5[@   " U X#F++qL 9. /"- 4h  kU + A!* " -+ W# :-*L !;E 0x k $"767676732>4.3#57#53:b9  $':b99bEEEE.N/!=   .N]N.O+1O+#-">732>4.".4>27#335#7:b9  %G%&:b99b:.O..O\O..OEEEE.N/">! .N]N.#;E;"";E;#+O1+OV #5!#57!!!!5!!**Օ***U+U+k+V #5!#57!!**Օ*U+V #5!#57!!!!75353++Ֆ++j+++U+++kkU**kE%2'654&#'65"&54735'#"&46;>32632.'.#";&$2 0+#21#22# >(5 '$( X:-M 4";# 2#  1 2$  0?2G2%048I/'#8!";#5#2>54.".5473*$;!(DRD(!;911)@%)D((D)%@)1##1!+5'+&'3'&'5'74&+"34&'234.'234.+ -.Sm* ?@&1+(E(4X4*?l%+ .'- JS[_+ ?@%V+1)E(U+3Y4@l?/'#"''76767''&'&54767'7676716763zDT )*L  &bm3)f- 6!S=;$% %z@1 D"9%4Y !'b[ fB^/" ;  %'3737%7357&++*"IM"b\M"|V*>j@@hS%E&] E%@+PP i%"&462'7676764."'@,  (DRD(+kk,,5&5)1"##"1)5OD((Dkk7"&462'"7676764.7',)D(  (Dkk,,(DO5)1"##"1)4PD(kk032"&46721'&'&'&4>6767654."'@,)D(&, (DB111:1Ukk5,,`(D)2H39#"1)4PD(%/AA/%11kk142"&46721'&'&'&4>"6767654.7',)D(&, (D)1111kk5,,`(D)2H39#"1)4PD(*1%/AA/%1kkk%-"264&"264&"3&547&2'6#"&54#22G22|(88P88.N. % W%W&k2G22G28P88P8'+&! &W W %k(19A"264&2"&46"3&'#546763267&3"264&2'6#"&54#22G22$#&+(! (88P88(% W%W&k2G22G2+## @8P88P8 &W W %"(";2>54&'5'#2".4>7'5U#RD)54&'5'33"#%2".4>7'5U#RD)/>?.&'7&2.7>3+3277&35+32727;5#"'"m '  'b8  C  &a7 =   )-**,* " ,)-**,*(Z(*,**-)'\t6* $ *  _6I # *  _t  d+ *+9++%"264&7#";2654&#3$C$$VV7'7kkPjjkP&/"625&2>54.'".5467"27& ?.K+9ara9+K.0>+HTH*=0/!:: 2".#".=327,, .O..O..O\O..O\O.".O..O. ,$$,ff@''''/'''@'k +7264&"7'57#"2?654/&7'7 Bjkk ) j L tzUkk+k k  %  s| *>%3533##5#2"&46721'&'&'&54>"6767654.@@+@@+@,)D(&, (D)1111U@@*@@ ,,`(D)1H49##0*4&)D(*1$0AA0$1 "6%3#2"&46721'&'&'&54>"6767654.@,)D(&, (D)1111U* ,,`(D)1H49##0*4&)D(*1$0AA0$1 *>%77'7''2"&46721'&'&'&54>"6767654.b3334334,)D(&, (D)11113333333,,`(D)1H49##0*4&)D(*1$0AA0$1%+2&'&54>7"76767654.7''1%++%1)D(  (D8iK"k1*A1771A*1*(D)&4*0####0*4&)D(kM" !*D2&'&5467"176767654."264&".54672>54'7#2#$2##:#@ #:#$.O\O.# $";F;"& !$k2$3*,/(3$2*";#<]/")#, #;"U##((#  #.6%767'&'&5'>32'67654.#"2'>D HAZ7 )D($ 1(>JdD &4*0##!"I1X5# (D)0E ! 1$-K + !";5#5353";26=4&#3#@@@@****++++GS+673276=.=46;2+"'&'&=.=46;2;&=462'4&"265        #U      "#3 "` q  s # o  q  $"   k)%7656'&+"3>54&/&76;2&"Z  7*7   *  33 %4/!88!/+%   )  '2;73."264&2"&4637'.'3"!54.2#676Q5D GqB,,>,, GqBQ5D)D(*(D)Q`U,>,,>,+Al>Q`<# #+ (35!34&+#53"264&!&+#7"264&++2$K ,aK ,@++V#2k,,6 k, ,\#5&'&'&'&462#3327732?'35#4627676764.#476767654'&'    *  K    K  *    *   %- ++ ** ++ -%    (% ,5%"&''7'77'./.'3267'#"/"&462~,B/A6>'   J  L$ +&D##{J#3I " # + O_5m  h$"+%#3!#737#5763"'&'#5'#7"&462*&c  ! *()%*9v##_Id*  ' <'u*i# +0462"&%'#!537/46327'&'32763/Z{ 9-1 K1K q%Jk"1uW KD7"  K`o S)638A%&'&/735"&/.+73'.'.67674%7'"&462 E%?$/ y6%(25 K   " *A =A##  8=$+ UBUI2  :  #+G+co$2'64'7'>&'2"&46'7&"&'&5!54&e!!$k))##22F22x % (.V/c#X $-l+lk)#!SQ 2G22G2*&g((g&* &UU'09B'64'7'>&'!5476737'62354&'7'"264&"&462e!!$k))#l"" Z&Z P$#22F22c#X $-l+lk)#!SQ jj %Bl((lB ##2G22G2;%'63264'>&'%327'7&"&'&5!57o#2P!!$k))#U2# @ % (.VRo2$= X#$-l)kl+# QS!U #2@'#g((g&* &UBR D'632'.>&''64'%327#'7&"#5467'!57%#2$))#$!!$V2# =Z&Z "VR@$2$%)kl+# QS!% X#$-V #2> Bl((lB% jBR!33/&'&27#'676716U+*J#  2 &.  V*E   33#U+*"V*(;26=326=4&#3+"&573#!!7@2#V#2+V++$%+%Y#22#@+@|&*&Y ;267!#@++"&{*V!4"";26565'4'&'6&#2#54767676   V `!$+U@ +U@%!`.:!5#535#467.+5326=326=654."327&'.5473UU@# * *0;9btb99b: +D'f+*+@#: + + U5 :b99btb9$/I+ f!.#"326733535"&4625#535 2(88( 0 F@@ hjj@@#8P8#@@@@+*+@$4"264&"&5477'632/762&#""'#7&4?`(88P88(% W(W % G  / 4N  Y; e"8P88P8%W X$v F -  <  d"")!/2"&46'&'&'."27676''&462762%%6%%+ &2% + MV(&eII # #%5&&5%t   u!KK $ % $0#3#3327%&473"&'3'3#/>2&#"[wKVA`c>%$4 +S'BSGJQO&EJB&'31 w ++9G4  *v)"G+O&&"27676?'7'575#  &&f  "! WJ}ZUZU%159"3!26=4'7'&#"&4>327.2#54>53532S1*@,,27 6 1 *A#2C+%@+++#:#%!(2KK)"*@, $+L466%@%*V++#0:>B"3!26=4'7'&&4>327&2!54676"35476%53532S1*@,/k- 6 **3H$!&'!.19*+++#:#%!(2KK)"*@, $  +$7KK7 1/#V++%1?O%'&#"&54>327.#"3!26=4'#54>32%'32644&463"3"'6@,+3:0 6 /"+@#2S1+%@& 2C +r* @, +";#' (1KK(#`66%@%N."" 0<*   $1;IY"3!26=4'7'&&4>327&2!54676"35476%'32644&463"3"'62S1*@,/k- 6 **7D$!&'!.19*? +r* #:#%!.KK)"*@, $  +%7KK7 1/#|."" 0<*    *53!27&=#5467?'32/632&#"\M  ++$,@*2r-3:#A* 1( M%!(2K  66)C9~,@*"):,+'4?3!27&=5467354767'7'./6/632.#"\M  -" *,@*-3#33l-3:H3**' M%!(2K  K; -#,@*")-4 37,$+ ".2;D%#64.".4>2#4&"32&53!535#53#'#3"&>4&"26 2:11:1/B//!$=$ P66++U921:11!//B/$>Zkkkk$ +  !'2#!"&=46;546;2!5'5#7''VVVV o,@++++++n,&2#."#"3!2654"&46353!33##5#5353Y!(!Y*  b**@@*@@**   U**+@@+@ (735#%#5##3+"&'5>7546254&"k*UU  j  ,+ U U    $+/%+"&'5>7546254&"'3'357##7##3  j  ,k..UUUk U U    ..++#%'5?''737'#'77'7#'77'WxGw2'fxFw*R<8.'7.>76'#'3???7HH7}h%30GPG03%h+ 6C;'1!-:sV %%G0CC0.*N;264&+532+">327&54767632264&"1%016666& :& &  M %1:&1 +-%"$/ -) *P   vk!"327'#"&546?'.46327&, 6 :0(-,o _  k,=4=6 %,()% k37>;3'>?#+'Sm#+,( 8m#+,( k  %32#3#"32735#"&46;535#.#@!+11**6%%U+-;&++1:1$U%6%@+$1k(7467>3234&#"54&"3272"&4680+2$, -,   *R $2NC ,+  k37##53533'@@v++v@kkkkkA(5=";26=4&+46;26532#";54&#32+"&5'3#"&46U&&&&+ +@ +&&V&+  ++ @&&&@& @+ &4&&+ @ *  @,>N"346;2+32+326=4&'>=4&#";2735#&#32+"&=46U&+   & &&& ++   @&  *  +&  &@&@& + @ @ @"2:35;26=4&+"532#";54&#32+"&=463#"&46+  &&  @ +&&V&  ++ @&@&O@+ &4&&+ @ @ @*  k+!23.+".?35#"&46;5 ! =$:   #22#6k !'  2F2k #35!35#53#3#3535#75++jw+@|&k+U**U+++*++V*'/k#3.'#77'676735#5 / nrrn#8k++# Z!__!Z,(++k$*#32654&'35#533535#52"&4635#5V32F23Vk+@@$֫k++ !#22#! ++j+kk$$V++k*09#3"277&'767>4&'7''#535#53&'#"&46@@128 "")TjjJ + %%k++*2:1  < '7=3  *++3%3D3 %6&k!75676=U+O\ #k+O\>kU+!!%2UVk3756=+5k+gm-k@.J8s@V73"5#335462+326=4&65U @+ +++UU++յ*+,*, ";;35>54.#535#53(B)) '/(E++++&A(5 @@dH-)D(+@/372#5#"&=#"&?>7"35>54.#535#53)E(/' ))B(0S5" $(-3X++++(D)-Hd@@ 5(A&+,M0-  - BvT14X4+*";;35>54.'77'C)) '/(E4J,X&A'6 @@dI,(E(J,Y/52#5#"&=#"&?>7"35>54.'77)E(/' ))C'0S6"  %(-3Y?J,X(E(,Id@@ 6'A&+-M/- .CvT14X4J,Y Y2"&4672#5#"&=#"&?>4'7>/.&/&+"'&37;2?672?6/  )E(/' ))Cg ""  w(E(,Id@@ 6'A&     /gp2#5#"&=#"&?>7"35>54.54'765'.&/&+"'&37;2?672?4'"&462)E(/' ))C'0S6"  %(-3Y "" R (E(,Id@@ 6'A&+-M/- .CvT14X4       )2";;35>54."&4623"&4623"&462'C)) '/(Ei  7  7  &A'6 @@dI,(E(       /8AJ2#5#"&=#"&?>7"35>54."&4623"&4623"&462)E(/' ))B(0S5" $(-3Xu  6  6  (D)-Hd@@ 5(A&+,M0-  - BvT14X4       ";;35>54.7#73'C)) '/(EB ++5 &B'5 @@dH-)D(Uk@/62#5#"&=#"&?>7"35>54.7#73)E(/' ))B(0S5" $(-3X B --5 (D)-Hd@@ 5(A&+,M0-  - BvT14X4Uk@-";;35>54.'&'&546732632'C)) '/(E- ( ( &A'6 @@dI,(E(|$ $1G2#5#"&=#"&?>7"1#35>54.'&'&546732632)E(/' ))C'0S6"  %(-3Y" ( ( (E(,Id@@ 6'A&+-M/- .CvU14X4$ $'";;35>54.#537#5.>'C)) '/(E++" @ 4-&A'6 @@dI,(E(J 3-3/3?2#5#"&=#"&?>7"35>54.#537#5.>)E(/' ))B(0S5" $(-3X++" @4-(D)-Hd@@ 5(A&+,M0-  - BvT14X4J 4-4";;35>54.#53(B)) '/(E-&A(5 @@dH-)D(*/32#5#"&=#"&?>7"35>54.#53)E(/' ))B(0S5"  $(-3X!(D)-Hd@@ 5(A&+,M0- - BvU24X4*#";;35>54.##5#53533(B)) '/(E-@+@@+@&A(5 @@dH-)D(@@*@@/;2#5#"&=#"&?>7"35>54.##5#53533)E(/' ))B(0S5"  $(-3X!@+@@+@(D)-Hd@@ 5(A&+,M0- - BvU24X4@@*@@4";;35>54.#537#467>4&"#5462'C)) '/(E++% +   )"9"&A'6 @@dI,(E(+D    /3M2#5#"&=#"&?>3>23467>54&"35#7"1#35>54.)E(/' ))C)   +"9"$++0S6"  %(-3Y(E(,Id@@ 6'A&^   +-M/- .CvU14X4#";;35>54.''7'77(B)) '/(E-,,,,---&A(5 @@dH-)D(--------/;2#5#"&=#"&?>7"35>54.''7'77)E(/' ))B(0S5"  $(-3X---,,,,-(D)-Hd@@ 5(A&+,M0- - BvU24X4~--------A";;35>54."/.?.6?'&4627>76'C)) '/(E.*   * *   *&A'6 @@dI,(E(  )*   **  1[2#5#"&=#"&?>7"1#35>54."/.?.6?'&4627>76)E(/' ))C'0S6"  %(-3Y)*   **   * (E(,Id@@ 6'A&+-M/- .CvU14X4  **   **  &5";;35>54.5"&547357'654&#'72'C)) '/(E)#20 00$2&A'6 @@dI,(E( 2#  0  00 2$1@O2#5#"&=#"&?>7"1#35>54.5"&547357'654&#'72)E(/' ))C'0S6"  %(-3Y$2 000#2(E(,Id@@ 6'A&+-M/- .CvU14X4 2#  0  00 2$ &7&'3"'3'2#63#6'!".4>2  Jpp* n#;"";F;"";**";F;"";F;""737''777%'77764/&"@PPZo&5oZ&542'PPPPZo%5{oZ%551'P '77'7''7'7Y-.[K.K-K  1"*$? "+  (.75'57"32?>/."&462;'53 kj  k jr  kH | 6@jB B!   ;QY3#3#7!&'5#3"#;#"&5+532654&+53246;#"2+"&=463546254&"+U++U[ @ *5  5* *5  5*  u  $.%+++k- * *  * * *  *  K  K     ";;35>54.(B)) '/(E&A(5 @@dH-)D(."35>54.#5#"&=#"&?>20S5"%(-3X  ))CPE(/,M0-  . BvT14X4d@@ 5'B&(D)-H2W7V:kMk!7%!!!3353353553 3VU+@@k+k++UU?C######5#5#5#333335#535353335#5353535335#535#535#53#+*+*+k@j+U@U@*+UV!23;26=&475&'&'&'35#564'576 V +#V#*f9&&9f*` (UGGU( !";754&546;,,,i, ,,, , !";754&#535#53546;,,,****+, ,,,+@k ,'73#535#7#"&5463!24&#!";546;****,,,*, +V ,,,% , !";754&77546;,,,-o`, ,,,-oV , &!";754&#"#"&5463!2''7,,, , i J *,,,, đ K + !";754&3#546;,,,, ,,,* ,#73#%#"&5463!24&#!";546;*,,,*, *,,,% , ";754&#!2#"#"&546u,,,  ,,,,*,  !";754&#5#53533#546;,,,*@@*@@+, ,,,@*@@* , +%3##5#53537#"&5463!24&#!";546;@@*@@*,,,*, *@@*@6,,,% , !";754&'7'77546;,,,-------, ,,,-------` , +%''7'7?#"&5463!24&#!";546;U77777777,,,*, 777777776,,,% ,k@KT"264&"'"37;257672?6/74'76/&#&/4#"3&47&2"&46#22G22r  *  .N.  k2G22G2 % %  % % +'+B kKbk"264&2"&46"'"37;265?2576&/57>/4#/4&#"3&'#546763267&2"&46#22G22$#*&+ (!   k2G22G2+## &%  %&  @6k!%)-"&462!54>2'264&"34&"%#57#57#5&5%%5&@";E;#   @2G2%%6%%+''  n++U**V++!(#"&=46354622'#53754&"+5#7#j,@UU U  U *++  !(/#"&=46354622%3#%54&"#5#7#'3353'j,UUUn*. U  U U+V  /V73#"&=3%.+";26?U**#  ]++C  nk73#"&=3%.+";26?#53U**#  ]L@+D  nVU("2>54.#7&"673.>327:b99btb9 4.#"654&#'72'47355".+9btb99b:*O< "2#CC#;"2#@@#;":b99btb9 ----.--@@U+//.----..77'7#"74&'3?nPkk?oQ@@U// %3!53?#?#7k@@UVU@@UUUVV!;277#R*'$p6  *'J6 ` %#53'35#'##73'@uu@G(D)D+U** kuuk++yNN%'?"&46255555555$ 23.!3!k3`#!&*RV*@+# L)FvD&),!"3!2654&2"&46##5#546;2'3'7* A@`6kk65*@UU6vV*VV  #'?!7'75'377'7/?'@@@@@U+++++O$"$O $O O$"@@@++@+q$O O$"O$ $O ]aeimquy}%#"&'#53675#"&=#+"&=46;23546;5#"&=46;2+323546;2+"&=#+'35'35'35'35'3535'35'35'35'35K&&&  @ + + @  V  @ + + @  +++++++++*+++++++++++ +  @V  @@     @@  V@  @*++**++*"&7"264&"&462"264&3#53'3##22F22#$#22F22]ի2G22G2##U2G22G2+****!%3'33!"264&"&462"264&@UU@*#22G22$##22G22UUU+2G22G2##U2G22G2,0%3'33#";26=4&'77#";26=4&#53@UU@*UUL6>UUUUUUU+UU6 > UUU!3'33264&"72"&46"264&@UU@*##*$22G22##22G22+UU+#D2G22G22G22G2,03'33%";26=4&#'7";26=4&#3#@UU@*UU6UUUU+UUիUU T6 3UU+U.2%3'33#";#326=4&#53#";26=4&#53@UU@*++UU++++++UUU++U@UUU.23'33+535#"&=46;2'#332+"&=4635#@UU@*UU++++++++++UU+UUUU$7"35735#'&!!"&462"&462%3;26=##54&# %U0G=R -##++++ > eS*'*J#=*@* %."264&"3353735354&+"#'.#"264&#<+j64V5 O ##j^j@ "8"&462"33.546754&#37'#532>5#"&5467##J+M("jv9"F`@!*'1+%6%k#Q7(E*M^Z 9#'1&& .AIcv2"/.=#"&=46;54>?6"2>7.33'#35"&'+;2>75"/;7>75".'32;7>75   9  Y Y   "" "!!"! #!- $3#3#G"$#>  "$#    "$##$">      .  .  O@*bMPpM <9++ {'+/37;?CG2#!"&=#"&=46;54633'7#&/#35#75#75#75#5#75#75#75#  Y Y &*)% &(,&xx((((x xxxxxxx{  >  > /EC- DDZ55PCC]CC^5555PCC]CC^55{&5OZ2#".'#"&=46;>3.4.+3532>2>7#532+'2+50*" "*0,'"E E"',$'3z  8!  P&# 7J J !x {")040)"    2'  1   &   #+Bo%#"'".=7#"&=46;>22'"327>7654.2>4./.4>3725/#"+"&'2>4.'+72>4."& !%"Z ? )0+!'X  "o         r   =  !  & "  ' ,'  X  "     !v  "  P      {&*.262#!"&=#"&=46;546337#'#'#35!%5#75#75!  Y Y @ {  >  > TSPPSZ55PCC]CC^55 )2";2>54&#3#33##5#5372"&462"&461++++  "  1@@@***   +   8<@"/7''&"7264/&46272?64/7''&"7!7  ZKLZ>,  ZKLZ>p.u>  [LK[,>  [LK[ "3*O< 4.2#*O< mm>mm>mm>m->mm>mm>mm>m"3!2654&#32+#"&46;k*c:?*@##%.4%254&+54."#";&4>'462#"&462'77 1:1#;%6%@$e;"LB+11+E;#%%+$$e@"M(,02#!"&=46;54&"#4>2264&"%#53#53U$7%*1;1k#****+%%11+$$V+#,2%254&+54."3462#";&4>"&462'77 1:1+%6%#;s$e;"LB+11%%+E;#V$$e@"M )77'.5#7'%#5532654'%D08u70 " 07u80  K&D`UU`uS t T +S u T" u@UV@ "3!2654&#3####535353k*jj@@@j@@@*U+@@@+@@+:K!"&=4?32+32+32+32654'&'72764'&'t)x&  |   b _   c + *v7z    [ 0'.26:%27#7&"32673#"&46%!2&#"#3#"&5463533535#U&, $ +#22+("A+ՀV& , 2G2V UVVVVVV48<@%2'654&#'5"&54735!2#"#3#"&5463533535$2 00#20+ 4<+Հ 2#  0 2$  0{V UVVVVVV+ #/373#'#?3#32+535#"&=46!373#'#7+++++++UU+VV+*++++**+66kk66kk++++++66kk66k+ #373#'#?3#32+535#"&=46+++++++UU+VV++66kk66kk++++++@+";#326=4&+535*UU*U+++++++k+"353353354&#++*++++ 373#'#?33#+++++++j+U+66kk66kk++ 373#'#?33#%373#'#7+++++++j+U*++++**+66kk66kk+66kk66k+ *373#'#?33#'+535#535#532#2+++++++j+UUU++UU +66kk66kk++++*++  k+/37%54&#!"2#3!26="&46'!5>4&'5!3#53#53#VV******UU$UU$ (.( 66 (/' 6+*+7&'.#"2>54&#537#3>!4X44XhY3**+" 4XhY33X5!=t+ #3277'#3'5#'6327@; 4X4:15* *U0:!>k;0:4Y3 6+:0_5U = *#'5#"3!2654&2.546#5476256g  g 5  V   $.2#!"&5463#'5#!'2.546#54762k55+k  g 5 V*k11k   *.2;;267654'&'&'&'#&54767'6777"&462  $ @ $  @ kS S2 n$ "(0VQ QV0(" GNA/  /AN!04d!4## %%654&"3277'"&4625#7#.#"8P88(C ,@&3&@%-(88P8B@,,&?&)" $%654&"3277'"&4625#7#&/38P88(C ,@&'kk/ -(88P8B@,, ``V'.%4>25'.+";26=3&'3!"&46273#'";E, ,  u UU@@#;"   `j+*+@V'.%4>25'.+";26=3&'3!"&4625#535";E, ,  u UU@@#;"   `jk+*+@$-7!%!2+3#535#"&5466"&4264&"'>2"&@** 0""0"FFVFFVFk*+**+ 7"0""0'00''11V$"&=46;2#"&=76767# k   +    e *&1 t}%3264&#"#4'7764&"&'5>54&"'6'.3&1&76?676'7;>&'6726&'&'67'"&462"&462    &          2  2 >    2'    "  $     +  *    2  2+@   "'6&#"3&#"1&#"3276?2676'7;;>&'67264&#"#'6733264&#"#4'73264&"&'5>54&".4>2'"264&"264&           2 2   &11:11= >   "  $     +  *    2 2  2'  1:11:1U   k &%'#"&462264&"!553'5!#&"BC(88P8`, +#O"-BB8P88(,,@++**j++ *3!2&#3#"&546353353554'&"7"264&U+/O+Հ 5 U# VUVVVVVV ##k#'!2#!"&54635335353357#3#3@++Հ+++++kVUUUUUUUU++ '!2&#3#"&54635335353533U+/O+Հ+*+@ VUVVVVVVvVV@ '!2&#3#"&54635335353#'U+/O+ՀVV@ VUVVVVVV++*+@ '!2&#3#"&54635335355#535U+/O+ՀVV@ VUVVVVVV+*+@ '!2&#3#"&5463533535##5#7U+/O+Հ+*+@ VUVVVVVV`VV@ )19!2&#3#"&5463533535"264&"&5477'632@+0N+Հ(88P88(% W%W& VUVVVVVV8P88P8&W W % &!2&#3#"&5463533535'77U+/O+Հ;"L VUVVVVVV@"L#'.;%'53754&#!";32>54&'&#"5#3#53".4>2`4D KzH,)E(#H/&z11:11o'O:p'/(E)%@[1FVV! U1:11:1 Yb!2&#3#"&5463533535'74'76/&##&/4+"'"37;2?672?6"&462@+0N+Հ& *  * i  VUVVVVVV %  % %  %26>'32&#"'35#67.'#"&'67'5#3#"&547'7'#'32|!Qmo EA+F!ttU/H  | Vp %/ 0&$@V  VVH  6!2&#3#"&5463533535/&'&4632>32U+/O+Հ "    "  VUVVVVVV !'  )! k59=%.#"326733535"&462'#53>323354&#!";&73#'3#f!$$!/++  tk- +t @U%6%++**   UUUUk7;?%54&"";26=4&+5462#5367#537254&#!";'#535#53,  k @0 O @k   U U 5UUAp+U+U $%53!2&#3#"&5463533535@j+/O+Հ+**U VUVVVVVV(!2#!"&5463533535335#3!5++Հ++UUUUUUUUUU+*'+/37%4&+532654&#!";#"#3;265353#3#'3#53@  V  ** * *@U+UUUU $3!'#53#535/32'5#'35#[-;mi*CC{+&+Q - :UUUBB|+&+U *!2&#3#"&54635335357'?'U+/O+Հ/>>/6 VUVVVVVV<(97)<VU^g";26=3&5467#73'.#"'"37;257672?6/74'76/&#&/4#2"&462"&46 ,  q'! !   *    U (D`K_  % %  % % 6V !=3#'3#'3#73"&462#"&4627.+";26=!;26=@++U**V++*  ,    +++++``j  "*P?;265767'"&547/?46;276'654&#"[=#--+5Vb,`C V5+--k, ==#  #J88 b, `D88J#  #+k,!'?ks?;265767'#"&5#'&''7&7'73327/?46;276'7'6'7'&/#2'6[=#--+5V b-C &4- ->2#T! V5+--- -3'  "#2d ==##J88 b-s88"&&!?#2 88J##+ !'&!882# dk!";&54>254&!5!'77#;EV0;"Lk ";#@@"Mk %47#5!254&#!";&!!'77UU;;"L+  +@"M !%#3#533'#57#3#57#3#57#3kk*kUVV*Vk+++*@**+@+++$#3!5!#'#"3!26=4&'7'?+++U>>?8II7@*V*%%G0CC0$(!!"&5?'?#!"&546;32!!+@A178++U@*+V<<+?!!?*%3#5#7#5'3+@jkkkU*'`` %33##5#535#7#5'3k*@@*@@@jkkk@*@@*@'`` %77''7'5#7#5'34--..--.-@jkkkm.---..--X'``#46;##+5353"&=332#5#5UU+UU+++UU+U+U+UUU+UU+&'#5'#535#53'#5'3'5.'#'58m'*YU@<+&Q; $ +qn'**++*+&QL `$P 7+77;73#7.=7#&'7'#"'#3#3#326735#535#5335#**2W77W2k/ /++++/ * /++++**:kMMk:V  '+/;G#3#3#326735#535#535#&'7'#"3#3#7.=7>='/++++/ * /++++/ ****2W77W2(E((E3 >@:kMMk:VV AY-iBBi-YA "%''?'?62'?/3##5#535.b '-`5&)Z5@@+@@-' b.#&5)Z5@+@@+@ %''?'?62'?/#5.b '-`5&)Z5U-' b.#&5)Z5x++ "%''?'?62'?/''7'77.b '-`5&)Z5_---....--' b.#&5)Z5.----..."'762777'''?'7'7)Z)5&   .-`b 'aZ5&)Z)&54  -.a' b`Z5,6%"&462"&462";26=767632354&767&'"k$$##   +*=1eV %) ##Y    ,%ee "'5462354&"'676?'737@+ *,+@m,)+*++5 5  Dzv2#"&=326=#>3 b`$7%+  `b 7qU$$ U S 3!57'!2'75\ -:qQt  99+q H+ 3!%5'!2'5'7\ -:x*(t  9dJ+ )HZ'34'&/#;277'35#6=#712Z%2#@ : !:Q-01Q5-6 @@ 6-Y+#2:+eQ+R #3!5!!%!"3!2654&5U*+V@*V*`9@%"2654.2'6#"&56"3&54>3254&'54&27&'u#9O8$% W&W&6.<+ %@%<.="  #(88(# &WW %9 O3*%@%3O k ?F%"2654.2'6#"&56"3&'#54>23254&'54&27&'u#9O8$% W&W&6.<+V1:1 <.="  #(88(# &WW %9 O3*113O k '%5#"3&54>3254&'54&3267&'ժ+.<+";# <.=  +**j O3*#;"3O k !%."3&5#54>26254&'54&353267&'.<+k1:1  <.   O3*113O **U  &/%'77'7"3&54>3254&'54&3267&'--..--...<+";# <.=  ..--..--( O3*#;"3O k  -6%'77'7"3&5#54>26254&'54&3267&'--..--...<+k1:1  <.=  ..--..--( O3*113O k $06g3!277#"&467#"&46;7#"&46;#"#53'>;2'3264&+'3264&+'3264&+"M$ %,Q9  m-&'' :*+ 3:7463277'"&4627'26727'64&#/2KS o GS Q4 K$ b/S-(K  oO   T #6  *$ "U/ &EIL&#32767#3&&'&'335#535#526767".#"7#6'3\55' %\d -S'+&+820)' d *8'$[-&++3V3+%7Y2#:%3267'4'&'&#"6\k+J+">E#'),+ k$K+J+D-?B+19,3267'".547'632'.'&#"[j+J+#>F 6.R*-)("''  k$J,I+E: 6 ,>(:1+B>.'(i$'#2".546767"2>54'&'&&6@6&)("+JVJ+"(k(%k( 6 6 (k%(*1+B>.,I++I,.>B+1%6?'#7.'#2764'67'7 '2'264&"m 5S     +! 1!"@   $m @(C[<"   % Q   '#!"&54?'7526=4&+"% ^ V$ $[#&  +3!27'!"&54?3'546;2#/5#\^ %< Z@V ss+* $ 9 @ &sI^ (3!27'!"&54?73546;2#\^ %< Qk IV s $ 9 m ME & 03!27'!"&54?'33'546;2#/5#\^ %< ZY 7:)@V ss+* $ 9 Z 7b+@ &sI^"(,K27&47&'7327%"#463#47'/65761#"'&'&/'&'\ -2F >2#6 vQ /# $  1 $0E2"9!  =#25 6 Q/F"  4 %$1*"':K36727'47&7&5754''7&''632/6762&#"\G   7"  6? $$&3;46 ~Az!   +,% F%/(' ?6  $!-C 3 6~ %"8A;#;265/%"&54677462#"'32654."&2"&46\@Wd m 83$<9br9O # @B$`  &l 7 $ :b9 O ##%*3I;#3265/%47327?37"&462/62+'34&'"&'\@W dm   @ # 9rb9<+gI7  @B$` m4. *@$$ 9b:+;]-3267'"&547'#53##'&'#\ J62I>9 U   .*+= : 5  4  '327%6767677'632'676?"\gK/Nb (EBIq- ~ H fa;##'7&547'267'+727.#"264&+ 4X4 4X4J F)EJ NI-  !4X4!4X4(#+2(("+U$'0    1=%33##5#5374&'++32".4>2&'5"&='k*@@*@@@;0* * #:b99btb9f(D@*@@*k5V + + ;#/$9btb99b:)f+I0)5%3#74&'++32".4>2&'5"&='+;0* * #:b99btb9f(DU*5V + + ;#/$9btb99b:)f+I0 2>%77''7'74&'++32".4>2&'5"&='4--..--.-v;0* * #:b99btb9f(Dm.---..--S5V + + ;#/$9btb99b:)f+I0 6%33##5#53!2&'5#++32"&='3#"&546k*@@*@@*D* * #,f @*@@*+ + +?&`*.%#5!2&'5#++32"&='3#"&546ժ*D* * #,f U**+ + +?&`* 7%77''7'!2&'5#++32"&='3#"&5464--..--.-*D* * #,f m.---..-- + +?&`* %(97'./#264&"#5#'6;232'#3'%'5#"&5467'7+ +  wo% o|& -Oeq+!P%:   j&o,~-O -05>7'./#%'5#"&5467'735#'6;232'3'35'7264&"+ Q -Oo% F  eq+!P%~-O;j&o:OF+   7#3kk+ 735#3#P&PPkk!K!ի+ 8L%"#"'&/.+32;26=4&#'#.>35";635.#54춮'31U  Q'Q,!+#2 **  + 2$  %@ Q+Q2#@{!*;*#(601#2  :#77''775#%#53#535#53U@ u u @++U@UQ7t7QQ7t7Q+++*+U -%33##5#532&#""'6767.54>+@@+@@:b9 ";#'$  9b@*@@*+.N/";#   =!/N.%%#52&#""'6767.54>@:b9 ";#'$  9bU**+.N/";#   =!/N. -%77''72&#""'6767.54>J-....--w:b9 ";#'$  9bm.---..-@.N/";#   =!/N.'32&'654."37"'6765.54>33##5#53:b9.O\O..O.&%G%  9b+@@+@@.N/  #;"";E;# !>"/N.@*@@*'+2&'654."37"'6765.54>#5:b9.O\O..O.&%G%  9b%.N/  #;"";E;# !>"/N.** 3%77''72&'654."37"'6765.54>J-....--w:b9.O\O..O.&%G%  9bm.---..-@.N/  #;"";E;# !>"/N.k!###@66k@+k !###!#3@66?-k@+k 6.67'7>54&#"'#5!#  O  ~@e[IQ++%";&547#7763254&#77'7''kJ6J0 & 6...----. `@`?.----...%35#"&5463!2&#"''3@ϱ*%J6J@++@*)`@`)AQ%1'.'&'&'&6765'&6767'>5'&'.'765#7#7#7# )      $   ߕj@k@kj@'%, 92,%N3 p      @kjkk&L.7)(=KOS\'#5'#5676&'53'7'3635.#.46;5"354&'#>'##2675#";5.75#5#"264&;k    +!** $ #2 j%&j 5  %: " [#' *;*//#:  2 %5& ") 1F f*   '"/&=4?'76=4/&"Le Dc S%L8^  D[qG8 ^.)2?%535/762'5'7'[D eLq*<S !Zc D  ^8L@^<.^ !38G%%".=463!22>57!546;53324XhX4 U (EPE( jVj 4Y33Y4 )D))D)U ++ ,%>&'.27>"&'.47>73$ O 2^    5OL5-2 w    3 0F2"/&4767>767"27>7>&'&"&'.47>73O%  ?('' 2^"$     5k+')(<$ *5-2 !OL    3  $-6:F2".4>"&.#"2676264&2"&4632"&467#3'.'#&3:b99btb99bx''LN   9btb99btb9( (*q S +CL327'#73#"&'&"&46326/632'35#'3'.'#&"&462[?,9b:H9< 1IW' nE4=:b9 m4B#    ?9H:b9,< n (  E 9b:=4mT  $-13!%5376=4&+32"&462"&46'53[. Pv +    x+ . Pz|v *   V   < !%357'#'5/3532'=/53[mKjv G}$*Q*(** n uK@@v GQ~+UUu(O/+&5##5#"35754&#'=73U*V*KjK> G+UUUUuK@@Ku> Gb6%'77'2&#".#"#"&=3264&+546;546232jK +J  "0";#"Q !! V,VUjJ *J` #;" ! Q"0"Q   VK%'775&'.+5#54&"#3>2#54&"#"&=3264&+546;>232jK +J kk##. 2> "0"Q""A*8*A$UjJ *J+  k  . 2@2 .##""Q"0"Q$$A*$9S'+"'./&+532;57'6=4&+7354&'1>'##2;635.#.>35"+!,Q'Q  Q1 %  $2  +!*%Q+Q -[: @F00":  2 #(!*@ 7#5;#3'#3"#;27676;5@@U@@*@@2*2#!63'#U@@@@#2. +k%3!53!35!35#'7355#5++*+*+@@@@@@U+UU*+@@++@@+*k/8A/!2"3#!"&=264Ȣ!5.46752"&462"&46<VVV xU$UU$U+6 '.' 66 '.' 6+j %'3754&+"'37;26=#@ff /{ gU &/[z U !%355#737#546;2+"&=%#53#53R%5$4 *****+BhCUU U Uk++%'&'&'&54>32>32&#"7##33535#E+6 22 6#;"*@@*@@@ >,"'' 66 +- ";2@*@@*#%'&'&'&54>32>32&#"35E+6 22 6#;"+@ >,"'' 66 +- ";**+%'&'&'&54>32>32&#"7''77'E+6 22 6#;"------.@ >,"'' 66 +- "; ----..-2>%'&'&'&54>32>32&'654&#"#.#"77#33535#5E+6 22 6+ +(+ +(@h@@*@@ >,"'' 66 +- )# ** !(:z@*@@*@26%'&'&'&54>32>32&'654&#"#.#"7735E+6 22 6+ +(+ +(@( >,"'' 66 +- )# ** !(::**2>%'&'&'&54>32>32&'654&#"#.#"77'77'7E+6 22 6+ +(+ +(@------.. >,"'' 66 +- )# ** !(:q.---..--:77''&'&'&547/632>32'67654&#"#.3,+ESX@( ӄ* 22 6&+ ( 0, )''",>KY.:(!*6 $$!(" * $8@3#7#35"&735+35".264&"'3573735'77.#"#M&.)*H+#;" 2& N&=2&5 U&.)++H*";  ,2 oO ̭Cjab Vk $0%.6?64>?35!376323&7#33535#5    7!~  k@@+@@ee!9#++QI[k@+@@+@k $(%.6?64>?35!376323&735    7!~  +ee!9#++QI[+++k $0%.6?64>?35!376323&7'77'7    7!~  .----...ee!9#++QI[a---....-#*'#'7'.6?''#5'7632735!>.Kbl a*( b';  %K&9>8Q([Bb+<k 6.67'37'3#'335  ( 7'@e+F/au@+k  ,#5!#7#7.?>#'3&7#33535#5U ( ]'k@@+@@@++ /eeauk@+@@+@k  $#5!#7#7.?>#'3&735U ( ]'+@++ /eeau+++k  ,#5!#7#7.?>#'3&7'77'7U ( ]'.----...@++ /eeaua---....- ''#'737'.6?''#5'7735!>.K'l a%(Y$'*1  %K&ua>8 F([J$++# "2>4.#537:b99btb99b4 9btb99btb9:8 "2>4.#537:b99btb99b/ O9btb99btb9\- "2>4.#533:b99btb99b1 `9btb99btb9` "2>4.'53:b99btb99b"q `9btb99btb9>q^6 "2>4.'53:b99btb99b@ ;9btb99btb9og^i "2>4.#53:b99btb99b/ 9btb99btb9 "2>4.'753:b99btb99b/:6 9btb99btb9g^g "2>4.'753:b99btb99bV 9btb99btb91i| "2>4.#5353:b99btb99b/vV 9btb99btb9 ` "2>4.#'753:b99btb99b/ VG 9btb99btb91(\ "2>4.#'753:b99btb99b/ 6 9btb99btb9^/@ "2>4.#53:b99btb99b/ 9btb99btb9  %2>4."2".4>#537.O..O\O..O.:b99btb99b@ .O\O..O\O.9btb99btb9{o98 !%2>4."2".4>1#537.O..O\O..O.:b99btb99bE O.O\O..O\O.9btb99btb9[- %2>4."2".4>#53.O..O\O..O.:b99btb99b .O\O..O\O.9btb99btb9 ` %2>4."2".4>'53.O..O\O..O.:b99btb99bq .O\O..O\O.9btb99btb9>q^ %2>4."2".4>'53.O..O\O..O.:b99btb99b@ .O\O..O\O.9btb99btb9og^ %2>4."2".4>#5.O..O\O..O.:b99btb99bE .O\O..O\O.9btb99btb9j %2>4."2".4>'75.O..O\O..O.:b99btb99bE:6.O\O..O\O.9btb99btb9jog^g %2>4."2".4>'753.O..O\O..O.:b99btb99bEgV .O\O..O\O.9btb99btb9<1i %2>4."2".4>#535.O..O\O..O.:b99btb99bEvV.O\O..O\O.9btb99btb9j ` !%2>4."2".4>#'753.O..O\O..O.:b99btb99bE VG .O\O..O\O.9btb99btb91(\  %2>4."2".4>#'75.O..O\O..O.:b99btb99bE 6.O\O..O\O.9btb99btb9j^/@ %2>4."2".4>#53.O..O\O..O.:b99btb99bE .O\O..O\O.9btb99btb9 1%654&"3277'"&462!5!5#5463!2.#"#38P88(B, U$*$>$*F55-(88P8B@,,UU$$*#0&j $-8A3&'&/#5363254&#!"3%2"&46'!5!2"&467"267."&462j++;/$$U    +GGUGG*- j"L$$U   @U   @0%&00&%0--3267%537'62'35\@9b:$B<-+B9rb9 [ @B$:b9;*** 9br9\*+/3267'".547#3'62'654.#"'3\@9b:$B<.O. M-Xu. 9rb9 .O.*+< @B$:b9;9.O.4.M*v @ 9br9 '*.O.**R[%5'!";&'.54632>32'#53576/4#&/4&+"'"37;265?2?64#"&462U % 8 %eՏ * *f eU!%+U$  $%  $"W`7#"&5463!&'5'#7">7&75##'+"/&'"/&?5'&5763?4;2722'4&"26 U;%.f* * H+*Ue G;֕% #; +UU$  %$  $! k%'7''7''7''7''7'!%5z+(+)4V|F+())1@||^%27#7&#"3273#"&4647#"&46263254'76/.#&/6&+"'"37;&%U&$ *#22h--<- -+5  V 3+--+5  6V'-2G2V!-<--  "K :: K"%K :$it}%27#7&#"3273#"&46#'&''7&7'76?37325'76/.#&/6&+"'"37;&'&'754&"3>'462"&%U&$ *#22c $4- -4' " 4- -+5  V 3+--+5  6[2F22# .d$$V'-2G2v8 "&' 88 "K :: K"%K : #22F2*$FUd747#"&46263254'76/.#&/6&+"'"37;&75526&'&"&547'37'--<- -+5  V 3+--+5  6////5!-<--  "K :: K"%K :$~ // F E /1Q\et7#'&''7&7'76?37325'76/.#&/6&+"'"37;&'&'754&"3>'462"&5526&'&"&547'37' $4- -4' " 4- -+5  V 3+--+5  6[2F22# .d$$////8 "&' 88 "K :: K"%K : #22F2*$# // F E /1!2#!"&54635#7#5##k*R5@5U*+k@@V 7535'353'!2#!"&546!UU5@**U++VV@@*+* 2".4>35#7#5##:b99btb99b5@5U9btb99btb9+kUUV $7535'353'2".4>"2>4.UU5@ :b99btb99b:.O..O\O..OU++VVUU9btb99btb9*.O\O..O\O.  .:!5'"&54#47326?676?/32#54&#\:@<< $@ 2$! B   *#2+ :,;<x- @ !$2 +    +2$$'7'7&'.#2'157@ ` %%%!$ , 2h <`5  * xU=+Wg".'"/&4767'7%/&3276'7&7>&'&"6 2 6     6% N - "$3 [` 4   3bPK. ;O32767'"/&4?/67632'76367>'&'&""&5"'&4767\    /$ -##*%"$!'776   5  1 /$.KO $'*  $3     46=CK"3276765'&'&'&'&"&=4&'.'4>32&4?747&'&')D'+#$)    & '/    o"3< /U +GRC *$"@9[  #> 0*b9/ : "(!% 1  27SX3277'"&=4&'.'573?'7/>312'654'&'"'73X,"%3F &!  N0Q"4+  ' /'y28Y(D )%5E $= 1     0  S7',72$!@DH7"264&72>&'&'#"'.6767&'&547>67.65353  "  'L1 #" ( &$"  'L0 #" ( &+++   #" ( &%"  'L0 #" ' &%"  'L0ꀀV++:CI%47&'6762654&&'67>&'&#"&'.67327&'"&4627'7 ?0L'  "%& ' !# 0K(  "   Dbb+,#    %& ( "# 0L'  "%& ' "#    Dbb:CI%47&'6762654&&'67>&'&#"&'.67327&'"&462'7 ?0L'  "%& ' !# 0K(  "   Cbb+,#    %& ( "# 0L'  "%& ' "#    gDbb:CO%47&'6762654&&'67>&'&#"&'.67327&'"&4623##5#535 ?0L'  "%& ' !# 0K(  "   @@+@@+,#    %& ( "# 0L'  "%& ' "#    +@+@@+@:CG%47&'6762654&&'67>&'&#"&'.67327&'"&462#5 ?0L'  "%& ' !# 0K(  "   +,#    %& ( "# 0L'  "%& ' "#    k++:CO%47&'6762654&&'67>&'&#"&'.67327&'"&462''7'77 ?0L'  "%& ' !# 0K(  "   ...----.+,#    %& ( "# 0L'  "%& ' "#    S-....---:CI%47&'6762654&&'67>&'&#"&'.67327&'"&462335 ?0L'  "%& ' !# 0K(  "   b++,#    %& ( "# 0L'  "%& ' "#    ++:CX%47&'6762654&&'67>&'&#"&'.67327&'"&4623#"35#5326=4&# ?0L'  "%& ' !# 0K(  "   L@k@+,#    %& ( "# 0L'  "%& ' "#    ++@+:C\%47&'6762654&&'67>&'&#"&'.67327&'"&46254=4&+3#3#326 ?0L'  "%& ' !# 0K(  "    @@**@@+,#    %& ( "# 0L'  "%& ' "#     +++V$B%"&462!535#535#535#5!#3#3#3'>'>4&'6..6$*@@@@@@@@@@@@      $$j*++*++**++*++  !(4:#5#'5##3326732673"&=7"&'7323>;5#&'3*++*+7$' &$7+k+k/GG/D+j2662j+$11$+ *.6 .+=--=+k% "*!5!'!63#?//?/7/+ւ WT  ),,,A  5  *^ @5  ,,,,U  @  3AGM'3'>54.'673673#"35#5326=433535#5##57&'5&*D(8-1k3<3W`@2%/)*@k@@@++)C2@/+0I+3T0je;6^;)$2@/%*@*j@@*@@@j@2%/s)*+""'&'&/&'4276?67676 @   0 *9"RG33GR"9*3GR"99"RG3577C<< 35335##+**իի%#77j=/j=T#%'''''''/?7777777***@@++VVVV++@@+7#3!5#'#"3!26=4&##5#53533++*+ U@*@@*@+*V*   @@+@@*2#!"&546;!!"&53!53533##5#+U*++++*k*+*+U**++++$%4'&'&#"3327675%2#676"'3 %%)! %%)! "y "y #$*#$*++ + k",54&+454.";26=767%45'462 > 6@6  \ ,>,! >,  6 6 / X\ ,, k",054&+454.";26=767%45'462#53 > 6@6  \ ,>,+! >,  6 6 / X\ ,, "+53!3#"&5463!23'3#35#@UU@@@k++UU** )76?>&+76'.+"3462"&U.  ,,@ !! (^  v ,V #57#3#3#3@k@@U@@+*k 3#3#3#73#+UUj+UU@*@+V !#5#3#!#53Uk@k@@@@U* V #'+/3!#533+537#5;##5;#=373#'#53#!53@*0000*00Z00+00+0[000+000000U*U+V**++++++V****+++++V !#53#533#'3#!53+*VVVVVVVVVVU*k@@kk@@k%!!'!5%!"3!26=4&7!!k+V k k@+VV* V+V !#5533#!#535#535#53@k*****U**++**++++*++V !#5#3#533533#53'53Uk@k@@@+@j@@@@U*KKKuJJJJJ+KK !!'#3#3#3#**++V**+++**V !533533#53'53Uk@+@j@@UJJJ+KKV !!5!55!@+**U**++V**++@ !!5!%5!Uk+@@*@@k!"3!2654&#3#3#3  VVVVVVk * V 7#37'535#5UUU*@UU*@*@U %353'7#5##+*@UU*@*@UUUU '+75#3!26=#7#5'##";53326=4&+53Օ*V*V*VVVVkUU*++*@++@*!)-5#5'##"3!26=>=4&'3#!#5###53!53353V*V*V * VVVkk**UU+*++*k EF k**+k@@+@V%#'#5##53337++++*+*+V%##5#5##533353@*++V*+**+*++V%#'#5#5##5333537+*++V*+***+*+++V%##5##5#5##533353353++j++@+++****+*++++V$%#."#5#'#3733267335"&462+ ++D +u  +*+*V   V(%5##."#5#'#373326733535"&462+ ++D +u  ++*+**++   V%#'#5##5#5353337+V*++*+*+++***+V%##5#5##5#53533353@*V*++*V*+**+++***++V%#'#5#5##5#535333537+*V*++*V*+***+++***+++V!%##5##5#5##5#53533353353++jV*++*@+++****+++***++++V!*%#."#5#5#'#373533267335"&462+ *++*VD +u  +***+++*V   V%.%5##."#5#5#'#37353326733535"&462+ *++*VD +u  ++***+++**++   V%#'#5##5#5353337+V*@@*+*+++**+V%##5#5##5#53533353@*V*@@*V*+**+++**++V%#'#5#5##5#535333537+*V*@@*V*+***+++**+++V%##5##5#5##5#53533353353++jV*@@*@+++****+++**++++V(%#."#5#5##33533267335"&462+ *@@*VD +u  +**+++*V   V#,%5##."#5#5##3353326733535"&462+ *@@*VD +u  ++**+++**++   V%#'#5##5##5#5353353337+@++++j+*+++++****+V%##5#5##5##5#53533533353@*@++++jV*+**+++++****++V!%#'#5#5##5##5#535335333537+*@++++jV*+***+++++****+++V'%##5##5#5##5##5#53533533353353++j@++++j@+++****+++++****++++V'0%#."#5#5##5##33533533267335"&462+ j++++@D +u  +****+++++*V   V+4%5##."#5#5##5##3353353326733535"&462+ j++++@D +u  ++****+++++**++   V$%#5#."#'#3732673335%"&462+D ++ +  +*+*U   V(%5##5#."#'#373267333535%"&462*VD ++ *@  ++*+**+   V!*%5##5#."#'#373267333535%"&462+*VD ++ *+  +++*+***U   V'0%5##5##5#."#'#373267333533535%"&462++@D ++ j++  ++++*+****+   V'09%#."#5#."#'#37326733267335%"&462"&462+ D ++ D +   +*+*U     V+4=%5##."#5#."#'#3732673326733535%"&462"&462+ D ++ D +   ++*+**+     V(%#5#."#5##33532673335%"&462+D ++ +  +**+++*U   V#,%5##5#."#5##3353267333535%"&462*VD ++ *@  ++**+++**+   V%.%5##5#."#5##3353267333535%"&462+*VD ++ *+  +++**+++***U   V+4%5##5##5#."#5##3353267333533535%"&462++@D ++ j++  ++++**+++****+   V+4=%#."#5#."#5##335326733267335%"&462"&462+ D ++ D +   +**+++*U     V/8A%5##."#5#."#5##33532673326733535%"&462"&462+ D ++ D +   ++**+++**+      %467'!&'#535#533##5#535+6*****@@+@@+,E k++*Vk@+@@+@ %467'!&'#535#53#5+6*****+,E k++*V++ %467'!&'#535#53''7'77+6*****---....-+,E k++*V-....---z73#45#767'!&'#3#33535#5**@X}**@@+@@u* U @+@@+@z73#45#767'!&'#335**@X}**@u* UK++z73#45#767'!&'#3'77'7**@X}**-....---u* U---....-,77"&4627.+"26?>;2#'32>/&3276&.s. s  o  LEK!++     # yo k'7"&475'&>''264/7.`1 WwQ/[ "11 uBB [/L0 1wQZ/Z10 mBB/Z,7"&4627"264&7&#!"/.3!26?6& `  6 Q   %"&462##353#3,,@U@**, +UUU$T]fo7+3>3254&+'7";4&#"''77327'767'7654''7&''7&2"&46"264&2"&46K !C6% k #"  #" %%6%%;,,>,, J1$1 $1eJ  @"  #"  #+%6%%6%,>,,>,+T!"3!2654&#3#"'.'&'"&=#"'&'35#'35#6735#767354623#3#3*:XV      VXZZVND  DNVZZ* + +      Y!%!"3!2654&23#3#3#3#"'.'&'"&=#"'&'35#'35#6735#7673546** DNVZZXV      VXZZVND U*+*@    + +    *36?HQ"3535!3354&#"35335335>54."&46277"&462;5#5!#326=++UU+.O.#++*++#.O#$ 5#UUUUUU++UU@.O.'FQ@@@@QD'.O.$$*@@*$$UU+UU+U &/8H`"3535!3354&#"&46277"&462;5#5!#326="!5654.#5##5##5.54>2++UU+  UUUU.O.+.O'***#:F:#UU++UU++++kU+UU+U@.O.;dd2?.O.L****L1#;"";#0 3533##5#3#3#@@+@@+@իA11+@@+@@++09BKW%""&54675.5462632767.5462"264&"264&"264&#33535#5/%5&&5% 5&%5&     @@*@@  %%!!%%!q  &&""!U   +   +   @*@@*@09BKO%""&54675.5462632767.5462"264&"264&"264&35/%5&&5% 5&%5&     H  %%!!%%!q  &&""!U   +   +   **09BKW%""&54675.5462632767.5462"264&"264&"264&'77'7/%5&&5% 5&%5&     :------..  %%!!%%!q  &&""!U   +   +   .---..--09BKc%""&54675.5462632767.5462"264&"264&"264&27#7&#"3273#"&46/%5&&5% 5&%5&     %U&$ *#22  %%!!%%!q  &&""!U   +   +   U&,2F209BK[k%""&54675.5462632767.5462"264&"264&"264&2'654&#'65"&54735/%5&&5% 5&%5&     #20,#20  %%!!%%!q  &&""!U   +   +   2$  0 2#  109BKQ%""&54675.5462632767.5462"264&"264&"264&'77/%5&&5% 5&%5&     :"M  %%!!%%!q  &&""!U   +   +   @"M1=%.#"#"&=3264&+546;54623232&#"7#33535#5"Q !! V,V  $.";#k@@+@@! Q"0"Q   V #;" ^@+@@+@15%.#"#"&=3264&+546;54623232&#"735"Q !! V,V  $.";#+! Q"0"Q   V #;" ++1=%.#"#"&=3264&+546;54623232&#"7'77'7"Q !! V,V  $.";#.----...! Q"0"Q   V #;" T---....- 3%"764/&37'&#"#"&=3264&+546;546232,.,."Q !! V,V+ %,g! Q"0"Q   G/&'&4632>327#54&+54&"#"32+;546323&54>3254& "    "  V,V !! Q"#;"1%  !'  )! V   Q"0"Q ! #;"! <%'7/70&#"#.#"#"&=3264&+546;546232325/>=/%1";#"Q !! V,V  <(88(<!";# ! Q"0"Q   VGS54&"#"&=3264&+546;>232&'.+5#54&"#3>27#33535#5"0"Q""A*8*A$ kk##. 2>Y@@+@@""Q"0"Q$$A*  k  . 2@2 .# #@+@@+@GK54&"#"&=3264&+546;>232&'.+5#54&"#3>2735"0"Q""A*8*A$ kk##. 2>""Q"0"Q$$A*  k  . 2@2 .# #U++GS54&"#"&=3264&+546;>232&'.+5#54&"#3>27'77'7"0"Q""A*8*A$ kk##. 2>.----...""Q"0"Q$$A*  k  . 2@2 .# #---....- N%"764/&37&#"#"&=3264&+546;>232#5#54&"#3>32,.,"Q""A*8*A kk##. 2 + %,C"Q"0"Q$$Ak  . 2@2 .# BX54&"#"&=3264&+546;>232&+5#54&"#3>32?6764&#".#""0"Q""A*8*A"!*kk##. 2 !_ "    " ""Q"0"Q$$Ak  . 2@2 .#1$ !)  '! BL54&"#"&=3264&+546;>232&+5#54&"#3>3277'?"0"Q""A*8*A"!*kk##. 2 !_5/=>/""Q"0"Q$$Ak  . 2@2 .#1$(<(88(<w7"2?64/&' ^^^^ DDD6^^^^2DDD "2?64/&''%'' $ FFFFFGGGFFFF $ $ *GFFFFFFFFFFGG%.05:?'67/7%&'&#&76767676'4'&462"'7&'#37'57&'#0.QC %!;" -  R=" ##N W<feWMQL#;.":U  - >!%  ##MWeeW N 2;=BGL'67/7%2'676767"3276767676'4/&&462"'7&'#37'57&'#0.Q  /6J.6(* ''2/;" - R="x ##N W<feWMQL#;. "1.7-K5(*/:U  - >!%   ##MWeeW N+ 35#3?353535+jk@@@+jVjjj+++++*+@@+**U+++35353#3?3535kjVjk@@@+jjj+++++*+@**U++1G#4&"#"3;26=264&#53"&54732654'!5473"!5.'@2F2@  32F2-$((U%%     #22#  @@8<'77?''5/7'7'''75''7'775''7/7/7'%%5* * & 2+*%+"9% %%5* * % 1++1 % =- BS$$02 & ) :*+9 )90$$02 & ) > ) %>[ B, -38>D676?27'"&5477&'&'2'./67"7&'627'''7[R#& 19%P x Y&1%"&33y%+ 33g X% RQ91% PQ71&"%* II Q+i II JQ $-%2'76#52#"&546;>2#"264&,%,,ՀY!(!<   +%,,iU+*    ,5%2'76#5'#"&546;>2325##5#"264&,%,,*+UY!(!Y+**   +%,,+*U+**U    /37;%2'76#553546;7532#"&=#535#535135#3535,%,,+65V++++***** ,%,,** **V*V*****$%#572'767#5###5!'2"&46,,,+*+$,, ,X+++j##37;?%#572'76''5#3#"&=#535#535#535463!25353535,,,Q++U+V+++++++*****,, ,À****V*V*+******@1:%2+"&=463546254&"%!'"&5##23#72"&46  u  $.%&&5%% J  J    B V %6%%6%@2;%2+"&=4635462#54&"%!'"&5##23#72"&46  u  $.%&&5%%k K  K 5  5B V %6%%6%'L%4&"26'"&462264&"'"2>4.>;67&#"&54>2&'&#". &5%%5&@  #D:b99btb99b . .O\O.#?&&5%%   *##9btb99btb9 #&.O..O.%#  ; V#,5.+";26=!;26=%3!!5!2"&4632"&46 -    *  @   k@k@"(3&5#4춭325"276767.'7@%%  $R;p@V^@%6$"FS;q126'5776.#3 *p  } + U  26'573576.#'3V }+R(f **k V @}+h) +9+!!'53'32653#5353VU+*+++*VV+VV+VVV!'%2"&467"264&%'#3373>327#5  %%6%%*@B>*7* '# u %5&&5%@*\k{'77"&546;7532&#"e:"M65#;"@"MbV #;E'772#'5#3#"&5463e:"MKk55+ @"MH00V)-15'77%53546;7532&"#"&=#535#53=3535#535#e:"Mu+65F;"|++++******@"M* #;E*V*V****V*+/37'77'5#3#"&=#535#535#535463!2&'535#535#535#e:"M`++UB |++++++******@"M***V*V* *V*V*a '@%2&#"56'632&#"7"5632&5&#"6322"'&#"&#""&5626u"<$&&)7"<$`=#(8-")A44A''L*)=A4+J51+++ $( N#!   9 @ 72#463\'+%3#"'"'+53272773#"'"'+532727!5!**'/(Z(/'**,*&^&*,**.((Z((.**,*&^&*VV+++++ '33##5#53#3#";26=3+"&=46k*@@*@@VV*2##22@*@@**VV#22##232+".=4>11111111#32+".=4>";26=4&#1111%%%%1111+%%%%k!!!!7"354&#5353+U+`***k@ *V++k !!32#5465353%3353!+Uuk***k++k@V *V++!.77462"&5462"&'!2#!"&546"2>4.462"&L.O..O\O..ON`  L*.O\O..O\O. !%!!"2>4.V#;"";F;"";kV*VU";F;"";F;"+.26:3533#3526=4#3#33733735#735#7##73#35335+*+U**|"*+"* *V*+++@+++*++++++*++++V*+++++{".5476767#535# ";E;#+++{ )"*";##;"*")8+{!%)2>54'&'"&547677#535# #;E;"@ #2#$2+++{ )"*";##;"6]/$2#0*..*0#2뀀+{%'77'&'&'1;&54>e;"L?5";# 7ee@"L=4I$)"*";#!9${%%'77%476767&'&'1;&5"&e;"L$ 5";##2ee@"L0*.!!%4I$)"*";#2{%#57&'&'1;&54>ժM5";# 7U**k4I$)"*";#!9${#%#5'476767&'&'1;&5"&ժ$ 5";##2U**@0*.!!%4I$)"*";#2 +3267'"&547/6?'&'&/[#";#1_$1} !% 5 9+";#_`2#/}''5% {$-1#535#'2>54'&'2"&46"&462#'7+++ #;E;"@ 0 k o++ )"*";##;"6]/${"%#".547676?5##33535#;" !7 *@@*@@#;"*")%#0%$9 @@*@@*{+%#".547676?&'&'75##33535#;"  $2*@@*@@#;"*")%#0%%!!.*0#2@@*@@*{"%#".547676?7''77'#;" !7 -------@#;"*")%#0%$9 -------{+%#".547676?&'&'7''77'#;"  $2-------@#;"*")%#0%%!!.*0#2--------8A%#2646'&'654&#"#'73327#"3#"#"!264&"&462 8($6,1++1,6$  u  U$U  +$/*+/%U$,   #&";26?3;2>'.#3#'##73 u0J0u **v003f  $$  + +@@k #.%#53.'6327&#"35#>'>716'.'6z A-/N..O { AZ --L,+4# +-B .Nv.&++-B&!7.M.)E#6I'  $ *6'#"&='.547'.547'7'64&'654&'" !,?" A !%"#/%,7#>N+H9?["4/#K4=+N>#,77#5575575#5!VVVV*VVVV*UM-&.x- %.\++k7!2654&#!"7!!UVV"+4=%"'64'7264&"&"27264&2"&46"&462"&4624%%6%4%%4$4$$    iX X&5%% W%6%X$$3%        )2;%4&'.#"3267.#"3267>'"&462"&4622"&46G9#%%+34*%%#9G   %%6%%?c%7$K]M$7%d     %6%%6%+%#5##546?6;5332%323.#526=#"ժV~ B ~!# .WGG'    !!!"&53/3#!"&5465#%5!UVuuk+@u U**U++  $#"3!265!33%!!"&53535U*kVkUj@+++V** ,9FOXajs7"&4627"264&#!"&46;.54>232'2>4."4&#!"3!26462"&'462"&"&462"&4627"&462 H2##22# &3YhY3& #2)D((DRD((D  s  &  `  E   #22G2O,4Y33Y4,O22(DRD((DRD(V#6  D ? %  )7CLU^gpy7"&4627"264&'#>4&'##"3!264&%4673".!"&463!2264&"264&"264&"4&"267264&"4&"2674&"26   && && #22##22(DRD(\a a-+ 5OYOOYO2G22G288)D((D##O  p%4%X+4:?EJSZ_ej7"264&3"264&'2".4>7"2>4."264&'7''62&4717""264&1'7''62&4717",,v.O..O\O..O.:b99btb99b:,      ,      ,,,,v.O\O..O\O.*9btb99btb9@,,5  -   k,,5  -    k%.7@IRk462"&264&"7+".=4>;2264&"264&"4&"2674&"2674&"267#"&5467##"&'626     s3Y4*5X3":"":" ,, , ,`   `K   ?&$2f2$! &99&    4X44X4#:"":,,    z2#! !#2 5&))&#0=F264&"264&"4&"264&"262".4>7"2>4.4&"6$$$$+k$$+.O..O\O..O.:b99btb99b;$$l 1#.O\O..O\O.*9btb99btb9  '09BKT]".5476?!2>54&'264&"264&"264&"4&"267264&"4&"2674&"26q.O\O. #%9btb9%#xj#q## $r##5##UB&.N..N.%#+ S/9b::b9/SU  ##+$=##+$g#  #'+/37#5##35#35#35#35#35#35#35#35#35#35#35#!!*++U**V++++U**V++++U**V+++++++KKU*****++++++++++***V*  $(,04DM!&5467#536325!3533##535#535#535#5;#3#537"1767654&"&462D/ +ր*++++++++++++*****v,%, E03+KKU**++*++**++U++@,"8$,g  ,04CL3#7#335#7#335#'#3#3#5##!5!!5&'35#7#3'&'&54624&"26@+++++********+++++v!**+++++,=,1+*+*V+U*++KK *;*V+ $$-- "(*.I>'.'673677&'5&!#535#476767654&"#462.I#S::\/5T\A1%/)*M)@2@.j*** $*2F2   +7T.:S+Cg92T5)"1A/%~@2&.s)*P+   #22#  (+%#57&"#"&/46;762324&"267'뫫E;# 8 acba $$@@@++J#;"  s$[[ *-%#5'"264&#"&/&546;76232&'7!3'3'@$ 6 f]]f  .Qx<@++k$$  L -Z!+%'3''76232'#!"&/46;7'7'326,<@$1ba ' 8 ay7  [3E '  y7  3#"3!277%'332677'7#'3''762323|f 6'.{.  F~+#+8<"/]f |  '5.  E#l+Z4G  '03%3##5#5357&"#"&/46;762324&"267'@@+@@kE;# 8 acba $$@@@+@@+@kJ#;"  s$[[ 25%3##5#535'"264&#"&/&546;76232&'7!3'3'@@+@@$ 6 f]]f  .Qx<@+@@+@+$$  L -Z '03%''7'7?&"#"&/46;762324&"267'...----.(E;# 8 acba $$@@X-....---uJ#;"  s$[[ 25%''7'77'"264&#"&/&546;76232&'7!3'3'...----.$ 6 f]]f  .Qx2653".4>3272"&46k(G).O.#GZG#*9btb99b:1W%%%6%%($.O.:--::b99btb9*%%@&5%%5&!*3<#7.#">2653".4>32727."2"&46"264&k(G).O.#GZG#*9btb99b:1W%,, ($.O.:--::b99btb9*%%&&+,>++>,+@+4`i%77#'#'5'&'7'#&5737'67756"264&%77#'#'5'&'7'#&5737'67756"264&732#4&"#4&"#5353'              @++%6%%6%+ t)                     U@%%%%kU 55A )3%+53254&#!"3!26=5#5##53353+532+@  U + +  @@ VjK KUDDDD  !-"326=4&#"'&.'7>'&54&#'77'7U 10STc *# /,I/ ,----,,, cTS01 K /I./ '$ ,,,----,"(.:%"'#".'7>'&54&+"326=4&%3&&'73'77'7*#/.I/ K 10STc '&+",----,,,u /I,/ '& cTS01 K  +(,,,----,'5462'354&"6767+%6%Q&  [#49 Y*%%Q@ -48/ X#)#5335#7"264&%#!"&='75463!2''U*****$++[M";V$$UU++UnM"@'-!"3!2654&!!#533#7"&462'77++*****@$$;"MkU++U+ր$T@"M'#53#!"&='75463!2#335#7"264&U**++U**$UU++U}*$$ '+73##3#3%"264&%#!"&='75463!2!!+*****V$+++k@*@$$UU++U#/#5335#7"264&%#!"&='75463!27''77U*****$++..----.V$$UU++U-------/3#5335#7"264&77'7''7#!"&='75463!2!!U*****$-....---+++V$$w.-------U++UW#/9%'7654&634&''"264&/7.467&47e;",!`U$!!6e@" >#  +N/#+$$NNVN>F>/4/FW'37%4'7"7654&''"264&'7&47/7.4635#UW!$l=!!#/  +N>#+$$//4/F=NVN>F>*W)3?%4'7"7654&''"264&/7.467&47##33535#UW!$!!6*@@*@@#/  +N>#+$$NNVN>F>/4/Fg@*@@*W )3?%4'7"/7.46%654&"264&'7&47'77'7U!!'!$l--------#/NVN>F>6>#  +NN$$//4/Fp.------- '+/39=AEIOS!5#535#535#5##5#5#3#3#5#5#5#535#535#35#735#15##75#;5#35%3533#'3#+****U+*+UU+++*++++++++**UU+***U+++*++*+U++V*++*++++*UU++++*+UUU*V*V++V****++*UU*V++  #26:>DV%"764/&37%#53#537#5;#5#535#5#5#535#5#3'#53%#53'53'#535535#533353#---++***+++U*++*++++*U++UUU**UU*+UU+*+>>- ',U*U****++*+UV*+*++++V+++UU*++>>  CGKOS#5+3#3#35'#3%#3#33#33335#535#5333533&#"#'#3#3=#35U*++++***U++++*++++*+++UU+*+U"& $++UUU*k**U*++V*UU*U+*++++UU*+++&$ &"7+*U++++  CGKO[#5+3#3#35'#3%#3#33#33335#535#5333533&#"#'#3#3=##33535#5U*++++***U++++*++++*+++UU+*+U"& $++UUU*+@@+@@**U*++V*UU*U+*++++UU*+++&$ &"7+*U++@+@@+@  CGKO[#5+3#3#35'#3%#3#33#33335#535#5333533&#"#'#3#3=#'77'7U*++++***U++++*++++*+++UU+*+U"& $++UUU*-,,,,---**U*++V*UU*U+*++++UU*+++&$ &"7+*U++,,,----, #'+/37Y]35#"3%#3354&#;5#!#326=#535373#;#3#7#3!33#33335#535#5353335#+UU+UU+D+UUUU+*+U++++++++VV++++*++++V++*V++U+UUU++U++++++*U+V+U++*++*VU+V*++)27"#326735#."&462."#326735"&462----;..#-;..;--#$+$$+$##$$+$$+@##(175#35>4&2"&46#35>4&'2"&46+$$+$$2#+$$+$$#.;----;.!##--;..;-(##7'''&"7777764 $ --------.. T ..-------- $7/?7'7''7'""ss""sU//UV//@$$@@%%@ss""tt"/UV//VUU@@$$@@%$-6"#.#"3267326733264&#"#.462"&%"&462 3!%%!3 * 3!%%!3      %6%%6%@    "&%3'3335#7#5##5##";26=4&53@UV@+@@j+U+UUU+@++++땕 "&#7##'35#7#5##5##";26=4&53@VU@+@@j+U++UUk@++++땕%3'33"2>4.'53@VU@+)D)(EQE((ED 4UUU++(DRD((DRD('O< &%3'33"2>4.2".4>7'5@VU@+)D)(EQE((E(//800D4UUU++(DRD((DRD(.080080'O'<#7##"2>4.'53@UV@+)D)(EQE((ED 4+UUU(DRD((DRD('O< &#7##"2>4.2".4>7'5@UV@+)D)(EQE((E(//800D4+UUU(DRD((DRD(.080080'O'<!"3!2654&#53#53#53*++U**V++*ՖV  7#53#53#53!!!"3!2654&++U**V++***UV*W* "&*##5#5353!35#"3!26=+3535#5#@*@@*ր*+U+**++U*@@*@@*+VVV #467##7#'34&2>=!j=-+@UV@k=";E;#/GSVV~/G#:##:#U #467353'3'34&2>=!j=-+@VU@k=";E;#/G׀VV~/G#:##:#U 3'3#7##".=7#467@VU@@UV@.=kk#;E;"jj=-@UUUU>G/+U#:##:#U+/G $'&"77764/72?'7S< q # VVUUDU q " >\ZZ< " s UUUUDV # s ;ZZ 3#'7#53**<kkk%; Q*!"3!2654&!!3#73#73#++V**U++U++++++#+%3'7#"&'#"&5!'"2>4.7!5373@ 4D(E)6B/<11:11#Jj<')E(1O81:11:1++,4%3'7#"&'#"&5!4>3#3&7"2>4.'3!5373@ 4D(E)6B/<(E(#11:11'JJj<')E(1O2(E(1:11:1++R'?6.##"''?&''&'&'&'7676?>76326?&'&4732   # (         # 3,"#   " %ME!       59  ! 1 !*3<ENW`ir77>32#"'&'&546;27"264&3"264&3"264&"264&3"264&3"264&"264&3"264&3"264&I./ #* cTS01 K m  7  7   7  7   7  7  ,I/ I 10STc '& w       @       @       "(.7@IR[dmv%"'#".'7>'&54&+"326=4&%3&&'73"&462"&462"&462"&462"&462"&462"&462"&462"&462*#/.I/ K 10STc '&+"U   @   @     @   @     @   @   u /I,/ '& cTS01 K  +    I    I     7'/7'?'7'7/\|hu">mQQF5<+j11\>1f ^+ U!";732654&'77VUUVK,oUUK,n!";732654&#'#!'77VUUVgDDgVJ,bUUDDJ,b!";732654&#53VUUVgUU+!";732654&#'#!#53VUUVgDDgVVUUDD+!";732654&''7'77VUUVp---.--.UU...----%!";732654&#'#!7'77'VUUVgDDgV..--..--UUDD.----...V$,57.514>32>32'"&''%'2'4&"36514&"n1--1;@;TT&\C&5%!!%5&n@#11#@TT&&5**5&& 37'?#"7#33535#5|"s<\1 F@*@@*@37'?#"7/7735|"s<\1 **!37'?#"7/77'77'7|"s<\1 <--------37'?#"7/7'77|"s<\1 S@"M!767#536533#3#."#757#3& * *3 5@5 3*x JU$+[zy\+$*@$$@*@#r2#3272735#"'"##'#37326=4&+'5#535%1**,*(Z(&0**-)'\+@@**@+r**O++***+++++k"/<R54&+"&+""335!3526=4&'32#54646;2#54'#!"&=462!5462&UU&&&+*+&&U k U kj  V  +&&+&k&****&k&@ <+  + k UU V.7546;2#54&"!54&"335!3526=4&k.#++..!,,! @@k++++kk-C54&+""33533526=4&%46;2#54'#!"&=462!5462%%%%**%%     +&&+&k&****&k&+ <++ k UU V !535#5!5!2"&465462@$C2F2U**+@+V##(6D"264&7"264&7"264&"335354"335354"335354&#k#$#U U V U U@##+$$*##`jj`+ `kk` + `kk` VA+"&=#;26='&+32+"&=#'.+32+3267;2? +&#2+#**  *  %++$ 6U @@%2#ղ*  Q *%"++ +?32354;26=#+"&=326=#+5332+326=4&#+ +&U&V&+ V %* + ++&&++ &&& %@@ V+ V +&V&QV%#5#535.546;327''7'&'&6767.#"&54>27>'&'654''67@@@#8( ;;;4 $ (#2 1:1 ! `  +@F 1(8 " ';@ %J2#  11' ;E NV%'7'7'5.546;;74''7'7/.>?.#"&54>2676'67 *++ +8(   "\" 07'5+ ! (#2 1:1 D ++$$ -(8 570% !23' 2#  11$ - #733#53#733#53+*++@@+*+*+@@**V**4=R%576/4#&/4&+"'"37;265?2?64#"&462#"&5463!2&'5!3 * *f 3$  $%  $5V z.'5'7357767'/5"264&67677JE+)&*$ #*@#T( jrX+2a) ,@$$QS3(jr)3HZ264&"4&'&"37264&"4&'&"35!'7!53#546;5#532#7#5##5##546;2$g > $g > @@@*@+@ **    + @##I   U##I   ++@@**@     @@++@@ )3GKS]264&"4&'&"37264&"4&'&"35!'7!55#";26=4&+5#57##5#533##53$g > $g > @@@*@5+ @j6@##I   U##I   ++@@**@j@  @@  U9%#"/"&=462'5##5##5##";5#5!54&(-   k++*+F= <{ 7kk+++++A$%+1L"&5476?'47.#"2>54'#"&'/7'7."#67'"'.>632   ]G&:b99btb9 ,(--- '.' $ ?   L%;   +$9btb99b:,-.-$, )"5EKf?'7'23>3267.#">"'#"&'#"'&'32>54''2654'&'7'7>23.#"'4&'&27--SV5"> G&3Y< n .O.5V  3254&'#53325#%.+"/734&/#k  N  *#u + . %+1ƪ*%+i r2 3|#U  $ - *-&$':5)1 &0) /v(09%#54'1&"#5.'#5''754?#576232'2"&46# (($<3'j  & $  8c2EPEi!G^< "##2476?"&2654'&/'!54675#532&+K   U  5=.+#*-=5  @/G-* -G8@476?"&2654'&/'+"&=4675#532&+4&"3K   U  5=.+#*-=*2G25  @/G-* -G/#22#*>476?"&2654'&/'#5##33537!54675#532&+K   U  u*++++*@=.+#*-=5  ++*++U/G-* -G*DL476?"&2654'&/'#5##33537+"&=4675#532&+4&"3K   U  u*++++*@=.+#*-=*2G25  ++*++U/G-* -G/#22#A(2="'&.";267326=4&#"&=462'&576+5462"i i"/##)HXH)## 7 71 1 @  "J"&//&"J" J  E e  A (3>I%'&5767"'&".";267326=4&#"&=462".=7+5462@7 71 1p"i i"/##)HXH)## 1:1kk` k  "J"&//&"J" J  E11 % e  k!"#7#>32+32>4.#37$='@VU?6%(88(&?&&?5eVk";#VV$18P8+&?L?&@@V-1!#'77#"3275&'7!4.#"326=>'7**+++12$. *1$$2` @++++1-+#2  1 2#+- )JNR!#'7715632#"'5326=>54"1"327#"&=.54>32'7'**+++$12$&$r$&$21$ @++++@+1-+#2 * D!%%!D * 2#+-1V #'+/32#"&5#"&5"&=46;546;2#5#35335#35k   + V @5 j e @ @ @55@ /3775#35#35#2#"&5#"&5"&=46;546;2'355# e e 6   + V `@K@ @ @555,047;7'#"&5#"&5"&=%2'5#'5#'3546;235'35'3/5#+z%   @ %@ V E E@Z% &@dD%@@ @z 5 U55#&*=A7'#"&5#"&5"&=#5'3'#5'#5'7';'72'5#'3546;2'35+z%   ` % %ED 6*+ V `@Z% ښ%5U%Fd *+@ @555'47%4.#"632".547'2>%2"&464."2>'59b:%#.O..O\O. ) 9btb9 ";F;"";F;"@k:b9 ) .O\O..O.#%:b99b#;"";F;"";#@'48<%4.#"632".547'2>%2"&464."2>'#53#59b:%#.O..O\O. ) 9btb9 ";F;"";F;"++:b9 ) .O\O..O.#%:b99b#;"";F;"";c!*?'4.#"632".547'2>%2"&46Հ9b:%#.O..O\O. ) 9btb9 ````:b9 ) .O\O..O.#%:b99b'+/%4.#"632".547'2>%"&4623#73#9b:%#.O..O\O. ) 9btb9 >++U++:b9 ) .O\O..O.#%:b99b+  2".4>7"2>4.53.O..O\O..O.:b99btb99bb-x-jk.O\O..O\O.*9btb99btb9-x-j  "2>4.'2".4>5#.O..O\O..O.:b99btb99bb-x-jk.O\O..O\O.*9btb99btb9-x-j  %".4>22>4."?#7'7.O..O\O..O.:b99btb99bb-x-j.O\O..O\O.*9btb99btb9-x-j  %2>4."".4>2/3'7'.O..O\O..O.:b99btb99bb-x-j.O\O..O\O.*9btb99btb9-x-j  "2>4.'2".4>3'33.O..O\O..O.:b99btb99bO@UU@*k.O\O..O\O.*9btb99btb9TT  %4."2>7".4>27'#.O\O..O\O.*9btb99btb9TT.O..O\O..O.:b99btb99bO@UU@*  %2>4."".4>2'#7#5#.O..O\O..O.:b99btb99bO@UU@*.O\O..O\O.*9btb99btb9TT  72>4."4>2".75535U.O\O..O\O.*9btb99btb9TT.O..O\O..O.:b99btb99bO@UU@* )2>GS\ho462"&&#"354&%264&"&#"3547462"&#546762462"&#546762%462"&#54676275##7U$$fj$; j@$$ > ## > ## > % 0@@k#;  '##  Y#n   #n   t#n   **@@ )2>GS\ho462"&&#"354&%264&"&#"3547462"&#546762462"&#546762%462"&#5467627#5#7U$$fj$; j@$$ > ## > ## > % 0@@k#;  '##  Y#n   #n   t#n   **@@ )2@7#4>3"75"346'4&"267#+"35>264&"#"&'#354&+4X4)D(1+%##_*$@(#1@$*(4Y3*(E+1%# 61 1$$2 05 #/4!'".473#3#327'2#'6/!'654.#"#'3[(X%#;" !6 KP %4 +J2."4&+5#'7."62'!"&=46;'7#37#37'#37;7/0.*+5$'%@b%x++J**K+BU<&U++++%'7'&>7'&>3'\?  ,3*K* *  )%*  *cLZ"+/3%&/&'&'54&"3533535"'&2#546535#53< ),>+*@+  '&.A4$@@@@v &c++** ;*( `` ++U++7!"3!2654&!!3#3#53#3535#5##3?7'7''**kkkkkkj ** ++**9 W F+ ** l#0%25'67&54>"264&2"&46"&'6762k*I- ";#$22G22#   gFFi/Y?  !)#;"*2G22G2s  )6?%2"&46"2674'&75'6732>54&.=7"&462k   *I- 7 ";#=3Buu-=$22G22B  gFFi/Y?  #;"0Fv \8M33KF2G22G2 4&#!"7353#7#3U /$j*kUUk7!354&#!"735#!#7#3UV*Uq/$j*QU+Ukk %'77#3''77/#3`K-Z7888877K-Z"+^7778888+ !"7!2654&'53U+'55jU  !"7!2654&!!5#7U+V+k6U֫ !";;2?32654&'53V O'55j@ O $"&=#"&5463!2+#773!%5#7 VVO B+k6 @OBB* %#7#3'#+"&=#"&5463!2#/$j*UO VVkUkkO @%%#7#3'#+"&=#"&5463!2#5!373/$j*UO VV*B)kUkkO @BB+ 97#"&46;2'4&+";26#!"&46;&'#"&46;67#"&46;2U U    U1 - -j 1   j  M1      1+ 9B7#"&46;2'4&+";26#!"&46;&'#"&46;67#"&46;24&"26U U    U1 - -j 1*&5%%5&   j  M1      1&&4&&3AQW"'#3'>4&+";#.#"3267372>4."&4632#3!"&54677'632#53'?I64& *  0<'11'<7;1:11,,)^^)+ && ,,VV+{ %sY  p'41:14'!-11:1,>," ", KK,>,`@+@#,5;.+";26=!;26=%3!!5!2"&4632"&4635# ,    *  VV  kBj+@++3;"&'6."&32>'772>'7654&?/?/L 7b# ` 7 L#---- ++ ++ M8  ` b8  M---X+ ++ "+4:4&+3#5#"326537"&53'3#"264&"&46235#@@KKU#2*&5%`` + 3jj*&&5%%  VVU+8]k2$@&&y  +k%5&&5%U   k+@+%)2;A4&+3#5#"326537546;"&53'3#"264&"&46235#@@KKU#2*&5%``+ + 3jj*&&5%%  VVU+8]k2$@&&yN@@  +k%5&&5%U   k+@+V%.7;4&+3#5#"326537"&537#546;"264&"&462'#53@@KKU#2*&5%`` + V+&&5%%  jj+*9]k2#@%%x @*&5%%5&V   +k&/5'#3#"326?264&##"&4632#"&462#53'tV^M*(88(#5-8P88(= ,VVV++8P8."(88P8p,  %, ,k@+@A$-58A%54/&+";267332654&%46;#"&4627#535#53#"&462 T '@J@  U++U+AA`   e`u   * +`Nu   k$-58AG%54/&+";267332654&%46;#"&4627#535#53#"&462#53' T '@J@  U++U+AA`  VV d `v   + +`Nv   `@+@k&/873546;'.+31#.26'"&462%"264&"&4622#(SS#1p)(!5  "&&5%%  +#2+ 7$'#   U%6%%6%U   &/8>73546;'.+31#.26'"&462%"264&"&462#53'2#(SS#1p)(!5  "&&5%%  VVk#2+ 7$'#   U%6%%6%U   V@+@>'&#5#"/#'&?.''7656/&746766;546; !5 ^6     z2$J @K 4L+fe &        #2OX462"&+#5#"/#'&?.''7656/&746766;546763546;'&2655 ^6      2$J * uSJj*QP '       #2O#G'&'7>;@B*?$"v U$:!3@'&#5#"/#'&?.''7656/&746766;54637 !5 c8    z2$JU J 4Mj*RO *        #2@@%'&'7>;73@@ S7*@"dkp5F3 #'+/37!"3!2654&#535#535#53#535#535#53#535#535#535!5!V@@@@@@u@@@@@@u@@@@@@***********+U  #'+/37;7#5;#37#35!!7!!2#!"&5463#37#37#3#37#37#3@@`@@`@@+Vk@@`@@`@@@@`@@`@@++++@UU*++++++++++!%'&/&"'367676767'"&462AJ (t'&6,8&(-   ?|4q   <["#'.''''#"'#"326=326=326=326=326=37676764'&'!6 (+ , + ( $/        @     ( + -,($       C <3B747676327;'6767'6767'67654'?3#"##676767#"+3+  /$ ( + , +( 6!?40=k   $(,- +(  " +  #/%##5#'.?#75#4>32>53'.>32k++-!33  +**7'*.'  U)22 ! V@,7*'+Id  &?H%&'&";27676'667>#"'77&'&#"+;27676'>6  ]     S $ w d 6_o   .+ oR S $   P5OO4Q3V "L+U("!_%% P5OA '^)$@) "L+!"(k+335##5#53533++++**++++ր++*+++4=?/"2>54'".=>7327/7&"264&3"264&4444:b99btb9.O\O.*@W0 eK*n u w4449btb99b:.*: .O..O.>)%)E."17@I?/"2>54'".=>7327'#"&'627&>"264&3"264&4444:b99btb9.O\O.*@W0 -M:* ) )/ u 4449btb99b:.*9.O..O.=)%)(-&@21(1:?/"!54'".=>7327/7&"264&3"264&4444:b9.O\O.*@W0 eK*n u 4449b:.*: .O..O.>)%)E.".4=FJN?/"!54'".=>7327'#"&'627&>"264&3"264&#%#64444:b9.O\O.*@W0 -M:* ) )/ u ,V,4449b:.*9.O..O.=)%)(-&@21,, #553'3#3#3k@@****F`ѫj++ &/377"&4625!2#!"&=46;54>2'"354&#3#3#n1;1k%$****U$$@+11+k%++%U++#,04%5!2#!"&=46;54&"#4>2"&4627#3#3U$7%*1;1k#****+%%11+$$ր++ %#53#537!5?#3!2654&****kf+g*V 3!27'!5734&+[T = +3 T: S*3"&*!5?#3!2654&#53#53'#53#535#53#53f++++++J****K++kg*V***+UU+*UU)2?&#"&'&"37>32>32265&&#"562jj+")E!D!8"!E<*"(")Xk`    7 -GKO%&/&'&'.7'&'.7767>/&''&'>76/&77#53#53N   *  8 % $ C     ++++  E"j2<D# %M%      `+#"#."#.#"3267326733264&!2!(!2!&&!2!(!2!&&%6%%6%#3#'##"3!2654&3>&#"37'&'73267#7@++@V,&6!'@&6"'@@U+++ @* @@+;#'##"3!2654&!37333>&#"37'&'73267#7D''DVW'Z(V,&6!'@&6"'@@U++**k+ @* @@k!*3#"'32>53!4>327&#"#73"&462U@";# *1.O.@";# *1.O.@VUk$$U#;".O.#;".O.UU$!"3!2654&"&462*#22F22*2F22F2!%!"3!2654&"264&**#22F22U*+*k2F22F2?%"'&'&'&"'&'&'&""'&'1327676712767671  -  -   /" K             !";;2?32654&#53V Og@ O+#%#537++"&=#"&5463!2!373UO VV*B+kO @BB'#+"&=#"&5'74&#!>e/O VP eO @ %'!2'3'#+"&=#"&5'7'37+< %-e/O V؀Bk* &eO @BB` 6%''7'77'"264&".4>263267."327&547...----.%%6%%11:1# O X-....---%6%%6%1:11 GYYGGY` 2%''7'77'"264&"&'>267."327&547...----.%%6%%54&"&546735 V .=";F;"=C#2$*$2W   WG/#;"";#/G2#.gg.#2 %/#!57'5'!'37yp(k=X+<]+yp(+=5WW*++^*$%1!7%'535'5!'35#'C  Q@)+Ѧ*#xC &l(~@<+-:'6323232'5#'6;4&+."'##5"&5467'7'#";6767!$#2+ +*{ U6;#2G5 P2$* +Q&z :*2$+ G5#,5F5#3&+";2654&'672>54."&4623".546735KK  H 0:&5%1ScS1+I  %@%C2+2C%@TA*  !g<!%%!0)1T00T1.N3   &?&3NN3&?&,27"&4627"264&'57326?'#'#33!5#"&''### S$SYG+Mf8V###D% *4 +f7U /37;?CG%"&462%"264&';!"&54?'#53!2+735#33=##37#3'35### M+F< L  4J@@-###H+ 5**  *++++++k++++%7'7676762'#?&"'74&"26|Q!#+X+#!Q @ F747f   QQ+|77fb  &/4"67'77'&'&'&'&''6762"&462'53*(" DYYD "(Mww<%6t5&   @ DYYD ww<'%%'Z  +#"3353352654&#53k++**@k!#"3353352654&#53%#53#@*++++++@k@+!%7#537##5##5"&546;2#3735#535+++*+U+++k@*+%6;2'##5##5"&5'7'#3 C3 ++S(*o 3S)k %'6;2'5'##5##5"&5'7'#53'3 *m3 ++S8*k +3SBk#"3353352654&#3#53k++֖**@@k ##5#32%3##5"&546#3+5``5+Q@@kk@V !%##5#32%3##5"&546#373535#k+5``6*R@@++++kk@V+!%)#"3353352654&#535#53#33#7#5@*+U@@UUUU++++@jV@+ր!&33535335277%#53'532'6;3S+55+ 3@(`{ `S3V)S\|  #)-'6;2'5#'5'##5##5"&5'73''#37'3 *V*3 ++SbV@VVVk +|+Q3SU-jUW!#"3353352654&535#533#3k++@@VVV@jV@ %5%7'3##4623#@@@@@+  U*V H I & k +IP"&462"264&'37>.'.932?276?'&'&7#'+v h?.   5 4& 0#!$2^2$!#&) u .0     #%  ,     ,9 !I k#,5>GP%2"&4672"&4672"&462"&4672"&4672"&462"&4672"&4672"&46$$$n$$$$$$k$$$$$$$$$$$$$$$$$$k#,5>G%2"&462"&462"&4672"&4672"&462"&4672"&4672"&46$$n$$$$$$k$$$$$$$$$$$$$$$$k#,5%2"&4672"&462"&4672"&4672"&462"&46$R$$R$R$$k$$$$$$$$$$$$k#,5>%462"&'462"&'462"&462"&'462"&462"&'462"&U$$$$$$$$$$$$$$$$$n$$$$k%#57254&#!";&54>U##;@++k ";#k%#5+!54&#!";&4)V@++  %!213!7|!-;1:!! : '!2'5'!"&547'71'#*(-;!_@+): !|)k %''7'77'254&#!";&54>..----.L##;+....---S ";#k !%''7'77#!54&#!";&4..----.V+....---  Y)AI7367>/&'.'&'.71&/.776/&7#&'26##'#5U       W    ;*  - ( = # &   J++ /77\KK\$ Oz@@"76767654.'7'?)D(  (D 55/>>/(D)&4*0####0*4&)D( ;):8))321'&'&'&54>"6767654.'7/)D(&, (D)11113 />>/(D)1H49##0*4&)D(*1$0AA0$1 ;):8); 335373+wxx"wV3wV#7;">3235.+"&=46;235'";26=4&+5353#Jt3[7>/77 Kw++U+++VV++UE4B)77++*++#7;%+"&=46;235'2.#"#5>";26=4&+5353#++U+`Iu3Y7>/77MM++VV++VD4B)77+*+++  %#535#335#'+"&=46;2''ժ+ /&&*V++@1 /x"#"#"2654&'532654&'54&+5>4&'53#"2654&'532654&'54&+5>4&'54&+5>54&2"&462"&46!2"&462"&4632"&4632"&4632"&46V,V,,V,V  w                                 04=F35?7"#";26=!;26='.+54&3!2"&4632"&46*m---vJ ,    , J @@.--..  ``*#'+/353546;7532&"#"&=#535#53=3535#535#35@+65D:#|++++******+* #;D*V*V****V*++%)-15'5#3#"&=#535#535#535463!2&'535#535#535#35k++UB |++++++******k***V*V* *V*V*++#'+/;53546;7532&"#"&=#535#53=3535#535##33535#5@+65D:#|++++******@@*@@+* #;D*V*V****V*U@+@@+@%)-1='5#3#"&=#535#535#535463!2&'535#535#535##33535#5k++UB |++++++******@@*@@k***V*V* *V*V*@+@@+@#'+/;53546;7532&"#"&=#535#53=3535#535#'77'7@+65D:#|++++******B--------+* #;D*V*V****V*`,,,----,%)-1='5#3#"&=#535#535#535463!2&'535#535#535#'77'7k++UB |++++++******B--------k***V*V* *V*V*,,,----, #'7627''7''72?' << $ &@@U<-<; < &UU& $ < $ ;< '@@<-<<< # &UU& < &/9Bfox%'5764/4#76&'#&5'4&575&+54#74+4/54+#'4&#"5'&+#'&##'&""'&"'&'&"+""#333323;7;737372;6573?32?2567563726367572='732='465726'5'?6=&#'576'.>'&"/&'75#532;.676'.6767>/3#&7532##"&'&'&/64'&'&+67?'62'&>.        y   G  &)B  6  * {5       $3 !8               +  0   "   ,   e '   -' ("   l  "#."#"3!2654"&46#53Y!(!Y*  ^*   +&*#."#"3!2654"&46!33533#Y!(!Y*  **ꪪ*   ***+ 4&+."#"&462'!"&5'7Y!(!@<  &(U   %,) &3!7%534&+."#72"&463(,&*+Y!(!@V&  )%5*+UU   *#."#"3!2654"&46''7'77Y!(!Y*  U------.*   ...----&2#."#"3!2654"&46!3353''7'77Y!(!Y*  **I..------*   ***}-....---%3<7>54&+."#";&'.672"&46654&"3277'"&462GFY!(!Y   8P88(B,| GH   (88P8B@, ,(6?7#335354&+."#";.2"&46654&"3277'"&462**Y!(!Y  8P88(B,+***` | a   (88P8B@, , &/3!7%3##537#3#4&+."#72"&463(,&-+X@g+<fY!(!@V&  )%*V+++*gUU   '2534&+.#72"&46'3%3!7%#3#3k*+Y 0 @V&  8+g(,&--+XU+*+ UU   ++)%5-+*+U*3AJ7#5367#537>3#53#254&+."#";&'&2"&46654&"3277'"&462D@Kg3 2Y!(!Y   8P88(B,U+*++| R   (88P8B@, , .7EN#367#7>3#3#"&546;67632&'5##5#3264&"'#"&462'4&"26k @Ki3g Y 0 Y**   B(88P8,,,+ * | `** L  B8P88(3 , ,AEI"2>=4."'&'&=275"&'5267'"'&'&4767627#53#.N..N]N..NQ K!66DMECKB%!!K  ***''''  01<      ++#/DK%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762'353.O\O..O. & 6J:" DNDCJC&  L  @@++''' 0" <      @@VV#/DK%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762#'7.O\O..O. & 6J:" DNDCJC&  L  U@@''' 0" <      +*@@+#/DK%54."327&=#"'&'&=327>32'"&'5267'"'&'&4767625#535.O\O..O. & 6J:" DNDCJC&  L  VV@''' 0" <      *++@#/DK%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762##5#7.O\O..O. & 6J:" DNDCJC&  L  *++@''' 0" <      UU@#/DJ%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762'77.O\O..O. & 6J:" DNDCJC&  L  e;"L''' 0" <      e@"M!6AMZ%'53#"&'.=4>2'52'276764'&'&"67#"&'&547&'%4."2>`=M (E)%A+G).N]N.'/  K!!K 4)&B[3$1:11:1e$.kU)E(#&''OHg @     z ) / %11:11*?DN%2?#"&'526776754."57&'&'&=72"'&'&47676#57'762>: 'DCJC.O\O.(D*  6J&  L  ,,, k> <  5G''%'  0   ,+{, AJ%".=4>2&'&#"27##"&'3273#"'3276?#37}N\O..O\N!)&  N!=%CD'=%&J6 &("6kk6i@''     < 0   6*6iM7'7#53'?"'476762"'&'3267#"'327"'&'&=32>=4.i6kk66W  L  L!B%CD'#,2J6 L  V6.O..Oi6*6W     B <# 0   ''/DZb752677254."3275#"'&'&=3276767#"&72"'&'&4767654&"";26=4&+5462CJC .O\O..O.& 6J  'Dk&  L  ,  k @<  ['''+ 0       U U 1FV_%"'&'&=37&5147#"&'526763254."327&'2"'&'&47676"767654&"&462& 6J'DCJC.O\O..O. &  L  ,, + 0<  E'''*   ,$$,f#/DH%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762#5.O\O..O. & 6J:" DNDCJC&  L  ū''' 0" <      ++$B32677%#"&'"'&'&=327'632'51'675'676764'&'&"3B.O.$A@"G'D& 6J2(}!/:.O.+! "2(% MB ' @H 02!"'*  <(  ,A"2>=4."'&'&=275"&'5267'"'&'&476762.O..O\O..OR L 66DNDCJC&  L  ''''  01<      #/DP%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762##5#5353.O\O..O. & 6J:" DNDCJC&  L  @+@@+''' 0" <      +@@+@@,AX7526763254.";&'#"'&'&=;67#"&72"'&'&476767&"32673#"&4627CJC.O\O..O. & 6J 'Dk&  L  &, $ +#22F<  3o''' 0   & , 2G2V#/DP%54."327&=#"'&'&=327>32'"&'5267'"'&'&476762''7'77.O\O..O. & 6J:" DNDCJC&  L  ..----.''' 0" <      ....---&;IR7&'.=47&'57>54."327&'&2"'&'&47676654&"3277'"&462 $1: A$#a).O\O..O. &  L  8P88(B,, 0< # A''' 6   (88P8B@, , ,AEIM"3>=4."'&'&=275"&'5267'"'&'&4767623#73#'3#.O..OR L 66DNDCJC&  L  ++++U**'! !'  01<      +++++/DSb%2767#"&'5267632354."327&'#"'&'&=72"'&'&47676'654&#'725"&5473 'DCJC.O\O..O. & 6J&  L   00$2V00#2k<  !V''' 0     00 2900 2$   .26".4>2".52>='".52>=35#535.N]N..N]N..N..N]N..N/.N..N]N..N***+''/'''@''@'k'@''@'V+"3:%"#".=2>5&'2>4."#".5327&545##7":.O..O\O..O..O\O..OE.O..O. ++@@"'@''@ *'/''/''@' VV@@ "3:4>2".6=".5327>32#".5327&5475535U.O\O..O\O.P.O\O..O.:" .O..O. k@@U+''/''i @''@'"j'@' +@@*+ "3:4>2".6=".5327>32#".5327&54'#3U.O\O..O\O.P.O\O..O.:" .O..O. @VV+''/''i @''@'"j'@' @++*"3:%"#".=2>5&'2>4."#".5327&5473353":.O..O\O..O..O\O..OE.O..O. @++*"'@''@ *'/''/''@' K@UU9F%'53#"&'.=&547.=67#".4>2654."2>`=M (E)%A+G)I88J)G+/N..N]N. '/+1:11:1e$.kU)E(#&@.  .@%'.''!  $H,11:11 :%655>=4.#">%.5327#".5326772)..O.:/7HB8.1*E(.O.#$*.O..O.$A@m;( . k'-B * 2%@'# '@' @19!#"&546;5335332&'5!37+"&=46354622'4&"3++֕ v  %.% 5@*++++BK  K    0  5=#5##5##";5#5!54&!5!54&"";26=4&+5462++**'%.%  v &@++++++ U*    K  K   '3'35'!"&5'7''326+U<&(e-O%"U+UU%,)--N"% %'3'5'5#'!"&5'7'#"&5467'#5'+U+<|V&(:6%3-U+U+3254&!5!7#7&"32673#"&462&?&0%VU&, $ +#22Fk&@%@V& , 2G2k1!";&547#5!54&!5!7#7&"32673#"&462VVU&, $ +#22FkV+V& , 2G2k%.7#"&5463!2.'5!'#"&462'4&"26V  B(88P8,,FE+@B8P88(3 ,k+4767>54&#!";&'#=!!654&"3277'"&462 GG  V\8P88(B,  +(88P8B@, ,k(7%#"&5463!2#!!""&547'37'=52654& V K&?&2#0000 2Ku @@%@[  $2 00k 00  #2k(775!63254&#!";&'!!'654&#'725"&5473U"(V 00$2V00#2@ u+  00 2900 2$   0en4>2".#".5;&5474=".5;>322#'+"/&'"/&?5'&5763?4;272'4&"26U.O\O..O\O..O..O..O\O..O.I+ ]+ + /+''/'''@' @''@'&/%  $$  $ +@u~%"&'52676254.";&5"'&'&=32367'2"'&'&47676576/4#&/4&+"'"37;265?2?64#"&462'DCJC  .O\O..O.& 6J  &  L    + +g <  4m''' 0   $  $$  %%!2737< jUeEP P~Ue '!2'3'#'71/7+< %-eU[a+k* &eU++%25'#";&54>'##5#;Huu]";#u++%#5#"&546;#5#73'+Հuu@++*]u!%25'#";&54>'#''7'77#;Huu..----.]";#u....---#73325'#";&5#''7'77kuu..----.+*]5u....---%.#">326=5"73264&"&462@FG5 u(8BB(88(,|5HG uu8(BB8P8, ,*3#"67533#326=5"73264&"&462@ u(8BB(88(,| `|  uu8(BB8P8, ,  '77'#36?6325#3&'!5#|<"M@-@@@"Me1-@;kk+'!5!'#5'#57'7%35%5'5#~BX@SW2~@+f`@$@W-mS+1[*+k6`|< '!5!'#5'#57'7%357#35'5#%Bb+^W2+jo+f +$$+b8b^+1[:++k6 qG  '!"&=46;'7 546;232'#3%@VVVV %@++V+#'54&+54&+"'3#'#"3!7%53*VVDVV@C%}-++EV+[@%5,/'7332+'35#'#";53#5#3!7'5#((V*V4&2<4X4+(E(+F7@@@@E% @@@/S#3Y4+f)D)F6@@@@7/E !&@@@/"'0"77754.'''54>2'"&462"&4624X4@@@@@@4Xa@@@@(EPE($$$$3Y4@@@@@@4Y3@@@@)D))D)##k!533&547536325'3#335UV!!&Հk++@k+ (!  kU++k%!533&547536325'3#%#33535#5UV!!&Հ@@+@@k++@k+ (!  kU@@+@@+@k $!!77''7!&#"##5#535UV-....--V&!!@k+---....k  !(++UUk %%''7'77#"&5463!2&"75'..----.VE;#+....---- #;+kk+jk%%#5754&#!";&4'''7'77«^..----.@jjl   kk....---W`%'&'&'&54>32>32&#"#'+"/&'"/&?&47'&?636?6;272'4&"26E+6 22 6(E( +  + I+>,"'' 66 ')(EK%  % %  %  4lu"#.#"5'&'&'&54>32>32&+654&#'+"/&'"/&?&47'&?636?6;272'4&"26`+(+ +(@E+6 22 6+| +  + IU* !(:>,"'' 66 ')(# *%  % %  %   '3+35#35#".#"76767654.@++U**V++22 6+EE+6++++6 ''",>>,"'' 6 'B3#;5#35#'&'&'&54>32>324&#"#.#"767676++V**U+++EE+6 22 6*+ +(+ +(@@(++++ ''",>>,"'' 66 ** !(::(! %'7'373/3''7#'7'#7Y66776R*"E m337 hih(@|AB((;&%<(( CL%'7'?#'+"/&'"/&?&47'&?636?6;272'4&"263N #t<<' +  + I@1Pe %  % %  %  NW77'7'?57/#'+"/&'"/&?&47'&?636?6;272'4&"26^GP#t<,,>+jj+ $*3<7'32#"&'#"&'#"&=46'#5332%'3>4&"2674&"26T  &!v $,$ G  lV4M&],L   + U% ++%6$` ?   %/'>3232'354&"'#!"&=46;'7'326# 6!1Q%4% j7  D#&1++%#k7 (7'>3232'5#'354&"'#!"&=46;'7'#"&5467'#!# 6!1+f+Q%4% jMY  C-D#&1+*g*+%#k}X D*>%#"'"'+5327273%6?2?.'&#""'+32727;5#"*++(Z(++**,*&^&*,@X<>C  &^&*,**++(Z(++**,k++/ Ev!# @=1**)=%#"'"'+5327273%6?6'.'&#""'+32727;5#"*++(Z(++**,*&^&*,"EtW<>C  &^&*,**++(Z(++**,k++/ TZ lIEv!# @=1**CSbr&'&676&'...327676'32767673273267>&'.6?27&'&>367'1.7>;2'.67>;&'&'&"3276762327>&'&'&#"/&'&"#"'.6?676?62 * 0, -/ '  ,    ,    S   }   b   d (    "  "          )% $(   ' " # '>  I   m Y    $    W   "$  2BR&'&676&'..16763673273267>''1.7>;2'.67>;1%&327676'3276762327677#"/&'&"#"'.6?676756'&'.6?2 + 0, -/  #   ,    b   XN, ,      "  " 4[}     n      )% $ $# ': m O '     $  4}    K  2S7>4&"'64&".#"3!26=>54&654&#"632#"&54>32    [8)E) X tL4$$"12'A&A  77  A02>*G*3    &4&2$4'C'&;%462"&7#5##'&'&54>;>32#'47#"3533?@   <$u+u 6 k, 0J,++*"4  >w++1:.@ 6  0+K,.**n *?%462"&'35##5##'&'&54>;>32#'47#"3533?@   jj*<$u+u 6 k, 0J,++*"4  + w++1:.@ 6  0+K,.**nCW%"&462'"264&+#!"&=#"&=46;4>;5.54623232#54.+"#3!53u###$  (E( $ (E( ++1V1++*+u### @  @ )E(  (E) *11*@@&/GW%'35#'54.+'35.54623232%"264&'#!"&=#"&=46;467'7'#"&='#3 *&1'* $ (E( #  % mO5|++@ *&1+  (E) ## @ 'Cmz6| 2*@#!"&546;753235#53555+***kV + !"3!2654&!37533#7#5U+56jV****VV00+ր %#"&546;7532&#"5##765 ";#++@@+#V #;8VV@@!%#"&5463!2&"5#'5#!5##7   k55++++@@V«00VV@@ %#"&546;7532&#"553565 ";#k@@U+#V #; +@@*+!%#"&5463!2&"5#'5#%5535   k55+@@UV«00++@@*+ %#"&546;7532&#"'#365 ";#@VV+#V #;"@++*!%#"&5463!2&"5#'5#%'#3   k55+k@VVV«00@++* %#"&546;7532&#"7335365 ";#@++*+#V #;3@UU!%#"&5463!2&"5#'5#%3353   k55+@++*V«00k@UU"*2%#"&546;7532&#""&462'3274&#"665&@%8P88P8@W %.&W 5("V %@&(88P88_W&@% W$,4%#"&5463!2&#"5#'5#%"&462'3274&#"6 k55+k8P88P8@W %.&W V00 (88P88_W&@% W!.%'53#"&'#"&546;75324."2>`=M (E)5m65#+1:11:1P$.kV(E(V @&11:11(5;%54&#!";32>54&'&#"5#37#".4>2''53m5)E(#H!+5"$O11:11=M Л(E(&@0B&!*1:11:1e$.kNW%#"&546;7532&#"2#'+"/&'"/&?5'&5763?4;272'4&"2665 (E(+ + /+"V (EF%  $$  $ OX#'5#3#"&5463!2&"2#'+"/&'"/&?5'&5763?4;272'4&"26k55+   |+ + /k00V%  $$  $ $%#"&546;753237'7'&"764k65,,O ,۳=V +,, #(73#"&5463!25#'5#'&"76437'kkk55+g ,,,*V00, +,:%#"&5463!2&"5#'5#37#5462354&"";26=4&  k55+\%.$  u  Vmm00V5  5 K  K 19%#"&5463!2&"5#'5#37+"&=46354622'4&"3  k55+ u  $.% 6@ V00:K  K   1  *3%#"&546;7532&#"1'&'&54624&"2665 6 %,=,1u +!V  6 "8$,,! +4%1#"&5463!2&#"5#'5#%1'&'&54624&"266 k55+U%,=,1V00`"8$,,! %#"&5463!2&"5#'5#735   k55+V«00+++(%#"&5463!2#5#'5#37#&#"26=35+k55+ , * V00o, u+ 5325#"?73!26576[ =u 栗[-> 7463!2#'5#%#!"''!+)Q/5+h= M*(Q/0>&%#"&5463!2&"5#'5#%5##33535   k55+++@@+@V«00+@@+@@+0%#"&546;7532&#"5&"3267##"&46265&@%F22#+ $ ,&5("V %@&V2G2 , &2%#"&5463!2&#"5#'5#%5&"3267##"&462 k55+UF22#+ $ ,&V00 V2G2 , &&%#"&5463!2&"5#'5#%''77'   k55+a.----..V«00C---.... #!"&546;753235#35#35#65++++U**U +++++ $!"3!2654&!37533#73#73#+55k++V**U++UU00V+++++)8%#"&546;7532"#""&547'37'=52654&65&?&2#0000 2K1V %@[  $2 00k 00  #21;E%#4.+5>54&"#"#";3!26=326=4&"&54673"&'7(E( $ (E( *  RR )E(  (E) @  @ U == 1EOY%#4.+5>54&"#"#";3!26=326=4&#!5#5354>;23'#"&'7'#"&546(E( $ (E( * +++1V1+K? ? )E(  (E) @  @ @@@*11* -- KT]a#532+#5335#'#3+#!"&=#"&=46;4>;5.5462323324&"2674&"26'#3+5 *  (E( $  e ,,,,*k**UkU@  @ )E(  >'/  , , $mv3#7#35326=4&+3'#3264&"7#3#4'#3#!5#5354>;25&+5>54&"#"#";3!26=326=4&%"264& 5+@K##Kj;++++1V  $ (E( * #U**U#k/'-*@@*1+  (E) @  @ ##1=I%#4.+5>54&"#"#";3!26=326=4&''7'77''7'77(E( $ (E( * )E(  (E) @  @ 9 I]7''7'773'77'7+#!"&=#"&=46;4>;5.54623232#54.+"#3!53s  (E( $ (E( ++1V1++*+ @  @ )E(  (E) *11*@@17=%#4.+5>54&"#"#";3!26=326=4&''7''7(E( $ (E( * 2222)E(  (E) @  @ A22221EKQ%#4.+5>54&"#"#";3!26=326=4&#!5#5354>;23%''7''(E( $ (E( * +++1V1+32)E(  (E) @  @ @@@*11*52221@O%#4.+5>54&"#"#";3!26=326=4&'&462762'&462762(E( $ (E( * /  /  )E(  (E) @  @  /   /  1ETc%#4.+5>54&"#"#";3!26=326=4&#!5#5354>;23''&462762'&462762(E( $ (E( * +++1V1+// // )E(  (E) @  @ @@@*11**// // #;DH%'454&#"'35.54623232'#!"&=#"&=46;467'74&"26' D $ (E(   % m,,+@ E   (E)  @ 'Cm ,+(06%"&462#"&=46;54>232&"5!354&"'7+$$ 1:1  @%6%L";e$}+11+BB+%%M"@e%.2%254&+54."#";&4>'462#"&462#5 1:1#;%6%@$٫B+11+E;#%%+$$++(04%"&462#"&=46;54>232&"5!354&"35+$$ 1:1  @%6%$}+11+BB+%%++.4%"&4625!6254&+54."3462#";&'7'7+$$  1:1+%6% L";e$}BB+11%%+YM"@e#,0%254&+54."3462#";&4>"&462#5 1:1+%6%#;s$٫B+11%%+E;#V$$++.2%"&4625!6254&+54."3462#";&'735+$$  1:1+%6% )$}BB+11%%++++#,8%254&+54."3462#";&4>"&462##5#5353 1:1+%6%#;s$@+@@+B+11%%+E;#V$$+@@+@@.:%"&4625!6254&+54."3462#";&'75##33535+$$  1:1+%6% +@@+@$}BB+11%%++@@+@@+#,8%254&+54."3462#";&4>"&462''7'77 1:1+%6%#;s$..----.B+11%%+E;#V$$*....---.:%"&4625!6254&+54."3462#";&'7''77'+$$  1:1+%6% .----..$}BB+11%%+C---....'0<75!6254&+54."#";&'462#"&462##5#5353  1:1 W%6%k$$@+@@+BB+11++%%+$R+@@+@@%.:%254&+54."#";&4>'462#"&462''7'77 1:1#;%6%@$..----.B+11+E;#%%+$$*....---(0<%"&462#"&=46;54>232&"5!354&"''77'+$$ 1:1  @%6%!.----..$}+11+BB+%%---....  $#&#"'>327&"'6275&#"35#5350=C5b)&1u@]MM"Vo'33 ;E*O$***U0!3%(ffM3&&2#+ #*"'>2."7&547&76?."632##7#5b)&1uu1&)b5+"MP !OTO!'3@9r++@@*@!3%((%3!f *" "$3&UV@@ ")%"'>2&?.">2"7&547&535#@3'!OTO! .&1uu1&)bjb+"Mi@@UU&3$@3%((%3!!f *" @@*+ ")0%"'>2&?.">2"7&547&535#7'#3@3'!OTO! .&1uu1&)bjb+"Mi@@UUk@VV&3$@3%((%3!!f *" K55 *@6 +  #*"'>2.6?."632"7&547&'#35b)&1uu1&)b2 !OTO!'3@99+"M@VV@!3%((%3!$3&@f *" U@++* ")%"'>2&?.">2"7&547&3353'@3'!OTO! .&1uu1&)bjb+"M>++*@&3$@3%((%3!!f *" @UU@ ")0%"'>2&?.">2"7&547&333535##7@3'!OTO! .&1uu1&)bjb+"MT6 + 5* 55&3$@3%((%3!!f *" @UU+VV@@ $-5="'>2.6;7."632"7&547&"&462'3274&#"65b)&1uu1&)b" !OTO!'3@''+"M 8P88P8@W %.&W @!3%((%3! 3&@f (!K(88P88_W&@% W "(%"'>2&?.">2"7&547&'7'@3'!OTO! .&1uu1&)bjb+"Md";e&3$@3%((%3!!f *" _"@e "W`%"'>2&?.">2"7&547&2#'+"/&'"/&?5'&5763?4;272'4&"26@3'!OTO! #&&1uu1&)bjb+"M + + /&3 @3%((%3!!f-%s%  $$  $  !7?"'>2.&#"63267547&#"+"&=46354622'4&"35b)&1uu1&)b>7<*O!'3@M+ u  $.% 6@@!3%((%3!\3& !rf51K  K   1   !@"'>2.&#"63267547&#"#5462354&"";26=4&5b)&1uu1&)b'-/*O!'3@ M+\%.$  u @!3%((%3!Q3&"uf55  5 K  K  !09"'>2.&#"7&5'"63267&1'&'&54624&"265b)&1uu1&)b +"M&*O!'3@'4%,=,1@!3%((%3!f3%3&" "8$,,!  "&%"'>2&?.">2"7&547&35@3'!OTO! .&1uu1&)bjb+"M)&3$@3%((%3!!f *" @++ #/"'>2."7&547&76?."6325##335355b)&1uu1&)b5+"MP !OTO!'3@9r+@@+@@!3%((%3!f *" "$3&@@+@@+ #;%"'>2#"&?.">2"7&547&7"3267##"&46235&@3'!OTO! "$&1uu1&)bjb+"M v#22#+ $ ,&U&3 @3%((%3!!f (! 2G2 , &V ".%"'>2&?.">2"7&547&'77'7@3'!OTO! .&1uu1&)bjb+"M.----...&3$@3%((%3!!f *" ---....-#'%'62'627."7">27.35#35#35#M"V"'33'!OTOy@u1&)bjb)&1u++++U**gf3&&3($4!!4$(++++++ "1@"'>2."7&547&767&#"632"&547'37'=52654&5b)&1uu1&)b5+"M 7 *AN*O!'3@$q2#0000 2@!3%((%3!f$3,3&  $2 00k 00  #2*9%#"&5463!2"#"5#'5#!"&547'37'=52654& k55+2#0000 2V00  $2 00k 00  #27#"&546;7532'''75Y65 uuvvKKJJU0:V q@@@+))+)"73#"&5463!2'5#'5#''75 k55+uvvKKJJ*V00@@@+))+)8%2'&'>2&'7&"6#5462354&"";26=4& Mo<55-WVm%\%.$  u  A`K),,): "44@5  5 K  K :%'&'>2&'7&"632#5462354&"";26=4&I Mo<55-WVE7>%\%.$  u # A`K),,): "44U5  5 K  K ;%'&'>2&'7&"632#5462354&"";26=4&/ Mo<55-WV)EL<:(\%.$  u  A`K),,): "443' 2T5  5 K  K 2%'&'>2&"#5462354&"";26=4&/ Mo<55-7/\%.$  u  A`K),,):,O5  5 K  K 1#&'7&"71>2#5462354&"";26=4&-VV5\%.$  u +: "44E6),,5  5 K  K $-6?HQUY%#54'&+54'&+54'"2>54'&'"&4627462"&"&462'"&462"&46273#7#5+ +  4X44XiX3 @  ^ ~++++  + 3YhY33Y4 @u j*+ր,Xajnr%"&4627".4>33;3#"&=#"&=#"&=>2"&'&462>'"264&'4&"2635#535U>3XiX44X4++$   1F=* ,L- +++ I 4Y33YhY3 +  '   H2   +B 'H@K +3<ENW]%054632632654'&'&+54'&+54'&+54'"327&546'"&4627462"&"&462'"&462'77@ + +  4X44X4@ e;"L   + 4XhX413u jEe@"MYbktz%#"&=#"&=>32"&'&54627#".4>33;3&+65#"&=167&#"264&"74&"26'7@  2F <* 4X44X4++  KL";e  H1   +B  4XhX4 +    `  M"@e3<EN%454'&'&+54'&+54'&+54'";&="&4632>32"&4627"&462"&462576/4#&/4&+"'"37;265?2?64#"&462+ +  4X44X4  N13  + +g   + 4XhX4 -:Ukw$  $$  %V_h%"&=#"&=>32"&'&5463231#".4>33;3&+"&="264&'4&"262#'+"/&'"/&?5'&5763?4;272'4&"265  2F <*   4X44X4++ ` + + /  H1   +B   4XhX4 +   K %  $$  $ 3<ENWc%054632632654'&'&+54'&+54'&+54'"327&546'"&4627462"&"&462'"&462##5#5353@ + +  4X44X4@ @+@@+   + 4XhX413u jU+@@+@@_hq}%25467;32654'&'&+54'&+54'&+54'"327&='>4&".'&5264&#">7;3264&"74&"265##33535`  + +  4X44X4 *< F2  @+@@+@  @    + 4XhX4  B+   1H  V @@+@@+2;DMVb%2632654'&'&+54'&+54'&+54'"327&5467546#"&4627462"&"&462'"&462''7'77` + +  4X44X4@ ..----.  + 4XhX41 u jj....---_hq}%54632';32654'&'&+54'&+54'&+54'"327&='>4&".'&5264&#">7;3'4&"26264&"''77'q  + +  4X44X4 *< F2  J .----..  @    + 4XhX4  B+   1H  5 ~=---....3<ENW[%054632632654'&'&+54'&+54'&+54'"327&546'"&4627462"&"&462'"&462#5@ + +  4X44X4@ 諊   + 4XhX413u jU++Ybktx%#"&=#"&=>32"&'&54627#".4>33;3&+65#"&=167&#"'4&"26264&"35@  2F <* 4X44X4++  U X  H1   +B  4XhX4 +    `  ~U++ !*3<ENRVZ%&/#54'&+54'&+54'&'#"2>54"&4627462"&"&462'"&462"&4623#73#73#+ + 4X44XhX4@ ] ++V**U++ + 3YhX44X4&uk++++++5clptx%"&462'4&"26".4>;;33#"&=#"&=#"&=>32"&'&5462>'"264&35#35#35#*4XhX44X4+++   2F <* ,L,5 ++++U**]S4X44XhY3 +    H1   *B  &G+++++"PYbk%&'&+54'&+54'&+54'"2>54>4&".'&5264&#">7;;;'"&462"&462"&462+ +  4X44XhX4 *< F2   ,LR=k  + 4XhX44X4  B+   1H   +G'K 8'%2"&46'!2#>54.";#!"&546$*W(DRD((D)$$7)D((DRD(* +3#7#335#3#3535#3#!#5#353#5#3533k**j**j**j**kk****++++*U*+U*++*U".;A#";32>54&'54&+5##5!!!&#"#72".4>7'56)E(+@**"(E(c008//D4+(E)6+++V*+(E("/8008/'O'<"+8%'53#"&'#"&546;>232%264&"4."2>`=M (E)5Y!(!Y   1:11:1e$.kU)E(*5  11:11%5BH%54&+."#";32>54&'2"&463353&#"".4>2''53Y!(!Y5)E(  **"(E(11:11=M ӂ(E)5   ***d(E("+1:11:1e$.k+4=FN[a%4'&/#54'&+54'#54'&'#"32>54&'.5462"&4627462"&47&".4>2''53* * 4Y3.Q0A%)E(# y  11:11=M   + 3Y41U5#(E)%A +u   O1:11:1e$.k:fs"&462#7'7#"&'.54>;;33&54767.5462675#"&=#"&=>32"&'%4."2>  M=(E)%A0Q.3Y4**#   (  1G ;'1:11:1Uk.$)E(#5U14Y3 +   AJ     H1   *B11:112;DMW\%&54632767&#'54'&+54'&+54'"57#"&462'"&4627"&462"&462'762'#5B 3 . +  4X4-N03 , S,, 2   + 4X41S5' cUk, ,+^fpu2"&46"264&".'&5264&#">7;;;767&#'54'&+54'&+54'"57654&77&#"7'&"76437' 8 *< F2    . +  4X4-N0H)  ,,,@kj  B+   1H      + 4X41S5'  * , +,*3<ENdl%24'&'&+54'&+54'&+54'"3275467>"&4627462"&"&462'"&46254&"";26=4&+5462+ +  4X44X4 6@ ,  k @   + 4XhX4T "-*u j*   U U Ybx7462"&76324'&'&+54'&+54'&+54'"3275'>4&".'&5264&#">7;3'4&"26+"&=46354622'4&"3 + +  4X44X4 *< F2  J k  , *@C    + 4XhX4+  B+   1H  5 U U    *7@HQ'633;3'74&#'74&#'#".547'74&"26327'4&"26&-4++& q  K3?4X4&Nx* )6?& +  4-& q K&4X4?3N  )p 28>Kp'633;3'65#"&=#"&=#"&=74&#74&#'#".547'7'#"&547'>32"&'&5462 -4++   % $ xK3?4X4&N S S <* 6F +  4-#   $ % K&4X4?3NS S!   +B  1:CLc72>3254'&'&+54'&+54'&+54'";&5"&467"&462"&4627462"&7&"32673#"&4627 J/+ +  4X44X4 8&, $ +#22Fk,8   + 4XhX4J u & , 2G2Vi%"&462'4&"263;54'&'&+54'&+54'&+54'";&'"'67547.#".'&5264&#">7;35&"3267##"&462*U + +  4X44X4  *< F2  F22#+ $ ,& ] (    + 4XhX4  B+   1H  V2G2 , & %'7''##'3573357@U@**@g-+@++m(+R@U+@*+@f+@@@@(X-R>G#";#3!277#7'7#6.'&'">2#3326=4&'"&462@ VL**{D *-   !   ,%   A* +n+ !  ,% *  *3EHMQ#654&#"1'1.">253#3526=4&#"&462%#"33!7#'#53'#53D%     Q*g*   @ XLmm*+mB@ %     R&*+f+ @   @@@ m+*!*3F%'>.'&'&'&76?6&'.>.>27#!"&=335:,+!:" %   f   > * ".(   " $`87`%"  B  K T+48<@IM%'676&'.1'1.'&'&#3!26=76&'>.'#537'7'.>5:  3 :" V  .,  " 3   " 8In"f  $V%Vϫ9U%U: VHk"%#"&546;3'33'33'3&"7'7*@**+@+++@+UE;#L";e+ VVVVVV#;!M"@ek &%#"&546;3'33'33'3&'5!'37'7*@**+@+++@+U&L";e+ VVVVVV BK ;M"@ekR[%#"&546;3'33'33'3&#"2#'+"/&'"/&?5'&5763?4;272'4&"26*@**+@+++@+U"(E(+ + /+ VVVVVV(EF%  $$  $ k U^%#"&546;3'33'33'3&'5!'32#'+"/&'"/&?5'&5763?4;272'4&"26*@**+@+++@+U&+ + /+ VVVVVV -K (%  $$  $ k %#"&546;3'33'33'3&"35*@**+@+++@+UE;#++ VVVVVV#; ++k $%#"&546;3'33'33'3&'5!'3735*@**+@+++@+U&++ VVVVVV BK ++ '!"&547'765##'##'#;!U+@+++@+* : !+VVVV" !3!7%53'33'33'3'5#3!-;}&2*+@+++@+U(! :JK "VVVV) &'7'25!;&4>/'7'7:Ti:*;Z#V#;w;*;y h4L";e5LSKKvRE;#iL K?)M"@e !''77'''75!5!;&'7'7;;*:iT:;*;y h>VV L";e!KKSL!L K?) RYM"@e!V_'77'25!;&54>/'72#'+"/&'"/&?5'&5763?4;272'4&"26;;*:iT:"V(Eq;*;y hi+ + /!KKSLu:"(E(TL K?)%  $$  $  !V_'77'''75!5!;&'2#'+"/&'"/&?5'&5763?4;272'4&"26;;*:iT:;*;y h>VV + + /!KKSL!L K?) :%  $$  $ )'7';57/'737'7'&"764:Ti:*;±;*;y h,,O ,5LSKK6=)L K?)+,, ",'77'!7!;5#7''737'7'&"764;;*:iT:.*~;*;y h,,O ,!KKSLu+*L K?)+,,   $'77'''725!;&4>35;;*:iT:;*;y h#V#;3!KKSL!L K?)TRE;#k++!%%#"&=!&'5!'''?'35 xT:?:*; hi;*;nR )SL KK*)L K++  %3'''7#3!7'S9:H8  lXs9+<SK KI7*2LK#''7'!"&=3''&6?'7'#%5#3/';S l  8O*gG9+<@:H5KS*7y+fLK KI"'77'%?';&4>257';;*:iT: hi;*;#;Ejjj!KKSL)L K!E;#R@@!$%&'5!3#"&=%'7'''77' 9:*;T:;*;y hjjR >KKSL!L K?)@@ ,'7'25!;&4>/'75##33535:Ti:*;Z#V#;w;*;y h+@@+@5LSKKvRE;#iL K?)@@+@@+!-'77'5!5!;&/'75##33535;;*:iT:VV ;*;y h+@@+@!KKSL RL K?)@@+@@+  ,'7'7'25!;&4>%7''77';;*:h;*;T:#V#; hN.----..!KKL K2SLRE;#)---....!-'7''?'5!5!;&'7''77':Ti:*; hi;*;}VV .----..5LSKK*)L K RC---....  $('77''3!26=%735#35#35#;;*:iT:;*;V hX**V++++LKKSL!L K"`*+++++   $(,'7'''7#!"&=!!35#35#35#:Ti:*;?;*;y hBV++++U**`LSKK L K>**+++++ *'7'25!;&4>%?'/7':Ti:*;Z#V#; hi;*;>=/555LSKKvRE;#)L K88(< <!+'7''?'5!5!;&'7/7':Ti:*; hi;*;}VV >=/555LSKK*)L K R-88(< <k&"#"&546;3'33'33'7'E;#*@**+@+++@+jjk#;" VVVVVV@@k"&'5!'3#"&546;3'33'33'7'&*@**+@+++@+jjk BK  VVVVVV@@k(%#"&546;3'33'33'3&"5##33535*@**+@+++@+UE;#+@@+@+ VVVVVV#; @@+@@+k ,%#"&546;3'33'33'3&'5!'375##33535*@**+@+++@+U&+@@+@+ VVVVVV BK @@+@@+k(%#"&546;3'33'33'3&"7''77'*@**+@+++@+UE;#.----..+ VVVVVV#; ---....k ,%#"&546;3'33'33'3&'5!'37''77'*@**+@+++@+U&.----..+ VVVVVV BK %---....k $#!"&546;3'33'33'35#35#35#*@**+@+++@+++V**U++kVVVVVVU+++++k!%)#'##'##'#"3!265!5!3#'3#73#+@+++@+**@*V*&0**V++++kVVVVVV+K+++++k&%#"&546;3'33'33'3&"/7'*@**+@+++@+UE;#>=/55+ VVVVVV#; 88(< <k *%#"&546;3'33'33'3&'5!'37/7'*@**+@+++@+U&>=/55+ VVVVVV BK 88(< <1?M%#4.+5>54&"#"#";3!26=326=4&."&5462."&5462(E( $ (E( *  , ,)E(  (E) @  @ 5       ?Sb7."&5462+#!"&=#"&=46;4>;5.54623232#54.+"#3!53'">2654&#  (E( $ (E( ++1V1++*+uu @  @ )E(  (E) *11*@@K >GQ7#".=4>332+"&4635.54>;'&'&54632#264&"4&#"326#;"";#5'.. @ $;!(D) $2+  !;$   #2U! #;"k#;"bCNC    !2 6  2# !!2!;  2$,BUem76&'.'&4"'&'&'!54&'732354&+"&4635"#6?67'6."7%65##2354&!265!t    (* c'C5 *V$  ##    G **  * 2  #-9Z7 "2"   % *440:CQU"&'.67327&547&'6762654&&'67>&'&2"&46"353354&#3# %& ' !# 0K(  "  ?0L'  -  ++*+++0L'  "%& ' "# ,#    %& ( "#   U+++* !%%'627'35!#3'3!"!77#3D:#-- @@@Iv X\**";#,M+++u@ (.2'62'54&#"7'35!#3''!463!'#547'3'7#3 D:#+2#- @@@- vj**$ ";#Q+&$2/,M+++[uՖ@!:%"264&4."7.5462>'"7.4>2>4.$n#:F:##2F2#:b9:0'/.O\O..(0:9b$$+#:##:F:$ '#22#' $<9btb$N\O..O]M$btb9 A%654.#"32'264.#"6'7.5477.547;7w #:#" #2S.O. 9b:?0 ",,:0'/ #"#:# "2# .O.(' 5tb9  -:H:b$N.6. G:$ ' "!/D76?%'&'.7'&'>7657'6767[ 9 $!#N  r  2Z   >! %M5 L   2 "E   #&*''1+532?6?6?67'7'7'_  _HZZ%_ + _[ ZZ#!";37357'535326=4&#53 Z<*<Z H  7Z<77<Z7  Օ26:C%.#"326733535"&462'25462354&+"3>'3#3##"&=3| %% ++  "  *$$ "3s$ +$7%+++1 $$ +*+$3"<FL%.#"326733535"&462'3#53#'46;5462354&+"347#;&'3675#| %% ++ kkkk+   *$$*@ $s @k+$7%+++1++@  $$V$o "&)#"&=37#546;2#54&"'35#35#7&$$$*  /j$"b$$ !++@ &0373#535#535#'46;675462354&+"3=#;&77kfkkkk+   *$$*$Vj$U+*+  $$@ $b@+3#"35#5326=4&##537335UV+U+++*+++++V++++++043#"35#5326=4&##535335!3#326=4&+535#53U*U*+++*UUU*U+++++V+++++ր++++++!(%'&+"622?64%"&4625##7  F;" # *+@@  ";F #oUU@@.7>"264&#"264&'&+"67'53'2?64%"264&5##7 1    # ++@@U    #UU@@!(%'&+"622?64%"&46235#5  F;" # UU@@  ";F #o*+@@.7>"264&#"264&'&+"67'53'2?64%"264&35#5 1    # -UU@@U    #*+@@!(%'&+"622?64%"&462#37'  F;" # UU@@  ";F #o*+@@.7>"264&#"264&'&+"67'53'2?64%"264&#37' 1    # UU@@U    #*+@@!(%'&+"622?64%"&462353'  F;" # *+@@  ";F #oUU@@.7>"264&#"264&'&+"67'53'2?64%"264&353' 1    # +*@@U    #UU@@+!!"3265!265354&#53#53#53##UUUU+k@@@@@+!%!"3265!265354&#53#53#53#53##UUV++U++UU+k@@@+!!"3265!265354&#53#53#53##kkVVkk+k@@@+!"3265!265354&#53#53##竫ի+k@@@5<2'672>54.#"6'#!"&54?27'#".547'7'3%Z1(D)5 &AH$")D(Xm1@%4Z+1*5)D( D!(D)Ym1<"767676732>4.#537#4767>4&#"#6762:b9 ! '$:b99b%**'*  +>!.O.!>   .N\O.+@       "EI"6732>4.".4>2'"34763234756?67654'&35:b9  !K?'$:b99b:.O..O\O..O*+   * 8*.O."> 2 .N\O.#;E;"";E;#        ++ /!"7!2654&#537#4767>4&#"#6762U+**'*  +>!U+@        59!"7!2654&!!"34763234756?67654'&35U+V+   * 8*U        ++k (,"354&#;265'37'7'#5#&'&/!5 k   ++F$F7 Vk  @ jk$ +Vj ++ !"3!4&'!!+UVU73#7!!7'!"&5463!2!!UUV*=*+kU+HO\c}"&+"&'&#";2>=67654'&'&&'&67&"54767&'.546"&62#"&?6727"&6276&'676"'&$*$ "";#*#;""      J(B  5(E  # **  13#:##:#31  !    b @ @ @ @ ""@  '-%'7/'7?''/7'7'?7''74M(II(M44M(II(M(:77:&&:77:&&)U77'&/#'&#'&=7>7676762%&'$*1:1*/&&/V +* KK *+  !#T#!  &U$$@11,H::H dd Q  @LL[BJS5'&'"'"''7272775"&/&/7&'&6767&'5'74'&/7"&462HH5 EE 3  wJ<+.  '.).*-Q0Fb, ##++  ++!4#) B  R@ #)+ 8#k 373#5353@V@V@@*** !57'5!73++++ 1:+++*VE4PS%4&".5462'>'"7.54>2>54.4."7.54>2>!'5,2F25:b9(##0TbT0##(9b[(DRD(6@6 &#22#& 9b:0UJ)1T00T1)JU0:b9)D((D)#=1 66 1=  #'+/G75353'53'53533!2654&#!"#57#57#5'353#3#3#3#5##+***U+++*@+++++j*++++++++***+++U+++++++*++U**V++****++*++**** "*2%25!3&54>546;27!5!"264&"&5477'632 %@j5(88P88(% W%W&Y&@%  U8P88P8&W W % (08%2#546325#65#3&'7!5!!!"&462'3274&#"65+++*V8P88P8@W %.&W  /,Հ+*(88P88_W&@% W %25!3&54>#546;27!5!'77 #;j e;"Ll";#  Ue@"M$!!'!5!2#546353&"#53%'77+*`+ x+`e;"L+* ,BB%e@"M ,!5!#7'7#"&'#!%367#"4."2>K M=(E)%@U'/0T1:11:1@Uk.$)E(#:H)u11:11"/5!!'!5!"#"3#5#332>4.".4>2''53+++)#T0[+@%)E((E)11:11=M ++k &/#(EQE(1:11:1e$.kNW!5!#!&#"754&+"2#'+"/&'"/&?5'&5763?4;272'4&"26V (E(@j<+ + /+UW(EX  %  $$  $ S\%53&"'"354&#5#3&57!5!!!2#'+"/&'"/&?5'&5763?4;272'4&"26+ ++*g+ + /-- Հ+*%  $$  $ $%5!3576#546;27!5!'762'#5cj', S,,1(5 `U, ,+#-%53"354&#'#357#%!5!!!37'7'&"764++m@+*,,O ,. (Հ+*+,, #-6!5!#!&#"7354&+""264&"&'>24&"26 |V!8[j  wEVFFVE;, ,+U v =3    &00&&//&,  '1:%2#54635#7!5!!!#5#3&'7"264&"&'>24&"265+++*=+|   wEVFFVE;, , 6LBY+* %   &00&&//&, 5=!5!32>325!3&=467547#546+"&=46354622'4&"3j-  u% u  $.% 6@+U -K  K  K   1  ;!5!25!3&=46757#546;2>#5462354&"";26=4&+  pj.W\%.$  u +UK  5  5 K  K  8%2#5463#5#3&57!5!!!#5462354&"";26=4&5 pJ++*<\%.$  u  +*5  5 K  K  19%#546;27!5!!!#5#3&57+"&=46354622'4&"3@uj+*+ u  $.% 6@ 5+*IK  K   1  &/!5!#546;26325!3&541'&'&54624&"26cj!+/%,=,1+U /E0"8$,,!  '0%2#54637!5!!!5#3&'71'&'&54624&"265 c+*+ %,=,1 ++*J"8$,,!  %25!3&54>#546;27!5!#5 #;j+l";#  U++ #%#53%25#6'"354!5!!!35+ + +*U+BB* ++*++ &%535!3&546'546;27!5!#"&46325`K+j* , hm@"4J  U+u ,o ,!!'!5!53#2#5463#53%#"&46325+*+vP+U* , +* +u ,o'!#13#!7V<(--C%+UU7x(-% '!#'355#1'13#5#!7+<*+++(X+C%U++*ga+M(X%%!5!#!&#"754&+"5##33535V ";#+j+@@+@+Ul#;^  k@@+@@+*%53&"'"354!5!!!5#3&575##33535+ +*++@@+@BB* ++*@@+@@+ 0%25!3&54>546;27!5!7&"32673#"&4627 %@j@&, $ +#22FY&@%  U& , 2G2V6%53&#"'"354&#5#3&'7!5!!!5&"3267##"&462+++*@F22#+ $ ,&,/ Հ+*V2G2 , &%!5!#!&#"754&+"''77'V ";#+j!.----..+Ul#;^  S---....*%53&"'#"354&5#3&57!5!!!''77'+ Xj++*L.----..BB* Հ+*---....!*!5!#546;>5!3.'#"&462'4&"26@aC! !B(88P8,,@U  6#`B8P88(3 , %.%#54637!5!!!5#3&''#"&462'4&"26 @+++ B(88P8,, **+@B8P88(3 ,!5!!7354&+"35#35#35#Vkj+++V**U++UUj +++++!%!5!5!3!53!'#546;23#73#73#@+*++@j++V**U++U+k +++++#!5!#!&#"754&+"/7'V ";#+j+>=/55+Ul#;^  i88(< <(%53&"'"354&#5#3&57!5!!!/7'+ ++*V>=/55BB* Հ+*88(< <*9!5!32>3235!3&5467#546552654&"&547'37'j1|00 2$2#00+U@")2 5 00  #2  $2 00 />%53"#"4&+"375#3&'7!5!!!552654&"&547'37'+Qj|+ +*00 2$2#00  Հ+* 00  #2  $2 00!''7'7%"#32654&%64/&" <% /#2$ |<$<[$ 2#$z<"2;?>325'#";1&'+2"&46"767654&"&462 4 !vvj#,, 1/`u##@,$$,f'6?7"&462&547'336325'#";1&'71'&'&54624&"26 hkk %,=,1* jVk/`"8$,,! &/%25'#";&'&4>'#"767654&"&462 6Vvvv,, /!+@6 u@,$$,f&/%1#"&546;&#"5#5#%1'&'&54624&"266 kU%,=,1V/k`"8$,,! .4!767676762#;&47654&+'#";>32'7 !(l(! %65+2!L";e  %+[**#=M"@e.2!767676762#;&47654&+'#";>3235 !(l(! %65+2!v  %+[**#k++'5%2+'1'13#";!3!277&'&'&'&'&#"'Uf@ X*m*% ) !(6>,n#Uf@ +#+%)  n.:!767676762#;&47654&+'#";>325##33535 !(l(! %65+2! +@@+@  %+[**#k@@+@@+.:!767676762#;&47654&+'#";>32''77' !(l(! %65+2!+.----..  %+[**#S---....&/%#"&5463!2&#"'%1'&'&54624&"26! *#;46Jj%,=,1@"*x(D@`5"8$,,! ,5%#"&5463!2&'5!7'3&5471'&'&54624&"26+ *ֿ;*:%,=,1+*x k֏L3L$C"8$,,!  "3!26='57#53#@+uv+++Հuu@+ "3!26='!33'57#53#@+VՕkuv+++Հ*+uu@+%25'#";&54>'#'77#;Huue;"L]";#ue@"M73325'#";&5#'77kuue;"L+*]5ue@"M %5'#";576'#'762'#5 uu, S,,(wuZ, ,+&%7675'#";57#37##57'762 +uum,,, (*uR,+{,  '!"&5'7 3'&(ļ u %,)<uu 35'#7#1'1'1'3!7%DQ++|uu%(,&UQDQ++ u%)%5 09'!5#5463'53'#"3'#5'5!32#'3354&+'35"&462?U%kU@* VUU+%2U2+ +r@   A?U%k+@ UUU*k%V+U *@  '02#!5#546;5!'355#7354&#!"35!7"&462%UU%ժ+ +   %UU%kk@@@UUUU U+   &,29%'7627#>'.'6753677&'5&'R, Y,Y,j.I#R;:[.4S[@2%/)*M)@2@.&+ SZ-Y**7T.:S+Ch:1R4) +M1A/%~@2&.s)*#*4>'.'6753677&'5&'?'?'.I#R;:[.4S[@2%/)*M)@2@.& @T!!T@I*7T.:S+Ch:1R4) +M1A/%~@2&.s)*"S7MN7S, '#"&'5>327'74&'7#>`#V.$ 11&!  m$`  [$ 11&.o Nk )27#"&546;32&#"%"&'>24&"26'"264&q+/;8\)GUGGUG<--5  +">3&00&%00%-,   k$-67#"&546;32&'5!3%"&'>24&"26'"264&q+q)GUGGUG<--5  + u&00&%00%-,   3267'#5/62'35#\@9b:$B<***\9rb9 * @B$:b9;yX+[ 9br9++/3267'".54735'62'654.#"3#\@9b:$B<.O. v*M. 9rb9 .O.*** @B$:b9;9.O.4.uX-M @ 9br9 '*.O.@+ !";754&!!!!#53546;,,,+, ,,,j++*V+k , #'+!";754&#"#"&5463!23#3#3#,,, , ր,,,, ++*++ )/4<BHQYa%#&4736754'3654."327&'&'367#&''#6&4733.7#>7"264&"&5477'632'YdH9btb99b:  4 ? / R H7? //?/(88P88(% W%W&( :b99btb9),)# ':),,($*+! '' !8P88P8&W W %)/4<BH_%#&4736754'3654."327&'&'367#&''#6&4733.7#>77#7&"32673#"&462'YdH9btb99b:  4 ? / R H7? //?/U&, $ +#22F( :b99btb9),)# ':),,($*+! '' !V& , 2G2'/5;@FUd%4'53."327&'&'367#&4736&4733.7#>7673#&''654&#'725"&5473`H:`rb99b:  B ]dH7? //?/  k? /g 00$2V00#2  7]69btb9 *),(#($*+! '' !+,)),)# '  00 2900 2$  (L%"&462'362526="264&!"264&"'"&'"'"'#"'32726=3267@%6%%6%  &&5%%;%%5&&" * " 0*!  !*0 %%5&&WW%5&&5%%5&&5%  0 0 753353'3355#'%##53'7@J++@@@k+Ut4UU++@@**@Հkh- &3353353##5##57355#'%##53'7+U+U+KkKJ5@@@k+Ut4UU`UUu@@++@@**@Հkh-*#3757'537'35#7'#57'5.46GdFFdGEd+cEYYEc+dE*##.=<FdGGdF`Ec+dE*Ed+cE`^+.:.+G^G!+3354&'535"264&3"264&2>=@ V @#22F22#22F22  +p  p++   !+/373354&'535"264&3"264&2>=#57'#'7@ V @#22F22#22F22  *h--i.-+p  p++   j@@6....!>%#54&+".547.5473;";27>54'#+#2354&'6k+@1%23%@%%@$2%23%$1+,%+@@1$;'5$+%6%2;'5$ %*1UU+F+/37;?#5##5#3533533533533533##5##5##53#73#73#73#73#+*++++*++*++*++++*++*++U++V**U++U++++++++++++++++++++++UVVVVVVVVV+ 0"2>4."'.4762"'.5467267:b99btb99b&8 (^( `1*$,IdI,$*+ 6@5 5@6 @  #  ""  # 8%54&"";26=4&+5462#"&546;5332$.%  u %@~  #$ "/ k   K  K    G ** f5! K<%#5462354&"";26=4&#"&546;53321[$.%  u ~  #$ "/ k5  5 K  K  G ** P5" Kk &/7;?CH#55#535#%34&+#3'355#'#5#;%#326=%35#"#3'#3#3#35#'@+***UU+U****@*@++@@@V@@V@@@+kVV@@U@@@@+++@+V++++++++ ?7!%!!EF xy+VEEFyy+*?7#'5?#37EF xy^RR\RRnkkkEEFyyRRRR+kkkk#"7'754>3(8BuvB&?&k+8(yBvvBy&?&#"3'354>3,VU+J+U,55+J+k%'754&+5327vuB8(&?&BvvBy(8+&?&yB23'354&+5+J+UV,+J+55,Uk+'7326=&?&yBvvBy(8k&?&BvuB8(%+'7326=3+J+55,U+J+UV,%#54&+'732+8(yBvvBy&?&(8BuvB&?!#54&+'732U,55+J+,VU+J+k%'7#".=3;'7vBy&?&+8(yBkvB&?&(8B3;55#".5@U,55+J+,VU+J+'7#"#54>;'7vBy(8+&?&yBuB8(&?&B74>;55#"#@+J+55,U+J+UV,k%#54&"7'754>2+8P8BuvB&?L?&ࠠ(88(yBvvBy&?&&?%#54&"3'354>2U,>,VU+JVJ+ࠠ,,55+J++Jk%'754&"#54>27vuB8P8+&?L?&BvvBy(88(&?&&?&yB23'354&"#54>+J+UV,>,U+J+J+55,,+J+k%+'73264&+532&?&yBvvBy(88(&?&&?&BvuB8P8+&?%+'73264&+532+J+55,,+J++J+UV,>,U+J%+53264&+'732&?&(88(yBvvBy&?&&?&+8P8BuvB&?!#53264&+'732 ,,55+J++JU,>,VU+JVJ+k%'7#".4>;#";'7vBy&?&&?&(88(yBkvB&?L?&+8P8B3#";55#".4>ࠠ,,55+J++JU,>,VU+JVJ+73#".4>;'7'7#"ࠠ&?&&?&yBvvBy(88@+&?L?&BvuB8P874>;55#";#".@+J+55,,+J++J+UV,>,U+Jk".='7'26=&?L?&BvuB8P8@&?&&?&yBvvBy(88(k!".=#7#26=3 +J+UV,>,U+J+J+55,,+J+k%'".=326='7B&?L?&+8P8BuBy&?&&?&(88(yBvk75326=#7#".@U,>,VU+JVJ+,,55+J++Jk%#".='7'3&?&BvuB8(@+&?&yBvvBy(8k!".=#7#; +J+UV,+J+55,Uk%'+5326='7B&?&(8BuBy&?&+8(yBvk35326=#7##@,VU+J+U,55+J+ !-159=DKOSW%+5353#53#53#"&=3'3#%#5''77'73#%#5%3#%#5%3#546!2#553#53#53 ++*+k +++++^77777777+++++++ ^ +U+*+ ++++++++ +++++77777777"****V++++U+ ++++++++  #)/5;?&7'67'6%7&%'77'?&'67?&'67!*%,!e+"+"777777779"++"*((*!"+<"++&!(77777777('+""*(e+""+ !%)2;?%53+5!533#"&73#'77'73#%3#546;##%#5#532%3#*@*@@VVb77777777V****@@**@@VV@@*@@***77777777 VVV*@@@@**2"&46&'&+".5#353357$e 51+54'&'&'2'654&#'355"&54 #:F:##2///#2| *"*";##;"*"*Y 2$  /  /1 2#k %#?##!'##26;++P*@VVV@V$UUkk#7#333#53@++bDhI*@@*@@**V !5#537%735k**%&&*UU+&&&@@V 7!5#53?'7'75#k**%%&&*V+\&&&@@k#?#!3535##5$0}/:UV++@kk+@j@@k %5#?'7'72#>767"!4.*%&%""-P.V.P+@@5&&&& $$ +.O..O.V 357%7"'.'%!2>*%&%<D$.O\O.U@@5&&&&m$  $+.O..O 7#35#57/'7?/7!@@!U6>4X(6/5**f>$dfV(N$(V#'7#3'#5#3*@V)?*?.k.kk@@*땕#?#!33!53798VV*kkk*k**#?#333#53%#?#333#53d`*Հ+@@ d`+Հ+@@k@@***@@*V**N%++32#46;5#"&=#"&46;532+35#"&46;532+35#"&46;532 VV * V * V *  +VV+  j  ++    ++  j  '2;264'&"72"&46264'&"72"&46264'&"72"&46++32#46;5#"&=#"&463546;22+35#"&463546;22+35#"&463546;22    |    |    9 VV  V  V  +%  %  :%  { +VV+     ++  * *  ++    17=%5'#5'#5'#5'#5'";#"34&+567673264&&'&'353+*++*++*+ (;;(  & a*a kkkk  &#,,#&  i?? OU[foz%54&+"#54&+"#54&+"#54&+"#54&+";#"34&+56767326543&'&53'264'&"72"&46264'&"72"&46264'&"72"&46264'&"72"&46264'&"72"&46          (;;(  a&a ;    Y    Z        Z      @ @   &#,,#& !?(?%  P&&&&&&&k#'7#33#5353+@V@@*k@@***k #%62'7#'57!5!754&#!";+--*V* +-)@+k $%7#7'762#5!754&#!";!!---ٖhV-- +i++(,7@%2"&46'7>3254&+54&+"#";&3#"267."&462k  \8;/VVV| VV+GGUGG*-@   $3>"++ `+0%&00&%0--<@%2"&467"267."&462/#5!54&+54&+"#";&3#k  +GGUGG*-gV VVV| VV@   @0%&00&%0--'w ++ `+!*3<E"3!26=4&#2"&4632"&462"&463"264&3"264&32"&46UV$$  ^  w  L  VV*$$$$          "2>4.+"&=35#'77:b99btb99b@++@9btb99btb9 *@@*  *"2>4.".4>2/77"&=3#:b99btb99b:.O..O\O..O@++@9btb99btb9.O\O..O\O.*@@** #"&546;5332"77#5#!  $$ #;"?@@++ G ** ";#1&@@VV#"&546;5332"5#377#5#!  $$ \ /@@++ G ** 8@@VV#"&546;5332"7'335!  $$ #;"@@*+ G ** ";#1<@@VV#"&546;5332"5#37'335!  $$ \ @@*+ G ** N@@VV'774>354&+5##";&e:"M";# $$  !@"M"#;" ** $'77#36354&+5##";&e:"M\ $$  @"MM+ ** #"&546;5332"7#5!  $$ #;"ժ G ** ";#1F**#"&546;5332"5#37#5!  $$ \ Ū G ** X**"#"&546;5332"7##5#5353!  $$ #;"@*@@* G ** ";#1F*@@*@@$#"&546;5332"5#37##5#5353!  $$ \ @*@@* G ** X*@@*@@"#"&546;5332"7''7'77!  $$ #;"------. G ** ";#1..-----$#"&546;5332"5#37''7'77!  $$ \ ------. G ** ..----- $('67.#52'''4&73535#  $ %@%& -3 7****   *  & U=+ !+'+/''4&&'&'7/67.#52'#53#+%& -3 "+*P  $ %*** U=+ ",:T  *   +.=RYh.#522'647'&'&'.#5&#2>47'&'&%'&'&'&'&=467775''77&'.#2  "  :%70!  !-  :&6/!+ %& ++*N %& $ \ * } bA*%3> *   bA*%3>c %-5 ɟ:,"  *  3:I'67.#52247'&'&7'&'&'&'&=467775''77&'.#2"    :%7/  &% +*+N &% $ $  * c bA*%3>c %-5 ɟ:,"  *  V#*'67.#52''&'&'&'&=46777'! $!%U %% *++#   *  J %-5 *:,"&,'7'7&'.#2''&'&'&'&='7'@ ` %%%!$ hT! <`5  * gW %-5T6(  -A2654/#5##"3!26=4&!52?2?35"/"/#5463!2$$k*k% V %> .. $ -.   @ ?? @++% %@ .. .. K 2#!"&=463!!"&=3U@++k%5!2#!"&=463!!"&=3+U@+k*%3?O"#'&'.'&#54&"3!26=4&5476762'54&'&"7"&=326=      +&@&+ )( < (2F2*$k @  @  @ @($22$ 73#;5#!535676765!++U++"  +@@j**@@#22# '#5&'&'&='75!#67635#35#{" =+%++U++%z@#2>[u**+'@@@+/37;?E#5##5#3533533533533533##5##5##53#73#73#73#73#35#+*++++*++*++*++++*++*++U++V**U++U++VV++++++++++++++++++++UVVVVVVVVV*@*k@%)0##5##36753533533##5###5535#5+*+*+++++*++@UU@kkk*'  'O ' +++VV*VV@++*@+/37%#35#3'5#5##5##5##5#3533533533535#5#53#53#53++++U++*++*++++*++*+++++U++U**U*Հ+*kkkkVV++++++++*VVVVVVV $(,.&#""3549>"&4627'77'77'7 " %  Q11/21-11 ~$  { ">&*.2.&#""3549>#527'"&4627'77'77'7 " %  @$ Q11/21-11 ~$  { ">V!&*4%54&"";26=4&+5462%3#3##537##57%.%  v &@˪+*k   K  K   5+@+UU V",05%54&"";26=4&+5462%3#7!#57&"#53'3#%.$  u &@*F^k   K  K   5@UU,+@#"&546;2"5#3'776րf;"L+1@"M  ,82".4>7&"77%.'##2>'##2>11:1135Y&&&+2>"*N> V*  0$@1:11:1kI ",P-Q."?1+ =O*  *$0 +4A&"77%.'##2>'##2>'2"&467"2>4.35Y&&&+2>"*N> V*  0$&&5%%11:11I ",P-Q."?1+ =O*  *$0%5&&5%+1:11:1 (+";26=>54.;26=#%#3733'7)D(" "(Di V *E)D)s(D)%A1 1A%)D(k **GNN 19<2+"&=.54>53+"&"35>54.#3733'7)D(" "(D V @1$V$1*E)D)s(D)%A1 1A%)D(k t1 5 33 5 1**GNN 173+"&5+"&=.54>2&"'&"35764 V " "(DRD([ %*% %A1 1A%)D((D $bb$7A";26=>54.#5764&"'&"#5.54>23+"&5)D(" "(D%  %$1:1$ V (D)%A1 1A%)D(3b$  $b3 5 11 5 ''77'77'7  .     ''77'77'7'  .      ""2>4.".547676?:b99btb99b:1  19btb99btb91#""#1$S%'&'>76/&77".4>2'&'1&/&'&'.7'&'.7767>9   9btb99btb9g   !   -     %:b99btb99bF  5R'/5 = )!"3!2654&!!2>4."72"&46**#;"";F;"";##22F22**";F;"";F;"2F22F2 /2'6724&#!6'!"&5'7'#"&547'2#2d #;" KK&( #2";H2# d+";#KK %,)2# H;"#+5'!2'5654.#"632'!"&5'7327''".47'++ ";#! #2&(x2#q)H;")U++#;" !2# %,)#2q)";H)  "*3<DLT\d2".4>7"2>4."264&'627&"64'47'7&"'2?64'627&""'27'&47'.O..O\O..O.:b99btb99b:  $ .k  \ .=@!R!@!R!k.O\O..O\O.*9btb99btb9   % I.  ., @!R0-@!R! =EMWgq327'".5477&5477&547#"'327#"'3272&/6&'7'&#"'632/632'64."654'7[?,9b:H9<.O.  P   !)$ -6 G  )! 4=:b9 .OZ ?9H:b9,<:.O.6- $)!  P   P h - 9b:=4&ZO. !)%'#5'75#5'7'5326=4&#!Z<*<ZS( $Z<77<Z7S[  $737357'5'5/!2+#'35[SZ<*<ZC)@< &+'%S7Z<77<Z$>BB@  +A%5326=4&#!";  @   '#5#"&=46;'7326=4&+e @C %e  @[  !#";3%53/32+'5[@ e)@ * @  e@  +fA!";!5326=4&#53 * H@   Օ%)";;26=326=3353353!5465!$2@*@U++2#VV+**UUj@++k!*.D%475'#+"&=7>;24."'4&"267'#'6.'72?> t  , ,1:1@ }X(** $Wa  j11 X``X%**'X "*462"&326=4.'7&#"3&54637#"32F22F2d9!GA2, (@#22F22fly!+j@/7>%264&"72"&46&"3547632#";26=4&#"&46;#7#22F22#$AA+ 8=!<## (g> 2F22F2$$!! F"1"f  #)-17#55#!5354>2#37#3;54&'#37#3**.O\O.**V++.=k*k=.+++U**++++++V.N..N.V*VVVTG/VV/GVVV92"&4654&"&#"654'762#&/.#"#33!26526=#'$2 ;  @ * U###;   !  9=2"&4654&"&#"654'762#&/.#"#33!26526=!5!#'$2 ;  @ * *VU###;   !  U!%/8%#5##";;26=4&%537#'#546;2'2"&46X(UVj/ b%*%U  }UX++UUU&&*   !)2535!"3!5#>=##3;2653"&72"&46++VV+  %5&@  @+**-jj-V+ @@%%   k#%54&"3462#26=#3#3!535#53%6%+  U*V***@&& @VV++k#'+%#54&"3462#26=#3#3!53%3#533#53U%6%+  U*V*++kkk@&& @VV++Հ7#5;#3!53463!2#3#3****kkkkk**++***!%8<%54&"";26=4&+5462'3+53#36354&#!"#3'#3%.$  u &@++U++Uk@jjU    K  K   `*** ++* 7#5%#3#32!46;3#3+jjjj@k++***UUU*F%#5265%4>3"76?64&"'764&"'764&"'764&"'64/764&"#;"(8J#;"(8vb"DZ["_|uWU";# 8(";# 8(9b"[ZD"^|uA5W$Xaj6?64'&'764'&'6&'.&'&"&'&"62>'762762762762.67#5265%4>3"K#F]]# ',5- D  b j yL GH5#;"(8J#;"(8VK#]^E#-,  6. D5? b i xL 5HG";# 8(";# 8("+9G462"&53'.+"3'264&"'264&"5354&+"335354&+"3U$$V55@ #< @  + k#  8 #u##UU  UU@("#54&+"346;2#"!526=46;5% &V&+ V #2@& @%U V&& 2#@+%U +@(/"#54&+"346;2#"!526=46;5#546;% &V&+ V #2@& @%U V&& 2#@+%U +%#&/&'&&'&?65&'&'&767676'&'&+&'&'&76?67>'&/&67676'&/&747676?67632?6"&462                       * !     )\                    5   *  C=JZ4'&'#54&'64&/#5>54'&'354623>%7+"&54#54&"#53533  + \\ +    BBZ&4&UU+ [*+$ >< %*[  U U,,, *&&*UUU >=&'&>7222X66X2k88,#$V:lLLl:E5,&  *%.=7>=''676&'.76&2X66X2'E))E88$#,:lLLl:VV @X.iBBi.X@ '+ 5E-1:CL%#5>5#54&+"###;26=>5#5>#3264&"7264&"7264&"@$@ @$@$@$ $@$k@   . .-. .-*``472>=4&"#54&"#54&"#54&"#4&+54&"@/Q`Q/+& 0Q//Q0    Ц  1 &{ (T7326?6&'.54&#".#"&#"&#"3462354623546235462376?#".5@.N/7Z7 + + + + + 7E)#;"k/N.>2   ~ kˠ5'.";#(T4&#"54&#".#"&#"&/&32>5##"&/35462354623546235462 7Z7/N.+";#)E7 + + + + + ~   2>.N/#;".'5˫k$X72>=4&#"54&#".#"&#"&#"462234&'5462354623546235462".5@1ScS1  + %+$ + + + %@K@%k1S11S1 L`% 5 k%@%%@%$X"54&#".#"&#"&#"2>=4&".=46235462354623546234635462  1ScS1 %@K@% + + + $+% L 1S11S1k%@%%@%k 5 %` &.6267%53#5'5462'76?6%'5462'5462[,.N]P>J5K2 5K6 -/N.0(=bM5  15 w6  5v  .6'#"&/&635'74&"54&"#54&"64&"$D(4V@ 6|5%$!;0 Km[  5o   |"  !6 W267'".=353'>32>326326?6'7'54&"'54&"'54&"[4 .N]Q:#;"+Af' #! 2 + +  4/N..':";#X-!(o&~   Y K#2*q*'#]&/&3267'"&/35'>32>32632632'54&"#54&"'54&"'54&"[} 7Z7(D$)E7 +5t)' + + +  ~   2>!$.'5XY) 'k++1#0#"&546;5332"75"&>3'72>'7#!  $$ #;"00 /!00 /! G ** ";#100 $>+00 $?*%2#"&546;5332"5#375"&>3'72>'7#!  $$ \ p00 /!00 /! G ** 00 $>+00 $?*k 7!!37!'7p AV";;"VH!;;! 7'33#'%'7'#'!7 \<?"VV"E@:" WW !B#&#5467"&='"&46?'#5!#7#@O\ UV \O+j3g@ rkkrc++@@(DHLPTX%6767654&47671'"'"''7'7'##&'&547#"35334&#535#53#53#535#53  %% * ]+$$+] V VVVVVVVVVV 4  4d      jj@ @+@@@@+@/%"1767654&"&462#"&546;2"#"5#3,%, C֌-#7$-go)&3#%+'#"&5463!24&+";265VUUVV z  z @UU)  #'+/38%#+'735#?++"&5463!235#355#5#71#3*@@@@+@@VVVVVVVVV@*@@+@@VVgVVVVVVVVV   $*.2"!54.673&'5#6#553?#&3#53:b99b&..&+$++++++9b::b9N++.X6666&.G6`66   $,26:"!54.&'5'67#6#5533#5462?#&3#53:b99b.&&.U+$++ժ2F2++++9b::b9m++.X6666#22#J&.G6`66%'5'/737''7'7'@*@UU@*@)U*jj*Uk@*@)UU)@*@Uj**jU '/737'*@*@)j)@*@!'-7&'&7#7577676'&'%6'7*j&1D38 D)@*@D) +20H0ST) ?j*'+ )D@*@)D 83D1, )TS0H0%'5'#'&76767676731Z1ZZ Z  /%64'7"''7'7&7'62&4764'7&"'327B Him=liV A3T"U3,T  _EE-il=mi BB`  1"T33T,3 %"&462'&'?/?/?'u, W *     , , V    s   3'737U V*kV%!5!34'&'16767676?#!#3*@U $  $  U+@(% & )!%%!) &  !5!3#!#3*@+@`2"&46.+"3353$;  K@## u'/37%"'"'+32727;5'"'"'+32727;5!3!3!3#73#-)'\')-**,*(Z(*,**-)'\')-**,*(Z(*,*VUU++U++**V++***3clt23#"'&/&'&#"'&5476767676767"32326767>7654&'.'&'&'&'&"264&"#463         +      :   )     #22F22#&`   $     *.    #<'2  !&   k2F22F2*&&2&'764&"&2?2?64&6?>"&4?62 # 8 # > T  E # 8 #  > `  /<I"&"&#226=4'1&'62126=4'&'63"&=7673"&=767?=7p7=?'( 2G2 !>! 2G2 ('# # * #22# #22# @  1%#5#"&'##533675#53#35'#";335353264&*I 5@5 I**J&**&J@ @*@ +##++&++&+  @@  k735335335##5##5##5##5#7!5!@+*++*++*++*++*++++k+$0+"&="'.=467627"2>4.;26="  '  (3# 66@66K * ,   k  #3V 5@6 6@5 r r&17111'+"&='+"&="'.=47'74.#">"64 * `  '  OS6 -B,;"63 M`   kOA 5 ;,C$0G/1'1'27;26=;267#"'&=47'>32'3264&"M^[  '  ` * 4-  Uv5B- 6;,5,,>, M^[k   `M 4  jU 5,; 5 -C5 ,>++(5BK"27;2654.#"'&=476227+"&="2>4."&462k  '  #3,-   *  66@66 ,,>,,  k   3# j  r r 5@6 6@5 ,>++>,  $(,159>B^b%535#75#53&3&3&4'#'5#35#35#35#675#735#'#3367#'#3535#535#535#535&#"3535135#+++++++ &V**++++++++**U+++**V &V**U+++++++:b99b:+****+++U++n++k+++*U+V+Q +U*++U+*++*++&9btb9*++ '+/37;?CGK%53=#7#335#5##535#535#535#5#353535##335#35#35#5#35#35#735+++++U**U+++++++++++++**++++**U+U+++++***U++++V++++*++*++*U+U+++U*U+++***{ -26;%53'&'#5#73535#535#535&'13535675#535#367#U#4***e+++++";#+****  $++U++G*++*+)"*";#++N +*U!/375##'5#3#35335#53#'3##5;#5#533573##5353Հ"f"*****+++++ժ+))+V++++Q//Q***++++7II7V+++#'+/3##53%##5#535#3#35335#535##5353+53U++++++++****V++++VVk++ժ++**++++#'+3##53%##5#535#3#35335#535##5353U++++++++****V++++k++ժ++**+++'.72727;#"'"'+527;#"'"'+532'535#5U-)'\')-**,*(Z(*,*'\')-**,*(Z(*,**-kkU**c**@*@U'.%3#"'"'+5327273#"'"'+532727'#3**,*(Z(*,**-)'\')-**,*(Z(*,**-)'\')WUkk****+U@*@'.5%3#"'"'+5327273#"'"'+532727335373353**,*(Z(*,**-)'\')-**,*(Z(*,**-)'\')U@+@V@+@****UkkUUkkA $,4%&"264'!"#4춭3%#"&46;#"&46;#"&46;m4&&4&V++ +@ @V V&4&&4fV*     &."2>4.2"&46467"'72774&'7:b99btb99b:$:. U1)/./)$ /99btb99btb9$$+4UO *G G* OU4'08@2".54>"2>54."'72'2"&46'#467#4&'*O< /.6%7';2" M *  $yJ6*%:2 7  [ $3 FDJ 3#3!!!!!!k*UUU++*++*++&#".4>2&#"'5#7#33535#5%:b99btb9!'!B Ik@@+@@9btb99b:(o-$/!v@+@@+@&2%'53#".4>2654."327&7#33535#55J A ( .O..O\O.9btb99b: f@@+@@~-p' s.O\O..O.  :b99btb9@+@@+@#".4>2&#"'5#735%:b99btb9!'!B I+9btb99b:(o-$/!6++&*%'53#".4>2654."327&7355J A ( .O..O\O.9btb99b: &~-p' s.O\O..O.  :b99btb9?++&#".4>2&#"'5#7'77'7%:b99btb9!'!B I.----...9btb99b:(o-$/!l---....-&2%'53#".4>2654."327&7'77'75J A ( .O..O\O.9btb99b: .----...~-p' s.O\O..O.  :b99btb9u---....-k%353'"264&"3&547"&k*+@@U$22G22#.O. UUU@@2G22G2'+%#k%5##7"264&"3&547"&*+@@$22G22#.O. @UU@@+2G22G2'+%#k0%5##7"264&2"&46"3&'#5467632367&*+@@$22G22## &+(! @UU@@+2G22G2+## @  k0%353'"264&2"&46"3&'#5467632367&k*+@@U$22G22## &+(! UUU@@2G22G2+## @   #/#53546235>=754&"#3535>=*  U+  ++@U U*!ZZ!*U U*!ZZ!*@54625##35>=  *+*k kUU!YY! "+42".4>7"2>4.4&"26'4&"2674&"26.O..O\O..O.:b99btb99b`k.O\O..O\O.*9btb99btb9 m  ",'&'7>;%367#"#";'3767#"@B*?$"jMt 0R K6CL v U$:!3.   U  K )2!"3!26=4&'57#"&46;'3#"&4646;#"&W V+,+ " @@ KOGG$GG   k * K"+4!"3!26=4&!57'!#"&46;'3#"&4646;#"&닊W V+,+ " @@ KGG#G   k * "!5!##+"&=46;22323'#U[ @@ [*@+* V U*'!5!'#73'#"&='7267354&+.#4&+"6Bo+h [+[ @  %*pUh[ +  %3!535.54?3337#7#73kk->%**/J0++'>-**D. vJVEeV*v .D"(.4%#'654.#"677%".4>2'53#%'5#'#5 (E(2(! 0JO k+11:11++@+@*++k(1)E(IOA  k+k1:11:1++++@++*@(,04%#5'535##"353354&#535#5372"&46#53#535#53U`5K`U V VVVVU  4VVVVVV*'/*Y'* jj @+@U   @@+@!";#35#532654&!!j**j*+**+ +#"3537#37'"264&35;7'#5+@@jj@#Ҁ*@@*@@+@U+*+@+$#**U@*@@+@$(1:FP"#";26=!;26='.+54&3!2"&4632"&46."'>2&"'>2J ,    , J .0.8:8%@%&%U    ``* # 14?3"&462#"&4627.+";26=!;26=7k   -    UU``k  ``v'/77'77623535#w S-SS&D5SS =****m  ST4D&RT-S K+%'/77'7762'7U1S%D5SS  SL";e]S5D&SS-S  SM"@e!.4"'764&"''7'72>4.".4>2'5#7US  SS5D&S!(EQE((E)11:11 M AS  S-SS&D5S*)5)E((EQE(1:11:1e[k.JS%'/77'77622#'+"/&'"/&?5'&5763?4;272'4&"26P &S%D5SS  S+ + /GS5D&SS-S  S%  $$  $ #7/77'776237'7'&"764S%D5SS  S-,,O ,S5D&SS-S  Sy,Q+,, %.%'/77'77621'&'&54624&"26G!S%D5SS  S%,=,1 '?S5D&SS-S  S"8$,,! %'/77'776235U1S%D5SS  S]S5D&SS-S  S++!%'/77'77625##33535U1S%D5SS  Sq+@@+@]S5D&SS-S  S@@+@@+!%'/77'7762''77'U1S%D5SS  S.----..]S5D&SS-S  S---....$-767'764&"''7'72'#"&46"264&$S  SS5D&(8BB(88(,8"FS  S-SS&D558(BB8P8* ,,  '/77'776235#35#35#S-TR&D4TS ++V**U++_SS5D&SS-S X+++++ -6?HQZclu%4&#"54&"&#"32726=32654&'>"&462'462"&462"&'"&4627462"&7462"&"&4622"&46  ,   , ,+   V   *  8       V      U,,  "  3   @   "  3   #,5>`lx462"&264&"'4&"267264&"3264&"3"264&264&"+"&'#"&547&546;>23267'&#"&'327'"'2654&"624&/32654&#"7>   @  "   @   ^  ^   K( !*! (( !*! ( 8 Q    J  @  7   U         V  u''''  d     e   \   /%''&'"&4?767''767>'&'C76 D  H9K& &4."&+'732654/#74%#3U11:11 ,%< *VV1:11:1w  9*@ $(<"2>4."&462#4&/#35754&#53'53#&/;2U11:11&&5%%%*%++#|3 2r 1:11:1%5&&5% 1)5&V(v/ )k$(#!3265326535"&462"&462'53k+&4&u&4&6  U,GkV&&&&  UU 7'757'7'&"76437'c# +# ,,,? dt, , (#"3537#.#"326737;7'#5kk+k@@  @k@@k*@@+@U+ $ +@@@*@@+@+7@"35326=4'1'327"&=4&+54&#3353#5##%2"&46 ,O-  +*++*+  kO- `UVVVV   ),/754&">&'&'2#546'737'7'&5%#48/ L + 1<<1 <--< %%48/"58 @@ VQ1;<1Q=..<(33@%'7.''7&#"''77327'7>7'7654'.>'3!&'%"5& & ('3!&'%"5& & D6 )@D6 )"5& & ('3!&'%"5& & ('3!&'% )@D6 )@D6 %'33353';'#33#U'RVR'3q)DgVVՀUUHk@)5=%'7"&"#&'&5!54&'4>2."&"&54727"'>2U  '/V/";F;" ?P? 2F2 f/*p* 4D4)(g((g&* 'UU'  3 #22#  ) ,N4>2."&3"27."&=&'2654'#'7"&#"#5467/!54'&";F;" ?P? "4 *p* 4 $ 2F2 3Y Y "V`   @ #22# } Bm))mB  jjk!*'6.'72?>'#54>32"264&X&(*#W.N.-#22G22W%(*'X +'1-G2G22G2k'?'6.'72?>%264&"72"&46#54767632"&#"3X&(*#W$22G22##Q*&  !(W%(*'X 2G22G2##@   V%4=F%5'5#3#'>4&+";#.#"32673>#"&4632#3%"264&"&462`@+ +  + / #22# /7447%%6%%  U \ Z'2F2''5\- >%7$$7%`")%!5!'#5##"3!2654&+5'#37#553*@+*@+++@@+++++*+@*++V*@@+%%!5!'#5##"3!2654&+5'#553*@+*@@@++++*+@**@@+++\%654."3767673&'&71264&"#&'&'##1"'&4632237&'&5462263632b 1:1 (67)    )76* *   %6%   66 4N2  (% 2N4  +%,, %  "&327.#"32?>5./7: )3-k  j  DE !~8 A @  3V4*#";2654&"'#7"&46;&546232kQ@"$V::#  #33!5!%#";2654&"'#7"&46;&546232@*R@##k+UU::#  #7#";2654&#33!5!"#"273'264&+654&#@#UU*++ #::# .#";2654&#3"#"273'264&+654&kk"@"VVV #::# #";2654&'7k|@@@Vkkk3!5!%#";2654&'7@*|@@@k+UUkjj #";2654&#33!5!7@@@UU*+jkk#";2654&#37kk@@@VV@kkk%#";2654&/&'&4632>32ko #    #V !'  )!.3!5!%#";2654&/&'&4632>32@*p "    "k+UU '  ( 2#";2654&#33!5!"?6764&#". " "  UU*+@' (  )#";2654&#3"?6764&#".k֑ # #  VVk'! !(  &#";2654&"'#7#"&476?kV @  # # V11'! !(/3!5!%#";2654&"'#7#"&476?@*V @  " " k+UU11(! !)3#";2654&#33!5!3273'3264'&/ "  @  " UU*+% !(11)! *#";2654&#33273'3264'&/kk #  @  # VVO !'11(! /L73&'&712>54'&'.'&'276?##"&5&76767#"'&'   ((  ;;  (( 1* ($ "* U (% '<<'E  #)%"+%  *#532&#3#5#"&546;37'6'77'7jj++jjjjz$ -,,,,---U+ *+*U+O,,,----,;D&'&'&'&#"&'&74'&'&/7676767672767327654&"&462 %.'5,7   VU   $ -;/<  +  ,7 /%. !   <    #-37;#"3;26=3;26=265##53#34&+535#73535+@@++@++++*+UVVU++U+++%2'53+'%3# ) <&,VV @+: +"%'#53325#%&+"/74/#ժ*$+i s 1 31 |"6)1 %0 (/u) 33##'#53'7'7'7'7U*5K*K5*+& *5 +&+jVV//B//B//B//B&%'7'7'7'7%33##'#533735#5#+& *5 +&+*5K*K5* KK +//B//B//B//BjVV++UU+kkA/:%&'&#'&'&#276?326767&'&'6>4&'&"&47L "'!+ $ , # #   0#'  &# V   +    :  "<67&'&'6>4&'&'&'&#"&4'#5"'&'#7'2767'7   0#'%~  mt (F" ++    G t+  V+ .=#32?1''32X66X2 9229V:lLLl: 9229j  '.=7>=#&'57#'72X66X2)E''E)@ 922V:lLLl:'Bi.X@ @X.i "jj922 >=##5#53'732W77W2+*+++++V:kMMk:@@+~""~ $.=7>='3##5#53'2W77W2(E((E(+++*++V:kMMk:'Bi-YA AY-i"~+@@+~&''&'2?>'&7e6$  /:7I D.50V3&M" '#%#" 5"  I  E%/T15k 33533535'#537!5!#53#+U+Uk++++k++kU+@+k !33533535'#53'7!7!5!#53#+U+  Uk++++k++kU+@@+@+k!5!##5#57!&#"#37'7V\$V&oL";e@+$ & +kkU.M"@ek#%25'!33&547536#53'7!7!5!'77$ o  V5e;"Lkk+ & $kU+@@+e@"M  -!5!#7'7#".'#5#57!35#4."2>U M=(E(%@*U/U M=(E(%@*U/4.&'&7#"3""#&5% + Y&p11;11&W Z34#H%%  Q1:11:1QUHH"/8>D6254&"2654&'#5462%6767"2>4."&462'&'&7#"3""##%7$ +  Y&p11;11%%7$$&W Z34#H5$$ Q1:11:1%6%%6%&QUHHk)26#5!3265326535"&4627##5##5##5!"&462'53@+%6%%6%+ +*++*+@ "5*V&&&&k55 ,048%'7627#'57#5#53533767535##5#3#353#%3##53- ւ--*W+++ ***+++++++--,+++W1***V++++ $(,0%47#5#5353362535##5#3#353&3#%3##53!#5l+++***lk+++++++k++++ll***O++++++ $(,8%47#5#5353362535##5#3#353&3#%3##53%3##5#535l+++***lk++++++++@@+@@++++ll***O++++@@+@@+@ $(,8%47#5#5353362535##5#3#353&3#%3##53%''7'77l+++***lk+++++++`---,,,,-++++ll***O++++,----,,, 73533!"&5'735##3@+@U#Q 0+@UPkkj %#?##!'#"&5'735##3f*+P+@UUU@#Q 0+@UPVVkj 06>FQ\dim4767'767672654&'57'&'&'&'67&'5'&"'62#'&'&'7%#4767&"'6253#35# '& .)   #  !(YY6PW.&  /S*  + .>++++@      ,  ,  Y7((k =  .((kV+,B7"&4627"264&'57326?'#'#33!5#"&7/&'&4632>32### S$SYG+Mf #    # ###D% *4 +w !(  )! 3m'6"#4'7764&"&'5>54&"6733264&'./&'47#"'.76?&'.6767&5&'&47>7'7-  "   &  8        lf.  2'      7   *  +     m8{%#"&'#'654.#"'675.54627&762#"'3>32'./#"&'47#"'"'.76?&'#"&'&676327&5&'&46327'7'2&#"6 !1! &  8         l19 .  !1!    '2 7   *  +     mȑ810.)"7676764.2"&46"&'4762(E(  (E($- 4 -(EN5)1"##"1)4OE(*$$ %4=2&'&54>7"76767654.2"&'54767"&4621%++%1)D(  (D) ,2, $k1*A1771A*1*(D)&4*0####0*4&)D(  ##"%.%'74>32?4&+'&"#";&#462"&R;p#;"  abca 8 @$$eS3254&#!";&!!%.$  u &@ 5 $V   J  J   $$V)+6%2>=#"&=#"'.""'."#526762267623#;"5,>,5";#  D  # E  E U#;"++";#j    *    !!";&'.7>3265#53'77k ! %]#;"M /+U@"L !'%&">#35'!";&'35#'77+4%"!<U p;"M% "9t*<` UU@"L%"/&75#'&>3!2'77 +{ + {z;"L + } @"L%"/&75'&>3!2'57'77Uf + gT+T<;"L V n zlu+k@"L '#/##'7'5#'# m*S-x% -S+ 3533%5/33#'35#'[S*m C*x+p Sӕ BB++*+ /%3pZ#[(90[#9 &#3733'7#5>4.".54>2\+`+$$O"j*'/.O\O./':F9btb95@**J``"j*P]O..O\O/iA:b99br^)'&'&#"#7676767'7##676767  5 &5 0 %       0 k#'32#5#535#"#326=#5#;!!k@*@@@@@@*@k++++++++++++k#'+32#5#535#"#326=#5#;7#57!!k@*@@@@@@*@k++++++++++++VV*V0=%3'7."";32>54&"&4632>32"".4>2@ 4DCGXE11OH,)E(:%% ;(,(E(11:11<')3/&1:1'/(E)1N&5%'3(E( U1:11:1 "-1!7'!5476762'"&547%!65.#533 m%!/ % XO 'UU %J  k%X O *@4%#'537!!65.'!.'467'7'#54767632'#"&547'#;U@+& % :B!+ M'+ *w%* B  * L%)/4AG%54&+."#";32>54&'2"&46!!#53'53".4>2''53Y!(!Y5)E(  wBBB@m 11:11=M ӂ(E)5   U++ J*1:11:1e$.k%;HN%54&+."#";32>54&'2"&463353&+3#3".4>2''53Y!(!Y5)E(  **"X :-11:11=M ӂ(E)5   ***d++ "+1:11:1e$.k#a%"&462'"&462"&46272"&46"&'6=>54&"&"&"&#";32672732654'3264&P ](d C  ,<, %  %(!!""!!   P !! (!//!()4<_hq&'&73267'27#"&547"&4632/67'626/676''4654&#""&462"&462\|  $$ #:#(AG %2F22#)-"0  $$ "2# 6  @   | ('F  "$ ) 7" &  " #2  a"+2"327&547#".4>263267."264&3#'OO 11:1' O%%6%%eUU@`YGGY 1:11 GY`%6%%6%+*+@a%,"327&47#"&'>267."264&3#'OO263267."264&5#535OO 11:1( O%%6%%zUU@`YGGY 1:11  GY`%6%%6%+*+@`'.";&47"#"&'>267."264&5#535OO=eeze O%%6%%zUU@`YGGY ?66??6 GY`%6%%6%+*+@ "%#5#7#735332+"&=4635@;@V V5$!   +@@$35332+"&=4635'3#5#7#@V Vkk@;   +@@r`+5$ 3!535#73@*@5K5UV 75#7#355#73k@@kv5K52`UV ;"2>4."''7676767'&'&54767676?6767:b99btb99bm  #3   1! "9btb99btb9 ,$  !   $#,9F741676767'&'&54767>76767#"''2".4>7"2>4. *  2( ! W.O..O\O..O.:b99btb99bc$  "    .O\O..O\O.*9btb99btb9%4=%'&+"2?.4>2764%"&4622'#"&46"264&  # "9!";E:# (8AC(88(,   #:E;"!9" #oM8(CA8P8+, -&5>%./#"/&=46;2%264&""3277'654&2"&46 ;,mm D- #  (88(CA8(- -D mm,;  y e8P8AC(8+, - ;G7.467".4>2622?>22?>2654."%>4& #$''$#4XhX44XhX4/ /(EPE(J##$''-R#^h^#R-4X44XhX44X4   (E((ERZR#^h^".:F%"&462'#37535#57>4&>23."7'7.46"&'#267   @@UU@UUJ##$''HXH.c|c$''$##DHXH.c|c  @+*+@@+*+uRZR#^h^R&//&9GG9^#^h^#RZR&//&9GG9&3O%35#54&"2654&'535#!'>4&'7.4675>54.".54>2@@  # @@'$##$' #$''$#:1"(EPE("1:4XhX4*   F+4^#RZR#^4-R#^h^#R-8\2A%(E((E(%A2\84X44X '-39A2".4>7"2>4.'6&47'%&'7&'67'764'(E((EPE((E(4X44XhX44X%% C& m&U(EPE((EPE(+4XhX44XhX4"%1 *. 61%*0&*I&0 *. 4Z !3E#535#%3>7#3.76?#3>3&'"3276764'&'&&'&4767+++UVVZvehx[-+..++ !!$$!+++U+ **0,|,0"$\$"!V! B 8FO%'767#53&''7&'#52632"&547'3#7.54>274&"35>"&462#8((+@#@))7#.N]N.k&5%+@  )G7*))@$@*7G).O..O%%!DD!   k!"3!2654&#53VjjkVk!%!"3!2654&#3VVkk@+VA)-"&46;#"&46;"&46;!"3!26=4&!5!@ 6 @ @V V J  j   @A)-1"&46;#"&46;"&46;!"3!26=4&!55!@ 6 @ @V V J  j   +UUk (032##5'5735#%75#"5#'#;7326=H8*V**U7VUUbVVk+7U+II+n+U8V*8+VVH+V8+6=4&+754/;26?65'#573#";76=4&7#573 oj  1+,~)  1 oj ) ,~@ D i  qh|):@ q D i ):h (3!#!"&5'!5!'#4767'7/%#5##3@ `*"2y+k+j' _*+1" yZ* VV*' "13!26=!"!4'&'&6762!!5##3#3267  )$%@&#"8!@k+j% $ ))U V**VV*+` $(7535#553#35#";3#3265#3***U@@@@@@@**VVVVVV@V*k*V 3!!3#'3#3#3#+*V@@@@@@@@@@*@UU ##37#5375#'3#35'#53735#53uu@`++@**+@**K@@u*++@*Kuu@+uu@+@@U*7@K%"'"37;2657672576/5765'&#'&/4&#2"&46#&#"k *   y")D( %$  $% K`(D)%k$3"264&"3&547"&"&547'37'=52654&$22G22#.O. 2#////2k2G22G2'+%# $2 /1k // #2k)8G"264&2"&46"3&'#5467632367&"&547'37'=52654&$22G22## &+(! ~2#////2k2G22G2+## @   $2 /1k // #2 7=!5!"&462#"&462';26=3;26=>=4'&"35#  X   2&&2@VVV'  '33+@+37EI7#35#5>=#3#%'.=4&+";26=4&'3#7>=3##53@+++**L @ p@!E**E!+@6 \ \  es !"+,5?H752>5&#".72>4."'765.5&7"264&"&'>24&"26U.O\O. (I=P.O..O\O..O3>D6  wGUGGUG<--@''@  !.5(.''.( +@-5   &00&%00%- 5DR%'632326=67.'#"&'67'.='.547'7'#"&47'36'?65.5&'-*?.O.G  3):]4- &+G+ D6ז'-5 @) 9^ , 0&- / @!/1 + Bj ,- +@- "@JY%'267254.#"6'#"&'67'&'.=47'7'&'33'#"&47'36^#5& %)4  .O.?*# &+G+ 9)4DCH!D(  + ^,   )< '"  0&- / '- BI< ,(=FQZ7'7&'&=67#"&'5327254."&2"'&'&476762"&467"267."&462*8&E"%N2  .O\O.D65&  L   +GGUGG*- />  < ''-J      @0%&00&%0--"&7&'&#"2>54&#537#3#53#53#53  4C4Y33YhY3**++**V++++7+3YhY33Y4">u+++++++ #'+/3%".4>27&'&#"2>54&35#7#3#37#3'#3)D((DRD((Dl  4C4Y33YhY3**U+**V+++++(DRD((DRD( +3YhY33Y4">u+V+++++4=Z^%2#'+"/&'"/&?5'&5763?4;272'4&"26'47#53632&'7&'.#";&#3* * /*->!   >"4Y33Y4U"$  %$  $  /&, 4% 4XiX3&+4=AEe%2#'+"/&'"/&?5'&5763?4;272'4&"26'5##3.54>32&'7&'.#";&* * /*UO%=$(D)3O    >"4Y33Y4"$  %$  $ b+*A&)D(32&#"327'7'#33535#51:b99b:$-".O..O. x`@@+@@9btb9".O\O.`@*@@*@n"'&76762654&`Z  ,#3p4%)  -!5K   *  %476&#!"3!26'&'&   *  `Z  /3m5!-  )%4+!%37";#326=4&+535!326=4&#3#'"353354&#3#+UU+VU***++*+++++++++++VV++ 59='32'535#";#326=4&+5'+5'#5##546;'7#3'3*;+V+<++B U+*++-V8++**+<+++++++ +VVU+S+-!$'.'73'##'##737#/#737'3'3''#3o&&`8`'&-,JJ,=-,Jr VUUL66V@@6oo&&U``U@+@!$'.'73'##'##737#/#737'3'3''#3&&a7`&'.,JJ,>,,KsUVVL66V@@6oo&&U``U@+@ %*.72>4."2#!"&5463462"&%#35#3#;"";E;##;@2G22G2k++++@#:F:##:F:#@*#22F22j+ ).2!"3!2654&!!2>4."72"&46%#35#3k++#;"";E;##;"$22G229++++**#:F:##:F:#2F22F2j+  "*3<DLT\dim2".4>7"2>4."264&'627&"64'47'7&"'2?64'627&""'27'&47'%#35#3.O..O\N..N.9b::bsb::b:  %  /j  \  />A"R!A!R"++++k.O\O..O\O.*9btb99btb9   % I .  . + @"R1-@"R"j+'0'774675##3;26=35!";&'264&"{;"L#V+  +!@   @"M"#;&j-V+ +*$  -6'77"&=3675##3;26=35!";&'264&"{;"L4%V+  +B   @"M&%@$&j-V+ +*"  GKO#"&5'&'&/&6?&47'.?>6?46;276&#"654&"32773#'3#!L5+--+5V5+-,>,, ++U++8J#  #J88J#  ,,>,1qO]fjn#"&5'&'&/&6?'7'.?>6?46;276&#"4'7'&/#'73'#"&46274&"263#'3#!L5+--+5V5+--3' '3- -4& #22F2)$$j++U++8J##J88J#!88!&&"8o2F22# ):$.GJ#"&5'&'&/&6?&47'.?>6?46;276&#"654&"32777!L5+--+5V5+-,>,, Uk8J#  #J88J#  ,,>,1q@O^gj#"&5'&'&/&6?'7'.?>6?46;276&#"4'7'&/#'7376514&"327>"&4627!L5+--+5V5+--3' '3- -4& D2F22# ):$Ck8J##J88J#!88!&&"8#22F2)$$@GK#"&5'&'&/&6?&47'.?>6?46;276&#"654&"3277#3!L5+--+5V5+-,>,, 8J#  #J88J#  ,,>,1qO]fj#"&5'&'&/&6?'7'.?>6?46;276&#"4'7'&/#'73'#"&46274&"263#!L5+--+5V5+--3' '3- -4& #22F2)$$8J##J88J#!88!&&"8o2F22# ):$."4C%"'.5#6764'.34632'"767674.67>".)  & ,*  *, & ':b9,(@>>@(,9b$ dd $.O\O.-   P    9b:Q7227Q:b9A,'',A.O..O'27#7&#"'>#5#5;#32+535#*K780>8Y2u)*+U*UUU78(B4DVժ++*+*+"&%#76?625'#";&+2"&46#5(!"   vvj#R(!"lvu##++ #'?'4&"26#33625'#";&735k(@Bk   %+j(# VkWlA++".%#76?625'#";&+2"&463##5#535(!"   vvj#@@+@@(!"lvu##@+@@+@ #/?'4&"26#33625'#";&7#33535#5k(@Bk   e@@+@@+j(# VkWl@+@@+@".%#76?625'#";&+2"&46''7'77(!"   vvj#H...----.(!"lvu##-....--- #/?'4&"26#33625'#";&7'77'7k(@Bk   .----...+j(# VkWlw---....-#!46;326'264&"U1!s%7$$7%+U1 _%%6%%#!46;#!56'264&"UVg%7$$7%+Uf%%6%%#)'''''';&547536325#537!5!'77$#$#$$#$#$#$ '0%ꖖVF:"M\$$$$$$$$$$$#' $ *@@"M '+/%''7'77'''''';&547536325#537!5!..-----2$#$#$$#$#$#$ '0%ꖖV--..---$$$$$$$$$$$#' $ *@ '#5#7'75#3'|ULB*&${BM[I++'2.#"#5>#5#5;#32+535# Iu2Y8>087K *+U*UUUVD4B(87ժ++*+*+ "%"764/&37'#5353"#53#53--- - '-   !%).2%"764/&37#3'#5353"##3'#535#3'#53---+UU AU+UU++UU- '-)+* B*l+* 7@IMQUY]aeim%"'"37;2?672?6/54576/&#&/4#2"&46'5!353>#535#535#535#5;#3##535#53'53U  +   ր+G+++++++++++++****** % %  % % KtK4M*++*++**++U+*++** 7@DHLPaeimqv%"'"37;257672?6/74'76/&#&/4#2"&46'3#3#533#'3##!!353'#535#535#533#73#k  *   ++*****V++CՀW+++++++++U+$ % %  % % K**U+++K7+*++** .9C\.?>7>7>7>7>&76?6.'76.7>?6.'76/&&-  _ t t d d C oBE4= 6 ;8y- .T    N%  : l   q r L ~ E nys ^>  ;$%1&"1327654&"".4>2ͻ%5{T5LՀ44.O..O\O..O\/ !1 t    !-'762'''#"'&54717'76;''&#"32-Y$8a{5%eM4LKG.O..O.E$H Y$! LH  )6C"2767654'&'&2767&'&"572".4>".4>2$"4((4"H"4((4"$#!33!F!33!#)D((DRD((D))D((DRD((D$$$$     +4@'632'5'32>4.#"'"'&'&547'7676;'&''&#"32"3L$"4(? +Q*)D((D)3 *2!F"4(,83!#]#D)D((D)Fa#$?*  )$ ,^ D   #%1'&"112?164'5'7''7\\\}}}h\\\F>\\c***O>\\$'*.27164'1'&"7/112?7'7'757=U+?>>D\\eLLb\\\}@>M3>?>>\eLLb\%*>d>%1&"2?>''7'5   wpwV5 KK/^444Y %'762/'5'"/.?'775'/-Bt*?v  iAw54)$H CF+?.K/ 4344 "+"2>4.".4>2'2&">"&'27:b99btb99b:.O..O\O..O.5V79V55V79V9btb99btb9   <00<<00< $B32776467#"."&'327'632'67'>54&/32.#"3?,9b:H9<3*P.O.5V7h7, 4=:b9  $ %S>+h7V5,?9H:b9,<,Q Q <07 @ 9b:=4  $ +0< %3/3#'##3#35!'7!53X+$d(s) (d$d(M@@*@s177**@@++@  %+1%5#5#5###37#55'5'37#'&'57'35#3#@@U+**C ++@++++++++k+*@UV  *JR @x` @5 + ;]&5.546767654/46'/&54767654'5267654/46&5.546u#$& & $#S(4%& (4%& >!'*  () %& (4%& (4-;IU%&5.547'&5.547'/&47'7654'&#"654'&1654'#7"& %r 5*/ Q& /`1$(&'1-((-,! C%s[O" 0<+/3*)V0.*) ,:  *%!"3!26=4&"&462'762546;2#22#+$ " < V2F2V$$ < "   #`ir%&?'&76?67636756&#!";&'57&'.'.#"&'&"#"322?23267>7>'&476"&4627"&462'733'?  ΀"          a%'3&% +3   R*  >+@@+@(        X&3''3&B 9C)y,/Ybkx}%&7#57636756&#!";&7'&'.'.#"&'&"#"322?23267>7>'&476"&4627"&462'733'? ɀ  2          a%'3&% +3   R* UU$@UU        X&3''3&B 9C)y,/4&+"337335333733#532$$2@@+ K*K +@@+lB+@#22#+֕*jjjj%4&+"337335333733#53'46;22$$2@@+ K*K +@@+lB+@#22#+֕*jjjj+k""3276?6764'&/&'&320  023550  05k )&V(*  #&X(& k4462"&4675&#"37+"&=4635462#54&"322G22G2 !$.N. v  %.%\ $22G22 '+%K  K 6  6k'F7264&"72"&46#5476762&#"37#5462354&"";26=4&$22G22##<+&?($!!(\%.%  v 2G22G2##@  6  6 K  K  #3!#3#3U****@@V@ !535!5Vj**@@**3"&5463!2#/7''k*O,QT,@**)"&5463!2'5'*V-SQ,*k-T>T,3'!"3!2654&!!-VT,@*#3!5!!"3!2654&'53U*+V65k@* !7!!"&53%#!"&5463!2!!'#7U+**+k65*++Օ 5#3526=3"&=**+,=,*@*V++ +,,%*  5#3526=3"&=%5%**+,=,*@V*V++ +,,%*  UVU !6.>7&'767&'66767676'.'&L)77))77h # # 77))77)? $  $  %:'.7'7.6&7767&'67.'&767676'.H3 : %  %  $ 3H[ ; ! ! ! ! &1H7'.7&7&76767671'.'6'&'&&'967&'676\ 3H Q#\%!N&;, $U%! H3  $Q!  3& ,:$ !  *?762"&4'>.7&'767&'66767676'.'&6%%6% )77))77 # #%6%%6177))77)? %  $ "(1:CI4.#"#";26=!;26=>%3#"&4623"&462'"&462''53(E)%?*b -    '/ua ,>>X??!=M )E(";#  H"1kk>X??X>e$.kk#.7@IR7&#"54'>547>?64&"2754&"'"&462"&462'"&462"&462O & *  ")` "#)ST -$  LN 3 .+5!#3#+#'53267#5# $`F/+C.;K*++++->+%+'03632+"/"&='.?264&"#"35350A K  6?  E %UQ:  &2, V K0 % I& #,5>G%2"&462"&462"&46'2"&4672"&462"&4672"&46'2"&46$$n$.$R$$R$.$+$$$$$$$$$$$$$$$$ "'3!'##5#54677'!2'7#'3'y(,&@H4O&+Q5 )%UU6G8O*V  $'3!%33535'!2'5#'7'3[(,&8@++Q,&& )%P96UU*++F!*-0!%!"3!2654&5354&+"37264&"'7** 5665U*+*U66U6VV*VV`?"264&7&#"3273#"&46270#3"&'>2&#"54.";%%6%%e&$ *#22HP &- 1:11%6%%6%'-2G2VYGGYYG11:1 `;2"&467&#"3273#"&4627#47#"&'>27.";&%%6%%&$ *#22H=eeze O%6%%6%'-2G2V?66??6 GYYGGYk%#"&546;32&"7'7+E;#L";e+ +|#;!M"@ek%#"&546;32&'5!37'7+L";e+ +| l ;M"@eCG.>264&"7%&'&/."?35'54?6767'7'f! !! #ERR   3 ;$'' .  QH)y* !! !K### #' "  !iEPE2c8   jXb4b0462"&'9"&/."357?35'54?7##&  k(3 ;$'' tk#" <^G!iEPE2c8   #'!%!"3!2654&#37#35326=4&#53**++U*+++U*+*UV+V+"4623##5.7264&"3#35#U8P8#@@@$@++++5(88(1 [@U 1 V+)2;?C##5.54>23#57>54."353"&462264&"73#35#UU'.(EPE(.'U*V(1:1(*V+%6%%6%@  ****+I,(E((E(,I9+ 7"11"7 *%%5&&0   V+&"#"'.#"63232?6&'$  | (! (( v x   $  $'7"#"'.#"63232?6&/& tttt | (! (( { Sp x   $  x d#7#5327'32+'''7 ;f(W1;<'('+  C#-X<(''|1#7#53232+77'7/7/7 (f;11;<'(+  S<X-#C)'s('Z1 $@2"&=46#5.532>5#5'#5462#546?654&"%%6%%!;$*$;!*1:1 %5&  %&&%%@)AA)@%11J j %%"    ,0L%".5#35>5'462"&526=4&"#5'#5462#546?654&"15:5$";#*#;"%%6%% %5&  11#>)FF)>#   >&%%& j %%"    k&#5#";&'267'5326=.#"'53U$2+ NXN+f Vk2$> !  @@Qk!"3!2654&!!'!J6J*kk`@`&/&/."267676=4&'2&">"&'27 g~g g~g  &B63A&&A36B7BB7  Z  7BB7 X ^)2;&/."267676=4&"&'5>2'2&">"&'27 g~g g~g  #epe##epe&B63A&&A36B7BB7  Z  7BB7 X  ZZkn #"'&76762654&"77&Vd`Z  ,#3p4%) R9O+<`9i   * ^3It k#,3""'&'&#"327676232654&&"532762'$4p5$ #4q4$ OOWT\OO99`<k        * b^ tIk&/#5#";&'267'5326=.#"'537!546;3U$2+ NXN+f VU*k2$> !  @@Q*k '%3353#"35#5326=4&#|"*"++U*U* "*+*U*+* 777632#"'&'&546;2?&"32673#"&4627I-/ $( cTR02 K  %,  % +$22G-I/  K 20RTc ($ "%, 2G2U"(.E%"'#".'7>'&54&+"326=4&%3&&'73'7&"32673#"&4627*#/.I/ K 10STc '&+"*%,  % +$22Gu /I,/ '& cTS01 K  +%, 2G2U />77632#"'&'&546;27552654&"&547'37'I-/ $( cTR02 K  002# 2$00-I/  K 20RTc ($ w 00  #2  $2 00"(.=L%"'#".'7>'&54&+"326=4&%3&&'73552654&"&547'37'*#/.I/ K 10STc '&+"*002# 2$00u /I,/ '& cTS01 K  +3 00  #2  $2 00V?"&4635!2+32#!5"&46;5##5#"&'##5#53533>23533 ** V ***MM**MM*       U  V#!5!53264&+5!#"3'4&"265VV      U@@kk* * +#"7'&'&476762>54.:b9SBUU0$*d*$&:F9b+1#8 EVU:   - 4!1 *>=+"&=4635462#54&"322W77W2k v  %.%\ V:kMMk:  K 6  6  6%.=7>='7#5462354&"";26=4&2W77W2(E((Ed\%.%  v :kMMk:VV AY-iBBi-YA6  6 K  K %)-15%54&+535#3#"#35#53#35#53#353##53#53#53+++*++***++**++k@@@@@@@@++++++  #+;3353#3'357#5#3'357#5#3'35'#53537#575#'5#5k*V++V+++++U*++**U+@*@U**U@+++k++@+++k++@+++k++**+@U;+//+;U@+/7"73264&"&462+6735#5#5463!2(8BB(88(,58(BB8P8, ,U|4 !57'5!'75#35#57UUUUUUUU*V++UUUUUUKUKK ++@ #'#377'#735##'##5ՀUUUUUUKUKK ++@UUUUUUUUU++++%.7%#53.#"32#654.#"5354>32%"&4624&"265!#2U1@-1 %5&&5%*   **I!H2##1 tH.!%%5&&  )2;%.#"#63532#354.+54632#35%2"&467"264& 1-@k-k(+!5j  &&5%%Z!.Ht @(H!**+   +&5%%5&%284&'#5;26=>092>4.".4>2'7'5#@$$ +#)D((DRE((E)11;113M><2 OO 2=1  2(DQD((DRD(1:11:1j/%[%>7'&'&/77>'&'&/6"'.7'7'77#  !%$h, #,'U&?'"&462116)% V%9X$ %X  11)AC20BB3-k-  dGG/(0O O  N O <GG0BB30CBi/i   kAENW!"3265326535'#'376"/.?.6?'&4627>3#2"&46!2"&46k+%6%%6%+@@  ++   ++   5+`  k%%%%kU: *    +*  " *Z5K;I%"&462'"767654&'#";&'#".4>3263254&+'"32767.#3  ,,+@ 11"7 ("@+B$% "$Zf,$$,* "1:1' q*&5%,5Q%"&462'"767654&'#";&'#373354&+'"327'&=#"&463267.  ,,&EX&Z&XE&@11  %%# 7Zf,$$,*++Zq*j1:1 %6% 'A17"&462'"767654&'"632326=554&#u  ,,?  6 u UU Zf,$$, M 6  KUUK A17"&462'"767654&'"6753#326=554&#u  ,,? Uu UU Zf,$$, M * KUUK -6;?%654/654&'7&?35'&''462"&53#53=  _  ,    5+++>  ! ^ 8    < 3kV++-6<7654/654&'7&?35'&''462"&'77=  _ ,    6:"M>  ! ^ 8    < @"Mk +7%264&"7#3264&"%#"&5#"&5#5463!'#33535#5 -5_ 8@+%6%%6%++@@*@@55Uk&&&&V+@+@@+@k"+/#5!"3265326535"&4627#53"&462'53@+%6%%6%+ k "5*V&&&&k+55k*37#5!"3265326535"&4627''7'77"&462'53@+%6%%6%+ ---.--. "5*V&&&&k...----55,%5#535+jWU+Uk,7535#5ֿjWU+UklV7353'U+UjklV73573U+UjkV75<<U<<V'5<<U<<V%'7''<<+<<V?'77<<+<<&),5%56726/7'4.'26/#!5'#7'#?>. K>)S* 7~&' |"9)S* 53,@ @ v !!(-" *& !!~"**VQQ 38N7674'&'&'&/&'&767&'&'&#"'&'#57'7''762       !$(x1yy58 1.        $ !  % *y1y! 67 1-    &%"764/&37.54>2&#"'5#---6X29br^; :U ^^- '-j;]6:b94[793o:^ 0%"764/&37''5.54>2&"."---U`6X29br^;  /KZO.(F*- '-o38;]6:b94[7+G*.O.+J/k(15A#5!"3265326535"&4627#."#5!"&462'53%#53533##@+%6%%6%+ @ "5+++*++*V%%%%kK 55++++*k(159#5!"3265326535"&4627#."#5!"&462'53%53@+%6%%6%+ @ "5+V%%%%kK 55++k&/3?#5!"3265326535"&4627#&"#5!"&462'53%7'77'@+%6%%6%+ :@ "5*&&&&&&&&V&&&&kK55&%&&%&&& )1<%'./632'33654&+'#'!"&547'7327''".47'#k%"&1Z'W(D''!;!% P$81K&"%1+)**: !%P #18L $0#7##5##353353'3&5467'33537#33535#5+VU++*$+@jkz*@V@@+@@@UU@@@)@@Ukk".ijj@+@@+@ $(#7##5##353353'3&5467'3353735+VU++*$+@jkz*@VU@UU@@@)@@Ukk".ijjU++ $0#7##5##353353'3&5467'33537'77'7+VU++*$+@jkz*@V-,,,,---@UU@@@)@@Ukk".ijj,,,----,0?%#57'7''7623375'#"3!265'"'#7#3737y1yz 58 1/ Rk+ ,  >  z1z  67 1-   Vk + >/$9j71V>O%"";26=46&2#546'";547#"&46;264&#";67#"&46;5%  v  % @6 6z|#22# 2#`   K  K     6>6 2F2 G2@,  %7'5#'+"&546;#35k8*8֕k88kV@ $%'77";&5#534>325'#3#jK +J**#;"vv++UjJ *J "";#l uk#%'77";&'#33625'3535jK +J k@*+UjJ *J VkWl*69%+"&=4635462#54&"32";54?6=4>325'# v  %.%\ /vv:K  K 6  6PQ, 3 u2%+"&=4635462#54&"32";5#3325' v  %.%\ k:K  K 6  6P*Vk 3k0#'#"3!26=4&#535#476767654&"#462+VV   %7$@+     %%  k04%!5!5#'#"3!26=4&#476767654&"#462#5V+V' "0*@++z      "!nV%";5";5";5%#"7326=4&@ +@ @V V@V+  +V  *U  +UV "*#"7326=4&#53!";5";5";5V +@ @V VUU  +V  *U  +V !%-"7326=4&#";53#";53#";5V + @jj VUU*  +*  *+  +V"*273#53#7#"7326=4&#53!";5";5";5ՖV +@ @V V ` jU  +V  *U  +"%!!5!";#35#532654&#5##**}@*@Uk*+**+UUV#%7'5#'+3#535#"&546;#!5kj7+7**k88k*+**+** #77''77'77'7''77'\T-B`-S<6-K,\ -H< ; S-B<`-S<5lI-Z-J;<3#33535'537'323#532#2'35#53\VB*+F *Q&VV +'++ U+F V++ZQ+  ++* $(%7254/&"2?&'''57'7#5   +~+IQ ~ ^^ ^ BFHII'FK++ $0%57254/&"2?&''57'73##5#535   +~+@@+@@$IQ ~ ^^ ^ `FHII'FKo@+@@+@ $0%7254/&"2?&'''57'77''7'   +~+>,----,,,IQ ~ ^^ ^ BFHII'FKz,,,----,'+/26%2?257>/&/&"272?&'#'57'75#53 j       *‡ ks> ' 6^^8u ^ II>ML,F+'+/2>%2?257>/&/&"272?&'#'57'753##5#535 j       *‡ +@@+@@s> ' 6^^8u ^ II>ML,F@+@@+@'+/2>%2?257>/&/&"272?&'#'57'75''7'77 j       *‡ `---,,,,-s> ' 6^^8u ^ II>ML,F,----,,,IN%"";26=46&2#546"3275#"&=462"&=#26=4675%  v  % @"1 6 #2,  ,2%v   K  K    2#6 "2# #2jt^!C2>4.#32".4>7'57>32#"'&'&546;2S(C((DRE((F*11;11M>I-/ #* cTR02 J )DQD((DRE(+1;11;1k/$\-I/ H20RTc &' !%)''''''777777!!!!5!!5!! +*u V *+*+%-#733?3''7'773'3'#'73'73'#\k' >-KK-SG-`'Y@ 8i & k5ooDSb`DBjS7 @* $5k!*3"3265326535'#53#73+3#2"&46!2"&46@+%6%%6%+@@**5+`**+  k%%%%kUV+U 5+ k3=73#53#264&"7#3264&"%#"&5#"&5#5463!%3>235**** -5` 8@+%6%%6%+++V5Uk%%%%V+  #"26563/263462\V$$7%7 ' %7$ U%55%%~%%5! %)";26=>54.;26=#%53#53)D(# #(Ei U +++(D)&@1 1@$)D(k kV++ 16:2+"&=.54>53+"&"35>54.53#53)E(# #(D U @1"U#1+++(D)&@1 1@&)D(k u1!4 33 4!1kV++ $@";26=>54.;26=#%#5'#5462#546?654&")E(# #(Di U J $7%   (D)&@1 1@$)D(k v j %% !     15Q2+"&=.54>53+"&"35>54.#5'#5462#546?654&")D(# #(E U @1#U"1 $7%   (D)&@1 1@&)D(k u1!4 33 4!1 j %% !    +%'53"'#"&546;53324."2>`=M (ER#m  $$ /<+1:11:1e$.kU)E( G ** TO211:11"/5%54&+5##";2>54&%3"#".4>2''53 $$  m#RE(<(E(011:11=M T ** (E)2OT@(E(/'1:11:1e$.k *%4'7'6%7&547#552777'"6 ] %UU7,ZSU+& *1+& ],71* %@UV@ ZJ<SV@ k&"#"&546;32##7#E;#+*++@@*|#;" +V@@k&'5!3#"&546;32##7#+*++@@*| l  +V@@k&"#"&546;32535#E;#+U@@UU|#;" +@@*+k&'5!3#"&546;32535#+U@@UU| l  +@@*+k#%#"&546;32&"7'#3'535#+E;#@VV+@@UU+ +|#;6 + 55 *k&%#"&546;32&'5!37'#3'535#+@VV+@@UU+ +| l "6 + 55 *k%#"&546;32&"'#3+E;#@VV+ +|#;"@++*k%#"&546;32&'5!3'#3+@VV+ +| l @++*k&"#"&546;323353'E;#+++*@|#;" +UU@k#%#"&546;32&"733535##7+E;#V6 + 5* 55+ +|#;3@UU+VV@@k&%#"&546;32&'5!35##7'3353+* 556 + + +| l VV@@k@UUk&'5!3#"&546;323353'+++*@| l  +UU@k'/%#"&546;32&#""&462'3274&#"6+"(&@%8P88P8@W %.&W 5+k%@&(88P88_W&@% Wk!)1%#"&546;32&'5!3"&462'3274&#"6+8P88P8@W %.&W 5+k Y(88P88_W&@% Wk"'"#"&546;32'+"&=46;'#3@#2+.DU+<@2#+..g<@k"(73#"&546;32'5!+"&=46;#5#3U+*U+@@@++.+k@ '!"&547'754&+'#6; +;9 : !+ 3!7%53/332'53 -;}-iU;+(! :JV+)k&"#"&546;327'E;#+jjj|#;" +@@k&'5!3#"&546;327'+jjj| l  +@@k0%#"&546;32'74."'6.'72?>+1:1X(** $W+ 11-(X%**'X k.%#"&546;32'74'5!3'6.'72?>+ X(** $W+ "k*X%**'X 0%#"&5463!2&#"''35&"3267##"&462 *&!J6JF22#+ $ ,&5* `@`V2G2 , &3%#77!54&#!";&'75&"3267##"&4629y:*;*F22#+ $ ,&)L3L* V2G2 , &'673#"&5463!2&#"'"&547'37'=52654&J*1 J2#0000 2`"*`K  $2 00k 00  #2,;%#"&5463!2&#"#5!7'367'552654&"&547'37' *ք*:k00 2$2#00+*C3L/# 00  #2  $2 00!%!"3!2654&2"&46"&462#'7* *V  )!"3!2654&!!"&462'7462"&*** **6  ""2>4.2"&46"&462#'7:b99btb99b~ 9btb99btb9k "/%"&462'264&"7'".4>24."2>k 9btb99btb9*.O\O..O\O.{Si k:b99btb99b:.O..O\O..O)=2"&462"&46'77''/7'?7/''77?' xu# K&&L S;;RJ&&K S;;r8 >--> 88 >--> 8+@vR&KK&R ;<S&KJ&R<;~> ++ >88> ++ >8 264&"27+".=4>;,,>,,1116,>,,>,*111 6+264&"5++"&=46;547#";2>,,>,,? %%%111,>,,>,%%% 111V3UV73'U:>BF/&'&4632>3253546;7532&#"#"&=#535#53=3535#535# "    " +65";#++++******1 '  ( Q* #;E*V*V****V*;?CG/&'&4632>32'5#3#"&=#535#535#535463!235#535#535# "    " 7++UW ++++++******1 '  ( ***V*V**V*V* '72#"'6546"764/&"#32654&  ;& /#2%k  ;% 2#%%%".547>7646767544";F;"   k#;"";# -(   (- +2#'##55#73#'##73'#73#'#'373    K+{5 % 0     -++55 @+AA@@@ "&%/37373#'%7'##7'#'##535#n4       D+3>@@@@Ax : -++5k)AHLSW[%1'.'&'&'&6765'&6767'>5'&'./76%3#'3#73#'3#73# )      $   ) 0y 9 2-%N3 q     \,&kk7!kkk!%'53#"&'#5#74."2>`=M (E)%@@֕/<+1:11:1e$.kU)E(#O211:11*%'53#"&'#5#7&5467'%4."2>`=M (E)%@@֕/<G5Qk@1:11:1e$.kU)E(#O]7R I`+11:11$-CK37332&#"&'&#"327#"&5462"&46+"&=46354622'4&"3U@++@$ #11 %%6%% u  $.% 6@k** &1:1 +k%6%%6%K  K    0  9JS%+"&=46354622'4&"32&'5#'##3#"&546;732#".4>264&" u  $.% 6@ W'Z'WD''g)<#  11&&4&&:K  K    0  m+++**@7( 2 1:1&4&&4&+36%+"&=46354622#"&5463!2'74&"3'7 u  $.% +$/@kOK  K   /+*l7%6  U!8%+"&=4635462#54&"32%7#"&5463!2'" u  $.%\ k+1OK  K 5  5U+*W125%+"&=4635462#54&"32'!3#"&5463!2'' u  $.%\ k+kkOK  K 5  5+*WUU14%+"&=46354622'4&"3'!3#"&5463!2'' u  $.% 6@5+kkOK  K   1  +*l,UU-2;73'&546323546373#3#'"&=#32!5467#3"264&Ub 2#.X"^L44L^"XbVei.$+$2%58"*43+"75  5##)Ac1'.'&'&'&6765'&6767'>5'&'.'7626=326=2!5476326=X )      $   5  +     9 2,%N3 p      [   **  + (32+726=4&+'32+3#546;5#@%%@@ U+V+U+&V&+ V +++V+-/&'&4632>32%"&546;7532'" "    " 65";#1 '  ( V #;E//&'&4632>322'5#'5#3#"&5463 "    " "k55+ 1 '  ( «00V 'E"'&53265!54767624&'&"!235#476?&6735463UF*" +&@&+ )( < (w((@@  l@5 , , 5@ "&57'7#52!54>U2F2B-S.O..O#22#"JJk`'++')6%5"&547'7/2657'2!547676"!54&'&-2F2B+$897 &+ +&  (( ` #22# "JJk 7 @@ ) $-%'&'675763".#526'264&""&4624DRCCRD4x7b''b7U@@@  54&&4&/ 22 /g($$( ;;;   &5%%5 #,5RVZ_acfimp">.15'7#&"#>>=4&">.#">.#";;26=3;%#535#535#53'1/11'1'U.)TkJ98 ,1%<g..r[R + SVVVVVBumkTmkT.!rUkk8$1, <+.!.!R  SmkUmkU &#!"3!2654!!3#533# +ժkVV o@֖* &+";2654+"&=46;2 @  f *  06;2+"&54";2654&#46;2+"&5w @   V *  +"2>4.".4>2'7'#5'7'753:b99btb99b:.O..O\O..O=<<=*=<<=*9btb99btb9.O\O..O\O.#%##%#FF#%##%#F:J72654'&/264&+53264&#!";#";#"3!264&+5#52645"3%6%       V * %% "          Xa%"#5754675462327&'7#'+"5'&'"/&?'7'&?676?4;276'4&"26(E(+;/$/;  +  + *(E( *2OO2%  % $  $  8Abj%<576/&'&/&+"'&37;2?672?6'"&462'#5754675462"54."3#"&5 +  + f+:0$0:1:1m   $  $ %  % *2OO211 ! (%!#!5'3+537#53##5532654&'53*++*U++U ++U+++++***ր'  '  !%)-%!#326535'#53#53#5;#7#53##553353* pU++U+++++U*++U+++++U+++******* %!#!5!3*V+U++* %!#!53+3#3#33* * k +U++*** "(,06:?DH0154&"26=>=6&#5"'53'53+53762#3#'#543&553  .<<.  .<=*.VVVk.Vk G/0G G0/Gw8 J_ J8878##5##5##"3!2654&!5!5!5!3#++***kk++++*+*j#2#!"&546;533535!5!3#++**++*++++**V)335332#5!3#"&546;6=76&+"+++&; <+++@+*& [I  I-#5##5##35#5!354&!5!6=76&+"++*+**&; <++++++U*& [I  I#35335332#!"&546!5!5!5!#5k++**++++*+***k'+%.#"3!2>54&'2"&46"&462'7 X:-M 4";#19 y 8I/'#8!";#1*=k+@72"&46"&462'77.#"3!2>54&!"&46;>3232 y H X:-M 4";#192#22# >( 6 %%8I/'#8!";#1*=2G2%0 5 %6%33?3/3#'3'#'5 +j*65  55+k* `0L @@*29+**+92*@*@@P%.'67327676'1+"67.'654'&'&'#27.54>37'"32>7!$ "  (    " &#(E(kk4X44X41S55  !% (:    A&(E(@UV@4XhY3-N/5##33535#535#5**+UUU++@@+@*=FS%3'7.&'67>&'&#"&'.6732732>54&'2"&46".4>2U 4Bk0K'   "% ) !# L(  " A&)D(#  11;11;&## ) "# L(   "% ) "# #(D)&@0   1;11;1 !#";26=#53%4>3'"3'kV+@<.O.#;"@UV+@</N.+";#UU"74>3'"3'%#";26=#533U.O.#;"@UVVV+@@/N.+";#UUV@ !7"&=46;#5'#373'34.#572kUU=@@VU@";#.O.V<@UU#;"+.N"%3'34.#572'#";26=#533@VU@";#.O.U*@@UU#;"+.N'@&"264/5'&"/&75#'&>3!2J r1 %z+{ + {U 1 $} + } '-"27164/5'&%&#!"26'576&'5'3J \NAex gUf+TU v~NB{& n V Â+ulk462"&3737#/#U$$@Y= + J@$.k @` '/8@KS[&?6?'7'7?>7>''7>'>/7>/7>7>['  +&EBC N \M OK Bh#!| 81 4>3: ( ;yk%N C@}$W Y< K)& ?d ;>:Siu #,048!"3!2654&''6#63&&'?"&46257'3'7*/ /*.BB.U/  /*.B>.*W.BB.&/;/>.   TB.&/;/  $(,04=AEI!"3!2654&!!2>4."7&'757'37#7'2"&46''6#6&'**#;"";F;""; & -- A    & -* **";F;"";F;", .- ! 1 3    ?- ! 1 v'7'7'7'7'7'7BBF&9BOCCG&9BOBBF':BO`ko{ho~mj|ijmj|ij '#5'##5#7'7'3';W)-j@[nC@A%:X(Rn[; 33533'#575/7#'5'[n[@m;+4h{A@*k nRm:倧 4;Q+M` %''7'#'!'='775J7UUa6UUjk@@66`1!-vIM[k+U++@++U !'-7'#!''57''5575''7'75'57@J++T?"7++?k@@7;66`+/+U֪/(P-1#AU+k+U+j +,+@++U9  k )2#3!53"&=463!!'2#54672"&46UUVV#22#$k+++Uk$$   '+/'%'7'7'77/'7%/'[ VA=q;3) *H) )H) U0|#L8) *H) )  3A,SO3 * ? ) > * |#9#SF) * ? )  !+>3;26=#7+"&=.54>327'7'?&'&>76 V "(D)4)*3/ $ #99,$$ O 1A%)D( K.,Iv##"dG7 -(  *4G73+"&57#5.54>267&#";26=&7'7/7.76&676& V kV$18)4)D("  # $ $$,99 3 5 1 (D)%A1  |#"##D(- 7G  .<@73#%7'3#'7;26=#";26=>4.#5.546273#@@,,**,@ * V+#:## V ##:*$2F2$z@@*,,T@ , @#:F<& &24&"26@@T,**@ * V,,5# V ##:F:#+2F22F2*,b@** u,,#<& &'735#%#3+"&=.4>24&"3>;26=#735'7,T@@**k# V ##:F:#+2F2p * V@T,,I,*@#<& &24&"36@@**,,, * V@k# V ##:F:#+2F2 *@ ,,,, **#<& &23654&"@@ * V@**,@T,,5# V ##:F:#2F2* @ ,t**,,#<& &234&"77V * @@T,**@k# V ##:F:#ժ2F2,, *,b@**#<& &23."35,**@@ * V,,5# V ##:F:#Ҥ.:.@I,6@* u,,#<& &2'3.",T@@**@ * V@T,,5# V ##:F:#ɒ '.'I,*@ **,,#<& &2'"3&,l * V@@**@T,,5# V ##:F:# pI,v *@**,,#<& &54.'7'77#534X4G9++9G4X@ @ @3Y4=c6,,6c=4Y3@ @ P+"&.%4."352735>".4>2'3#7'74XhX4G9++9G(E((EPE((E}e@ @4Y33Y4>c5,,5cW(EQD))DQE(+@ @'+#5##5##";26=4&"&5476?7#53U+*+$22$$22y?k****2$#22#$2  *'6:#5##5##";26=4&+"&=46;22654'&/'3#U+*+$22$$22, k****2$#22#$2  *$-2#3#535#"&'467!!'2#54672"&46**#22#$+**+*jk## %6?%&6?7'7>'764&"[y72AB7w 8)AB2))2G z7AB27v,7T)2AB*)G2V)%54&"";26=4&+5462#33535#5& [ 7ƀ*G  L L  **V +#33535#5"";26=4&+5462354&뀀* X EU**' 6 6 ' 2\`i"2654&'54&2#546#"'.'&#"5632327'275546;.#"#546;.#"632'3#3&'&'&'%7$  + M" 0 00! 0 !<" ;!$k <!%)& . wkkk @5%%  *+F+ $ $ +*+< '#3#35#?3#'3+*j** **g\++@**6DMV_m%&'67654&#"&'.#"32767932654'&/&'&547"&462"&4627"&462'676767&g ) ) 2$  $2         $'77!''!77'$ $22$ 2"-,(0h ;  ; l0(,-"7ESw%&/67654&#"&'.#"3276?32654'&/&'6767647&'&"'>4&"#"&5476?6762'"&462"&462k) ) 8(  (8             .   @$&33!''!33&$ (88( ))  ,%%,  )       V  &*.'77''''''7777&547#53>325!5!5!5!:"MK 2@@"M% V +*++!%)/%'''777777!3'367'!5!5!5!'' ֪kM":  h++*++M"@$(,%35''''''7777&547#53>325!5!5!5!@K 2@@++5 V +*++ %)-%35'''777777!37#=!!5!!@ ֪!@++:  h+U*+ ,04%#33535#5/'''''7777&547#53>325!5!5!5!@@+@@ 2@@+@@+@ V +*++ (-15%#33535#5'''777777!37#=!!5!!@@+@@ ֪!@+@@+@z  h+U*+ ,04%'77'7''''''7777&547#53>325!5!5!5!.----...A 2@v---....- V +*++ (-15%'77'7'''777777!37#=!!5!!.----... ֪!v---....-R  h+U*+%!#!5!532654'53*k k+U++' ! ' %!#326535!53353* k*k+U++**** ':%#33535#5#4>32676'&/&#"327&'6767676763k@@*@@*k";# M.277'"&462#!54&+4."#";&2#463&#"6.53,3-.7C ,k**1:1*%%[+ p +-3.,3-B@,,@k11%%  T 3!='77467'5767577'7''57''/7'?77&{;"L!555+2 & * *5%%6* ) % 1++1 % * *5%@"M",>7 # ) & 20$$02 & ) > ) & 20$$%+<E%'57''/7'?77'57'7'7"2654'54&2#5464I$$5+ ) & 2**2 & ) +4$$I5665&5% + ,0$$02 & ) > ) & 20$$0+W>%%  A462"&'7>'&'&/?#327654&#"5'735"&/&#"357 ##3  J-+S  - >#1   2(+&"u#A   4D+`   +@*"dI  #,735#3'##3!35#73#?%7'3#%3#2>5#GV**e-.-C@@@@@11k@@@kUU@Q---***@11  #'6%!!'#5##73#3533#?%7'3#%3#2>5#"&5#*M{*{**e-.-C@@@@@1+&4&+1ժ****U+++@Q---***@1&&1##54&+"#"3353352>4.'3#kV";##;"++";##;VV@";F;"@@@@";F;"#/#54&+"#"3353352>4.'3##"&46;2kV";##;"++";##;VV#22##22@";F;"@@@@";F;"2F22F2*06<B%7'&+.#"2>54&".4>2''53'"7&'7/7 W  4!1#(DRE(;[11;11>M u#43" X'&ZF #1!4 )E((E)1O1;11;1f$,k II  QQQ )6<BHM%7'&+.#"2>54&4632.".4>2''53'"7&'7/7!X  5 1#(EQE(;%. 11:11=M u33 Y&&YG#1 5 )E((E)1O% .1:11:1e$.k II PNQ,!/4:@'7##3'?7'?7'?'7>76&'77'7'&% <#*'3#/-"%/  <  -"i7( hE9G XD-."3'*#; %",  ;  .%h (.iP3Dv T9!'%'&+"622?64%"&462'7  F;" # 5R:q  ";F #oT;q.7="264&#"264&'&+"67'53'2?64%"264&'7 1    #  R:qU    #T;q */?#537#53763254&#!";3#'7627#-m- j@:, ҁ,,(-+.*q++r+ z,#-23#"&5463!2&"5!3'35#375#5375#'&"76437'j*  m@m): ,,,*qr+(+7+ ,^ "#5#5!5%654&"3277'"&462Uq8P88(C ,@++k**j++`(88P8A@-, !754&">&'&'2#546'77%5&"58/ M + ;"L%%48/"58 @@ @"M-754&">&'&'2#54627654'&'%5&"58/ M + F%%48/"58 @@ @ '((' R%'&/'+27272735"'&'35#"&5476?'&#"27272735"'&''&/&54670++/ %"!L!!L!"%  99*  $FtE%"!L!!L!"% 0+3'5H##+++)   ApD++#  &)? 4 Zc1"2>4.".4>27'7.7&"?&''/?2?6?>/64/6&"&462:b99btb99b:.O..O\O..OAH5 $  4 )H5 $  4 ) 9btb99btb9.O\O..O\O.4 )H5 $  4 )H5 $   ##!3#7'7+@U++C<<<jV ===< ##!%373!3#7'7+@UA*Y=ϩ++C<<<jkV ===<{/"2654'54&2#546".547676?&5% + #;"#;U%%  #;"*"))"*";#u0D"2654'54&2#546'2>54'&'&/"&5476767&5% +  ";E;# 2G2U%%  4''";##;"''1!#22#!(%".54673267'#'35#'>4&"37+=G;#*"2#-y;bGK#sE:k&&";#&?. %#2$ P*+@"[ *FO3#3#3#776&'&667#"?.'&/#"/"3427>'>.U@kk+kk [ ! J 1`: 1 Cb(    +*++'  E S)  " wXz[b g   >GPYb3#3#3#%'&/&'76&'&#"#"32?"3427>%'&46;"&4627576/7U@kk+kk1 9T  J  ` 1 b) a?  IPg;1+*++3X '  E H  o[b ^   SGEhWk4=AQV[`%576/4#&/4&+"'"37;265?2?64#"&462'3#7###5!#"&#"#53'3#3# * *f ⪪*++zF@@[O B3$  $%  $+@VVB+k #'!#####3#3#3#3##37#3'#3@+**+kj**V++++kV++++*+++++#+"736767&74&#3'#7"/354&'##1 $& 2#C.:@5u&  &:.252E%=#2 +UUUU+ O!(/3232&#"#"&=46;5465#5#5353#'7VV$1#;"VgVUU@jUU@@+v!";F+U++ + 5@+ 56")03232&'5!3#"&=46;5465#5#5353#'7VV VgVUU@jUU@@+v \+U++ + 5@+ 56!(/3232&#"#"&=46;5465#3533'#5#7VV$1#;"VgV + 5@+ 56+v!";F+U++UU@jUU@@")03232&'5!3#"&=46;5465#3533'#5#7VV VgV + 5@+ 56+v \+U++UU@jUU@@k3@%'53".547#!%67"#"&4626325"&5##24."2>u4D (EQE(&/%%5&# U1:11:1Y(N@(E((E( I %5&&,U@11:11@"/<3&5#4춭325"276767.5"&>3'72>'7#@%%  $|00  .!00  /!@V^@%6$"+00 %?*00 %?*"%25'#";&4>'#5#5353#'7 #;^vvVV@kUU@@lE;#u + 6@* 55#%#"&546;&"5#5#%'#3'535#   kk@VV+@@UUVlWk@6 + 55 *"%25'#";&4>'#'353'##5#7 #;^vv55 *5 + 6lE;#u@@VV+UU@#%#"&546;&"5#5#733535##7   k6 + 5* 55VlWkk@UU+VV@@  %35#5353/3#!"&5465#%5!***uuU++u V++U++ #%35#5353#53#"3!265'33!***kk+jU+++*k #%'77";&547#5367#5!625'#jK +J  vvUjJ *J # ++l u#%'77";&'#33625'3535jK +J k  jUjJ *J VkWl++U++!%3#";&547#5367#5!625'#@  vv@+# ++l u!%#3";&'#33625'3535뫫 k  j@+VkWl++U++)#";&547#5367#5!6255#33535#5+  v @@+@@# ++luu@+@@+@ !%)%#5##3353";&'#33625'3535@+@@+@ k  j@@@+@@VkWl++U++ &)%'77'7";&547#5367#5!625'#.----...  vvv---....-=# ++l u !%)'7''7";&'#33625'3535...----. k  j.----...VkWl++U++#";&4>3255#53+#;" v`E;#luu+#"&546;&"5#5#37#3'  kЫVlWkA+7@Y%'74'76/&#&/4+"'"37;257672?6"&462"37&5475376.# *  * i  {+ { $ %  % %  %` } +)$3 7@X^%'74'76/&#&/4+"'"37;257672?6"&462&#!"&5467576&'5'3 *  * i  fUg+T$ %  % %  %[ n V!72+ul 3#'3#'3#"/&751'&>3!2@++U**V++*{ * +++++ + }  %3#'3#'3#7"/&75'&>3!2'57@++U**V++ Vf * fU*U+++++X V n zlu+kk473#"&546;32&'5!#5462354&"";26=4&U+|\%.$  u @+++5  5 K  K k+3%#"&546;32&'5!37+"&=46354622'4&"3+ u  $.% 6@+A-K  K   1   #54&;47#!"736754&#5+% k Ux@  ! V **!%#54&;47#!"736754&#53#5+% k U땪@  ! V **(#54&;47#!"736754&33##5#53+% k U*@@*@@@  ! V @*@@*!-#54&;47#!"736754&#5333##5#53+% k U+*@@*@@@  ! V @*@@*(#54&;47#!"736754&''7'7+% k UP..-----@  ! V --..---!-#54&;47#!"736754&#53''7'7+% k Um..-----@  ! V --..--- <DHQU]aim%2764'&+5327654'&+5##5##3#";#";3533535#572+5'#5372+5#3#"&46;3#"&46;3#53** *jj****jj* *@ *@ *@ *U@+ +*@+@+*V  +*+U **V  +*+U  **7%54&"";26=4&+5462%";&=#77>3254&#%.$  u &@J6J 1k   K  K   :`@` s3>%54&"";26=4&+5462%";&=#!254&#'36?547%.$  u &@*k;*:k   K  K   %*j sL3L "(-4:?E!"3!2654&#467#4'3'3#3#53346733#46735#4'35#4673VvV+VFqV+Vq*FV+VqV+V*&0-0&-&0*,V&0-&0-*0&*-!"3!2654&3#53!#535#53VVVVV*րVV*V $!"3!2654&462"&'3#533#53V-<--<-Vu--<--i $(!"3!2654&".4>2%3#53!#53V1:11:1VVVV11:11NրVVV%4&#!"3!265!5!5!5!VVVVVV166`66`66`66!"3!2654&#3#3#3#3V66`66`66`66VVVVV"!!!!3533##5#%"35>54&@*@5@55@5@%+%+@55@552#+ ,#2 %)-159=AER_#"&=4&+""&=#&3!2654&#535#53#535#53#535#53#535#53'"&=462#"&=462 ,6, P****V++++U++++U****@   U* %% *+*++*++*++*+U @ @ @ @  ,9_c7#535#53#535#53#535#53#535#53'"&=462#"&=4627#"&=4&+""&=#&3!2654&!5!****V++++U++++U****@    ,6, PV@+*++*++*++*+U @ @ @ @ @* %% *ժ '#53'#53'7'#75#35#Э@B@+%*@+@[Q+++V%#3**+*@V7#;#3++U+++*kV 7#;#3#3++U**V+++**V 7#;#3#3#3**V++U++U**+***V#%#5#5#5#5'7537537537537*++*++*4 @*++*++*+ ۰zm `R) vh [M )+06%#"&46;#"3'46;2654&+";67#"&'7bk  2# 2# 66 w#2|L";e ,  $2  $2 6@5 2$M"@e+04%#"&46;#"3'46;2654&+";67#"&35bk  2# 2# 66 w#2 ,  $2  $2 6@5 2R++(8%#'72+>4&+'#".5467'7;'#"'#"&5467'3k1 f "/2# e 6)!] -+ M $&2# , 1F2 e 5 %;] + ^ $/#2+/;73#".4>;2&'>54&+"7"&46;5#";675##33535w 66 #2 #22N  kI+@@+@` 5@6 2$  2G2@  , `@@+@@++0<%#"&46;#"3'46;2654&+";67#"&''77'bk  2# 2# 66 w#2.----.. ,  $2  $2 6@5 2:---....).4#".5462#"&=326=4&"32#67'7   6 2G2!  , 2$ l GL";e  6  $22$+  $2K;M"@e.2%53"&5462"&=#3276754&"327&'735 u$2 ,  !2G2 6   ,2$   +$22$ 6  K++ (8<'>32'54&"#'#".='726=''#"&='3265#-#2 , XE <$ 6 }  +i$ 2$/ O$2$ q  E!* 6 ~ *i$ M $2' 1.:%53"&5462"&=#3276754&"327&'75##33535 u$2 ,  !2G2 6   +@@+@2$   +$22$ 6  K@@+@@+/;%53'"327&'#"&5462"&=#3276754&''77' $2 6   $2 ,  !2.----..k2$ 6  2$   +$2---....  7;?CG#53+35#37#3323#+"&5#5346;5#"&5463!2#5!735#35#35#k****@**@ V V++k+++* * * *+++V+#&'.#"2>54&'#537#53#53#="4X44XiX3++*+++A 4XhY33X5!=U++(,03##3".4>3274."2>73535#++UV3XiX44X4"=(EQE((EQE(U+++++^=!5X33YhX4 (E((EQE((E+!*2:#53#".4>327&#"7#3"&462'3274&#"6@@4X44X4!>&&@%**8P88P8@W %.&W +'"3YhX4 /> %@Ж`(88P88_W&@% W)2:B3##3".4>32&'7&'.#"327&'7"&462'3274&#"6**U@)D((D)%@*&>!4X44X4 8P88P8@W %.&W +(EQE(";$ >/ 4XhY3 (88P88_W&@% W#)#53#".4>327&#"5#3'7@+4X44X4!>";#**L";e+!3YhX4 =!#;ޖ'M"@e+13##3".4>2254&'7&'.#"327&'7'7**U@)D((DRD(>!4X44X4 L";e+(EQE((E(!= 4XhY3YM"@e!+#53.54>327'#337'7'&"764@^0N-4X4!> **,,O ,+г<6S14X4 F+,, ',6%#537#34>32767&'7&'.#"5.37'7'&"764**+(D)4Q >!4X4-N0$;!,,O ,+(E(@2  4X41S6+*@p+,, "&<D#53#".4>327&#"'#3+"&=46354622'4&"3@  4X44X4!> /** u  $.% 6@+ K 3YhX4 ",FK  K   1  "&E#53#".4>327&#"'#3#5462354&"";26=4&@  4X44X4!> /**\%.$  u + K 3YhX4 ,q*5  5 K  K '+J3##".4>3262&'7&'.#"327&5#3#5462354&"";26=4&*** )D((D)&B  >!4X44X4 +\%.$  u ~(EQE($ 4XhY3 +5  5 K  K '+AI3##".4>3272&'7&'.#"327&5#3+"&=46354622'4&"3*** )D((D),I >!4X44X4 + u  $.% 6@~(EQE(0'" 4XhY3 +K  K   1  !09#53#".4>327&#"15#1'&'&54624&"26@+4#&4X44X4!>  6 *%,=,1+4H3YhX4 $ 6 "8$,,! *9B3##3".4>3232&'7&'.#"327&'71'&'&54624&"26**U@)D((D),I >!4X44X4&# %,=,1+(EQE(/& $ 4XhY3 `"8$,,! #'%254&'7&'.#"327&54>#537#53#5>!4X44X4#;^**+!= 4XhY3!";#U++++/3##3".4>2254&'7&'.#"327&'735**U@)D((DRD(>!4X44X4 7+(EQE((E(!= 4XhY3+++ .%53&'7&'.#"327&546'#537#53#"&46325`[ >!4X44X4 ++**+* , hm+" 4XhY3"44U++u ,o)7#5335##".4>323&'7&'.#"327&57&#"26=35@U**+ )D((D)2O, >!4X44X4 v , *+(EQE(327'#3`((C(";#4X44X4!>**`kkkkK+#;"!3YhX4 =!#'+/3%."327#".4>32735#7#33535#(DRD((D)  4X44X4!>**Uc(k(((E((EQE(3YhX4 =!+kkkk#&#53#".4>327&#"5#37@+4X44X4!>";#**Vj+!3YhX4 =!#;ޖ*@+.#5335#254&'7&'.#"327&'#".4>27@U**>!4X44X4  )D((DRD(*j+j!= 4XhY3(EQE((Eh@#/#53#".4>327&#"5#35##33535@+4X44X4!>";#**+@@+@+!3YhX4 =!#;ޖU@@+@@++73##3".4>2254&'7&'.#"327&'75##33535**U@)D((DRD(>!4X44X4 +@@+@+(EQE((E(!= 4XhY3+@@+@@+!8#53#".4>327&#"7#35&"3267##"&462@@4X44X4!>&&@%**F22#+ $ ,&+'"3YhX4 /> %@Ж`V2G2 , &)@3##3".4>32&'7&'.#"327&'75&"3267##"&462**U@)D((D)%@*&>!4X44X4 F22#+ $ ,&+(EQE(";$ >/ 4XhY3 V2G2 , &#/#53#".4>327&#"5#3''77'@+4X44X4!>";#**.----..+!3YhX4 =!#;ޖ=---....#'+7%#".4>327."32'35#7#3''77' 4X44X4!>(DRD((D) **U.----..3YhX4 =!(E((EQE(+---....#-#53#".4>327&#"5#3/7'@+4X44X4!>";#**>=/55+!3YhX4 =!#;ޖS88(< <+53##3".4>2254&'7&'.#"327&'7/7'**U@)D((DRD(>!4X44X4 >=/55+(EQE((E(!= 4XhY3-88(< <#'%254&'7&'.#"327&54>#537#53#5>!4X44X4#;^**+k!= 4XhY3!";#U+kk'+/3#".4>2254&'7&'.#"327&'#335**)D((DRD(>!4X44X4 7 k(EQE((E(!= 4XhY3+kk!0?#53#".4>327&#"5#37552654&"&547'37'@+ 4X44X4!>  &?&**00 2$2#00+2'3YhX4 #,%@ 00  #2  $2 00'+:I3#".4>32632&'7&'.#"327&'#3552654&"&547'37'**)D((D)2P   >!4X44X4/U00 2$2#00(EQE(=/,# 4XhY3+ 00  #2  $2 00GL"264&33535''77"&'7327>76716767654."#4>2'7&,?++*ܫ   %!      1:1*'ERE' 295,,*VV*L ^*)   $  ,  11)E''E?3:v)!"'"'"''576727277737'6!EE 5GGÀ1  { +  +u4Y 3~!#53534&'."27!!7k+5  *@(  UU +3%'>324&'#'#+"&5#5346;5#5467'7/#32]',h% E@ m V ?0S@- ],(! E * * ([!@* 4;C%'/>32'264&"#'#+"&5#5346;5#5467'7/#"'#32E %]',-  m V ?0@- oE !y],(  * * ([ k@* 2>%"&462%"264&;27'5767632354&#"76767&'"#k$$#\[L  h +* C %) Q###JY ԉ  , OG Q &37;5#"&=#%4.+3232>=#+"3546;5@1**$+1**$+k1+$*1+$*k1+$*1+$*1**$+1**$+,048<#&'7'&"'#3#3#375467535#54'3#535#533#'3#<"./#<-++-<W+/'**,UUUU**V+++".."+ * +( (C * +*+;?CGK#&'7'&"'#3#3#37547#"&=46267535#54'3##5#53#'3#<"./#<-++-<W+$22G2**,UUU**V+++".."+ * +( 2#V#22#V * ++U++@,047#&'7'&"'#3#3#375467535#54'3#535#537<"./#<-++-<W+/'**,UUUUVj+".."+ * +( (C * +*+@;?CF#&'7'&"'#3#3#37547#"&=46267535#54'3##5#57<"./#<-++-<W+$22G2**,UUUj+".."+ * +( 2#V#22#V * ++U++@@,048#&'7'&"'#3#3#375467535#54'3#535#533#<"./#<-++-<W+/'**,UUUU@+".."+ * +( (C * +*+;?CG#&'7'&"'#3#3#37547#"&=46267535#54'3##5#53#<"./#<-++-<W+$22G2**,UUU+".."+ * +( 2#V#22#V * ++U++@ #!#3/3#'##**V+$d*q*s177 !5!!5!3/3#'##V+$d*q**V*s177 7!!!!!!3'3#7#@+@@++@@+U*j***@@j@@k%+V&ff(1J%.+";26=3;26='3#"&4623"&462%/77'7762#"'       ͙    &D5SS  SXu  uQ@@     _5D%SS.S  SL % )-D#"337335'26=4&"&4623"&4627#53/77'7762#"%%*++&&  x  &D5SS  I$2%%,,%%     @a5D%SS.S  I2$ !%'7'7'77'53#'5;227674'&'&""'&'536767U@UU+*6X29btb93X5#*^*#&Q'@,.f., && U*UU*@U+U  (   TT  "+/354623'"&462'"354&3#"354&3#U$U V=VVV=VVkkk ^UUU"+/<@I"'54&"3546234&2#546!2#54653!#54&"#5753'2"&46$kk$7%  % + + ++&4&+kk*+ k%\\%%k k+%+   @''@\\14#!"&5#3546235676765%!5676765#+"&5#73+%$    ++$Q-@@  .k.15A+5>5#+'#"&5##"&5#3546235>5'#3##54&"#5!%+ `` +$+%  %+V*@&4&@-.,/-U U.f9+++&&+73'#!5#35335/5##5# *V+*+@@**jjk@+++->)%#'5##5##5#35335+73'#73#5##53733+@+*+@+** t Z @kkK K*+++-*jj++*kkk++k %467&#"37"264&'"&462+,8.O.u--<--i2F22F2 6'+V-<--<-#22G22k"+4%#54767632&#"33"&4622"&467"264&+ +& %#, (-<--<-$#22F22@    --<--##+2G22G2%)-CL54&+"";'.=##5#53546;54&'75#53'&+"32?654/".62+U#23 i+"D2y**+UUM; M <   U2#3 "++#@#2*++M ;M<  (,0FO54&+"";'#533535#546;2354&+537'&+"32?654/".62+U#2*+k+2NUU+**+M; M <   U2#*V++@@#2k+**M ;M<  !*26:>352?7#3354&#!32"&4654/"&''751U:/ h  `OkU$+  w h0*@@@y)8 :: o :5OjV$*   xw/ 3>*"%"@"%)@"%%&'54&">&'#54627#3733'7 %7$#58.R+ +D)D(s $$58.$48@+++FOOk 37'#73#53#@UkkU몪kk+++ &/832+546!";2654&#2"&462"&46"264&`k  K@V#$22G22## @ @ *+##2F22F2*$$",27#7.#"'>3#32+535#'335##5)K 7787[3tjU+VVVU+++77B4EU+*+*+UUU!+2.#"#5>3#32+535#'335##5 Iu3Y7>/77M3U+VVVU+++VD4B)77+*+*+UUU!!#";26=4&##5#53533'5@55@5+55@55 #7#53533##7+"&=46;2#3!!55@55@*@55@5U+ 4#"326?%#"&4632#7'332'64&"'3'\"(88(#6 0"Q>o+ZU(8  , 9* 8P8-" "0Q- +U8("  , :* 19<"32?'>54'7322654.&#".54>32#3733'7:b99b:2  . 9b#2-(D)2(Q+D(D)s9btb9 /+1 :b9 2H-7)D(++GOO "4%#3733'7/>54'7354&#!";'&54>32&#"+D(D)sf  .+Z/*(D)2(/#2++GOO[ /(2/+@)D(. 2# '#'#53'7'+326=#75#5#*K5k $**$Vjk[4 *$kj& +#337/#533+53265'533#'735#5#\V5K*K t *$ ++*; + UVU+sM$* +&j+k$-8A";35#!354&##";26=4&2"&46"&46;2'"264&@kU+kkG  $$%% +U** $5'%7$`#;A#"6;25."&4627#5!'!2%;35#3;7'"&=kQ %"F T++<H kUXO$BQ% "`**+5 +UX$B !%5335V *@kkKuU !!7#7#3 Vk@j@U@+73#53'.546;7'7>&'77.' _VNW 6# _=<#  ** [P66(5#'+/#"#35#'654'77.>&'77#5353#DWNV_ D_=d# =-- @@5e**  e6B6o--h@@9=A%#5'#5462#546?654&"!";5#5367#536254&#535#53 &5%    +4 V   j %%"    *VVBlV*V 1#327%&47#7327/6;#'7.#\O& =4K@ 7  @(+b3/ LJ, O4= &J V(@ uU@b /3$%0 "2>4.#53'7:b99btb99b&``9btb99btb9*+  "2>4.".4>27'#53:b99btb99b:.O..O\O..O2``9btb99btb9.O\O..O\O.U*!&547#7763254&#!"3'77 J6J!&;"L`@` @"M"%>7''3#"&5463!2&'5'77;*: *;"LU*L3L*@"M "&67'676&51&!7&47>7&"DW :U_ks77@Q:U  W "DT+u X @ ")&67'676&51&!7&47>7?&"&"DW :U_ks77@-Z3Q:U  W "DT+u X @h\6z %#574&+5#35'357>54&@@jjjjs Е*$i+&  K!.:)463!24'&'&"354762#35"#3354&#54&"353*+ : * 2  @ @@+ "@  +@    ++k @k + k@2?6?"&462> "1  v 1" ?6 2?7#"&547'?+"1q)  g 6r1")  6A"(1I!"3265!265354&2"&46'733#67462"&67354'&/##"3#5!## #??id ~5 " O/" D@?    J( / +3265!26535##++3265!26535#5##53##*V*+jj+3265!26535#53##+k#'+/5#535#3#3#3265!26535#5#53#53#53#53##kkkk@++++++@@@@@#"&5!"&5#53!5##+@ @#'+/37#"&5!"&5#53!5#37#37#3%#37#37#3%#37#37#3##+VVkVVVVkVVVVkVV@+++++k+++++k+++++@#3265!26535#5##5##5##5##5!##++*++*++*+@%#"&5!"&5#5##++k"+/59B%54&+'#"3#3265!26535#65#"&462'3##653'3#2"&46+@@+<##< E)nQPx @VV@++66J$-6:B%654&#!"#3265!26535'2"&46#2"&46#2"&467'3!53733%%&##V     *+k&&++@       ++@kk#73265!26535#5##5##5##5##5!##++*++*++*+k++++++++@+)%."#3265!26535#5##5##5##5##5! eve +##++*++*++*+##k++++++++@3265!265355##5##5!#5###*@+@@+UUUUkkUU+"%5!#3265337326535#55'5!#7*#U*U# * ++d++dd++kk+V%."#3265!265355##5##5!#5# eve +##*@+@@+""UUUUkkUUV%5!#3265!26535'#537!!'#53+##kkUU++j*+#%#"&5!"&5#5%#5##"3!26=4&##++++ )2%#"'&'&546;27632'#7'5#373735 bUR01 K  /H-/ %' VJuv Juv KK 10RUb '% /.H/  uvK@ uvK"(.7@%"'#".'7>'&54&+"326=4&%3&&'73'5#7'5#73735)#/-J/ K 10RUb ('*"+Juv Juv ` /H,/ '%bUR01 K  * uvK@ uvK(!";&'#"&46326325#53#33535#5k %%%3"+@@*@@%5&#|+U@*@@*@".";&'#35'35"3467.#33535#5k <U@%% \@@*@@*<[ |U@UU%6%6 +@*@@*@ !";&'#"&46326325#5335k %%%3"%5&#|+U**"&";&'#35'35"3467.35k <U@%% *<[ |U@UU%6%6 k** '533'7#'5#5'7+KK'P2f\I@j<+.HPc\ek'%#"&5463!2!7'3675##33535*ֿ;*: b+@@+@+*֏L3L%Q@@+@@+%#77!254&#!";&5735I :*;*+%L3L*++'%#"&5463!2!7'367'''77'*ք*: .----..+*C3L%)b---....k%#"&546;32&"35+E;#++ +|#; ++k%#"&546;32&'5!3735+++ +| l ++-3!"3!2654&#'#7'373#5##5##546;2#533*     5`@ *++@@++@@`KK`UU`8."6?>&'4?>27'#6?>&'&Z'(){*67z2>:)1 `  u  y@ L:Q fQ u k@ :>*4    ( uk  I3V lU |+  BMp62'&462#'&4'#";#";#";#";26=4&+5357&/76='/&4627'&4627>>:)1y  w  `  !U+9j (:Q fQ u k@ :>*4u (    o  &5 m  O +3V lU |+ 2%"&/"&=462%#5!#>=4&#!";4%< ") +V". +zM M   B)0%+"/76;5462!";5#5!#326=4& v U 1  S VVV++ Z$ `/B++ &";&54>3254/&#!!3#%'7  #;" FL#J%"#'527>763'!47'7327''#"&5467'375"676'2354&+  <:<, !$2 @k   +2#*&=,*: < {- 2$! @ k+ $2+ !(,048<C3#546!2#553#53#5353#53#"&=3'3#53#%#5%3#%#53353U+ _ +U+*++*+k ++++++++++@++*+ ++++++++++++ ++****V++++@UU !(,048<C3#546!2#553#53#5353#53#"&=3'3#53#%#5%3#%#57#5##U+ _ +U+*++*+k ++++++++++@*+++ ++++++++++++ ++****V++++@UU %2>Yr46;2+"&46;2+"&";264˪2+"&";264&#'"&46;264&#""&47>32#264&""&47>32+"&463#"&46;2#"&'&462264&@      k + + V    #22#    $$ k k%%    U   6       $   2F2+   $7%   %7$   :!#"&546;5335332&'5!374&+5462354&"";265++֕ \%.%  v *++++, 6  6 K  >#5##5##";5#5!54&!5!+"&=4635462#54&"32++**@ v  %.%\ +++++ U*  K 6  6  #6?DH2."'>2>54'7".5472'"'.54>"264&53#53*O>D@O .N\O. ":bsb:#;"K#;"  +++  `)\O..O.,+6?:b99b:A?#:#..#:#+   UkV++ %.37"35!354&#352>=#".="264&353#53@++*4XiX3*(ERD(-+++****U+++@4Y33Y4@@)D((D)@@--kV++ #,5<3#7'76"##3#"326733264&"&4623"&462'3'.#++L%&IOO19 ,,$ z %,.   i  jJ%&+,=,,=,j+  /5>G3#7'763'.###3'&;26733264&#5"&4623"&462++L%&m  qM4Um  F $,% u!%%+\G  jJ%&z+ @++  %6%+`$!?   k/7%45#5754&#!";'54&"";26=4&+5462g%.%  v &@<jjI +kk    K  K   #'73#53#7#5##5##"3!2654&!55!****++**k+V++++*+**&-#5##5##"3!2654&!55!'535+37'++**@@@++++@@++++*+**ժ@@++++@@"=!54&+5##5##";5#!553##"/"&=463k*+++**k(-  -$+++++***jj%< ;{  '+%'76237'3#"&546;5335332!5!5, ,,jj++*+ z,*+*++++UU**%)!354&+5##5##";5#!5#37'335k*+++UU*jjVVV*@+++++****@UU !%)%#5537'7#5##5##"3!2654&!55!@@@@@U++***@@++@@++++*+**#*#5##5##";'#5!#32654&5!5##7++@+*+@**@UU++++++*U**뀀UU*.2%'&'&46326327#!"&546;5335332!55!U ( ( k++*ּ$ $)*++++**#*#5##5##";5#5!#32654&5!3353++UU*UU*U@*@++++++*U**kU##5##5##"3!2654&!55!'3#++**ꪪ++++*+**Հ+ #'+%3##5#53537#!"&546;5335332!55!@@*@@*++*֫+@@+@j*++++**48<7"34623467>54&35#5##5##"3!2654&!55!#   % /%++**     &&++++*+** 37%654&"3277'"&462#5!54&+5##5##";&'!58P88(B-*++{ -(88P8B@,,+++++*** %)%'#5#353#5##5##"35!#32654&5!Uk**k+++*Y+*@U@@@@++++@+*U**V%.7%"'35'#3#'#3"26537264&"&462!"&462 -8O>^M*LV*kU#22G2*@K2G22#D#-@)>*++++2F22#+ $#22F2$$$$9=2"&46'.+"&/.#"7'35'73732654&'73$  %**  GB"O*,3  Dk * ## * F 26354&+";&2"&46#"&4632Uk 11:2##L %%@'1:1 j$$,%6%$159%#".4>26354&+";&2"&46#"&46323#'3# 11:2##L %%x++U++1:1 j$$,%6%+$15%#".4>26354&+";&2"&46#"&4632#3 11:2##L %%1:1 j$$,%6%+!"3!2654&'53*'56k* !2#!"&546!#7k*<k56**  7462"&?'%7'?$$`a 6@* ="@}j#O> ]>@U= _QVC'K 353#35U**U+*k++353##33535#5U**@@+@@+*+@+@@+@!"3!2654&!!53#53**++**ꪪ#'!"3!2654&3#3#3#3#535#535#53*++++++ր*U++*++++*++ #'+73#'#335#535##3%#!"&5463!2!!'#3뀀+++++++*+*++++U*++V**U+"+4=OU"2727272?6/.#"&/#3#"'&?3"&=73#"&5&'"'#"';&54'77l5878 *   k*`*   8k;"L^"#^*^ gg ]d  ``  k j#&f@"L#+4=FL";&'#532727272?6/.#"&/#3#"'&?3"&=73#"&5'77l 878 *   k*`*  V;"L^"#^*^ gg ]d  ``  @"L)2;DI[f63!2&6/3271&'"'"'"/&?6#32?#2657#326''3'27#"&=327277'7676R (  )  # 785P*  b* T* w+, [8,w ^ ^g # "^] g`  dd  ,,[(j+ 2;DMR\";57#532732727717#"&/7>6/.#3#"'&?3"&=73#"&5#57'62'l5 $  )  *   k*`*  ,,+  ,^#( # g^ ^+g ]d  ``  ,,N +#,5>J\63!2"'"'"'"/&?6'26%#32?#2657#326'33##5#53'#"&=3272R (8785d) *  b* T*  *@@*@@k 8w ^#"^v^g k] g`  dd  `@*@@*?  &#j$,5>GS63!2"'"'"'+3#"&='&?6'26%#32?#2657#326'##33535#R (878 d) *  b* T* J*@@*@@w ^#"^v^g k] g`  dd  `@*@@*#,5>BT63!2"'"'"'"/&?6'26%#32?#2657#326'#5'#"&=3272R (8785d) *  b* T* + 8w ^#"^v^g k] g`  dd  **?  &#j$,5>GK63!2"'"'"'+3#"&='&?6'26%#32?#2657#326'35R (878 d) *  b* T*  w ^#"^v^g k] g`  dd  **#,5>J\63!2"'"'"'"/&?6'26%#32?#2657#326'''7'7'#"&=3272R (8785d) *  b* T* b..----- 8w ^#"^v^g k] g`  dd  i--..---6  &#j$,5>GS63!2"'"'"'+3#"&='&?6'26%#32?#2657#326'''77'R (878 d) *  b* T* ------.w ^#"^v^g k] g`  dd  ----..-+"2727272?6/.#l5878+^##^+"+4="2727272?6/.#"&/#3#"'&?3"&=73#"&5l5878 *   k*`*  +^##^*^ gg ]d  `` %35%&#"26=35+#22G2U++ 2G22#U !"7!2654&'77U+J,nUK,n !"7!2654&!!'77U+VJ,nUK,n"&*!6=76&+"'354&#!";'53##535#53k&; ;2&/#3#3'264&"7"3277'654&2"&46\  - +"%dQ(88(BB8(- +  z ?@ kK 18P8BB(8* ,-+"=.4673'7##* ##@J, 2>2  1=2 OK-)/#5;26=>54&#5'.54735'7+-=" U #=+J,iiG/#; ;#/G ( NN (AK-8AV%64'76/.&/&+"'&?;2?67?6'"&462+"=.4673 (  ( ^ ##* ##@A !  ! !  !j 2>2  1=2 O)aj#5;26=>54&#5'.54735<576/&&/&+"'&?;2?67?6'"&462+-=" U #=+'  '^ iiG/#; ;#/G ( NN ( !  ! !  !!3@F654&'#5;26=2>4.#5'.54735".4>2''53U%!=-+.=# U DQE((E+11;11>M /GiiG/#; 3!'(DRD(A ( NN ( 1:11:1e%/j*3%'53#5!#335&54>2%2>4."264&"E 41+++(ERD(1;11;1k$$7%%'O<K@@@'&)D((D)7711;11$7%%7$ 3%64&+4.#";#";2654&#"&46;546232%</!4 "02#C ,,(8/1  5,>, 5(0$2E1 +>,8($5*,,, "2>4.#562:b99btb99b%*9btb99btb9~7;?CGU7546;2#'&""/&";#"&5##3353;35#35#35#5#%#"&46325I+-@+**+32$d+++++++++,  %:%8' !$2 '@*++**+u ,o!*.69";#326=3;7#532654&#2"&463#%#3733'7U@@+*:U#UU&*E)D)t+*++*+?## @**FOO'5=@#"73546354&##''7&'367#53533#";4&'##73'#@k2# !56   wKKի@/L H HX4@$2U@'!55 @00E  #'#5%#3%#3#3'!!%#3#3%#3#3%#3k****V@@V*@@@@j@@@****@@@++++++@@@:%35#654'&#"167632#3#3327671'#"'&54735#7I$"+$ xI$"+$ x+(   ++(   +U"+4=%"''7''&&#"265'7264&"&462!"&462%&462"" E09+? (88P8A@,>,,&&5%%$ 8$.$ 8P88(5,,>,v&5%%5&$$ )%"264&#"&546;5335332&#"#5!3--<--++k-<--<-k*++++)-%"264&45#5!23254&+5##5##";&!!--<--*++*k-<--<-Kk++++D*$.#"!355#535#535#53'>2@'=#4&@+*kkkkkk 2=1 "9 &4&+++*++@$$'.#"3#3#3#3>235335''<$4 x@@@@@@ 2=1 1kjk"9 O++*++*@$$Vꕕk $-!#535#535#537.#"33>2%!5#5##57@@@@@@U'=#4 Z+ 2=1 Ѡ@+@j@uu+*++*E"9 <@$$kKK")>'.'673677&'5&'.I#R;:[.4S[@2%/)*M)@2@.&*7T.:S+Ch:1R4) "1A/%~@2&.s)*k )%#3733'7%3#3#3##537###5!##+D(D)s櫫 +*+ ++GOO++ @+VVUk!7264&"5&#"";2654&#$22G22y)-)D(@2G22G2q'+Vk%59"264&"&4624>32&'&#"3##";2654&#3#22G22$#(D)-)Օk2G22G2##'1  +Vk!%7264&"5&#"#";2654&#3$22G22y)-)D(Օg++2G22G2q'+Vk%59="264&"&462"35#4676325&%#";2654&#3#3#22G22$#)D(&UUk2G22G2##V'++  / !%)-15A!&547#53675!3533#3##535#535#535#5;#3#5333##5#535 +Հ+*++++********++++++@@+@@.'+  KKU*++*++*++**++U++@+@@+@ "&*.26:F%#5335##5##!62!!&35#5#36'#3#335##335+;#33535#5+++** ++ **** ++++++++++++*++@@+@@+++KK*A*+*++**++@+@@+@ !%)-159!&547#53675!3533#3##535#535#535#5;#3#53#5 +Հ+*++++********++++++.'+  KKU*++*++*++**++U++@++ "&*.26:>%#5335##5##!62!!&35#5#36'#3#335##335+335+++** ++ **** ++++++++++++*+++++KK*A*+*++**++@++ !%)-15A!&547#53675!3533#3##535#535#535#5;#3#53''7'77 +Հ+*++++********++++++---,,,,-.'+  KKU*++*++*++**++U++),----,,, "&*.26:F%#5335##5##!62!!&35#5#36'#3#335##335+3'77'7+++** ++ **** ++++++++++++*++-,,,,---+++KK*A*+*++**++ ,,,----,,5>B72"&4632"&46';!"&54?'#5337+2"&46"&462#'7##K+G[S$S / z @####D+ 4* ""!"2676. !3 Fm  >   $'#'7'5#"'&'&'&#"6767 *T,    ' $  -S[ɫ      :3576767%57'632327671'3276?5"'.'&"\T* %4#'   (  -     Sӕ  7$ q"    -K.:2632327671"'&'&'&#"#46#33535#5 ++   (  -    *  @@+@@      k @+@@+@.O[2632327671"'&'&'&#"#467676323276?5"'.'&#"#33535#5 ++   (  -    *      @@+@@      k ZY I@+@@+@.22632327671"'&'&'&#"#4635 ++   (  -    * ʫ      k ++.OS2632327671"'&'&'&#"#467676323276?5"'.'&#"35 ++   (  -    *            k ZY I++.:2632327671"'&'&'&#"#46'77'7 ++   (  -    * L-,,,,---      k ,,,----,.O[2632327671"'&'&'&#"#467676323276?5"'.'&#"'77'7 ++   (  -    *       -,,,,---      k ZY I,,,----,+#!";;2?326=4&5!##'%!!  n&++/*+k kkk**@*1 FQ +d  *  * * . &D Vj &Material Design IconsRegularMaterial Design IconsMaterial Design IconsVersion 1.0MaterialDesignIconsGenerated by svg2ttf from Fontello project.http://fontello.comMaterial Design IconsRegularMaterial Design IconsMaterial Design IconsVersion 1.0MaterialDesignIconsGenerated by svg2ttf from Fontello project.http://fontello.com      !"#$%&'()*+,-./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{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ vector-squareaccess-point-network access-pointaccount account-alert account-boxaccount-box-outline account-checkaccount-circleaccount-convert account-keytooltip-account account-minusaccount-multipleaccount-multiple-outlineaccount-multiple-plusaccount-network account-offaccount-outline account-plusaccount-removeaccount-search account-starorbitaccount-switchadjustair-conditioner airballoonairplane airplane-off cast-variantalarm alarm-checkalarm-multiple alarm-off alarm-plusalbumalert alert-box alert-circle alert-octagon alert-outlinealpha alphabetical greenhouserollerblade-off ambulance amplifieranchorandroidweb-plusandroid-studioapple apple-finder apple-ios apple-icloud apple-safari font-awesomeappsarchivearrange-bring-forwardarrange-bring-to-frontarrange-send-backwardarrange-send-to-back arrow-allarrow-bottom-leftarrow-bottom-rightarrow-collapse-all arrow-downarrow-down-thickarrow-down-bold-circlearrow-down-bold-circle-outlinearrow-down-bold-hexagon-outlinearrow-down-drop-circlearrow-down-drop-circle-outlinearrow-expand-all arrow-leftarrow-left-thickarrow-left-bold-circlearrow-left-bold-circle-outlinearrow-left-bold-hexagon-outlinearrow-left-drop-circlearrow-left-drop-circle-outline arrow-rightarrow-right-thickarrow-right-bold-circlearrow-right-bold-circle-outline arrow-right-bold-hexagon-outlinearrow-right-drop-circlearrow-right-drop-circle-outlinearrow-top-leftarrow-top-rightarrow-uparrow-up-thickarrow-up-bold-circlearrow-up-bold-circle-outlinearrow-up-bold-hexagon-outlinearrow-up-drop-circlearrow-up-drop-circle-outline assistantat attachment book-musicauto-fix auto-upload autorenewav-timerbaby backburger backspacebackup-restorebankbarcode barcode-scanbarleybarrel incognito-offbasket basket-fill basket-unfillbattery battery-10 battery-20 battery-30 battery-40 battery-50 battery-60 battery-70 battery-80 battery-90 battery-alertbattery-chargingbattery-charging-100battery-charging-20battery-charging-30battery-charging-40battery-charging-60battery-charging-80battery-charging-90battery-minus-variantbattery-negativebattery-outlinebattery-plus-variantbattery-positivebattery-unknownbeachflask flask-emptyflask-empty-outline flask-outlinebunk-bed-outlinebeer bed-outlinebellbell-off bell-outline bell-plus bell-ringbell-ring-outline bell-sleepbeta book-crossbikemicrosoft-bing binocularsbio biohazard bitbucket black-mesashield-refreshblender-softwareblinds block-helperapplication-edit bluetoothbluetooth-audiobluetooth-connect bluetooth-offbluetooth-settingsbluetooth-transferblur blur-linearblur-off blur-radialbonebook book-multiple pause-box book-openbook-open-blank-variant book-variantbookmarkbookmark-checkbookmark-musicbookmark-outlinebookmark-plus-outline bookmark-plusbookmark-remove border-all border-bottom border-colorborder-horizontal border-inside border-left border-noneborder-outside border-right border-style border-topborder-verticalbowlingbox box-cutter briefcasebriefcase-checkbriefcase-downloadbriefcase-upload brightness-1 brightness-2 brightness-3 brightness-4 brightness-5 brightness-6 brightness-7brightness-autobroombrushbugbulletin-boardbullhornbuscachedcake cake-layered cake-variant calculatorcalendarcalendar-blankcalendar-checkcalendar-clockcalendar-multiplecalendar-multiple-check calendar-pluscalendar-remove calendar-textcalendar-today call-made call-merge call-missed call-received call-split camcorder video-box video-box-off camcorder-offcameracamera-enhance camera-frontcamera-front-variant camera-iriscamera-party-mode camera-rearcamera-rear-variant camera-switch camera-timer candycanecar car-battery car-connectedcar-washcarrotcart cart-outline cart-pluscase-sensitive-altcashcash-100 cash-multiplecheckbox-blank-badge-outlinecastcast-connectedcastlecat cellphone tray-arrow-upcellphone-basiccellphone-docktray-arrow-downcellphone-linkcellphone-link-offcellphone-settings certificate chair-school chart-arcchart-areaspline chart-barchart-histogram chart-line chart-piecheck check-allcheckbox-blankcheckbox-blank-circlecheckbox-blank-circle-outlinecheckbox-blank-outlinecheckbox-markedcheckbox-marked-circlecheckbox-marked-circle-outlinecheckbox-marked-outlinecheckbox-multiple-blankcheckbox-multiple-blank-outlinecheckbox-multiple-marked checkbox-multiple-marked-outline checkerboardchemical-weaponchevron-double-downchevron-double-leftchevron-double-rightchevron-double-up chevron-down chevron-left chevron-right chevron-upchurchroller-skate-offcity clipboardclipboard-accountclipboard-alertclipboard-arrow-downclipboard-arrow-leftclipboard-outlineclipboard-textclipboard-checkclippy clock-outline clock-end clock-fastclock-in clock-out clock-startclose close-boxclose-box-outline close-circleclose-circle-outline close-network close-octagonclose-octagon-outlineclosed-captioncloud cloud-check cloud-circlecloud-download cloud-outlinecloud-off-outline cloud-printcloud-print-outline cloud-upload code-array code-braces code-brackets code-equalcode-greater-thancode-greater-than-or-equalcode-less-thancode-less-than-or-equalcode-not-equalcode-not-equal-variantcode-parentheses code-string code-tagscodepencoffee coffee-to-gobell-badge-outline color-helpercommentcomment-accountcomment-account-outline comment-alertcomment-alert-outline comment-checkcomment-check-outlinecomment-multiple-outlinecomment-outlinecomment-plus-outlinecomment-processingcomment-processing-outlinecomment-question-outlinecomment-remove-outline comment-textcomment-text-outlinecomparecompasscompass-outlineconsolecard-account-mail content-copy content-cutcontent-duplicate content-paste content-savecontent-save-allcontrast contrast-boxcontrast-circlecookiecountercowcredit-card-outlinecredit-card-multiple-outlinecredit-card-scan-outlinecrop crop-freecrop-landscape crop-portrait crop-square crosshairscrosshairs-gpscrowncube cube-outline cube-send cube-unfoldedcup cup-water currency-btc currency-eur currency-gbp currency-inr currency-ngn currency-rub currency-trydelete-variantdeletedecimal-increasedecimal-decreasedebug-step-overdebug-step-outdebug-step-into database-plusdatabase-minusdatabasecursor-pointer cursor-movecursor-default-outlinecursor-default currency-usddelta deskphone vector-point desktop-towerdetails deviantart diamond-stone ab-testingdice-1dice-2dice-3dice-4dice-5dice-6 directions disc-alertdisqusvideo-plus-outlinedivision division-boxdnsdomaindots-horizontal dots-verticaldownloaddragdrag-horizontal drag-verticaldrawing drawing-boxshield-refresh-outlinecalendar-refreshdronedropboxdrupalduckdumbbellearth earth-offmicrosoft-edgeejectelevation-declineelevation-riseelevatoremail email-open email-outline email-lockemoticon-outlineemoticon-cool-outlineemoticon-devil-outlineemoticon-happy-outlineemoticon-neutral-outline emoticon-poopemoticon-sad-outlineemoticon-tongueengineengine-outlineequal equal-boxeraser escalatorethernetethernet-cableethernet-cable-offcalendar-refresh-outlineevernote exclamation exit-to-appexporteyeeye-off eyedroppereyedropper-variantfacebookorder-alphabetical-ascendingfacebook-messengerfactoryfan fast-forwardfaxferryfile file-chart file-check file-cloudfile-delimited file-documenttext-box file-excelfile-excel-box file-export file-find file-image file-import file-lock file-multiple file-music file-outline file-jpg-box file-pdf-boxfile-powerpointfile-powerpoint-boxfile-presentation-box file-send file-video file-word file-word-box file-codefilm filmstrip filmstrip-offfilterfilter-outline filter-removefilter-remove-outlinefilter-variant fingerprintfirefirefoxfishflagflag-checkered flag-outlineflag-variant-outline flag-triangle flag-variantflash flash-auto flash-off flashlightflashlight-off star-half flip-to-back flip-to-frontfloppyflowerfolderfolder-accountfolder-downloadfolder-google-drive folder-image folder-lockfolder-lock-open folder-movefolder-multiplefolder-multiple-imagefolder-multiple-outlinefolder-outline folder-plus folder-remove folder-uploadfood food-apple food-variantfootballfootball-australianfootball-helmetformat-align-centerformat-align-justifyformat-align-leftformat-align-right format-bold format-clearformat-color-fillformat-float-centerformat-float-leftformat-float-noneformat-float-rightformat-header-1format-header-2format-header-3format-header-4format-header-5format-header-6format-header-decreaseformat-header-equalformat-header-increaseformat-header-poundformat-indent-decreaseformat-indent-increase format-italicformat-line-spacingformat-list-bulletedformat-list-bulleted-typeformat-list-numbered format-paintformat-paragraphformat-quote-close format-sizeformat-strikethroughformat-strikethrough-variantformat-subscriptformat-superscript format-textformat-pilcrow-arrow-rightformat-pilcrow-arrow-leftformat-underlineformat-wrap-inlineformat-wrap-squareformat-wrap-tightformat-wrap-top-bottomforumforwardbowlfridge-outlinefridge fridge-top fridge-bottom fullscreenfullscreen-exitfunctiongamepadgamepad-variant gas-stationgategaugegavel gender-female gender-malegender-male-femalegender-transgenderghost gift-outlinegitcard-account-details-stargithub glass-flute glass-mug glass-stange glass-tulip bowl-outlineglassesgmailgnomegooglegoogle-cardboard google-chromegoogle-circlesgoogle-circles-communitiesgoogle-circles-extendedgoogle-circles-group controllercontroller-off google-drive google-earth google-glass google-nearbyvideo-minus-outlinemicrosoft-teams google-play google-plusorder-bool-ascendinggoogle-translategoogle-classroomgridgrid-offgroupguitar-electric guitar-pickguitar-pick-outlinehand-pointing-righthangergoogle-hangoutsharddisk headphonesheadphones-boxheadphones-settingsheadset headset-dock headset-offheart heart-boxheart-box-outline heart-broken heart-outlinehelp help-circlehexagonhexagon-outlinehistoryhololenshome home-modern home-varianthops hospital-boxhospital-buildinghospital-markerbedbowl-mix-outlinepothuman human-childhuman-male-femaleimage image-album image-areaimage-area-close image-brokenimage-broken-variantimage-multiple-outlineimage-filter-black-whiteimage-filter-center-focusimage-filter-center-focus-weakimage-filter-dramaimage-filter-framesimage-filter-hdrimage-filter-noneimage-filter-tilt-shiftimage-filter-vintageimage-multipleimportinbox-arrow-down informationinformation-outline instagram pot-outlinemicrosoft-internet-explorer invert-colorsjeepneyjirajsfiddlekegkey key-change key-minuskey-plus key-remove key-variantkeyboardkeyboard-backspace keyboard-capskeyboard-close keyboard-offkeyboard-return keyboard-tabkeyboard-variantkodilabel label-outlinelan lan-connectlan-disconnect lan-pendinglanguage-csharp language-css3language-html5language-javascript language-phplanguage-pythoncontactless-payment-circlelaptopmagazine-riflemagazine-pistolkeyboard-tab-reversepot-steam-outlinelaunchlayers layers-offleafled-offled-on led-outlineled-variant-offled-variant-onled-variant-outlinelibrary filmstrip-boxmusic-box-multipleplus-box-multiple lightbulblightbulb-outlinelinklink-off link-variantlink-variant-offlinkedinsort-reverse-variantlinuxlock lock-openlock-open-outline lock-outlineloginlogoutlooksloupelumxmagnet magnet-onmagnify magnify-minus magnify-plusplus-circle-multiplemap map-markermap-marker-circlemap-marker-multiplemap-marker-offmap-marker-radiusmarginlanguage-markdown marker-checkglass-cocktail material-ui math-compass stackpathminus-circle-multiplememorymenu menu-down menu-left menu-rightmenu-upmessage message-alert message-draw message-imagemessage-outlinemessage-processing message-replymessage-reply-text message-textmessage-text-outline message-video microphonemicrophone-offmicrophone-outlinemicrophone-settingsmicrophone-variantmicrophone-variant-off microsoft minecraftminus minus-box minus-circleminus-circle-outline minus-networkmonitormonitor-multiplemore motorbikemouse mouse-off mouse-variantmouse-variant-offmoviemultiplicationmultiplication-box music-boxmusic-box-outline music-circle music-notemusic-note-halfmusic-note-offmusic-note-quartermusic-note-sixteenthmusic-note-wholenature nature-people navigationneedlesmoke-detector thermostatnew-box newspapernfcnfc-tap nfc-variantnodejsnote note-outline note-plusnote-plus-outline note-textnotification-clear-allnumeric numeric-0-boxnumeric-0-box-multiple-outlinenumeric-0-box-outline numeric-1-boxnumeric-1-box-multiple-outlinenumeric-1-box-outline numeric-2-boxnumeric-2-box-multiple-outlinenumeric-2-box-outline numeric-3-boxnumeric-3-box-multiple-outlinenumeric-3-box-outline numeric-4-boxnumeric-4-box-outlinenumeric-5-box-multiple-outlinenumeric-5-box-outline numeric-5-boxnumeric-4-box-multiple-outline numeric-6-boxnumeric-6-box-multiple-outlinenumeric-6-box-outline numeric-7-boxnumeric-7-box-multiple-outlinenumeric-7-box-outline numeric-8-boxnumeric-8-box-multiple-outlinenumeric-8-box-outline numeric-9-boxnumeric-9-box-multiple-outlinenumeric-9-box-outlinenumeric-9-plus-box#numeric-9-plus-box-multiple-outlinenumeric-9-plus-box-outline nutritionoctagonoctagon-outline odnoklassnikimicrosoft-officeoilcoolant-temperatureomegamicrosoft-onedrive open-in-app open-in-newopenidoperaornamentornament-variantinbox-arrow-upowlpackage package-down package-uppackage-variantpackage-variant-closedpalettepalette-advancedpandapandorapanoramapanorama-fisheyepanorama-horizontal-outlinepanorama-vertical-outlinepanorama-wide-angle-outlinepaper-cut-vertical paperclipparkingpause pause-circlepause-circle-outline pause-octagonpause-octagon-outlinepawpenpencil pencil-boxpencil-box-outline pencil-lock pencil-offpercentmortar-pestle-plusphonephone-bluetooth phone-forward phone-hangup phone-in-talkphone-incoming phone-lock phone-log phone-missedphone-outgoing phone-pausedphone-settings phone-voippipi-boxpigpillpinpin-off pine-tree pine-tree-box pinterest"contactless-payment-circle-outlinepizzaplayplay-box-outline play-circleplay-circle-outline play-pauseplay-protected-contentplaylist-minus playlist-play playlist-plusplaylist-removesony-playstationplusplus-box plus-circleplus-circle-multiple-outlineplus-circle-outline plus-networksleddingwall-sconce-flat-variantpokeballpolaroidpoll account-eyepolymerpopcornpound pound-boxpowerpower-settings power-socket presentationpresentation-playprinter printer-3d printer-alertprofessional-hexagon projectorprojector-screenpulsepuzzleqrcode qrcode-scan quadcopter quality-highbook-multiple-outlineradarradiatorradioradio-handheld radio-tower radioactiveradiobox-marked raspberry-piray-end ray-end-arrow ray-startray-start-arrow ray-start-end ray-vertexlastpassread youtube-tv receipt-textrecord record-recrecycleredditredo redo-variantrefreshregexrelative-scalereloadremote rename-boxrepeat repeat-off repeat-oncereplayreply reply-all reproductionresize-bottom-right responsiverewindribbonroad road-variantrocketrotate-3d-variant rotate-leftrotate-left-variant rotate-rightrotate-right-variantrouter-wirelessroutesrssrss-boxrulerrun-fastsale satellitesatellite-variantscalescale-bathroomschoolscreen-rotation screwdriverscript-outlinescreen-rotation-locksdseal seat-flatseat-flat-angledseat-individual-suiteseat-legroom-extraseat-legroom-normalseat-legroom-reducedseat-recline-extraseat-recline-normalsecuritysecurity-networkselect select-allselect-inverse select-off selectionsendserver server-minusserver-networkserver-network-off server-off server-plus server-removeserver-securitycogcog-box shape-plusshare share-variantshieldshield-outlineshoppingshopping-musicshreddershuffleshuffle-disabledshuffle-variantsigma sign-cautionsignal silverwaresilverware-forksilverware-spoonsilverware-variantsim sim-alertsim-offsitemap skip-backward skip-forward skip-next skip-previousskypeskype-businessslacksleep sleep-offsmoking smoking-offsnapchatsnowmansoccersofasortsort-alphabetical-variantsort-ascendingsort-descendingsort-numeric-variant sort-variant soundcloud source-fork source-pullspeaker speaker-off speedometer spellcheckspotify spotlightspotlight-beambook-remove-multiple-outlineaccount-switch-outlinestack-overflowstairsstar star-circlestar-half-fullstar-off star-outlinesteamsteering step-backwardstep-backward-2 step-forwardstep-forward-2 stethoscopestockingstopstore store-24-hourstovesubway-variant sunglassesswap-horizontal swap-verticalswimswitchswordsync sync-alertsync-offtabtab-unselectedtabletable-column-plus-aftertable-column-plus-beforetable-column-removetable-column-width table-edit table-largetable-row-heighttable-row-plus-aftertable-row-plus-beforetable-row-removetabletreceipt-outlinetangramtag tag-faces tag-multiple tag-outlinetag-text-outlinetargettaxi teamviewer skateboarding televisiontelevision-guidetemperature-celsiustemperature-fahrenheittemperature-kelvin tennis-balltentmicrophone-messagemicrophone-message-offtexturetheatertheme-light-dark thermometerthermometer-lines thumb-downthumb-down-outlinethumb-upthumb-up-outlinethumbs-up-downticketticket-accountticket-confirmationtie timelapse timer-outlinetimer-10timer-3timer-off-outline timer-sand timetable toggle-switchtoggle-switch-offtooltip tooltip-edit tooltip-imagetooltip-outlinetooltip-plus-outline tooltip-text tooth-outline cloud-refresh traffic-lighttraintram transcribetranscribe-closetransfer-righttreetrello trending-downtrending-neutral trending-uptriangletriangle-outlinetrophy trophy-awardtrophy-outlinetrophy-varianttrophy-variant-outlinetrucktruck-deliverytshirt-crew-outlinetshirt-v-outlinefile-refresh-outlinefolder-refresh-outlinetwitchtwitterorder-numeric-ascendingorder-numeric-descendingrepeat-variantubuntuumbracoumbrellaumbrella-outlineundo undo-variantunfold-less-horizontalunfold-more-horizontalungroup web-removeuploadusbvector-arrange-abovevector-arrange-below vector-circlevector-circle-variantvector-combine vector-curvevector-differencevector-difference-abvector-difference-bavector-intersection vector-linevector-point-selectvector-polygonvector-polylinevector-selectionvector-triangle vector-union shield-checkvibratevideo video-off video-switch view-agenda view-array view-carousel view-columnview-dashboardview-day view-grid view-headline view-list view-module view-quilt view-stream view-weekvimeobuffet hands-praycredit-card-wireless-off credit-card-wireless-off-outlinevlc voicemail volume-high volume-low volume-medium volume-offvpnwalkwalletwallet-giftcardwallet-membership wallet-travelwanwatch watch-export watch-importwater water-off water-percent water-pumpweather-cloudy weather-fog weather-hailweather-lightning weather-nightweather-partly-cloudyweather-pouring weather-rainy weather-snowy weather-sunnyweather-sunsetweather-sunset-downweather-sunset-up weather-windyweather-windy-variantwebwebcamweightweight-kilogramwhatsappwheelchair-accessibilitywhite-balance-autowhite-balance-incandescentwhite-balance-iridescentwhite-balance-sunnywifiwifi-off nintendo-wii wikipedia window-close window-closedwindow-maximizewindow-minimize window-openwindow-restoremicrosoft-windows wordpressaccount-hard-hatwrapwrenchcontacts-outlinemicrosoft-xboxmicrosoft-xbox-controllermicrosoft-xbox-controller-offtable-furnituresort-alphabetical-ascendingfirewiresort-alphabetical-descendingxmlyeastdatabase-refreshyoutubezip-boxsurround-soundvector-rectangleplaylist-checkformat-line-styleformat-line-weight translate account-voiceopacitynear-meclock-alert-outlinehuman-pregnantsticker-circle-outline scale-balancecard-account-detailsaccount-multiple-minusairplane-landingairplane-takeoffalert-circle-outline altimeter animation book-minusbook-open-page-variant book-plusboomboxbullseyecomment-remove camera-off check-circlecheck-circle-outlinecandle chart-bubblecredit-card-off-outlinecup-off copyright cursor-textdelete-forever delete-sweepdice-d20-outlinedice-d4-outlinedice-d8-outlinedice-d6-outlinediscemail-open-outline email-variant ev-stationfood-fork-drinkfood-off format-title google-maps heart-pulsehighwayhome-map-marker incognitokettle lock-pluslogout-variantmusic-note-bluetoothmusic-note-bluetooth-off page-first page-last phone-classic priority-high priority-lowqqchatpoolrounded-cornerrowing saxophonesignal-variantstack-exchangesubdirectory-arrow-leftsubdirectory-arrow-right form-textboxviolinmicrosoft-visual-studiowechat watermark file-hiddenapplication-outlinearrow-collapse arrow-expandbowl-mixbridgeapplication-edit-outlinechipcontent-save-settingsdialpad book-alphabetformat-horizontal-align-centerformat-horizontal-align-leftformat-horizontal-align-rightformat-vertical-align-bottomformat-vertical-align-centerformat-vertical-align-top line-scanhelp-circle-outline code-jsonlambdamatrixmeteorclose-circle-multiple sigma-lower source-branch source-mergetunewebhookaccount-settingsaccount-detailsapple-keyboard-capsapple-keyboard-commandapple-keyboard-controlapple-keyboard-optionapple-keyboard-shift box-shadowcards cards-outlinecards-playing-outlinecheckbox-multiple-blank-circle&checkbox-multiple-blank-circle-outlinecheckbox-multiple-marked-circle'checkbox-multiple-marked-circle-outline cloud-synccollagedirections-forkeraser-variantface-manface-man-profile file-treeformat-annotation-plus gas-cylinder grease-pencil human-femalehuman-greeting-varianthuman-handsdown human-handsup human-maleinformation-variant lead-pencilmap-marker-minusmap-marker-plusmarker message-plus microscope move-resizemove-resize-variantpaw-off phone-minus phone-plus pot-steampot-mix serial-portshape-circle-plusshape-polygon-plusshape-rectangle-plusshape-square-plusskip-next-circleskip-next-circle-outlineskip-previous-circleskip-previous-circle-outlinespray stop-circlestop-circle-outline test-tube text-shadow tune-verticalcart-off chart-ganttchart-scatter-plot-hexbinchart-timeline globe-light file-restore language-c language-cpp language-xamlcreationapplication-cogcredit-card-plus-outlinepot-mix-outlinebow-tiecalendar-rangecurrency-usd-off flash-red-eyeoarpianoweather-lightning-rainyweather-snowy-rainyyin-yang tower-beach tower-fire delete-circledna hamburgergondolainboxreorder-horizontalreorder-vertical shield-home tag-heartskullsolid alarm-snooze baby-carriagebeaker-outlinebombcalendar-question camera-burstcode-tags-checkcircle-multiple-outline crop-rotatedeveloper-board piano-off skate-off message-staremoticon-dead-outlineemoticon-excited-outline folder-starformat-color-textformat-sectiongradient-vertical home-outlinemessage-bulletedmessage-bulleted-offnuke power-plugpower-plug-offpublishcredit-card-markerrobotformat-rotate-90scannersubwaytimer-sand-emptytransit-transferunityupdate watch-vibrateangulardolbyembylampmenu-down-outlinemenu-up-outline note-multiplenote-multiple-outlineplexshield-airplane account-editalert-decagram all-inclusive angularjsarrow-down-boxarrow-left-boxarrow-right-box arrow-up-boxasteriskbomb-off bootstrap cards-variantclipboard-flow close-outlinecoffee-outlinecontacts delete-empty earth-box earth-box-off email-alert eye-outlineeye-off-outlinefast-forward-outlinefeather find-replace flash-outline format-fontformat-page-breakformat-pilcrowgarage garage-open!card-account-details-star-outline google-keep snowmobileheart-half-full heart-halfheart-half-outlinehexagon-multiplehookhook-offinfinitylanguage-swiftlanguage-typescript laptop-off lightbulb-onlightbulb-on-outline lock-pattern folder-zipmagnify-minus-outlinemagnify-plus-outlinemailbox medical-bagmessage-settings message-cogminus-box-outlinenetworkdownload-network help-networkupload-networknpmnutoctagrampage-layout-bodypage-layout-footerpage-layout-headerpage-layout-sidebar-leftpage-layout-sidebar-right pencil-circlepentagon-outlinepentagonpillarpistolplus-box-outline plus-outline prescriptionprinter-settingsreactrestartrewind-outlinerhombusrhombus-outline robot-vacuumrun search-webshovel shovel-off signal-2g signal-3g signal-4g signal-hspasignal-hspa-plus snowflake source-commitsource-commit-endsource-commit-end-localsource-commit-localsource-commit-next-localsource-commit-startsource-commit-start-next-localspeaker-wirelessstadium-variantsvgtag-plus tag-removeticket-percenttildetreasure-chest truck-trailer view-parallelview-sequentialwashing-machinewebpackwidgets nintendo-wiiuarrow-down-boldarrow-down-bold-boxarrow-down-bold-box-outlinearrow-left-boldarrow-left-bold-boxarrow-left-bold-box-outlinearrow-right-boldarrow-right-bold-boxarrow-right-bold-box-outline arrow-up-boldarrow-up-bold-boxarrow-up-bold-box-outlinecancel file-accountgesture-double-tapgesture-swipe-downgesture-swipe-leftgesture-swipe-rightgesture-swipe-up gesture-tapgesture-two-double-tapgesture-two-tap humble-bundle kickstarternetflixmicrosoft-onenotewall-sconce-roundfolder-refresh vector-radius'microsoft-xbox-controller-battery-alert'microsoft-xbox-controller-battery-emptyµsoft-xbox-controller-battery-full%microsoft-xbox-controller-battery-low(microsoft-xbox-controller-battery-medium)microsoft-xbox-controller-battery-unknownclipboard-plus file-plusformat-align-bottomformat-align-middleformat-align-topformat-list-checksformat-quote-open grid-large heart-offmusic music-offtab-plus volume-plus volume-minus volume-muteunfold-less-verticalunfold-more-verticaltacosquare-outlinesquarealert-octagramatom ceiling-lightchart-bar-stackedchart-line-stackeddecagramdecagram-outline dice-multipledice-d10-outline folder-openguitar-acousticloading lock-resetninjaoctagram-outlinepencil-circle-outline selection-offset-all set-centerset-center-rightset-leftset-left-centerset-left-rightset-none set-rightshield-half-fullsign-direction sign-text signal-off square-root sticker-emojisummit sword-cross truck-fast web-checkcast-offhelp-boxtimer-sand-fullwaves alarm-bell alarm-lightvideo-switch-outlinecheck-decagramarrow-collapse-downarrow-collapse-leftarrow-collapse-rightarrow-collapse-uparrow-expand-downarrow-expand-leftarrow-expand-rightarrow-expand-up book-lockbook-lock-openbus-articulated-endbus-articulated-frontbus-double-decker bus-schoolbus-side camera-goprocamera-metering-centercamera-metering-matrixcamera-metering-partialcamera-metering-spotcannabiscar-convertible car-estate car-hatchback car-pickupcar-side car-sportscaravancctv chart-donutchart-donut-variantchart-line-variant chili-hot chili-medium chili-mild cloud-braces cloud-tags console-linecornfolder-zip-outline currency-cny currency-eth currency-jpy currency-krw currency-sign currency-twddesktop-classic dip-switchdonkeydots-horizontal-circledots-vertical-circle ear-hearingelephant storefrontfood-croissantforkliftfuelgesturegoogle-analyticsgoogle-assistantheadphones-offhigh-definitionhome-assistanthome-automation home-circle language-go language-r lava-lamp led-striplockerlocker-multiplemap-marker-outline metronomemetronome-tickmicro-sdfacebook-gaming movie-rollmushroommushroom-outlinenintendo-switchnullpassport molecule-co2pipepipe-disconnectedpower-socket-eupower-socket-ukpower-socket-usriceringsass send-lock soy-saucestandard-definitionsurround-sound-2-0surround-sound-3-1surround-sound-5-1surround-sound-7-1television-classicform-textbox-passwordthought-bubblethought-bubble-outlinetrackpadultra-high-definition van-passenger van-utilityvanishvideo-3dwallxmppaccount-multiple-plus-outlineaccount-plus-outlinecredit-card-wireless account-music atlassianmicrosoft-azure basketballbattery-charging-wirelessbattery-charging-wireless-10battery-charging-wireless-20battery-charging-wireless-30battery-charging-wireless-40battery-charging-wireless-50battery-charging-wireless-60battery-charging-wireless-70battery-charging-wireless-80battery-charging-wireless-90battery-charging-wireless-alert!battery-charging-wireless-outlinebitcoinbriefcase-outlinecellphone-wirelessclovercomment-questioncontent-save-outlinedelete-restoredoor door-closed door-openfan-off file-percentfinancelightning-bolt-circle floor-plan forum-outlinegolfreceiptguy-fawkes-mask home-account home-hearthot-tubhulu ice-cream image-offkarateladybugnotebook phone-return poker-chipshape shape-outline ship-wheel soccer-field table-columntable-of-contents table-rowtable-settingstelevision-boxtelevision-classic-offtelevision-off tow-truckupload-multiple video-4k-boxvideo-input-antennavideo-input-componentvideo-input-hdmivideo-input-svideoview-dashboard-variantvuejsxamarinhuman-male-board-pollyoutube-studioyoutube-gaming account-groupcamera-switch-outlineairportarrow-collapse-horizontalarrow-collapse-verticalarrow-expand-horizontalarrow-expand-verticalaugmented-reality badmintonbaseball baseball-bat bottle-wine check-outlinecheckbox-intermediate chess-king chess-knight chess-pawn chess-queen chess-rook chess-bishopclipboard-pulseclipboard-pulse-outlinecomment-multiplecomment-text-multiplecomment-text-multiple-outlinecranecurling currency-bdt currency-kztdatabase-searchdice-d12-outlinedockerdoorbell-videoethereumeye-pluseye-plus-outline eye-settingseye-settings-outline file-questionfolder-networkfunction-variant garage-alert gauge-empty gauge-full gauge-low glass-winegraphqlhigh-definition-box hockey-puck hockey-sticks home-alert image-plusjquerylifebuoy mixed-reality nativescript onepasswordpatreonclose-circle-multiple-outlinepeacephone-rotate-landscapephone-rotate-portraitpier pier-crane pipe-leakpiston play-networkreminder room-service salesforceshield-accounthuman-male-boardthermostat-boxtractorvector-ellipsevirtual-realitywatch-export-variantwatch-import-variant watch-variantweather-hurricane account-heartalienanvilbattery-charging-10battery-charging-50battery-charging-70battery-charging-outline bed-emptyborder-all-variantborder-bottom-variantborder-left-variantborder-none-variantborder-right-variantborder-top-variant calendar-editclipboard-check-outlineconsole-network file-compare fire-truck folder-keyfolder-key-networkexpansion-cardkayakinginbox-multiple language-lua lock-smartmicrophone-minusmicrophone-pluspalette-swatchperiodic-tablepickaxe qrcode-editremote-desktopsausage cog-outlinesignal-cellular-1signal-cellular-2signal-cellular-3signal-cellular-outlinesshswap-horizontal-variantswap-vertical-varianttooth train-variantaccount-multiple-check applicationarchaxebullseye-arrow bus-clockcamera-account camera-image car-limousine cards-club cards-diamond cards-spadecellphone-textcellphone-messagechart-multilinecircle-edit-outlinecogscredit-card-settings-outline death-stardeath-star-variantdebianfedora file-undo floor-lamp folder-editformat-columnsfreebsdgate-and gate-nandgate-norgate-notgate-or gate-xnorgate-xorgentoo globe-modelhammer home-lockhome-lock-open linux-mint lock-alert lock-questionmap-marker-distancemidi midi-portnasnetwork-strength-1network-strength-1-alertnetwork-strength-2network-strength-2-alertnetwork-strength-3network-strength-3-alertnetwork-strength-4network-strength-4-alertnetwork-strength-offnetwork-strength-off-outlinenetwork-strength-outline play-speed playlist-edit power-cycle power-offpower-on power-sleeppower-socket-au power-standbyrabbitrobot-vacuum-variantsatellite-uplink scanner-offbook-minus-multiple-outlinesquare-edit-outlinesort-numeric-ascending-variant steering-off table-search tag-minustest-tube-empty test-tube-offticket-outline track-light transitiontransition-masked tumble-dryer file-refresh video-account video-imagevideo-stabilization wall-sconcewall-sconce-flatwall-sconce-round-variantwifi-strength-1wifi-strength-1-alertwifi-strength-1-lockwifi-strength-2wifi-strength-2-alertwifi-strength-2-lockwifi-strength-3wifi-strength-3-alertwifi-strength-3-lockwifi-strength-4wifi-strength-4-alertwifi-strength-4-lockwifi-strength-alert-outlinewifi-strength-lock-outlinewifi-strength-offwifi-strength-off-outlinewifi-strength-outlinepin-off-outline pin-outline share-outline trackpad-lockaccount-box-multipleaccount-search-outlineaccount-filter angle-acute angle-obtuse angle-rightanimation-playarrow-split-horizontalarrow-split-vertical audio-videobattery-10-bluetoothbattery-20-bluetoothbattery-30-bluetoothbattery-40-bluetoothbattery-50-bluetoothbattery-60-bluetoothbattery-70-bluetoothbattery-80-bluetoothbattery-90-bluetoothbattery-alert-bluetoothbattery-bluetoothbattery-bluetooth-variantbattery-unknown-bluetooth dharmachakracalendar-searchcellphone-remove cellphone-keycellphone-lock cellphone-off cellphone-cogcellphone-soundcrossclock clock-alert cloud-searchcloud-search-outlinecordova cryenginecupcake sine-wave current-dcdatabase-importdatabase-export desk-lamp disc-player email-searchemail-search-outlineexponent exponent-box file-downloadfile-download-outlinefirebase folder-searchfolder-search-outlineformat-list-checkboxfountain google-fit greater-thangreater-than-or-equalhard-hatheadphones-bluetooth heart-circleheart-circle-outlineom home-minus home-plus image-outline image-searchimage-search-outline star-crescent star-davidkeyboard-outline less-thanless-than-or-equal light-switch lock-clock magnify-close map-minus map-outlinemap-plus map-searchmap-search-outlinematerial-designmedalmicrosoft-dynamics-365monitor-cellphonemonitor-cellphone-starmouse-bluetoothmuffin not-equalnot-equal-variantorder-bool-ascending-variantorder-bool-descending-variantoffice-building plus-minusplus-minus-boxpodcastprogress-checkprogress-clockprogress-downloadprogress-uploadqi record-playerrestoreshield-off-outline shield-lock shield-off set-top-boxshower shower-headspeaker-bluetoothsquare-root-boxstar-circle-outline star-facetable-merge-cellstablet-cellphonetext text-short text-longtoilettoolboxtoolbox-outline tournamenttwo-factor-authenticationumbrella-closedunreal video-minus video-plus volleyball weight-poundwhistlearrow-bottom-left-bold-outlinearrow-bottom-left-thickarrow-bottom-right-bold-outlinearrow-bottom-right-thickarrow-decisionarrow-decision-autoarrow-decision-auto-outlinearrow-decision-outlinearrow-down-bold-outlinearrow-left-bold-outlinearrow-left-right-bold-outlinearrow-right-bold-outlinearrow-top-left-bold-outlinearrow-top-left-thickarrow-top-right-bold-outlinearrow-top-right-thickarrow-up-bold-outlinearrow-up-down-bold-outlineballotballot-outlinebetamaxbookmark-minusbookmark-minus-outline bookmark-offbookmark-off-outlinebraillebraincalendar-heart calendar-starcassettecellphone-arrow-downchevron-down-boxchevron-down-box-outlinechevron-left-boxchevron-left-box-outlinechevron-right-boxchevron-right-box-outlinechevron-up-boxchevron-up-box-outline circle-medium circle-small cloud-alertcomment-arrow-leftcomment-arrow-left-outlinecomment-arrow-rightcomment-arrow-right-outline comment-plus currency-phpdelete-outlinevector-point-editdownload-multiple eight-track email-plusemail-plus-outlinetext-box-outlinefile-document-outlinefloppy-variantflower-outline flower-tulipflower-tulip-outlineformat-font-size-decreaseformat-font-size-increase ghost-off google-lensgoogle-spreadsheet image-movekeyboard-settingskeyboard-settings-outlineknifeknife-militarylayers-off-outlinelayers-outline lighthouse lighthouse-on map-legendmenu-left-outlinemenu-right-outlinemessage-alert-outlinemini-sdminidiscmonitor-dashboardpirate pokemon-go powershellprinter-wireless quality-lowquality-mediumreflect-horizontalreflect-verticalrhombus-medium rhombus-splitshield-account-outline square-mediumsquare-medium-outline square-small subtitlessubtitles-outline table-bordertoggle-switch-off-outlinetoggle-switch-outlinevhs video-vintageview-dashboard-outlinemicrosoft-visual-studio-codevote vote-outlinemicrosoft-windows-classic*microsoft-xbox-controller-battery-chargingzip-disk aspect-ratiobabelballoon bank-transferbank-transfer-inbank-transfer-outbriefcase-minusbriefcase-plusbriefcase-removebriefcase-search bug-checkbug-check-outline bug-outlinecalendar-alertcalendar-multiselect calendar-weekcalendar-week-begincellphone-screenshot city-variantcity-variant-outlineclipboard-text-outlinecloud-question comment-eyecomment-eye-outlinecomment-searchcomment-search-outlinecontain contain-end contain-startdlnadoctordogdog-sideear-hearing-off engine-offengine-off-outlineexit-runfeature-searchfeature-search-outline file-alertfile-alert-outline file-uploadfile-upload-outlinehand-front-right hand-okay hand-peacehand-peace-varianthand-pointing-downhand-pointing-lefthand-pointing-upheart-multipleheart-multiple-outline horseshoehuman-female-boyhuman-female-femalehuman-female-girlhuman-male-boyhuman-male-girlhuman-male-maleip ip-networklitecoinmagnify-minus-cursormagnify-plus-cursor menu-swapmenu-swap-outlinepuzzle-outlineregistered-trademarkresizerouter-wireless-settingssafescissors-cutting select-dragselection-dragsettings-helper signal-5gsilverware-fork-knifesmog solar-powerstar-boxstar-box-outline table-plus table-removetarget-variant trademark trash-cantrash-can-outline tshirt-crewtshirt-vzodiac-aquarius zodiac-aries zodiac-cancerzodiac-capricorn zodiac-gemini zodiac-leo zodiac-libra zodiac-pisceszodiac-sagittariuszodiac-scorpio zodiac-taurus zodiac-virgo account-childaccount-child-circleaccount-supervisoraccount-supervisor-circle ampersandweb-offanimation-outlineanimation-play-outlinebell-off-outlinebell-plus-outlinebell-sleep-outlinebook-minus-multiplebook-plus-multiplebook-remove-multiple book-removebriefcase-edit bus-alertcalculator-variant caps-lock cash-refund checkbookcircle-slice-1circle-slice-2circle-slice-3circle-slice-4circle-slice-5circle-slice-6circle-slice-7circle-slice-8 collapse-allcollapse-all-outlinecredit-card-refund-outlinedatabase-check database-lockdesktop-tower-monitor dishwasher dog-servicedot-netegg egg-easter email-checkemail-check-outlineet expand-allexpand-all-outline file-cabinettext-box-multipletext-box-multiple-outline file-move folder-clockfolder-clock-outlineformat-annotation-minus gesture-pinchgesture-spreadgesture-swipe-horizontalgesture-swipe-verticalhail helicopterhexagon-slice-1hexagon-slice-2hexagon-slice-3hexagon-slice-4hexagon-slice-5hexagon-slice-6hexagramhexagram-outline label-offlabel-off-outline label-variantlabel-variant-outlinelanguage-ruby-on-railslaravelmastodonsort-numeric-descending-variantminus-circle-multiple-outlinemusic-circle-outlinepinwheelpinwheel-outlineradiator-disabled radiator-offselect-compare shield-plusshield-plus-outline shield-removeshield-remove-outlinebook-plus-multiple-outline sina-weibo spray-bottlesqueegeestar-four-pointsstar-four-points-outlinestar-three-pointsstar-three-points-outlinesymfonyvariable vector-bezierwiperz-wavezendaccount-minus-outlineaccount-remove-outlinealpha-aalpha-balpha-calpha-dalpha-ealpha-falpha-galpha-halpha-ialpha-jalpha-kalpha-lalpha-malpha-nalpha-oalpha-palpha-qalpha-ralpha-salpha-talpha-ualpha-valpha-walpha-xalpha-yalpha-z alpha-a-box alpha-b-box alpha-c-box alpha-d-box alpha-e-box alpha-f-box alpha-g-box alpha-h-box alpha-i-box alpha-j-box alpha-k-box alpha-l-box alpha-m-box alpha-n-box alpha-o-box alpha-p-box alpha-q-box alpha-r-box alpha-s-box alpha-t-box alpha-u-box alpha-v-box alpha-w-box alpha-x-box alpha-y-box alpha-z-box bulldozerbullhorn-outlinecalendar-exportcalendar-importchevron-down-circlechevron-down-circle-outlinechevron-left-circlechevron-left-circle-outlinechevron-right-circlechevron-right-circle-outlinechevron-up-circlechevron-up-circle-outlinecontent-save-settings-outline crystal-ballemberfacebook-workplace file-replacefile-replace-outlineformat-letter-caseformat-letter-case-lowerformat-letter-case-upper language-javacircle-multiple numeric-1 numeric-2 numeric-3 numeric-4 numeric-5 numeric-6 numeric-7 numeric-8 numeric-9originresistorresistor-nodesrobot-industrial shoe-formal shoe-heel silo-outlinebox-cutter-off tab-minus tab-remove tape-measure telescopeyahooaccount-alert-outlineaccount-arrow-leftaccount-arrow-left-outlineaccount-arrow-rightaccount-arrow-right-outlineaccount-circle-outline account-clockaccount-clock-outlineaccount-group-outlineaccount-questionaccount-question-outline artstationbackspace-outline barley-offbarnbatapplication-settings billiardsbilliards-rackbook-open-outline book-outline boxing-glovecalendar-blank-outlinecalendar-outlinecalendar-range-outlinecamera-controlcamera-enhance-outlinecar-door car-electriccar-key car-multiplecard card-bulletedcard-bulleted-offcard-bulleted-off-outlinecard-bulleted-outlinecard-bulleted-settingscard-bulleted-settings-outline card-outline card-textcard-text-outlinechat chat-alertchat-processingchef-hatcloud-download-outlinecloud-upload-outlinecoffin compass-offcompass-off-outlinecontroller-classiccontroller-classic-outline cube-scan currency-brl database-editdeathly-hallowsdelete-circle-outlinedelete-forever-outlinediamonddiamond-outline dns-outlinedots-horizontal-circle-outlinedots-vertical-circle-outlinedownload-outline drag-variant eject-outlineemail-mark-as-unreadexport-variant eye-circleeye-circle-outlineface-man-outlinefile-find-outline file-remove flag-minus flag-plus flag-removefolder-account-outlinefolder-plus-outlinefolder-remove-outlinefolder-star-outlinegitlabgog grave-stone halloween hat-fedora help-rhombushelp-rhombus-outlinehome-variant-outlineinbox-multiple-outlinelibrary-shelvesmapbox menu-openmoleculeone-upopen-source-initiativepac-man page-nextpage-next-outline page-previouspage-previous-outlinepanpan-bottom-leftpan-bottom-rightpan-downpan-horizontalpan-left pan-right pan-top-left pan-top-rightpan-up pan-verticalpumpkinrollupjsscript script-textscript-text-outline shield-keyshield-key-outlineskull-crossbonesskull-crossbones-outline skull-outlinespace-invaders spider-webview-split-horizontalview-split-verticalswap-horizontal-boldswap-vertical-boldtag-heart-outlinetarget-accounttimelinetimeline-outline timeline-texttimeline-text-outlinetooltip-image-outline tooltip-plustooltip-text-outline train-cartriforceubisoftvideo-off-outline video-outlinewallet-outlinewaze wrap-disabledwrench-outlineaccess-point-network-offaccount-check-outlineaccount-heart-outlineaccount-key-outlineaccount-multiple-minus-outlineaccount-network-outlineaccount-off-outlineaccount-star-outlineairbagalarm-light-outlinealpha-a-box-outlinealpha-a-circlealpha-a-circle-outlinealpha-b-box-outlinealpha-b-circlealpha-b-circle-outlinealpha-c-box-outlinealpha-c-circlealpha-c-circle-outlinealpha-d-box-outlinealpha-d-circlealpha-d-circle-outlinealpha-e-box-outlinealpha-e-circlealpha-e-circle-outlinealpha-f-box-outlinealpha-f-circlealpha-f-circle-outlinealpha-g-box-outlinealpha-g-circlealpha-g-circle-outlinealpha-h-box-outlinealpha-h-circlealpha-h-circle-outlinealpha-i-box-outlinealpha-i-circlealpha-i-circle-outlinealpha-j-box-outlinealpha-j-circlealpha-j-circle-outlinealpha-k-box-outlinealpha-k-circlealpha-k-circle-outlinealpha-l-box-outlinealpha-l-circlealpha-l-circle-outlinealpha-m-box-outlinealpha-m-circlealpha-m-circle-outlinealpha-n-box-outlinealpha-n-circlealpha-n-circle-outlinealpha-o-box-outlinealpha-o-circlealpha-o-circle-outlinealpha-p-box-outlinealpha-p-circlealpha-p-circle-outlinealpha-q-box-outlinealpha-q-circlealpha-q-circle-outlinealpha-r-box-outlinealpha-r-circlealpha-r-circle-outlinealpha-s-box-outlinealpha-s-circlealpha-s-circle-outlinealpha-t-box-outlinealpha-t-circlealpha-t-circle-outlinealpha-u-box-outlinealpha-u-circlealpha-u-circle-outlinealpha-v-box-outlinealpha-v-circlealpha-v-circle-outlinealpha-w-box-outlinealpha-w-circlealpha-w-circle-outlinealpha-x-box-outlinealpha-x-circlealpha-x-circle-outlinealpha-y-box-outlinealpha-y-circlealpha-y-circle-outlinealpha-z-box-outlinealpha-z-circlealpha-z-circle-outlineballot-recountballot-recount-outlinebasketball-hoopbasketball-hoop-outlinebriefcase-download-outlinebriefcase-edit-outlinebriefcase-minus-outlinebriefcase-plus-outlinebriefcase-remove-outlinebriefcase-search-outlinebriefcase-upload-outlinecalendar-check-outlinecalendar-remove-outlinecalendar-text-outline car-brake-abscar-brake-alertcar-espcar-light-dimmed car-light-fogcar-light-highcar-tire-alertcart-arrow-rightcharitychart-bell-curvecheckbox-multiple-outlinecheckbox-outline check-networkcheck-network-outlineclipboard-account-outlineclipboard-arrow-down-outlineclipboard-arrow-upclipboard-arrow-up-outlineclipboard-playclipboard-play-outlineclipboard-text-playclipboard-text-play-outlineclose-box-multipleclose-box-multiple-outlineclose-network-outlineconsole-network-outline currency-ilsdelete-sweep-outlinediameterdiameter-outlinediameter-variantdownload-network-outline dump-truckemoticonemoticon-angryemoticon-angry-outline emoticon-cool emoticon-cryemoticon-cry-outline emoticon-deademoticon-devilemoticon-excitedemoticon-happy emoticon-kissemoticon-kiss-outlineemoticon-neutralemoticon-poop-outline emoticon-sademoticon-tongue-outline emoticon-winkemoticon-wink-outlineeslintface-recognition file-searchfile-search-outline file-tablefile-table-outlinefolder-key-network-outlinefolder-network-outline folder-textfolder-text-outlinefood-apple-outlinefuse fuse-blade google-adsgoogle-street-view hazard-lightshelp-network-outlineapplication-bracketsapplication-brackets-outlineimage-size-select-actualimage-size-select-largeimage-size-select-smallip-network-outlineipodlanguage-haskell leaf-maple link-plusmap-marker-checkmath-cosmath-sinmath-tan microwaveminus-network-outline network-offnetwork-off-outlinenetwork-outlinenumeric-1-circlenumeric-1-circle-outlinenumeric-2-circlenumeric-2-circle-outlinenumeric-3-circlenumeric-3-circle-outlinenumeric-4-circlenumeric-4-circle-outlinenumeric-5-circlenumeric-5-circle-outlinenumeric-6-circlenumeric-6-circle-outlinenumeric-7-circlenumeric-7-circle-outlinenumeric-8-circlenumeric-8-circle-outlinenumeric-9-circlenumeric-9-circle-outlinenumeric-9-plus-circlenumeric-9-plus-circle-outline parachuteparachute-outlinepencil-outlineplay-network-outlineplaylist-musicplaylist-music-outlineplus-network-outline postage-stampprogress-alertprogress-wrenchradio-amradio-fmradiusradius-outline ruler-squareseat seat-outlineseatbeltsheepshield-airplane-outlineshield-check-outline shield-crossshield-cross-outlineshield-home-outlineshield-lock-outlinesort-variant-locksort-variant-lock-opensource-repositorysource-repository-multiplespa spa-outline toaster-oven truck-check turnstileturnstile-outlineturtleupload-network-outline vibrate-offwatch-vibrate-offarrow-down-circlearrow-down-circle-outlinearrow-left-circlearrow-left-circle-outlinearrow-right-circlearrow-right-circle-outlinearrow-up-circlearrow-up-circle-outline account-tiealert-box-outlinealert-decagram-outlinealert-octagon-outlinealert-octagram-outline ammunitionaccount-music-outlinebeakerblender blood-bag cross-bolnisi bread-slicebread-slice-outlinebriefcase-accountbriefcase-account-outlinebrightness-percentbullet cash-register cross-celtic cross-outlineclipboard-alert-outlineclipboard-arrow-left-outlineclipboard-arrow-rightclipboard-arrow-right-outlinecontent-save-editcontent-save-edit-outlinecursor-default-clickcursor-default-click-outline database-syncdatabase-removedatabase-settings drama-masks email-box eye-checkeye-check-outlinefast-forward-30order-alphabetical-descending flower-poppy folder-poundfolder-pound-outline folder-syncfolder-sync-outlineformat-list-numbered-rtlformat-text-wrapping-clipformat-text-wrapping-overflowformat-text-wrapping-wrapformat-textbox fountain-penfountain-pen-tipheart-broken-outline home-cityhome-city-outlinehubspotfilmstrip-box-multipleplay-box-multiplelink-boxlink-box-outlinelink-box-variantlink-box-variant-outline map-clockmap-clock-outlinemap-marker-path mother-nursemicrosoft-outlookperspective-lessperspective-morepodium podium-bronze podium-gold podium-silverquora rewind-10 roller-skate rollerblade language-rubysack sack-percentsafety-goggles select-colorselection-ellipseshield-link-variantshield-link-variant-outlineskate skew-less skew-morespeaker-multiplestampertanktortoisetransit-connectiontransit-connection-varianttransmission-tower weight-gramyoutube-subscriptionzigbeeemail-alert-outline air-filter air-purifiermosqueapps-boxatmaxis axis-arrowaxis-arrow-lock axis-lock axis-x-arrowaxis-x-arrow-lockaxis-x-rotate-clockwiseaxis-x-rotate-counterclockwiseaxis-x-y-arrow-lock axis-y-arrowaxis-y-arrow-lockaxis-y-rotate-clockwiseaxis-y-rotate-counterclockwise axis-z-arrowaxis-z-arrow-lockaxis-z-rotate-clockwiseaxis-z-rotate-counterclockwise bell-alert bell-circlebell-circle-outlinecalendar-minuscamera-outlinecar-brake-holdcar-brake-parkingcar-cruise-controlcar-defrost-frontcar-defrost-rearcar-parking-lightscar-traction-controlbag-carry-on-checkcart-arrow-down cart-arrow-up cart-minus cart-removecontactless-paymentcreative-commonscredit-card-wireless-outlinecricketdev-to domain-off face-agentfast-forward-10flareformat-text-rotation-downformat-text-rotation-none forwardburger gesture-swipegesture-tap-hold file-gif-boxgo-kart go-kart-track goodreadsgrainhdrhdr-offhiking home-floor-1 home-floor-2 home-floor-3 home-floor-a home-floor-b home-floor-g home-floor-lkabaddi mailbox-openmailbox-open-outlinemailbox-open-upmailbox-open-up-outlinemailbox-outline mailbox-upmailbox-up-outlinemixed-martial-arts monitor-off motion-sensor point-of-sale racing-helmet racquetball restart-off rewind-30room-service-outline rotate-orbitrugby shield-search solar-panelsolar-panel-largesubway-alert-varianttea tea-outlinetennis transfer-down transfer-left transfer-up trophy-broken wind-turbine wiper-wash badge-accountbadge-account-alertbadge-account-alert-outlinebadge-account-outlinecard-account-details-outlineair-hornapplication-exportapplication-importbandage bank-minus bank-plus bank-removeboltbuglecactuscamera-wirelesscamera-wireless-outline cash-markerchevron-triple-downchevron-triple-leftchevron-triple-rightchevron-triple-upclosed-caption-outlinecredit-card-marker-outlinediving-flippers diving-helmetdiving-scuba-maskdiving-scuba-flagdiving-scuba-tankdiving-scuba-tank-multiplediving-snorkel file-cancelfile-cancel-outlinefile-document-editfile-document-edit-outlinefile-eyefile-eye-outline folder-alertfolder-alert-outlinefolder-edit-outlinefolder-open-outlineformat-list-bulleted-square gantry-crane home-floor-0home-floor-negative-1 home-groupjabber key-outlineleakleak-off marker-cancelmine monitor-lock monitor-star movie-outlinemusic-note-plusnailocarinapassport-biometricpen-lock pen-minuspen-offpen-plus pen-removepencil-lock-outline pencil-minuspencil-minus-outlinepencil-off-outline pencil-pluspencil-plus-outline pencil-removepencil-remove-outline phone-off phone-outlinepi-hole playlist-starscrew-flat-top screw-lagscrew-machine-flat-topscrew-machine-round-topscrew-round-top send-circlesend-circle-outline shoe-print signaturesignature-freehandsignature-imagesignature-textslope-downhill slope-uphillthermometer-alertthermometer-chevron-downthermometer-chevron-upthermometer-minusthermometer-plus translate-offupload-outlinevolume-variant-off wallpaper water-outline wifi-starpalette-outlinebadge-account-horizontal badge-account-horizontal-outlineaws bag-personalbag-personal-offbag-personal-off-outlinebag-personal-outlinebiathlonbookmark-multiplebookmark-multiple-outlinecalendar-monthcalendar-month-outline camera-retakecamera-retake-outlinecar-backcar-offcast-education check-boldcheck-underlinecheck-underline-circlecheck-underline-circle-outline circular-sawcommacomma-box-outline comma-circlecomma-circle-outlinecontent-save-movecontent-save-move-outlinefile-check-outlinefile-music-outline comma-boxfile-video-outline file-png-box fireplace fireplace-offfireworkformat-color-highlightformat-text-variantgamepad-circlegamepad-circle-downgamepad-circle-leftgamepad-circle-outlinegamepad-circle-rightgamepad-circle-up gamepad-down gamepad-left gamepad-right gamepad-roundgamepad-round-downgamepad-round-leftgamepad-round-outlinegamepad-round-rightgamepad-round-up gamepad-upgatsbygiftgrillhand-back-lefthand-back-righthand-saw image-frameinvert-colors-offkeyboard-off-outline layers-minus layers-plus layers-remove lightbulb-offlightbulb-off-outlinemonitor-screenshot ice-cream-offnfc-search-variantnfc-variant-offnotebook-multiple hoop-housepicture-in-picture-bottom-right'picture-in-picture-bottom-right-outlinepicture-in-picture-top-right$picture-in-picture-top-right-outlineprinter-3d-nozzleprinter-3d-nozzle-outline printer-off rectanglerectangle-outlinerivet saw-bladeseed seed-outlinesignal-distance-variantspadesproutsprout-outline table-tennis tree-outline view-comfy view-compactview-compact-outlinevuetifyweather-cloudy-arrow-rightmicrosoft-xbox-controller-menumicrosoft-xbox-controller-view alarm-notealarm-note-offarrow-left-rightarrow-left-right-boldarrow-top-left-bottom-right arrow-top-left-bottom-right-boldarrow-top-right-bottom-left arrow-top-right-bottom-left-bold arrow-up-downarrow-up-down-bold atom-variant baby-facebaby-face-outlinebackspace-reversebackspace-reverse-outline bank-outlinebell-alert-outline book-playbook-play-outline book-searchbook-search-outline boom-gateboom-gate-alertboom-gate-alert-outlineboom-gate-arrow-downboom-gate-arrow-down-outlineboom-gate-outlineboom-gate-arrow-upboom-gate-arrow-up-outline calendar-synccalendar-sync-outline cellphone-nfcchart-areaspline-variantchart-scatter-plotchart-timeline-variant chart-tree circle-double circle-expand clock-digitalcard-account-mail-outlinecard-account-phonecard-account-phone-outlineaccount-cowboy-hat currency-rialdelete-empty-outlinedollyelectric-switchellipseellipse-outline equalizerequalizer-outline ferris-wheelfile-delimited-outlinetext-box-checktext-box-check-outlinetext-box-minustext-box-minus-outline text-box-plustext-box-plus-outlinetext-box-removetext-box-remove-outlinetext-box-searchtext-box-search-outlinefile-image-outlinefingerprint-offformat-list-bulleted-triangleformat-overlinefrequently-asked-questionsgamepad-squaregamepad-square-outlinegamepad-variant-outlinegas-station-outlinegoogle-podcasthome-analyticsmail map-checkmap-check-outlineruler-square-compassnotebook-outlinepenguinradioactive-off record-circlerecord-circle-outline remote-off remote-tv remote-tv-off rotate-3d sail-boat scatter-plotscatter-plot-outlinesegment shield-alertshield-alert-outlinetablet-dashboardtelevision-playunicodevideo-3d-variantvideo-wirelessvideo-wireless-outlineaccount-voice-offbacteriabacteria-outlinecalendar-accountcalendar-account-outlinecalendar-weekendcalendar-weekend-outline camera-pluscamera-plus-outlinecampfire chat-outline cpu-32-bit cpu-64-bitcredit-card-clockcredit-card-clock-outline email-editemail-edit-outline email-minusemail-minus-outlineemail-multipleemail-multiple-outlineemail-open-multipleemail-open-multiple-outlinefile-cad file-cad-boxfile-plus-outline filter-minusfilter-minus-outline filter-plusfilter-plus-outlinefire-extinguisherfishbowlfishbowl-outline fit-to-pagefit-to-page-outline flash-alertflash-alert-outline heart-flash home-floodhuman-male-heighthuman-male-height-variantice-pop identifier image-filter-center-focus-strong(image-filter-center-focus-strong-outline jellyfishjellyfish-outlinelassomusic-box-multiple-outlinemap-marker-alertmap-marker-alert-outlinemap-marker-questionmap-marker-question-outlinemap-marker-removemap-marker-remove-variantnecklacenewspaper-minusnewspaper-plusnumeric-0-box-multiplenumeric-1-box-multiplenumeric-2-box-multiplenumeric-3-box-multiplenumeric-4-box-multiplenumeric-5-box-multiplenumeric-6-box-multiplenumeric-7-box-multiplenumeric-8-box-multiplenumeric-9-box-multiplenumeric-9-plus-box-multipleoil-lamp phone-alert play-outlinepurse purse-outlinerailroad-lightreply-all-outline reply-outlinerss-offselection-ellipse-arrow-inside share-offshare-off-outlineskip-backward-outlineskip-forward-outlineskip-next-outlineskip-previous-outlinesnowflake-alertsnowflake-variantstretch-to-pagestretch-to-page-outline typewriterwaveweather-cloudy-alert weather-hazyweather-night-partly-cloudyweather-partly-lightningweather-partly-rainyweather-partly-snowyweather-partly-snowy-rainyweather-snowy-heavyweather-sunny-alertweather-tornado baby-bottlebaby-bottle-outline bag-carry-onbag-carry-on-off bag-checkedbaguette bus-multiplecar-shift-patterncellphone-informationcontent-save-alertcontent-save-alert-outlinecontent-save-all-outlinecrosshairs-offcupboardcupboard-outline chair-rollingdrawdresserdresser-outlineemoticon-frownemoticon-frown-outline focus-auto focus-fieldfocus-field-horizontalfocus-field-vertical foot-printhandballhome-thermometerhome-thermometer-outlinekettle-outlinelatitude layers-triplelayers-triple-outline longitudelanguage-markdown-outlinemerge middlewaremiddleware-outlinemonitor-speakermonitor-speaker-offmoon-first-quarter moon-fullmoon-last-quartermoon-newmoon-waning-crescentmoon-waning-gibbousmoon-waxing-crescentmoon-waxing-gibbousmusic-accidental-double-flatmusic-accidental-double-sharpmusic-accidental-flatmusic-accidental-naturalmusic-accidental-sharpmusic-clef-altomusic-clef-bassmusic-clef-treblemusic-note-eighth-dottedmusic-note-half-dottedmusic-note-off-outlinemusic-note-outlinemusic-note-quarter-dottedmusic-note-sixteenth-dottedmusic-note-whole-dottedmusic-rest-eighthmusic-rest-halfmusic-rest-quartermusic-rest-sixteenthmusic-rest-wholenumeric-10-boxnumeric-10-box-outlinepage-layout-header-footer patio-heater warehouse select-group shield-carshopping-searchspeedometer-mediumspeedometer-slowtable-large-plustable-large-removetelevision-pausetelevision-stoptransit-detourvideo-input-scartview-grid-plus wallet-pluswallet-plus-outlinewardrobewardrobe-outline water-boilerwater-pump-offweb-boxtimeline-alert timeline-plustimeline-plus-outlinetimeline-alert-outlinetimeline-questiontimeline-question-outlinehome-export-outlinehome-import-outlineaccount-filter-outlineapproximately-equalapproximately-equal-boxbaby-carriage-offbee bee-flowercar-child-seatcar-seatcar-seat-coolercar-seat-heaterchart-bell-curve-cumulative clock-checkclock-check-outline coffee-offcoffee-off-outlinecredit-card-minuscredit-card-minus-outlinecredit-card-removecredit-card-remove-outlinedevicesemail-newsletterexpansion-card-variantpower-socket-ch file-swapfile-swap-outline folder-swapfolder-swap-outlineformat-letter-ends-withformat-letter-matchesformat-letter-starts-withformat-text-rotation-angle-downformat-text-rotation-angle-up"format-text-rotation-down-verticalformat-text-rotation-upformat-text-rotation-verticalid-cardimage-auto-adjust key-wirelesslicenselocation-enter location-exitlock-open-variantlock-open-variant-outline math-integralmath-integral-box math-norm math-norm-box message-lockmessage-text-lock movie-openmovie-open-outline bed-queenbed-king-outlinebed-kingbed-double-outline bed-doublemicrosoft-azure-devopsarm-flex-outlinearm-flexprotocol seal-variant select-placebed-queen-outlinesign-direction-plussign-direction-removesilverware-clean slash-forwardslash-forward-boxswap-horizontal-circleswap-horizontal-circle-outlineswap-vertical-circleswap-vertical-circle-outline tanker-truck texture-box tram-side vector-link numeric-10numeric-10-box-multiplenumeric-10-box-multiple-outlinenumeric-10-circlenumeric-10-circle-outlinenumeric-9-plus credit-cardcredit-card-multiplecredit-card-offcredit-card-pluscredit-card-refundcredit-card-scancredit-card-settingshospitalhospital-box-outlineoil-temperaturestadiumzip-box-outlineaccount-edit-outlinepeanut peanut-offpeanut-outlinepeanut-off-outlinesign-direction-minusnewspaper-variantnewspaper-variant-multiple"newspaper-variant-multiple-outlinenewspaper-variant-outlineoverscan pig-variant piggy-bankpost post-outlineaccount-box-multiple-outlineairballoon-outlinealphabetical-offalphabetical-variantalphabetical-variant-off apache-kafka billboard blinds-openbus-stopbus-stop-coveredbus-stop-uncovered car-2-plus car-3-pluscar-brake-retarder car-clutchcar-coolant-levelcar-turbochargercar-windshieldcar-windshield-outlinecards-diamond-outline cast-audiocellphone-play coach-lamp comment-quotecomment-quote-outline domino-maskelectron-framework excavator eye-minuseye-minus-outlinefile-account-outlinefile-chart-outlinefile-cloud-outlinefile-code-outlinefile-excel-box-outlinefile-excel-outlinefile-export-outlinefile-import-outlinefile-lock-outlinefile-move-outlinefile-multiple-outlinefile-percent-outlinefile-powerpoint-box-outlinefile-powerpoint-outlinefile-question-outlinefile-remove-outlinefile-restore-outlinefile-send-outline file-starfile-star-outlinefile-undo-outlinefile-word-box-outlinefile-word-outlinefilter-variant-removefloor-lamp-dualfloor-lamp-torchiere-variantfruit-cherries fruit-citrus fruit-grapesfruit-grapes-outlinefruit-pineapplefruit-watermelongoogle-my-businessgraph graph-outline harddisk-plusharddisk-removehome-circle-outlineinstrument-triangleislandkeyboard-spaceled-strip-variantnumeric-negative-1 oil-level outdoor-lamp palm-tree party-popper printer-posrobber routes-clock scale-off cog-transfercog-transfer-outline shield-sunshield-sun-outline sprinklersprinkler-variant table-chair terraformtoastertoolstransfervalve valve-closed valve-open video-checkvideo-check-outline water-wellwater-well-outline bed-singlebed-single-outlinebook-information-variant bottle-sodabottle-soda-classicbottle-soda-outlinecalendar-blank-multiple card-searchcard-search-outlineface-woman-profile face-womanface-woman-outline file-settingsfile-settings-outlinefile-cogfile-cog-outlinefolder-settingsfolder-settings-outline folder-cogfolder-cog-outlinefurigana-horizontalfurigana-verticalgolf-teelungsmath-logmopedrouter-networkroman-numeral-2roman-numeral-3roman-numeral-4roman-numeral-6roman-numeral-7roman-numeral-8roman-numeral-9soldering-ironstomach table-eye form-textareatrumpet account-cashaccount-cash-outlineair-humidifieransibleapibicycle car-door-lock coat-rack coffee-maker web-minusdecimal decimal-commadecimal-comma-decreasedecimal-comma-increase delete-alertdelete-alert-outline delete-offdelete-off-outline dock-bottom dock-left dock-right dock-window domain-plus domain-removedoor-closed-lock download-offdownload-off-outlineflag-minus-outlineflag-plus-outlineflag-remove-outline folder-homefolder-home-outlinefolder-informationfolder-information-outlineiv-bag link-lockmessage-plus-outline phone-cancel smart-cardsmart-card-outlinesmart-card-readersmart-card-reader-outlinestorefront-outlinethermometer-highthermometer-lowufo ufo-outline upload-offupload-off-outlineaccount-child-outlineaccount-settings-outlineaccount-tie-outline alien-outlinebattery-alert-variantbattery-alert-variant-outlinebeehive-outline boomerangbriefcase-clockbriefcase-clock-outlinecellphone-message-offcircle-off-outlineclipboard-listclipboard-list-outlinecode-braces-boxcode-parentheses-box consolidateelectric-switch-closedemail-arrow-leftemail-arrow-left-outlineemail-arrow-rightemail-arrow-right-outlineemoticon-confusedemoticon-confused-outlineepsilonfile-table-boxfile-table-box-multiplefile-table-box-multiple-outlinefile-table-box-outline filter-menufilter-menu-outlineflip-horizontal flip-verticalfolder-download-outline folder-heartfolder-heart-outlinefolder-key-outlinefolder-upload-outlinegamma hair-dryerhair-dryer-outline hand-hearthexagon-multiple-outlinehorizontal-rotate-clockwise"horizontal-rotate-counterclockwiseapplication-arrayapplication-array-outlineapplication-bracesapplication-braces-outlineapplication-parenthesesapplication-parentheses-outlineapplication-variableapplication-variable-outlinekhanda kuberneteslink-variant-minuslink-variant-pluslink-variant-removemap-marker-down map-marker-upmonitor-shimmernixnuxtpower-socket-depower-socket-frpower-socket-jpprogress-close reload-alert restart-alert restore-alertshakershaker-outlinetelevision-shimmer variable-boxfilter-variant-minusfilter-variant-plus slot-machineslot-machine-outlineglass-mug-variantclipboard-flow-outlinesign-real-estateantennacentosredhatwindow-shutterwindow-shutter-alertwindow-shutter-open bike-fast volume-sourcevolume-vibrate movie-editmovie-edit-outline movie-filtermovie-filter-outlinediabetescursor-default-gesturecursor-default-gesture-outline toothbrushtoothbrush-paste home-rooftoothbrush-electricaccount-supervisor-outline bottle-tonicbottle-tonic-outlinebottle-tonic-plusbottle-tonic-plus-outlinebottle-tonic-skullbottle-tonic-skull-outlinecalendar-arrow-leftcalendar-arrow-rightcrosshairs-question fire-hydrantfire-hydrant-alertfire-hydrant-offocr shield-starshield-star-outlinetext-recognition handcuffsgender-male-female-variantgender-non-binaryminus-box-multipleminus-box-multiple-outlineplus-box-multiple-outlinepencil-box-multiplepencil-box-multiple-outline printer-checksort-variant-remove#sort-alphabetical-ascending-variant$sort-alphabetical-descending-variantdice-1-outlinedice-2-outlinedice-3-outlinedice-4-outlinedice-5-outlinedice-6-outlinedice-d4dice-d6dice-d8dice-d10dice-d12dice-d20dice-multiple-outline paper-rollpaper-roll-outline home-edithome-edit-outlinearrow-horizontal-lockarrow-vertical-lock weight-lifter account-lockaccount-lock-outlinepasta send-checksend-check-outline send-clocksend-clock-outline send-outlinesend-lock-outline police-badgepolice-badge-outlinegate-arrow-right gate-open bell-badgemessage-image-outlinemessage-lock-outline message-minusmessage-minus-outlinemessage-processing-outlinemessage-settings-outlinemessage-cog-outlinemessage-text-clockmessage-text-clock-outlinemessage-text-lock-outlinecheckbox-blank-badge file-linkfile-link-outline file-phonefile-phone-outline meditationyogaleeknoodlespound-box-outlineschool-outlinebasket-outlinephone-in-talk-outlinebashfile-keyfile-key-outlinefile-certificatefile-certificate-outlinecertificate-outlinecigar grill-outline qrcode-plus qrcode-minus qrcode-removephone-alert-outlinephone-bluetooth-outlinephone-cancel-outlinephone-forward-outlinephone-hangup-outlinephone-incoming-outlinephone-lock-outlinephone-log-outline phone-messagephone-message-outlinephone-minus-outlinephone-outgoing-outlinephone-paused-outlinephone-plus-outlinephone-return-outlinephone-settings-outlinekey-starkey-link shield-editshield-edit-outline shield-syncshield-sync-outline golf-cartphone-missed-outlinephone-off-outlineformat-quote-open-outlineformat-quote-close-outline phone-checkphone-check-outline phone-ringphone-ring-outline share-circle reply-circle fridge-offfridge-off-outline fridge-alertfridge-alert-outlinewater-boiler-alertwater-boiler-off amplifier-offaudio-video-off toaster-offdishwasher-alertdishwasher-offtumble-dryer-alerttumble-dryer-offwashing-machine-alertwashing-machine-offcar-info comment-editprinter-3d-nozzle-alertprinter-3d-nozzle-alert-outlinealign-horizontal-leftalign-horizontal-centeralign-horizontal-rightalign-vertical-bottomalign-vertical-centeralign-vertical-topdistribute-horizontal-leftdistribute-horizontal-centerdistribute-horizontal-rightdistribute-vertical-bottomdistribute-vertical-centerdistribute-vertical-top alert-rhombusalert-rhombus-outline crown-outlineimage-off-outline movie-searchmovie-search-outlinerv-truckshopping-outlinestrategynote-text-outlineview-agenda-outlineview-grid-outlineview-grid-plus-outlinewindow-closed-variantwindow-open-variant cog-clockwisecog-counterclockwise chart-sankeychart-sankey-variant vanity-lightrouter image-editimage-edit-outline bell-checkbell-check-outline file-editfile-edit-outline human-scooterspider spider-thread plus-thickalert-circle-checkalert-circle-check-outline state-machineusb-port cloud-lockcloud-lock-outlinerobot-mower-outline share-allshare-all-outline google-cloud robot-mowerfast-forward-5rewind-5shape-oval-plustimeline-clocktimeline-clock-outlinemirroraccount-multiple-check-outline card-pluscard-plus-outlinecheckerboard-pluscheckerboard-minuscheckerboard-remove select-searchselection-search layers-searchlayers-search-outline lightbulb-cfllightbulb-cfl-offaccount-multiple-removeaccount-multiple-remove-outlinemagnify-remove-cursormagnify-remove-outlinearchive-outline battery-heartbattery-heart-outlinebattery-heart-variant bus-markerchart-multiple emoticon-lolemoticon-lol-outline file-syncfile-sync-outline handshakelanguage-kotlinlanguage-fortranoffer radio-offtable-headers-eyetable-headers-eye-offtag-minus-outlinetag-offtag-off-outlinetag-plus-outlinetag-remove-outlinetag-textvector-polyline-editvector-polyline-minusvector-polyline-plusvector-polyline-remove beaker-alertbeaker-alert-outline beaker-checkbeaker-check-outline beaker-minusbeaker-minus-outline beaker-plusbeaker-plus-outlinebeaker-questionbeaker-question-outline beaker-removebeaker-remove-outlinebicycle-basket barcode-off digital-oceanexclamation-thickdeskflask-empty-minusflask-empty-minus-outlineflask-empty-plusflask-empty-plus-outlineflask-empty-removeflask-empty-remove-outline flask-minusflask-minus-outline flask-plusflask-plus-outline flask-removeflask-remove-outlinefolder-move-outline home-removewebrtcseat-passenger web-clockflask-round-bottomflask-round-bottom-empty flask-round-bottom-empty-outlineflask-round-bottom-outlinegoldmessage-star-outlinehome-lightbulbhome-lightbulb-outlinelightbulb-grouplightbulb-group-outlinelightbulb-multiplelightbulb-multiple-outlineapi-offallergyarchive-arrow-downarchive-arrow-down-outlinearchive-arrow-uparchive-arrow-up-outline battery-offbattery-off-outline bookshelf cash-minus cash-plus cash-removeclipboard-check-multiple clipboard-check-multiple-outlineclipboard-fileclipboard-file-outlineclipboard-multipleclipboard-multiple-outlineclipboard-play-multipleclipboard-play-multiple-outlineclipboard-text-multipleclipboard-text-multiple-outline folder-markerfolder-marker-outlineformat-list-textinbox-arrow-down-outlineinbox-arrow-up-outline inbox-fullinbox-full-outline inbox-outlinelightbulb-cfl-spiral magnify-scanmap-marker-multiple-outlinepercent-outlinephone-classic-offplay-boxaccount-eye-outline safe-squaresafe-square-outline scoreboardscoreboard-outline select-markerselect-multipleselect-multiple-markerselection-markerselection-multiple-markerselection-multiplestar-box-multiplestar-box-multiple-outline toy-bricktoy-brick-markertoy-brick-marker-outlinetoy-brick-minustoy-brick-minus-outlinetoy-brick-outlinetoy-brick-plustoy-brick-plus-outlinetoy-brick-removetoy-brick-remove-outlinetoy-brick-searchtoy-brick-search-outlinetray tray-alert tray-full tray-minus tray-plus tray-removetruck-check-outlinetruck-delivery-outlinetruck-fast-outline truck-outlineusb-flash-driveusb-flash-drive-outline water-polo battery-lowbattery-medium battery-highbattery-charging-lowbattery-charging-mediumbattery-charging-high hexadecimalgesture-tap-buttongesture-tap-box lan-check keyboard-f1 keyboard-f2 keyboard-f3 keyboard-f4 keyboard-f5 keyboard-f6 keyboard-f7 keyboard-f8 keyboard-f9 keyboard-f10 keyboard-f11 keyboard-f12 keyboard-esctoslinkcheese string-lightsstring-lights-offwhistle-outline stairs-up stairs-down escalator-upescalator-down elevator-up elevator-downlightbulb-cfl-spiral-offcomment-edit-outlinetooltip-edit-outline monitor-edit email-syncemail-sync-outlinechat-alert-outlinechat-processing-outlinesnowflake-meltcloud-check-outlinelightbulb-group-offlightbulb-group-off-outlinelightbulb-multiple-offlightbulb-multiple-off-outline chat-sleepchat-sleep-outlinegarage-variantgarage-open-variantgarage-alert-variantcloud-sync-outlineglobe-light-outlinecellphone-nfc-offleaf-offleaf-maple-offmap-marker-leftmap-marker-rightmap-marker-left-outlinemap-marker-right-outlineaccount-cancelaccount-cancel-outline file-clockfile-clock-outline folder-tablefolder-table-outline hydro-powerdoorbellbulmaiobrokeroci label-percentlabel-percent-outlinecheckbox-blank-offcheckbox-blank-off-outline square-offsquare-off-outlinedrag-horizontal-variantdrag-vertical-variantmessage-arrow-leftmessage-arrow-left-outlinemessage-arrow-rightmessage-arrow-right-outlinedatabase-markertag-multiple-outlinemap-marker-plus-outlinemap-marker-minus-outlinemap-marker-remove-outlinemap-marker-check-outlinemap-marker-radius-outlinemap-marker-off-outline molecule-co jump-rope kettlebellaccount-convert-outlinebunk-bed fleur-de-lisskiski-cross-country ski-water snowboardaccount-tie-voiceaccount-tie-voice-outlineaccount-tie-voice-offaccount-tie-voice-off-outline beer-outlineglass-pint-outlinecoffee-to-go-outline cup-outlinebottle-wine-outlineearth-arrow-rightkey-arrow-rightformat-color-marker-cancel mother-heartcurrency-eur-off semantic-web kettle-alertkettle-alert-outline kettle-steamkettle-steam-outline kettle-offkettle-off-outline simple-iconsbriefcase-check-outlineclipboard-plus-outline download-lockdownload-lock-outlinehammer-screwdriver hammer-wrenchhydraulic-oil-levelhydraulic-oil-temperature medal-outlinerodent abjad-arabic abjad-hebrewabugida-devanagari abugida-thaialphabet-aurebeshalphabet-cyrillicalphabet-greekalphabet-latinalphabet-piqad ideogram-cjkideogram-cjk-variantsyllabary-hangulsyllabary-hiraganasyllabary-katakanasyllabary-katakana-halfwidthalphabet-tengwar head-alerthead-alert-outline head-checkhead-check-outlinehead-coghead-cog-outlinehead-dots-horizontalhead-dots-horizontal-outline head-flashhead-flash-outline head-hearthead-heart-outlinehead-lightbulbhead-lightbulb-outline head-minushead-minus-outline head-plushead-plus-outline head-questionhead-question-outline head-removehead-remove-outlinehead-snowflakehead-snowflake-outline head-synchead-sync-outlinehvac pencil-ruler pipe-wrenchwidgets-outlinetelevision-ambient-light propane-tankpropane-tank-outline folder-musicfolder-music-outlineklingonpalette-swatch-outlineform-textbox-lockhead head-outline shield-half store-outlinegoogle-downasaurbottle-soda-classic-outlinesticker sticker-alertsticker-alert-outline sticker-checksticker-check-outline sticker-minussticker-minus-outlinesticker-outline sticker-plussticker-plus-outlinesticker-removesticker-remove-outline account-cogaccount-cog-outlineaccount-details-outline upload-lockupload-lock-outlinelabel-multiplelabel-multiple-outlinerefresh-circle sync-circlebookmark-music-outlinebookmark-remove-outlinebookmark-check-outline traffic-conecup-off-outline auto-downloadshuriken chart-ppfelevator-passenger compass-rose space-stationorder-bool-descendingsort-bool-ascendingsort-bool-ascending-variantsort-bool-descendingsort-bool-descending-variantsort-numeric-ascendingsort-numeric-descendinghuman-baby-changing-tablehuman-male-childhuman-wheelchairmicrosoft-accessmicrosoft-excelmicrosoft-powerpointmicrosoft-sharepointmicrosoft-wordnintendo-game-boy cable-data circle-halfcircle-half-fullcellphone-charging close-thick escalator-box lock-checklock-open-alertlock-open-checkrecycle-variant stairs-box hand-water table-refresh table-syncsize-xxssize-xssize-ssize-msize-xlsize-xxl size-xxxlticket-confirmation-outlinetimer timer-off book-accountbook-account-outlinerocket-outline home-searchhome-search-outlinecar-arrow-leftcar-arrow-right monitor-eyelipstickvirus virus-outline text-search table-account table-alerttable-arrow-downtable-arrow-lefttable-arrow-righttable-arrow-up table-cancel table-check table-clock table-cog table-eye-off table-heart table-key table-lock table-minustable-multiple table-network table-off table-starcar-cog car-settingscog-offcog-off-outlinecredit-card-checkcredit-card-check-outlinefile-tree-outlinefolder-star-multiplefolder-star-multiple-outlinehome-minus-outlinehome-plus-outlinehome-remove-outline scan-helper video-3d-off shield-bugshield-bug-outlineeyedropper-pluseyedropper-minuseyedropper-removeeyedropper-off baby-buggyumbrella-closed-variantumbrella-closed-outline email-offemail-off-outlinefood-variant-offplay-box-multiple-outline bell-cancelbell-cancel-outline bell-minusbell-minus-outline bell-removebell-remove-outlinebeehive-off-outline cheese-offcorn-offegg-offegg-off-outline egg-outlinefish-offflask-empty-offflask-empty-off-outline flask-offflask-off-outlinefruit-cherries-offfruit-citrus-off mushroom-offmushroom-off-outline soy-sauce-offseed-offseed-off-outlinetailwind form-dropdown form-selectpump earth-plus earth-minus earth-removeearth-box-plusearth-box-minusearth-box-removegas-station-offgas-station-off-outlinelightning-boltlightning-bolt-outline smoking-pipeaxis-arrow-info chat-plus chat-minus chat-removechat-plus-outlinechat-minus-outlinechat-remove-outlinebucketbucket-outlinepail image-remove image-minuspine-tree-fire cigar-offcube-offcube-off-outline dome-lightfood-drumstickfood-drumstick-outlineincognito-circleincognito-circle-off microwave-offpower-plug-off-outlinepower-plug-outline puzzle-checkpuzzle-check-outlinesmoking-pipe-off spoon-sugartable-split-cellticket-percent-outlinefuse-off fuse-alert heart-plus heart-minus heart-removeheart-plus-outlineheart-minus-outlineheart-remove-outlineheart-off-outlinemotion-sensor-off pail-plus pail-minus pail-removepail-off pail-outlinepail-plus-outlinepail-minus-outlinepail-remove-outlinepail-off-outlineclock-time-oneclock-time-twoclock-time-threeclock-time-fourclock-time-fiveclock-time-sixclock-time-sevenclock-time-eightclock-time-nineclock-time-tenclock-time-elevenclock-time-twelveclock-time-one-outlineclock-time-two-outlineclock-time-three-outlineclock-time-four-outlineclock-time-five-outlineclock-time-six-outlineclock-time-seven-outlineclock-time-eight-outlineclock-time-nine-outlineclock-time-ten-outlineclock-time-eleven-outlineclock-time-twelve-outlineprinter-search printer-eyeminus-circle-offminus-circle-off-outlinecontent-save-cogcontent-save-cog-outline set-square cog-refreshcog-refresh-outlinecog-synccog-sync-outline download-boxdownload-box-outlinedownload-circledownload-circle-outlineair-humidifier-off chili-offfood-drumstick-offfood-drumstick-off-outline food-steakfood-steak-off fan-alertfan-chevron-downfan-chevron-upfan-plus fan-minus fan-remove fan-speed-1 fan-speed-2 fan-speed-3ruglingerie wizard-hathours-24 cosine-wave sawtooth-wave square-wave triangle-wavewaveformfolder-multiple-plusfolder-multiple-plus-outline current-ac watering-canwatering-can-outline monitor-share laser-pointerview-array-outlineview-carousel-outlineview-column-outlineview-comfy-outlineview-dashboard-variant-outlineview-day-outlineview-list-outlineview-module-outlineview-parallel-outlineview-quilt-outlineview-sequential-outlineview-stream-outlineview-week-outlinecompare-horizontalcompare-verticalbriefcase-variantbriefcase-variant-outlinerelation-many-to-manyrelation-many-to-onerelation-many-to-one-or-manyrelation-many-to-only-onerelation-many-to-zero-or-manyrelation-many-to-zero-or-onerelation-one-or-many-to-manyrelation-one-or-many-to-one#relation-one-or-many-to-one-or-many relation-one-or-many-to-only-one$relation-one-or-many-to-zero-or-many#relation-one-or-many-to-zero-or-onerelation-one-to-manyrelation-one-to-onerelation-one-to-one-or-manyrelation-one-to-only-onerelation-one-to-zero-or-manyrelation-one-to-zero-or-onerelation-only-one-to-manyrelation-only-one-to-one relation-only-one-to-one-or-manyrelation-only-one-to-only-one!relation-only-one-to-zero-or-many relation-only-one-to-zero-or-onerelation-zero-or-many-to-manyrelation-zero-or-many-to-one$relation-zero-or-many-to-one-or-many!relation-zero-or-many-to-only-one%relation-zero-or-many-to-zero-or-many$relation-zero-or-many-to-zero-or-onerelation-zero-or-one-to-manyrelation-zero-or-one-to-one#relation-zero-or-one-to-one-or-many relation-zero-or-one-to-only-one$relation-zero-or-one-to-zero-or-many#relation-zero-or-one-to-zero-or-one alert-plus alert-minus alert-removealert-plus-outlinealert-minus-outlinealert-remove-outline carabinerfencing skateboardpolotractor-variant radiology-boxradiology-box-outline skull-scanskull-scan-outlineplus-minus-variantsource-branch-plussource-branch-minussource-branch-removesource-branch-refreshsource-branch-syncsource-branch-check puzzle-plus puzzle-minus puzzle-remove puzzle-edit puzzle-heart puzzle-starpuzzle-plus-outlinepuzzle-minus-outlinepuzzle-remove-outlinepuzzle-edit-outlinepuzzle-heart-outlinepuzzle-star-outlinerhombus-medium-outlinerhombus-split-outline rocket-launchrocket-launch-outline set-merge set-split beekeeper snowflake-offweather-sunny-offclipboard-editclipboard-edit-outline notebook-edit human-editnotebook-edit-outline cash-lockcash-lock-open!account-supervisor-circle-outline car-outline cash-check filter-offfilter-off-outline spirit-level wheel-barrow book-checkbook-check-outlinenotebook-checknotebook-check-outlinebook-open-variant sign-poleshoreshape-square-rounded-plussquare-roundedsquare-rounded-outline archive-alertarchive-alert-outlinepower-socket-it square-circlesymbol water-alertwater-alert-outline water-checkwater-check-outline water-minuswater-minus-outlinewater-off-outlinewater-percent-alert water-pluswater-plus-outline water-removewater-remove-outlinesnakeformat-text-variant-outlinegrassaccess-point-off currency-mntdock-topshare-variant-outline transit-skipyurtfile-document-multiplefile-document-multiple-outline ev-plug-ccs1 ev-plug-ccs2ev-plug-chademo ev-plug-tesla ev-plug-type1 ev-plug-type2office-building-outlineoffice-building-markeroffice-building-marker-outlineprogress-question basket-minusbasket-minus-outline basket-offbasket-off-outline basket-plusbasket-plus-outline basket-removebasket-remove-outlineaccount-reactivateaccount-reactivate-outlinecar-lifted-pickupvideo-high-definition phone-removephone-remove-outlinethermometer-offtimeline-checktimeline-check-outlinetimeline-minustimeline-minus-outlinetimeline-removetimeline-remove-outlineaccess-point-checkaccess-point-minusaccess-point-plusaccess-point-remove data-matrixdata-matrix-editdata-matrix-minusdata-matrix-plusdata-matrix-removedata-matrix-scan tune-varianttune-vertical-variantrakeshimmertransit-connection-horizontalsort-calendar-ascendingsort-calendar-descendingsort-clock-ascendingsort-clock-ascending-outlinesort-clock-descendingsort-clock-descending-outline chart-boxchart-box-outlinechart-box-plus-outlinemouse-move-down mouse-move-upmouse-move-vertical pitchforkvanish-quarterapplication-settings-outline delete-clockdelete-clock-outlinekangaroo phone-dialphone-dial-outlinestar-off-outline tooltip-checktooltip-check-outline tooltip-minustooltip-minus-outlinetooltip-removetooltip-remove-outlinepretzel star-plus star-minus star-remove star-checkstar-plus-outlinestar-minus-outlinestar-remove-outlinestar-check-outline eiffel-tower submarine sofa-outline sofa-singlesofa-single-outline text-account human-queue food-halal food-kosher key-chainkey-chain-variantlampsapplication-cog-outline dance-polesocial-distance-2-meterssocial-distance-6-feetcalendar-cursor emoticon-sickemoticon-sick-outlinehand-heart-outline hand-washhand-wash-outline human-canelotionlotion-outline lotion-pluslotion-plus-outline face-maskface-mask-outline reiterate butterflybutterfly-outline bag-suitcasebag-suitcase-outlinebag-suitcase-offbag-suitcase-off-outline motion-play motion-pausemotion-play-outlinemotion-pause-outline"arrow-top-left-thin-circle-outline#arrow-top-right-thin-circle-outline&arrow-bottom-right-thin-circle-outline%arrow-bottom-left-thin-circle-outlinearrow-up-thin-circle-outlinearrow-right-thin-circle-outlinearrow-down-thin-circle-outlinearrow-left-thin-circle-outlinehuman-capacity-decreasehuman-capacity-increasehuman-greeting-proximityhvac-off inbox-removeinbox-remove-outlinehandshake-outlineladderrouter-wireless-offseesawslidecalculator-variant-outlineshield-account-variantshield-account-variant-outline message-flashmessage-flash-outline list-statusmessage-bookmarkmessage-bookmark-outlinecomment-bookmarkcomment-bookmark-outline comment-flashcomment-flash-outlinemotionmotion-outlinebicycle-electriccar-electric-outlinechart-timeline-variant-shimmermoped-electricmoped-electric-outline moped-outlinemotorbike-electricrickshawrickshaw-electricscooterscooter-electrichorse horse-human horse-variantunicornunicorn-variant alarm-panelalarm-panel-outlinebird shoe-cleat shoe-sneakerhuman-female-dance shoe-balletnumeric-positive-1face-man-shimmerface-man-shimmer-outlineface-woman-shimmerface-woman-shimmer-outlinehome-alert-outlinelock-alert-outlinelock-open-alert-outlinesim-alert-outlinesim-off-outline sim-outlinebook-open-page-variant-outline fire-alertray-start-vertex-end camera-flipcamera-flip-outline orbit-variant circle-boxcircle-box-outlinemustache comment-minuscomment-minus-outline comment-offcomment-off-outline eye-removeeye-remove-outlineunicycleglass-cocktail-off glass-mug-offglass-mug-variant-offbicycle-penny-farthing cart-check cart-variantbaseball-diamondbaseball-diamond-outlinefridge-industrialfridge-industrial-alertfridge-industrial-alert-outlinefridge-industrial-offfridge-industrial-off-outlinefridge-industrial-outlinefridge-variantfridge-variant-alertfridge-variant-alert-outlinefridge-variant-offfridge-variant-off-outlinefridge-variant-outlinewindsockdance-ballroom dots-grid dots-square dots-triangle dots-hexagon card-minuscard-minus-outlinecard-offcard-off-outline card-removecard-remove-outlinetorchnavigation-outlinemap-marker-starmap-marker-star-outlinemanjarofast-forward-60 rewind-60 image-text family-tree car-emergencynotebook-minusnotebook-minus-outline notebook-plusnotebook-plus-outlinenotebook-removenotebook-remove-outline connection language-rustclipboard-minusclipboard-minus-outline clipboard-offclipboard-off-outlineclipboard-removeclipboard-remove-outlineclipboard-searchclipboard-search-outlineclipboard-text-offclipboard-text-off-outlineclipboard-text-searchclipboard-text-search-outlinedatabase-alert-outlinedatabase-arrow-down-outlinedatabase-arrow-left-outlinedatabase-arrow-right-outlinedatabase-arrow-up-outlinedatabase-check-outlinedatabase-clock-outlinedatabase-edit-outlinedatabase-export-outlinedatabase-import-outlinedatabase-lock-outlinedatabase-marker-outlinedatabase-minus-outlinedatabase-off-outlinedatabase-outlinedatabase-plus-outlinedatabase-refresh-outlinedatabase-remove-outlinedatabase-search-outlinedatabase-settings-outlinedatabase-sync-outlinedatabase-alertdatabase-arrow-downdatabase-arrow-leftdatabase-arrow-rightdatabase-arrow-updatabase-clock database-off calendar-lockcalendar-lock-outlinecontent-save-offcontent-save-off-outlinecredit-card-refreshcredit-card-refresh-outlinecredit-card-searchcredit-card-search-outlinecredit-card-synccredit-card-sync-outline database-cogdatabase-cog-outline message-offmessage-off-outline note-minusnote-minus-outline note-removenote-remove-outline note-searchnote-search-outline bank-checkbank-offbank-off-outline briefcase-offbriefcase-off-outlinebriefcase-variant-offbriefcase-variant-off-outlineghost-off-outline ghost-outline store-minus store-plus store-remove email-removeemail-remove-outline heart-cogheart-cog-outlineheart-settingsheart-settings-outline pentagramstar-cogstar-cog-outline star-settingsstar-settings-outline calendar-endcalendar-start cannabis-offmower mower-baglock-offlock-off-outline shark-finshark-fin-outline paw-outlinepaw-off-outlinesnailpig-variant-outlinepiggy-bank-outline robot-outlinerobot-off-outline book-alertbook-alert-outlinebook-arrow-downbook-arrow-down-outlinebook-arrow-leftbook-arrow-left-outlinebook-arrow-rightbook-arrow-right-outline book-arrow-upbook-arrow-up-outline book-cancelbook-cancel-outline book-clockbook-clock-outlinebook-cogbook-cog-outline book-editbook-edit-outlinebook-lock-open-outlinebook-lock-outline book-markerbook-marker-outlinebook-minus-outlinebook-music-outlinebook-offbook-off-outlinebook-plus-outline book-refreshbook-refresh-outlinebook-remove-outline book-settingsbook-settings-outline book-sync robot-angryrobot-angry-outlinerobot-confusedrobot-confused-outline robot-deadrobot-dead-outline robot-excitedrobot-excited-outline robot-loverobot-love-outline robot-offlock-check-outline lock-minuslock-minus-outlinelock-open-check-outlinelock-open-minuslock-open-minus-outlinelock-open-pluslock-open-plus-outlinelock-open-removelock-open-remove-outlinelock-plus-outline lock-removelock-remove-outline wifi-alertwifi-arrow-downwifi-arrow-leftwifi-arrow-left-rightwifi-arrow-right wifi-arrow-upwifi-arrow-up-down wifi-cancel wifi-checkwifi-cog wifi-lockwifi-lock-open wifi-marker wifi-minus wifi-plus wifi-refresh wifi-remove wifi-settings wifi-syncbook-sync-outlinebook-educationbook-education-outlinewifi-strength-1-lock-openwifi-strength-2-lock-openwifi-strength-3-lock-openwifi-strength-4-lock-openwifi-strength-lock-open-outline cookie-alertcookie-alert-outline cookie-checkcookie-check-outline cookie-cogcookie-cog-outline cookie-pluscookie-plus-outline cookie-removecookie-remove-outline cookie-minuscookie-minus-outlinecookie-settingscookie-settings-outlinecookie-outline tape-driveabacuscalendar-clock-outlineclipboard-clockclipboard-clock-outline cookie-clockcookie-clock-outline cookie-editcookie-edit-outline cookie-lockcookie-lock-outline cookie-offcookie-off-outlinecookie-refreshcookie-refresh-outline dog-side-offgift-offgift-off-outline gift-opengift-open-outline movie-checkmovie-check-outline movie-cogmovie-cog-outline movie-minusmovie-minus-outline movie-offmovie-off-outlinemovie-open-checkmovie-open-check-outlinemovie-open-cogmovie-open-cog-outlinemovie-open-editmovie-open-edit-outlinemovie-open-minusmovie-open-minus-outlinemovie-open-offmovie-open-off-outlinemovie-open-playmovie-open-play-outlinemovie-open-plusmovie-open-plus-outlinemovie-open-removemovie-open-remove-outlinemovie-open-settingsmovie-open-settings-outlinemovie-open-starmovie-open-star-outline movie-playmovie-play-outline movie-plusmovie-plus-outline movie-removemovie-remove-outlinemovie-settingsmovie-settings-outline movie-starmovie-star-outline robot-happyrobot-happy-outlineturkey food-turkeyfan-autoalarm-light-offalarm-light-off-outline broadcast broadcast-offfire-off firework-offprojector-screen-outlinescript-text-keyscript-text-key-outlinescript-text-playscript-text-play-outlinesurround-sound-2-1surround-sound-5-1-2tag-arrow-downtag-arrow-down-outlinetag-arrow-lefttag-arrow-left-outlinetag-arrow-righttag-arrow-right-outline tag-arrow-uptag-arrow-up-outlinetrain-car-passengertrain-car-passenger-doortrain-car-passenger-door-opentrain-car-passenger-variant webcam-off chat-questionchat-question-outlinemessage-questionmessage-question-outlinekettle-pour-overmessage-reply-outlinemessage-reply-text-outlinekoalacheck-decagram-outline star-shootingstar-shooting-outline table-picnic kitesurfing paraglidingsurfingfloor-lamp-torchiere mortar-pestlecast-audio-variantgradient-horizontalarchive-cancelarchive-cancel-outline archive-checkarchive-check-outline archive-clockarchive-clock-outline archive-cogarchive-cog-outline archive-editarchive-edit-outline archive-eyearchive-eye-outline archive-lockarchive-lock-openarchive-lock-open-outlinearchive-lock-outlinearchive-markerarchive-marker-outline archive-minusarchive-minus-outline archive-musicarchive-music-outline archive-offarchive-off-outline archive-plusarchive-plus-outlinearchive-refresharchive-refresh-outlinearchive-removearchive-remove-outlinearchive-searcharchive-search-outlinearchive-settingsarchive-settings-outline archive-stararchive-star-outline archive-syncarchive-sync-outline brush-offfile-image-markerfile-image-marker-outline file-markerfile-marker-outlinehamburger-checkhamburger-minus hamburger-offhamburger-plushamburger-remove image-markerimage-marker-outline note-alertnote-alert-outline note-checknote-check-outline note-editnote-edit-outlinenote-offnote-off-outlineprinter-off-outlineprinter-outlineprogress-pencil progress-star sausage-off folder-eyefolder-eye-outlineinformation-offinformation-off-outline sticker-textsticker-text-outline web-cancel web-refreshweb-sync chandelier home-switchhome-switch-outline sun-snowflake ceiling-fanceiling-fan-lightsmokefencelight-recessed battery-lockbattery-lock-open folder-hiddenmirror-rectanglemirror-variantarrow-down-leftarrow-down-left-boldarrow-down-rightarrow-down-right-boldarrow-left-bottomarrow-left-bottom-boldarrow-left-toparrow-left-top-boldarrow-right-bottomarrow-right-bottom-boldarrow-right-toparrow-right-top-boldarrow-u-down-leftarrow-u-down-left-boldarrow-u-down-rightarrow-u-down-right-boldarrow-u-left-bottomarrow-u-left-bottom-boldarrow-u-left-toparrow-u-left-top-boldarrow-u-right-bottomarrow-u-right-bottom-boldarrow-u-right-toparrow-u-right-top-boldarrow-u-up-leftarrow-u-up-left-boldarrow-u-up-rightarrow-u-up-right-bold arrow-up-leftarrow-up-left-boldarrow-up-rightarrow-up-right-bold select-removeselection-ellipse-removeselection-removehuman-greetingph water-syncceiling-light-outlinefloor-lamp-outlinewall-sconce-flat-outline wall-sconce-flat-variant-outlinewall-sconce-outlinewall-sconce-round-outline!wall-sconce-round-variant-outlinefloor-lamp-dual-outline$floor-lamp-torchiere-variant-outline lamp-outline lamps-outline candelabracandelabra-firemenorah menorah-firefloor-lamp-torchiere-outlinecredit-card-editcredit-card-edit-outline briefcase-eyebriefcase-eye-outlinesoundbar crown-circlecrown-circle-outlinebattery-arrow-downbattery-arrow-down-outlinebattery-arrow-upbattery-arrow-up-outline battery-checkbattery-check-outline battery-minusbattery-minus-outline battery-plusbattery-plus-outlinebattery-removebattery-remove-outline chili-alertchili-alert-outlinechili-hot-outlinechili-medium-outlinechili-mild-outlinechili-off-outlinecake-variant-outline card-multiplecard-multiple-outlineaccount-cowboy-hat-outlinelightbulb-spotlightbulb-spot-offfence-electricgate-arrow-left gate-alert boom-gate-upboom-gate-up-outline garage-lockgarage-variant-lockcellphone-check sun-wirelesssun-wireless-outlinelightbulb-autolightbulb-auto-outlinelightbulb-variantlightbulb-variant-outlinelightbulb-fluorescent-tube"lightbulb-fluorescent-tube-outline water-circle fire-circlesmoke-detector-outlinesmoke-detector-offsmoke-detector-off-outlinesmoke-detector-variantsmoke-detector-variant-offprojector-screen-offprojector-screen-off-outlineprojector-screen-variantprojector-screen-variant-off$projector-screen-variant-off-outline projector-screen-variant-outline brush-variant car-wrenchaccount-injuryaccount-injury-outlinebalconybathtubbathtub-outlineblender-outlinecoffee-maker-outline countertopcountertop-outline door-slidingdoor-sliding-lockdoor-sliding-open hand-wavehand-wave-outlinehuman-male-female-childiron iron-outline liquid-spotmosque-outline shield-moonshield-moon-outlinetraffic-light-outlinehand-front-lefthand-back-left-outlinehand-back-right-outlinehand-front-left-outlinehand-front-right-outlinehand-back-left-offhand-back-right-offhand-back-left-off-outlinehand-back-right-off-outline battery-syncbattery-sync-outlinefood-takeout-boxfood-takeout-box-outline iron-boardpolice-stationcellphone-markertooltip-cellphone table-pivottunneltunnel-outlinearrow-projectile-multiplearrow-projectile bow-arrow axe-battlemace magic-staffspearcurtainscurtains-closedhuman-non-binary waterfall egg-fried food-hot-dog induction pipe-valveshipping-palletearbuds earbuds-offearbuds-off-outlineearbuds-outlinecircle-opacitysquare-opacity water-opacityvector-polygon-variantvector-square-closevector-square-openwaves-arrow-leftwaves-arrow-rightwaves-arrow-up cash-fastradioactive-circleradioactive-circle-outlinecctv-offformat-list-group clock-plusclock-plus-outline clock-minusclock-minus-outline clock-removeclock-remove-outlineaccount-arrow-upaccount-arrow-downaccount-arrow-down-outlineaccount-arrow-up-outlineaudio-input-rcaaudio-input-stereo-minijackaudio-input-xlrhorse-variant-fast email-fastemail-fast-outlinecamera-documentcamera-document-off glass-fragilemagnify-expand town-hall monitor-small diversify car-wireless car-selectairplane-alertairplane-checkairplane-clock airplane-cog airplane-editairplane-markerairplane-minus airplane-plusairplane-removeairplane-searchairplane-settings flower-pollenflower-pollen-outline hammer-sickle view-galleryview-gallery-outlineumbrella-beachumbrella-beach-outline cabin-a-frameall-inclusive-boxall-inclusive-box-outline hand-coinhand-coin-outline truck-flatbed layers-edit multicasthydrogen-stationthermometer-bluetoothtireforestaccount-tie-hataccount-tie-hat-outlineaccount-wrenchaccount-wrench-outline bicycle-cargocalendar-collapse-horizontalcalendar-expand-horizontalcards-club-outline cards-playingcards-playing-clubcards-playing-club-multiple#cards-playing-club-multiple-outlinecards-playing-club-outlinecards-playing-diamondcards-playing-diamond-multiple&cards-playing-diamond-multiple-outlinecards-playing-diamond-outlinecards-playing-heartcards-playing-heart-multiple$cards-playing-heart-multiple-outlinecards-playing-heart-outlinecards-playing-spadecards-playing-spade-multiple$cards-playing-spade-multiple-outlinecards-playing-spade-outlinecards-spade-outlinecompare-removedolphin fuel-cell hand-extendedhand-extended-outlineprinter-3d-nozzle-heatprinter-3d-nozzle-heat-outlineshark shark-off shield-crownshield-crown-outline shield-swordshield-sword-outlinesickle store-alertstore-alert-outline store-checkstore-check-outline store-clockstore-clock-outline store-cogstore-cog-outline store-editstore-edit-outline store-markerstore-marker-outlinestore-minus-outline store-offstore-off-outlinestore-plus-outlinestore-remove-outline store-searchstore-search-outlinestore-settingsstore-settings-outlinesun-thermometersun-thermometer-outlinetruck-cargo-containervector-square-editvector-square-minusvector-square-plusvector-square-removeceiling-light-multipleceiling-light-multiple-outlinewiper-wash-alert cart-heart virus-offvirus-off-outlinemap-marker-accountmap-marker-account-outline basket-checkbasket-check-outlinecredit-card-lockcredit-card-lock-outlineformat-underline-wavycontent-save-checkcontent-save-check-outline filter-checkfilter-check-outlineflag-offflag-off-outlinenavigation-variant-outline refresh-auto tilde-off fit-to-screenfit-to-screen-outlineweather-cloudy-clocksmart-card-offsmart-card-off-outlineclipboard-text-clockclipboard-text-clock-outline teddy-bearcow-offeye-arrow-lefteye-arrow-left-outlineeye-arrow-righteye-arrow-right-outline home-batteryhome-battery-outlinehome-lightning-bolthome-lightning-bolt-outline leaf-circleleaf-circle-outline tag-searchtag-search-outlinecar-brake-fluid-levelcar-brake-low-pressurecar-brake-temperaturecar-brake-worn-liningscar-light-alertcar-speed-limitercredit-card-chipcredit-card-chip-outlinecredit-card-fastcredit-card-fast-outlineintegrated-circuit-chipthumbs-up-down-outlinefood-off-outline food-outlineformat-page-splitchart-waterfallgamepad-outlinenetwork-strength-4-cog account-syncaccount-sync-outline bus-electricliquor database-eyedatabase-eye-offdatabase-eye-off-outlinedatabase-eye-outlinetimer-settingstimer-settings-outline timer-cogtimer-cog-outline#checkbox-marked-circle-plus-outlinepanorama-horizontalpanorama-verticaladvertisementsadvertisements-offtransmission-tower-exporttransmission-tower-importsmoke-detector-alertsmoke-detector-alert-outlinesmoke-detector-variant-alertcoffee-maker-checkcoffee-maker-check-outline cog-pausecog-pause-outlinecog-playcog-play-outlinecog-stopcog-stop-outlinecopyleftfast-forward-15file-image-minusfile-image-minus-outlinefile-image-plusfile-image-plus-outlinefile-image-removefile-image-remove-outline message-badgemessage-badge-outlinenewspaper-checknewspaper-remove publish-off rewind-15view-dashboard-editview-dashboard-edit-outlineoffice-building-cogoffice-building-cog-outline hand-clapconecone-offcylinder cylinder-off octahedronoctahedron-offpyramid pyramid-offsphere sphere-offformat-letter-spacing french-friesscent scent-offpalette-swatch-variant email-sealemail-seal-outlinestool stool-outlinepanorama-wide-angleaccount-lock-openaccount-lock-open-outlinealign-horizontal-distributealign-vertical-distributearrow-bottom-left-bold-box"arrow-bottom-left-bold-box-outlinearrow-bottom-right-bold-box#arrow-bottom-right-bold-box-outlinearrow-top-left-bold-boxarrow-top-left-bold-box-outlinearrow-top-right-bold-box arrow-top-right-bold-box-outlinebookmark-box-multiplebookmark-box-multiple-outlinebullhorn-variantbullhorn-variant-outlinecandy candy-offcandy-off-outline candy-outline car-clockcrowdcurrency-rupeediving dots-circleelevator-passenger-offelevator-passenger-off-outlineelevator-passenger-outline eye-refresheye-refresh-outline folder-checkfolder-check-outline human-dollyhuman-white-cane ip-outline key-alertkey-alert-outlinekite kite-outlinelight-flood-downlight-flood-upmicrophone-questionmicrophone-question-outlinecradlepanorama-outlinepanorama-spherepanorama-sphere-outlinepanorama-variantpanorama-variant-outlinecradle-outlinefraction-one-half phone-refreshphone-refresh-outline phone-syncphone-sync-outlinerazor-double-edgerazor-single-edge rotate-360shield-lock-openshield-lock-open-outlinesitemap-outlinesprinkler-fire tab-searchtimer-sand-completetimer-sand-pausedvacuumvacuum-outline wrench-clockpliers sun-compasstruck-snowflake camera-markercamera-marker-outline video-markervideo-marker-outlinewind-turbine-alertwind-turbine-check truck-plus truck-minus truck-removearrow-right-thinarrow-left-thin arrow-up-thinarrow-down-thinarrow-top-right-thinarrow-top-left-thinarrow-bottom-left-thinarrow-bottom-right-thinscale-unbalanceddraw-pen clock-editclock-edit-outlinetruck-plus-outlinetruck-minus-outlinetruck-remove-outlinecamera-off-outlinehome-group-plushome-group-minushome-group-remove file-signattachment-lockcellphone-arrow-down-variantfile-chart-checkfile-chart-check-outlinefile-lock-openfile-lock-open-outlinefolder-questionfolder-question-outline message-fastmessage-fast-outlinemessage-text-fastmessage-text-fast-outlinemonitor-arrow-downmonitor-arrow-down-variant needle-off numeric-offpackage-variant-closed-minuspackage-variant-closed-pluspackage-variant-closed-removepackage-variant-minuspackage-variant-pluspackage-variant-removepaperclip-lock phone-clockreceipt-text-outlinetransmission-tower-off truck-alerttruck-alert-outlinebone-offlightbulb-alertlightbulb-alert-outlinelightbulb-questionlightbulb-question-outline battery-clockbattery-clock-outline autorenew-offfolder-arrow-downfolder-arrow-down-outlinefolder-arrow-leftfolder-arrow-left-outlinefolder-arrow-left-rightfolder-arrow-left-right-outlinefolder-arrow-rightfolder-arrow-right-outlinefolder-arrow-upfolder-arrow-up-downfolder-arrow-up-down-outlinefolder-arrow-up-outline folder-cancelfolder-cancel-outline folder-filefolder-file-outline folder-offfolder-off-outline folder-playfolder-play-outline folder-wrenchfolder-wrench-outline image-refreshimage-refresh-outline image-syncimage-sync-outline percent-boxpercent-box-outlinepercent-circlepercent-circle-outline sale-outlinesquare-rounded-badgesquare-rounded-badge-outlinetriangle-small-downtriangle-small-upnotebook-heartnotebook-heart-outline brush-outline fruit-pearrawraw-off wall-fire home-clockhome-clock-outline camera-lockcamera-lock-outline play-box-lockplay-box-lock-openplay-box-lock-open-outlineplay-box-lock-outlinerobot-industrial-outline gas-burnervideo-2d book-heartbook-heart-outlineaccount-hard-hat-outlineaccount-schoolaccount-school-outlinelibrary-outline projector-offlight-switch-offtoggle-switch-varianttoggle-switch-variant-offasterisk-circle-outlinebarrel-outlinebell-cogbell-cog-outlineblinds-horizontalblinds-horizontal-closedblinds-verticalblinds-vertical-closedbulkhead-lightcalendar-today-outlinecalendar-week-begin-outlinecalendar-filtercalendar-filter-outlinecalendar-week-outline cloud-percentcloud-percent-outlinecoach-lamp-variantcompost currency-fra fan-clockfile-rotate-leftfile-rotate-left-outlinefile-rotate-rightfile-rotate-right-outlinefilter-multiplefilter-multiple-outline gymnastics hand-clap-off heat-pumpheat-pump-outline heat-wavehome-offhome-off-outline landslidelandslide-outlinelaptop-accountled-strip-variant-offlightbulb-nightlightbulb-night-outlinelightbulb-on-10lightbulb-on-20lightbulb-on-30lightbulb-on-40lightbulb-on-50lightbulb-on-60lightbulb-on-70lightbulb-on-80lightbulb-on-90meter-electricmeter-electric-outline meter-gasmeter-gas-outlinemonitor-accountpill-off plus-lockplus-lock-openpool-thermometer post-lamprabbit-variantrabbit-variant-outlinereceipt-text-checkreceipt-text-check-outlinereceipt-text-minusreceipt-text-minus-outlinereceipt-text-plusreceipt-text-plus-outlinereceipt-text-removereceipt-text-remove-outline roller-shaderoller-shade-closed seed-plusseed-plus-outlineshopping-search-outlinesnowflake-checksnowflake-thermometer snowshoeingsolar-power-variantsolar-power-variant-outline storage-tankstorage-tank-outline sun-clocksun-clock-outlinesun-snowflake-variant tag-checktag-check-outline text-box-edittext-box-edit-outlinetext-search-variantthermometer-checkthermometer-watertsunamiturbinevolcanovolcano-outlinewater-thermometerwater-thermometer-outline wheelchair wind-powerwind-power-outlinewindow-shutter-cogwindow-shutter-settingsaccount-tie-womanbriefcase-arrow-left-right"briefcase-arrow-left-right-outlinebriefcase-arrow-up-downbriefcase-arrow-up-down-outline cash-clock cash-syncfile-arrow-left-rightfile-arrow-left-right-outlinefile-arrow-up-downfile-arrow-up-down-outlinefile-document-alertfile-document-alert-outlinefile-document-checkfile-document-check-outlinefile-document-minusfile-document-minus-outlinefile-document-plusfile-document-plus-outlinefile-document-removefile-document-remove-outline file-minusfile-minus-outline filter-cogfilter-cog-outlinefilter-settingsfilter-settings-outlinefolder-lock-open-outlinefolder-lock-outline forum-minusforum-minus-outline forum-plusforum-plus-outline forum-removeforum-remove-outline heating-coil image-lockimage-lock-outline land-fields land-plotsland-plots-circleland-plots-circle-variantland-rows-horizontalland-rows-verticalmedical-cotton-swabrolodexrolodex-outlinesort-variant-off tally-mark-1 tally-mark-2 tally-mark-3 tally-mark-4 tally-mark-5attachment-checkattachment-minusattachment-offattachment-plusattachment-removepaperclip-checkpaperclip-minus paperclip-offpaperclip-pluspaperclip-remove network-pos timer-alerttimer-alert-outline timer-canceltimer-cancel-outline timer-checktimer-check-outline timer-edittimer-edit-outline timer-locktimer-lock-opentimer-lock-open-outlinetimer-lock-outline timer-markertimer-marker-outline timer-minustimer-minus-outline timer-musictimer-music-outline timer-pausetimer-pause-outline timer-playtimer-play-outline timer-plustimer-plus-outline timer-refreshtimer-refresh-outline timer-removetimer-remove-outline timer-startimer-star-outline timer-stoptimer-stop-outline timer-synctimer-sync-outlineear-hearing-loopsail-boat-sinklecternaccount-network-offaccount-network-off-outlinebaby-buggy-off border-radius bug-pausebug-pause-outlinebug-playbug-play-outlinebug-stopbug-stop-outlineformat-letter-spacing-variantformat-line-heightformat-paragraph-spacing gate-buffer plane-car plane-traintrack-light-offchurch-outlinestadium-outline synagoguesynagogue-outlinetemple-buddhisttemple-buddhist-outline temple-hindutemple-hindu-outline account-badgeaccount-badge-outlinebag-personal-tagbag-personal-tag-outlineprinter-3d-offthermometer-auto volume-equalspeaker-messagefast-forward-45 rewind-45 medicationmedication-outline motorbike-offthermostat-autothermostat-box-autoprinter-3d-nozzle-offprinter-3d-nozzle-off-outlinetelevision-speakertelevision-speaker-offflash-triangleflash-triangle-outline desk-lamp-off desk-lamp-ontable-questionpump-off eject-circleeject-circle-outline image-checkimage-check-outline sun-anglesun-angle-outlinefaucetfaucet-variantthermometer-probethermometer-probe-offtrain-car-autorack train-car-boxtrain-car-box-fulltrain-car-box-opentrain-car-caboosetrain-car-centerbeamtrain-car-centerbeam-fulltrain-car-containertrain-car-flatbedtrain-car-flatbed-cartrain-car-flatbed-tanktrain-car-gondolatrain-car-gondola-fulltrain-car-hoppertrain-car-hopper-coveredtrain-car-hopper-fulltrain-car-intermodaltrain-car-tankphone-incoming-outgoingphone-incoming-outgoing-outlinecontent-save-pluscontent-save-plus-outlinecontent-save-minuscontent-save-minus-outlineflash-off-outlineimage-plus-outlineimage-minus-outlineimage-remove-outline folder-minusfolder-minus-outline file-xml-box pill-multiple sign-languagesign-language-outline button-cursorbutton-pointer package-checkpackage-variant-closed-checkcalendar-star-outlinecheckbox-intermediate-variantcalendar-multiselect-outlineformat-list-group-plusair-purifier-offselect-arrow-upselect-arrow-down weather-dustcalendar-lock-opencalendar-lock-open-outlinerobot-vacuum-alertrobot-vacuum-variant-alertmower-on mower-bag-onemail-lock-outlinecalendar-alert-outline$calendar-collapse-horizontal-outlinecalendar-cursor-outlinecalendar-edit-outlinecalendar-end-outline"calendar-expand-horizontal-outlinecalendar-export-outlinecalendar-heart-outlinecalendar-import-outlinecalendar-minus-outlinecalendar-plus-outlinecalendar-question-outlinecalendar-search-outlinecalendar-start-outlineatv human-walker speaker-play speaker-pause speaker-stop bookmark-boxbookmark-box-outline diving-scubavector-point-minusvector-point-pluspause-box-outlinelist-boxlist-box-outlinestorefront-checkstorefront-check-outlinestorefront-editstorefront-edit-outlinestorefront-plusstorefront-plus-outlinestorefront-minusstorefront-minus-outlinestorefront-removestorefront-remove-outlineawningawning-outlinemusic-note-minus message-checkmessage-check-outline table-filter car-searchcar-search-outline wrench-checkwrench-check-outline wrench-cogwrench-cog-outlinewrench-clock-outline bed-clockcloudsknob multimediawater-boiler-autotranslate-variantartboard currency-uah hand-cyclecalendar-badgecalendar-badge-outlinesilo home-silohome-silo-outlineprogress-helperwindow-shutter-auto account-cardaccount-card-outlineaccount-credit-cardaccount-credit-card-outlineoffice-building-plusoffice-building-plus-outlineoffice-building-minusoffice-building-minus-outlineoffice-building-removeoffice-building-remove-outline cart-percent sign-yieldflag-variant-offflag-variant-off-outlineflag-variant-plusflag-variant-plus-outlineflag-variant-minusflag-variant-minus-outlineflag-variant-removeflag-variant-remove-outline hdmi-portruby-prawn-icon-3.1.0/data/fonts/mdi/mdi.yml000066400000000000000000006737051430430672300207020ustar00rootroot00000000000000--- mdi: __font_version__: 7.0.96 ab-testing: "\U000F01C9" abacus: "\U000F16E0" abjad-arabic: "\U000F1328" abjad-hebrew: "\U000F1329" abugida-devanagari: "\U000F132A" abugida-thai: "\U000F132B" access-point: "\U000F0003" access-point-check: "\U000F1538" access-point-minus: "\U000F1539" access-point-network: "\U000F0002" access-point-network-off: "\U000F0BE1" access-point-off: "\U000F1511" access-point-plus: "\U000F153A" access-point-remove: "\U000F153B" account: "\U000F0004" account-alert: "\U000F0005" account-alert-outline: "\U000F0B50" account-arrow-down: "\U000F1868" account-arrow-down-outline: "\U000F1869" account-arrow-left: "\U000F0B51" account-arrow-left-outline: "\U000F0B52" account-arrow-right: "\U000F0B53" account-arrow-right-outline: "\U000F0B54" account-arrow-up: "\U000F1867" account-arrow-up-outline: "\U000F186A" account-badge: "\U000F1B0A" account-badge-outline: "\U000F1B0B" account-box: "\U000F0006" account-box-multiple: "\U000F0934" account-box-multiple-outline: "\U000F100A" account-box-outline: "\U000F0007" account-cancel: "\U000F12DF" account-cancel-outline: "\U000F12E0" account-card: "\U000F1BA4" account-card-outline: "\U000F1BA5" account-cash: "\U000F1097" account-cash-outline: "\U000F1098" account-check: "\U000F0008" account-check-outline: "\U000F0BE2" account-child: "\U000F0A89" account-child-circle: "\U000F0A8A" account-child-outline: "\U000F10C8" account-circle: "\U000F0009" account-circle-outline: "\U000F0B55" account-clock: "\U000F0B56" account-clock-outline: "\U000F0B57" account-cog: "\U000F1370" account-cog-outline: "\U000F1371" account-convert: "\U000F000A" account-convert-outline: "\U000F1301" account-cowboy-hat: "\U000F0E9B" account-cowboy-hat-outline: "\U000F17F3" account-credit-card: "\U000F1BA6" account-credit-card-outline: "\U000F1BA7" account-details: "\U000F0631" account-details-outline: "\U000F1372" account-edit: "\U000F06BC" account-edit-outline: "\U000F0FFB" account-eye: "\U000F0420" account-eye-outline: "\U000F127B" account-filter: "\U000F0936" account-filter-outline: "\U000F0F9D" account-group: "\U000F0849" account-group-outline: "\U000F0B58" account-hard-hat: "\U000F05B5" account-hard-hat-outline: "\U000F1A1F" account-heart: "\U000F0899" account-heart-outline: "\U000F0BE3" account-injury: "\U000F1815" account-injury-outline: "\U000F1816" account-key: "\U000F000B" account-key-outline: "\U000F0BE4" account-lock: "\U000F115E" account-lock-open: "\U000F1960" account-lock-open-outline: "\U000F1961" account-lock-outline: "\U000F115F" account-minus: "\U000F000D" account-minus-outline: "\U000F0AEC" account-multiple: "\U000F000E" account-multiple-check: "\U000F08C5" account-multiple-check-outline: "\U000F11FE" account-multiple-minus: "\U000F05D3" account-multiple-minus-outline: "\U000F0BE5" account-multiple-outline: "\U000F000F" account-multiple-plus: "\U000F0010" account-multiple-plus-outline: "\U000F0800" account-multiple-remove: "\U000F120A" account-multiple-remove-outline: "\U000F120B" account-music: "\U000F0803" account-music-outline: "\U000F0CE9" account-network: "\U000F0011" account-network-off: "\U000F1AF1" account-network-off-outline: "\U000F1AF2" account-network-outline: "\U000F0BE6" account-off: "\U000F0012" account-off-outline: "\U000F0BE7" account-outline: "\U000F0013" account-plus: "\U000F0014" account-plus-outline: "\U000F0801" account-question: "\U000F0B59" account-question-outline: "\U000F0B5A" account-reactivate: "\U000F152B" account-reactivate-outline: "\U000F152C" account-remove: "\U000F0015" account-remove-outline: "\U000F0AED" account-school: "\U000F1A20" account-school-outline: "\U000F1A21" account-search: "\U000F0016" account-search-outline: "\U000F0935" account-settings: "\U000F0630" account-settings-outline: "\U000F10C9" account-star: "\U000F0017" account-star-outline: "\U000F0BE8" account-supervisor: "\U000F0A8B" account-supervisor-circle: "\U000F0A8C" account-supervisor-circle-outline: "\U000F14EC" account-supervisor-outline: "\U000F112D" account-switch: "\U000F0019" account-switch-outline: "\U000F04CB" account-sync: "\U000F191B" account-sync-outline: "\U000F191C" account-tie: "\U000F0CE3" account-tie-hat: "\U000F1898" account-tie-hat-outline: "\U000F1899" account-tie-outline: "\U000F10CA" account-tie-voice: "\U000F1308" account-tie-voice-off: "\U000F130A" account-tie-voice-off-outline: "\U000F130B" account-tie-voice-outline: "\U000F1309" account-tie-woman: "\U000F1A8C" account-voice: "\U000F05CB" account-voice-off: "\U000F0ED4" account-wrench: "\U000F189A" account-wrench-outline: "\U000F189B" adjust: "\U000F001A" advertisements: "\U000F192A" advertisements-off: "\U000F192B" air-conditioner: "\U000F001B" air-filter: "\U000F0D43" air-horn: "\U000F0DAC" air-humidifier: "\U000F1099" air-humidifier-off: "\U000F1466" air-purifier: "\U000F0D44" air-purifier-off: "\U000F1B57" airbag: "\U000F0BE9" airballoon: "\U000F001C" airballoon-outline: "\U000F100B" airplane: "\U000F001D" airplane-alert: "\U000F187A" airplane-check: "\U000F187B" airplane-clock: "\U000F187C" airplane-cog: "\U000F187D" airplane-edit: "\U000F187E" airplane-landing: "\U000F05D4" airplane-marker: "\U000F187F" airplane-minus: "\U000F1880" airplane-off: "\U000F001E" airplane-plus: "\U000F1881" airplane-remove: "\U000F1882" airplane-search: "\U000F1883" airplane-settings: "\U000F1884" airplane-takeoff: "\U000F05D5" airport: "\U000F084B" alarm: "\U000F0020" alarm-bell: "\U000F078E" alarm-check: "\U000F0021" alarm-light: "\U000F078F" alarm-light-off: "\U000F171E" alarm-light-off-outline: "\U000F171F" alarm-light-outline: "\U000F0BEA" alarm-multiple: "\U000F0022" alarm-note: "\U000F0E71" alarm-note-off: "\U000F0E72" alarm-off: "\U000F0023" alarm-panel: "\U000F15C4" alarm-panel-outline: "\U000F15C5" alarm-plus: "\U000F0024" alarm-snooze: "\U000F068E" album: "\U000F0025" alert: "\U000F0026" alert-box: "\U000F0027" alert-box-outline: "\U000F0CE4" alert-circle: "\U000F0028" alert-circle-check: "\U000F11ED" alert-circle-check-outline: "\U000F11EE" alert-circle-outline: "\U000F05D6" alert-decagram: "\U000F06BD" alert-decagram-outline: "\U000F0CE5" alert-minus: "\U000F14BB" alert-minus-outline: "\U000F14BE" alert-octagon: "\U000F0029" alert-octagon-outline: "\U000F0CE6" alert-octagram: "\U000F0767" alert-octagram-outline: "\U000F0CE7" alert-outline: "\U000F002A" alert-plus: "\U000F14BA" alert-plus-outline: "\U000F14BD" alert-remove: "\U000F14BC" alert-remove-outline: "\U000F14BF" alert-rhombus: "\U000F11CE" alert-rhombus-outline: "\U000F11CF" alien: "\U000F089A" alien-outline: "\U000F10CB" align-horizontal-center: "\U000F11C3" align-horizontal-distribute: "\U000F1962" align-horizontal-left: "\U000F11C2" align-horizontal-right: "\U000F11C4" align-vertical-bottom: "\U000F11C5" align-vertical-center: "\U000F11C6" align-vertical-distribute: "\U000F1963" align-vertical-top: "\U000F11C7" all-inclusive: "\U000F06BE" all-inclusive-box: "\U000F188D" all-inclusive-box-outline: "\U000F188E" allergy: "\U000F1258" alpha: "\U000F002B" alpha-a: "\U000F0AEE" alpha-a-box: "\U000F0B08" alpha-a-box-outline: "\U000F0BEB" alpha-a-circle: "\U000F0BEC" alpha-a-circle-outline: "\U000F0BED" alpha-b: "\U000F0AEF" alpha-b-box: "\U000F0B09" alpha-b-box-outline: "\U000F0BEE" alpha-b-circle: "\U000F0BEF" alpha-b-circle-outline: "\U000F0BF0" alpha-c: "\U000F0AF0" alpha-c-box: "\U000F0B0A" alpha-c-box-outline: "\U000F0BF1" alpha-c-circle: "\U000F0BF2" alpha-c-circle-outline: "\U000F0BF3" alpha-d: "\U000F0AF1" alpha-d-box: "\U000F0B0B" alpha-d-box-outline: "\U000F0BF4" alpha-d-circle: "\U000F0BF5" alpha-d-circle-outline: "\U000F0BF6" alpha-e: "\U000F0AF2" alpha-e-box: "\U000F0B0C" alpha-e-box-outline: "\U000F0BF7" alpha-e-circle: "\U000F0BF8" alpha-e-circle-outline: "\U000F0BF9" alpha-f: "\U000F0AF3" alpha-f-box: "\U000F0B0D" alpha-f-box-outline: "\U000F0BFA" alpha-f-circle: "\U000F0BFB" alpha-f-circle-outline: "\U000F0BFC" alpha-g: "\U000F0AF4" alpha-g-box: "\U000F0B0E" alpha-g-box-outline: "\U000F0BFD" alpha-g-circle: "\U000F0BFE" alpha-g-circle-outline: "\U000F0BFF" alpha-h: "\U000F0AF5" alpha-h-box: "\U000F0B0F" alpha-h-box-outline: "\U000F0C00" alpha-h-circle: "\U000F0C01" alpha-h-circle-outline: "\U000F0C02" alpha-i: "\U000F0AF6" alpha-i-box: "\U000F0B10" alpha-i-box-outline: "\U000F0C03" alpha-i-circle: "\U000F0C04" alpha-i-circle-outline: "\U000F0C05" alpha-j: "\U000F0AF7" alpha-j-box: "\U000F0B11" alpha-j-box-outline: "\U000F0C06" alpha-j-circle: "\U000F0C07" alpha-j-circle-outline: "\U000F0C08" alpha-k: "\U000F0AF8" alpha-k-box: "\U000F0B12" alpha-k-box-outline: "\U000F0C09" alpha-k-circle: "\U000F0C0A" alpha-k-circle-outline: "\U000F0C0B" alpha-l: "\U000F0AF9" alpha-l-box: "\U000F0B13" alpha-l-box-outline: "\U000F0C0C" alpha-l-circle: "\U000F0C0D" alpha-l-circle-outline: "\U000F0C0E" alpha-m: "\U000F0AFA" alpha-m-box: "\U000F0B14" alpha-m-box-outline: "\U000F0C0F" alpha-m-circle: "\U000F0C10" alpha-m-circle-outline: "\U000F0C11" alpha-n: "\U000F0AFB" alpha-n-box: "\U000F0B15" alpha-n-box-outline: "\U000F0C12" alpha-n-circle: "\U000F0C13" alpha-n-circle-outline: "\U000F0C14" alpha-o: "\U000F0AFC" alpha-o-box: "\U000F0B16" alpha-o-box-outline: "\U000F0C15" alpha-o-circle: "\U000F0C16" alpha-o-circle-outline: "\U000F0C17" alpha-p: "\U000F0AFD" alpha-p-box: "\U000F0B17" alpha-p-box-outline: "\U000F0C18" alpha-p-circle: "\U000F0C19" alpha-p-circle-outline: "\U000F0C1A" alpha-q: "\U000F0AFE" alpha-q-box: "\U000F0B18" alpha-q-box-outline: "\U000F0C1B" alpha-q-circle: "\U000F0C1C" alpha-q-circle-outline: "\U000F0C1D" alpha-r: "\U000F0AFF" alpha-r-box: "\U000F0B19" alpha-r-box-outline: "\U000F0C1E" alpha-r-circle: "\U000F0C1F" alpha-r-circle-outline: "\U000F0C20" alpha-s: "\U000F0B00" alpha-s-box: "\U000F0B1A" alpha-s-box-outline: "\U000F0C21" alpha-s-circle: "\U000F0C22" alpha-s-circle-outline: "\U000F0C23" alpha-t: "\U000F0B01" alpha-t-box: "\U000F0B1B" alpha-t-box-outline: "\U000F0C24" alpha-t-circle: "\U000F0C25" alpha-t-circle-outline: "\U000F0C26" alpha-u: "\U000F0B02" alpha-u-box: "\U000F0B1C" alpha-u-box-outline: "\U000F0C27" alpha-u-circle: "\U000F0C28" alpha-u-circle-outline: "\U000F0C29" alpha-v: "\U000F0B03" alpha-v-box: "\U000F0B1D" alpha-v-box-outline: "\U000F0C2A" alpha-v-circle: "\U000F0C2B" alpha-v-circle-outline: "\U000F0C2C" alpha-w: "\U000F0B04" alpha-w-box: "\U000F0B1E" alpha-w-box-outline: "\U000F0C2D" alpha-w-circle: "\U000F0C2E" alpha-w-circle-outline: "\U000F0C2F" alpha-x: "\U000F0B05" alpha-x-box: "\U000F0B1F" alpha-x-box-outline: "\U000F0C30" alpha-x-circle: "\U000F0C31" alpha-x-circle-outline: "\U000F0C32" alpha-y: "\U000F0B06" alpha-y-box: "\U000F0B20" alpha-y-box-outline: "\U000F0C33" alpha-y-circle: "\U000F0C34" alpha-y-circle-outline: "\U000F0C35" alpha-z: "\U000F0B07" alpha-z-box: "\U000F0B21" alpha-z-box-outline: "\U000F0C36" alpha-z-circle: "\U000F0C37" alpha-z-circle-outline: "\U000F0C38" alphabet-aurebesh: "\U000F132C" alphabet-cyrillic: "\U000F132D" alphabet-greek: "\U000F132E" alphabet-latin: "\U000F132F" alphabet-piqad: "\U000F1330" alphabet-tengwar: "\U000F1337" alphabetical: "\U000F002C" alphabetical-off: "\U000F100C" alphabetical-variant: "\U000F100D" alphabetical-variant-off: "\U000F100E" altimeter: "\U000F05D7" ambulance: "\U000F002F" ammunition: "\U000F0CE8" ampersand: "\U000F0A8D" amplifier: "\U000F0030" amplifier-off: "\U000F11B5" anchor: "\U000F0031" android: "\U000F0032" android-studio: "\U000F0034" angle-acute: "\U000F0937" angle-obtuse: "\U000F0938" angle-right: "\U000F0939" angular: "\U000F06B2" angularjs: "\U000F06BF" animation: "\U000F05D8" animation-outline: "\U000F0A8F" animation-play: "\U000F093A" animation-play-outline: "\U000F0A90" ansible: "\U000F109A" antenna: "\U000F1119" anvil: "\U000F089B" apache-kafka: "\U000F100F" api: "\U000F109B" api-off: "\U000F1257" apple: "\U000F0035" apple-finder: "\U000F0036" apple-icloud: "\U000F0038" apple-ios: "\U000F0037" apple-keyboard-caps: "\U000F0632" apple-keyboard-command: "\U000F0633" apple-keyboard-control: "\U000F0634" apple-keyboard-option: "\U000F0635" apple-keyboard-shift: "\U000F0636" apple-safari: "\U000F0039" application: "\U000F08C6" application-array: "\U000F10F5" application-array-outline: "\U000F10F6" application-braces: "\U000F10F7" application-braces-outline: "\U000F10F8" application-brackets: "\U000F0C8B" application-brackets-outline: "\U000F0C8C" application-cog: "\U000F0675" application-cog-outline: "\U000F1577" application-edit: "\U000F00AE" application-edit-outline: "\U000F0619" application-export: "\U000F0DAD" application-import: "\U000F0DAE" application-outline: "\U000F0614" application-parentheses: "\U000F10F9" application-parentheses-outline: "\U000F10FA" application-settings: "\U000F0B60" application-settings-outline: "\U000F1555" application-variable: "\U000F10FB" application-variable-outline: "\U000F10FC" approximately-equal: "\U000F0F9E" approximately-equal-box: "\U000F0F9F" apps: "\U000F003B" apps-box: "\U000F0D46" arch: "\U000F08C7" archive: "\U000F003C" archive-alert: "\U000F14FD" archive-alert-outline: "\U000F14FE" archive-arrow-down: "\U000F1259" archive-arrow-down-outline: "\U000F125A" archive-arrow-up: "\U000F125B" archive-arrow-up-outline: "\U000F125C" archive-cancel: "\U000F174B" archive-cancel-outline: "\U000F174C" archive-check: "\U000F174D" archive-check-outline: "\U000F174E" archive-clock: "\U000F174F" archive-clock-outline: "\U000F1750" archive-cog: "\U000F1751" archive-cog-outline: "\U000F1752" archive-edit: "\U000F1753" archive-edit-outline: "\U000F1754" archive-eye: "\U000F1755" archive-eye-outline: "\U000F1756" archive-lock: "\U000F1757" archive-lock-open: "\U000F1758" archive-lock-open-outline: "\U000F1759" archive-lock-outline: "\U000F175A" archive-marker: "\U000F175B" archive-marker-outline: "\U000F175C" archive-minus: "\U000F175D" archive-minus-outline: "\U000F175E" archive-music: "\U000F175F" archive-music-outline: "\U000F1760" archive-off: "\U000F1761" archive-off-outline: "\U000F1762" archive-outline: "\U000F120E" archive-plus: "\U000F1763" archive-plus-outline: "\U000F1764" archive-refresh: "\U000F1765" archive-refresh-outline: "\U000F1766" archive-remove: "\U000F1767" archive-remove-outline: "\U000F1768" archive-search: "\U000F1769" archive-search-outline: "\U000F176A" archive-settings: "\U000F176B" archive-settings-outline: "\U000F176C" archive-star: "\U000F176D" archive-star-outline: "\U000F176E" archive-sync: "\U000F176F" archive-sync-outline: "\U000F1770" arm-flex: "\U000F0FD7" arm-flex-outline: "\U000F0FD6" arrange-bring-forward: "\U000F003D" arrange-bring-to-front: "\U000F003E" arrange-send-backward: "\U000F003F" arrange-send-to-back: "\U000F0040" arrow-all: "\U000F0041" arrow-bottom-left: "\U000F0042" arrow-bottom-left-bold-box: "\U000F1964" arrow-bottom-left-bold-box-outline: "\U000F1965" arrow-bottom-left-bold-outline: "\U000F09B7" arrow-bottom-left-thick: "\U000F09B8" arrow-bottom-left-thin: "\U000F19B6" arrow-bottom-left-thin-circle-outline: "\U000F1596" arrow-bottom-right: "\U000F0043" arrow-bottom-right-bold-box: "\U000F1966" arrow-bottom-right-bold-box-outline: "\U000F1967" arrow-bottom-right-bold-outline: "\U000F09B9" arrow-bottom-right-thick: "\U000F09BA" arrow-bottom-right-thin: "\U000F19B7" arrow-bottom-right-thin-circle-outline: "\U000F1595" arrow-collapse: "\U000F0615" arrow-collapse-all: "\U000F0044" arrow-collapse-down: "\U000F0792" arrow-collapse-horizontal: "\U000F084C" arrow-collapse-left: "\U000F0793" arrow-collapse-right: "\U000F0794" arrow-collapse-up: "\U000F0795" arrow-collapse-vertical: "\U000F084D" arrow-decision: "\U000F09BB" arrow-decision-auto: "\U000F09BC" arrow-decision-auto-outline: "\U000F09BD" arrow-decision-outline: "\U000F09BE" arrow-down: "\U000F0045" arrow-down-bold: "\U000F072E" arrow-down-bold-box: "\U000F072F" arrow-down-bold-box-outline: "\U000F0730" arrow-down-bold-circle: "\U000F0047" arrow-down-bold-circle-outline: "\U000F0048" arrow-down-bold-hexagon-outline: "\U000F0049" arrow-down-bold-outline: "\U000F09BF" arrow-down-box: "\U000F06C0" arrow-down-circle: "\U000F0CDB" arrow-down-circle-outline: "\U000F0CDC" arrow-down-drop-circle: "\U000F004A" arrow-down-drop-circle-outline: "\U000F004B" arrow-down-left: "\U000F17A1" arrow-down-left-bold: "\U000F17A2" arrow-down-right: "\U000F17A3" arrow-down-right-bold: "\U000F17A4" arrow-down-thick: "\U000F0046" arrow-down-thin: "\U000F19B3" arrow-down-thin-circle-outline: "\U000F1599" arrow-expand: "\U000F0616" arrow-expand-all: "\U000F004C" arrow-expand-down: "\U000F0796" arrow-expand-horizontal: "\U000F084E" arrow-expand-left: "\U000F0797" arrow-expand-right: "\U000F0798" arrow-expand-up: "\U000F0799" arrow-expand-vertical: "\U000F084F" arrow-horizontal-lock: "\U000F115B" arrow-left: "\U000F004D" arrow-left-bold: "\U000F0731" arrow-left-bold-box: "\U000F0732" arrow-left-bold-box-outline: "\U000F0733" arrow-left-bold-circle: "\U000F004F" arrow-left-bold-circle-outline: "\U000F0050" arrow-left-bold-hexagon-outline: "\U000F0051" arrow-left-bold-outline: "\U000F09C0" arrow-left-bottom: "\U000F17A5" arrow-left-bottom-bold: "\U000F17A6" arrow-left-box: "\U000F06C1" arrow-left-circle: "\U000F0CDD" arrow-left-circle-outline: "\U000F0CDE" arrow-left-drop-circle: "\U000F0052" arrow-left-drop-circle-outline: "\U000F0053" arrow-left-right: "\U000F0E73" arrow-left-right-bold: "\U000F0E74" arrow-left-right-bold-outline: "\U000F09C1" arrow-left-thick: "\U000F004E" arrow-left-thin: "\U000F19B1" arrow-left-thin-circle-outline: "\U000F159A" arrow-left-top: "\U000F17A7" arrow-left-top-bold: "\U000F17A8" arrow-projectile: "\U000F1840" arrow-projectile-multiple: "\U000F183F" arrow-right: "\U000F0054" arrow-right-bold: "\U000F0734" arrow-right-bold-box: "\U000F0735" arrow-right-bold-box-outline: "\U000F0736" arrow-right-bold-circle: "\U000F0056" arrow-right-bold-circle-outline: "\U000F0057" arrow-right-bold-hexagon-outline: "\U000F0058" arrow-right-bold-outline: "\U000F09C2" arrow-right-bottom: "\U000F17A9" arrow-right-bottom-bold: "\U000F17AA" arrow-right-box: "\U000F06C2" arrow-right-circle: "\U000F0CDF" arrow-right-circle-outline: "\U000F0CE0" arrow-right-drop-circle: "\U000F0059" arrow-right-drop-circle-outline: "\U000F005A" arrow-right-thick: "\U000F0055" arrow-right-thin: "\U000F19B0" arrow-right-thin-circle-outline: "\U000F1598" arrow-right-top: "\U000F17AB" arrow-right-top-bold: "\U000F17AC" arrow-split-horizontal: "\U000F093B" arrow-split-vertical: "\U000F093C" arrow-top-left: "\U000F005B" arrow-top-left-bold-box: "\U000F1968" arrow-top-left-bold-box-outline: "\U000F1969" arrow-top-left-bold-outline: "\U000F09C3" arrow-top-left-bottom-right: "\U000F0E75" arrow-top-left-bottom-right-bold: "\U000F0E76" arrow-top-left-thick: "\U000F09C4" arrow-top-left-thin: "\U000F19B5" arrow-top-left-thin-circle-outline: "\U000F1593" arrow-top-right: "\U000F005C" arrow-top-right-bold-box: "\U000F196A" arrow-top-right-bold-box-outline: "\U000F196B" arrow-top-right-bold-outline: "\U000F09C5" arrow-top-right-bottom-left: "\U000F0E77" arrow-top-right-bottom-left-bold: "\U000F0E78" arrow-top-right-thick: "\U000F09C6" arrow-top-right-thin: "\U000F19B4" arrow-top-right-thin-circle-outline: "\U000F1594" arrow-u-down-left: "\U000F17AD" arrow-u-down-left-bold: "\U000F17AE" arrow-u-down-right: "\U000F17AF" arrow-u-down-right-bold: "\U000F17B0" arrow-u-left-bottom: "\U000F17B1" arrow-u-left-bottom-bold: "\U000F17B2" arrow-u-left-top: "\U000F17B3" arrow-u-left-top-bold: "\U000F17B4" arrow-u-right-bottom: "\U000F17B5" arrow-u-right-bottom-bold: "\U000F17B6" arrow-u-right-top: "\U000F17B7" arrow-u-right-top-bold: "\U000F17B8" arrow-u-up-left: "\U000F17B9" arrow-u-up-left-bold: "\U000F17BA" arrow-u-up-right: "\U000F17BB" arrow-u-up-right-bold: "\U000F17BC" arrow-up: "\U000F005D" arrow-up-bold: "\U000F0737" arrow-up-bold-box: "\U000F0738" arrow-up-bold-box-outline: "\U000F0739" arrow-up-bold-circle: "\U000F005F" arrow-up-bold-circle-outline: "\U000F0060" arrow-up-bold-hexagon-outline: "\U000F0061" arrow-up-bold-outline: "\U000F09C7" arrow-up-box: "\U000F06C3" arrow-up-circle: "\U000F0CE1" arrow-up-circle-outline: "\U000F0CE2" arrow-up-down: "\U000F0E79" arrow-up-down-bold: "\U000F0E7A" arrow-up-down-bold-outline: "\U000F09C8" arrow-up-drop-circle: "\U000F0062" arrow-up-drop-circle-outline: "\U000F0063" arrow-up-left: "\U000F17BD" arrow-up-left-bold: "\U000F17BE" arrow-up-right: "\U000F17BF" arrow-up-right-bold: "\U000F17C0" arrow-up-thick: "\U000F005E" arrow-up-thin: "\U000F19B2" arrow-up-thin-circle-outline: "\U000F1597" arrow-vertical-lock: "\U000F115C" artboard: "\U000F1B9A" artstation: "\U000F0B5B" aspect-ratio: "\U000F0A24" assistant: "\U000F0064" asterisk: "\U000F06C4" asterisk-circle-outline: "\U000F1A27" at: "\U000F0065" atlassian: "\U000F0804" atm: "\U000F0D47" atom: "\U000F0768" atom-variant: "\U000F0E7B" attachment: "\U000F0066" attachment-check: "\U000F1AC1" attachment-lock: "\U000F19C4" attachment-minus: "\U000F1AC2" attachment-off: "\U000F1AC3" attachment-plus: "\U000F1AC4" attachment-remove: "\U000F1AC5" atv: "\U000F1B70" audio-input-rca: "\U000F186B" audio-input-stereo-minijack: "\U000F186C" audio-input-xlr: "\U000F186D" audio-video: "\U000F093D" audio-video-off: "\U000F11B6" augmented-reality: "\U000F0850" auto-download: "\U000F137E" auto-fix: "\U000F0068" auto-upload: "\U000F0069" autorenew: "\U000F006A" autorenew-off: "\U000F19E7" av-timer: "\U000F006B" awning: "\U000F1B87" awning-outline: "\U000F1B88" aws: "\U000F0E0F" axe: "\U000F08C8" axe-battle: "\U000F1842" axis: "\U000F0D48" axis-arrow: "\U000F0D49" axis-arrow-info: "\U000F140E" axis-arrow-lock: "\U000F0D4A" axis-lock: "\U000F0D4B" axis-x-arrow: "\U000F0D4C" axis-x-arrow-lock: "\U000F0D4D" axis-x-rotate-clockwise: "\U000F0D4E" axis-x-rotate-counterclockwise: "\U000F0D4F" axis-x-y-arrow-lock: "\U000F0D50" axis-y-arrow: "\U000F0D51" axis-y-arrow-lock: "\U000F0D52" axis-y-rotate-clockwise: "\U000F0D53" axis-y-rotate-counterclockwise: "\U000F0D54" axis-z-arrow: "\U000F0D55" axis-z-arrow-lock: "\U000F0D56" axis-z-rotate-clockwise: "\U000F0D57" axis-z-rotate-counterclockwise: "\U000F0D58" babel: "\U000F0A25" baby: "\U000F006C" baby-bottle: "\U000F0F39" baby-bottle-outline: "\U000F0F3A" baby-buggy: "\U000F13E0" baby-buggy-off: "\U000F1AF3" baby-carriage: "\U000F068F" baby-carriage-off: "\U000F0FA0" baby-face: "\U000F0E7C" baby-face-outline: "\U000F0E7D" backburger: "\U000F006D" backspace: "\U000F006E" backspace-outline: "\U000F0B5C" backspace-reverse: "\U000F0E7E" backspace-reverse-outline: "\U000F0E7F" backup-restore: "\U000F006F" bacteria: "\U000F0ED5" bacteria-outline: "\U000F0ED6" badge-account: "\U000F0DA7" badge-account-alert: "\U000F0DA8" badge-account-alert-outline: "\U000F0DA9" badge-account-horizontal: "\U000F0E0D" badge-account-horizontal-outline: "\U000F0E0E" badge-account-outline: "\U000F0DAA" badminton: "\U000F0851" bag-carry-on: "\U000F0F3B" bag-carry-on-check: "\U000F0D65" bag-carry-on-off: "\U000F0F3C" bag-checked: "\U000F0F3D" bag-personal: "\U000F0E10" bag-personal-off: "\U000F0E11" bag-personal-off-outline: "\U000F0E12" bag-personal-outline: "\U000F0E13" bag-personal-tag: "\U000F1B0C" bag-personal-tag-outline: "\U000F1B0D" bag-suitcase: "\U000F158B" bag-suitcase-off: "\U000F158D" bag-suitcase-off-outline: "\U000F158E" bag-suitcase-outline: "\U000F158C" baguette: "\U000F0F3E" balcony: "\U000F1817" balloon: "\U000F0A26" ballot: "\U000F09C9" ballot-outline: "\U000F09CA" ballot-recount: "\U000F0C39" ballot-recount-outline: "\U000F0C3A" bandage: "\U000F0DAF" bank: "\U000F0070" bank-check: "\U000F1655" bank-minus: "\U000F0DB0" bank-off: "\U000F1656" bank-off-outline: "\U000F1657" bank-outline: "\U000F0E80" bank-plus: "\U000F0DB1" bank-remove: "\U000F0DB2" bank-transfer: "\U000F0A27" bank-transfer-in: "\U000F0A28" bank-transfer-out: "\U000F0A29" barcode: "\U000F0071" barcode-off: "\U000F1236" barcode-scan: "\U000F0072" barley: "\U000F0073" barley-off: "\U000F0B5D" barn: "\U000F0B5E" barrel: "\U000F0074" barrel-outline: "\U000F1A28" baseball: "\U000F0852" baseball-bat: "\U000F0853" baseball-diamond: "\U000F15EC" baseball-diamond-outline: "\U000F15ED" bash: "\U000F1183" basket: "\U000F0076" basket-check: "\U000F18E5" basket-check-outline: "\U000F18E6" basket-fill: "\U000F0077" basket-minus: "\U000F1523" basket-minus-outline: "\U000F1524" basket-off: "\U000F1525" basket-off-outline: "\U000F1526" basket-outline: "\U000F1181" basket-plus: "\U000F1527" basket-plus-outline: "\U000F1528" basket-remove: "\U000F1529" basket-remove-outline: "\U000F152A" basket-unfill: "\U000F0078" basketball: "\U000F0806" basketball-hoop: "\U000F0C3B" basketball-hoop-outline: "\U000F0C3C" bat: "\U000F0B5F" bathtub: "\U000F1818" bathtub-outline: "\U000F1819" battery: "\U000F0079" battery-10: "\U000F007A" battery-10-bluetooth: "\U000F093E" battery-20: "\U000F007B" battery-20-bluetooth: "\U000F093F" battery-30: "\U000F007C" battery-30-bluetooth: "\U000F0940" battery-40: "\U000F007D" battery-40-bluetooth: "\U000F0941" battery-50: "\U000F007E" battery-50-bluetooth: "\U000F0942" battery-60: "\U000F007F" battery-60-bluetooth: "\U000F0943" battery-70: "\U000F0080" battery-70-bluetooth: "\U000F0944" battery-80: "\U000F0081" battery-80-bluetooth: "\U000F0945" battery-90: "\U000F0082" battery-90-bluetooth: "\U000F0946" battery-alert: "\U000F0083" battery-alert-bluetooth: "\U000F0947" battery-alert-variant: "\U000F10CC" battery-alert-variant-outline: "\U000F10CD" battery-arrow-down: "\U000F17DE" battery-arrow-down-outline: "\U000F17DF" battery-arrow-up: "\U000F17E0" battery-arrow-up-outline: "\U000F17E1" battery-bluetooth: "\U000F0948" battery-bluetooth-variant: "\U000F0949" battery-charging: "\U000F0084" battery-charging-10: "\U000F089C" battery-charging-100: "\U000F0085" battery-charging-20: "\U000F0086" battery-charging-30: "\U000F0087" battery-charging-40: "\U000F0088" battery-charging-50: "\U000F089D" battery-charging-60: "\U000F0089" battery-charging-70: "\U000F089E" battery-charging-80: "\U000F008A" battery-charging-90: "\U000F008B" battery-charging-high: "\U000F12A6" battery-charging-low: "\U000F12A4" battery-charging-medium: "\U000F12A5" battery-charging-outline: "\U000F089F" battery-charging-wireless: "\U000F0807" battery-charging-wireless-10: "\U000F0808" battery-charging-wireless-20: "\U000F0809" battery-charging-wireless-30: "\U000F080A" battery-charging-wireless-40: "\U000F080B" battery-charging-wireless-50: "\U000F080C" battery-charging-wireless-60: "\U000F080D" battery-charging-wireless-70: "\U000F080E" battery-charging-wireless-80: "\U000F080F" battery-charging-wireless-90: "\U000F0810" battery-charging-wireless-alert: "\U000F0811" battery-charging-wireless-outline: "\U000F0812" battery-check: "\U000F17E2" battery-check-outline: "\U000F17E3" battery-clock: "\U000F19E5" battery-clock-outline: "\U000F19E6" battery-heart: "\U000F120F" battery-heart-outline: "\U000F1210" battery-heart-variant: "\U000F1211" battery-high: "\U000F12A3" battery-lock: "\U000F179C" battery-lock-open: "\U000F179D" battery-low: "\U000F12A1" battery-medium: "\U000F12A2" battery-minus: "\U000F17E4" battery-minus-outline: "\U000F17E5" battery-minus-variant: "\U000F008C" battery-negative: "\U000F008D" battery-off: "\U000F125D" battery-off-outline: "\U000F125E" battery-outline: "\U000F008E" battery-plus: "\U000F17E6" battery-plus-outline: "\U000F17E7" battery-plus-variant: "\U000F008F" battery-positive: "\U000F0090" battery-remove: "\U000F17E8" battery-remove-outline: "\U000F17E9" battery-sync: "\U000F1834" battery-sync-outline: "\U000F1835" battery-unknown: "\U000F0091" battery-unknown-bluetooth: "\U000F094A" beach: "\U000F0092" beaker: "\U000F0CEA" beaker-alert: "\U000F1229" beaker-alert-outline: "\U000F122A" beaker-check: "\U000F122B" beaker-check-outline: "\U000F122C" beaker-minus: "\U000F122D" beaker-minus-outline: "\U000F122E" beaker-outline: "\U000F0690" beaker-plus: "\U000F122F" beaker-plus-outline: "\U000F1230" beaker-question: "\U000F1231" beaker-question-outline: "\U000F1232" beaker-remove: "\U000F1233" beaker-remove-outline: "\U000F1234" bed: "\U000F02E3" bed-clock: "\U000F1B94" bed-double: "\U000F0FD4" bed-double-outline: "\U000F0FD3" bed-empty: "\U000F08A0" bed-king: "\U000F0FD2" bed-king-outline: "\U000F0FD1" bed-outline: "\U000F0099" bed-queen: "\U000F0FD0" bed-queen-outline: "\U000F0FDB" bed-single: "\U000F106D" bed-single-outline: "\U000F106E" bee: "\U000F0FA1" bee-flower: "\U000F0FA2" beehive-off-outline: "\U000F13ED" beehive-outline: "\U000F10CE" beekeeper: "\U000F14E2" beer: "\U000F0098" beer-outline: "\U000F130C" bell: "\U000F009A" bell-alert: "\U000F0D59" bell-alert-outline: "\U000F0E81" bell-badge: "\U000F116B" bell-badge-outline: "\U000F0178" bell-cancel: "\U000F13E7" bell-cancel-outline: "\U000F13E8" bell-check: "\U000F11E5" bell-check-outline: "\U000F11E6" bell-circle: "\U000F0D5A" bell-circle-outline: "\U000F0D5B" bell-cog: "\U000F1A29" bell-cog-outline: "\U000F1A2A" bell-minus: "\U000F13E9" bell-minus-outline: "\U000F13EA" bell-off: "\U000F009B" bell-off-outline: "\U000F0A91" bell-outline: "\U000F009C" bell-plus: "\U000F009D" bell-plus-outline: "\U000F0A92" bell-remove: "\U000F13EB" bell-remove-outline: "\U000F13EC" bell-ring: "\U000F009E" bell-ring-outline: "\U000F009F" bell-sleep: "\U000F00A0" bell-sleep-outline: "\U000F0A93" beta: "\U000F00A1" betamax: "\U000F09CB" biathlon: "\U000F0E14" bicycle: "\U000F109C" bicycle-basket: "\U000F1235" bicycle-cargo: "\U000F189C" bicycle-electric: "\U000F15B4" bicycle-penny-farthing: "\U000F15E9" bike: "\U000F00A3" bike-fast: "\U000F111F" billboard: "\U000F1010" billiards: "\U000F0B61" billiards-rack: "\U000F0B62" binoculars: "\U000F00A5" bio: "\U000F00A6" biohazard: "\U000F00A7" bird: "\U000F15C6" bitbucket: "\U000F00A8" bitcoin: "\U000F0813" black-mesa: "\U000F00A9" blender: "\U000F0CEB" blender-outline: "\U000F181A" blender-software: "\U000F00AB" blinds: "\U000F00AC" blinds-horizontal: "\U000F1A2B" blinds-horizontal-closed: "\U000F1A2C" blinds-open: "\U000F1011" blinds-vertical: "\U000F1A2D" blinds-vertical-closed: "\U000F1A2E" block-helper: "\U000F00AD" blood-bag: "\U000F0CEC" bluetooth: "\U000F00AF" bluetooth-audio: "\U000F00B0" bluetooth-connect: "\U000F00B1" bluetooth-off: "\U000F00B2" bluetooth-settings: "\U000F00B3" bluetooth-transfer: "\U000F00B4" blur: "\U000F00B5" blur-linear: "\U000F00B6" blur-off: "\U000F00B7" blur-radial: "\U000F00B8" bolt: "\U000F0DB3" bomb: "\U000F0691" bomb-off: "\U000F06C5" bone: "\U000F00B9" bone-off: "\U000F19E0" book: "\U000F00BA" book-account: "\U000F13AD" book-account-outline: "\U000F13AE" book-alert: "\U000F167C" book-alert-outline: "\U000F167D" book-alphabet: "\U000F061D" book-arrow-down: "\U000F167E" book-arrow-down-outline: "\U000F167F" book-arrow-left: "\U000F1680" book-arrow-left-outline: "\U000F1681" book-arrow-right: "\U000F1682" book-arrow-right-outline: "\U000F1683" book-arrow-up: "\U000F1684" book-arrow-up-outline: "\U000F1685" book-cancel: "\U000F1686" book-cancel-outline: "\U000F1687" book-check: "\U000F14F3" book-check-outline: "\U000F14F4" book-clock: "\U000F1688" book-clock-outline: "\U000F1689" book-cog: "\U000F168A" book-cog-outline: "\U000F168B" book-cross: "\U000F00A2" book-edit: "\U000F168C" book-edit-outline: "\U000F168D" book-education: "\U000F16C9" book-education-outline: "\U000F16CA" book-heart: "\U000F1A1D" book-heart-outline: "\U000F1A1E" book-information-variant: "\U000F106F" book-lock: "\U000F079A" book-lock-open: "\U000F079B" book-lock-open-outline: "\U000F168E" book-lock-outline: "\U000F168F" book-marker: "\U000F1690" book-marker-outline: "\U000F1691" book-minus: "\U000F05D9" book-minus-multiple: "\U000F0A94" book-minus-multiple-outline: "\U000F090B" book-minus-outline: "\U000F1692" book-multiple: "\U000F00BB" book-multiple-outline: "\U000F0436" book-music: "\U000F0067" book-music-outline: "\U000F1693" book-off: "\U000F1694" book-off-outline: "\U000F1695" book-open: "\U000F00BD" book-open-blank-variant: "\U000F00BE" book-open-outline: "\U000F0B63" book-open-page-variant: "\U000F05DA" book-open-page-variant-outline: "\U000F15D6" book-open-variant: "\U000F14F7" book-outline: "\U000F0B64" book-play: "\U000F0E82" book-play-outline: "\U000F0E83" book-plus: "\U000F05DB" book-plus-multiple: "\U000F0A95" book-plus-multiple-outline: "\U000F0ADE" book-plus-outline: "\U000F1696" book-refresh: "\U000F1697" book-refresh-outline: "\U000F1698" book-remove: "\U000F0A97" book-remove-multiple: "\U000F0A96" book-remove-multiple-outline: "\U000F04CA" book-remove-outline: "\U000F1699" book-search: "\U000F0E84" book-search-outline: "\U000F0E85" book-settings: "\U000F169A" book-settings-outline: "\U000F169B" book-sync: "\U000F169C" book-sync-outline: "\U000F16C8" book-variant: "\U000F00BF" bookmark: "\U000F00C0" bookmark-box: "\U000F1B75" bookmark-box-multiple: "\U000F196C" bookmark-box-multiple-outline: "\U000F196D" bookmark-box-outline: "\U000F1B76" bookmark-check: "\U000F00C1" bookmark-check-outline: "\U000F137B" bookmark-minus: "\U000F09CC" bookmark-minus-outline: "\U000F09CD" bookmark-multiple: "\U000F0E15" bookmark-multiple-outline: "\U000F0E16" bookmark-music: "\U000F00C2" bookmark-music-outline: "\U000F1379" bookmark-off: "\U000F09CE" bookmark-off-outline: "\U000F09CF" bookmark-outline: "\U000F00C3" bookmark-plus: "\U000F00C5" bookmark-plus-outline: "\U000F00C4" bookmark-remove: "\U000F00C6" bookmark-remove-outline: "\U000F137A" bookshelf: "\U000F125F" boom-gate: "\U000F0E86" boom-gate-alert: "\U000F0E87" boom-gate-alert-outline: "\U000F0E88" boom-gate-arrow-down: "\U000F0E89" boom-gate-arrow-down-outline: "\U000F0E8A" boom-gate-arrow-up: "\U000F0E8C" boom-gate-arrow-up-outline: "\U000F0E8D" boom-gate-outline: "\U000F0E8B" boom-gate-up: "\U000F17F9" boom-gate-up-outline: "\U000F17FA" boombox: "\U000F05DC" boomerang: "\U000F10CF" bootstrap: "\U000F06C6" border-all: "\U000F00C7" border-all-variant: "\U000F08A1" border-bottom: "\U000F00C8" border-bottom-variant: "\U000F08A2" border-color: "\U000F00C9" border-horizontal: "\U000F00CA" border-inside: "\U000F00CB" border-left: "\U000F00CC" border-left-variant: "\U000F08A3" border-none: "\U000F00CD" border-none-variant: "\U000F08A4" border-outside: "\U000F00CE" border-radius: "\U000F1AF4" border-right: "\U000F00CF" border-right-variant: "\U000F08A5" border-style: "\U000F00D0" border-top: "\U000F00D1" border-top-variant: "\U000F08A6" border-vertical: "\U000F00D2" bottle-soda: "\U000F1070" bottle-soda-classic: "\U000F1071" bottle-soda-classic-outline: "\U000F1363" bottle-soda-outline: "\U000F1072" bottle-tonic: "\U000F112E" bottle-tonic-outline: "\U000F112F" bottle-tonic-plus: "\U000F1130" bottle-tonic-plus-outline: "\U000F1131" bottle-tonic-skull: "\U000F1132" bottle-tonic-skull-outline: "\U000F1133" bottle-wine: "\U000F0854" bottle-wine-outline: "\U000F1310" bow-arrow: "\U000F1841" bow-tie: "\U000F0678" bowl: "\U000F028E" bowl-mix: "\U000F0617" bowl-mix-outline: "\U000F02E4" bowl-outline: "\U000F02A9" bowling: "\U000F00D3" box: "\U000F00D4" box-cutter: "\U000F00D5" box-cutter-off: "\U000F0B4A" box-shadow: "\U000F0637" boxing-glove: "\U000F0B65" braille: "\U000F09D0" brain: "\U000F09D1" bread-slice: "\U000F0CEE" bread-slice-outline: "\U000F0CEF" bridge: "\U000F0618" briefcase: "\U000F00D6" briefcase-account: "\U000F0CF0" briefcase-account-outline: "\U000F0CF1" briefcase-arrow-left-right: "\U000F1A8D" briefcase-arrow-left-right-outline: "\U000F1A8E" briefcase-arrow-up-down: "\U000F1A8F" briefcase-arrow-up-down-outline: "\U000F1A90" briefcase-check: "\U000F00D7" briefcase-check-outline: "\U000F131E" briefcase-clock: "\U000F10D0" briefcase-clock-outline: "\U000F10D1" briefcase-download: "\U000F00D8" briefcase-download-outline: "\U000F0C3D" briefcase-edit: "\U000F0A98" briefcase-edit-outline: "\U000F0C3E" briefcase-eye: "\U000F17D9" briefcase-eye-outline: "\U000F17DA" briefcase-minus: "\U000F0A2A" briefcase-minus-outline: "\U000F0C3F" briefcase-off: "\U000F1658" briefcase-off-outline: "\U000F1659" briefcase-outline: "\U000F0814" briefcase-plus: "\U000F0A2B" briefcase-plus-outline: "\U000F0C40" briefcase-remove: "\U000F0A2C" briefcase-remove-outline: "\U000F0C41" briefcase-search: "\U000F0A2D" briefcase-search-outline: "\U000F0C42" briefcase-upload: "\U000F00D9" briefcase-upload-outline: "\U000F0C43" briefcase-variant: "\U000F1494" briefcase-variant-off: "\U000F165A" briefcase-variant-off-outline: "\U000F165B" briefcase-variant-outline: "\U000F1495" brightness-1: "\U000F00DA" brightness-2: "\U000F00DB" brightness-3: "\U000F00DC" brightness-4: "\U000F00DD" brightness-5: "\U000F00DE" brightness-6: "\U000F00DF" brightness-7: "\U000F00E0" brightness-auto: "\U000F00E1" brightness-percent: "\U000F0CF2" broadcast: "\U000F1720" broadcast-off: "\U000F1721" broom: "\U000F00E2" brush: "\U000F00E3" brush-off: "\U000F1771" brush-outline: "\U000F1A0D" brush-variant: "\U000F1813" bucket: "\U000F1415" bucket-outline: "\U000F1416" buffet: "\U000F0578" bug: "\U000F00E4" bug-check: "\U000F0A2E" bug-check-outline: "\U000F0A2F" bug-outline: "\U000F0A30" bug-pause: "\U000F1AF5" bug-pause-outline: "\U000F1AF6" bug-play: "\U000F1AF7" bug-play-outline: "\U000F1AF8" bug-stop: "\U000F1AF9" bug-stop-outline: "\U000F1AFA" bugle: "\U000F0DB4" bulkhead-light: "\U000F1A2F" bulldozer: "\U000F0B22" bullet: "\U000F0CF3" bulletin-board: "\U000F00E5" bullhorn: "\U000F00E6" bullhorn-outline: "\U000F0B23" bullhorn-variant: "\U000F196E" bullhorn-variant-outline: "\U000F196F" bullseye: "\U000F05DD" bullseye-arrow: "\U000F08C9" bulma: "\U000F12E7" bunk-bed: "\U000F1302" bunk-bed-outline: "\U000F0097" bus: "\U000F00E7" bus-alert: "\U000F0A99" bus-articulated-end: "\U000F079C" bus-articulated-front: "\U000F079D" bus-clock: "\U000F08CA" bus-double-decker: "\U000F079E" bus-electric: "\U000F191D" bus-marker: "\U000F1212" bus-multiple: "\U000F0F3F" bus-school: "\U000F079F" bus-side: "\U000F07A0" bus-stop: "\U000F1012" bus-stop-covered: "\U000F1013" bus-stop-uncovered: "\U000F1014" butterfly: "\U000F1589" butterfly-outline: "\U000F158A" button-cursor: "\U000F1B4F" button-pointer: "\U000F1B50" cabin-a-frame: "\U000F188C" cable-data: "\U000F1394" cached: "\U000F00E8" cactus: "\U000F0DB5" cake: "\U000F00E9" cake-layered: "\U000F00EA" cake-variant: "\U000F00EB" cake-variant-outline: "\U000F17F0" calculator: "\U000F00EC" calculator-variant: "\U000F0A9A" calculator-variant-outline: "\U000F15A6" calendar: "\U000F00ED" calendar-account: "\U000F0ED7" calendar-account-outline: "\U000F0ED8" calendar-alert: "\U000F0A31" calendar-alert-outline: "\U000F1B62" calendar-arrow-left: "\U000F1134" calendar-arrow-right: "\U000F1135" calendar-badge: "\U000F1B9D" calendar-badge-outline: "\U000F1B9E" calendar-blank: "\U000F00EE" calendar-blank-multiple: "\U000F1073" calendar-blank-outline: "\U000F0B66" calendar-check: "\U000F00EF" calendar-check-outline: "\U000F0C44" calendar-clock: "\U000F00F0" calendar-clock-outline: "\U000F16E1" calendar-collapse-horizontal: "\U000F189D" calendar-collapse-horizontal-outline: "\U000F1B63" calendar-cursor: "\U000F157B" calendar-cursor-outline: "\U000F1B64" calendar-edit: "\U000F08A7" calendar-edit-outline: "\U000F1B65" calendar-end: "\U000F166C" calendar-end-outline: "\U000F1B66" calendar-expand-horizontal: "\U000F189E" calendar-expand-horizontal-outline: "\U000F1B67" calendar-export: "\U000F0B24" calendar-export-outline: "\U000F1B68" calendar-filter: "\U000F1A32" calendar-filter-outline: "\U000F1A33" calendar-heart: "\U000F09D2" calendar-heart-outline: "\U000F1B69" calendar-import: "\U000F0B25" calendar-import-outline: "\U000F1B6A" calendar-lock: "\U000F1641" calendar-lock-open: "\U000F1B5B" calendar-lock-open-outline: "\U000F1B5C" calendar-lock-outline: "\U000F1642" calendar-minus: "\U000F0D5C" calendar-minus-outline: "\U000F1B6B" calendar-month: "\U000F0E17" calendar-month-outline: "\U000F0E18" calendar-multiple: "\U000F00F1" calendar-multiple-check: "\U000F00F2" calendar-multiselect: "\U000F0A32" calendar-multiselect-outline: "\U000F1B55" calendar-outline: "\U000F0B67" calendar-plus: "\U000F00F3" calendar-plus-outline: "\U000F1B6C" calendar-question: "\U000F0692" calendar-question-outline: "\U000F1B6D" calendar-range: "\U000F0679" calendar-range-outline: "\U000F0B68" calendar-refresh: "\U000F01E1" calendar-refresh-outline: "\U000F0203" calendar-remove: "\U000F00F4" calendar-remove-outline: "\U000F0C45" calendar-search: "\U000F094C" calendar-search-outline: "\U000F1B6E" calendar-star: "\U000F09D3" calendar-star-outline: "\U000F1B53" calendar-start: "\U000F166D" calendar-start-outline: "\U000F1B6F" calendar-sync: "\U000F0E8E" calendar-sync-outline: "\U000F0E8F" calendar-text: "\U000F00F5" calendar-text-outline: "\U000F0C46" calendar-today: "\U000F00F6" calendar-today-outline: "\U000F1A30" calendar-week: "\U000F0A33" calendar-week-begin: "\U000F0A34" calendar-week-begin-outline: "\U000F1A31" calendar-week-outline: "\U000F1A34" calendar-weekend: "\U000F0ED9" calendar-weekend-outline: "\U000F0EDA" call-made: "\U000F00F7" call-merge: "\U000F00F8" call-missed: "\U000F00F9" call-received: "\U000F00FA" call-split: "\U000F00FB" camcorder: "\U000F00FC" camcorder-off: "\U000F00FF" camera: "\U000F0100" camera-account: "\U000F08CB" camera-burst: "\U000F0693" camera-control: "\U000F0B69" camera-document: "\U000F1871" camera-document-off: "\U000F1872" camera-enhance: "\U000F0101" camera-enhance-outline: "\U000F0B6A" camera-flip: "\U000F15D9" camera-flip-outline: "\U000F15DA" camera-front: "\U000F0102" camera-front-variant: "\U000F0103" camera-gopro: "\U000F07A1" camera-image: "\U000F08CC" camera-iris: "\U000F0104" camera-lock: "\U000F1A14" camera-lock-outline: "\U000F1A15" camera-marker: "\U000F19A7" camera-marker-outline: "\U000F19A8" camera-metering-center: "\U000F07A2" camera-metering-matrix: "\U000F07A3" camera-metering-partial: "\U000F07A4" camera-metering-spot: "\U000F07A5" camera-off: "\U000F05DF" camera-off-outline: "\U000F19BF" camera-outline: "\U000F0D5D" camera-party-mode: "\U000F0105" camera-plus: "\U000F0EDB" camera-plus-outline: "\U000F0EDC" camera-rear: "\U000F0106" camera-rear-variant: "\U000F0107" camera-retake: "\U000F0E19" camera-retake-outline: "\U000F0E1A" camera-switch: "\U000F0108" camera-switch-outline: "\U000F084A" camera-timer: "\U000F0109" camera-wireless: "\U000F0DB6" camera-wireless-outline: "\U000F0DB7" campfire: "\U000F0EDD" cancel: "\U000F073A" candelabra: "\U000F17D2" candelabra-fire: "\U000F17D3" candle: "\U000F05E2" candy: "\U000F1970" candy-off: "\U000F1971" candy-off-outline: "\U000F1972" candy-outline: "\U000F1973" candycane: "\U000F010A" cannabis: "\U000F07A6" cannabis-off: "\U000F166E" caps-lock: "\U000F0A9B" car: "\U000F010B" car-2-plus: "\U000F1015" car-3-plus: "\U000F1016" car-arrow-left: "\U000F13B2" car-arrow-right: "\U000F13B3" car-back: "\U000F0E1B" car-battery: "\U000F010C" car-brake-abs: "\U000F0C47" car-brake-alert: "\U000F0C48" car-brake-fluid-level: "\U000F1909" car-brake-hold: "\U000F0D5E" car-brake-low-pressure: "\U000F190A" car-brake-parking: "\U000F0D5F" car-brake-retarder: "\U000F1017" car-brake-temperature: "\U000F190B" car-brake-worn-linings: "\U000F190C" car-child-seat: "\U000F0FA3" car-clock: "\U000F1974" car-clutch: "\U000F1018" car-cog: "\U000F13CC" car-connected: "\U000F010D" car-convertible: "\U000F07A7" car-coolant-level: "\U000F1019" car-cruise-control: "\U000F0D60" car-defrost-front: "\U000F0D61" car-defrost-rear: "\U000F0D62" car-door: "\U000F0B6B" car-door-lock: "\U000F109D" car-electric: "\U000F0B6C" car-electric-outline: "\U000F15B5" car-emergency: "\U000F160F" car-esp: "\U000F0C49" car-estate: "\U000F07A8" car-hatchback: "\U000F07A9" car-info: "\U000F11BE" car-key: "\U000F0B6D" car-lifted-pickup: "\U000F152D" car-light-alert: "\U000F190D" car-light-dimmed: "\U000F0C4A" car-light-fog: "\U000F0C4B" car-light-high: "\U000F0C4C" car-limousine: "\U000F08CD" car-multiple: "\U000F0B6E" car-off: "\U000F0E1C" car-outline: "\U000F14ED" car-parking-lights: "\U000F0D63" car-pickup: "\U000F07AA" car-search: "\U000F1B8D" car-search-outline: "\U000F1B8E" car-seat: "\U000F0FA4" car-seat-cooler: "\U000F0FA5" car-seat-heater: "\U000F0FA6" car-select: "\U000F1879" car-settings: "\U000F13CD" car-shift-pattern: "\U000F0F40" car-side: "\U000F07AB" car-speed-limiter: "\U000F190E" car-sports: "\U000F07AC" car-tire-alert: "\U000F0C4D" car-traction-control: "\U000F0D64" car-turbocharger: "\U000F101A" car-wash: "\U000F010E" car-windshield: "\U000F101B" car-windshield-outline: "\U000F101C" car-wireless: "\U000F1878" car-wrench: "\U000F1814" carabiner: "\U000F14C0" caravan: "\U000F07AD" card: "\U000F0B6F" card-account-details: "\U000F05D2" card-account-details-outline: "\U000F0DAB" card-account-details-star: "\U000F02A3" card-account-details-star-outline: "\U000F06DB" card-account-mail: "\U000F018E" card-account-mail-outline: "\U000F0E98" card-account-phone: "\U000F0E99" card-account-phone-outline: "\U000F0E9A" card-bulleted: "\U000F0B70" card-bulleted-off: "\U000F0B71" card-bulleted-off-outline: "\U000F0B72" card-bulleted-outline: "\U000F0B73" card-bulleted-settings: "\U000F0B74" card-bulleted-settings-outline: "\U000F0B75" card-minus: "\U000F1600" card-minus-outline: "\U000F1601" card-multiple: "\U000F17F1" card-multiple-outline: "\U000F17F2" card-off: "\U000F1602" card-off-outline: "\U000F1603" card-outline: "\U000F0B76" card-plus: "\U000F11FF" card-plus-outline: "\U000F1200" card-remove: "\U000F1604" card-remove-outline: "\U000F1605" card-search: "\U000F1074" card-search-outline: "\U000F1075" card-text: "\U000F0B77" card-text-outline: "\U000F0B78" cards: "\U000F0638" cards-club: "\U000F08CE" cards-club-outline: "\U000F189F" cards-diamond: "\U000F08CF" cards-diamond-outline: "\U000F101D" cards-heart: "\U000F08D0" cards-heart-outline: "\U000F18A0" cards-outline: "\U000F0639" cards-playing: "\U000F18A1" cards-playing-club: "\U000F18A2" cards-playing-club-multiple: "\U000F18A3" cards-playing-club-multiple-outline: "\U000F18A4" cards-playing-club-outline: "\U000F18A5" cards-playing-diamond: "\U000F18A6" cards-playing-diamond-multiple: "\U000F18A7" cards-playing-diamond-multiple-outline: "\U000F18A8" cards-playing-diamond-outline: "\U000F18A9" cards-playing-heart: "\U000F18AA" cards-playing-heart-multiple: "\U000F18AB" cards-playing-heart-multiple-outline: "\U000F18AC" cards-playing-heart-outline: "\U000F18AD" cards-playing-outline: "\U000F063A" cards-playing-spade: "\U000F18AE" cards-playing-spade-multiple: "\U000F18AF" cards-playing-spade-multiple-outline: "\U000F18B0" cards-playing-spade-outline: "\U000F18B1" cards-spade: "\U000F08D1" cards-spade-outline: "\U000F18B2" cards-variant: "\U000F06C7" carrot: "\U000F010F" cart: "\U000F0110" cart-arrow-down: "\U000F0D66" cart-arrow-right: "\U000F0C4E" cart-arrow-up: "\U000F0D67" cart-check: "\U000F15EA" cart-heart: "\U000F18E0" cart-minus: "\U000F0D68" cart-off: "\U000F066B" cart-outline: "\U000F0111" cart-percent: "\U000F1BAE" cart-plus: "\U000F0112" cart-remove: "\U000F0D69" cart-variant: "\U000F15EB" case-sensitive-alt: "\U000F0113" cash: "\U000F0114" cash-100: "\U000F0115" cash-check: "\U000F14EE" cash-clock: "\U000F1A91" cash-fast: "\U000F185C" cash-lock: "\U000F14EA" cash-lock-open: "\U000F14EB" cash-marker: "\U000F0DB8" cash-minus: "\U000F1260" cash-multiple: "\U000F0116" cash-plus: "\U000F1261" cash-refund: "\U000F0A9C" cash-register: "\U000F0CF4" cash-remove: "\U000F1262" cash-sync: "\U000F1A92" cassette: "\U000F09D4" cast: "\U000F0118" cast-audio: "\U000F101E" cast-audio-variant: "\U000F1749" cast-connected: "\U000F0119" cast-education: "\U000F0E1D" cast-off: "\U000F078A" cast-variant: "\U000F001F" castle: "\U000F011A" cat: "\U000F011B" cctv: "\U000F07AE" cctv-off: "\U000F185F" ceiling-fan: "\U000F1797" ceiling-fan-light: "\U000F1798" ceiling-light: "\U000F0769" ceiling-light-multiple: "\U000F18DD" ceiling-light-multiple-outline: "\U000F18DE" ceiling-light-outline: "\U000F17C7" cellphone: "\U000F011C" cellphone-arrow-down: "\U000F09D5" cellphone-arrow-down-variant: "\U000F19C5" cellphone-basic: "\U000F011E" cellphone-charging: "\U000F1397" cellphone-check: "\U000F17FD" cellphone-cog: "\U000F0951" cellphone-dock: "\U000F011F" cellphone-information: "\U000F0F41" cellphone-key: "\U000F094E" cellphone-link: "\U000F0121" cellphone-link-off: "\U000F0122" cellphone-lock: "\U000F094F" cellphone-marker: "\U000F183A" cellphone-message: "\U000F08D3" cellphone-message-off: "\U000F10D2" cellphone-nfc: "\U000F0E90" cellphone-nfc-off: "\U000F12D8" cellphone-off: "\U000F0950" cellphone-play: "\U000F101F" cellphone-remove: "\U000F094D" cellphone-screenshot: "\U000F0A35" cellphone-settings: "\U000F0123" cellphone-sound: "\U000F0952" cellphone-text: "\U000F08D2" cellphone-wireless: "\U000F0815" centos: "\U000F111A" certificate: "\U000F0124" certificate-outline: "\U000F1188" chair-rolling: "\U000F0F48" chair-school: "\U000F0125" chandelier: "\U000F1793" charity: "\U000F0C4F" chart-arc: "\U000F0126" chart-areaspline: "\U000F0127" chart-areaspline-variant: "\U000F0E91" chart-bar: "\U000F0128" chart-bar-stacked: "\U000F076A" chart-bell-curve: "\U000F0C50" chart-bell-curve-cumulative: "\U000F0FA7" chart-box: "\U000F154D" chart-box-outline: "\U000F154E" chart-box-plus-outline: "\U000F154F" chart-bubble: "\U000F05E3" chart-donut: "\U000F07AF" chart-donut-variant: "\U000F07B0" chart-gantt: "\U000F066C" chart-histogram: "\U000F0129" chart-line: "\U000F012A" chart-line-stacked: "\U000F076B" chart-line-variant: "\U000F07B1" chart-multiline: "\U000F08D4" chart-multiple: "\U000F1213" chart-pie: "\U000F012B" chart-ppf: "\U000F1380" chart-sankey: "\U000F11DF" chart-sankey-variant: "\U000F11E0" chart-scatter-plot: "\U000F0E92" chart-scatter-plot-hexbin: "\U000F066D" chart-timeline: "\U000F066E" chart-timeline-variant: "\U000F0E93" chart-timeline-variant-shimmer: "\U000F15B6" chart-tree: "\U000F0E94" chart-waterfall: "\U000F1918" chat: "\U000F0B79" chat-alert: "\U000F0B7A" chat-alert-outline: "\U000F12C9" chat-minus: "\U000F1410" chat-minus-outline: "\U000F1413" chat-outline: "\U000F0EDE" chat-plus: "\U000F140F" chat-plus-outline: "\U000F1412" chat-processing: "\U000F0B7B" chat-processing-outline: "\U000F12CA" chat-question: "\U000F1738" chat-question-outline: "\U000F1739" chat-remove: "\U000F1411" chat-remove-outline: "\U000F1414" chat-sleep: "\U000F12D1" chat-sleep-outline: "\U000F12D2" check: "\U000F012C" check-all: "\U000F012D" check-bold: "\U000F0E1E" check-circle: "\U000F05E0" check-circle-outline: "\U000F05E1" check-decagram: "\U000F0791" check-decagram-outline: "\U000F1740" check-network: "\U000F0C53" check-network-outline: "\U000F0C54" check-outline: "\U000F0855" check-underline: "\U000F0E1F" check-underline-circle: "\U000F0E20" check-underline-circle-outline: "\U000F0E21" checkbook: "\U000F0A9D" checkbox-blank: "\U000F012E" checkbox-blank-badge: "\U000F1176" checkbox-blank-badge-outline: "\U000F0117" checkbox-blank-circle: "\U000F012F" checkbox-blank-circle-outline: "\U000F0130" checkbox-blank-off: "\U000F12EC" checkbox-blank-off-outline: "\U000F12ED" checkbox-blank-outline: "\U000F0131" checkbox-intermediate: "\U000F0856" checkbox-intermediate-variant: "\U000F1B54" checkbox-marked: "\U000F0132" checkbox-marked-circle: "\U000F0133" checkbox-marked-circle-outline: "\U000F0134" checkbox-marked-circle-plus-outline: "\U000F1927" checkbox-marked-outline: "\U000F0135" checkbox-multiple-blank: "\U000F0136" checkbox-multiple-blank-circle: "\U000F063B" checkbox-multiple-blank-circle-outline: "\U000F063C" checkbox-multiple-blank-outline: "\U000F0137" checkbox-multiple-marked: "\U000F0138" checkbox-multiple-marked-circle: "\U000F063D" checkbox-multiple-marked-circle-outline: "\U000F063E" checkbox-multiple-marked-outline: "\U000F0139" checkbox-multiple-outline: "\U000F0C51" checkbox-outline: "\U000F0C52" checkerboard: "\U000F013A" checkerboard-minus: "\U000F1202" checkerboard-plus: "\U000F1201" checkerboard-remove: "\U000F1203" cheese: "\U000F12B9" cheese-off: "\U000F13EE" chef-hat: "\U000F0B7C" chemical-weapon: "\U000F013B" chess-bishop: "\U000F085C" chess-king: "\U000F0857" chess-knight: "\U000F0858" chess-pawn: "\U000F0859" chess-queen: "\U000F085A" chess-rook: "\U000F085B" chevron-double-down: "\U000F013C" chevron-double-left: "\U000F013D" chevron-double-right: "\U000F013E" chevron-double-up: "\U000F013F" chevron-down: "\U000F0140" chevron-down-box: "\U000F09D6" chevron-down-box-outline: "\U000F09D7" chevron-down-circle: "\U000F0B26" chevron-down-circle-outline: "\U000F0B27" chevron-left: "\U000F0141" chevron-left-box: "\U000F09D8" chevron-left-box-outline: "\U000F09D9" chevron-left-circle: "\U000F0B28" chevron-left-circle-outline: "\U000F0B29" chevron-right: "\U000F0142" chevron-right-box: "\U000F09DA" chevron-right-box-outline: "\U000F09DB" chevron-right-circle: "\U000F0B2A" chevron-right-circle-outline: "\U000F0B2B" chevron-triple-down: "\U000F0DB9" chevron-triple-left: "\U000F0DBA" chevron-triple-right: "\U000F0DBB" chevron-triple-up: "\U000F0DBC" chevron-up: "\U000F0143" chevron-up-box: "\U000F09DC" chevron-up-box-outline: "\U000F09DD" chevron-up-circle: "\U000F0B2C" chevron-up-circle-outline: "\U000F0B2D" chili-alert: "\U000F17EA" chili-alert-outline: "\U000F17EB" chili-hot: "\U000F07B2" chili-hot-outline: "\U000F17EC" chili-medium: "\U000F07B3" chili-medium-outline: "\U000F17ED" chili-mild: "\U000F07B4" chili-mild-outline: "\U000F17EE" chili-off: "\U000F1467" chili-off-outline: "\U000F17EF" chip: "\U000F061A" church: "\U000F0144" church-outline: "\U000F1B02" cigar: "\U000F1189" cigar-off: "\U000F141B" circle: "\U000F0765" circle-box: "\U000F15DC" circle-box-outline: "\U000F15DD" circle-double: "\U000F0E95" circle-edit-outline: "\U000F08D5" circle-expand: "\U000F0E96" circle-half: "\U000F1395" circle-half-full: "\U000F1396" circle-medium: "\U000F09DE" circle-multiple: "\U000F0B38" circle-multiple-outline: "\U000F0695" circle-off-outline: "\U000F10D3" circle-opacity: "\U000F1853" circle-outline: "\U000F0766" circle-slice-1: "\U000F0A9E" circle-slice-2: "\U000F0A9F" circle-slice-3: "\U000F0AA0" circle-slice-4: "\U000F0AA1" circle-slice-5: "\U000F0AA2" circle-slice-6: "\U000F0AA3" circle-slice-7: "\U000F0AA4" circle-slice-8: "\U000F0AA5" circle-small: "\U000F09DF" circular-saw: "\U000F0E22" city: "\U000F0146" city-variant: "\U000F0A36" city-variant-outline: "\U000F0A37" clipboard: "\U000F0147" clipboard-account: "\U000F0148" clipboard-account-outline: "\U000F0C55" clipboard-alert: "\U000F0149" clipboard-alert-outline: "\U000F0CF7" clipboard-arrow-down: "\U000F014A" clipboard-arrow-down-outline: "\U000F0C56" clipboard-arrow-left: "\U000F014B" clipboard-arrow-left-outline: "\U000F0CF8" clipboard-arrow-right: "\U000F0CF9" clipboard-arrow-right-outline: "\U000F0CFA" clipboard-arrow-up: "\U000F0C57" clipboard-arrow-up-outline: "\U000F0C58" clipboard-check: "\U000F014E" clipboard-check-multiple: "\U000F1263" clipboard-check-multiple-outline: "\U000F1264" clipboard-check-outline: "\U000F08A8" clipboard-clock: "\U000F16E2" clipboard-clock-outline: "\U000F16E3" clipboard-edit: "\U000F14E5" clipboard-edit-outline: "\U000F14E6" clipboard-file: "\U000F1265" clipboard-file-outline: "\U000F1266" clipboard-flow: "\U000F06C8" clipboard-flow-outline: "\U000F1117" clipboard-list: "\U000F10D4" clipboard-list-outline: "\U000F10D5" clipboard-minus: "\U000F1618" clipboard-minus-outline: "\U000F1619" clipboard-multiple: "\U000F1267" clipboard-multiple-outline: "\U000F1268" clipboard-off: "\U000F161A" clipboard-off-outline: "\U000F161B" clipboard-outline: "\U000F014C" clipboard-play: "\U000F0C59" clipboard-play-multiple: "\U000F1269" clipboard-play-multiple-outline: "\U000F126A" clipboard-play-outline: "\U000F0C5A" clipboard-plus: "\U000F0751" clipboard-plus-outline: "\U000F131F" clipboard-pulse: "\U000F085D" clipboard-pulse-outline: "\U000F085E" clipboard-remove: "\U000F161C" clipboard-remove-outline: "\U000F161D" clipboard-search: "\U000F161E" clipboard-search-outline: "\U000F161F" clipboard-text: "\U000F014D" clipboard-text-clock: "\U000F18F9" clipboard-text-clock-outline: "\U000F18FA" clipboard-text-multiple: "\U000F126B" clipboard-text-multiple-outline: "\U000F126C" clipboard-text-off: "\U000F1620" clipboard-text-off-outline: "\U000F1621" clipboard-text-outline: "\U000F0A38" clipboard-text-play: "\U000F0C5B" clipboard-text-play-outline: "\U000F0C5C" clipboard-text-search: "\U000F1622" clipboard-text-search-outline: "\U000F1623" clippy: "\U000F014F" clock: "\U000F0954" clock-alert: "\U000F0955" clock-alert-outline: "\U000F05CE" clock-check: "\U000F0FA8" clock-check-outline: "\U000F0FA9" clock-digital: "\U000F0E97" clock-edit: "\U000F19BA" clock-edit-outline: "\U000F19BB" clock-end: "\U000F0151" clock-fast: "\U000F0152" clock-in: "\U000F0153" clock-minus: "\U000F1863" clock-minus-outline: "\U000F1864" clock-out: "\U000F0154" clock-outline: "\U000F0150" clock-plus: "\U000F1861" clock-plus-outline: "\U000F1862" clock-remove: "\U000F1865" clock-remove-outline: "\U000F1866" clock-start: "\U000F0155" clock-time-eight: "\U000F1446" clock-time-eight-outline: "\U000F1452" clock-time-eleven: "\U000F1449" clock-time-eleven-outline: "\U000F1455" clock-time-five: "\U000F1443" clock-time-five-outline: "\U000F144F" clock-time-four: "\U000F1442" clock-time-four-outline: "\U000F144E" clock-time-nine: "\U000F1447" clock-time-nine-outline: "\U000F1453" clock-time-one: "\U000F143F" clock-time-one-outline: "\U000F144B" clock-time-seven: "\U000F1445" clock-time-seven-outline: "\U000F1451" clock-time-six: "\U000F1444" clock-time-six-outline: "\U000F1450" clock-time-ten: "\U000F1448" clock-time-ten-outline: "\U000F1454" clock-time-three: "\U000F1441" clock-time-three-outline: "\U000F144D" clock-time-twelve: "\U000F144A" clock-time-twelve-outline: "\U000F1456" clock-time-two: "\U000F1440" clock-time-two-outline: "\U000F144C" close: "\U000F0156" close-box: "\U000F0157" close-box-multiple: "\U000F0C5D" close-box-multiple-outline: "\U000F0C5E" close-box-outline: "\U000F0158" close-circle: "\U000F0159" close-circle-multiple: "\U000F062A" close-circle-multiple-outline: "\U000F0883" close-circle-outline: "\U000F015A" close-network: "\U000F015B" close-network-outline: "\U000F0C5F" close-octagon: "\U000F015C" close-octagon-outline: "\U000F015D" close-outline: "\U000F06C9" close-thick: "\U000F1398" closed-caption: "\U000F015E" closed-caption-outline: "\U000F0DBD" cloud: "\U000F015F" cloud-alert: "\U000F09E0" cloud-braces: "\U000F07B5" cloud-check: "\U000F0160" cloud-check-outline: "\U000F12CC" cloud-circle: "\U000F0161" cloud-download: "\U000F0162" cloud-download-outline: "\U000F0B7D" cloud-lock: "\U000F11F1" cloud-lock-outline: "\U000F11F2" cloud-off-outline: "\U000F0164" cloud-outline: "\U000F0163" cloud-percent: "\U000F1A35" cloud-percent-outline: "\U000F1A36" cloud-print: "\U000F0165" cloud-print-outline: "\U000F0166" cloud-question: "\U000F0A39" cloud-refresh: "\U000F052A" cloud-search: "\U000F0956" cloud-search-outline: "\U000F0957" cloud-sync: "\U000F063F" cloud-sync-outline: "\U000F12D6" cloud-tags: "\U000F07B6" cloud-upload: "\U000F0167" cloud-upload-outline: "\U000F0B7E" clouds: "\U000F1B95" clover: "\U000F0816" coach-lamp: "\U000F1020" coach-lamp-variant: "\U000F1A37" coat-rack: "\U000F109E" code-array: "\U000F0168" code-braces: "\U000F0169" code-braces-box: "\U000F10D6" code-brackets: "\U000F016A" code-equal: "\U000F016B" code-greater-than: "\U000F016C" code-greater-than-or-equal: "\U000F016D" code-json: "\U000F0626" code-less-than: "\U000F016E" code-less-than-or-equal: "\U000F016F" code-not-equal: "\U000F0170" code-not-equal-variant: "\U000F0171" code-parentheses: "\U000F0172" code-parentheses-box: "\U000F10D7" code-string: "\U000F0173" code-tags: "\U000F0174" code-tags-check: "\U000F0694" codepen: "\U000F0175" coffee: "\U000F0176" coffee-maker: "\U000F109F" coffee-maker-check: "\U000F1931" coffee-maker-check-outline: "\U000F1932" coffee-maker-outline: "\U000F181B" coffee-off: "\U000F0FAA" coffee-off-outline: "\U000F0FAB" coffee-outline: "\U000F06CA" coffee-to-go: "\U000F0177" coffee-to-go-outline: "\U000F130E" coffin: "\U000F0B7F" cog: "\U000F0493" cog-box: "\U000F0494" cog-clockwise: "\U000F11DD" cog-counterclockwise: "\U000F11DE" cog-off: "\U000F13CE" cog-off-outline: "\U000F13CF" cog-outline: "\U000F08BB" cog-pause: "\U000F1933" cog-pause-outline: "\U000F1934" cog-play: "\U000F1935" cog-play-outline: "\U000F1936" cog-refresh: "\U000F145E" cog-refresh-outline: "\U000F145F" cog-stop: "\U000F1937" cog-stop-outline: "\U000F1938" cog-sync: "\U000F1460" cog-sync-outline: "\U000F1461" cog-transfer: "\U000F105B" cog-transfer-outline: "\U000F105C" cogs: "\U000F08D6" collage: "\U000F0640" collapse-all: "\U000F0AA6" collapse-all-outline: "\U000F0AA7" color-helper: "\U000F0179" comma: "\U000F0E23" comma-box: "\U000F0E2B" comma-box-outline: "\U000F0E24" comma-circle: "\U000F0E25" comma-circle-outline: "\U000F0E26" comment: "\U000F017A" comment-account: "\U000F017B" comment-account-outline: "\U000F017C" comment-alert: "\U000F017D" comment-alert-outline: "\U000F017E" comment-arrow-left: "\U000F09E1" comment-arrow-left-outline: "\U000F09E2" comment-arrow-right: "\U000F09E3" comment-arrow-right-outline: "\U000F09E4" comment-bookmark: "\U000F15AE" comment-bookmark-outline: "\U000F15AF" comment-check: "\U000F017F" comment-check-outline: "\U000F0180" comment-edit: "\U000F11BF" comment-edit-outline: "\U000F12C4" comment-eye: "\U000F0A3A" comment-eye-outline: "\U000F0A3B" comment-flash: "\U000F15B0" comment-flash-outline: "\U000F15B1" comment-minus: "\U000F15DF" comment-minus-outline: "\U000F15E0" comment-multiple: "\U000F085F" comment-multiple-outline: "\U000F0181" comment-off: "\U000F15E1" comment-off-outline: "\U000F15E2" comment-outline: "\U000F0182" comment-plus: "\U000F09E5" comment-plus-outline: "\U000F0183" comment-processing: "\U000F0184" comment-processing-outline: "\U000F0185" comment-question: "\U000F0817" comment-question-outline: "\U000F0186" comment-quote: "\U000F1021" comment-quote-outline: "\U000F1022" comment-remove: "\U000F05DE" comment-remove-outline: "\U000F0187" comment-search: "\U000F0A3C" comment-search-outline: "\U000F0A3D" comment-text: "\U000F0188" comment-text-multiple: "\U000F0860" comment-text-multiple-outline: "\U000F0861" comment-text-outline: "\U000F0189" compare: "\U000F018A" compare-horizontal: "\U000F1492" compare-remove: "\U000F18B3" compare-vertical: "\U000F1493" compass: "\U000F018B" compass-off: "\U000F0B80" compass-off-outline: "\U000F0B81" compass-outline: "\U000F018C" compass-rose: "\U000F1382" compost: "\U000F1A38" cone: "\U000F194C" cone-off: "\U000F194D" connection: "\U000F1616" console: "\U000F018D" console-line: "\U000F07B7" console-network: "\U000F08A9" console-network-outline: "\U000F0C60" consolidate: "\U000F10D8" contactless-payment: "\U000F0D6A" contactless-payment-circle: "\U000F0321" contactless-payment-circle-outline: "\U000F0408" contacts: "\U000F06CB" contacts-outline: "\U000F05B8" contain: "\U000F0A3E" contain-end: "\U000F0A3F" contain-start: "\U000F0A40" content-copy: "\U000F018F" content-cut: "\U000F0190" content-duplicate: "\U000F0191" content-paste: "\U000F0192" content-save: "\U000F0193" content-save-alert: "\U000F0F42" content-save-alert-outline: "\U000F0F43" content-save-all: "\U000F0194" content-save-all-outline: "\U000F0F44" content-save-check: "\U000F18EA" content-save-check-outline: "\U000F18EB" content-save-cog: "\U000F145B" content-save-cog-outline: "\U000F145C" content-save-edit: "\U000F0CFB" content-save-edit-outline: "\U000F0CFC" content-save-minus: "\U000F1B43" content-save-minus-outline: "\U000F1B44" content-save-move: "\U000F0E27" content-save-move-outline: "\U000F0E28" content-save-off: "\U000F1643" content-save-off-outline: "\U000F1644" content-save-outline: "\U000F0818" content-save-plus: "\U000F1B41" content-save-plus-outline: "\U000F1B42" content-save-settings: "\U000F061B" content-save-settings-outline: "\U000F0B2E" contrast: "\U000F0195" contrast-box: "\U000F0196" contrast-circle: "\U000F0197" controller: "\U000F02B4" controller-classic: "\U000F0B82" controller-classic-outline: "\U000F0B83" controller-off: "\U000F02B5" cookie: "\U000F0198" cookie-alert: "\U000F16D0" cookie-alert-outline: "\U000F16D1" cookie-check: "\U000F16D2" cookie-check-outline: "\U000F16D3" cookie-clock: "\U000F16E4" cookie-clock-outline: "\U000F16E5" cookie-cog: "\U000F16D4" cookie-cog-outline: "\U000F16D5" cookie-edit: "\U000F16E6" cookie-edit-outline: "\U000F16E7" cookie-lock: "\U000F16E8" cookie-lock-outline: "\U000F16E9" cookie-minus: "\U000F16DA" cookie-minus-outline: "\U000F16DB" cookie-off: "\U000F16EA" cookie-off-outline: "\U000F16EB" cookie-outline: "\U000F16DE" cookie-plus: "\U000F16D6" cookie-plus-outline: "\U000F16D7" cookie-refresh: "\U000F16EC" cookie-refresh-outline: "\U000F16ED" cookie-remove: "\U000F16D8" cookie-remove-outline: "\U000F16D9" cookie-settings: "\U000F16DC" cookie-settings-outline: "\U000F16DD" coolant-temperature: "\U000F03C8" copyleft: "\U000F1939" copyright: "\U000F05E6" cordova: "\U000F0958" corn: "\U000F07B8" corn-off: "\U000F13EF" cosine-wave: "\U000F1479" counter: "\U000F0199" countertop: "\U000F181C" countertop-outline: "\U000F181D" cow: "\U000F019A" cow-off: "\U000F18FC" cpu-32-bit: "\U000F0EDF" cpu-64-bit: "\U000F0EE0" cradle: "\U000F198B" cradle-outline: "\U000F1991" crane: "\U000F0862" creation: "\U000F0674" creative-commons: "\U000F0D6B" credit-card: "\U000F0FEF" credit-card-check: "\U000F13D0" credit-card-check-outline: "\U000F13D1" credit-card-chip: "\U000F190F" credit-card-chip-outline: "\U000F1910" credit-card-clock: "\U000F0EE1" credit-card-clock-outline: "\U000F0EE2" credit-card-edit: "\U000F17D7" credit-card-edit-outline: "\U000F17D8" credit-card-fast: "\U000F1911" credit-card-fast-outline: "\U000F1912" credit-card-lock: "\U000F18E7" credit-card-lock-outline: "\U000F18E8" credit-card-marker: "\U000F06A8" credit-card-marker-outline: "\U000F0DBE" credit-card-minus: "\U000F0FAC" credit-card-minus-outline: "\U000F0FAD" credit-card-multiple: "\U000F0FF0" credit-card-multiple-outline: "\U000F019C" credit-card-off: "\U000F0FF1" credit-card-off-outline: "\U000F05E4" credit-card-outline: "\U000F019B" credit-card-plus: "\U000F0FF2" credit-card-plus-outline: "\U000F0676" credit-card-refresh: "\U000F1645" credit-card-refresh-outline: "\U000F1646" credit-card-refund: "\U000F0FF3" credit-card-refund-outline: "\U000F0AA8" credit-card-remove: "\U000F0FAE" credit-card-remove-outline: "\U000F0FAF" credit-card-scan: "\U000F0FF4" credit-card-scan-outline: "\U000F019D" credit-card-search: "\U000F1647" credit-card-search-outline: "\U000F1648" credit-card-settings: "\U000F0FF5" credit-card-settings-outline: "\U000F08D7" credit-card-sync: "\U000F1649" credit-card-sync-outline: "\U000F164A" credit-card-wireless: "\U000F0802" credit-card-wireless-off: "\U000F057A" credit-card-wireless-off-outline: "\U000F057B" credit-card-wireless-outline: "\U000F0D6C" cricket: "\U000F0D6D" crop: "\U000F019E" crop-free: "\U000F019F" crop-landscape: "\U000F01A0" crop-portrait: "\U000F01A1" crop-rotate: "\U000F0696" crop-square: "\U000F01A2" cross: "\U000F0953" cross-bolnisi: "\U000F0CED" cross-celtic: "\U000F0CF5" cross-outline: "\U000F0CF6" crosshairs: "\U000F01A3" crosshairs-gps: "\U000F01A4" crosshairs-off: "\U000F0F45" crosshairs-question: "\U000F1136" crowd: "\U000F1975" crown: "\U000F01A5" crown-circle: "\U000F17DC" crown-circle-outline: "\U000F17DD" crown-outline: "\U000F11D0" cryengine: "\U000F0959" crystal-ball: "\U000F0B2F" cube: "\U000F01A6" cube-off: "\U000F141C" cube-off-outline: "\U000F141D" cube-outline: "\U000F01A7" cube-scan: "\U000F0B84" cube-send: "\U000F01A8" cube-unfolded: "\U000F01A9" cup: "\U000F01AA" cup-off: "\U000F05E5" cup-off-outline: "\U000F137D" cup-outline: "\U000F130F" cup-water: "\U000F01AB" cupboard: "\U000F0F46" cupboard-outline: "\U000F0F47" cupcake: "\U000F095A" curling: "\U000F0863" currency-bdt: "\U000F0864" currency-brl: "\U000F0B85" currency-btc: "\U000F01AC" currency-cny: "\U000F07BA" currency-eth: "\U000F07BB" currency-eur: "\U000F01AD" currency-eur-off: "\U000F1315" currency-fra: "\U000F1A39" currency-gbp: "\U000F01AE" currency-ils: "\U000F0C61" currency-inr: "\U000F01AF" currency-jpy: "\U000F07BC" currency-krw: "\U000F07BD" currency-kzt: "\U000F0865" currency-mnt: "\U000F1512" currency-ngn: "\U000F01B0" currency-php: "\U000F09E6" currency-rial: "\U000F0E9C" currency-rub: "\U000F01B1" currency-rupee: "\U000F1976" currency-sign: "\U000F07BE" currency-try: "\U000F01B2" currency-twd: "\U000F07BF" currency-uah: "\U000F1B9B" currency-usd: "\U000F01C1" currency-usd-off: "\U000F067A" current-ac: "\U000F1480" current-dc: "\U000F095C" cursor-default: "\U000F01C0" cursor-default-click: "\U000F0CFD" cursor-default-click-outline: "\U000F0CFE" cursor-default-gesture: "\U000F1127" cursor-default-gesture-outline: "\U000F1128" cursor-default-outline: "\U000F01BF" cursor-move: "\U000F01BE" cursor-pointer: "\U000F01BD" cursor-text: "\U000F05E7" curtains: "\U000F1846" curtains-closed: "\U000F1847" cylinder: "\U000F194E" cylinder-off: "\U000F194F" dance-ballroom: "\U000F15FB" dance-pole: "\U000F1578" data-matrix: "\U000F153C" data-matrix-edit: "\U000F153D" data-matrix-minus: "\U000F153E" data-matrix-plus: "\U000F153F" data-matrix-remove: "\U000F1540" data-matrix-scan: "\U000F1541" database: "\U000F01BC" database-alert: "\U000F163A" database-alert-outline: "\U000F1624" database-arrow-down: "\U000F163B" database-arrow-down-outline: "\U000F1625" database-arrow-left: "\U000F163C" database-arrow-left-outline: "\U000F1626" database-arrow-right: "\U000F163D" database-arrow-right-outline: "\U000F1627" database-arrow-up: "\U000F163E" database-arrow-up-outline: "\U000F1628" database-check: "\U000F0AA9" database-check-outline: "\U000F1629" database-clock: "\U000F163F" database-clock-outline: "\U000F162A" database-cog: "\U000F164B" database-cog-outline: "\U000F164C" database-edit: "\U000F0B86" database-edit-outline: "\U000F162B" database-export: "\U000F095E" database-export-outline: "\U000F162C" database-eye: "\U000F191F" database-eye-off: "\U000F1920" database-eye-off-outline: "\U000F1921" database-eye-outline: "\U000F1922" database-import: "\U000F095D" database-import-outline: "\U000F162D" database-lock: "\U000F0AAA" database-lock-outline: "\U000F162E" database-marker: "\U000F12F6" database-marker-outline: "\U000F162F" database-minus: "\U000F01BB" database-minus-outline: "\U000F1630" database-off: "\U000F1640" database-off-outline: "\U000F1631" database-outline: "\U000F1632" database-plus: "\U000F01BA" database-plus-outline: "\U000F1633" database-refresh: "\U000F05C2" database-refresh-outline: "\U000F1634" database-remove: "\U000F0D00" database-remove-outline: "\U000F1635" database-search: "\U000F0866" database-search-outline: "\U000F1636" database-settings: "\U000F0D01" database-settings-outline: "\U000F1637" database-sync: "\U000F0CFF" database-sync-outline: "\U000F1638" death-star: "\U000F08D8" death-star-variant: "\U000F08D9" deathly-hallows: "\U000F0B87" debian: "\U000F08DA" debug-step-into: "\U000F01B9" debug-step-out: "\U000F01B8" debug-step-over: "\U000F01B7" decagram: "\U000F076C" decagram-outline: "\U000F076D" decimal: "\U000F10A1" decimal-comma: "\U000F10A2" decimal-comma-decrease: "\U000F10A3" decimal-comma-increase: "\U000F10A4" decimal-decrease: "\U000F01B6" decimal-increase: "\U000F01B5" delete: "\U000F01B4" delete-alert: "\U000F10A5" delete-alert-outline: "\U000F10A6" delete-circle: "\U000F0683" delete-circle-outline: "\U000F0B88" delete-clock: "\U000F1556" delete-clock-outline: "\U000F1557" delete-empty: "\U000F06CC" delete-empty-outline: "\U000F0E9D" delete-forever: "\U000F05E8" delete-forever-outline: "\U000F0B89" delete-off: "\U000F10A7" delete-off-outline: "\U000F10A8" delete-outline: "\U000F09E7" delete-restore: "\U000F0819" delete-sweep: "\U000F05E9" delete-sweep-outline: "\U000F0C62" delete-variant: "\U000F01B3" delta: "\U000F01C2" desk: "\U000F1239" desk-lamp: "\U000F095F" desk-lamp-off: "\U000F1B1F" desk-lamp-on: "\U000F1B20" deskphone: "\U000F01C3" desktop-classic: "\U000F07C0" desktop-tower: "\U000F01C5" desktop-tower-monitor: "\U000F0AAB" details: "\U000F01C6" dev-to: "\U000F0D6E" developer-board: "\U000F0697" deviantart: "\U000F01C7" devices: "\U000F0FB0" dharmachakra: "\U000F094B" diabetes: "\U000F1126" dialpad: "\U000F061C" diameter: "\U000F0C63" diameter-outline: "\U000F0C64" diameter-variant: "\U000F0C65" diamond: "\U000F0B8A" diamond-outline: "\U000F0B8B" diamond-stone: "\U000F01C8" dice-1: "\U000F01CA" dice-1-outline: "\U000F114A" dice-2: "\U000F01CB" dice-2-outline: "\U000F114B" dice-3: "\U000F01CC" dice-3-outline: "\U000F114C" dice-4: "\U000F01CD" dice-4-outline: "\U000F114D" dice-5: "\U000F01CE" dice-5-outline: "\U000F114E" dice-6: "\U000F01CF" dice-6-outline: "\U000F114F" dice-d10: "\U000F1153" dice-d10-outline: "\U000F076F" dice-d12: "\U000F1154" dice-d12-outline: "\U000F0867" dice-d20: "\U000F1155" dice-d20-outline: "\U000F05EA" dice-d4: "\U000F1150" dice-d4-outline: "\U000F05EB" dice-d6: "\U000F1151" dice-d6-outline: "\U000F05ED" dice-d8: "\U000F1152" dice-d8-outline: "\U000F05EC" dice-multiple: "\U000F076E" dice-multiple-outline: "\U000F1156" digital-ocean: "\U000F1237" dip-switch: "\U000F07C1" directions: "\U000F01D0" directions-fork: "\U000F0641" disc: "\U000F05EE" disc-alert: "\U000F01D1" disc-player: "\U000F0960" dishwasher: "\U000F0AAC" dishwasher-alert: "\U000F11B8" dishwasher-off: "\U000F11B9" disqus: "\U000F01D2" distribute-horizontal-center: "\U000F11C9" distribute-horizontal-left: "\U000F11C8" distribute-horizontal-right: "\U000F11CA" distribute-vertical-bottom: "\U000F11CB" distribute-vertical-center: "\U000F11CC" distribute-vertical-top: "\U000F11CD" diversify: "\U000F1877" diving: "\U000F1977" diving-flippers: "\U000F0DBF" diving-helmet: "\U000F0DC0" diving-scuba: "\U000F1B77" diving-scuba-flag: "\U000F0DC2" diving-scuba-mask: "\U000F0DC1" diving-scuba-tank: "\U000F0DC3" diving-scuba-tank-multiple: "\U000F0DC4" diving-snorkel: "\U000F0DC5" division: "\U000F01D4" division-box: "\U000F01D5" dlna: "\U000F0A41" dna: "\U000F0684" dns: "\U000F01D6" dns-outline: "\U000F0B8C" dock-bottom: "\U000F10A9" dock-left: "\U000F10AA" dock-right: "\U000F10AB" dock-top: "\U000F1513" dock-window: "\U000F10AC" docker: "\U000F0868" doctor: "\U000F0A42" dog: "\U000F0A43" dog-service: "\U000F0AAD" dog-side: "\U000F0A44" dog-side-off: "\U000F16EE" dolby: "\U000F06B3" dolly: "\U000F0E9E" dolphin: "\U000F18B4" domain: "\U000F01D7" domain-off: "\U000F0D6F" domain-plus: "\U000F10AD" domain-remove: "\U000F10AE" dome-light: "\U000F141E" domino-mask: "\U000F1023" donkey: "\U000F07C2" door: "\U000F081A" door-closed: "\U000F081B" door-closed-lock: "\U000F10AF" door-open: "\U000F081C" door-sliding: "\U000F181E" door-sliding-lock: "\U000F181F" door-sliding-open: "\U000F1820" doorbell: "\U000F12E6" doorbell-video: "\U000F0869" dot-net: "\U000F0AAE" dots-circle: "\U000F1978" dots-grid: "\U000F15FC" dots-hexagon: "\U000F15FF" dots-horizontal: "\U000F01D8" dots-horizontal-circle: "\U000F07C3" dots-horizontal-circle-outline: "\U000F0B8D" dots-square: "\U000F15FD" dots-triangle: "\U000F15FE" dots-vertical: "\U000F01D9" dots-vertical-circle: "\U000F07C4" dots-vertical-circle-outline: "\U000F0B8E" download: "\U000F01DA" download-box: "\U000F1462" download-box-outline: "\U000F1463" download-circle: "\U000F1464" download-circle-outline: "\U000F1465" download-lock: "\U000F1320" download-lock-outline: "\U000F1321" download-multiple: "\U000F09E9" download-network: "\U000F06F4" download-network-outline: "\U000F0C66" download-off: "\U000F10B0" download-off-outline: "\U000F10B1" download-outline: "\U000F0B8F" drag: "\U000F01DB" drag-horizontal: "\U000F01DC" drag-horizontal-variant: "\U000F12F0" drag-variant: "\U000F0B90" drag-vertical: "\U000F01DD" drag-vertical-variant: "\U000F12F1" drama-masks: "\U000F0D02" draw: "\U000F0F49" draw-pen: "\U000F19B9" drawing: "\U000F01DE" drawing-box: "\U000F01DF" dresser: "\U000F0F4A" dresser-outline: "\U000F0F4B" drone: "\U000F01E2" dropbox: "\U000F01E3" drupal: "\U000F01E4" duck: "\U000F01E5" dumbbell: "\U000F01E6" dump-truck: "\U000F0C67" ear-hearing: "\U000F07C5" ear-hearing-loop: "\U000F1AEE" ear-hearing-off: "\U000F0A45" earbuds: "\U000F184F" earbuds-off: "\U000F1850" earbuds-off-outline: "\U000F1851" earbuds-outline: "\U000F1852" earth: "\U000F01E7" earth-arrow-right: "\U000F1311" earth-box: "\U000F06CD" earth-box-minus: "\U000F1407" earth-box-off: "\U000F06CE" earth-box-plus: "\U000F1406" earth-box-remove: "\U000F1408" earth-minus: "\U000F1404" earth-off: "\U000F01E8" earth-plus: "\U000F1403" earth-remove: "\U000F1405" egg: "\U000F0AAF" egg-easter: "\U000F0AB0" egg-fried: "\U000F184A" egg-off: "\U000F13F0" egg-off-outline: "\U000F13F1" egg-outline: "\U000F13F2" eiffel-tower: "\U000F156B" eight-track: "\U000F09EA" eject: "\U000F01EA" eject-circle: "\U000F1B23" eject-circle-outline: "\U000F1B24" eject-outline: "\U000F0B91" electric-switch: "\U000F0E9F" electric-switch-closed: "\U000F10D9" electron-framework: "\U000F1024" elephant: "\U000F07C6" elevation-decline: "\U000F01EB" elevation-rise: "\U000F01EC" elevator: "\U000F01ED" elevator-down: "\U000F12C2" elevator-passenger: "\U000F1381" elevator-passenger-off: "\U000F1979" elevator-passenger-off-outline: "\U000F197A" elevator-passenger-outline: "\U000F197B" elevator-up: "\U000F12C1" ellipse: "\U000F0EA0" ellipse-outline: "\U000F0EA1" email: "\U000F01EE" email-alert: "\U000F06CF" email-alert-outline: "\U000F0D42" email-arrow-left: "\U000F10DA" email-arrow-left-outline: "\U000F10DB" email-arrow-right: "\U000F10DC" email-arrow-right-outline: "\U000F10DD" email-box: "\U000F0D03" email-check: "\U000F0AB1" email-check-outline: "\U000F0AB2" email-edit: "\U000F0EE3" email-edit-outline: "\U000F0EE4" email-fast: "\U000F186F" email-fast-outline: "\U000F1870" email-lock: "\U000F01F1" email-lock-outline: "\U000F1B61" email-mark-as-unread: "\U000F0B92" email-minus: "\U000F0EE5" email-minus-outline: "\U000F0EE6" email-multiple: "\U000F0EE7" email-multiple-outline: "\U000F0EE8" email-newsletter: "\U000F0FB1" email-off: "\U000F13E3" email-off-outline: "\U000F13E4" email-open: "\U000F01EF" email-open-multiple: "\U000F0EE9" email-open-multiple-outline: "\U000F0EEA" email-open-outline: "\U000F05EF" email-outline: "\U000F01F0" email-plus: "\U000F09EB" email-plus-outline: "\U000F09EC" email-remove: "\U000F1661" email-remove-outline: "\U000F1662" email-seal: "\U000F195B" email-seal-outline: "\U000F195C" email-search: "\U000F0961" email-search-outline: "\U000F0962" email-sync: "\U000F12C7" email-sync-outline: "\U000F12C8" email-variant: "\U000F05F0" ember: "\U000F0B30" emby: "\U000F06B4" emoticon: "\U000F0C68" emoticon-angry: "\U000F0C69" emoticon-angry-outline: "\U000F0C6A" emoticon-confused: "\U000F10DE" emoticon-confused-outline: "\U000F10DF" emoticon-cool: "\U000F0C6B" emoticon-cool-outline: "\U000F01F3" emoticon-cry: "\U000F0C6C" emoticon-cry-outline: "\U000F0C6D" emoticon-dead: "\U000F0C6E" emoticon-dead-outline: "\U000F069B" emoticon-devil: "\U000F0C6F" emoticon-devil-outline: "\U000F01F4" emoticon-excited: "\U000F0C70" emoticon-excited-outline: "\U000F069C" emoticon-frown: "\U000F0F4C" emoticon-frown-outline: "\U000F0F4D" emoticon-happy: "\U000F0C71" emoticon-happy-outline: "\U000F01F5" emoticon-kiss: "\U000F0C72" emoticon-kiss-outline: "\U000F0C73" emoticon-lol: "\U000F1214" emoticon-lol-outline: "\U000F1215" emoticon-neutral: "\U000F0C74" emoticon-neutral-outline: "\U000F01F6" emoticon-outline: "\U000F01F2" emoticon-poop: "\U000F01F7" emoticon-poop-outline: "\U000F0C75" emoticon-sad: "\U000F0C76" emoticon-sad-outline: "\U000F01F8" emoticon-sick: "\U000F157C" emoticon-sick-outline: "\U000F157D" emoticon-tongue: "\U000F01F9" emoticon-tongue-outline: "\U000F0C77" emoticon-wink: "\U000F0C78" emoticon-wink-outline: "\U000F0C79" engine: "\U000F01FA" engine-off: "\U000F0A46" engine-off-outline: "\U000F0A47" engine-outline: "\U000F01FB" epsilon: "\U000F10E0" equal: "\U000F01FC" equal-box: "\U000F01FD" equalizer: "\U000F0EA2" equalizer-outline: "\U000F0EA3" eraser: "\U000F01FE" eraser-variant: "\U000F0642" escalator: "\U000F01FF" escalator-box: "\U000F1399" escalator-down: "\U000F12C0" escalator-up: "\U000F12BF" eslint: "\U000F0C7A" et: "\U000F0AB3" ethereum: "\U000F086A" ethernet: "\U000F0200" ethernet-cable: "\U000F0201" ethernet-cable-off: "\U000F0202" ev-plug-ccs1: "\U000F1519" ev-plug-ccs2: "\U000F151A" ev-plug-chademo: "\U000F151B" ev-plug-tesla: "\U000F151C" ev-plug-type1: "\U000F151D" ev-plug-type2: "\U000F151E" ev-station: "\U000F05F1" evernote: "\U000F0204" excavator: "\U000F1025" exclamation: "\U000F0205" exclamation-thick: "\U000F1238" exit-run: "\U000F0A48" exit-to-app: "\U000F0206" expand-all: "\U000F0AB4" expand-all-outline: "\U000F0AB5" expansion-card: "\U000F08AE" expansion-card-variant: "\U000F0FB2" exponent: "\U000F0963" exponent-box: "\U000F0964" export: "\U000F0207" export-variant: "\U000F0B93" eye: "\U000F0208" eye-arrow-left: "\U000F18FD" eye-arrow-left-outline: "\U000F18FE" eye-arrow-right: "\U000F18FF" eye-arrow-right-outline: "\U000F1900" eye-check: "\U000F0D04" eye-check-outline: "\U000F0D05" eye-circle: "\U000F0B94" eye-circle-outline: "\U000F0B95" eye-minus: "\U000F1026" eye-minus-outline: "\U000F1027" eye-off: "\U000F0209" eye-off-outline: "\U000F06D1" eye-outline: "\U000F06D0" eye-plus: "\U000F086B" eye-plus-outline: "\U000F086C" eye-refresh: "\U000F197C" eye-refresh-outline: "\U000F197D" eye-remove: "\U000F15E3" eye-remove-outline: "\U000F15E4" eye-settings: "\U000F086D" eye-settings-outline: "\U000F086E" eyedropper: "\U000F020A" eyedropper-minus: "\U000F13DD" eyedropper-off: "\U000F13DF" eyedropper-plus: "\U000F13DC" eyedropper-remove: "\U000F13DE" eyedropper-variant: "\U000F020B" face-agent: "\U000F0D70" face-man: "\U000F0643" face-man-outline: "\U000F0B96" face-man-profile: "\U000F0644" face-man-shimmer: "\U000F15CC" face-man-shimmer-outline: "\U000F15CD" face-mask: "\U000F1586" face-mask-outline: "\U000F1587" face-recognition: "\U000F0C7B" face-woman: "\U000F1077" face-woman-outline: "\U000F1078" face-woman-profile: "\U000F1076" face-woman-shimmer: "\U000F15CE" face-woman-shimmer-outline: "\U000F15CF" facebook: "\U000F020C" facebook-gaming: "\U000F07DD" facebook-messenger: "\U000F020E" facebook-workplace: "\U000F0B31" factory: "\U000F020F" family-tree: "\U000F160E" fan: "\U000F0210" fan-alert: "\U000F146C" fan-auto: "\U000F171D" fan-chevron-down: "\U000F146D" fan-chevron-up: "\U000F146E" fan-clock: "\U000F1A3A" fan-minus: "\U000F1470" fan-off: "\U000F081D" fan-plus: "\U000F146F" fan-remove: "\U000F1471" fan-speed-1: "\U000F1472" fan-speed-2: "\U000F1473" fan-speed-3: "\U000F1474" fast-forward: "\U000F0211" fast-forward-10: "\U000F0D71" fast-forward-15: "\U000F193A" fast-forward-30: "\U000F0D06" fast-forward-45: "\U000F1B12" fast-forward-5: "\U000F11F8" fast-forward-60: "\U000F160B" fast-forward-outline: "\U000F06D2" faucet: "\U000F1B29" faucet-variant: "\U000F1B2A" fax: "\U000F0212" feather: "\U000F06D3" feature-search: "\U000F0A49" feature-search-outline: "\U000F0A4A" fedora: "\U000F08DB" fence: "\U000F179A" fence-electric: "\U000F17F6" fencing: "\U000F14C1" ferris-wheel: "\U000F0EA4" ferry: "\U000F0213" file: "\U000F0214" file-account: "\U000F073B" file-account-outline: "\U000F1028" file-alert: "\U000F0A4B" file-alert-outline: "\U000F0A4C" file-arrow-left-right: "\U000F1A93" file-arrow-left-right-outline: "\U000F1A94" file-arrow-up-down: "\U000F1A95" file-arrow-up-down-outline: "\U000F1A96" file-cabinet: "\U000F0AB6" file-cad: "\U000F0EEB" file-cad-box: "\U000F0EEC" file-cancel: "\U000F0DC6" file-cancel-outline: "\U000F0DC7" file-certificate: "\U000F1186" file-certificate-outline: "\U000F1187" file-chart: "\U000F0215" file-chart-check: "\U000F19C6" file-chart-check-outline: "\U000F19C7" file-chart-outline: "\U000F1029" file-check: "\U000F0216" file-check-outline: "\U000F0E29" file-clock: "\U000F12E1" file-clock-outline: "\U000F12E2" file-cloud: "\U000F0217" file-cloud-outline: "\U000F102A" file-code: "\U000F022E" file-code-outline: "\U000F102B" file-cog: "\U000F107B" file-cog-outline: "\U000F107C" file-compare: "\U000F08AA" file-delimited: "\U000F0218" file-delimited-outline: "\U000F0EA5" file-document: "\U000F0219" file-document-alert: "\U000F1A97" file-document-alert-outline: "\U000F1A98" file-document-check: "\U000F1A99" file-document-check-outline: "\U000F1A9A" file-document-edit: "\U000F0DC8" file-document-edit-outline: "\U000F0DC9" file-document-minus: "\U000F1A9B" file-document-minus-outline: "\U000F1A9C" file-document-multiple: "\U000F1517" file-document-multiple-outline: "\U000F1518" file-document-outline: "\U000F09EE" file-document-plus: "\U000F1A9D" file-document-plus-outline: "\U000F1A9E" file-document-remove: "\U000F1A9F" file-document-remove-outline: "\U000F1AA0" file-download: "\U000F0965" file-download-outline: "\U000F0966" file-edit: "\U000F11E7" file-edit-outline: "\U000F11E8" file-excel: "\U000F021B" file-excel-box: "\U000F021C" file-excel-box-outline: "\U000F102C" file-excel-outline: "\U000F102D" file-export: "\U000F021D" file-export-outline: "\U000F102E" file-eye: "\U000F0DCA" file-eye-outline: "\U000F0DCB" file-find: "\U000F021E" file-find-outline: "\U000F0B97" file-gif-box: "\U000F0D78" file-hidden: "\U000F0613" file-image: "\U000F021F" file-image-marker: "\U000F1772" file-image-marker-outline: "\U000F1773" file-image-minus: "\U000F193B" file-image-minus-outline: "\U000F193C" file-image-outline: "\U000F0EB0" file-image-plus: "\U000F193D" file-image-plus-outline: "\U000F193E" file-image-remove: "\U000F193F" file-image-remove-outline: "\U000F1940" file-import: "\U000F0220" file-import-outline: "\U000F102F" file-jpg-box: "\U000F0225" file-key: "\U000F1184" file-key-outline: "\U000F1185" file-link: "\U000F1177" file-link-outline: "\U000F1178" file-lock: "\U000F0221" file-lock-open: "\U000F19C8" file-lock-open-outline: "\U000F19C9" file-lock-outline: "\U000F1030" file-marker: "\U000F1774" file-marker-outline: "\U000F1775" file-minus: "\U000F1AA1" file-minus-outline: "\U000F1AA2" file-move: "\U000F0AB9" file-move-outline: "\U000F1031" file-multiple: "\U000F0222" file-multiple-outline: "\U000F1032" file-music: "\U000F0223" file-music-outline: "\U000F0E2A" file-outline: "\U000F0224" file-pdf-box: "\U000F0226" file-percent: "\U000F081E" file-percent-outline: "\U000F1033" file-phone: "\U000F1179" file-phone-outline: "\U000F117A" file-plus: "\U000F0752" file-plus-outline: "\U000F0EED" file-png-box: "\U000F0E2D" file-powerpoint: "\U000F0227" file-powerpoint-box: "\U000F0228" file-powerpoint-box-outline: "\U000F1034" file-powerpoint-outline: "\U000F1035" file-presentation-box: "\U000F0229" file-question: "\U000F086F" file-question-outline: "\U000F1036" file-refresh: "\U000F0918" file-refresh-outline: "\U000F0541" file-remove: "\U000F0B98" file-remove-outline: "\U000F1037" file-replace: "\U000F0B32" file-replace-outline: "\U000F0B33" file-restore: "\U000F0670" file-restore-outline: "\U000F1038" file-rotate-left: "\U000F1A3B" file-rotate-left-outline: "\U000F1A3C" file-rotate-right: "\U000F1A3D" file-rotate-right-outline: "\U000F1A3E" file-search: "\U000F0C7C" file-search-outline: "\U000F0C7D" file-send: "\U000F022A" file-send-outline: "\U000F1039" file-settings: "\U000F1079" file-settings-outline: "\U000F107A" file-sign: "\U000F19C3" file-star: "\U000F103A" file-star-outline: "\U000F103B" file-swap: "\U000F0FB4" file-swap-outline: "\U000F0FB5" file-sync: "\U000F1216" file-sync-outline: "\U000F1217" file-table: "\U000F0C7E" file-table-box: "\U000F10E1" file-table-box-multiple: "\U000F10E2" file-table-box-multiple-outline: "\U000F10E3" file-table-box-outline: "\U000F10E4" file-table-outline: "\U000F0C7F" file-tree: "\U000F0645" file-tree-outline: "\U000F13D2" file-undo: "\U000F08DC" file-undo-outline: "\U000F103C" file-upload: "\U000F0A4D" file-upload-outline: "\U000F0A4E" file-video: "\U000F022B" file-video-outline: "\U000F0E2C" file-word: "\U000F022C" file-word-box: "\U000F022D" file-word-box-outline: "\U000F103D" file-word-outline: "\U000F103E" file-xml-box: "\U000F1B4B" film: "\U000F022F" filmstrip: "\U000F0230" filmstrip-box: "\U000F0332" filmstrip-box-multiple: "\U000F0D18" filmstrip-off: "\U000F0231" filter: "\U000F0232" filter-check: "\U000F18EC" filter-check-outline: "\U000F18ED" filter-cog: "\U000F1AA3" filter-cog-outline: "\U000F1AA4" filter-menu: "\U000F10E5" filter-menu-outline: "\U000F10E6" filter-minus: "\U000F0EEE" filter-minus-outline: "\U000F0EEF" filter-multiple: "\U000F1A3F" filter-multiple-outline: "\U000F1A40" filter-off: "\U000F14EF" filter-off-outline: "\U000F14F0" filter-outline: "\U000F0233" filter-plus: "\U000F0EF0" filter-plus-outline: "\U000F0EF1" filter-remove: "\U000F0234" filter-remove-outline: "\U000F0235" filter-settings: "\U000F1AA5" filter-settings-outline: "\U000F1AA6" filter-variant: "\U000F0236" filter-variant-minus: "\U000F1112" filter-variant-plus: "\U000F1113" filter-variant-remove: "\U000F103F" finance: "\U000F081F" find-replace: "\U000F06D4" fingerprint: "\U000F0237" fingerprint-off: "\U000F0EB1" fire: "\U000F0238" fire-alert: "\U000F15D7" fire-circle: "\U000F1807" fire-extinguisher: "\U000F0EF2" fire-hydrant: "\U000F1137" fire-hydrant-alert: "\U000F1138" fire-hydrant-off: "\U000F1139" fire-off: "\U000F1722" fire-truck: "\U000F08AB" firebase: "\U000F0967" firefox: "\U000F0239" fireplace: "\U000F0E2E" fireplace-off: "\U000F0E2F" firewire: "\U000F05BE" firework: "\U000F0E30" firework-off: "\U000F1723" fish: "\U000F023A" fish-off: "\U000F13F3" fishbowl: "\U000F0EF3" fishbowl-outline: "\U000F0EF4" fit-to-page: "\U000F0EF5" fit-to-page-outline: "\U000F0EF6" fit-to-screen: "\U000F18F4" fit-to-screen-outline: "\U000F18F5" flag: "\U000F023B" flag-checkered: "\U000F023C" flag-minus: "\U000F0B99" flag-minus-outline: "\U000F10B2" flag-off: "\U000F18EE" flag-off-outline: "\U000F18EF" flag-outline: "\U000F023D" flag-plus: "\U000F0B9A" flag-plus-outline: "\U000F10B3" flag-remove: "\U000F0B9B" flag-remove-outline: "\U000F10B4" flag-triangle: "\U000F023F" flag-variant: "\U000F0240" flag-variant-minus: "\U000F1BB4" flag-variant-minus-outline: "\U000F1BB5" flag-variant-off: "\U000F1BB0" flag-variant-off-outline: "\U000F1BB1" flag-variant-outline: "\U000F023E" flag-variant-plus: "\U000F1BB2" flag-variant-plus-outline: "\U000F1BB3" flag-variant-remove: "\U000F1BB6" flag-variant-remove-outline: "\U000F1BB7" flare: "\U000F0D72" flash: "\U000F0241" flash-alert: "\U000F0EF7" flash-alert-outline: "\U000F0EF8" flash-auto: "\U000F0242" flash-off: "\U000F0243" flash-off-outline: "\U000F1B45" flash-outline: "\U000F06D5" flash-red-eye: "\U000F067B" flash-triangle: "\U000F1B1D" flash-triangle-outline: "\U000F1B1E" flashlight: "\U000F0244" flashlight-off: "\U000F0245" flask: "\U000F0093" flask-empty: "\U000F0094" flask-empty-minus: "\U000F123A" flask-empty-minus-outline: "\U000F123B" flask-empty-off: "\U000F13F4" flask-empty-off-outline: "\U000F13F5" flask-empty-outline: "\U000F0095" flask-empty-plus: "\U000F123C" flask-empty-plus-outline: "\U000F123D" flask-empty-remove: "\U000F123E" flask-empty-remove-outline: "\U000F123F" flask-minus: "\U000F1240" flask-minus-outline: "\U000F1241" flask-off: "\U000F13F6" flask-off-outline: "\U000F13F7" flask-outline: "\U000F0096" flask-plus: "\U000F1242" flask-plus-outline: "\U000F1243" flask-remove: "\U000F1244" flask-remove-outline: "\U000F1245" flask-round-bottom: "\U000F124B" flask-round-bottom-empty: "\U000F124C" flask-round-bottom-empty-outline: "\U000F124D" flask-round-bottom-outline: "\U000F124E" fleur-de-lis: "\U000F1303" flip-horizontal: "\U000F10E7" flip-to-back: "\U000F0247" flip-to-front: "\U000F0248" flip-vertical: "\U000F10E8" floor-lamp: "\U000F08DD" floor-lamp-dual: "\U000F1040" floor-lamp-dual-outline: "\U000F17CE" floor-lamp-outline: "\U000F17C8" floor-lamp-torchiere: "\U000F1747" floor-lamp-torchiere-outline: "\U000F17D6" floor-lamp-torchiere-variant: "\U000F1041" floor-lamp-torchiere-variant-outline: "\U000F17CF" floor-plan: "\U000F0821" floppy: "\U000F0249" floppy-variant: "\U000F09EF" flower: "\U000F024A" flower-outline: "\U000F09F0" flower-pollen: "\U000F1885" flower-pollen-outline: "\U000F1886" flower-poppy: "\U000F0D08" flower-tulip: "\U000F09F1" flower-tulip-outline: "\U000F09F2" focus-auto: "\U000F0F4E" focus-field: "\U000F0F4F" focus-field-horizontal: "\U000F0F50" focus-field-vertical: "\U000F0F51" folder: "\U000F024B" folder-account: "\U000F024C" folder-account-outline: "\U000F0B9C" folder-alert: "\U000F0DCC" folder-alert-outline: "\U000F0DCD" folder-arrow-down: "\U000F19E8" folder-arrow-down-outline: "\U000F19E9" folder-arrow-left: "\U000F19EA" folder-arrow-left-outline: "\U000F19EB" folder-arrow-left-right: "\U000F19EC" folder-arrow-left-right-outline: "\U000F19ED" folder-arrow-right: "\U000F19EE" folder-arrow-right-outline: "\U000F19EF" folder-arrow-up: "\U000F19F0" folder-arrow-up-down: "\U000F19F1" folder-arrow-up-down-outline: "\U000F19F2" folder-arrow-up-outline: "\U000F19F3" folder-cancel: "\U000F19F4" folder-cancel-outline: "\U000F19F5" folder-check: "\U000F197E" folder-check-outline: "\U000F197F" folder-clock: "\U000F0ABA" folder-clock-outline: "\U000F0ABB" folder-cog: "\U000F107F" folder-cog-outline: "\U000F1080" folder-download: "\U000F024D" folder-download-outline: "\U000F10E9" folder-edit: "\U000F08DE" folder-edit-outline: "\U000F0DCE" folder-eye: "\U000F178A" folder-eye-outline: "\U000F178B" folder-file: "\U000F19F6" folder-file-outline: "\U000F19F7" folder-google-drive: "\U000F024E" folder-heart: "\U000F10EA" folder-heart-outline: "\U000F10EB" folder-hidden: "\U000F179E" folder-home: "\U000F10B5" folder-home-outline: "\U000F10B6" folder-image: "\U000F024F" folder-information: "\U000F10B7" folder-information-outline: "\U000F10B8" folder-key: "\U000F08AC" folder-key-network: "\U000F08AD" folder-key-network-outline: "\U000F0C80" folder-key-outline: "\U000F10EC" folder-lock: "\U000F0250" folder-lock-open: "\U000F0251" folder-lock-open-outline: "\U000F1AA7" folder-lock-outline: "\U000F1AA8" folder-marker: "\U000F126D" folder-marker-outline: "\U000F126E" folder-minus: "\U000F1B49" folder-minus-outline: "\U000F1B4A" folder-move: "\U000F0252" folder-move-outline: "\U000F1246" folder-multiple: "\U000F0253" folder-multiple-image: "\U000F0254" folder-multiple-outline: "\U000F0255" folder-multiple-plus: "\U000F147E" folder-multiple-plus-outline: "\U000F147F" folder-music: "\U000F1359" folder-music-outline: "\U000F135A" folder-network: "\U000F0870" folder-network-outline: "\U000F0C81" folder-off: "\U000F19F8" folder-off-outline: "\U000F19F9" folder-open: "\U000F0770" folder-open-outline: "\U000F0DCF" folder-outline: "\U000F0256" folder-play: "\U000F19FA" folder-play-outline: "\U000F19FB" folder-plus: "\U000F0257" folder-plus-outline: "\U000F0B9D" folder-pound: "\U000F0D09" folder-pound-outline: "\U000F0D0A" folder-question: "\U000F19CA" folder-question-outline: "\U000F19CB" folder-refresh: "\U000F0749" folder-refresh-outline: "\U000F0542" folder-remove: "\U000F0258" folder-remove-outline: "\U000F0B9E" folder-search: "\U000F0968" folder-search-outline: "\U000F0969" folder-settings: "\U000F107D" folder-settings-outline: "\U000F107E" folder-star: "\U000F069D" folder-star-multiple: "\U000F13D3" folder-star-multiple-outline: "\U000F13D4" folder-star-outline: "\U000F0B9F" folder-swap: "\U000F0FB6" folder-swap-outline: "\U000F0FB7" folder-sync: "\U000F0D0B" folder-sync-outline: "\U000F0D0C" folder-table: "\U000F12E3" folder-table-outline: "\U000F12E4" folder-text: "\U000F0C82" folder-text-outline: "\U000F0C83" folder-upload: "\U000F0259" folder-upload-outline: "\U000F10ED" folder-wrench: "\U000F19FC" folder-wrench-outline: "\U000F19FD" folder-zip: "\U000F06EB" folder-zip-outline: "\U000F07B9" font-awesome: "\U000F003A" food: "\U000F025A" food-apple: "\U000F025B" food-apple-outline: "\U000F0C84" food-croissant: "\U000F07C8" food-drumstick: "\U000F141F" food-drumstick-off: "\U000F1468" food-drumstick-off-outline: "\U000F1469" food-drumstick-outline: "\U000F1420" food-fork-drink: "\U000F05F2" food-halal: "\U000F1572" food-hot-dog: "\U000F184B" food-kosher: "\U000F1573" food-off: "\U000F05F3" food-off-outline: "\U000F1915" food-outline: "\U000F1916" food-steak: "\U000F146A" food-steak-off: "\U000F146B" food-takeout-box: "\U000F1836" food-takeout-box-outline: "\U000F1837" food-turkey: "\U000F171C" food-variant: "\U000F025C" food-variant-off: "\U000F13E5" foot-print: "\U000F0F52" football: "\U000F025D" football-australian: "\U000F025E" football-helmet: "\U000F025F" forest: "\U000F1897" forklift: "\U000F07C9" form-dropdown: "\U000F1400" form-select: "\U000F1401" form-textarea: "\U000F1095" form-textbox: "\U000F060E" form-textbox-lock: "\U000F135D" form-textbox-password: "\U000F07F5" format-align-bottom: "\U000F0753" format-align-center: "\U000F0260" format-align-justify: "\U000F0261" format-align-left: "\U000F0262" format-align-middle: "\U000F0754" format-align-right: "\U000F0263" format-align-top: "\U000F0755" format-annotation-minus: "\U000F0ABC" format-annotation-plus: "\U000F0646" format-bold: "\U000F0264" format-clear: "\U000F0265" format-color-fill: "\U000F0266" format-color-highlight: "\U000F0E31" format-color-marker-cancel: "\U000F1313" format-color-text: "\U000F069E" format-columns: "\U000F08DF" format-float-center: "\U000F0267" format-float-left: "\U000F0268" format-float-none: "\U000F0269" format-float-right: "\U000F026A" format-font: "\U000F06D6" format-font-size-decrease: "\U000F09F3" format-font-size-increase: "\U000F09F4" format-header-1: "\U000F026B" format-header-2: "\U000F026C" format-header-3: "\U000F026D" format-header-4: "\U000F026E" format-header-5: "\U000F026F" format-header-6: "\U000F0270" format-header-decrease: "\U000F0271" format-header-equal: "\U000F0272" format-header-increase: "\U000F0273" format-header-pound: "\U000F0274" format-horizontal-align-center: "\U000F061E" format-horizontal-align-left: "\U000F061F" format-horizontal-align-right: "\U000F0620" format-indent-decrease: "\U000F0275" format-indent-increase: "\U000F0276" format-italic: "\U000F0277" format-letter-case: "\U000F0B34" format-letter-case-lower: "\U000F0B35" format-letter-case-upper: "\U000F0B36" format-letter-ends-with: "\U000F0FB8" format-letter-matches: "\U000F0FB9" format-letter-spacing: "\U000F1956" format-letter-spacing-variant: "\U000F1AFB" format-letter-starts-with: "\U000F0FBA" format-line-height: "\U000F1AFC" format-line-spacing: "\U000F0278" format-line-style: "\U000F05C8" format-line-weight: "\U000F05C9" format-list-bulleted: "\U000F0279" format-list-bulleted-square: "\U000F0DD0" format-list-bulleted-triangle: "\U000F0EB2" format-list-bulleted-type: "\U000F027A" format-list-checkbox: "\U000F096A" format-list-checks: "\U000F0756" format-list-group: "\U000F1860" format-list-group-plus: "\U000F1B56" format-list-numbered: "\U000F027B" format-list-numbered-rtl: "\U000F0D0D" format-list-text: "\U000F126F" format-overline: "\U000F0EB3" format-page-break: "\U000F06D7" format-page-split: "\U000F1917" format-paint: "\U000F027C" format-paragraph: "\U000F027D" format-paragraph-spacing: "\U000F1AFD" format-pilcrow: "\U000F06D8" format-pilcrow-arrow-left: "\U000F0286" format-pilcrow-arrow-right: "\U000F0285" format-quote-close: "\U000F027E" format-quote-close-outline: "\U000F11A8" format-quote-open: "\U000F0757" format-quote-open-outline: "\U000F11A7" format-rotate-90: "\U000F06AA" format-section: "\U000F069F" format-size: "\U000F027F" format-strikethrough: "\U000F0280" format-strikethrough-variant: "\U000F0281" format-subscript: "\U000F0282" format-superscript: "\U000F0283" format-text: "\U000F0284" format-text-rotation-angle-down: "\U000F0FBB" format-text-rotation-angle-up: "\U000F0FBC" format-text-rotation-down: "\U000F0D73" format-text-rotation-down-vertical: "\U000F0FBD" format-text-rotation-none: "\U000F0D74" format-text-rotation-up: "\U000F0FBE" format-text-rotation-vertical: "\U000F0FBF" format-text-variant: "\U000F0E32" format-text-variant-outline: "\U000F150F" format-text-wrapping-clip: "\U000F0D0E" format-text-wrapping-overflow: "\U000F0D0F" format-text-wrapping-wrap: "\U000F0D10" format-textbox: "\U000F0D11" format-title: "\U000F05F4" format-underline: "\U000F0287" format-underline-wavy: "\U000F18E9" format-vertical-align-bottom: "\U000F0621" format-vertical-align-center: "\U000F0622" format-vertical-align-top: "\U000F0623" format-wrap-inline: "\U000F0288" format-wrap-square: "\U000F0289" format-wrap-tight: "\U000F028A" format-wrap-top-bottom: "\U000F028B" forum: "\U000F028C" forum-minus: "\U000F1AA9" forum-minus-outline: "\U000F1AAA" forum-outline: "\U000F0822" forum-plus: "\U000F1AAB" forum-plus-outline: "\U000F1AAC" forum-remove: "\U000F1AAD" forum-remove-outline: "\U000F1AAE" forward: "\U000F028D" forwardburger: "\U000F0D75" fountain: "\U000F096B" fountain-pen: "\U000F0D12" fountain-pen-tip: "\U000F0D13" fraction-one-half: "\U000F1992" freebsd: "\U000F08E0" french-fries: "\U000F1957" frequently-asked-questions: "\U000F0EB4" fridge: "\U000F0290" fridge-alert: "\U000F11B1" fridge-alert-outline: "\U000F11B2" fridge-bottom: "\U000F0292" fridge-industrial: "\U000F15EE" fridge-industrial-alert: "\U000F15EF" fridge-industrial-alert-outline: "\U000F15F0" fridge-industrial-off: "\U000F15F1" fridge-industrial-off-outline: "\U000F15F2" fridge-industrial-outline: "\U000F15F3" fridge-off: "\U000F11AF" fridge-off-outline: "\U000F11B0" fridge-outline: "\U000F028F" fridge-top: "\U000F0291" fridge-variant: "\U000F15F4" fridge-variant-alert: "\U000F15F5" fridge-variant-alert-outline: "\U000F15F6" fridge-variant-off: "\U000F15F7" fridge-variant-off-outline: "\U000F15F8" fridge-variant-outline: "\U000F15F9" fruit-cherries: "\U000F1042" fruit-cherries-off: "\U000F13F8" fruit-citrus: "\U000F1043" fruit-citrus-off: "\U000F13F9" fruit-grapes: "\U000F1044" fruit-grapes-outline: "\U000F1045" fruit-pear: "\U000F1A0E" fruit-pineapple: "\U000F1046" fruit-watermelon: "\U000F1047" fuel: "\U000F07CA" fuel-cell: "\U000F18B5" fullscreen: "\U000F0293" fullscreen-exit: "\U000F0294" function: "\U000F0295" function-variant: "\U000F0871" furigana-horizontal: "\U000F1081" furigana-vertical: "\U000F1082" fuse: "\U000F0C85" fuse-alert: "\U000F142D" fuse-blade: "\U000F0C86" fuse-off: "\U000F142C" gamepad: "\U000F0296" gamepad-circle: "\U000F0E33" gamepad-circle-down: "\U000F0E34" gamepad-circle-left: "\U000F0E35" gamepad-circle-outline: "\U000F0E36" gamepad-circle-right: "\U000F0E37" gamepad-circle-up: "\U000F0E38" gamepad-down: "\U000F0E39" gamepad-left: "\U000F0E3A" gamepad-outline: "\U000F1919" gamepad-right: "\U000F0E3B" gamepad-round: "\U000F0E3C" gamepad-round-down: "\U000F0E3D" gamepad-round-left: "\U000F0E3E" gamepad-round-outline: "\U000F0E3F" gamepad-round-right: "\U000F0E40" gamepad-round-up: "\U000F0E41" gamepad-square: "\U000F0EB5" gamepad-square-outline: "\U000F0EB6" gamepad-up: "\U000F0E42" gamepad-variant: "\U000F0297" gamepad-variant-outline: "\U000F0EB7" gamma: "\U000F10EE" gantry-crane: "\U000F0DD1" garage: "\U000F06D9" garage-alert: "\U000F0872" garage-alert-variant: "\U000F12D5" garage-lock: "\U000F17FB" garage-open: "\U000F06DA" garage-open-variant: "\U000F12D4" garage-variant: "\U000F12D3" garage-variant-lock: "\U000F17FC" gas-burner: "\U000F1A1B" gas-cylinder: "\U000F0647" gas-station: "\U000F0298" gas-station-off: "\U000F1409" gas-station-off-outline: "\U000F140A" gas-station-outline: "\U000F0EB8" gate: "\U000F0299" gate-alert: "\U000F17F8" gate-and: "\U000F08E1" gate-arrow-left: "\U000F17F7" gate-arrow-right: "\U000F1169" gate-buffer: "\U000F1AFE" gate-nand: "\U000F08E2" gate-nor: "\U000F08E3" gate-not: "\U000F08E4" gate-open: "\U000F116A" gate-or: "\U000F08E5" gate-xnor: "\U000F08E6" gate-xor: "\U000F08E7" gatsby: "\U000F0E43" gauge: "\U000F029A" gauge-empty: "\U000F0873" gauge-full: "\U000F0874" gauge-low: "\U000F0875" gavel: "\U000F029B" gender-female: "\U000F029C" gender-male: "\U000F029D" gender-male-female: "\U000F029E" gender-male-female-variant: "\U000F113F" gender-non-binary: "\U000F1140" gender-transgender: "\U000F029F" gentoo: "\U000F08E8" gesture: "\U000F07CB" gesture-double-tap: "\U000F073C" gesture-pinch: "\U000F0ABD" gesture-spread: "\U000F0ABE" gesture-swipe: "\U000F0D76" gesture-swipe-down: "\U000F073D" gesture-swipe-horizontal: "\U000F0ABF" gesture-swipe-left: "\U000F073E" gesture-swipe-right: "\U000F073F" gesture-swipe-up: "\U000F0740" gesture-swipe-vertical: "\U000F0AC0" gesture-tap: "\U000F0741" gesture-tap-box: "\U000F12A9" gesture-tap-button: "\U000F12A8" gesture-tap-hold: "\U000F0D77" gesture-two-double-tap: "\U000F0742" gesture-two-tap: "\U000F0743" ghost: "\U000F02A0" ghost-off: "\U000F09F5" ghost-off-outline: "\U000F165C" ghost-outline: "\U000F165D" gift: "\U000F0E44" gift-off: "\U000F16EF" gift-off-outline: "\U000F16F0" gift-open: "\U000F16F1" gift-open-outline: "\U000F16F2" gift-outline: "\U000F02A1" git: "\U000F02A2" github: "\U000F02A4" gitlab: "\U000F0BA0" glass-cocktail: "\U000F0356" glass-cocktail-off: "\U000F15E6" glass-flute: "\U000F02A5" glass-fragile: "\U000F1873" glass-mug: "\U000F02A6" glass-mug-off: "\U000F15E7" glass-mug-variant: "\U000F1116" glass-mug-variant-off: "\U000F15E8" glass-pint-outline: "\U000F130D" glass-stange: "\U000F02A7" glass-tulip: "\U000F02A8" glass-wine: "\U000F0876" glasses: "\U000F02AA" globe-light: "\U000F066F" globe-light-outline: "\U000F12D7" globe-model: "\U000F08E9" gmail: "\U000F02AB" gnome: "\U000F02AC" go-kart: "\U000F0D79" go-kart-track: "\U000F0D7A" gog: "\U000F0BA1" gold: "\U000F124F" golf: "\U000F0823" golf-cart: "\U000F11A4" golf-tee: "\U000F1083" gondola: "\U000F0686" goodreads: "\U000F0D7B" google: "\U000F02AD" google-ads: "\U000F0C87" google-analytics: "\U000F07CC" google-assistant: "\U000F07CD" google-cardboard: "\U000F02AE" google-chrome: "\U000F02AF" google-circles: "\U000F02B0" google-circles-communities: "\U000F02B1" google-circles-extended: "\U000F02B2" google-circles-group: "\U000F02B3" google-classroom: "\U000F02C0" google-cloud: "\U000F11F6" google-downasaur: "\U000F1362" google-drive: "\U000F02B6" google-earth: "\U000F02B7" google-fit: "\U000F096C" google-glass: "\U000F02B8" google-hangouts: "\U000F02C9" google-keep: "\U000F06DC" google-lens: "\U000F09F6" google-maps: "\U000F05F5" google-my-business: "\U000F1048" google-nearby: "\U000F02B9" google-play: "\U000F02BC" google-plus: "\U000F02BD" google-podcast: "\U000F0EB9" google-spreadsheet: "\U000F09F7" google-street-view: "\U000F0C88" google-translate: "\U000F02BF" gradient-horizontal: "\U000F174A" gradient-vertical: "\U000F06A0" grain: "\U000F0D7C" graph: "\U000F1049" graph-outline: "\U000F104A" graphql: "\U000F0877" grass: "\U000F1510" grave-stone: "\U000F0BA2" grease-pencil: "\U000F0648" greater-than: "\U000F096D" greater-than-or-equal: "\U000F096E" greenhouse: "\U000F002D" grid: "\U000F02C1" grid-large: "\U000F0758" grid-off: "\U000F02C2" grill: "\U000F0E45" grill-outline: "\U000F118A" group: "\U000F02C3" guitar-acoustic: "\U000F0771" guitar-electric: "\U000F02C4" guitar-pick: "\U000F02C5" guitar-pick-outline: "\U000F02C6" guy-fawkes-mask: "\U000F0825" gymnastics: "\U000F1A41" hail: "\U000F0AC1" hair-dryer: "\U000F10EF" hair-dryer-outline: "\U000F10F0" halloween: "\U000F0BA3" hamburger: "\U000F0685" hamburger-check: "\U000F1776" hamburger-minus: "\U000F1777" hamburger-off: "\U000F1778" hamburger-plus: "\U000F1779" hamburger-remove: "\U000F177A" hammer: "\U000F08EA" hammer-screwdriver: "\U000F1322" hammer-sickle: "\U000F1887" hammer-wrench: "\U000F1323" hand-back-left: "\U000F0E46" hand-back-left-off: "\U000F1830" hand-back-left-off-outline: "\U000F1832" hand-back-left-outline: "\U000F182C" hand-back-right: "\U000F0E47" hand-back-right-off: "\U000F1831" hand-back-right-off-outline: "\U000F1833" hand-back-right-outline: "\U000F182D" hand-clap: "\U000F194B" hand-clap-off: "\U000F1A42" hand-coin: "\U000F188F" hand-coin-outline: "\U000F1890" hand-cycle: "\U000F1B9C" hand-extended: "\U000F18B6" hand-extended-outline: "\U000F18B7" hand-front-left: "\U000F182B" hand-front-left-outline: "\U000F182E" hand-front-right: "\U000F0A4F" hand-front-right-outline: "\U000F182F" hand-heart: "\U000F10F1" hand-heart-outline: "\U000F157E" hand-okay: "\U000F0A50" hand-peace: "\U000F0A51" hand-peace-variant: "\U000F0A52" hand-pointing-down: "\U000F0A53" hand-pointing-left: "\U000F0A54" hand-pointing-right: "\U000F02C7" hand-pointing-up: "\U000F0A55" hand-saw: "\U000F0E48" hand-wash: "\U000F157F" hand-wash-outline: "\U000F1580" hand-water: "\U000F139F" hand-wave: "\U000F1821" hand-wave-outline: "\U000F1822" handball: "\U000F0F53" handcuffs: "\U000F113E" hands-pray: "\U000F0579" handshake: "\U000F1218" handshake-outline: "\U000F15A1" hanger: "\U000F02C8" hard-hat: "\U000F096F" harddisk: "\U000F02CA" harddisk-plus: "\U000F104B" harddisk-remove: "\U000F104C" hat-fedora: "\U000F0BA4" hazard-lights: "\U000F0C89" hdmi-port: "\U000F1BB8" hdr: "\U000F0D7D" hdr-off: "\U000F0D7E" head: "\U000F135E" head-alert: "\U000F1338" head-alert-outline: "\U000F1339" head-check: "\U000F133A" head-check-outline: "\U000F133B" head-cog: "\U000F133C" head-cog-outline: "\U000F133D" head-dots-horizontal: "\U000F133E" head-dots-horizontal-outline: "\U000F133F" head-flash: "\U000F1340" head-flash-outline: "\U000F1341" head-heart: "\U000F1342" head-heart-outline: "\U000F1343" head-lightbulb: "\U000F1344" head-lightbulb-outline: "\U000F1345" head-minus: "\U000F1346" head-minus-outline: "\U000F1347" head-outline: "\U000F135F" head-plus: "\U000F1348" head-plus-outline: "\U000F1349" head-question: "\U000F134A" head-question-outline: "\U000F134B" head-remove: "\U000F134C" head-remove-outline: "\U000F134D" head-snowflake: "\U000F134E" head-snowflake-outline: "\U000F134F" head-sync: "\U000F1350" head-sync-outline: "\U000F1351" headphones: "\U000F02CB" headphones-bluetooth: "\U000F0970" headphones-box: "\U000F02CC" headphones-off: "\U000F07CE" headphones-settings: "\U000F02CD" headset: "\U000F02CE" headset-dock: "\U000F02CF" headset-off: "\U000F02D0" heart: "\U000F02D1" heart-box: "\U000F02D2" heart-box-outline: "\U000F02D3" heart-broken: "\U000F02D4" heart-broken-outline: "\U000F0D14" heart-circle: "\U000F0971" heart-circle-outline: "\U000F0972" heart-cog: "\U000F1663" heart-cog-outline: "\U000F1664" heart-flash: "\U000F0EF9" heart-half: "\U000F06DF" heart-half-full: "\U000F06DE" heart-half-outline: "\U000F06E0" heart-minus: "\U000F142F" heart-minus-outline: "\U000F1432" heart-multiple: "\U000F0A56" heart-multiple-outline: "\U000F0A57" heart-off: "\U000F0759" heart-off-outline: "\U000F1434" heart-outline: "\U000F02D5" heart-plus: "\U000F142E" heart-plus-outline: "\U000F1431" heart-pulse: "\U000F05F6" heart-remove: "\U000F1430" heart-remove-outline: "\U000F1433" heart-settings: "\U000F1665" heart-settings-outline: "\U000F1666" heat-pump: "\U000F1A43" heat-pump-outline: "\U000F1A44" heat-wave: "\U000F1A45" heating-coil: "\U000F1AAF" helicopter: "\U000F0AC2" help: "\U000F02D6" help-box: "\U000F078B" help-circle: "\U000F02D7" help-circle-outline: "\U000F0625" help-network: "\U000F06F5" help-network-outline: "\U000F0C8A" help-rhombus: "\U000F0BA5" help-rhombus-outline: "\U000F0BA6" hexadecimal: "\U000F12A7" hexagon: "\U000F02D8" hexagon-multiple: "\U000F06E1" hexagon-multiple-outline: "\U000F10F2" hexagon-outline: "\U000F02D9" hexagon-slice-1: "\U000F0AC3" hexagon-slice-2: "\U000F0AC4" hexagon-slice-3: "\U000F0AC5" hexagon-slice-4: "\U000F0AC6" hexagon-slice-5: "\U000F0AC7" hexagon-slice-6: "\U000F0AC8" hexagram: "\U000F0AC9" hexagram-outline: "\U000F0ACA" high-definition: "\U000F07CF" high-definition-box: "\U000F0878" highway: "\U000F05F7" hiking: "\U000F0D7F" history: "\U000F02DA" hockey-puck: "\U000F0879" hockey-sticks: "\U000F087A" hololens: "\U000F02DB" home: "\U000F02DC" home-account: "\U000F0826" home-alert: "\U000F087B" home-alert-outline: "\U000F15D0" home-analytics: "\U000F0EBA" home-assistant: "\U000F07D0" home-automation: "\U000F07D1" home-battery: "\U000F1901" home-battery-outline: "\U000F1902" home-circle: "\U000F07D2" home-circle-outline: "\U000F104D" home-city: "\U000F0D15" home-city-outline: "\U000F0D16" home-clock: "\U000F1A12" home-clock-outline: "\U000F1A13" home-edit: "\U000F1159" home-edit-outline: "\U000F115A" home-export-outline: "\U000F0F9B" home-flood: "\U000F0EFA" home-floor-0: "\U000F0DD2" home-floor-1: "\U000F0D80" home-floor-2: "\U000F0D81" home-floor-3: "\U000F0D82" home-floor-a: "\U000F0D83" home-floor-b: "\U000F0D84" home-floor-g: "\U000F0D85" home-floor-l: "\U000F0D86" home-floor-negative-1: "\U000F0DD3" home-group: "\U000F0DD4" home-group-minus: "\U000F19C1" home-group-plus: "\U000F19C0" home-group-remove: "\U000F19C2" home-heart: "\U000F0827" home-import-outline: "\U000F0F9C" home-lightbulb: "\U000F1251" home-lightbulb-outline: "\U000F1252" home-lightning-bolt: "\U000F1903" home-lightning-bolt-outline: "\U000F1904" home-lock: "\U000F08EB" home-lock-open: "\U000F08EC" home-map-marker: "\U000F05F8" home-minus: "\U000F0974" home-minus-outline: "\U000F13D5" home-modern: "\U000F02DD" home-off: "\U000F1A46" home-off-outline: "\U000F1A47" home-outline: "\U000F06A1" home-plus: "\U000F0975" home-plus-outline: "\U000F13D6" home-remove: "\U000F1247" home-remove-outline: "\U000F13D7" home-roof: "\U000F112B" home-search: "\U000F13B0" home-search-outline: "\U000F13B1" home-silo: "\U000F1BA0" home-silo-outline: "\U000F1BA1" home-switch: "\U000F1794" home-switch-outline: "\U000F1795" home-thermometer: "\U000F0F54" home-thermometer-outline: "\U000F0F55" home-variant: "\U000F02DE" home-variant-outline: "\U000F0BA7" hook: "\U000F06E2" hook-off: "\U000F06E3" hoop-house: "\U000F0E56" hops: "\U000F02DF" horizontal-rotate-clockwise: "\U000F10F3" horizontal-rotate-counterclockwise: "\U000F10F4" horse: "\U000F15BF" horse-human: "\U000F15C0" horse-variant: "\U000F15C1" horse-variant-fast: "\U000F186E" horseshoe: "\U000F0A58" hospital: "\U000F0FF6" hospital-box: "\U000F02E0" hospital-box-outline: "\U000F0FF7" hospital-building: "\U000F02E1" hospital-marker: "\U000F02E2" hot-tub: "\U000F0828" hours-24: "\U000F1478" hubspot: "\U000F0D17" hulu: "\U000F0829" human: "\U000F02E6" human-baby-changing-table: "\U000F138B" human-cane: "\U000F1581" human-capacity-decrease: "\U000F159B" human-capacity-increase: "\U000F159C" human-child: "\U000F02E7" human-dolly: "\U000F1980" human-edit: "\U000F14E8" human-female: "\U000F0649" human-female-boy: "\U000F0A59" human-female-dance: "\U000F15C9" human-female-female: "\U000F0A5A" human-female-girl: "\U000F0A5B" human-greeting: "\U000F17C4" human-greeting-proximity: "\U000F159D" human-greeting-variant: "\U000F064A" human-handsdown: "\U000F064B" human-handsup: "\U000F064C" human-male: "\U000F064D" human-male-board: "\U000F0890" human-male-board-poll: "\U000F0846" human-male-boy: "\U000F0A5C" human-male-child: "\U000F138C" human-male-female: "\U000F02E8" human-male-female-child: "\U000F1823" human-male-girl: "\U000F0A5D" human-male-height: "\U000F0EFB" human-male-height-variant: "\U000F0EFC" human-male-male: "\U000F0A5E" human-non-binary: "\U000F1848" human-pregnant: "\U000F05CF" human-queue: "\U000F1571" human-scooter: "\U000F11E9" human-walker: "\U000F1B71" human-wheelchair: "\U000F138D" human-white-cane: "\U000F1981" humble-bundle: "\U000F0744" hvac: "\U000F1352" hvac-off: "\U000F159E" hydraulic-oil-level: "\U000F1324" hydraulic-oil-temperature: "\U000F1325" hydro-power: "\U000F12E5" hydrogen-station: "\U000F1894" ice-cream: "\U000F082A" ice-cream-off: "\U000F0E52" ice-pop: "\U000F0EFD" id-card: "\U000F0FC0" identifier: "\U000F0EFE" ideogram-cjk: "\U000F1331" ideogram-cjk-variant: "\U000F1332" image: "\U000F02E9" image-album: "\U000F02EA" image-area: "\U000F02EB" image-area-close: "\U000F02EC" image-auto-adjust: "\U000F0FC1" image-broken: "\U000F02ED" image-broken-variant: "\U000F02EE" image-check: "\U000F1B25" image-check-outline: "\U000F1B26" image-edit: "\U000F11E3" image-edit-outline: "\U000F11E4" image-filter-black-white: "\U000F02F0" image-filter-center-focus: "\U000F02F1" image-filter-center-focus-strong: "\U000F0EFF" image-filter-center-focus-strong-outline: "\U000F0F00" image-filter-center-focus-weak: "\U000F02F2" image-filter-drama: "\U000F02F3" image-filter-frames: "\U000F02F4" image-filter-hdr: "\U000F02F5" image-filter-none: "\U000F02F6" image-filter-tilt-shift: "\U000F02F7" image-filter-vintage: "\U000F02F8" image-frame: "\U000F0E49" image-lock: "\U000F1AB0" image-lock-outline: "\U000F1AB1" image-marker: "\U000F177B" image-marker-outline: "\U000F177C" image-minus: "\U000F1419" image-minus-outline: "\U000F1B47" image-move: "\U000F09F8" image-multiple: "\U000F02F9" image-multiple-outline: "\U000F02EF" image-off: "\U000F082B" image-off-outline: "\U000F11D1" image-outline: "\U000F0976" image-plus: "\U000F087C" image-plus-outline: "\U000F1B46" image-refresh: "\U000F19FE" image-refresh-outline: "\U000F19FF" image-remove: "\U000F1418" image-remove-outline: "\U000F1B48" image-search: "\U000F0977" image-search-outline: "\U000F0978" image-size-select-actual: "\U000F0C8D" image-size-select-large: "\U000F0C8E" image-size-select-small: "\U000F0C8F" image-sync: "\U000F1A00" image-sync-outline: "\U000F1A01" image-text: "\U000F160D" import: "\U000F02FA" inbox: "\U000F0687" inbox-arrow-down: "\U000F02FB" inbox-arrow-down-outline: "\U000F1270" inbox-arrow-up: "\U000F03D1" inbox-arrow-up-outline: "\U000F1271" inbox-full: "\U000F1272" inbox-full-outline: "\U000F1273" inbox-multiple: "\U000F08B0" inbox-multiple-outline: "\U000F0BA8" inbox-outline: "\U000F1274" inbox-remove: "\U000F159F" inbox-remove-outline: "\U000F15A0" incognito: "\U000F05F9" incognito-circle: "\U000F1421" incognito-circle-off: "\U000F1422" incognito-off: "\U000F0075" induction: "\U000F184C" infinity: "\U000F06E4" information: "\U000F02FC" information-off: "\U000F178C" information-off-outline: "\U000F178D" information-outline: "\U000F02FD" information-variant: "\U000F064E" instagram: "\U000F02FE" instrument-triangle: "\U000F104E" integrated-circuit-chip: "\U000F1913" invert-colors: "\U000F0301" invert-colors-off: "\U000F0E4A" iobroker: "\U000F12E8" ip: "\U000F0A5F" ip-network: "\U000F0A60" ip-network-outline: "\U000F0C90" ip-outline: "\U000F1982" ipod: "\U000F0C91" iron: "\U000F1824" iron-board: "\U000F1838" iron-outline: "\U000F1825" island: "\U000F104F" iv-bag: "\U000F10B9" jabber: "\U000F0DD5" jeepney: "\U000F0302" jellyfish: "\U000F0F01" jellyfish-outline: "\U000F0F02" jira: "\U000F0303" jquery: "\U000F087D" jsfiddle: "\U000F0304" jump-rope: "\U000F12FF" kabaddi: "\U000F0D87" kangaroo: "\U000F1558" karate: "\U000F082C" kayaking: "\U000F08AF" keg: "\U000F0305" kettle: "\U000F05FA" kettle-alert: "\U000F1317" kettle-alert-outline: "\U000F1318" kettle-off: "\U000F131B" kettle-off-outline: "\U000F131C" kettle-outline: "\U000F0F56" kettle-pour-over: "\U000F173C" kettle-steam: "\U000F1319" kettle-steam-outline: "\U000F131A" kettlebell: "\U000F1300" key: "\U000F0306" key-alert: "\U000F1983" key-alert-outline: "\U000F1984" key-arrow-right: "\U000F1312" key-chain: "\U000F1574" key-chain-variant: "\U000F1575" key-change: "\U000F0307" key-link: "\U000F119F" key-minus: "\U000F0308" key-outline: "\U000F0DD6" key-plus: "\U000F0309" key-remove: "\U000F030A" key-star: "\U000F119E" key-variant: "\U000F030B" key-wireless: "\U000F0FC2" keyboard: "\U000F030C" keyboard-backspace: "\U000F030D" keyboard-caps: "\U000F030E" keyboard-close: "\U000F030F" keyboard-esc: "\U000F12B7" keyboard-f1: "\U000F12AB" keyboard-f10: "\U000F12B4" keyboard-f11: "\U000F12B5" keyboard-f12: "\U000F12B6" keyboard-f2: "\U000F12AC" keyboard-f3: "\U000F12AD" keyboard-f4: "\U000F12AE" keyboard-f5: "\U000F12AF" keyboard-f6: "\U000F12B0" keyboard-f7: "\U000F12B1" keyboard-f8: "\U000F12B2" keyboard-f9: "\U000F12B3" keyboard-off: "\U000F0310" keyboard-off-outline: "\U000F0E4B" keyboard-outline: "\U000F097B" keyboard-return: "\U000F0311" keyboard-settings: "\U000F09F9" keyboard-settings-outline: "\U000F09FA" keyboard-space: "\U000F1050" keyboard-tab: "\U000F0312" keyboard-tab-reverse: "\U000F0325" keyboard-variant: "\U000F0313" khanda: "\U000F10FD" kickstarter: "\U000F0745" kite: "\U000F1985" kite-outline: "\U000F1986" kitesurfing: "\U000F1744" klingon: "\U000F135B" knife: "\U000F09FB" knife-military: "\U000F09FC" knob: "\U000F1B96" koala: "\U000F173F" kodi: "\U000F0314" kubernetes: "\U000F10FE" label: "\U000F0315" label-multiple: "\U000F1375" label-multiple-outline: "\U000F1376" label-off: "\U000F0ACB" label-off-outline: "\U000F0ACC" label-outline: "\U000F0316" label-percent: "\U000F12EA" label-percent-outline: "\U000F12EB" label-variant: "\U000F0ACD" label-variant-outline: "\U000F0ACE" ladder: "\U000F15A2" ladybug: "\U000F082D" lambda: "\U000F0627" lamp: "\U000F06B5" lamp-outline: "\U000F17D0" lamps: "\U000F1576" lamps-outline: "\U000F17D1" lan: "\U000F0317" lan-check: "\U000F12AA" lan-connect: "\U000F0318" lan-disconnect: "\U000F0319" lan-pending: "\U000F031A" land-fields: "\U000F1AB2" land-plots: "\U000F1AB3" land-plots-circle: "\U000F1AB4" land-plots-circle-variant: "\U000F1AB5" land-rows-horizontal: "\U000F1AB6" land-rows-vertical: "\U000F1AB7" landslide: "\U000F1A48" landslide-outline: "\U000F1A49" language-c: "\U000F0671" language-cpp: "\U000F0672" language-csharp: "\U000F031B" language-css3: "\U000F031C" language-fortran: "\U000F121A" language-go: "\U000F07D3" language-haskell: "\U000F0C92" language-html5: "\U000F031D" language-java: "\U000F0B37" language-javascript: "\U000F031E" language-kotlin: "\U000F1219" language-lua: "\U000F08B1" language-markdown: "\U000F0354" language-markdown-outline: "\U000F0F5B" language-php: "\U000F031F" language-python: "\U000F0320" language-r: "\U000F07D4" language-ruby: "\U000F0D2D" language-ruby-on-rails: "\U000F0ACF" language-rust: "\U000F1617" language-swift: "\U000F06E5" language-typescript: "\U000F06E6" language-xaml: "\U000F0673" laptop: "\U000F0322" laptop-account: "\U000F1A4A" laptop-off: "\U000F06E7" laravel: "\U000F0AD0" laser-pointer: "\U000F1484" lasso: "\U000F0F03" lastpass: "\U000F0446" latitude: "\U000F0F57" launch: "\U000F0327" lava-lamp: "\U000F07D5" layers: "\U000F0328" layers-edit: "\U000F1892" layers-minus: "\U000F0E4C" layers-off: "\U000F0329" layers-off-outline: "\U000F09FD" layers-outline: "\U000F09FE" layers-plus: "\U000F0E4D" layers-remove: "\U000F0E4E" layers-search: "\U000F1206" layers-search-outline: "\U000F1207" layers-triple: "\U000F0F58" layers-triple-outline: "\U000F0F59" lead-pencil: "\U000F064F" leaf: "\U000F032A" leaf-circle: "\U000F1905" leaf-circle-outline: "\U000F1906" leaf-maple: "\U000F0C93" leaf-maple-off: "\U000F12DA" leaf-off: "\U000F12D9" leak: "\U000F0DD7" leak-off: "\U000F0DD8" lectern: "\U000F1AF0" led-off: "\U000F032B" led-on: "\U000F032C" led-outline: "\U000F032D" led-strip: "\U000F07D6" led-strip-variant: "\U000F1051" led-strip-variant-off: "\U000F1A4B" led-variant-off: "\U000F032E" led-variant-on: "\U000F032F" led-variant-outline: "\U000F0330" leek: "\U000F117D" less-than: "\U000F097C" less-than-or-equal: "\U000F097D" library: "\U000F0331" library-outline: "\U000F1A22" library-shelves: "\U000F0BA9" license: "\U000F0FC3" lifebuoy: "\U000F087E" light-flood-down: "\U000F1987" light-flood-up: "\U000F1988" light-recessed: "\U000F179B" light-switch: "\U000F097E" light-switch-off: "\U000F1A24" lightbulb: "\U000F0335" lightbulb-alert: "\U000F19E1" lightbulb-alert-outline: "\U000F19E2" lightbulb-auto: "\U000F1800" lightbulb-auto-outline: "\U000F1801" lightbulb-cfl: "\U000F1208" lightbulb-cfl-off: "\U000F1209" lightbulb-cfl-spiral: "\U000F1275" lightbulb-cfl-spiral-off: "\U000F12C3" lightbulb-fluorescent-tube: "\U000F1804" lightbulb-fluorescent-tube-outline: "\U000F1805" lightbulb-group: "\U000F1253" lightbulb-group-off: "\U000F12CD" lightbulb-group-off-outline: "\U000F12CE" lightbulb-group-outline: "\U000F1254" lightbulb-multiple: "\U000F1255" lightbulb-multiple-off: "\U000F12CF" lightbulb-multiple-off-outline: "\U000F12D0" lightbulb-multiple-outline: "\U000F1256" lightbulb-night: "\U000F1A4C" lightbulb-night-outline: "\U000F1A4D" lightbulb-off: "\U000F0E4F" lightbulb-off-outline: "\U000F0E50" lightbulb-on: "\U000F06E8" lightbulb-on-10: "\U000F1A4E" lightbulb-on-20: "\U000F1A4F" lightbulb-on-30: "\U000F1A50" lightbulb-on-40: "\U000F1A51" lightbulb-on-50: "\U000F1A52" lightbulb-on-60: "\U000F1A53" lightbulb-on-70: "\U000F1A54" lightbulb-on-80: "\U000F1A55" lightbulb-on-90: "\U000F1A56" lightbulb-on-outline: "\U000F06E9" lightbulb-outline: "\U000F0336" lightbulb-question: "\U000F19E3" lightbulb-question-outline: "\U000F19E4" lightbulb-spot: "\U000F17F4" lightbulb-spot-off: "\U000F17F5" lightbulb-variant: "\U000F1802" lightbulb-variant-outline: "\U000F1803" lighthouse: "\U000F09FF" lighthouse-on: "\U000F0A00" lightning-bolt: "\U000F140B" lightning-bolt-circle: "\U000F0820" lightning-bolt-outline: "\U000F140C" line-scan: "\U000F0624" lingerie: "\U000F1476" link: "\U000F0337" link-box: "\U000F0D1A" link-box-outline: "\U000F0D1B" link-box-variant: "\U000F0D1C" link-box-variant-outline: "\U000F0D1D" link-lock: "\U000F10BA" link-off: "\U000F0338" link-plus: "\U000F0C94" link-variant: "\U000F0339" link-variant-minus: "\U000F10FF" link-variant-off: "\U000F033A" link-variant-plus: "\U000F1100" link-variant-remove: "\U000F1101" linkedin: "\U000F033B" linux: "\U000F033D" linux-mint: "\U000F08ED" lipstick: "\U000F13B5" liquid-spot: "\U000F1826" liquor: "\U000F191E" list-box: "\U000F1B7B" list-box-outline: "\U000F1B7C" list-status: "\U000F15AB" litecoin: "\U000F0A61" loading: "\U000F0772" location-enter: "\U000F0FC4" location-exit: "\U000F0FC5" lock: "\U000F033E" lock-alert: "\U000F08EE" lock-alert-outline: "\U000F15D1" lock-check: "\U000F139A" lock-check-outline: "\U000F16A8" lock-clock: "\U000F097F" lock-minus: "\U000F16A9" lock-minus-outline: "\U000F16AA" lock-off: "\U000F1671" lock-off-outline: "\U000F1672" lock-open: "\U000F033F" lock-open-alert: "\U000F139B" lock-open-alert-outline: "\U000F15D2" lock-open-check: "\U000F139C" lock-open-check-outline: "\U000F16AB" lock-open-minus: "\U000F16AC" lock-open-minus-outline: "\U000F16AD" lock-open-outline: "\U000F0340" lock-open-plus: "\U000F16AE" lock-open-plus-outline: "\U000F16AF" lock-open-remove: "\U000F16B0" lock-open-remove-outline: "\U000F16B1" lock-open-variant: "\U000F0FC6" lock-open-variant-outline: "\U000F0FC7" lock-outline: "\U000F0341" lock-pattern: "\U000F06EA" lock-plus: "\U000F05FB" lock-plus-outline: "\U000F16B2" lock-question: "\U000F08EF" lock-remove: "\U000F16B3" lock-remove-outline: "\U000F16B4" lock-reset: "\U000F0773" lock-smart: "\U000F08B2" locker: "\U000F07D7" locker-multiple: "\U000F07D8" login: "\U000F0342" login-variant: "\U000F05FC" logout: "\U000F0343" logout-variant: "\U000F05FD" longitude: "\U000F0F5A" looks: "\U000F0344" lotion: "\U000F1582" lotion-outline: "\U000F1583" lotion-plus: "\U000F1584" lotion-plus-outline: "\U000F1585" loupe: "\U000F0345" lumx: "\U000F0346" lungs: "\U000F1084" mace: "\U000F1843" magazine-pistol: "\U000F0324" magazine-rifle: "\U000F0323" magic-staff: "\U000F1844" magnet: "\U000F0347" magnet-on: "\U000F0348" magnify: "\U000F0349" magnify-close: "\U000F0980" magnify-expand: "\U000F1874" magnify-minus: "\U000F034A" magnify-minus-cursor: "\U000F0A62" magnify-minus-outline: "\U000F06EC" magnify-plus: "\U000F034B" magnify-plus-cursor: "\U000F0A63" magnify-plus-outline: "\U000F06ED" magnify-remove-cursor: "\U000F120C" magnify-remove-outline: "\U000F120D" magnify-scan: "\U000F1276" mail: "\U000F0EBB" mailbox: "\U000F06EE" mailbox-open: "\U000F0D88" mailbox-open-outline: "\U000F0D89" mailbox-open-up: "\U000F0D8A" mailbox-open-up-outline: "\U000F0D8B" mailbox-outline: "\U000F0D8C" mailbox-up: "\U000F0D8D" mailbox-up-outline: "\U000F0D8E" manjaro: "\U000F160A" map: "\U000F034D" map-check: "\U000F0EBC" map-check-outline: "\U000F0EBD" map-clock: "\U000F0D1E" map-clock-outline: "\U000F0D1F" map-legend: "\U000F0A01" map-marker: "\U000F034E" map-marker-account: "\U000F18E3" map-marker-account-outline: "\U000F18E4" map-marker-alert: "\U000F0F05" map-marker-alert-outline: "\U000F0F06" map-marker-check: "\U000F0C95" map-marker-check-outline: "\U000F12FB" map-marker-circle: "\U000F034F" map-marker-distance: "\U000F08F0" map-marker-down: "\U000F1102" map-marker-left: "\U000F12DB" map-marker-left-outline: "\U000F12DD" map-marker-minus: "\U000F0650" map-marker-minus-outline: "\U000F12F9" map-marker-multiple: "\U000F0350" map-marker-multiple-outline: "\U000F1277" map-marker-off: "\U000F0351" map-marker-off-outline: "\U000F12FD" map-marker-outline: "\U000F07D9" map-marker-path: "\U000F0D20" map-marker-plus: "\U000F0651" map-marker-plus-outline: "\U000F12F8" map-marker-question: "\U000F0F07" map-marker-question-outline: "\U000F0F08" map-marker-radius: "\U000F0352" map-marker-radius-outline: "\U000F12FC" map-marker-remove: "\U000F0F09" map-marker-remove-outline: "\U000F12FA" map-marker-remove-variant: "\U000F0F0A" map-marker-right: "\U000F12DC" map-marker-right-outline: "\U000F12DE" map-marker-star: "\U000F1608" map-marker-star-outline: "\U000F1609" map-marker-up: "\U000F1103" map-minus: "\U000F0981" map-outline: "\U000F0982" map-plus: "\U000F0983" map-search: "\U000F0984" map-search-outline: "\U000F0985" mapbox: "\U000F0BAA" margin: "\U000F0353" marker: "\U000F0652" marker-cancel: "\U000F0DD9" marker-check: "\U000F0355" mastodon: "\U000F0AD1" material-design: "\U000F0986" material-ui: "\U000F0357" math-compass: "\U000F0358" math-cos: "\U000F0C96" math-integral: "\U000F0FC8" math-integral-box: "\U000F0FC9" math-log: "\U000F1085" math-norm: "\U000F0FCA" math-norm-box: "\U000F0FCB" math-sin: "\U000F0C97" math-tan: "\U000F0C98" matrix: "\U000F0628" medal: "\U000F0987" medal-outline: "\U000F1326" medical-bag: "\U000F06EF" medical-cotton-swab: "\U000F1AB8" medication: "\U000F1B14" medication-outline: "\U000F1B15" meditation: "\U000F117B" memory: "\U000F035B" menorah: "\U000F17D4" menorah-fire: "\U000F17D5" menu: "\U000F035C" menu-down: "\U000F035D" menu-down-outline: "\U000F06B6" menu-left: "\U000F035E" menu-left-outline: "\U000F0A02" menu-open: "\U000F0BAB" menu-right: "\U000F035F" menu-right-outline: "\U000F0A03" menu-swap: "\U000F0A64" menu-swap-outline: "\U000F0A65" menu-up: "\U000F0360" menu-up-outline: "\U000F06B7" merge: "\U000F0F5C" message: "\U000F0361" message-alert: "\U000F0362" message-alert-outline: "\U000F0A04" message-arrow-left: "\U000F12F2" message-arrow-left-outline: "\U000F12F3" message-arrow-right: "\U000F12F4" message-arrow-right-outline: "\U000F12F5" message-badge: "\U000F1941" message-badge-outline: "\U000F1942" message-bookmark: "\U000F15AC" message-bookmark-outline: "\U000F15AD" message-bulleted: "\U000F06A2" message-bulleted-off: "\U000F06A3" message-check: "\U000F1B8A" message-check-outline: "\U000F1B8B" message-cog: "\U000F06F1" message-cog-outline: "\U000F1172" message-draw: "\U000F0363" message-fast: "\U000F19CC" message-fast-outline: "\U000F19CD" message-flash: "\U000F15A9" message-flash-outline: "\U000F15AA" message-image: "\U000F0364" message-image-outline: "\U000F116C" message-lock: "\U000F0FCC" message-lock-outline: "\U000F116D" message-minus: "\U000F116E" message-minus-outline: "\U000F116F" message-off: "\U000F164D" message-off-outline: "\U000F164E" message-outline: "\U000F0365" message-plus: "\U000F0653" message-plus-outline: "\U000F10BB" message-processing: "\U000F0366" message-processing-outline: "\U000F1170" message-question: "\U000F173A" message-question-outline: "\U000F173B" message-reply: "\U000F0367" message-reply-outline: "\U000F173D" message-reply-text: "\U000F0368" message-reply-text-outline: "\U000F173E" message-settings: "\U000F06F0" message-settings-outline: "\U000F1171" message-star: "\U000F069A" message-star-outline: "\U000F1250" message-text: "\U000F0369" message-text-clock: "\U000F1173" message-text-clock-outline: "\U000F1174" message-text-fast: "\U000F19CE" message-text-fast-outline: "\U000F19CF" message-text-lock: "\U000F0FCD" message-text-lock-outline: "\U000F1175" message-text-outline: "\U000F036A" message-video: "\U000F036B" meteor: "\U000F0629" meter-electric: "\U000F1A57" meter-electric-outline: "\U000F1A58" meter-gas: "\U000F1A59" meter-gas-outline: "\U000F1A5A" metronome: "\U000F07DA" metronome-tick: "\U000F07DB" micro-sd: "\U000F07DC" microphone: "\U000F036C" microphone-message: "\U000F050A" microphone-message-off: "\U000F050B" microphone-minus: "\U000F08B3" microphone-off: "\U000F036D" microphone-outline: "\U000F036E" microphone-plus: "\U000F08B4" microphone-question: "\U000F1989" microphone-question-outline: "\U000F198A" microphone-settings: "\U000F036F" microphone-variant: "\U000F0370" microphone-variant-off: "\U000F0371" microscope: "\U000F0654" microsoft: "\U000F0372" microsoft-access: "\U000F138E" microsoft-azure: "\U000F0805" microsoft-azure-devops: "\U000F0FD5" microsoft-bing: "\U000F00A4" microsoft-dynamics-365: "\U000F0988" microsoft-edge: "\U000F01E9" microsoft-excel: "\U000F138F" microsoft-internet-explorer: "\U000F0300" microsoft-office: "\U000F03C6" microsoft-onedrive: "\U000F03CA" microsoft-onenote: "\U000F0747" microsoft-outlook: "\U000F0D22" microsoft-powerpoint: "\U000F1390" microsoft-sharepoint: "\U000F1391" microsoft-teams: "\U000F02BB" microsoft-visual-studio: "\U000F0610" microsoft-visual-studio-code: "\U000F0A1E" microsoft-windows: "\U000F05B3" microsoft-windows-classic: "\U000F0A21" microsoft-word: "\U000F1392" microsoft-xbox: "\U000F05B9" microsoft-xbox-controller: "\U000F05BA" microsoft-xbox-controller-battery-alert: "\U000F074B" microsoft-xbox-controller-battery-charging: "\U000F0A22" microsoft-xbox-controller-battery-empty: "\U000F074C" microsoft-xbox-controller-battery-full: "\U000F074D" microsoft-xbox-controller-battery-low: "\U000F074E" microsoft-xbox-controller-battery-medium: "\U000F074F" microsoft-xbox-controller-battery-unknown: "\U000F0750" microsoft-xbox-controller-menu: "\U000F0E6F" microsoft-xbox-controller-off: "\U000F05BB" microsoft-xbox-controller-view: "\U000F0E70" microwave: "\U000F0C99" microwave-off: "\U000F1423" middleware: "\U000F0F5D" middleware-outline: "\U000F0F5E" midi: "\U000F08F1" midi-port: "\U000F08F2" mine: "\U000F0DDA" minecraft: "\U000F0373" mini-sd: "\U000F0A05" minidisc: "\U000F0A06" minus: "\U000F0374" minus-box: "\U000F0375" minus-box-multiple: "\U000F1141" minus-box-multiple-outline: "\U000F1142" minus-box-outline: "\U000F06F2" minus-circle: "\U000F0376" minus-circle-multiple: "\U000F035A" minus-circle-multiple-outline: "\U000F0AD3" minus-circle-off: "\U000F1459" minus-circle-off-outline: "\U000F145A" minus-circle-outline: "\U000F0377" minus-network: "\U000F0378" minus-network-outline: "\U000F0C9A" minus-thick: "\U000F1639" mirror: "\U000F11FD" mirror-rectangle: "\U000F179F" mirror-variant: "\U000F17A0" mixed-martial-arts: "\U000F0D8F" mixed-reality: "\U000F087F" molecule: "\U000F0BAC" molecule-co: "\U000F12FE" molecule-co2: "\U000F07E4" monitor: "\U000F0379" monitor-account: "\U000F1A5B" monitor-arrow-down: "\U000F19D0" monitor-arrow-down-variant: "\U000F19D1" monitor-cellphone: "\U000F0989" monitor-cellphone-star: "\U000F098A" monitor-dashboard: "\U000F0A07" monitor-edit: "\U000F12C6" monitor-eye: "\U000F13B4" monitor-lock: "\U000F0DDB" monitor-multiple: "\U000F037A" monitor-off: "\U000F0D90" monitor-screenshot: "\U000F0E51" monitor-share: "\U000F1483" monitor-shimmer: "\U000F1104" monitor-small: "\U000F1876" monitor-speaker: "\U000F0F5F" monitor-speaker-off: "\U000F0F60" monitor-star: "\U000F0DDC" moon-first-quarter: "\U000F0F61" moon-full: "\U000F0F62" moon-last-quarter: "\U000F0F63" moon-new: "\U000F0F64" moon-waning-crescent: "\U000F0F65" moon-waning-gibbous: "\U000F0F66" moon-waxing-crescent: "\U000F0F67" moon-waxing-gibbous: "\U000F0F68" moped: "\U000F1086" moped-electric: "\U000F15B7" moped-electric-outline: "\U000F15B8" moped-outline: "\U000F15B9" more: "\U000F037B" mortar-pestle: "\U000F1748" mortar-pestle-plus: "\U000F03F1" mosque: "\U000F0D45" mosque-outline: "\U000F1827" mother-heart: "\U000F1314" mother-nurse: "\U000F0D21" motion: "\U000F15B2" motion-outline: "\U000F15B3" motion-pause: "\U000F1590" motion-pause-outline: "\U000F1592" motion-play: "\U000F158F" motion-play-outline: "\U000F1591" motion-sensor: "\U000F0D91" motion-sensor-off: "\U000F1435" motorbike: "\U000F037C" motorbike-electric: "\U000F15BA" motorbike-off: "\U000F1B16" mouse: "\U000F037D" mouse-bluetooth: "\U000F098B" mouse-move-down: "\U000F1550" mouse-move-up: "\U000F1551" mouse-move-vertical: "\U000F1552" mouse-off: "\U000F037E" mouse-variant: "\U000F037F" mouse-variant-off: "\U000F0380" move-resize: "\U000F0655" move-resize-variant: "\U000F0656" movie: "\U000F0381" movie-check: "\U000F16F3" movie-check-outline: "\U000F16F4" movie-cog: "\U000F16F5" movie-cog-outline: "\U000F16F6" movie-edit: "\U000F1122" movie-edit-outline: "\U000F1123" movie-filter: "\U000F1124" movie-filter-outline: "\U000F1125" movie-minus: "\U000F16F7" movie-minus-outline: "\U000F16F8" movie-off: "\U000F16F9" movie-off-outline: "\U000F16FA" movie-open: "\U000F0FCE" movie-open-check: "\U000F16FB" movie-open-check-outline: "\U000F16FC" movie-open-cog: "\U000F16FD" movie-open-cog-outline: "\U000F16FE" movie-open-edit: "\U000F16FF" movie-open-edit-outline: "\U000F1700" movie-open-minus: "\U000F1701" movie-open-minus-outline: "\U000F1702" movie-open-off: "\U000F1703" movie-open-off-outline: "\U000F1704" movie-open-outline: "\U000F0FCF" movie-open-play: "\U000F1705" movie-open-play-outline: "\U000F1706" movie-open-plus: "\U000F1707" movie-open-plus-outline: "\U000F1708" movie-open-remove: "\U000F1709" movie-open-remove-outline: "\U000F170A" movie-open-settings: "\U000F170B" movie-open-settings-outline: "\U000F170C" movie-open-star: "\U000F170D" movie-open-star-outline: "\U000F170E" movie-outline: "\U000F0DDD" movie-play: "\U000F170F" movie-play-outline: "\U000F1710" movie-plus: "\U000F1711" movie-plus-outline: "\U000F1712" movie-remove: "\U000F1713" movie-remove-outline: "\U000F1714" movie-roll: "\U000F07DE" movie-search: "\U000F11D2" movie-search-outline: "\U000F11D3" movie-settings: "\U000F1715" movie-settings-outline: "\U000F1716" movie-star: "\U000F1717" movie-star-outline: "\U000F1718" mower: "\U000F166F" mower-bag: "\U000F1670" mower-bag-on: "\U000F1B60" mower-on: "\U000F1B5F" muffin: "\U000F098C" multicast: "\U000F1893" multimedia: "\U000F1B97" multiplication: "\U000F0382" multiplication-box: "\U000F0383" mushroom: "\U000F07DF" mushroom-off: "\U000F13FA" mushroom-off-outline: "\U000F13FB" mushroom-outline: "\U000F07E0" music: "\U000F075A" music-accidental-double-flat: "\U000F0F69" music-accidental-double-sharp: "\U000F0F6A" music-accidental-flat: "\U000F0F6B" music-accidental-natural: "\U000F0F6C" music-accidental-sharp: "\U000F0F6D" music-box: "\U000F0384" music-box-multiple: "\U000F0333" music-box-multiple-outline: "\U000F0F04" music-box-outline: "\U000F0385" music-circle: "\U000F0386" music-circle-outline: "\U000F0AD4" music-clef-alto: "\U000F0F6E" music-clef-bass: "\U000F0F6F" music-clef-treble: "\U000F0F70" music-note: "\U000F0387" music-note-bluetooth: "\U000F05FE" music-note-bluetooth-off: "\U000F05FF" music-note-eighth: "\U000F0388" music-note-eighth-dotted: "\U000F0F71" music-note-half: "\U000F0389" music-note-half-dotted: "\U000F0F72" music-note-minus: "\U000F1B89" music-note-off: "\U000F038A" music-note-off-outline: "\U000F0F73" music-note-outline: "\U000F0F74" music-note-plus: "\U000F0DDE" music-note-quarter: "\U000F038B" music-note-quarter-dotted: "\U000F0F75" music-note-sixteenth: "\U000F038C" music-note-sixteenth-dotted: "\U000F0F76" music-note-whole: "\U000F038D" music-note-whole-dotted: "\U000F0F77" music-off: "\U000F075B" music-rest-eighth: "\U000F0F78" music-rest-half: "\U000F0F79" music-rest-quarter: "\U000F0F7A" music-rest-sixteenth: "\U000F0F7B" music-rest-whole: "\U000F0F7C" mustache: "\U000F15DE" nail: "\U000F0DDF" nas: "\U000F08F3" nativescript: "\U000F0880" nature: "\U000F038E" nature-people: "\U000F038F" navigation: "\U000F0390" navigation-outline: "\U000F1607" navigation-variant: "\U000F18F0" navigation-variant-outline: "\U000F18F1" near-me: "\U000F05CD" necklace: "\U000F0F0B" needle: "\U000F0391" needle-off: "\U000F19D2" netflix: "\U000F0746" network: "\U000F06F3" network-off: "\U000F0C9B" network-off-outline: "\U000F0C9C" network-outline: "\U000F0C9D" network-pos: "\U000F1ACB" network-strength-1: "\U000F08F4" network-strength-1-alert: "\U000F08F5" network-strength-2: "\U000F08F6" network-strength-2-alert: "\U000F08F7" network-strength-3: "\U000F08F8" network-strength-3-alert: "\U000F08F9" network-strength-4: "\U000F08FA" network-strength-4-alert: "\U000F08FB" network-strength-4-cog: "\U000F191A" network-strength-off: "\U000F08FC" network-strength-off-outline: "\U000F08FD" network-strength-outline: "\U000F08FE" new-box: "\U000F0394" newspaper: "\U000F0395" newspaper-check: "\U000F1943" newspaper-minus: "\U000F0F0C" newspaper-plus: "\U000F0F0D" newspaper-remove: "\U000F1944" newspaper-variant: "\U000F1001" newspaper-variant-multiple: "\U000F1002" newspaper-variant-multiple-outline: "\U000F1003" newspaper-variant-outline: "\U000F1004" nfc: "\U000F0396" nfc-search-variant: "\U000F0E53" nfc-tap: "\U000F0397" nfc-variant: "\U000F0398" nfc-variant-off: "\U000F0E54" ninja: "\U000F0774" nintendo-game-boy: "\U000F1393" nintendo-switch: "\U000F07E1" nintendo-wii: "\U000F05AB" nintendo-wiiu: "\U000F072D" nix: "\U000F1105" nodejs: "\U000F0399" noodles: "\U000F117E" not-equal: "\U000F098D" not-equal-variant: "\U000F098E" note: "\U000F039A" note-alert: "\U000F177D" note-alert-outline: "\U000F177E" note-check: "\U000F177F" note-check-outline: "\U000F1780" note-edit: "\U000F1781" note-edit-outline: "\U000F1782" note-minus: "\U000F164F" note-minus-outline: "\U000F1650" note-multiple: "\U000F06B8" note-multiple-outline: "\U000F06B9" note-off: "\U000F1783" note-off-outline: "\U000F1784" note-outline: "\U000F039B" note-plus: "\U000F039C" note-plus-outline: "\U000F039D" note-remove: "\U000F1651" note-remove-outline: "\U000F1652" note-search: "\U000F1653" note-search-outline: "\U000F1654" note-text: "\U000F039E" note-text-outline: "\U000F11D7" notebook: "\U000F082E" notebook-check: "\U000F14F5" notebook-check-outline: "\U000F14F6" notebook-edit: "\U000F14E7" notebook-edit-outline: "\U000F14E9" notebook-heart: "\U000F1A0B" notebook-heart-outline: "\U000F1A0C" notebook-minus: "\U000F1610" notebook-minus-outline: "\U000F1611" notebook-multiple: "\U000F0E55" notebook-outline: "\U000F0EBF" notebook-plus: "\U000F1612" notebook-plus-outline: "\U000F1613" notebook-remove: "\U000F1614" notebook-remove-outline: "\U000F1615" notification-clear-all: "\U000F039F" npm: "\U000F06F7" nuke: "\U000F06A4" 'null': "\U000F07E2" numeric: "\U000F03A0" numeric-0: "\U000F0B39" numeric-0-box: "\U000F03A1" numeric-0-box-multiple: "\U000F0F0E" numeric-0-box-multiple-outline: "\U000F03A2" numeric-0-box-outline: "\U000F03A3" numeric-0-circle: "\U000F0C9E" numeric-0-circle-outline: "\U000F0C9F" numeric-1: "\U000F0B3A" numeric-1-box: "\U000F03A4" numeric-1-box-multiple: "\U000F0F0F" numeric-1-box-multiple-outline: "\U000F03A5" numeric-1-box-outline: "\U000F03A6" numeric-1-circle: "\U000F0CA0" numeric-1-circle-outline: "\U000F0CA1" numeric-10: "\U000F0FE9" numeric-10-box: "\U000F0F7D" numeric-10-box-multiple: "\U000F0FEA" numeric-10-box-multiple-outline: "\U000F0FEB" numeric-10-box-outline: "\U000F0F7E" numeric-10-circle: "\U000F0FEC" numeric-10-circle-outline: "\U000F0FED" numeric-2: "\U000F0B3B" numeric-2-box: "\U000F03A7" numeric-2-box-multiple: "\U000F0F10" numeric-2-box-multiple-outline: "\U000F03A8" numeric-2-box-outline: "\U000F03A9" numeric-2-circle: "\U000F0CA2" numeric-2-circle-outline: "\U000F0CA3" numeric-3: "\U000F0B3C" numeric-3-box: "\U000F03AA" numeric-3-box-multiple: "\U000F0F11" numeric-3-box-multiple-outline: "\U000F03AB" numeric-3-box-outline: "\U000F03AC" numeric-3-circle: "\U000F0CA4" numeric-3-circle-outline: "\U000F0CA5" numeric-4: "\U000F0B3D" numeric-4-box: "\U000F03AD" numeric-4-box-multiple: "\U000F0F12" numeric-4-box-multiple-outline: "\U000F03B2" numeric-4-box-outline: "\U000F03AE" numeric-4-circle: "\U000F0CA6" numeric-4-circle-outline: "\U000F0CA7" numeric-5: "\U000F0B3E" numeric-5-box: "\U000F03B1" numeric-5-box-multiple: "\U000F0F13" numeric-5-box-multiple-outline: "\U000F03AF" numeric-5-box-outline: "\U000F03B0" numeric-5-circle: "\U000F0CA8" numeric-5-circle-outline: "\U000F0CA9" numeric-6: "\U000F0B3F" numeric-6-box: "\U000F03B3" numeric-6-box-multiple: "\U000F0F14" numeric-6-box-multiple-outline: "\U000F03B4" numeric-6-box-outline: "\U000F03B5" numeric-6-circle: "\U000F0CAA" numeric-6-circle-outline: "\U000F0CAB" numeric-7: "\U000F0B40" numeric-7-box: "\U000F03B6" numeric-7-box-multiple: "\U000F0F15" numeric-7-box-multiple-outline: "\U000F03B7" numeric-7-box-outline: "\U000F03B8" numeric-7-circle: "\U000F0CAC" numeric-7-circle-outline: "\U000F0CAD" numeric-8: "\U000F0B41" numeric-8-box: "\U000F03B9" numeric-8-box-multiple: "\U000F0F16" numeric-8-box-multiple-outline: "\U000F03BA" numeric-8-box-outline: "\U000F03BB" numeric-8-circle: "\U000F0CAE" numeric-8-circle-outline: "\U000F0CAF" numeric-9: "\U000F0B42" numeric-9-box: "\U000F03BC" numeric-9-box-multiple: "\U000F0F17" numeric-9-box-multiple-outline: "\U000F03BD" numeric-9-box-outline: "\U000F03BE" numeric-9-circle: "\U000F0CB0" numeric-9-circle-outline: "\U000F0CB1" numeric-9-plus: "\U000F0FEE" numeric-9-plus-box: "\U000F03BF" numeric-9-plus-box-multiple: "\U000F0F18" numeric-9-plus-box-multiple-outline: "\U000F03C0" numeric-9-plus-box-outline: "\U000F03C1" numeric-9-plus-circle: "\U000F0CB2" numeric-9-plus-circle-outline: "\U000F0CB3" numeric-negative-1: "\U000F1052" numeric-off: "\U000F19D3" numeric-positive-1: "\U000F15CB" nut: "\U000F06F8" nutrition: "\U000F03C2" nuxt: "\U000F1106" oar: "\U000F067C" ocarina: "\U000F0DE0" oci: "\U000F12E9" ocr: "\U000F113A" octagon: "\U000F03C3" octagon-outline: "\U000F03C4" octagram: "\U000F06F9" octagram-outline: "\U000F0775" octahedron: "\U000F1950" octahedron-off: "\U000F1951" odnoklassniki: "\U000F03C5" offer: "\U000F121B" office-building: "\U000F0991" office-building-cog: "\U000F1949" office-building-cog-outline: "\U000F194A" office-building-marker: "\U000F1520" office-building-marker-outline: "\U000F1521" office-building-minus: "\U000F1BAA" office-building-minus-outline: "\U000F1BAB" office-building-outline: "\U000F151F" office-building-plus: "\U000F1BA8" office-building-plus-outline: "\U000F1BA9" office-building-remove: "\U000F1BAC" office-building-remove-outline: "\U000F1BAD" oil: "\U000F03C7" oil-lamp: "\U000F0F19" oil-level: "\U000F1053" oil-temperature: "\U000F0FF8" om: "\U000F0973" omega: "\U000F03C9" one-up: "\U000F0BAD" onepassword: "\U000F0881" opacity: "\U000F05CC" open-in-app: "\U000F03CB" open-in-new: "\U000F03CC" open-source-initiative: "\U000F0BAE" openid: "\U000F03CD" opera: "\U000F03CE" orbit: "\U000F0018" orbit-variant: "\U000F15DB" order-alphabetical-ascending: "\U000F020D" order-alphabetical-descending: "\U000F0D07" order-bool-ascending: "\U000F02BE" order-bool-ascending-variant: "\U000F098F" order-bool-descending: "\U000F1384" order-bool-descending-variant: "\U000F0990" order-numeric-ascending: "\U000F0545" order-numeric-descending: "\U000F0546" origin: "\U000F0B43" ornament: "\U000F03CF" ornament-variant: "\U000F03D0" outdoor-lamp: "\U000F1054" overscan: "\U000F1005" owl: "\U000F03D2" pac-man: "\U000F0BAF" package: "\U000F03D3" package-check: "\U000F1B51" package-down: "\U000F03D4" package-up: "\U000F03D5" package-variant: "\U000F03D6" package-variant-closed: "\U000F03D7" package-variant-closed-check: "\U000F1B52" package-variant-closed-minus: "\U000F19D4" package-variant-closed-plus: "\U000F19D5" package-variant-closed-remove: "\U000F19D6" package-variant-minus: "\U000F19D7" package-variant-plus: "\U000F19D8" package-variant-remove: "\U000F19D9" page-first: "\U000F0600" page-last: "\U000F0601" page-layout-body: "\U000F06FA" page-layout-footer: "\U000F06FB" page-layout-header: "\U000F06FC" page-layout-header-footer: "\U000F0F7F" page-layout-sidebar-left: "\U000F06FD" page-layout-sidebar-right: "\U000F06FE" page-next: "\U000F0BB0" page-next-outline: "\U000F0BB1" page-previous: "\U000F0BB2" page-previous-outline: "\U000F0BB3" pail: "\U000F1417" pail-minus: "\U000F1437" pail-minus-outline: "\U000F143C" pail-off: "\U000F1439" pail-off-outline: "\U000F143E" pail-outline: "\U000F143A" pail-plus: "\U000F1436" pail-plus-outline: "\U000F143B" pail-remove: "\U000F1438" pail-remove-outline: "\U000F143D" palette: "\U000F03D8" palette-advanced: "\U000F03D9" palette-outline: "\U000F0E0C" palette-swatch: "\U000F08B5" palette-swatch-outline: "\U000F135C" palette-swatch-variant: "\U000F195A" palm-tree: "\U000F1055" pan: "\U000F0BB4" pan-bottom-left: "\U000F0BB5" pan-bottom-right: "\U000F0BB6" pan-down: "\U000F0BB7" pan-horizontal: "\U000F0BB8" pan-left: "\U000F0BB9" pan-right: "\U000F0BBA" pan-top-left: "\U000F0BBB" pan-top-right: "\U000F0BBC" pan-up: "\U000F0BBD" pan-vertical: "\U000F0BBE" panda: "\U000F03DA" pandora: "\U000F03DB" panorama: "\U000F03DC" panorama-fisheye: "\U000F03DD" panorama-horizontal: "\U000F1928" panorama-horizontal-outline: "\U000F03DE" panorama-outline: "\U000F198C" panorama-sphere: "\U000F198D" panorama-sphere-outline: "\U000F198E" panorama-variant: "\U000F198F" panorama-variant-outline: "\U000F1990" panorama-vertical: "\U000F1929" panorama-vertical-outline: "\U000F03DF" panorama-wide-angle: "\U000F195F" panorama-wide-angle-outline: "\U000F03E0" paper-cut-vertical: "\U000F03E1" paper-roll: "\U000F1157" paper-roll-outline: "\U000F1158" paperclip: "\U000F03E2" paperclip-check: "\U000F1AC6" paperclip-lock: "\U000F19DA" paperclip-minus: "\U000F1AC7" paperclip-off: "\U000F1AC8" paperclip-plus: "\U000F1AC9" paperclip-remove: "\U000F1ACA" parachute: "\U000F0CB4" parachute-outline: "\U000F0CB5" paragliding: "\U000F1745" parking: "\U000F03E3" party-popper: "\U000F1056" passport: "\U000F07E3" passport-biometric: "\U000F0DE1" pasta: "\U000F1160" patio-heater: "\U000F0F80" patreon: "\U000F0882" pause: "\U000F03E4" pause-box: "\U000F00BC" pause-box-outline: "\U000F1B7A" pause-circle: "\U000F03E5" pause-circle-outline: "\U000F03E6" pause-octagon: "\U000F03E7" pause-octagon-outline: "\U000F03E8" paw: "\U000F03E9" paw-off: "\U000F0657" paw-off-outline: "\U000F1676" paw-outline: "\U000F1675" peace: "\U000F0884" peanut: "\U000F0FFC" peanut-off: "\U000F0FFD" peanut-off-outline: "\U000F0FFF" peanut-outline: "\U000F0FFE" pen: "\U000F03EA" pen-lock: "\U000F0DE2" pen-minus: "\U000F0DE3" pen-off: "\U000F0DE4" pen-plus: "\U000F0DE5" pen-remove: "\U000F0DE6" pencil: "\U000F03EB" pencil-box: "\U000F03EC" pencil-box-multiple: "\U000F1144" pencil-box-multiple-outline: "\U000F1145" pencil-box-outline: "\U000F03ED" pencil-circle: "\U000F06FF" pencil-circle-outline: "\U000F0776" pencil-lock: "\U000F03EE" pencil-lock-outline: "\U000F0DE7" pencil-minus: "\U000F0DE8" pencil-minus-outline: "\U000F0DE9" pencil-off: "\U000F03EF" pencil-off-outline: "\U000F0DEA" pencil-outline: "\U000F0CB6" pencil-plus: "\U000F0DEB" pencil-plus-outline: "\U000F0DEC" pencil-remove: "\U000F0DED" pencil-remove-outline: "\U000F0DEE" pencil-ruler: "\U000F1353" penguin: "\U000F0EC0" pentagon: "\U000F0701" pentagon-outline: "\U000F0700" pentagram: "\U000F1667" percent: "\U000F03F0" percent-box: "\U000F1A02" percent-box-outline: "\U000F1A03" percent-circle: "\U000F1A04" percent-circle-outline: "\U000F1A05" percent-outline: "\U000F1278" periodic-table: "\U000F08B6" perspective-less: "\U000F0D23" perspective-more: "\U000F0D24" ph: "\U000F17C5" phone: "\U000F03F2" phone-alert: "\U000F0F1A" phone-alert-outline: "\U000F118E" phone-bluetooth: "\U000F03F3" phone-bluetooth-outline: "\U000F118F" phone-cancel: "\U000F10BC" phone-cancel-outline: "\U000F1190" phone-check: "\U000F11A9" phone-check-outline: "\U000F11AA" phone-classic: "\U000F0602" phone-classic-off: "\U000F1279" phone-clock: "\U000F19DB" phone-dial: "\U000F1559" phone-dial-outline: "\U000F155A" phone-forward: "\U000F03F4" phone-forward-outline: "\U000F1191" phone-hangup: "\U000F03F5" phone-hangup-outline: "\U000F1192" phone-in-talk: "\U000F03F6" phone-in-talk-outline: "\U000F1182" phone-incoming: "\U000F03F7" phone-incoming-outgoing: "\U000F1B3F" phone-incoming-outgoing-outline: "\U000F1B40" phone-incoming-outline: "\U000F1193" phone-lock: "\U000F03F8" phone-lock-outline: "\U000F1194" phone-log: "\U000F03F9" phone-log-outline: "\U000F1195" phone-message: "\U000F1196" phone-message-outline: "\U000F1197" phone-minus: "\U000F0658" phone-minus-outline: "\U000F1198" phone-missed: "\U000F03FA" phone-missed-outline: "\U000F11A5" phone-off: "\U000F0DEF" phone-off-outline: "\U000F11A6" phone-outgoing: "\U000F03FB" phone-outgoing-outline: "\U000F1199" phone-outline: "\U000F0DF0" phone-paused: "\U000F03FC" phone-paused-outline: "\U000F119A" phone-plus: "\U000F0659" phone-plus-outline: "\U000F119B" phone-refresh: "\U000F1993" phone-refresh-outline: "\U000F1994" phone-remove: "\U000F152F" phone-remove-outline: "\U000F1530" phone-return: "\U000F082F" phone-return-outline: "\U000F119C" phone-ring: "\U000F11AB" phone-ring-outline: "\U000F11AC" phone-rotate-landscape: "\U000F0885" phone-rotate-portrait: "\U000F0886" phone-settings: "\U000F03FD" phone-settings-outline: "\U000F119D" phone-sync: "\U000F1995" phone-sync-outline: "\U000F1996" phone-voip: "\U000F03FE" pi: "\U000F03FF" pi-box: "\U000F0400" pi-hole: "\U000F0DF1" piano: "\U000F067D" piano-off: "\U000F0698" pickaxe: "\U000F08B7" picture-in-picture-bottom-right: "\U000F0E57" picture-in-picture-bottom-right-outline: "\U000F0E58" picture-in-picture-top-right: "\U000F0E59" picture-in-picture-top-right-outline: "\U000F0E5A" pier: "\U000F0887" pier-crane: "\U000F0888" pig: "\U000F0401" pig-variant: "\U000F1006" pig-variant-outline: "\U000F1678" piggy-bank: "\U000F1007" piggy-bank-outline: "\U000F1679" pill: "\U000F0402" pill-multiple: "\U000F1B4C" pill-off: "\U000F1A5C" pillar: "\U000F0702" pin: "\U000F0403" pin-off: "\U000F0404" pin-off-outline: "\U000F0930" pin-outline: "\U000F0931" pine-tree: "\U000F0405" pine-tree-box: "\U000F0406" pine-tree-fire: "\U000F141A" pinterest: "\U000F0407" pinwheel: "\U000F0AD5" pinwheel-outline: "\U000F0AD6" pipe: "\U000F07E5" pipe-disconnected: "\U000F07E6" pipe-leak: "\U000F0889" pipe-valve: "\U000F184D" pipe-wrench: "\U000F1354" pirate: "\U000F0A08" pistol: "\U000F0703" piston: "\U000F088A" pitchfork: "\U000F1553" pizza: "\U000F0409" plane-car: "\U000F1AFF" plane-train: "\U000F1B00" play: "\U000F040A" play-box: "\U000F127A" play-box-lock: "\U000F1A16" play-box-lock-open: "\U000F1A17" play-box-lock-open-outline: "\U000F1A18" play-box-lock-outline: "\U000F1A19" play-box-multiple: "\U000F0D19" play-box-multiple-outline: "\U000F13E6" play-box-outline: "\U000F040B" play-circle: "\U000F040C" play-circle-outline: "\U000F040D" play-network: "\U000F088B" play-network-outline: "\U000F0CB7" play-outline: "\U000F0F1B" play-pause: "\U000F040E" play-protected-content: "\U000F040F" play-speed: "\U000F08FF" playlist-check: "\U000F05C7" playlist-edit: "\U000F0900" playlist-minus: "\U000F0410" playlist-music: "\U000F0CB8" playlist-music-outline: "\U000F0CB9" playlist-play: "\U000F0411" playlist-plus: "\U000F0412" playlist-remove: "\U000F0413" playlist-star: "\U000F0DF2" plex: "\U000F06BA" pliers: "\U000F19A4" plus: "\U000F0415" plus-box: "\U000F0416" plus-box-multiple: "\U000F0334" plus-box-multiple-outline: "\U000F1143" plus-box-outline: "\U000F0704" plus-circle: "\U000F0417" plus-circle-multiple: "\U000F034C" plus-circle-multiple-outline: "\U000F0418" plus-circle-outline: "\U000F0419" plus-lock: "\U000F1A5D" plus-lock-open: "\U000F1A5E" plus-minus: "\U000F0992" plus-minus-box: "\U000F0993" plus-minus-variant: "\U000F14C9" plus-network: "\U000F041A" plus-network-outline: "\U000F0CBA" plus-outline: "\U000F0705" plus-thick: "\U000F11EC" podcast: "\U000F0994" podium: "\U000F0D25" podium-bronze: "\U000F0D26" podium-gold: "\U000F0D27" podium-silver: "\U000F0D28" point-of-sale: "\U000F0D92" pokeball: "\U000F041D" pokemon-go: "\U000F0A09" poker-chip: "\U000F0830" polaroid: "\U000F041E" police-badge: "\U000F1167" police-badge-outline: "\U000F1168" police-station: "\U000F1839" poll: "\U000F041F" polo: "\U000F14C3" polymer: "\U000F0421" pool: "\U000F0606" pool-thermometer: "\U000F1A5F" popcorn: "\U000F0422" post: "\U000F1008" post-lamp: "\U000F1A60" post-outline: "\U000F1009" postage-stamp: "\U000F0CBB" pot: "\U000F02E5" pot-mix: "\U000F065B" pot-mix-outline: "\U000F0677" pot-outline: "\U000F02FF" pot-steam: "\U000F065A" pot-steam-outline: "\U000F0326" pound: "\U000F0423" pound-box: "\U000F0424" pound-box-outline: "\U000F117F" power: "\U000F0425" power-cycle: "\U000F0901" power-off: "\U000F0902" power-on: "\U000F0903" power-plug: "\U000F06A5" power-plug-off: "\U000F06A6" power-plug-off-outline: "\U000F1424" power-plug-outline: "\U000F1425" power-settings: "\U000F0426" power-sleep: "\U000F0904" power-socket: "\U000F0427" power-socket-au: "\U000F0905" power-socket-ch: "\U000F0FB3" power-socket-de: "\U000F1107" power-socket-eu: "\U000F07E7" power-socket-fr: "\U000F1108" power-socket-it: "\U000F14FF" power-socket-jp: "\U000F1109" power-socket-uk: "\U000F07E8" power-socket-us: "\U000F07E9" power-standby: "\U000F0906" powershell: "\U000F0A0A" prescription: "\U000F0706" presentation: "\U000F0428" presentation-play: "\U000F0429" pretzel: "\U000F1562" printer: "\U000F042A" printer-3d: "\U000F042B" printer-3d-nozzle: "\U000F0E5B" printer-3d-nozzle-alert: "\U000F11C0" printer-3d-nozzle-alert-outline: "\U000F11C1" printer-3d-nozzle-heat: "\U000F18B8" printer-3d-nozzle-heat-outline: "\U000F18B9" printer-3d-nozzle-off: "\U000F1B19" printer-3d-nozzle-off-outline: "\U000F1B1A" printer-3d-nozzle-outline: "\U000F0E5C" printer-3d-off: "\U000F1B0E" printer-alert: "\U000F042C" printer-check: "\U000F1146" printer-eye: "\U000F1458" printer-off: "\U000F0E5D" printer-off-outline: "\U000F1785" printer-outline: "\U000F1786" printer-pos: "\U000F1057" printer-search: "\U000F1457" printer-settings: "\U000F0707" printer-wireless: "\U000F0A0B" priority-high: "\U000F0603" priority-low: "\U000F0604" professional-hexagon: "\U000F042D" progress-alert: "\U000F0CBC" progress-check: "\U000F0995" progress-clock: "\U000F0996" progress-close: "\U000F110A" progress-download: "\U000F0997" progress-helper: "\U000F1BA2" progress-pencil: "\U000F1787" progress-question: "\U000F1522" progress-star: "\U000F1788" progress-upload: "\U000F0998" progress-wrench: "\U000F0CBD" projector: "\U000F042E" projector-off: "\U000F1A23" projector-screen: "\U000F042F" projector-screen-off: "\U000F180D" projector-screen-off-outline: "\U000F180E" projector-screen-outline: "\U000F1724" projector-screen-variant: "\U000F180F" projector-screen-variant-off: "\U000F1810" projector-screen-variant-off-outline: "\U000F1811" projector-screen-variant-outline: "\U000F1812" propane-tank: "\U000F1357" propane-tank-outline: "\U000F1358" protocol: "\U000F0FD8" publish: "\U000F06A7" publish-off: "\U000F1945" pulse: "\U000F0430" pump: "\U000F1402" pump-off: "\U000F1B22" pumpkin: "\U000F0BBF" purse: "\U000F0F1C" purse-outline: "\U000F0F1D" puzzle: "\U000F0431" puzzle-check: "\U000F1426" puzzle-check-outline: "\U000F1427" puzzle-edit: "\U000F14D3" puzzle-edit-outline: "\U000F14D9" puzzle-heart: "\U000F14D4" puzzle-heart-outline: "\U000F14DA" puzzle-minus: "\U000F14D1" puzzle-minus-outline: "\U000F14D7" puzzle-outline: "\U000F0A66" puzzle-plus: "\U000F14D0" puzzle-plus-outline: "\U000F14D6" puzzle-remove: "\U000F14D2" puzzle-remove-outline: "\U000F14D8" puzzle-star: "\U000F14D5" puzzle-star-outline: "\U000F14DB" pyramid: "\U000F1952" pyramid-off: "\U000F1953" qi: "\U000F0999" qqchat: "\U000F0605" qrcode: "\U000F0432" qrcode-edit: "\U000F08B8" qrcode-minus: "\U000F118C" qrcode-plus: "\U000F118B" qrcode-remove: "\U000F118D" qrcode-scan: "\U000F0433" quadcopter: "\U000F0434" quality-high: "\U000F0435" quality-low: "\U000F0A0C" quality-medium: "\U000F0A0D" quora: "\U000F0D29" rabbit: "\U000F0907" rabbit-variant: "\U000F1A61" rabbit-variant-outline: "\U000F1A62" racing-helmet: "\U000F0D93" racquetball: "\U000F0D94" radar: "\U000F0437" radiator: "\U000F0438" radiator-disabled: "\U000F0AD7" radiator-off: "\U000F0AD8" radio: "\U000F0439" radio-am: "\U000F0CBE" radio-fm: "\U000F0CBF" radio-handheld: "\U000F043A" radio-off: "\U000F121C" radio-tower: "\U000F043B" radioactive: "\U000F043C" radioactive-circle: "\U000F185D" radioactive-circle-outline: "\U000F185E" radioactive-off: "\U000F0EC1" radiobox-blank: "\U000F043D" radiobox-marked: "\U000F043E" radiology-box: "\U000F14C5" radiology-box-outline: "\U000F14C6" radius: "\U000F0CC0" radius-outline: "\U000F0CC1" railroad-light: "\U000F0F1E" rake: "\U000F1544" raspberry-pi: "\U000F043F" raw: "\U000F1A0F" raw-off: "\U000F1A10" ray-end: "\U000F0440" ray-end-arrow: "\U000F0441" ray-start: "\U000F0442" ray-start-arrow: "\U000F0443" ray-start-end: "\U000F0444" ray-start-vertex-end: "\U000F15D8" ray-vertex: "\U000F0445" razor-double-edge: "\U000F1997" razor-single-edge: "\U000F1998" react: "\U000F0708" read: "\U000F0447" receipt: "\U000F0824" receipt-outline: "\U000F04F7" receipt-text: "\U000F0449" receipt-text-check: "\U000F1A63" receipt-text-check-outline: "\U000F1A64" receipt-text-minus: "\U000F1A65" receipt-text-minus-outline: "\U000F1A66" receipt-text-outline: "\U000F19DC" receipt-text-plus: "\U000F1A67" receipt-text-plus-outline: "\U000F1A68" receipt-text-remove: "\U000F1A69" receipt-text-remove-outline: "\U000F1A6A" record: "\U000F044A" record-circle: "\U000F0EC2" record-circle-outline: "\U000F0EC3" record-player: "\U000F099A" record-rec: "\U000F044B" rectangle: "\U000F0E5E" rectangle-outline: "\U000F0E5F" recycle: "\U000F044C" recycle-variant: "\U000F139D" reddit: "\U000F044D" redhat: "\U000F111B" redo: "\U000F044E" redo-variant: "\U000F044F" reflect-horizontal: "\U000F0A0E" reflect-vertical: "\U000F0A0F" refresh: "\U000F0450" refresh-auto: "\U000F18F2" refresh-circle: "\U000F1377" regex: "\U000F0451" registered-trademark: "\U000F0A67" reiterate: "\U000F1588" relation-many-to-many: "\U000F1496" relation-many-to-one: "\U000F1497" relation-many-to-one-or-many: "\U000F1498" relation-many-to-only-one: "\U000F1499" relation-many-to-zero-or-many: "\U000F149A" relation-many-to-zero-or-one: "\U000F149B" relation-one-or-many-to-many: "\U000F149C" relation-one-or-many-to-one: "\U000F149D" relation-one-or-many-to-one-or-many: "\U000F149E" relation-one-or-many-to-only-one: "\U000F149F" relation-one-or-many-to-zero-or-many: "\U000F14A0" relation-one-or-many-to-zero-or-one: "\U000F14A1" relation-one-to-many: "\U000F14A2" relation-one-to-one: "\U000F14A3" relation-one-to-one-or-many: "\U000F14A4" relation-one-to-only-one: "\U000F14A5" relation-one-to-zero-or-many: "\U000F14A6" relation-one-to-zero-or-one: "\U000F14A7" relation-only-one-to-many: "\U000F14A8" relation-only-one-to-one: "\U000F14A9" relation-only-one-to-one-or-many: "\U000F14AA" relation-only-one-to-only-one: "\U000F14AB" relation-only-one-to-zero-or-many: "\U000F14AC" relation-only-one-to-zero-or-one: "\U000F14AD" relation-zero-or-many-to-many: "\U000F14AE" relation-zero-or-many-to-one: "\U000F14AF" relation-zero-or-many-to-one-or-many: "\U000F14B0" relation-zero-or-many-to-only-one: "\U000F14B1" relation-zero-or-many-to-zero-or-many: "\U000F14B2" relation-zero-or-many-to-zero-or-one: "\U000F14B3" relation-zero-or-one-to-many: "\U000F14B4" relation-zero-or-one-to-one: "\U000F14B5" relation-zero-or-one-to-one-or-many: "\U000F14B6" relation-zero-or-one-to-only-one: "\U000F14B7" relation-zero-or-one-to-zero-or-many: "\U000F14B8" relation-zero-or-one-to-zero-or-one: "\U000F14B9" relative-scale: "\U000F0452" reload: "\U000F0453" reload-alert: "\U000F110B" reminder: "\U000F088C" remote: "\U000F0454" remote-desktop: "\U000F08B9" remote-off: "\U000F0EC4" remote-tv: "\U000F0EC5" remote-tv-off: "\U000F0EC6" rename-box: "\U000F0455" reorder-horizontal: "\U000F0688" reorder-vertical: "\U000F0689" repeat: "\U000F0456" repeat-off: "\U000F0457" repeat-once: "\U000F0458" repeat-variant: "\U000F0547" replay: "\U000F0459" reply: "\U000F045A" reply-all: "\U000F045B" reply-all-outline: "\U000F0F1F" reply-circle: "\U000F11AE" reply-outline: "\U000F0F20" reproduction: "\U000F045C" resistor: "\U000F0B44" resistor-nodes: "\U000F0B45" resize: "\U000F0A68" resize-bottom-right: "\U000F045D" responsive: "\U000F045E" restart: "\U000F0709" restart-alert: "\U000F110C" restart-off: "\U000F0D95" restore: "\U000F099B" restore-alert: "\U000F110D" rewind: "\U000F045F" rewind-10: "\U000F0D2A" rewind-15: "\U000F1946" rewind-30: "\U000F0D96" rewind-45: "\U000F1B13" rewind-5: "\U000F11F9" rewind-60: "\U000F160C" rewind-outline: "\U000F070A" rhombus: "\U000F070B" rhombus-medium: "\U000F0A10" rhombus-medium-outline: "\U000F14DC" rhombus-outline: "\U000F070C" rhombus-split: "\U000F0A11" rhombus-split-outline: "\U000F14DD" ribbon: "\U000F0460" rice: "\U000F07EA" rickshaw: "\U000F15BB" rickshaw-electric: "\U000F15BC" ring: "\U000F07EB" rivet: "\U000F0E60" road: "\U000F0461" road-variant: "\U000F0462" robber: "\U000F1058" robot: "\U000F06A9" robot-angry: "\U000F169D" robot-angry-outline: "\U000F169E" robot-confused: "\U000F169F" robot-confused-outline: "\U000F16A0" robot-dead: "\U000F16A1" robot-dead-outline: "\U000F16A2" robot-excited: "\U000F16A3" robot-excited-outline: "\U000F16A4" robot-happy: "\U000F1719" robot-happy-outline: "\U000F171A" robot-industrial: "\U000F0B46" robot-industrial-outline: "\U000F1A1A" robot-love: "\U000F16A5" robot-love-outline: "\U000F16A6" robot-mower: "\U000F11F7" robot-mower-outline: "\U000F11F3" robot-off: "\U000F16A7" robot-off-outline: "\U000F167B" robot-outline: "\U000F167A" robot-vacuum: "\U000F070D" robot-vacuum-alert: "\U000F1B5D" robot-vacuum-variant: "\U000F0908" robot-vacuum-variant-alert: "\U000F1B5E" rocket: "\U000F0463" rocket-launch: "\U000F14DE" rocket-launch-outline: "\U000F14DF" rocket-outline: "\U000F13AF" rodent: "\U000F1327" roller-shade: "\U000F1A6B" roller-shade-closed: "\U000F1A6C" roller-skate: "\U000F0D2B" roller-skate-off: "\U000F0145" rollerblade: "\U000F0D2C" rollerblade-off: "\U000F002E" rollupjs: "\U000F0BC0" rolodex: "\U000F1AB9" rolodex-outline: "\U000F1ABA" roman-numeral-1: "\U000F1088" roman-numeral-10: "\U000F1091" roman-numeral-2: "\U000F1089" roman-numeral-3: "\U000F108A" roman-numeral-4: "\U000F108B" roman-numeral-5: "\U000F108C" roman-numeral-6: "\U000F108D" roman-numeral-7: "\U000F108E" roman-numeral-8: "\U000F108F" roman-numeral-9: "\U000F1090" room-service: "\U000F088D" room-service-outline: "\U000F0D97" rotate-360: "\U000F1999" rotate-3d: "\U000F0EC7" rotate-3d-variant: "\U000F0464" rotate-left: "\U000F0465" rotate-left-variant: "\U000F0466" rotate-orbit: "\U000F0D98" rotate-right: "\U000F0467" rotate-right-variant: "\U000F0468" rounded-corner: "\U000F0607" router: "\U000F11E2" router-network: "\U000F1087" router-wireless: "\U000F0469" router-wireless-off: "\U000F15A3" router-wireless-settings: "\U000F0A69" routes: "\U000F046A" routes-clock: "\U000F1059" rowing: "\U000F0608" rss: "\U000F046B" rss-box: "\U000F046C" rss-off: "\U000F0F21" rug: "\U000F1475" rugby: "\U000F0D99" ruler: "\U000F046D" ruler-square: "\U000F0CC2" ruler-square-compass: "\U000F0EBE" run: "\U000F070E" run-fast: "\U000F046E" rv-truck: "\U000F11D4" sack: "\U000F0D2E" sack-percent: "\U000F0D2F" safe: "\U000F0A6A" safe-square: "\U000F127C" safe-square-outline: "\U000F127D" safety-goggles: "\U000F0D30" sail-boat: "\U000F0EC8" sail-boat-sink: "\U000F1AEF" sale: "\U000F046F" sale-outline: "\U000F1A06" salesforce: "\U000F088E" sass: "\U000F07EC" satellite: "\U000F0470" satellite-uplink: "\U000F0909" satellite-variant: "\U000F0471" sausage: "\U000F08BA" sausage-off: "\U000F1789" saw-blade: "\U000F0E61" sawtooth-wave: "\U000F147A" saxophone: "\U000F0609" scale: "\U000F0472" scale-balance: "\U000F05D1" scale-bathroom: "\U000F0473" scale-off: "\U000F105A" scale-unbalanced: "\U000F19B8" scan-helper: "\U000F13D8" scanner: "\U000F06AB" scanner-off: "\U000F090A" scatter-plot: "\U000F0EC9" scatter-plot-outline: "\U000F0ECA" scent: "\U000F1958" scent-off: "\U000F1959" school: "\U000F0474" school-outline: "\U000F1180" scissors-cutting: "\U000F0A6B" scooter: "\U000F15BD" scooter-electric: "\U000F15BE" scoreboard: "\U000F127E" scoreboard-outline: "\U000F127F" screen-rotation: "\U000F0475" screen-rotation-lock: "\U000F0478" screw-flat-top: "\U000F0DF3" screw-lag: "\U000F0DF4" screw-machine-flat-top: "\U000F0DF5" screw-machine-round-top: "\U000F0DF6" screw-round-top: "\U000F0DF7" screwdriver: "\U000F0476" script: "\U000F0BC1" script-outline: "\U000F0477" script-text: "\U000F0BC2" script-text-key: "\U000F1725" script-text-key-outline: "\U000F1726" script-text-outline: "\U000F0BC3" script-text-play: "\U000F1727" script-text-play-outline: "\U000F1728" sd: "\U000F0479" seal: "\U000F047A" seal-variant: "\U000F0FD9" search-web: "\U000F070F" seat: "\U000F0CC3" seat-flat: "\U000F047B" seat-flat-angled: "\U000F047C" seat-individual-suite: "\U000F047D" seat-legroom-extra: "\U000F047E" seat-legroom-normal: "\U000F047F" seat-legroom-reduced: "\U000F0480" seat-outline: "\U000F0CC4" seat-passenger: "\U000F1249" seat-recline-extra: "\U000F0481" seat-recline-normal: "\U000F0482" seatbelt: "\U000F0CC5" security: "\U000F0483" security-network: "\U000F0484" seed: "\U000F0E62" seed-off: "\U000F13FD" seed-off-outline: "\U000F13FE" seed-outline: "\U000F0E63" seed-plus: "\U000F1A6D" seed-plus-outline: "\U000F1A6E" seesaw: "\U000F15A4" segment: "\U000F0ECB" select: "\U000F0485" select-all: "\U000F0486" select-arrow-down: "\U000F1B59" select-arrow-up: "\U000F1B58" select-color: "\U000F0D31" select-compare: "\U000F0AD9" select-drag: "\U000F0A6C" select-group: "\U000F0F82" select-inverse: "\U000F0487" select-marker: "\U000F1280" select-multiple: "\U000F1281" select-multiple-marker: "\U000F1282" select-off: "\U000F0488" select-place: "\U000F0FDA" select-remove: "\U000F17C1" select-search: "\U000F1204" selection: "\U000F0489" selection-drag: "\U000F0A6D" selection-ellipse: "\U000F0D32" selection-ellipse-arrow-inside: "\U000F0F22" selection-ellipse-remove: "\U000F17C2" selection-marker: "\U000F1283" selection-multiple: "\U000F1285" selection-multiple-marker: "\U000F1284" selection-off: "\U000F0777" selection-remove: "\U000F17C3" selection-search: "\U000F1205" semantic-web: "\U000F1316" send: "\U000F048A" send-check: "\U000F1161" send-check-outline: "\U000F1162" send-circle: "\U000F0DF8" send-circle-outline: "\U000F0DF9" send-clock: "\U000F1163" send-clock-outline: "\U000F1164" send-lock: "\U000F07ED" send-lock-outline: "\U000F1166" send-outline: "\U000F1165" serial-port: "\U000F065C" server: "\U000F048B" server-minus: "\U000F048C" server-network: "\U000F048D" server-network-off: "\U000F048E" server-off: "\U000F048F" server-plus: "\U000F0490" server-remove: "\U000F0491" server-security: "\U000F0492" set-all: "\U000F0778" set-center: "\U000F0779" set-center-right: "\U000F077A" set-left: "\U000F077B" set-left-center: "\U000F077C" set-left-right: "\U000F077D" set-merge: "\U000F14E0" set-none: "\U000F077E" set-right: "\U000F077F" set-split: "\U000F14E1" set-square: "\U000F145D" set-top-box: "\U000F099F" settings-helper: "\U000F0A6E" shaker: "\U000F110E" shaker-outline: "\U000F110F" shape: "\U000F0831" shape-circle-plus: "\U000F065D" shape-outline: "\U000F0832" shape-oval-plus: "\U000F11FA" shape-plus: "\U000F0495" shape-polygon-plus: "\U000F065E" shape-rectangle-plus: "\U000F065F" shape-square-plus: "\U000F0660" shape-square-rounded-plus: "\U000F14FA" share: "\U000F0496" share-all: "\U000F11F4" share-all-outline: "\U000F11F5" share-circle: "\U000F11AD" share-off: "\U000F0F23" share-off-outline: "\U000F0F24" share-outline: "\U000F0932" share-variant: "\U000F0497" share-variant-outline: "\U000F1514" shark: "\U000F18BA" shark-fin: "\U000F1673" shark-fin-outline: "\U000F1674" shark-off: "\U000F18BB" sheep: "\U000F0CC6" shield: "\U000F0498" shield-account: "\U000F088F" shield-account-outline: "\U000F0A12" shield-account-variant: "\U000F15A7" shield-account-variant-outline: "\U000F15A8" shield-airplane: "\U000F06BB" shield-airplane-outline: "\U000F0CC7" shield-alert: "\U000F0ECC" shield-alert-outline: "\U000F0ECD" shield-bug: "\U000F13DA" shield-bug-outline: "\U000F13DB" shield-car: "\U000F0F83" shield-check: "\U000F0565" shield-check-outline: "\U000F0CC8" shield-cross: "\U000F0CC9" shield-cross-outline: "\U000F0CCA" shield-crown: "\U000F18BC" shield-crown-outline: "\U000F18BD" shield-edit: "\U000F11A0" shield-edit-outline: "\U000F11A1" shield-half: "\U000F1360" shield-half-full: "\U000F0780" shield-home: "\U000F068A" shield-home-outline: "\U000F0CCB" shield-key: "\U000F0BC4" shield-key-outline: "\U000F0BC5" shield-link-variant: "\U000F0D33" shield-link-variant-outline: "\U000F0D34" shield-lock: "\U000F099D" shield-lock-open: "\U000F199A" shield-lock-open-outline: "\U000F199B" shield-lock-outline: "\U000F0CCC" shield-moon: "\U000F1828" shield-moon-outline: "\U000F1829" shield-off: "\U000F099E" shield-off-outline: "\U000F099C" shield-outline: "\U000F0499" shield-plus: "\U000F0ADA" shield-plus-outline: "\U000F0ADB" shield-refresh: "\U000F00AA" shield-refresh-outline: "\U000F01E0" shield-remove: "\U000F0ADC" shield-remove-outline: "\U000F0ADD" shield-search: "\U000F0D9A" shield-star: "\U000F113B" shield-star-outline: "\U000F113C" shield-sun: "\U000F105D" shield-sun-outline: "\U000F105E" shield-sword: "\U000F18BE" shield-sword-outline: "\U000F18BF" shield-sync: "\U000F11A2" shield-sync-outline: "\U000F11A3" shimmer: "\U000F1545" ship-wheel: "\U000F0833" shipping-pallet: "\U000F184E" shoe-ballet: "\U000F15CA" shoe-cleat: "\U000F15C7" shoe-formal: "\U000F0B47" shoe-heel: "\U000F0B48" shoe-print: "\U000F0DFA" shoe-sneaker: "\U000F15C8" shopping: "\U000F049A" shopping-music: "\U000F049B" shopping-outline: "\U000F11D5" shopping-search: "\U000F0F84" shopping-search-outline: "\U000F1A6F" shore: "\U000F14F9" shovel: "\U000F0710" shovel-off: "\U000F0711" shower: "\U000F09A0" shower-head: "\U000F09A1" shredder: "\U000F049C" shuffle: "\U000F049D" shuffle-disabled: "\U000F049E" shuffle-variant: "\U000F049F" shuriken: "\U000F137F" sickle: "\U000F18C0" sigma: "\U000F04A0" sigma-lower: "\U000F062B" sign-caution: "\U000F04A1" sign-direction: "\U000F0781" sign-direction-minus: "\U000F1000" sign-direction-plus: "\U000F0FDC" sign-direction-remove: "\U000F0FDD" sign-language: "\U000F1B4D" sign-language-outline: "\U000F1B4E" sign-pole: "\U000F14F8" sign-real-estate: "\U000F1118" sign-text: "\U000F0782" sign-yield: "\U000F1BAF" signal: "\U000F04A2" signal-2g: "\U000F0712" signal-3g: "\U000F0713" signal-4g: "\U000F0714" signal-5g: "\U000F0A6F" signal-cellular-1: "\U000F08BC" signal-cellular-2: "\U000F08BD" signal-cellular-3: "\U000F08BE" signal-cellular-outline: "\U000F08BF" signal-distance-variant: "\U000F0E64" signal-hspa: "\U000F0715" signal-hspa-plus: "\U000F0716" signal-off: "\U000F0783" signal-variant: "\U000F060A" signature: "\U000F0DFB" signature-freehand: "\U000F0DFC" signature-image: "\U000F0DFD" signature-text: "\U000F0DFE" silo: "\U000F1B9F" silo-outline: "\U000F0B49" silverware: "\U000F04A3" silverware-clean: "\U000F0FDE" silverware-fork: "\U000F04A4" silverware-fork-knife: "\U000F0A70" silverware-spoon: "\U000F04A5" silverware-variant: "\U000F04A6" sim: "\U000F04A7" sim-alert: "\U000F04A8" sim-alert-outline: "\U000F15D3" sim-off: "\U000F04A9" sim-off-outline: "\U000F15D4" sim-outline: "\U000F15D5" simple-icons: "\U000F131D" sina-weibo: "\U000F0ADF" sine-wave: "\U000F095B" sitemap: "\U000F04AA" sitemap-outline: "\U000F199C" size-l: "\U000F13A6" size-m: "\U000F13A5" size-s: "\U000F13A4" size-xl: "\U000F13A7" size-xs: "\U000F13A3" size-xxl: "\U000F13A8" size-xxs: "\U000F13A2" size-xxxl: "\U000F13A9" skate: "\U000F0D35" skate-off: "\U000F0699" skateboard: "\U000F14C2" skateboarding: "\U000F0501" skew-less: "\U000F0D36" skew-more: "\U000F0D37" ski: "\U000F1304" ski-cross-country: "\U000F1305" ski-water: "\U000F1306" skip-backward: "\U000F04AB" skip-backward-outline: "\U000F0F25" skip-forward: "\U000F04AC" skip-forward-outline: "\U000F0F26" skip-next: "\U000F04AD" skip-next-circle: "\U000F0661" skip-next-circle-outline: "\U000F0662" skip-next-outline: "\U000F0F27" skip-previous: "\U000F04AE" skip-previous-circle: "\U000F0663" skip-previous-circle-outline: "\U000F0664" skip-previous-outline: "\U000F0F28" skull: "\U000F068C" skull-crossbones: "\U000F0BC6" skull-crossbones-outline: "\U000F0BC7" skull-outline: "\U000F0BC8" skull-scan: "\U000F14C7" skull-scan-outline: "\U000F14C8" skype: "\U000F04AF" skype-business: "\U000F04B0" slack: "\U000F04B1" slash-forward: "\U000F0FDF" slash-forward-box: "\U000F0FE0" sledding: "\U000F041B" sleep: "\U000F04B2" sleep-off: "\U000F04B3" slide: "\U000F15A5" slope-downhill: "\U000F0DFF" slope-uphill: "\U000F0E00" slot-machine: "\U000F1114" slot-machine-outline: "\U000F1115" smart-card: "\U000F10BD" smart-card-off: "\U000F18F7" smart-card-off-outline: "\U000F18F8" smart-card-outline: "\U000F10BE" smart-card-reader: "\U000F10BF" smart-card-reader-outline: "\U000F10C0" smog: "\U000F0A71" smoke: "\U000F1799" smoke-detector: "\U000F0392" smoke-detector-alert: "\U000F192E" smoke-detector-alert-outline: "\U000F192F" smoke-detector-off: "\U000F1809" smoke-detector-off-outline: "\U000F180A" smoke-detector-outline: "\U000F1808" smoke-detector-variant: "\U000F180B" smoke-detector-variant-alert: "\U000F1930" smoke-detector-variant-off: "\U000F180C" smoking: "\U000F04B4" smoking-off: "\U000F04B5" smoking-pipe: "\U000F140D" smoking-pipe-off: "\U000F1428" snail: "\U000F1677" snake: "\U000F150E" snapchat: "\U000F04B6" snowboard: "\U000F1307" snowflake: "\U000F0717" snowflake-alert: "\U000F0F29" snowflake-check: "\U000F1A70" snowflake-melt: "\U000F12CB" snowflake-off: "\U000F14E3" snowflake-thermometer: "\U000F1A71" snowflake-variant: "\U000F0F2A" snowman: "\U000F04B7" snowmobile: "\U000F06DD" snowshoeing: "\U000F1A72" soccer: "\U000F04B8" soccer-field: "\U000F0834" social-distance-2-meters: "\U000F1579" social-distance-6-feet: "\U000F157A" sofa: "\U000F04B9" sofa-outline: "\U000F156D" sofa-single: "\U000F156E" sofa-single-outline: "\U000F156F" solar-panel: "\U000F0D9B" solar-panel-large: "\U000F0D9C" solar-power: "\U000F0A72" solar-power-variant: "\U000F1A73" solar-power-variant-outline: "\U000F1A74" soldering-iron: "\U000F1092" solid: "\U000F068D" sony-playstation: "\U000F0414" sort: "\U000F04BA" sort-alphabetical-ascending: "\U000F05BD" sort-alphabetical-ascending-variant: "\U000F1148" sort-alphabetical-descending: "\U000F05BF" sort-alphabetical-descending-variant: "\U000F1149" sort-alphabetical-variant: "\U000F04BB" sort-ascending: "\U000F04BC" sort-bool-ascending: "\U000F1385" sort-bool-ascending-variant: "\U000F1386" sort-bool-descending: "\U000F1387" sort-bool-descending-variant: "\U000F1388" sort-calendar-ascending: "\U000F1547" sort-calendar-descending: "\U000F1548" sort-clock-ascending: "\U000F1549" sort-clock-ascending-outline: "\U000F154A" sort-clock-descending: "\U000F154B" sort-clock-descending-outline: "\U000F154C" sort-descending: "\U000F04BD" sort-numeric-ascending: "\U000F1389" sort-numeric-ascending-variant: "\U000F090D" sort-numeric-descending: "\U000F138A" sort-numeric-descending-variant: "\U000F0AD2" sort-numeric-variant: "\U000F04BE" sort-reverse-variant: "\U000F033C" sort-variant: "\U000F04BF" sort-variant-lock: "\U000F0CCD" sort-variant-lock-open: "\U000F0CCE" sort-variant-off: "\U000F1ABB" sort-variant-remove: "\U000F1147" soundbar: "\U000F17DB" soundcloud: "\U000F04C0" source-branch: "\U000F062C" source-branch-check: "\U000F14CF" source-branch-minus: "\U000F14CB" source-branch-plus: "\U000F14CA" source-branch-refresh: "\U000F14CD" source-branch-remove: "\U000F14CC" source-branch-sync: "\U000F14CE" source-commit: "\U000F0718" source-commit-end: "\U000F0719" source-commit-end-local: "\U000F071A" source-commit-local: "\U000F071B" source-commit-next-local: "\U000F071C" source-commit-start: "\U000F071D" source-commit-start-next-local: "\U000F071E" source-fork: "\U000F04C1" source-merge: "\U000F062D" source-pull: "\U000F04C2" source-repository: "\U000F0CCF" source-repository-multiple: "\U000F0CD0" soy-sauce: "\U000F07EE" soy-sauce-off: "\U000F13FC" spa: "\U000F0CD1" spa-outline: "\U000F0CD2" space-invaders: "\U000F0BC9" space-station: "\U000F1383" spade: "\U000F0E65" speaker: "\U000F04C3" speaker-bluetooth: "\U000F09A2" speaker-message: "\U000F1B11" speaker-multiple: "\U000F0D38" speaker-off: "\U000F04C4" speaker-pause: "\U000F1B73" speaker-play: "\U000F1B72" speaker-stop: "\U000F1B74" speaker-wireless: "\U000F071F" spear: "\U000F1845" speedometer: "\U000F04C5" speedometer-medium: "\U000F0F85" speedometer-slow: "\U000F0F86" spellcheck: "\U000F04C6" sphere: "\U000F1954" sphere-off: "\U000F1955" spider: "\U000F11EA" spider-thread: "\U000F11EB" spider-web: "\U000F0BCA" spirit-level: "\U000F14F1" spoon-sugar: "\U000F1429" spotify: "\U000F04C7" spotlight: "\U000F04C8" spotlight-beam: "\U000F04C9" spray: "\U000F0665" spray-bottle: "\U000F0AE0" sprinkler: "\U000F105F" sprinkler-fire: "\U000F199D" sprinkler-variant: "\U000F1060" sprout: "\U000F0E66" sprout-outline: "\U000F0E67" square: "\U000F0764" square-circle: "\U000F1500" square-edit-outline: "\U000F090C" square-medium: "\U000F0A13" square-medium-outline: "\U000F0A14" square-off: "\U000F12EE" square-off-outline: "\U000F12EF" square-opacity: "\U000F1854" square-outline: "\U000F0763" square-root: "\U000F0784" square-root-box: "\U000F09A3" square-rounded: "\U000F14FB" square-rounded-badge: "\U000F1A07" square-rounded-badge-outline: "\U000F1A08" square-rounded-outline: "\U000F14FC" square-small: "\U000F0A15" square-wave: "\U000F147B" squeegee: "\U000F0AE1" ssh: "\U000F08C0" stack-exchange: "\U000F060B" stack-overflow: "\U000F04CC" stackpath: "\U000F0359" stadium: "\U000F0FF9" stadium-outline: "\U000F1B03" stadium-variant: "\U000F0720" stairs: "\U000F04CD" stairs-box: "\U000F139E" stairs-down: "\U000F12BE" stairs-up: "\U000F12BD" stamper: "\U000F0D39" standard-definition: "\U000F07EF" star: "\U000F04CE" star-box: "\U000F0A73" star-box-multiple: "\U000F1286" star-box-multiple-outline: "\U000F1287" star-box-outline: "\U000F0A74" star-check: "\U000F1566" star-check-outline: "\U000F156A" star-circle: "\U000F04CF" star-circle-outline: "\U000F09A4" star-cog: "\U000F1668" star-cog-outline: "\U000F1669" star-crescent: "\U000F0979" star-david: "\U000F097A" star-face: "\U000F09A5" star-four-points: "\U000F0AE2" star-four-points-outline: "\U000F0AE3" star-half: "\U000F0246" star-half-full: "\U000F04D0" star-minus: "\U000F1564" star-minus-outline: "\U000F1568" star-off: "\U000F04D1" star-off-outline: "\U000F155B" star-outline: "\U000F04D2" star-plus: "\U000F1563" star-plus-outline: "\U000F1567" star-remove: "\U000F1565" star-remove-outline: "\U000F1569" star-settings: "\U000F166A" star-settings-outline: "\U000F166B" star-shooting: "\U000F1741" star-shooting-outline: "\U000F1742" star-three-points: "\U000F0AE4" star-three-points-outline: "\U000F0AE5" state-machine: "\U000F11EF" steam: "\U000F04D3" steering: "\U000F04D4" steering-off: "\U000F090E" step-backward: "\U000F04D5" step-backward-2: "\U000F04D6" step-forward: "\U000F04D7" step-forward-2: "\U000F04D8" stethoscope: "\U000F04D9" sticker: "\U000F1364" sticker-alert: "\U000F1365" sticker-alert-outline: "\U000F1366" sticker-check: "\U000F1367" sticker-check-outline: "\U000F1368" sticker-circle-outline: "\U000F05D0" sticker-emoji: "\U000F0785" sticker-minus: "\U000F1369" sticker-minus-outline: "\U000F136A" sticker-outline: "\U000F136B" sticker-plus: "\U000F136C" sticker-plus-outline: "\U000F136D" sticker-remove: "\U000F136E" sticker-remove-outline: "\U000F136F" sticker-text: "\U000F178E" sticker-text-outline: "\U000F178F" stocking: "\U000F04DA" stomach: "\U000F1093" stool: "\U000F195D" stool-outline: "\U000F195E" stop: "\U000F04DB" stop-circle: "\U000F0666" stop-circle-outline: "\U000F0667" storage-tank: "\U000F1A75" storage-tank-outline: "\U000F1A76" store: "\U000F04DC" store-24-hour: "\U000F04DD" store-alert: "\U000F18C1" store-alert-outline: "\U000F18C2" store-check: "\U000F18C3" store-check-outline: "\U000F18C4" store-clock: "\U000F18C5" store-clock-outline: "\U000F18C6" store-cog: "\U000F18C7" store-cog-outline: "\U000F18C8" store-edit: "\U000F18C9" store-edit-outline: "\U000F18CA" store-marker: "\U000F18CB" store-marker-outline: "\U000F18CC" store-minus: "\U000F165E" store-minus-outline: "\U000F18CD" store-off: "\U000F18CE" store-off-outline: "\U000F18CF" store-outline: "\U000F1361" store-plus: "\U000F165F" store-plus-outline: "\U000F18D0" store-remove: "\U000F1660" store-remove-outline: "\U000F18D1" store-search: "\U000F18D2" store-search-outline: "\U000F18D3" store-settings: "\U000F18D4" store-settings-outline: "\U000F18D5" storefront: "\U000F07C7" storefront-check: "\U000F1B7D" storefront-check-outline: "\U000F1B7E" storefront-edit: "\U000F1B7F" storefront-edit-outline: "\U000F1B80" storefront-minus: "\U000F1B83" storefront-minus-outline: "\U000F1B84" storefront-outline: "\U000F10C1" storefront-plus: "\U000F1B81" storefront-plus-outline: "\U000F1B82" storefront-remove: "\U000F1B85" storefront-remove-outline: "\U000F1B86" stove: "\U000F04DE" strategy: "\U000F11D6" stretch-to-page: "\U000F0F2B" stretch-to-page-outline: "\U000F0F2C" string-lights: "\U000F12BA" string-lights-off: "\U000F12BB" subdirectory-arrow-left: "\U000F060C" subdirectory-arrow-right: "\U000F060D" submarine: "\U000F156C" subtitles: "\U000F0A16" subtitles-outline: "\U000F0A17" subway: "\U000F06AC" subway-alert-variant: "\U000F0D9D" subway-variant: "\U000F04DF" summit: "\U000F0786" sun-angle: "\U000F1B27" sun-angle-outline: "\U000F1B28" sun-clock: "\U000F1A77" sun-clock-outline: "\U000F1A78" sun-compass: "\U000F19A5" sun-snowflake: "\U000F1796" sun-snowflake-variant: "\U000F1A79" sun-thermometer: "\U000F18D6" sun-thermometer-outline: "\U000F18D7" sun-wireless: "\U000F17FE" sun-wireless-outline: "\U000F17FF" sunglasses: "\U000F04E0" surfing: "\U000F1746" surround-sound: "\U000F05C5" surround-sound-2-0: "\U000F07F0" surround-sound-2-1: "\U000F1729" surround-sound-3-1: "\U000F07F1" surround-sound-5-1: "\U000F07F2" surround-sound-5-1-2: "\U000F172A" surround-sound-7-1: "\U000F07F3" svg: "\U000F0721" swap-horizontal: "\U000F04E1" swap-horizontal-bold: "\U000F0BCD" swap-horizontal-circle: "\U000F0FE1" swap-horizontal-circle-outline: "\U000F0FE2" swap-horizontal-variant: "\U000F08C1" swap-vertical: "\U000F04E2" swap-vertical-bold: "\U000F0BCE" swap-vertical-circle: "\U000F0FE3" swap-vertical-circle-outline: "\U000F0FE4" swap-vertical-variant: "\U000F08C2" swim: "\U000F04E3" switch: "\U000F04E4" sword: "\U000F04E5" sword-cross: "\U000F0787" syllabary-hangul: "\U000F1333" syllabary-hiragana: "\U000F1334" syllabary-katakana: "\U000F1335" syllabary-katakana-halfwidth: "\U000F1336" symbol: "\U000F1501" symfony: "\U000F0AE6" synagogue: "\U000F1B04" synagogue-outline: "\U000F1B05" sync: "\U000F04E6" sync-alert: "\U000F04E7" sync-circle: "\U000F1378" sync-off: "\U000F04E8" tab: "\U000F04E9" tab-minus: "\U000F0B4B" tab-plus: "\U000F075C" tab-remove: "\U000F0B4C" tab-search: "\U000F199E" tab-unselected: "\U000F04EA" table: "\U000F04EB" table-account: "\U000F13B9" table-alert: "\U000F13BA" table-arrow-down: "\U000F13BB" table-arrow-left: "\U000F13BC" table-arrow-right: "\U000F13BD" table-arrow-up: "\U000F13BE" table-border: "\U000F0A18" table-cancel: "\U000F13BF" table-chair: "\U000F1061" table-check: "\U000F13C0" table-clock: "\U000F13C1" table-cog: "\U000F13C2" table-column: "\U000F0835" table-column-plus-after: "\U000F04EC" table-column-plus-before: "\U000F04ED" table-column-remove: "\U000F04EE" table-column-width: "\U000F04EF" table-edit: "\U000F04F0" table-eye: "\U000F1094" table-eye-off: "\U000F13C3" table-filter: "\U000F1B8C" table-furniture: "\U000F05BC" table-headers-eye: "\U000F121D" table-headers-eye-off: "\U000F121E" table-heart: "\U000F13C4" table-key: "\U000F13C5" table-large: "\U000F04F1" table-large-plus: "\U000F0F87" table-large-remove: "\U000F0F88" table-lock: "\U000F13C6" table-merge-cells: "\U000F09A6" table-minus: "\U000F13C7" table-multiple: "\U000F13C8" table-network: "\U000F13C9" table-of-contents: "\U000F0836" table-off: "\U000F13CA" table-picnic: "\U000F1743" table-pivot: "\U000F183C" table-plus: "\U000F0A75" table-question: "\U000F1B21" table-refresh: "\U000F13A0" table-remove: "\U000F0A76" table-row: "\U000F0837" table-row-height: "\U000F04F2" table-row-plus-after: "\U000F04F3" table-row-plus-before: "\U000F04F4" table-row-remove: "\U000F04F5" table-search: "\U000F090F" table-settings: "\U000F0838" table-split-cell: "\U000F142A" table-star: "\U000F13CB" table-sync: "\U000F13A1" table-tennis: "\U000F0E68" tablet: "\U000F04F6" tablet-cellphone: "\U000F09A7" tablet-dashboard: "\U000F0ECE" taco: "\U000F0762" tag: "\U000F04F9" tag-arrow-down: "\U000F172B" tag-arrow-down-outline: "\U000F172C" tag-arrow-left: "\U000F172D" tag-arrow-left-outline: "\U000F172E" tag-arrow-right: "\U000F172F" tag-arrow-right-outline: "\U000F1730" tag-arrow-up: "\U000F1731" tag-arrow-up-outline: "\U000F1732" tag-check: "\U000F1A7A" tag-check-outline: "\U000F1A7B" tag-faces: "\U000F04FA" tag-heart: "\U000F068B" tag-heart-outline: "\U000F0BCF" tag-minus: "\U000F0910" tag-minus-outline: "\U000F121F" tag-multiple: "\U000F04FB" tag-multiple-outline: "\U000F12F7" tag-off: "\U000F1220" tag-off-outline: "\U000F1221" tag-outline: "\U000F04FC" tag-plus: "\U000F0722" tag-plus-outline: "\U000F1222" tag-remove: "\U000F0723" tag-remove-outline: "\U000F1223" tag-search: "\U000F1907" tag-search-outline: "\U000F1908" tag-text: "\U000F1224" tag-text-outline: "\U000F04FD" tailwind: "\U000F13FF" tally-mark-1: "\U000F1ABC" tally-mark-2: "\U000F1ABD" tally-mark-3: "\U000F1ABE" tally-mark-4: "\U000F1ABF" tally-mark-5: "\U000F1AC0" tangram: "\U000F04F8" tank: "\U000F0D3A" tanker-truck: "\U000F0FE5" tape-drive: "\U000F16DF" tape-measure: "\U000F0B4D" target: "\U000F04FE" target-account: "\U000F0BD0" target-variant: "\U000F0A77" taxi: "\U000F04FF" tea: "\U000F0D9E" tea-outline: "\U000F0D9F" teamviewer: "\U000F0500" teddy-bear: "\U000F18FB" telescope: "\U000F0B4E" television: "\U000F0502" television-ambient-light: "\U000F1356" television-box: "\U000F0839" television-classic: "\U000F07F4" television-classic-off: "\U000F083A" television-guide: "\U000F0503" television-off: "\U000F083B" television-pause: "\U000F0F89" television-play: "\U000F0ECF" television-shimmer: "\U000F1110" television-speaker: "\U000F1B1B" television-speaker-off: "\U000F1B1C" television-stop: "\U000F0F8A" temperature-celsius: "\U000F0504" temperature-fahrenheit: "\U000F0505" temperature-kelvin: "\U000F0506" temple-buddhist: "\U000F1B06" temple-buddhist-outline: "\U000F1B07" temple-hindu: "\U000F1B08" temple-hindu-outline: "\U000F1B09" tennis: "\U000F0DA0" tennis-ball: "\U000F0507" tent: "\U000F0508" terraform: "\U000F1062" terrain: "\U000F0509" test-tube: "\U000F0668" test-tube-empty: "\U000F0911" test-tube-off: "\U000F0912" text: "\U000F09A8" text-account: "\U000F1570" text-box: "\U000F021A" text-box-check: "\U000F0EA6" text-box-check-outline: "\U000F0EA7" text-box-edit: "\U000F1A7C" text-box-edit-outline: "\U000F1A7D" text-box-minus: "\U000F0EA8" text-box-minus-outline: "\U000F0EA9" text-box-multiple: "\U000F0AB7" text-box-multiple-outline: "\U000F0AB8" text-box-outline: "\U000F09ED" text-box-plus: "\U000F0EAA" text-box-plus-outline: "\U000F0EAB" text-box-remove: "\U000F0EAC" text-box-remove-outline: "\U000F0EAD" text-box-search: "\U000F0EAE" text-box-search-outline: "\U000F0EAF" text-long: "\U000F09AA" text-recognition: "\U000F113D" text-search: "\U000F13B8" text-search-variant: "\U000F1A7E" text-shadow: "\U000F0669" text-short: "\U000F09A9" texture: "\U000F050C" texture-box: "\U000F0FE6" theater: "\U000F050D" theme-light-dark: "\U000F050E" thermometer: "\U000F050F" thermometer-alert: "\U000F0E01" thermometer-auto: "\U000F1B0F" thermometer-bluetooth: "\U000F1895" thermometer-check: "\U000F1A7F" thermometer-chevron-down: "\U000F0E02" thermometer-chevron-up: "\U000F0E03" thermometer-high: "\U000F10C2" thermometer-lines: "\U000F0510" thermometer-low: "\U000F10C3" thermometer-minus: "\U000F0E04" thermometer-off: "\U000F1531" thermometer-plus: "\U000F0E05" thermometer-probe: "\U000F1B2B" thermometer-probe-off: "\U000F1B2C" thermometer-water: "\U000F1A80" thermostat: "\U000F0393" thermostat-auto: "\U000F1B17" thermostat-box: "\U000F0891" thermostat-box-auto: "\U000F1B18" thought-bubble: "\U000F07F6" thought-bubble-outline: "\U000F07F7" thumb-down: "\U000F0511" thumb-down-outline: "\U000F0512" thumb-up: "\U000F0513" thumb-up-outline: "\U000F0514" thumbs-up-down: "\U000F0515" thumbs-up-down-outline: "\U000F1914" ticket: "\U000F0516" ticket-account: "\U000F0517" ticket-confirmation: "\U000F0518" ticket-confirmation-outline: "\U000F13AA" ticket-outline: "\U000F0913" ticket-percent: "\U000F0724" ticket-percent-outline: "\U000F142B" tie: "\U000F0519" tilde: "\U000F0725" tilde-off: "\U000F18F3" timelapse: "\U000F051A" timeline: "\U000F0BD1" timeline-alert: "\U000F0F95" timeline-alert-outline: "\U000F0F98" timeline-check: "\U000F1532" timeline-check-outline: "\U000F1533" timeline-clock: "\U000F11FB" timeline-clock-outline: "\U000F11FC" timeline-minus: "\U000F1534" timeline-minus-outline: "\U000F1535" timeline-outline: "\U000F0BD2" timeline-plus: "\U000F0F96" timeline-plus-outline: "\U000F0F97" timeline-question: "\U000F0F99" timeline-question-outline: "\U000F0F9A" timeline-remove: "\U000F1536" timeline-remove-outline: "\U000F1537" timeline-text: "\U000F0BD3" timeline-text-outline: "\U000F0BD4" timer: "\U000F13AB" timer-10: "\U000F051C" timer-3: "\U000F051D" timer-alert: "\U000F1ACC" timer-alert-outline: "\U000F1ACD" timer-cancel: "\U000F1ACE" timer-cancel-outline: "\U000F1ACF" timer-check: "\U000F1AD0" timer-check-outline: "\U000F1AD1" timer-cog: "\U000F1925" timer-cog-outline: "\U000F1926" timer-edit: "\U000F1AD2" timer-edit-outline: "\U000F1AD3" timer-lock: "\U000F1AD4" timer-lock-open: "\U000F1AD5" timer-lock-open-outline: "\U000F1AD6" timer-lock-outline: "\U000F1AD7" timer-marker: "\U000F1AD8" timer-marker-outline: "\U000F1AD9" timer-minus: "\U000F1ADA" timer-minus-outline: "\U000F1ADB" timer-music: "\U000F1ADC" timer-music-outline: "\U000F1ADD" timer-off: "\U000F13AC" timer-off-outline: "\U000F051E" timer-outline: "\U000F051B" timer-pause: "\U000F1ADE" timer-pause-outline: "\U000F1ADF" timer-play: "\U000F1AE0" timer-play-outline: "\U000F1AE1" timer-plus: "\U000F1AE2" timer-plus-outline: "\U000F1AE3" timer-refresh: "\U000F1AE4" timer-refresh-outline: "\U000F1AE5" timer-remove: "\U000F1AE6" timer-remove-outline: "\U000F1AE7" timer-sand: "\U000F051F" timer-sand-complete: "\U000F199F" timer-sand-empty: "\U000F06AD" timer-sand-full: "\U000F078C" timer-sand-paused: "\U000F19A0" timer-settings: "\U000F1923" timer-settings-outline: "\U000F1924" timer-star: "\U000F1AE8" timer-star-outline: "\U000F1AE9" timer-stop: "\U000F1AEA" timer-stop-outline: "\U000F1AEB" timer-sync: "\U000F1AEC" timer-sync-outline: "\U000F1AED" timetable: "\U000F0520" tire: "\U000F1896" toaster: "\U000F1063" toaster-off: "\U000F11B7" toaster-oven: "\U000F0CD3" toggle-switch: "\U000F0521" toggle-switch-off: "\U000F0522" toggle-switch-off-outline: "\U000F0A19" toggle-switch-outline: "\U000F0A1A" toggle-switch-variant: "\U000F1A25" toggle-switch-variant-off: "\U000F1A26" toilet: "\U000F09AB" toolbox: "\U000F09AC" toolbox-outline: "\U000F09AD" tools: "\U000F1064" tooltip: "\U000F0523" tooltip-account: "\U000F000C" tooltip-cellphone: "\U000F183B" tooltip-check: "\U000F155C" tooltip-check-outline: "\U000F155D" tooltip-edit: "\U000F0524" tooltip-edit-outline: "\U000F12C5" tooltip-image: "\U000F0525" tooltip-image-outline: "\U000F0BD5" tooltip-minus: "\U000F155E" tooltip-minus-outline: "\U000F155F" tooltip-outline: "\U000F0526" tooltip-plus: "\U000F0BD6" tooltip-plus-outline: "\U000F0527" tooltip-remove: "\U000F1560" tooltip-remove-outline: "\U000F1561" tooltip-text: "\U000F0528" tooltip-text-outline: "\U000F0BD7" tooth: "\U000F08C3" tooth-outline: "\U000F0529" toothbrush: "\U000F1129" toothbrush-electric: "\U000F112C" toothbrush-paste: "\U000F112A" torch: "\U000F1606" tortoise: "\U000F0D3B" toslink: "\U000F12B8" tournament: "\U000F09AE" tow-truck: "\U000F083C" tower-beach: "\U000F0681" tower-fire: "\U000F0682" town-hall: "\U000F1875" toy-brick: "\U000F1288" toy-brick-marker: "\U000F1289" toy-brick-marker-outline: "\U000F128A" toy-brick-minus: "\U000F128B" toy-brick-minus-outline: "\U000F128C" toy-brick-outline: "\U000F128D" toy-brick-plus: "\U000F128E" toy-brick-plus-outline: "\U000F128F" toy-brick-remove: "\U000F1290" toy-brick-remove-outline: "\U000F1291" toy-brick-search: "\U000F1292" toy-brick-search-outline: "\U000F1293" track-light: "\U000F0914" track-light-off: "\U000F1B01" trackpad: "\U000F07F8" trackpad-lock: "\U000F0933" tractor: "\U000F0892" tractor-variant: "\U000F14C4" trademark: "\U000F0A78" traffic-cone: "\U000F137C" traffic-light: "\U000F052B" traffic-light-outline: "\U000F182A" train: "\U000F052C" train-car: "\U000F0BD8" train-car-autorack: "\U000F1B2D" train-car-box: "\U000F1B2E" train-car-box-full: "\U000F1B2F" train-car-box-open: "\U000F1B30" train-car-caboose: "\U000F1B31" train-car-centerbeam: "\U000F1B32" train-car-centerbeam-full: "\U000F1B33" train-car-container: "\U000F1B34" train-car-flatbed: "\U000F1B35" train-car-flatbed-car: "\U000F1B36" train-car-flatbed-tank: "\U000F1B37" train-car-gondola: "\U000F1B38" train-car-gondola-full: "\U000F1B39" train-car-hopper: "\U000F1B3A" train-car-hopper-covered: "\U000F1B3B" train-car-hopper-full: "\U000F1B3C" train-car-intermodal: "\U000F1B3D" train-car-passenger: "\U000F1733" train-car-passenger-door: "\U000F1734" train-car-passenger-door-open: "\U000F1735" train-car-passenger-variant: "\U000F1736" train-car-tank: "\U000F1B3E" train-variant: "\U000F08C4" tram: "\U000F052D" tram-side: "\U000F0FE7" transcribe: "\U000F052E" transcribe-close: "\U000F052F" transfer: "\U000F1065" transfer-down: "\U000F0DA1" transfer-left: "\U000F0DA2" transfer-right: "\U000F0530" transfer-up: "\U000F0DA3" transit-connection: "\U000F0D3C" transit-connection-horizontal: "\U000F1546" transit-connection-variant: "\U000F0D3D" transit-detour: "\U000F0F8B" transit-skip: "\U000F1515" transit-transfer: "\U000F06AE" transition: "\U000F0915" transition-masked: "\U000F0916" translate: "\U000F05CA" translate-off: "\U000F0E06" translate-variant: "\U000F1B99" transmission-tower: "\U000F0D3E" transmission-tower-export: "\U000F192C" transmission-tower-import: "\U000F192D" transmission-tower-off: "\U000F19DD" trash-can: "\U000F0A79" trash-can-outline: "\U000F0A7A" tray: "\U000F1294" tray-alert: "\U000F1295" tray-arrow-down: "\U000F0120" tray-arrow-up: "\U000F011D" tray-full: "\U000F1296" tray-minus: "\U000F1297" tray-plus: "\U000F1298" tray-remove: "\U000F1299" treasure-chest: "\U000F0726" tree: "\U000F0531" tree-outline: "\U000F0E69" trello: "\U000F0532" trending-down: "\U000F0533" trending-neutral: "\U000F0534" trending-up: "\U000F0535" triangle: "\U000F0536" triangle-outline: "\U000F0537" triangle-small-down: "\U000F1A09" triangle-small-up: "\U000F1A0A" triangle-wave: "\U000F147C" triforce: "\U000F0BD9" trophy: "\U000F0538" trophy-award: "\U000F0539" trophy-broken: "\U000F0DA4" trophy-outline: "\U000F053A" trophy-variant: "\U000F053B" trophy-variant-outline: "\U000F053C" truck: "\U000F053D" truck-alert: "\U000F19DE" truck-alert-outline: "\U000F19DF" truck-cargo-container: "\U000F18D8" truck-check: "\U000F0CD4" truck-check-outline: "\U000F129A" truck-delivery: "\U000F053E" truck-delivery-outline: "\U000F129B" truck-fast: "\U000F0788" truck-fast-outline: "\U000F129C" truck-flatbed: "\U000F1891" truck-minus: "\U000F19AE" truck-minus-outline: "\U000F19BD" truck-outline: "\U000F129D" truck-plus: "\U000F19AD" truck-plus-outline: "\U000F19BC" truck-remove: "\U000F19AF" truck-remove-outline: "\U000F19BE" truck-snowflake: "\U000F19A6" truck-trailer: "\U000F0727" trumpet: "\U000F1096" tshirt-crew: "\U000F0A7B" tshirt-crew-outline: "\U000F053F" tshirt-v: "\U000F0A7C" tshirt-v-outline: "\U000F0540" tsunami: "\U000F1A81" tumble-dryer: "\U000F0917" tumble-dryer-alert: "\U000F11BA" tumble-dryer-off: "\U000F11BB" tune: "\U000F062E" tune-variant: "\U000F1542" tune-vertical: "\U000F066A" tune-vertical-variant: "\U000F1543" tunnel: "\U000F183D" tunnel-outline: "\U000F183E" turbine: "\U000F1A82" turkey: "\U000F171B" turnstile: "\U000F0CD5" turnstile-outline: "\U000F0CD6" turtle: "\U000F0CD7" twitch: "\U000F0543" twitter: "\U000F0544" two-factor-authentication: "\U000F09AF" typewriter: "\U000F0F2D" ubisoft: "\U000F0BDA" ubuntu: "\U000F0548" ufo: "\U000F10C4" ufo-outline: "\U000F10C5" ultra-high-definition: "\U000F07F9" umbraco: "\U000F0549" umbrella: "\U000F054A" umbrella-beach: "\U000F188A" umbrella-beach-outline: "\U000F188B" umbrella-closed: "\U000F09B0" umbrella-closed-outline: "\U000F13E2" umbrella-closed-variant: "\U000F13E1" umbrella-outline: "\U000F054B" undo: "\U000F054C" undo-variant: "\U000F054D" unfold-less-horizontal: "\U000F054E" unfold-less-vertical: "\U000F0760" unfold-more-horizontal: "\U000F054F" unfold-more-vertical: "\U000F0761" ungroup: "\U000F0550" unicode: "\U000F0ED0" unicorn: "\U000F15C2" unicorn-variant: "\U000F15C3" unicycle: "\U000F15E5" unity: "\U000F06AF" unreal: "\U000F09B1" update: "\U000F06B0" upload: "\U000F0552" upload-lock: "\U000F1373" upload-lock-outline: "\U000F1374" upload-multiple: "\U000F083D" upload-network: "\U000F06F6" upload-network-outline: "\U000F0CD8" upload-off: "\U000F10C6" upload-off-outline: "\U000F10C7" upload-outline: "\U000F0E07" usb: "\U000F0553" usb-flash-drive: "\U000F129E" usb-flash-drive-outline: "\U000F129F" usb-port: "\U000F11F0" vacuum: "\U000F19A1" vacuum-outline: "\U000F19A2" valve: "\U000F1066" valve-closed: "\U000F1067" valve-open: "\U000F1068" van-passenger: "\U000F07FA" van-utility: "\U000F07FB" vanish: "\U000F07FC" vanish-quarter: "\U000F1554" vanity-light: "\U000F11E1" variable: "\U000F0AE7" variable-box: "\U000F1111" vector-arrange-above: "\U000F0554" vector-arrange-below: "\U000F0555" vector-bezier: "\U000F0AE8" vector-circle: "\U000F0556" vector-circle-variant: "\U000F0557" vector-combine: "\U000F0558" vector-curve: "\U000F0559" vector-difference: "\U000F055A" vector-difference-ab: "\U000F055B" vector-difference-ba: "\U000F055C" vector-ellipse: "\U000F0893" vector-intersection: "\U000F055D" vector-line: "\U000F055E" vector-link: "\U000F0FE8" vector-point: "\U000F01C4" vector-point-edit: "\U000F09E8" vector-point-minus: "\U000F1B78" vector-point-plus: "\U000F1B79" vector-point-select: "\U000F055F" vector-polygon: "\U000F0560" vector-polygon-variant: "\U000F1856" vector-polyline: "\U000F0561" vector-polyline-edit: "\U000F1225" vector-polyline-minus: "\U000F1226" vector-polyline-plus: "\U000F1227" vector-polyline-remove: "\U000F1228" vector-radius: "\U000F074A" vector-rectangle: "\U000F05C6" vector-selection: "\U000F0562" vector-square: "\U000F0001" vector-square-close: "\U000F1857" vector-square-edit: "\U000F18D9" vector-square-minus: "\U000F18DA" vector-square-open: "\U000F1858" vector-square-plus: "\U000F18DB" vector-square-remove: "\U000F18DC" vector-triangle: "\U000F0563" vector-union: "\U000F0564" vhs: "\U000F0A1B" vibrate: "\U000F0566" vibrate-off: "\U000F0CD9" video: "\U000F0567" video-2d: "\U000F1A1C" video-3d: "\U000F07FD" video-3d-off: "\U000F13D9" video-3d-variant: "\U000F0ED1" video-4k-box: "\U000F083E" video-account: "\U000F0919" video-box: "\U000F00FD" video-box-off: "\U000F00FE" video-check: "\U000F1069" video-check-outline: "\U000F106A" video-high-definition: "\U000F152E" video-image: "\U000F091A" video-input-antenna: "\U000F083F" video-input-component: "\U000F0840" video-input-hdmi: "\U000F0841" video-input-scart: "\U000F0F8C" video-input-svideo: "\U000F0842" video-marker: "\U000F19A9" video-marker-outline: "\U000F19AA" video-minus: "\U000F09B2" video-minus-outline: "\U000F02BA" video-off: "\U000F0568" video-off-outline: "\U000F0BDB" video-outline: "\U000F0BDC" video-plus: "\U000F09B3" video-plus-outline: "\U000F01D3" video-stabilization: "\U000F091B" video-switch: "\U000F0569" video-switch-outline: "\U000F0790" video-vintage: "\U000F0A1C" video-wireless: "\U000F0ED2" video-wireless-outline: "\U000F0ED3" view-agenda: "\U000F056A" view-agenda-outline: "\U000F11D8" view-array: "\U000F056B" view-array-outline: "\U000F1485" view-carousel: "\U000F056C" view-carousel-outline: "\U000F1486" view-column: "\U000F056D" view-column-outline: "\U000F1487" view-comfy: "\U000F0E6A" view-comfy-outline: "\U000F1488" view-compact: "\U000F0E6B" view-compact-outline: "\U000F0E6C" view-dashboard: "\U000F056E" view-dashboard-edit: "\U000F1947" view-dashboard-edit-outline: "\U000F1948" view-dashboard-outline: "\U000F0A1D" view-dashboard-variant: "\U000F0843" view-dashboard-variant-outline: "\U000F1489" view-day: "\U000F056F" view-day-outline: "\U000F148A" view-gallery: "\U000F1888" view-gallery-outline: "\U000F1889" view-grid: "\U000F0570" view-grid-outline: "\U000F11D9" view-grid-plus: "\U000F0F8D" view-grid-plus-outline: "\U000F11DA" view-headline: "\U000F0571" view-list: "\U000F0572" view-list-outline: "\U000F148B" view-module: "\U000F0573" view-module-outline: "\U000F148C" view-parallel: "\U000F0728" view-parallel-outline: "\U000F148D" view-quilt: "\U000F0574" view-quilt-outline: "\U000F148E" view-sequential: "\U000F0729" view-sequential-outline: "\U000F148F" view-split-horizontal: "\U000F0BCB" view-split-vertical: "\U000F0BCC" view-stream: "\U000F0575" view-stream-outline: "\U000F1490" view-week: "\U000F0576" view-week-outline: "\U000F1491" vimeo: "\U000F0577" violin: "\U000F060F" virtual-reality: "\U000F0894" virus: "\U000F13B6" virus-off: "\U000F18E1" virus-off-outline: "\U000F18E2" virus-outline: "\U000F13B7" vlc: "\U000F057C" voicemail: "\U000F057D" volcano: "\U000F1A83" volcano-outline: "\U000F1A84" volleyball: "\U000F09B4" volume-equal: "\U000F1B10" volume-high: "\U000F057E" volume-low: "\U000F057F" volume-medium: "\U000F0580" volume-minus: "\U000F075E" volume-mute: "\U000F075F" volume-off: "\U000F0581" volume-plus: "\U000F075D" volume-source: "\U000F1120" volume-variant-off: "\U000F0E08" volume-vibrate: "\U000F1121" vote: "\U000F0A1F" vote-outline: "\U000F0A20" vpn: "\U000F0582" vuejs: "\U000F0844" vuetify: "\U000F0E6D" walk: "\U000F0583" wall: "\U000F07FE" wall-fire: "\U000F1A11" wall-sconce: "\U000F091C" wall-sconce-flat: "\U000F091D" wall-sconce-flat-outline: "\U000F17C9" wall-sconce-flat-variant: "\U000F041C" wall-sconce-flat-variant-outline: "\U000F17CA" wall-sconce-outline: "\U000F17CB" wall-sconce-round: "\U000F0748" wall-sconce-round-outline: "\U000F17CC" wall-sconce-round-variant: "\U000F091E" wall-sconce-round-variant-outline: "\U000F17CD" wallet: "\U000F0584" wallet-giftcard: "\U000F0585" wallet-membership: "\U000F0586" wallet-outline: "\U000F0BDD" wallet-plus: "\U000F0F8E" wallet-plus-outline: "\U000F0F8F" wallet-travel: "\U000F0587" wallpaper: "\U000F0E09" wan: "\U000F0588" wardrobe: "\U000F0F90" wardrobe-outline: "\U000F0F91" warehouse: "\U000F0F81" washing-machine: "\U000F072A" washing-machine-alert: "\U000F11BC" washing-machine-off: "\U000F11BD" watch: "\U000F0589" watch-export: "\U000F058A" watch-export-variant: "\U000F0895" watch-import: "\U000F058B" watch-import-variant: "\U000F0896" watch-variant: "\U000F0897" watch-vibrate: "\U000F06B1" watch-vibrate-off: "\U000F0CDA" water: "\U000F058C" water-alert: "\U000F1502" water-alert-outline: "\U000F1503" water-boiler: "\U000F0F92" water-boiler-alert: "\U000F11B3" water-boiler-auto: "\U000F1B98" water-boiler-off: "\U000F11B4" water-check: "\U000F1504" water-check-outline: "\U000F1505" water-circle: "\U000F1806" water-minus: "\U000F1506" water-minus-outline: "\U000F1507" water-off: "\U000F058D" water-off-outline: "\U000F1508" water-opacity: "\U000F1855" water-outline: "\U000F0E0A" water-percent: "\U000F058E" water-percent-alert: "\U000F1509" water-plus: "\U000F150A" water-plus-outline: "\U000F150B" water-polo: "\U000F12A0" water-pump: "\U000F058F" water-pump-off: "\U000F0F93" water-remove: "\U000F150C" water-remove-outline: "\U000F150D" water-sync: "\U000F17C6" water-thermometer: "\U000F1A85" water-thermometer-outline: "\U000F1A86" water-well: "\U000F106B" water-well-outline: "\U000F106C" waterfall: "\U000F1849" watering-can: "\U000F1481" watering-can-outline: "\U000F1482" watermark: "\U000F0612" wave: "\U000F0F2E" waveform: "\U000F147D" waves: "\U000F078D" waves-arrow-left: "\U000F1859" waves-arrow-right: "\U000F185A" waves-arrow-up: "\U000F185B" waze: "\U000F0BDE" weather-cloudy: "\U000F0590" weather-cloudy-alert: "\U000F0F2F" weather-cloudy-arrow-right: "\U000F0E6E" weather-cloudy-clock: "\U000F18F6" weather-dust: "\U000F1B5A" weather-fog: "\U000F0591" weather-hail: "\U000F0592" weather-hazy: "\U000F0F30" weather-hurricane: "\U000F0898" weather-lightning: "\U000F0593" weather-lightning-rainy: "\U000F067E" weather-night: "\U000F0594" weather-night-partly-cloudy: "\U000F0F31" weather-partly-cloudy: "\U000F0595" weather-partly-lightning: "\U000F0F32" weather-partly-rainy: "\U000F0F33" weather-partly-snowy: "\U000F0F34" weather-partly-snowy-rainy: "\U000F0F35" weather-pouring: "\U000F0596" weather-rainy: "\U000F0597" weather-snowy: "\U000F0598" weather-snowy-heavy: "\U000F0F36" weather-snowy-rainy: "\U000F067F" weather-sunny: "\U000F0599" weather-sunny-alert: "\U000F0F37" weather-sunny-off: "\U000F14E4" weather-sunset: "\U000F059A" weather-sunset-down: "\U000F059B" weather-sunset-up: "\U000F059C" weather-tornado: "\U000F0F38" weather-windy: "\U000F059D" weather-windy-variant: "\U000F059E" web: "\U000F059F" web-box: "\U000F0F94" web-cancel: "\U000F1790" web-check: "\U000F0789" web-clock: "\U000F124A" web-minus: "\U000F10A0" web-off: "\U000F0A8E" web-plus: "\U000F0033" web-refresh: "\U000F1791" web-remove: "\U000F0551" web-sync: "\U000F1792" webcam: "\U000F05A0" webcam-off: "\U000F1737" webhook: "\U000F062F" webpack: "\U000F072B" webrtc: "\U000F1248" wechat: "\U000F0611" weight: "\U000F05A1" weight-gram: "\U000F0D3F" weight-kilogram: "\U000F05A2" weight-lifter: "\U000F115D" weight-pound: "\U000F09B5" whatsapp: "\U000F05A3" wheel-barrow: "\U000F14F2" wheelchair: "\U000F1A87" wheelchair-accessibility: "\U000F05A4" whistle: "\U000F09B6" whistle-outline: "\U000F12BC" white-balance-auto: "\U000F05A5" white-balance-incandescent: "\U000F05A6" white-balance-iridescent: "\U000F05A7" white-balance-sunny: "\U000F05A8" widgets: "\U000F072C" widgets-outline: "\U000F1355" wifi: "\U000F05A9" wifi-alert: "\U000F16B5" wifi-arrow-down: "\U000F16B6" wifi-arrow-left: "\U000F16B7" wifi-arrow-left-right: "\U000F16B8" wifi-arrow-right: "\U000F16B9" wifi-arrow-up: "\U000F16BA" wifi-arrow-up-down: "\U000F16BB" wifi-cancel: "\U000F16BC" wifi-check: "\U000F16BD" wifi-cog: "\U000F16BE" wifi-lock: "\U000F16BF" wifi-lock-open: "\U000F16C0" wifi-marker: "\U000F16C1" wifi-minus: "\U000F16C2" wifi-off: "\U000F05AA" wifi-plus: "\U000F16C3" wifi-refresh: "\U000F16C4" wifi-remove: "\U000F16C5" wifi-settings: "\U000F16C6" wifi-star: "\U000F0E0B" wifi-strength-1: "\U000F091F" wifi-strength-1-alert: "\U000F0920" wifi-strength-1-lock: "\U000F0921" wifi-strength-1-lock-open: "\U000F16CB" wifi-strength-2: "\U000F0922" wifi-strength-2-alert: "\U000F0923" wifi-strength-2-lock: "\U000F0924" wifi-strength-2-lock-open: "\U000F16CC" wifi-strength-3: "\U000F0925" wifi-strength-3-alert: "\U000F0926" wifi-strength-3-lock: "\U000F0927" wifi-strength-3-lock-open: "\U000F16CD" wifi-strength-4: "\U000F0928" wifi-strength-4-alert: "\U000F0929" wifi-strength-4-lock: "\U000F092A" wifi-strength-4-lock-open: "\U000F16CE" wifi-strength-alert-outline: "\U000F092B" wifi-strength-lock-open-outline: "\U000F16CF" wifi-strength-lock-outline: "\U000F092C" wifi-strength-off: "\U000F092D" wifi-strength-off-outline: "\U000F092E" wifi-strength-outline: "\U000F092F" wifi-sync: "\U000F16C7" wikipedia: "\U000F05AC" wind-power: "\U000F1A88" wind-power-outline: "\U000F1A89" wind-turbine: "\U000F0DA5" wind-turbine-alert: "\U000F19AB" wind-turbine-check: "\U000F19AC" window-close: "\U000F05AD" window-closed: "\U000F05AE" window-closed-variant: "\U000F11DB" window-maximize: "\U000F05AF" window-minimize: "\U000F05B0" window-open: "\U000F05B1" window-open-variant: "\U000F11DC" window-restore: "\U000F05B2" window-shutter: "\U000F111C" window-shutter-alert: "\U000F111D" window-shutter-auto: "\U000F1BA3" window-shutter-cog: "\U000F1A8A" window-shutter-open: "\U000F111E" window-shutter-settings: "\U000F1A8B" windsock: "\U000F15FA" wiper: "\U000F0AE9" wiper-wash: "\U000F0DA6" wiper-wash-alert: "\U000F18DF" wizard-hat: "\U000F1477" wordpress: "\U000F05B4" wrap: "\U000F05B6" wrap-disabled: "\U000F0BDF" wrench: "\U000F05B7" wrench-check: "\U000F1B8F" wrench-check-outline: "\U000F1B90" wrench-clock: "\U000F19A3" wrench-clock-outline: "\U000F1B93" wrench-cog: "\U000F1B91" wrench-cog-outline: "\U000F1B92" wrench-outline: "\U000F0BE0" xamarin: "\U000F0845" xml: "\U000F05C0" xmpp: "\U000F07FF" yahoo: "\U000F0B4F" yeast: "\U000F05C1" yin-yang: "\U000F0680" yoga: "\U000F117C" youtube: "\U000F05C3" youtube-gaming: "\U000F0848" youtube-studio: "\U000F0847" youtube-subscription: "\U000F0D40" youtube-tv: "\U000F0448" yurt: "\U000F1516" z-wave: "\U000F0AEA" zend: "\U000F0AEB" zigbee: "\U000F0D41" zip-box: "\U000F05C4" zip-box-outline: "\U000F0FFA" zip-disk: "\U000F0A23" zodiac-aquarius: "\U000F0A7D" zodiac-aries: "\U000F0A7E" zodiac-cancer: "\U000F0A7F" zodiac-capricorn: "\U000F0A80" zodiac-gemini: "\U000F0A81" zodiac-leo: "\U000F0A82" zodiac-libra: "\U000F0A83" zodiac-pisces: "\U000F0A84" zodiac-sagittarius: "\U000F0A85" zodiac-scorpio: "\U000F0A86" zodiac-taurus: "\U000F0A87" zodiac-virgo: "\U000F0A88" ruby-prawn-icon-3.1.0/data/fonts/pf/000077500000000000000000000000001430430672300172205ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/data/fonts/pf/LICENSE000077500000000000000000000020541430430672300202310ustar00rootroot00000000000000The 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-3.1.0/data/fonts/pf/paymentfont-webfont.ttf000077500000000000000000004366701430430672300237700ustar00rootroot00000000000000 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-3.1.0/data/fonts/pf/pf.yml000066400000000000000000000041551430430672300203550ustar00rootroot00000000000000--- 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-3.1.0/examples/000077500000000000000000000000001430430672300163675ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/examples/example_helper.rb000066400000000000000000000043771430430672300217210ustar00rootroot00000000000000# 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-3.1.0/examples/fas-beer-inline.png000066400000000000000000000222051430430672300220360ustar00rootroot00000000000000PNG  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-3.1.0/examples/fas-beer.png000066400000000000000000000234361430430672300205710ustar00rootroot00000000000000PNG  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-3.1.0/examples/fontawesome.rb000066400000000000000000000020371430430672300212450ustar00rootroot00000000000000# 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 = Prawn::Icon.configuration.font_directory .join('DejaVuSans.ttf') .to_s 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-3.1.0/examples/foundation_icons.rb000066400000000000000000000015751430430672300222650ustar00rootroot00000000000000# 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 = Prawn::Icon.configuration.font_directory .join('DejaVuSans.ttf') .to_s 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-3.1.0/examples/mdi.rb000066400000000000000000000015461430430672300174730ustar00rootroot00000000000000# All example code may be executed by calling `rake legend` require_relative '../lib/prawn/icon' require_relative 'example_helper' Prawn::Document.generate('mdi_icons.pdf') do deja_path = Prawn::Icon.configuration.font_directory .join('DejaVuSans.ttf') .to_s font_families.update({ 'deja' => { normal: deja_path } }) font('deja') icons = icon_keys(self, 'mdi') required_pages = number_of_pages(self, 'mdi') define_grid(columns: 6, rows: 12, gutter: 16) sub_header = 'Material Design Icons' link = 'https://materialdesignicons.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-3.1.0/examples/paymentfont.rb000066400000000000000000000015231430430672300212610ustar00rootroot00000000000000# 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 = Prawn::Icon.configuration.font_directory .join('DejaVuSans.ttf') .to_s 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-3.1.0/gemfiles/000077500000000000000000000000001430430672300163445ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/gemfiles/prawn-1.3.0.gemfile000066400000000000000000000001521430430672300214600ustar00rootroot00000000000000# frozen_string_literal: true source 'https://rubygems.org' gem 'prawn', '~> 1.3.0' gemspec path: '..' ruby-prawn-icon-3.1.0/gemfiles/prawn-2.4.0.gemfile000066400000000000000000000001521430430672300214620ustar00rootroot00000000000000# frozen_string_literal: true source 'https://rubygems.org' gem 'prawn', '~> 2.4.0' gemspec path: '..' ruby-prawn-icon-3.1.0/gemfiles/prawn-master.gemfile000066400000000000000000000002101430430672300223070ustar00rootroot00000000000000# frozen_string_literal: true source 'https://rubygems.org' gem 'prawn', git: 'https://github.com/prawnpdf/prawn' gemspec path: '..' ruby-prawn-icon-3.1.0/lib/000077500000000000000000000000001430430672300153175ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/lib/prawn/000077500000000000000000000000001430430672300164465ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/lib/prawn/icon.rb000066400000000000000000000010111430430672300177140ustar00rootroot00000000000000# frozen_string_literal: true # 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 'pathname' require_relative 'icon/version' require_relative 'icon/configuration' 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-3.1.0/lib/prawn/icon/000077500000000000000000000000001430430672300173765ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/lib/prawn/icon/base.rb000066400000000000000000000012311430430672300206320ustar00rootroot00000000000000# frozen_string_literal: true # 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 class << self attr_writer :configuration def configuration @configuration ||= Configuration.new end def configure yield(configuration) end end module Base # @deprecated Use {Prawn::Icon.configuration.font_directory} instead FONTDIR = Prawn::Icon.configuration.font_directory.to_s end end end ruby-prawn-icon-3.1.0/lib/prawn/icon/compatibility.rb000066400000000000000000000032021430430672300225710ustar00rootroot00000000000000# frozen_string_literal: true # 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 # @deprecated Use {Prawn::Icon::Compatibility.shims} instead SHIMS = YAML.load_file( Prawn::Icon.configuration.font_directory.join( 'fa4', 'shims.yml' ) ).freeze class << self def shims @shims ||= YAML.load_file( Icon.configuration.font_directory.join('fa4', 'shims.yml').to_s ) end end attr_accessor :key def initialize(opts = {}) self.key = opts.fetch(:key) end def translate(io = $stderr) @translate ||= if key.start_with?('fa-') map.tap { |replaced| warning(replaced, key, io) } else key end end private def map self.class.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 4.0.0. DEPRECATION end end end end ruby-prawn-icon-3.1.0/lib/prawn/icon/configuration.rb000066400000000000000000000015541430430672300225770ustar00rootroot00000000000000# frozen_string_literal: true # configuration.rb: Prawn icon configuration. # # Copyright October 2020, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. module Prawn class Icon class Configuration def font_directory=(path) @font_directory = Pathname.new(path) end def font_directory @font_directory ||= default_font_directory end private def default_font_directory Pathname.new(gem_path).join('data', 'fonts') end # :nocov: def gem_path spec = Gem.loaded_specs.fetch('prawn-icon') do Struct.new(:full_gem_path).new(failsafe_gem_path) end spec.full_gem_path end def failsafe_gem_path File.expand_path('../../..', __dir__) end # :nocov: end end end ruby-prawn-icon-3.1.0/lib/prawn/icon/errors.rb000066400000000000000000000007621430430672300212440ustar00rootroot00000000000000# frozen_string_literal: true # 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-3.1.0/lib/prawn/icon/font_data.rb000066400000000000000000000046101430430672300216630ustar00rootroot00000000000000# frozen_string_literal: true # 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 @path = begin font = Icon.configuration.font_directory .join(@set.to_s) .glob('*.ttf') .first if font.nil? raise Prawn::Errors::UnknownFont, "Icon font not found for set: #{@set}" end font.to_s end 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-3.1.0/lib/prawn/icon/interface.rb000066400000000000000000000163041430430672300216670ustar00rootroot00000000000000# frozen_string_literal: true # 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.configuration.font_directory}/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 # @deprecated Use {Prawn::Icon.configuration.font_directory} instead 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 { |i| i && i.render } end # Initialize a new icon object. # # == 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 # Render formatted icon content to the document from # a string containing icons. Content will correctly # transition to a new page when necessary. # # == 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) formatted_text(content, opts) end # Initialize a formatted icon box from an icon-conatining # string. Content is not directly rendered to the document, # instead a +Prawn::Text::Formatted::Box+ instance is returned # that responds to the +render+ method. # # == 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 formatted_icon_box(text, opts = {}) parsed = Icon::Parser.format(self, text) content = Text::Formatted::Parser.format(parsed) position = opts.fetch(:at) do [ opts.fetch(:x) { bounds.left }, opts.fetch(:y) { cursor } ] end box_options = opts.merge( inline_format: true, document: self, at: position ) 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 self.y -= box.line_gap + box.leading unless opts.fetch(:final_gap, true) 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-3.1.0/lib/prawn/icon/parser.rb000066400000000000000000000074701430430672300212270ustar00rootroot00000000000000# frozen_string_literal: true # 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.freeze TAG_REGEX = /]*>[^<]*<\/icon>/mi.freeze # rubocop:disable Lint/MixedRegexpCaptureTypes ATTR_REGEX = /(?[a-zA-Z]*)=["|'](?(\w*[^["|']]))["|']/mi.freeze # rubocop:enable Lint/MixedRegexpCaptureTypes 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-3.1.0/lib/prawn/icon/version.rb000066400000000000000000000004161430430672300214110ustar00rootroot00000000000000# frozen_string_literal: true # 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 = '3.1.0' end end ruby-prawn-icon-3.1.0/prawn-icon.gemspec000066400000000000000000000026561430430672300202040ustar00rootroot00000000000000# frozen_string_literal: true basedir = __dir__ 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.authors = ['Jesse Doyle'] spec.email = ['jdoyle@ualberta.ca'] spec.licenses = %w[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('pdf-reader', '>= 1.4') spec.add_development_dependency('rake') spec.add_development_dependency('rspec', '>= 3.5.0') spec.add_development_dependency('rubocop', '~> 1.35.1') 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 spec.metadata['rubygems_mfa_required'] = 'true' end ruby-prawn-icon-3.1.0/spec/000077500000000000000000000000001430430672300155035ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/spec/integration/000077500000000000000000000000001430430672300200265ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/spec/integration/icon_spec.rb000066400000000000000000000174701430430672300223260ustar00rootroot00000000000000# 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 pdf.icon icon_text, inline_format: true pdf.move_down 30 pdf.text 'End' inspector = PDF::Inspector::Text.analyze(pdf.render) x, y = inspector.positions[2] expect(x).to eq(0) expect(y.round).to eq(724) end context 'with final_gap: false' do it 'renders the icon without a final gap' do pdf.icon( 'far-address-book', inline_format: true, final_gap: false ) pdf.text('Hello') inspector = PDF::Inspector::Text.analyze(pdf.render) y = inspector.positions[1].last.round expect(y).to eq(723) 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 'returns nil' do icon = pdf.make_icon 'far-address-book', inline_format: true expect(icon).to be_nil end end end describe '::inline_icon' do it 'returns nil' do icon = pdf.inline_icon 'far-address-book' expect(icon).to be_nil end it 'starts a new page if necessary', github_issue: '49' do text = 209.times.map { 'Hello, World!' }.join(' ') pdf.text(text, size: 18) pdf.icon('Hello, fas-globe', inline_format: true, size: 18) inspector = PDF::Inspector::Page.analyze(pdf.render) expect(inspector.pages.size).to eq(2) end end describe '::formatted_icon_box' do it 'returns a Prawn::Text::Formatted::Box instance' do icon_text = <<~CONTENT fas-broom cancel that fas-check CONTENT box = pdf.formatted_icon_box(icon_text, inline_format: true) expect(box).to be_a(Prawn::Text::Formatted::Box) end it 'accepts an absolute position parameter' do icon_text = 'Hello, fas-globe!' pdf.formatted_icon_box(icon_text, inline_format: true, x: 200, y: 100).render inspector = PDF::Inspector::Text.analyze(pdf.render) x, y = inspector.positions[0] expect(x).to eq(200) expect(y.round).to eq(90) end it 'handles final_gap: false correctly' do icon_text = <<~CONTENT Hello, fas-globe Next line. CONTENT pdf.formatted_icon_box(icon_text, inline_format: true, final_gap: false).render inspector = PDF::Inspector::Text.analyze(pdf.render) x = inspector.positions[1].first expect(x.round).to eq(34) 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 context 'Material Design Icons' do it 'renders Material Design Icon glyphs' do pdf.icon 'mdi-beer' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq('') end end end ruby-prawn-icon-3.1.0/spec/spec_helper.rb000066400000000000000000000010771430430672300203260ustar00rootroot00000000000000# 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-3.1.0/spec/support/000077500000000000000000000000001430430672300172175ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/spec/support/parser_helper.rb000066400000000000000000000006301430430672300223760ustar00rootroot00000000000000# 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-3.1.0/spec/support/pdf_helper.rb000066400000000000000000000005101430430672300216500ustar00rootroot00000000000000# 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-3.1.0/spec/unit/000077500000000000000000000000001430430672300164625ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/spec/unit/base_spec.rb000066400000000000000000000016211430430672300207330ustar00rootroot00000000000000# 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 do describe '#configuration' do it 'returns an instance of Prawn::Icon::Configuration' do expect(described_class.configuration).to be_a(Prawn::Icon::Configuration) end end describe '#configure' do around(:each) do |example| old = described_class.configuration.dup described_class.configure do |config| config.font_directory = '/tmp/fonts' end example.run described_class.configuration = old end it 'yields control' do expect { |b| described_class.configure(&b) }.to yield_control end it 'configures properties' do expect(described_class.configuration.font_directory).to eq( Pathname.new('/tmp/fonts') ) end end end ruby-prawn-icon-3.1.0/spec/unit/compatibility_spec.rb000066400000000000000000000022531430430672300226740ustar00rootroot00000000000000# 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-3.1.0/spec/unit/configuration_spec.rb000066400000000000000000000010171430430672300226670ustar00rootroot00000000000000# encoding: utf-8 # # Copyright October 2020, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. describe Prawn::Icon::Configuration do describe '#font_directory' do before(:each) do subject.font_directory = '/tmp/fakedir' end it 'returns a Pathname' do expect(subject.font_directory).to be_a(Pathname) end it 'returns the configured path' do expect(subject.font_directory.to_s).to eq('/tmp/fakedir') end end end ruby-prawn-icon-3.1.0/spec/unit/errors/000077500000000000000000000000001430430672300177765ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/spec/unit/errors/icon_key_empty_spec.rb000066400000000000000000000006551430430672300243610ustar00rootroot00000000000000# 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-3.1.0/spec/unit/errors/icon_not_found_spec.rb000066400000000000000000000007001430430672300243350ustar00rootroot00000000000000# 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-3.1.0/spec/unit/font_data_spec.rb000066400000000000000000000113621430430672300217630ustar00rootroot00000000000000# 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-3.1.0/spec/unit/icon_spec.rb000066400000000000000000000053721430430672300207600ustar00rootroot00000000000000# 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-3.1.0/spec/unit/parser_spec.rb000066400000000000000000000150561430430672300213240ustar00rootroot00000000000000# 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-3.1.0/tool/000077500000000000000000000000001430430672300155265ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/tool/fontawesome.rb000066400000000000000000000011701430430672300204010ustar00rootroot00000000000000# frozen_string_literal: true # 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-3.1.0/tool/fontawesome/000077500000000000000000000000001430430672300200555ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/tool/fontawesome/converter.rb000066400000000000000000000026721430430672300224200ustar00rootroot00000000000000# frozen_string_literal: true # 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-3.1.0/tool/mdi.rb000066400000000000000000000012531430430672300166250ustar00rootroot00000000000000# frozen_string_literal: true # tool/mdi.rb: Convert Material Design SCSS variables to YAML legend. # # Copyright August 31, 2022 Jesse Doyle, Perceval Anichini. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require_relative 'scss/parser' PREFIX = /\s"(?.+)":\s*(?.*),?/.freeze VERSION = /mdi-version:\s*"(?.*)"/.freeze 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: 'mdi', path: path, output: output ) ruby-prawn-icon-3.1.0/tool/paymentfont.rb000066400000000000000000000012401430430672300204140ustar00rootroot00000000000000# frozen_string_literal: true # 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*"\\(?.*)";/.freeze VERSION = /pf-version:\s*"(?.*)"/.freeze 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-3.1.0/tool/scss/000077500000000000000000000000001430430672300165015ustar00rootroot00000000000000ruby-prawn-icon-3.1.0/tool/scss/parser.rb000066400000000000000000000020341430430672300203210ustar00rootroot00000000000000# frozen_string_literal: true # 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