entypo-rails-3.0.0/0000755000004100000410000000000013341310031014155 5ustar www-datawww-dataentypo-rails-3.0.0/README.md0000644000004100000410000001173513341310031015443 0ustar www-datawww-data# entypo-rails An asset pipeline plugin for Rails to easily add the [Entypo](http://www.entypo.com/) icon font faces and an initial set of icon classes. ## Entypo The [Entypo](http://www.entypo.com/) pictograms by Daniel Bruce http://www.entypo.com/ are provided in `vendor`. These pictograms are licensed under [CC BY 3.0](http://creativecommons.org/licenses/by-sa/3.0/) and the font unter [SIL Open Font License](http://scripts.sil.org/OFL). ## Installation Add this line to your application's Gemfile: gem 'entypo-rails' And then execute: $ bundle Then start your server and open http://localhost:3000/entypo/charmap ## Usage Either use the provided mappings, based on `icons-...` and the `:before`: ```scss // application.css *= require entypo @charset "UTF-8"; ``` ```html This is cool . Fork it on . ``` or just include the entypo font face and do the mappings yourself, go to http://localhost:3000/entypo/charmap in your browser for a list of all unicode codepoints and CSS classes. This is only available in development mode. Alternatively check out [entypo.scss](https://github.com/lwe/entypo-rails/blob/master/app/assets/stylesheets/entypo.scss), the social font is prefixed with `.icon-social-`. ```scss // application.css //= require entypo-fonts @charset "UTF-8"; // icons.scss (or wherever) i.cool { font-family: 'entypo' } i.cool:before { content: "\1F44D"; } ``` ```html This is cool . ``` ## Options #### Change the `icon` prefix Simply add an initializer like e.g. `config/initializers/entypo.rb` and add: ```ruby Entypo.css_prefix = "my-icon" ``` After setting a new prefix restart your server and ensure to clear the Rails asset caches in `tmp/cache/asset`, otherwise the new prefix might not be picked up correctly. **Note**: that the value is not checked, thus ensure to use onlu valid CSS class names. #### Enable the `/entypo/charmap` in a non-development environment By default entypo-rails only enables the `/entypo/charmap` route in the development environment. To enable it in another environment open the environment specific configuration file from `config/environments/.rb` and append: ```ruby # at the end of the file... Entypo.charmap = true ``` #### Customize the charmap path (or add authorization etc.) To use a custom URL for to display the charmap, first disable the automatic route generation by adding an initializer e.g. `config/initializers/entypo.rb` with: ```ruby Entypo.charmap = false ``` Then add a new route to your application's `config/routes.rb` file: ```ruby Your::Application.routes.draw do # other routes... get '/custom/path/to/charmap', to: 'entypo/charmap#index' end ``` ## Troubleshooting **The prefix `icon` clashes with the prefix defined by [bootstrap](http://getbootstrap.com/2.3.2/base-css.html#icons) and thus I'm not able to use entypo icons.** The prefix can be changed by setting `Entypo.css_prefix = "e-icon"` in an initializer. Ensure that after changing the prefix the caches in `tmp/cache/assets` should be cleared, otherwise it can happen that the prefix is not picked up during development. **In production, the fonts are digested to entypo- 4a74efb3ed26fe0c57556bcc0b7e871f... Meanhwile it's just entypo.eot in the CSS file, without the digest. Therefore the font cannot be loaded!** When compiling assets ensure to set the correct `RAILS_ENV`, otherwise assets or not digested in the CSS files. See [this discussion](https://github.com/lwe/entypo-rails/pull/6) for more, or simply ensure to run: ```bash RAILS_ENV=production rake assets:precompile ``` ## Changes _3.0.0_ - Set minimum requirement to Rails 4.1+ - Fixed deprecation warnings [#15](https://github.com/lwe/entypo-rails/issues/15) - Fixed entypo font previews at `/entypo/charmap` _2.2.3_ - Fixed `google-plus` icon names, [#16](https://github.com/lwe/entypo-rails/pull/16) by @medinarodel _2.2.1_ - Ensure .erb files are included within packaged gem - Fixed route drawing code to enable `/entypo/charmap` again - Added icon prefix option, based on [#9](https://github.com/lwe/entypo-rails/pull/9) thx @xdite _2.1.0_ - Added webkit font smooting [#8](https://github.com/lwe/entypo-rails/pull/8), by @vojto _2.0.2_ - Fix /_entypo/charmap to load correct stylesheet from app/assets - Switch to use UTF-8 encoded chars, by @michaelkirk _2.0.1_ - Rails 4 compatibility: only css & js files are precompiled from vendor/assets _2.0.0_ - **Breaking**: combined entyo and entypo social font, so `entypo-social` font family no longer exists - #2, #3, fixed display issues on Opera _1.0.2_ - Bugfix release for Rails asset pipeline _1.0.0_ - Initial release, with entypo fonts from 2012-10-31 ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request entypo-rails-3.0.0/.gitignore0000644000004100000410000000030213341310031016140 0ustar www-datawww-data*.gem *.rbc .bundle .config .yardoc .DS_Store Gemfile.lock InstalledFiles _yardoc coverage doc/ lib/bundler/man pkg rdoc spec/reports test/tmp test/version_tmp tmp .buildpath .project .settings entypo-rails-3.0.0/app/0000755000004100000410000000000013341310031014735 5ustar www-datawww-dataentypo-rails-3.0.0/app/controllers/0000755000004100000410000000000013341310031017303 5ustar www-datawww-dataentypo-rails-3.0.0/app/controllers/entypo/0000755000004100000410000000000013341310031020621 5ustar www-datawww-dataentypo-rails-3.0.0/app/controllers/entypo/charmap_controller.rb0000644000004100000410000000034313341310031025024 0ustar www-datawww-datarequire 'entypo-rails' require 'entypo/charmap' module Entypo class CharmapController < ApplicationController def index @icons = Entypo::Charmap.icons render action: 'index', layout: false end end end entypo-rails-3.0.0/app/assets/0000755000004100000410000000000013341310031016237 5ustar www-datawww-dataentypo-rails-3.0.0/app/assets/stylesheets/0000755000004100000410000000000013341310031020613 5ustar www-datawww-dataentypo-rails-3.0.0/app/assets/stylesheets/entypo-fonts.scss0000644000004100000410000000051113341310031024152 0ustar www-datawww-data@font-face { font-family: 'entypo'; src: font-url('entypo.eot'); src: font-url('entypo.eot?#iefix') format('embedded-opentype'), font-url('entypo.woff') format('woff'), font-url('entypo.ttf') format('truetype'), font-url('entypo.svg#entypo') format('svg'); font-weight: normal; font-style: normal; } entypo-rails-3.0.0/app/assets/stylesheets/entypo.scss.erb0000644000004100000410000005354013341310031023604 0ustar www-datawww-data@charset "UTF-8"; @import "entypo-fonts"; [class^="<%= Entypo.css_prefix %>-"], [class*=" <%= Entypo.css_prefix %>-"] { font-family: entypo; font-style: normal; font-weight: normal; display: inline-block; width: 1.1em; margin-right: .1em; text-align: center; -webkit-font-smoothing: antialiased; } /* main icon map */ .<%= Entypo.css_prefix %>-phone:before { content: '\1f4de'; } /* 1f4de */ .<%= Entypo.css_prefix %>-mobile:before { content: '\1f4f1'; } /* 1f4f1 */ .<%= Entypo.css_prefix %>-mouse:before { content: '\e789'; } /* e789 */ .<%= Entypo.css_prefix %>-address:before { content: '\e723'; } /* e723 */ .<%= Entypo.css_prefix %>-mail:before { content: '\2709'; } /* 2709 */ .<%= Entypo.css_prefix %>-paper-plane:before { content: '\e79b'; } /* e79b */ .<%= Entypo.css_prefix %>-pencil:before { content: '\270e'; } /* 270e */ .<%= Entypo.css_prefix %>-feather:before { content: '\2712'; } /* 2712 */ .<%= Entypo.css_prefix %>-attach:before { content: '\1f4ce'; } /* 1f4ce */ .<%= Entypo.css_prefix %>-inbox:before { content: '\e777'; } /* e777 */ .<%= Entypo.css_prefix %>-reply:before { content: '\e712'; } /* e712 */ .<%= Entypo.css_prefix %>-reply-all:before { content: '\e713'; } /* e713 */ .<%= Entypo.css_prefix %>-forward:before { content: '\27a6'; } /* 27a6 */ .<%= Entypo.css_prefix %>-user:before { content: '\1f464'; } /* 1f464 */ .<%= Entypo.css_prefix %>-users:before { content: '\1f465'; } /* 1f465 */ .<%= Entypo.css_prefix %>-add-user:before { content: '\e700'; } /* e700 */ .<%= Entypo.css_prefix %>-vcard:before { content: '\e722'; } /* e722 */ .<%= Entypo.css_prefix %>-export:before { content: '\e715'; } /* e715 */ .<%= Entypo.css_prefix %>-location:before { content: '\e724'; } /* e724 */ .<%= Entypo.css_prefix %>-map:before { content: '\e727'; } /* e727 */ .<%= Entypo.css_prefix %>-compass:before { content: '\e728'; } /* e728 */ .<%= Entypo.css_prefix %>-direction:before { content: '\27a2'; } /* 27a2 */ .<%= Entypo.css_prefix %>-share:before { content: '\e73c'; } /* e73c */ .<%= Entypo.css_prefix %>-shareable:before { content: '\e73e'; } /* e73e */ .<%= Entypo.css_prefix %>-heart:before { content: '\2665'; } /* 2665 */ .<%= Entypo.css_prefix %>-heart-empty:before { content: '\2661'; } /* 2661 */ .<%= Entypo.css_prefix %>-star:before { content: '\2605'; } /* 2605 */ .<%= Entypo.css_prefix %>-star-empty:before { content: '\2606'; } /* 2606 */ .<%= Entypo.css_prefix %>-thumbs-up:before { content: '\1f44d'; } /* 1f44d */ .<%= Entypo.css_prefix %>-thumbs-down:before { content: '\1f44e'; } /* 1f44e */ .<%= Entypo.css_prefix %>-chat:before { content: '\e720'; } /* e720 */ .<%= Entypo.css_prefix %>-comment:before { content: '\e718'; } /* e718 */ .<%= Entypo.css_prefix %>-quote:before { content: '\275e'; } /* 275e */ .<%= Entypo.css_prefix %>-home:before { content: '\2302'; } /* 2302 */ .<%= Entypo.css_prefix %>-popup:before { content: '\e74c'; } /* e74c */ .<%= Entypo.css_prefix %>-search:before { content: '\1f50d'; } /* 1f50d */ .<%= Entypo.css_prefix %>-flashlight:before { content: '\1f526'; } /* 1f526 */ .<%= Entypo.css_prefix %>-print:before { content: '\e716'; } /* e716 */ .<%= Entypo.css_prefix %>-bell:before { content: '\1f514'; } /* 1f514 */ .<%= Entypo.css_prefix %>-link:before { content: '\1f517'; } /* 1f517 */ .<%= Entypo.css_prefix %>-flag:before { content: '\2691'; } /* 2691 */ .<%= Entypo.css_prefix %>-cog:before { content: '\2699'; } /* 2699 */ .<%= Entypo.css_prefix %>-tools:before { content: '\2692'; } /* 2692 */ .<%= Entypo.css_prefix %>-trophy:before { content: '\1f3c6'; } /* 1f3c6 */ .<%= Entypo.css_prefix %>-tag:before { content: '\e70c'; } /* e70c */ .<%= Entypo.css_prefix %>-camera:before { content: '\1f4f7'; } /* 1f4f7 */ .<%= Entypo.css_prefix %>-megaphone:before { content: '\1f4e3'; } /* 1f4e3 */ .<%= Entypo.css_prefix %>-moon:before { content: '\263d'; } /* 263d */ .<%= Entypo.css_prefix %>-palette:before { content: '\1f3a8'; } /* 1f3a8 */ .<%= Entypo.css_prefix %>-leaf:before { content: '\1f342 '; } /* 1f342 */ .<%= Entypo.css_prefix %>-note:before { content: '\266a'; } /* 266a */ .<%= Entypo.css_prefix %>-beamed-note:before { content: '\266b'; } /* 266b */ .<%= Entypo.css_prefix %>-graduation-cap:before { content: '\1f393 '; } /* 1f393 */ .<%= Entypo.css_prefix %>-book:before { content: '\1f4d5 '; } /* 1f4d5 */ .<%= Entypo.css_prefix %>-newspaper:before { content: '\1f4f0'; } /* 1f4f0 */ .<%= Entypo.css_prefix %>-bag:before { content: '\1f45c'; } /* 1f45c */ .<%= Entypo.css_prefix %>-lifebuoy:before { content: '\e788'; } /* e788 */ .<%= Entypo.css_prefix %>-eye:before { content: '\e70a'; } /* e70a */ .<%= Entypo.css_prefix %>-clock:before { content: '\1f554'; } /* 1f554 */ .<%= Entypo.css_prefix %>-mic:before { content: '\1f3a4'; } /* 1f3a4 */ .<%= Entypo.css_prefix %>-calendar:before { content: '\1f4c5'; } /* 1f4c5 */ .<%= Entypo.css_prefix %>-flash:before { content: '\26a1'; } /* 26a1 */ .<%= Entypo.css_prefix %>-thunder-cloud:before { content: '\26c8'; } /* 26c8 */ .<%= Entypo.css_prefix %>-droplet:before { content: '\1f4a7'; } /* 1f4a7 */ .<%= Entypo.css_prefix %>-cd:before { content: '\1f4bf'; } /* 1f4bf */ .<%= Entypo.css_prefix %>-briefcase:before { content: '\1f4bc'; } /* 1f4bc */ .<%= Entypo.css_prefix %>-air:before { content: '\e753'; } /* e753 */ .<%= Entypo.css_prefix %>-hourglass:before { content: '\23f3'; } /* 23f3 */ .<%= Entypo.css_prefix %>-gauge:before { content: '\e7a2'; } /* e7a2 */ .<%= Entypo.css_prefix %>-language:before { content: '\e752'; } /* e752 */ .<%= Entypo.css_prefix %>-network:before { content: '\e776'; } /* e776 */ .<%= Entypo.css_prefix %>-key:before { content: '\1f511'; } /* 1f511 */ .<%= Entypo.css_prefix %>-battery:before { content: '\1f50b'; } /* 1f50b */ .<%= Entypo.css_prefix %>-bucket:before { content: '\e756'; } /* e756 */ .<%= Entypo.css_prefix %>-magnet:before { content: '\e7a1'; } /* e7a1 */ .<%= Entypo.css_prefix %>-drive:before { content: '\e755'; } /* e755 */ .<%= Entypo.css_prefix %>-cup:before { content: '\2615'; } /* 2615 */ .<%= Entypo.css_prefix %>-rocket:before { content: '\1f680'; } /* 1f680 */ .<%= Entypo.css_prefix %>-brush:before { content: '\e79a'; } /* e79a */ .<%= Entypo.css_prefix %>-suitcase:before { content: '\e78e'; } /* e78e */ .<%= Entypo.css_prefix %>-traffic-cone:before { content: '\e7a3'; } /* e7a3 */ .<%= Entypo.css_prefix %>-globe:before { content: '\1f30e'; } /* 1f30e */ .<%= Entypo.css_prefix %>-keyboard:before { content: '\2328'; } /* 2328 */ .<%= Entypo.css_prefix %>-publish:before { content: '\e74d'; } /* e74d */ .<%= Entypo.css_prefix %>-progress-3:before { content: '\e76b'; } /* e76b */ .<%= Entypo.css_prefix %>-progress-2:before { content: '\e76a'; } /* e76a */ .<%= Entypo.css_prefix %>-progress-1:before { content: '\e769'; } /* e769 */ .<%= Entypo.css_prefix %>-progress-0:before { content: '\e768'; } /* e768 */ .<%= Entypo.css_prefix %>-light-down:before { content: '\1f505'; } /* 1f505' */ .<%= Entypo.css_prefix %>-light-up:before { content: '\1f506'; } /* 1f506 */ .<%= Entypo.css_prefix %>-adjust:before { content: '\25d1'; } /* 25d1 */ .<%= Entypo.css_prefix %>-code:before { content: '\e714'; } /* e714 */ .<%= Entypo.css_prefix %>-monitor:before { content: '\1f4bb'; } /* 1f4bb */ .<%= Entypo.css_prefix %>-infinity:before { content: '\221e'; } /* 221e */ .<%= Entypo.css_prefix %>-credit-card:before { content: '\1f4b3'; } /* 1f4b3 */ .<%= Entypo.css_prefix %>-database:before { content: '\e754'; } /* e754 */ .<%= Entypo.css_prefix %>-clipboard:before { content: '\1f4cb'; } /* 1f4cb */ .<%= Entypo.css_prefix %>-box:before { content: '\1f4e6'; } /* 1f4e6 */ .<%= Entypo.css_prefix %>-ticket:before { content: '\1f3ab'; } /* 1f3ab */ .<%= Entypo.css_prefix %>-rss:before { content: '\e73a'; } /* e73a */ .<%= Entypo.css_prefix %>-signal:before { content: '\1f4f6'; } /* 1f4f6 */ .<%= Entypo.css_prefix %>-thermometer:before { content: '\e757'; } /* e757 */ .<%= Entypo.css_prefix %>-water:before { content: '\1f4a6'; } /* 1f4a6 */ .<%= Entypo.css_prefix %>-sweden:before { content: '\f601'; } /* f601 */ .<%= Entypo.css_prefix %>-lock:before { content: '\1f512'; } /* 1f512 */ .<%= Entypo.css_prefix %>-lock-open:before { content: '\1f513'; } /* 1f513 */ .<%= Entypo.css_prefix %>-logout:before { content: '\e741'; } /* e741 */ .<%= Entypo.css_prefix %>-login:before { content: '\e740'; } /* e740 */ .<%= Entypo.css_prefix %>-check:before { content: '\2713'; } /* 2713 */ .<%= Entypo.css_prefix %>-squared-plus:before { content: '\229e'; } /* 229e */ .<%= Entypo.css_prefix %>-squared-minus:before { content: '\229f'; } /* 229f */ .<%= Entypo.css_prefix %>-circled-plus:before { content: '\2795'; } /* 2795 */ .<%= Entypo.css_prefix %>-circled-minus:before { content: '\2796'; } /* 2796 */ .<%= Entypo.css_prefix %>-plus:before { content: '\2b'; } /* 2b */ .<%= Entypo.css_prefix %>-minus:before { content: '\2d'; } /* 2d */ .<%= Entypo.css_prefix %>-erase:before { content: '\232b'; } /* 232b */ .<%= Entypo.css_prefix %>-block:before { content: '\1f6ab'; } /* 1f6ab */ .<%= Entypo.css_prefix %>-info:before { content: '\2139'; } /* 2139 */ .<%= Entypo.css_prefix %>-circled-info:before { content: '\e705'; } /* e705 */ .<%= Entypo.css_prefix %>-help:before { content: '\2753'; } /* 2753 */ .<%= Entypo.css_prefix %>-circled-help:before { content: '\e704'; } /* e704 */ .<%= Entypo.css_prefix %>-ccw:before { content: '\27f2'; } /* 27f2 */ .<%= Entypo.css_prefix %>-cw:before { content: '\27f3'; } /* 27f3 */ .<%= Entypo.css_prefix %>-shuffle:before { content: '\1f500'; } /* 1f500 */ .<%= Entypo.css_prefix %>-back:before { content: '\1f519'; } /* 1f519 */ .<%= Entypo.css_prefix %>-level-up:before { content: '\21b0'; } /* 21b0 */ .<%= Entypo.css_prefix %>-level-down:before { content: '\21b3'; } /* 21b3 */ .<%= Entypo.css_prefix %>-retweet:before { content: '\e717'; } /* e717 */ .<%= Entypo.css_prefix %>-reshare:before { content: '\e717'; } /* e717 */ .<%= Entypo.css_prefix %>-loop:before { content: '\1f501'; } /* 1f501 */ .<%= Entypo.css_prefix %>-back-in-time:before { content: '\e771'; } /* e771 */ .<%= Entypo.css_prefix %>-switch:before { content: '\21c6'; } /* 21c6 */ .<%= Entypo.css_prefix %>-layout:before { content: '\268f'; } /* 268f */ .<%= Entypo.css_prefix %>-list:before { content: '\2630'; } /* 2630 */ .<%= Entypo.css_prefix %>-doc:before { content: '\e730'; } /* e730 */ .<%= Entypo.css_prefix %>-docs:before { content: '\e736'; } /* e736 */ .<%= Entypo.css_prefix %>-text-doc-inverted:before { content: '\e731'; } /* e731 */ .<%= Entypo.css_prefix %>-landscape-doc:before { content: '\e737'; } /* e737 */ .<%= Entypo.css_prefix %>-picture:before { content: '\1f304'; } /* 1f304 */ .<%= Entypo.css_prefix %>-video:before { content: '\1f3ac'; } /* 1f3ac */ .<%= Entypo.css_prefix %>-music:before { content: '\1f3b5'; } /* 1f3b5 */ .<%= Entypo.css_prefix %>-folder:before { content: '\1f4c1 '; } /* 1f4c1 */ .<%= Entypo.css_prefix %>-archive:before { content: '\e738'; } /* e738 */ .<%= Entypo.css_prefix %>-trash:before { content: '\e729'; } /* e729 */ .<%= Entypo.css_prefix %>-upload:before { content: '\1f4e4'; } /* 1f4e4 */ .<%= Entypo.css_prefix %>-download:before { content: '\1f4e5'; } /* 1f4e5 */ .<%= Entypo.css_prefix %>-install:before { content: '\e778'; } /* e778 */ .<%= Entypo.css_prefix %>-cloud:before { content: '\2601'; } /* 2601 */ .<%= Entypo.css_prefix %>-upload-cloud:before { content: '\e711'; } /* e711 */ .<%= Entypo.css_prefix %>-bookmark:before { content: '\1f516'; } /* 1f516 */ .<%= Entypo.css_prefix %>-bookmarks:before { content: '\1f4d1'; } /* 1f4d1 */ .<%= Entypo.css_prefix %>-play:before { content: '\25b6'; } /* 25b6 */ .<%= Entypo.css_prefix %>-paus:before { content: '\2389'; } /* 2389 */ .<%= Entypo.css_prefix %>-record:before { content: '\26ab'; } /* 26ab */ .<%= Entypo.css_prefix %>-stop:before { content: '\25a0'; } /* 25a0 */ .<%= Entypo.css_prefix %>-to-end:before { content: '\23ed'; } /* 23ed */ .<%= Entypo.css_prefix %>-to-start:before { content: '\23ee'; } /* 23ee */ .<%= Entypo.css_prefix %>-resize-full:before { content: '\e744'; } /* e744 */ .<%= Entypo.css_prefix %>-resize-small:before { content: '\e746'; } /* e746 */ .<%= Entypo.css_prefix %>-volume:before { content: '\e742'; } /* e742 */ .<%= Entypo.css_prefix %>-sound:before { content: '\1f50a'; } /* 1f50a */ .<%= Entypo.css_prefix %>-mute:before { content: '\1f507'; } /* 1f507 */ .<%= Entypo.css_prefix %>-flow-cascade:before { content: '\e790'; } /* e790 */ .<%= Entypo.css_prefix %>-flow-branch:before { content: '\e791'; } /* e791 */ .<%= Entypo.css_prefix %>-flow-tree:before { content: '\e792'; } /* e792 */ .<%= Entypo.css_prefix %>-flow-line:before { content: '\e793'; } /* e793 */ .<%= Entypo.css_prefix %>-flow-parallel:before { content: '\e794'; } /* e794 */ .<%= Entypo.css_prefix %>-left-bold:before { content: '\e4ad'; } /* e4ad */ .<%= Entypo.css_prefix %>-right-bold:before { content: '\e4ae'; } /* e4ae */ .<%= Entypo.css_prefix %>-up-bold:before { content: '\e4af'; } /* e4af */ .<%= Entypo.css_prefix %>-down-bold:before { content: '\e4b0'; } /* e4b0 */ .<%= Entypo.css_prefix %>-left:before { content: '\261c'; } /* 261c */ .<%= Entypo.css_prefix %>-up:before { content: '\261d'; } /* 261d */ .<%= Entypo.css_prefix %>-right:before { content: '\261e'; } /* 261e */ .<%= Entypo.css_prefix %>-down:before { content: '\261f'; } /* 261f */ .<%= Entypo.css_prefix %>-circled-down:before { content: '\e758'; } /* e758 */ .<%= Entypo.css_prefix %>-circled-left:before { content: '\e759'; } /* e759 */ .<%= Entypo.css_prefix %>-circled-right:before { content: '\e75a'; } /* e75a */ .<%= Entypo.css_prefix %>-circled-up:before { content: '\e75b'; } /* e75b */ .<%= Entypo.css_prefix %>-left-thin:before { content: '\2190'; } /* 2190 */ .<%= Entypo.css_prefix %>-up-thin:before { content: '\2191'; } /* 2191 */ .<%= Entypo.css_prefix %>-right-thin:before { content: '\2192'; } /* 2192 */ .<%= Entypo.css_prefix %>-down-thin:before { content: '\2193'; } /* 2193 */ .<%= Entypo.css_prefix %>-arrow-combo:before { content: '\e74f'; } /* e74f */ .<%= Entypo.css_prefix %>-dot:before { content: '\e78b'; } /* e78b */ .<%= Entypo.css_prefix %>-two-dots:before { content: '\e78c'; } /* e78c */ .<%= Entypo.css_prefix %>-three-dots:before { content: '\e78d'; } /* e78d */ .<%= Entypo.css_prefix %>-cc:before { content: '\e7a5'; } /* e7a5 */ .<%= Entypo.css_prefix %>-cc-by:before { content: '\e7a6'; } /* e7a6 */ .<%= Entypo.css_prefix %>-cc-nc:before { content: '\e7a7'; } /* e7a7 */ .<%= Entypo.css_prefix %>-cc-nc-eu:before { content: '\e7a8'; } /* e7a8 */ .<%= Entypo.css_prefix %>-cc-nc-jp:before { content: '\e7a9'; } /* e7a9 */ .<%= Entypo.css_prefix %>-cc-sa:before { content: '\e7aa'; } /* e7aa */ .<%= Entypo.css_prefix %>-cc-nd:before { content: '\e7ab'; } /* e7ab */ .<%= Entypo.css_prefix %>-cc-pd:before { content: '\e7ac'; } /* e7ac */ .<%= Entypo.css_prefix %>-cc-zero:before { content: '\e7ad'; } /* e7ad */ .<%= Entypo.css_prefix %>-cc-share:before { content: '\e7ae'; } /* e7ae */ .<%= Entypo.css_prefix %>-cc-remix:before { content: '\e7af'; } /* e7af */ .<%= Entypo.css_prefix %>-db-logo:before { content: '\f603'; } /* f603 */ .<%= Entypo.css_prefix %>-db-shape:before { content: '\f600'; } /* f600 */ .<%= Entypo.css_prefix %>-save:before { content: '\1f4be'; } /* 1f4be */ .<%= Entypo.css_prefix %>-ff:before { content: '\23e9'; } /* 23e9 */ .<%= Entypo.css_prefix %>-fb:before { content: '\23ea'; } /* 23ea */ .<%= Entypo.css_prefix %>-pie-chart:before { content: '\e751'; } /* e751 */ .<%= Entypo.css_prefix %>-line-graph:before { content: '\1f4c8'; } /* 1f4c8 */ .<%= Entypo.css_prefix %>-bar-graph:before { content: '\1f4ca '; } /* 1f4ca */ .<%= Entypo.css_prefix %>-area-graph:before { content: '\1f53e'; } /* 1f53e */ .<%= Entypo.css_prefix %>-chevron-down:before { content: '\e75c'; } /* e75c */ .<%= Entypo.css_prefix %>-chevron-left:before { content: '\e75d'; } /* e75d */ .<%= Entypo.css_prefix %>-chevron-right:before { content: '\e75e'; } /* e75e */ .<%= Entypo.css_prefix %>-chevron-up:before { content: '\e75f'; } /* e75f */ .<%= Entypo.css_prefix %>-chevron-small-down:before { content: '\e760'; } /* e760 */ .<%= Entypo.css_prefix %>-chevron-small-left:before { content: '\e761'; } /* e761 */ .<%= Entypo.css_prefix %>-chevron-small-right:before { content: '\e762'; } /* e762 */ .<%= Entypo.css_prefix %>-chevron-small-up:before { content: '\e763'; } /* e763 */ .<%= Entypo.css_prefix %>-chevron-thin-down:before { content: '\e764'; } /* e764 */ .<%= Entypo.css_prefix %>-chevron-thin-left:before { content: '\e765'; } /* e765 */ .<%= Entypo.css_prefix %>-chevron-thin-right:before { content: '\e766'; } /* e766 */ .<%= Entypo.css_prefix %>-chevron-thin-up:before { content: '\e767'; } /* e767 */ .<%= Entypo.css_prefix %>-text-doc:before { content: '\1f4c4'; } /* 1f4c4 */ .<%= Entypo.css_prefix %>-open-book:before { content: '\1f4d6'; } /* 1f4d6 */ .<%= Entypo.css_prefix %>-voicemail:before { content: '\2707'; } /* 2707 */ .<%= Entypo.css_prefix %>-triangle-right:before { content: '\25b8'; } /* 25b8 */ .<%= Entypo.css_prefix %>-triangle-up:before { content: '\25b4'; } /* 25b4 */ .<%= Entypo.css_prefix %>-triangle-down:before { content: '\25be'; } /* 25be */ .<%= Entypo.css_prefix %>-triangle-left:before { content: '\25c2'; } /* 25c2 */ .<%= Entypo.css_prefix %>-airplane:before { content: '\2708'; } /* 2708 */ .<%= Entypo.css_prefix %>-light-bulb:before { content: '\1f4a1'; } /* 1f4a1 */ .<%= Entypo.css_prefix %>-add-to-list:before { content: '\e003'; } /* e003 */ .<%= Entypo.css_prefix %>-browser:before { content: '\e74e'; } /* e74e */ .<%= Entypo.css_prefix %>-cart:before { content: '\e73d'; } /* e73d */ .<%= Entypo.css_prefix %>-cross-hair:before { content: '\1f3af'; } /* 1f3af */ .<%= Entypo.css_prefix %>-squared-cross:before { content: '\274e'; } /* 274e */ .<%= Entypo.css_prefix %>-circled-cross:before { content: '\2716'; } /* 2716 */ .<%= Entypo.css_prefix %>-warning:before { content: '\26a0'; } /* 26a0 */ .<%= Entypo.css_prefix %>-cross:before { content: '\2715'; } /* 2715 */ .<%= Entypo.css_prefix %>-new:before { content: '\1f4a5'; } /* 1f4a5 */ .<%= Entypo.css_prefix %>-cycle:before { content: '\1f504'; } /* 1f504 */ .<%= Entypo.css_prefix %>-numbered-list:before { content: '\e005'; } /* e005 */ .<%= Entypo.css_prefix %>-right-1:before { content: '\27a1'; } /* 27a1 */ .<%= Entypo.css_prefix %>-left-1:before { content: '\2b05'; } /* 2b05 */ .<%= Entypo.css_prefix %>-up-1:before { content: '\2b06'; } /* 2b06 */ .<%= Entypo.css_prefix %>-down-1:before { content: '\2b07'; } /* 2b07 */ /* social extention map */ .<%= Entypo.css_prefix %>-social-github:before { content: '\f300'; } /* f300 */ .<%= Entypo.css_prefix %>-social-social-c-github:before { content: '\f301'; } /* f301 */ .<%= Entypo.css_prefix %>-social-flickr:before { content: '\f303'; } /* f303 */ .<%= Entypo.css_prefix %>-social-c-flickr:before { content: '\f304'; } /* f304 */ .<%= Entypo.css_prefix %>-social-vimeo:before { content: '\f306'; } /* f306 */ .<%= Entypo.css_prefix %>-social-c-vimeo:before { content: '\f307'; } /* f307 */ .<%= Entypo.css_prefix %>-social-twitter:before { content: '\f309'; } /* f309 */ .<%= Entypo.css_prefix %>-social-c-twitter:before { content: '\f30a'; } /* f30a */ .<%= Entypo.css_prefix %>-social-facebook:before { content: '\f30c'; } /* f30c */ .<%= Entypo.css_prefix %>-social-c-facebook:before { content: '\f30d'; } /* f30d */ .<%= Entypo.css_prefix %>-social-s-facebook:before { content: '\f30e'; } /* f30e */ .<%= Entypo.css_prefix %>-social-google-plus:before { content: '\f30f'; } /* f30f */ .<%= Entypo.css_prefix %>-social-c-google-plus:before { content: '\f310'; } /* f310 */ .<%= Entypo.css_prefix %>-social-pinterest:before { content: '\f312'; } /* f312 */ .<%= Entypo.css_prefix %>-social-c-pinterest:before { content: '\f313'; } /* f313 */ .<%= Entypo.css_prefix %>-social-tumblr:before { content: '\f315'; } /* f315 */ .<%= Entypo.css_prefix %>-social-c-tumblr:before { content: '\f316'; } /* f316 */ .<%= Entypo.css_prefix %>-social-linkedin:before { content: '\f318'; } /* f318 */ .<%= Entypo.css_prefix %>-social-c-linkedin:before { content: '\f319'; } /* f319 */ .<%= Entypo.css_prefix %>-social-dribbble:before { content: '\f31b'; } /* f31b */ .<%= Entypo.css_prefix %>-social-c-dribbble:before { content: '\f31c'; } /* f31c */ .<%= Entypo.css_prefix %>-social-stumbleupon:before { content: '\f31e'; } /* f31e */ .<%= Entypo.css_prefix %>-social-c-stumbleupon:before { content: '\f31f'; } /* f31f */ .<%= Entypo.css_prefix %>-social-lastfm:before { content: '\f321'; } /* f321 */ .<%= Entypo.css_prefix %>-social-c-lastfm:before { content: '\f322'; } /* f322 */ .<%= Entypo.css_prefix %>-social-rdio:before { content: '\f324'; } /* f324 */ .<%= Entypo.css_prefix %>-social-c-rdio:before { content: '\f325'; } /* f325 */ .<%= Entypo.css_prefix %>-social-spotify:before { content: '\f327'; } /* f327 */ .<%= Entypo.css_prefix %>-social-c-spotify:before { content: '\f328'; } /* f328 */ .<%= Entypo.css_prefix %>-social-qq:before { content: '\f32a'; } /* f32a */ .<%= Entypo.css_prefix %>-social-instagram:before { content: '\f32d'; } /* f32d */ .<%= Entypo.css_prefix %>-social-dropbox:before { content: '\f330'; } /* f330 */ .<%= Entypo.css_prefix %>-social-evernote:before { content: '\f333'; } /* f333 */ .<%= Entypo.css_prefix %>-social-flattr:before { content: '\f336'; } /* f336 */ .<%= Entypo.css_prefix %>-social-skype:before { content: '\f339'; } /* f339 */ .<%= Entypo.css_prefix %>-social-c-skype:before { content: '\f33a'; } /* f33a */ .<%= Entypo.css_prefix %>-social-renren:before { content: '\f33c'; } /* f33c */ .<%= Entypo.css_prefix %>-social-sina-weibo:before { content: '\f33f'; } /* f33f */ .<%= Entypo.css_prefix %>-social-paypal:before { content: '\f342'; } /* f342 */ .<%= Entypo.css_prefix %>-social-picasa:before { content: '\f345'; } /* f345 */ .<%= Entypo.css_prefix %>-social-soundcloud:before { content: '\f348'; } /* f348 */ .<%= Entypo.css_prefix %>-social-mixi:before { content: '\f34b'; } /* f34b */ .<%= Entypo.css_prefix %>-social-behance:before { content: '\f34e'; } /* f34e */ .<%= Entypo.css_prefix %>-social-google-circles:before { content: '\f351'; } /* f351 */ .<%= Entypo.css_prefix %>-social-vk:before { content: '\f354'; } /* f354 */ .<%= Entypo.css_prefix %>-social-smashing:before { content: '\f357'; } /* f357 */ entypo-rails-3.0.0/app/assets/fonts/0000755000004100000410000000000013341310031017370 5ustar www-datawww-dataentypo-rails-3.0.0/app/assets/fonts/entypo.woff0000644000004100000410000013140413341310031021574 0ustar www-datawww-datawOFFFFTMlbo>GDEF POS/2HV7t cmap ʁcvt fpgm 0gasp glyf *Phead16hhea<$hmtx\locaDHHJfmaxp InameJU!post  prepXXxc```d6g-Q xc`d``b `b`d`dT,`Vxc`dN`ŴB3g0dd213Ã0N@k AԀPAAxݖilTU"akZs/P E@ePDJc@4 ?I%l`!,b4 "A 3c[#&-=F~837y@ HY GBz~rh _7a R1( _ID*#W"#/r"o7Ǜ-Vx^;~7?/~ݗ)h3tOz]'z^źR/kfU7#ɒ&YIKr%_OHP.2JJ$,eR.2i 3M#]UGˑkIt:gULWKc~tZUtA.L}]3(=.H7E3"T/+&]T$UH K_n}km9ٲ幖g[&6h~9rnzS4FļDY"7+x [jxu*!:^)>8^c7cWcbbuXřyϩq2I vuC"w;-ta*7Ms\GU{Tz_VTzOvjWTQUjڤ6w:FR+jToKo}dw_R9w^IְNXyAB~ ]EYg$ :,BXЕ}\aݝFΦX-x>hA}Ȃ^a zG,Z-<ǂ<=Fβ B<~}" mAzyko>Y[a zYz0т!4y,x>n0O#X3-^}2 -Kϲ`yu-(o*:0 8`2bnbg*aA9͙3OT9bfs/13)^ xD88J'>C?nI٣ۗXfN͚΀J>r4?ӝVp.m^`Cpz^>8tE<8mK8Z;.F%ǽ!s_؛xc`@F FA@xUiwFdOڒPD14.) @h%"'1]|gОӏ;^ZzNKル;o{qy QGJ^T*񳤮^(lQ+M#Du.VII^3҃o M|S~ߔ7o:|S^oJmm)St%Zj93>d͈Eo0JuI)uU$c듒5iliton]2ꆝO#=t4S]*.jè6"6Ml;]|C0ϩ5TSuԕ򼫻c뮮KSVCg)2jud[56"dUI^>!zzׄlɤQ3*Eّr?B痢qvA1DA5tf#k &d,]cQYct ko')6Ju}n#+vYfѨJutY62;hXg?i6a[*R=UvVP+>QU5c4.k b\F&jb]Asߘ,N/o~+禑V-#m9(vS@5iq .D :o 9m<(;LyeY(Q>EbÉMXn?=,m$ĨW#4+cǹ ص+%g< !9/!ȹ#`G<& Or&rZ 9)9O!xfdsRou,([P~0reΨXv"," ,"EhڄK"RƗz/yG|x x\y.׹ٳg4*뺭dɲ|8 8!.!!PǡRJ%PuKOiNJiß~?GlIN#K/|[~  e$B!ـdWpx'gEllw1r.CnԪ6!nD()qd5#9%bx 7v ,Y쑣8-vR1Ĥ Y}~Ƒ~ .#khy ajCAX$Z,?*- mIdEq4F 1XE,f0" W0G$3MNT;3/>̓< y )"hPjO': ` kV";3xڡ[de~CNA?m]-AFb Ra@: 0 3B! ĺ8 :ɏ48w^,6slq}0PPgCQEj{oC,bJ6bD8sc F8<l<'≨ 9Ia'K0Q yEh /sy)5]{֮?^{׭&n/;w|i/_'הJ;wܳ{=;vJk\Z}<1UҪ:Bއԣau9p&p'I],p>T^aY]{ z' )xf?;NݎZ֡8ueX7XvĻicv|ΎvЏEf,^O< (7G=v@ŮСZګS u[_?YIfgwtсd}^U1Ub͠f &Qӏ=߯hOٟ_CІ,+m0X hUf湻ű*XY ,/P6f9N!Cbr$h6߾jΖL!Y G >Jvb TR?-"{fTQdA 8Ē^EcPჸ\= ڂD(4mټ~o\h}o/NCY"7gȝN3)MBI0+!6t #^v&q,ޞmn6'yv&Мm/vûsOB1oqھd ̄r><7#-dƎtxܭP(2 urbjkхHTw$82cׇ԰!$ C&N(Nu"N=v\tvp=*Hygqm#][=͢}$y=-2EPsІh2pM}}[t 0,n(3Eӊ.] jB hZV0A92DѴLfe5O_,rTli$M\$ v 5"%yR'!J\)$<8蟼~$xYytwéf yqZ>dݐo7zgw;wz` Q7]P knlqk!{mnqx" L#;wML۵Hg]qw7Џ)z(Ts.5` Dk<(c'-`U`9u4ի'R䰁:"*t"R @[fϬZӷ{(va2>vWuss#sDRYUa => xXfvG8w~#o`UI@`v0<=x\(ύլC Z02Z.b`dj_zἩ hW \l|PρO`ROh'N؝/m8K~@>F2 3Sy4Fk_M[:uf|1)q(P;a\A&fG}$\Oo=tqHjH$I~,ۼuDF&H9zs5_<{Н&b mDE6Nl,ڌyj,&:l<7e"b%0]X[7Kh;{bV~Q:k f>+%Le澗Qzriz@("YɗɨcئWxS0:,#3ۆ&(u+&mb*Pv2[vQ%]._YWeAHjhdݺK%#l6PwHPjt+\1sX?E*V`@:_p`Yc^dQ{*PM6g`HX$C<(d ) @fVcnڸfr`i]eΨ;d:P`;DʺDbNzAFk80<" `[q6YeQI4M'#=vM|mxNWu$3)+甀VL~lMx[[w&m 9tҥ{s[0 hr\7'r@;VD%/x <%!VJx f`N`d3cV0S"Y1cǙ@R8w>arblXk Utg0`BPFO=z$Oim F U"Ŋ1x gY$I$,ղqcA3  ēv LSZ>ޱy@^ɷ6ᆠD͸aORpѡI8ICӍ)솓14G,2-̇}c LFZ;xbP4SBuGߐ:sie flwt\>-!*Rv^vunXwo/J5~o)rf.৖ T%?"zYeAq2d1 O,DZcp`)dz`wC%צ`Ϥ=CMKgD\r|lp?nzHBVv8~пP6ܾ;qH+ A|)›{wiO4}|oާeJCn~g} 1S1aĘ$V@b0Ӡё,pRD 8^NJL?JCaАq]=IPZVs8O^RQ,iy%.%[gfZGԾiN#'rvW838)7gCj>ZO_^Q^QyTWMQFEM :ֱuʩ^'~9$9ec lj&aAYN7)6VͷLܼٕl7.> rge2W36g3rវt;Fzr:r%}CuB|x݇~/qt$`81\,]=Ą3d#۷ѕT7`V b9n1=xq"; :N). bXJΘ`6+8f|Z̉۷$5hy.t[LXK%ojJ#, Z&Nf8{߫/N|*%YIړ Jx@&KYi S`8~ [tWT;0.a)a15WANEBy a1,Of  Ѷѓvx'xܧ?<5%+Z(nᦼK*BRnCW+I؀9χx0fx-䙻W7x.Nlu] lp*"iEe3z ?-y LCS6=:ci8o6dqؿG7>пp'RG*Q;=vPAs"B c 08 d$U;Ne.r SpGjV@8vT'&;N]V_d$Ѥ8QN`^Lw~|I)(Ym c40Ҡ;Ma& 8VK\^$KĩSR(do;5%rT>g촇rG$G mhpX;Ũr9tiG1;r<*o =FxAlAATO`(E!e?W6& Td`V";0+Vt>蔤$qs=+o=}Tyt=mQs4H۬I.H܌zA*ŘB#홏>Go ޺=tkښ~{. {(}Yۏěc2#_}1e)&D^K}\L|8cWg ʅx/݀Z ^N\h"42LoҎ~*`bÏua&"\)I Tk)d 1ؔ.BkTe}0`Fz#es:V"ď4' 7 cJ []pQRLKi¢@hiJ'c| q;_IoJ=)d CǍ8o*^[JVX.KEjoH.ؠu%_,\/_ҏĠ%yj3GSA{dw[r|(oM%ᑑp^3'"fm\so8MXGW+ム;O$T(GeB]`ʘƓ*L9ex>` $f~]rZZ>Qy*8u!W๲9W|XkךN|~f/?tj/UX˟~U l5I+dbNg_ cD^4/H):?'`9]KA5Re:C,ΣIHY\*N~2}L}}Vlӗ.!#i)vPPH;PH!ܣȌλV 0B6N(|a!Q]1^gH@GZP@'4@YMCG~wy4O%RSs.$"H/X%; /&U.wyOFׅ%5JR;EZ@[ʪO"B2~"쭁X] #:Ԅ7FO&6}2C'#;k‚lt}xM[1,oـ̢hEf f^]G3Nz?D>W#θ$: U Fx3$Čɂ;D:Y4XrxoixV-Gr57/|i3$n✊q#]yOe 6=P;XzTSR[g*hl_joD X CP I%K=|K.W?9wfpsϟ?;3  rѹ g7c8qEṲAи]]Lj+eOhLC]i)ӹl ]5g P05*)Ym=fM$l626fWŒ3_yI3aOo3+IZXK}>Iv](BŨ樤P.=hD;mo8ض}D{eyǾvmһ4嗀 ``(J%Da36nؑhTէD]4i;#]Kz-%ItIo i< Gfgɰl>h\4 <7|yWb~IBaҕ@%uzF ]$k8h~d<_|J.~YW!hJhV ~L&:h,&. N^Z?wͥTLW9ؗW"{1y?~/[=`rErM5{l .ƿL^ߞsWv}p<1Է1|e `}R7l} ?@ӿ{G@ @ӵ-dq @4ѓ^x8In>c|wn%"nj㪩)t\)dJ kzu`D*q4<0pT 6۱SsǾMޖ˺v=U'kCCѓ+v;әLqvZ%顾"?Yf %ݥ/kq_kV& s@d:C^̵z~X\[MjX JeP`"H"A#_Ndy;RP:͒\ڴ4~f6joml<;=My}͊qC͸&IW5;`w­8 [Զ]Tr̜lY?~pۙzi'q냬w&KQkqd+:>d7JiH A5݂c:5c! 7#`zh:iQ :lY̚8L6$&^؄Yw;nQ#IJz2͘5jx44z-Jp:5fB1vjWj=1JDSERJb)1|<2\A658?\:8;x~%;`9 =]h9Wl?ݓ?d$W\qI{fF?;=r\XF6E8C@\-CJJW (#s[۞9Pɹ#5FQA3/^ rlDGitzFr@]Sp`opt'f1tGUAqa#v{`BEY-dYdö 7Z`fkx%+, *rD!w.UZ)ѐd}9kt Ϋo}7xL9t7DX(H #]bٶ嶩~d6Ѭ23VfYnD,df/wډ`CͶQd'fضu;6:q݊exLI8@p4&4VzpR͘:h@o$ BE߫\(^cBI%JO2Ԓe mOZҙ$Luj6ƶtzږXGr]́6c u4ϟl%zV|&Ih5ݾ$yɑLȯXVKU0{xs cM :x/0,3e/j`^b qFt(D#I aB7;c1]7[֯nI7`Ʌ՗FqfD  ˎ\w*eLfGu] BRR2N> N.l{))c 'ֶu} 7d9,<7}(JA7,I<øP<>6pI-\Et8zәZ 'pA?K~(LiȘn`њ1}8/gƞƖܫݢWK4򣹻չ&.>gG kֻzzKOwwHՌM.r@3 e+ ReϨrKEoK}fiWvT*Ig{$pS|og]Up޷yzꈝD2D n_C ʍxws+2ih,"'o1V]ނ֩%;V+GXTĘm BSY=ta3H[0L8.ASt@=XneM- ^[_DVFgOSJB׻r7{ l/s3NNqߟ_c& 1{R ";9yl2;2d2T-ͽLO>.Ntd^D#gYAP~O(EV#+b :*FDXq{h|Dڇ#ڇݭ}xL{ʅO ?H_?}%V2SYΏ4nD9U nq,{<'84:V /6ѭ ̟-ңG-ZKIF>~o__|רlo} ƢdQ_N|W/ti+z -cyï=ZLVH3V}Ep Q@9kh;$tzY~2m!-K"]f>_Fm Sמy>_ôhJ  {&0Ōڊ4O6vf0ĹtC_\WJTn@%1?qx'Jύ a׷]̟;/İ=BxmRo֦ޮ'V}|No5е?M%#y0fG.mYsItMU3-ELJ1;,k8tsmG!/<^! Х_КK96rt)~C}Ƃ]wj]/W@cqQ\>4nC[у!7|s&ёu' zÕ`+@ڊ^HrdXY׾HмVnb[G/UBrT/6oݗO58ޱv|tX{oحp$m-h z'I,>jCڻ67|/~}x4h$ݵkޡ1'ӡP-מqڔPc,no.9ڟ\Z<ԧ\|;{pkn>͙E_`-K!D DwNlT#,OqdS-&"=MCCjxiMR>J@ YkJ+'yD!*0`c+oxcl@Ls ݝJ!eOOk0;qKDw}H8-4tu(BFΝb*s^ؓ?5|$UvxOtBqtybq5]<eLtى7Knfĭ,9yѣ ΈLP3_ʾD#_*4y7/,rX7:%^R`4K]vt |'cRQd =[S(=iG94Ă19/JR2txR/p{|[cnu@Oeg]}#mMӵgj^>uߞk&[f=g7?1 5s7s|KϦͷ\KYq( H1m(zH&`sӦM'۔f{ ڲjuA|xbl,H$&}c6WL3Q4~aU3ڜ5r2~3T)7+CCѝ0et:C&s_C0`@Gr:vCL4yїd`#vJ \kP#@"%p$rYm}?[+KhC}нktEMۯK[VXѕaEMrҞIh'~82d(?ړJux?@ jS c|6+j! D=C~6Vit'A33%zRe~JDYۈ=jI {]~Ԇ5cvoY)ʒ2OHR1]Uud|7u05vWYBSj'j̸m>V]_Hixrgtܠq녅 \K0 .4yka(R;Ev}F/n2%Kh%ubK-TyWzoʄXmx=QZ/tCOe 54écYk mHXi8ݠSfݖ3붬@1-+KIVM{dlɵ}>]ڴ-j^ЅF3jgiENOvb6:C@H͸b,r[M|| 'V+s?Q]0wO$lK|Ţ;ׯ%wwx{"<{7S`#aemB]_`VWI'x2.3_9Yq(|Eד5okoZa]  6 ?:31mVb#+&,(_jS& 7&V+ӥ'[FcOp#-5mc_K:4|)I`>p>)Hi;g4=IӤG~6J3VW\> ?\ 儵sN \o P Mj m -tJm>[eDaMj7Y`BA݀e=J ]OGH{R&_8eso0֤6D~'tv.L୔Sb#Y2qyKqͧ]+k>O hD6x\?|iyC_;@y4e'X ZFF`^Om4v2"'#{47Ţzb6-g\`7ZhX-D (rE"Yłn,qcS}˹X(Z-i$c{$~Eo|5VH_&'Y- 3OD{r>yEQ^ʮX4ka]BD/J[k<&Lh4cނ1eFe [u׭YhBѧ$Iʥ[V uuVW(]`S~z,{a\_gENtTx?A2 J d-=X:i5L&ƻ߾HbNyl:O2@o6 WG8ύ?%M6m*XPJEv\sN!IX T`D/Qx.}bv|ڛ,LS׊y^-4{/D=t,*Gp}-B0&E[LO2JzԨ@d}gݶ6wSCWvOq "/& nAo"i`B <^m7)2/H63pÛ ^4 :@; uwuvtU(`ς]`CքFfܝmвrJwZ6At 6Ӈ`ɠu1{kYʥae[+5>Xf.yY:^.ծvmu##}4U`$㓉:p)5ـ~\[(:we2ֶdT2 3l@&sN0]L!v²ƥ!K)X5ڊPh-jO{)Iţ !@0]1r8F XZ]'h'iQ ނAz48VWepOۻU{[zh4zC3yx<03~`a0c8ƥqKiJ\BҔC !RKPr)Isi~94'M.#Z{K!%=C[Z{I{=}_Y0 w7:b7tm쪺Y~ݛ&唲+N%;2fdU-h|G$%)fWsCqbnA H!猾%ZeWj.q@s\jo*ҮZD&$Z?!P`;6M݇?u;?.X/JG=Yx|b<7uKr>xp,ݝb3]x;h`I؃D4f[2pOEXBE5Źh8h"X6]YpWIGW -͊,,k:,ڳ@:9q8ti]FݕZIcǮ<qS؞}1a_W& g?rs7iizϞ+6orfW06?n5ZKօV;vhEZ`2KD3'ehp CM|F PtNW2eE 52_9.wS,KgDJ87,` z9$z35Q@AgK*擐JN6tPd[0%C wHNs t/LzU.sI{ҘBYYq4p%mCnZ"<"R[g2>|x![kwŸd;f)Y/f?y!Rʓ~3lGI#A٘d=1>w9KR ,x#Cٸxxj$4.n^ESږNy=8',YU!lҕ,]d%RI#6R$GoV."paf~ݚ1b'1_I|*cWSV[G!;,jֱJAD6έ;k--A?.1XH`> UU88 $IT:0 %=k5X6i3{h$UqwomNwvy^;Jev:!nKw>F=6}pG||w׃`e'<ÓnAx<43p<+>N[Dn8#ȌeqF_5qS[:Q[F`4>R+_L7ØZkV ,x!J㉎D5cXU^j'zGi8HfM|̆tčÉy V2p)pRSjۛi}5u=asf>HR̎8[SZ1/$I%KNEq^njȹ ³ ƘET_~2L4?uodfn7#{&0:[~[F c2c1>6L,o8mp8 k.FD'Ȱ]mYzm{Dݠi=>YNV"Nuw_N=_MUl乿J~Kd't4oѤS/W[mb!/_ sr*J{B6CV[HoY؈YnSbbqNPNC:[[ε{Ͷ/cJ(jȲk%MnaZ!0jͭՌ.uˆ*k9 {3hC˿em3q*=(;Vlkly%SX'Bbz'E$4V'nDiOi#LKbxNWu5Ίn,2  40z cR5w%; Tppcj;ջ-?O{1>UsWδvاvNI8I1kGBu/&u GlNpGM hbBRD_;L\"%!q;9n:R Ⱥ!|݌Z,8~1*PM p,oT1k#U~jv5 3a[ Ce#5wûf|.W|n2dFa# 1udv 97oRv%.1t@f`HSp0~tLWph`yژ[i<E/;8J/jzԍRG @>Iy'xੈsxS͜$sLZVA0{ 58-AbvhvSv' qVEEC bkv5'aid܌o/4=h60WVfb-;c#Z'j^ >?.ԦYLgDp7SF"* }G ?2>7\.3P˒?r[waղL?ш {"m&'D'`7 M܆Q$XMIBX8b xXp `>v-Vq i-`4Ev*Z|-We!@]d_o{ fg9crĶ͛ztO9͙:(U8u>w)fLq``mfp"fV́(iЍkoY^ a([ߝYDaNd(ѶZ:xW&b< 4\+6Cι$6Cci5TP"X 88j$ŠQƾҰ`UEms78+.JN_ 0x23tzJn%&HKlɕh0 #y04tWB%hLm A`g r\j4R/0`cJ6ڠ(CjBծK1x!uth6t6+׈x2%xB$b%!icmd0$܊ed8| *!'k>I-՝);wgJ#r1m@C5UyAz'~q|.]dJ_9ٿ8xY0sظG.|\»0!XCGk yr#B6clE VW@3Hk>bTچp:MR VK[{OM[T;4)Bԅ1{1W"I8ZEîI4!D" Ԡ>A=D c3f>DXDk5z|Eh*a|Gł_I}e*z@ O$+n*&7.jsғ7y?,Ztop79/ kM܅/n{c[Z5:e8G6) ޹`Jr2hgC=OfWt?XTlN~zޝ*D}) )L OMl$Vm[ aIƣb!EMV< `"aj_hBCSA#[Ov Ġ8CV Ճ.EiTjin[2FkkRii#>ߎpeR")= ‰.G$R wi fVL7:W,~?CuR1+Dœ~k9!әhrS{M=q?DڤA&(\7>ᡫs[鎤!!(=BA*oKJO]HgA~*׵ ˧?i䪽#7Zq)|SK&Z1j:%-,'*]#ɔm«9r:ULPFtl.O#+*y4(JD\ JԳ>F"N5|_X gU5rտpS ww+ڌ/^m$Xsx47ɐZ!AR E2Kh`VE`txȔ@"زA_+|&49zMV)Cqx -^x/0mo@ʘPw3 /CpMD[WمAW/. 3^Qj §y6Xc[̝zG07hrYKMEw! iF\  us`D Fx&m'tq3I ϱӱyXEז6OuVb&&}V<; o (X\[▱|vr{k#ge#z|$*5oG{">S^id7uu݂hh7oXIbF7K"FwX4U)0k}(+ˆ@6۫'k-xoƠgjD8 =KT߸8|JekW9'l6Gh@rqޠΌMW%ǺT@6o_gJDRS}c4Zk!1%c]qҼ[v q`PgIuӍo񦯖c۶B^Ȧ"8׾z曏|k7ũ{ d`a] rǫ}1̱)  ׽,jdEX=حژݞ&#lbVo!;!j0I];73ml/#w논1 Q ɝ,@- io>^ZWۻgat3 h4 l&y s9}̑v_Q]b5>sGeIipE3nP(Va5~ҹ2@w 8;ORۮ? sa{͉O5eTFɽ'9grUYP'L<#+/M^x!7SNȳ{}V?O#`Ĝw kTs`KCF[xGXh`l ܛH[܉_ j Na]S#}J1nId ˎ10@6VV3˜n|lD_6 )B@D'L(Kˀ BЁX{-^NIȒ3 o-٫D#054He|EӴhY<5 |>R-txCI G7NS]A ڊ]o)S^˔N1'2JƝSq{COmb[kVG΋#} 8)q HUr@ rF>Sr[=УnV@Vş? T\==٧?N?|<r1 (=]_i⏡56@\G|PC H4fP+2P+,YchibȘY~vnS{^cc[ګu nP#z{5.oB=Bq\#es@vGʊMTS=ꩃ9=VǮ6Nw۪\5rm.ZP 3i.YT]xRVE?Ff[I[Yf9mv$;a`Dc ޲3^2ICY"+o+Yp$ D屌c#?BZ>Yߠ2C[X~Y͌~m~ ύkoٱO ]D1Lf`MČ~ĬKC#B԰ ;R~ lj6/gɘpQ,0/VQah˥gtȟZ:=-1g4B,B(.7c 4):T-싫H owCLKr?*̱" =TlO4.ٞd]jKC"EVRt%Ikb"A#`ИYNIE0>vC7|5Oo8t?|޻ĉ;<@yOt[N@ ҉0.Y1J^>qd/Y,d]櫥̒xEkTњIvt_3usv . QϚQ>$p(71y՝'?sʽs~&_i܊cJ#k>WR;> Nq6;6J)i1O5eF(/ZW6Ub"ƒ6r ,NbktةӔ#cF`$3I>շGKy-[\ v윹bzԖ]heio˵ Zߧ\Z1ڰܐ<}Y lQ4񖇊"H7qpNA[ EdvtEJ`ǎDT?:Cn?olw<1ծ /V%4 l0w%Nw2̻+w7T*Hw: ^$ F 2̩s0{?ԑ0LnۭJۯ;Sxr< »tvਬ 0.BƟMiFEH%]ow@fìvinU%k{<ɊB[D]i!)|ⷫ?IRJuS1. tLO+s+~}Z6#CT@4ޛ S0 f[X64wldbHҊ)Z.e $ H@p?$MCs}h;˴p` $=LqƋ #ŌD_jF.<;0?w_ttM} 5]]ܽ֊R==]ӿhr)JhH"ҵdWg)Ѐ +KB5KJV1 WF74`5\ZHe\ `HRCq\Ԯ4C]^es8(;泀XjOj״C1pASvqfYe{|s\Rs6P"b~ j>ebMj^5;{)nE$ZA,E,14$b5&ƚ5eBt;*G;8V.dD'%i2+n5\)gtb3hӧN*JE9yTz݃ۢ QO/N)U,VӃ]gwCȽ:zx ~@z[e,Dٮ~@2TW hP17aSmZR{^@Gvۯ[٫~D~Y)Ʉ,;Nڥ\ Gx,ޙ[N?Rϵ~Y@GQ;jn 8!1PF"+IMBJhPZnwd}`框/r!}#O=TM{㢸򦔒ƅ$8&_2pѩt0^GEqşTTWW9<ǭ[ v4)(#sf*'Ȳ@B{IY2[y*q.ѤV5~ ao2*3eų$#Mx\c ?>y/C]Νk{,͵aՉV` *e\ڳZRbM|.߂Av!U '+M37/0?R0/m~yK/B| O;JkT)^T*ϥhx4f)*xd35zŢiO=VSs!d( X6;u~FrX'Yy%U"=:M`'0xo yĂ,#k3(VitCJTȁ\#OSi,C5sY75L8rsDŰeh&<5) Q1!mN:p>7P۽T.? MU;sӪK/';|p_e>wm{*j%hahW5;XÝ\7{zm'(z] ./z5>yW1_!H?A6VK-c2z6$eϬBp ~X6KpцKH"j޾3w쮉D !>T)P."/ee)490#*.%޸u[@,/ux-E_"a0ey|MX.+Ǎ۩$b>ѷƷ`G'o\R FA.tK}g;S@d$+L&WN}ͻ{ϑHH(V` ;$,& Nյ- ΂i$IL,18`HFOFd$!+=V*rgDN%-$O,9|P Ad$iP֗FJSpU;?#RFА4vlj+bRrN/vwZ;.+8hBFkk;  j~bp@aTnEӕ0Cҥ#9NдUQ;"MEu ۶{$46 hԅ5I@aa.3_ bts{՚u)H\ƽx>1 P 3o7w]`}0׵9OR^ 6 9` Mw$3$3+c[Bd;Shqi ?\r8q1P*JTMG/Dr:E`0frZy>[ߚsuts+"DԈZO:QVxЈ&5xFT"R*YWhgCl(KqG\$HVXVM=&2hI"Uޝ 0̆ޑёfSkk/.y@/6/ 5doIJؐVj1I<-!AR1KտZ|1Ӽ'lIZrcMn@UqZ52JށCs57t{No6ϭJ#\H& ZU ̳a\6^qk%t6M`uI7J6*Pk٣;ޝy4oA3Syӡki++vNM˿SY(0LQ=P^3}_"Q$2D B XmܞAZmuN ;Ԝ?" D߄U%1@\!9h&]nM2uYmdͦR~?x,j}C$ٶl[5Ie-?0vUQ#2uE-`ÅMWcww4޽d|-X 1>U}Tzu~CgdR+9<ktn$Voэ Ԡ=7g7Յ>{+ټ ` Qr#iHUWnٕMy ^VQ"O|)`bw#VnTʐ80 cQnEOM0J_h\E1\6_sb|,ߖ˶8 ͝G.aM+)EZgDy8K쫈dމI@=&Dm"Xz%#IeWxz$c^AԜZٲ׻bF;6k^'d>eAD1r1`5EّN趫E2Nmwsh#FCx PƐd閞 *|?xS5LdlP`o&AmΰUqbSGY6gjYWoĿm0AR"П96}| X5 [1lgIUowus $HA%2i\|NCg<_|J#E=i%wU^N9z05btL?Z AA} 2Iff!,'h 7kDb&3B~÷;n)'D: %#슔hS!"~]NŕaOg3{p$f4%Ii/3|5Y3m -}+kz8 p4!Ewn/=LDw썠N_7;ٕaʏGFK#ytw> a{#<OI&ԀZܣ>\ {3q3NݑXڎ'+H`x<:Ndiޚ_$b^v[GBF~aQpۏ^omM$%@1%Nr4ʛj^vF$Fs1m|c/O3JN `+` {`;mH!­:NhȼnQA;"lx%*$ ׃ʛ0a|AK9VT+hc}Ps7rA03RVc>KBF=dwGqE%gtK`@`|й?}\ڿZ0f~O^(L==m$g =@ "{ԈŤF0Rpʖ3km {3d=A& ƵtV Iu}w k^.M3y=^a$_Pam1 &E ]UUI,C LT/%bM'kdR]gl`R 6@TsZGʤq¢N3t.\L9ixP Ρw~ m{s7'[/6flicP/q]27h,*Xvo;ᐠbN!N$-xԐBޘ2Fk Fq P\K˄W y>' oŹ$Rmmxo~[XJ%ed =Eftlh[rt \lɉկ @aUMUoS"P O@+Ax^በ >KBp.` OQIF15=MXY]nͼ< l8B6pO&+x,8- -mrܹyMD+IBy-/ t\XvFcECϞܡ榝[uJJY,ˢVt~ynb91\q7z ^rlװ_KV53*y%/zCB)Nm j(9WEEHcv:{TvXv| Y-c`4@N/v(ʇ$(E r{ǝΧёDv{}O .یzW3hOQg9q2^eLtJ$#MataEKK׬Yq86menUr~$I$d 7$FͧD|zb?ɽ!,iIŝNG?ǣ e [p2BCjac8#6,uE4̫872I;_G_7ć ?̫\z'' "=,Hzxv[ {Mb1 ]Vعp&:Rb ՒEp\<vE%P,C8v Zd+? ua_Յ ?Cm 6V9r,H=cC1@m¬.'Ъ5K|NhޫX{dA،ObC=RtEHN"~P+j%[y}^?s t^Y\ܸ'kTpnq+;Q>ࠡ˜HƌŐa giLV˚x53qdd> n䕽fX.oцiDl;ˤl9ڝZz.NU/4lWDcjDc'ݵ] ES!9%,Z[GՅiqcHu#.X"s`v5_;Ud9FGa 'ޟ~/WgFn~kG_zɺ乞|˩ssݯѣȅF`>%b)+\-4Ky$nùhXH5:vG{k9WgٖT%G mL ~SxO QdLQ_ỹc~!4zΞgqFN^;>u}'ॖ߿\yWtkoO qmm TH'}3Ȟ#k@eӋ @MUf )@ %DK RBcp463`0%7[D-x2aT|؏׆;@'; 9Jo=C} k/|zewA7<3\Z3cO?s0~ؑh5tQ/ޣq ah|dB/⠓ٵhifxُ0k;Av5+~[ozCvL_k$uJ<,Z,yldv.+B@4k$- ߛ;WK]y0㕫6^9෤4:, ey3~os5}瑌PKy'6ۉYbV~gØ<,h AllC8bzdThϡY]M0D3Ǽ!&='z!JeL\0wJE1fd"MpC{3==tL-fCVM n~3&.X'81.^=4+7_MgvTJ*d i_CP(YTk*z u@t?1kUħc8wdZp]Vg0Ħa#MКN'&Sf)|15Z&[-ו"pnP`Ĉ^Pd_׳sѩ=?7吳 ᇕ!8>i݉}<#淲蕕At.78;1H-4-Z>-mMGH505lƀ$58huD3oH K$/u&=Ԗ3҂H  DGFg6! *n)BR ]-Be|L]@ j*IRV?W;7vjhՑ&x &\H$، yk]lgk'G47p%4&qfA+Cg|ً3 ooҁ+w_sY+L&4?U>O,'cݽ=5| aiO, 퓞 eoZeEiqG8Ʊ޺t *gfB?'']<3vǒ;U۾p8#mj|ܵ{F[\«ezK޸ Z9&K% -vDXG&ѥYs)6[P4G}5qGS94)Q}.<}$xZӣgIDzgtjgd7*o2srE.CY EꂢٵcPУJ(3MCw墮-)ˍ'j>$O4|X:W[I1:U%ЧA-=qAE,3GOnȆ#*X\׻~=VDIp?Dҡ8#,F[81 ߲`:&kFkb'MāJ3 3aPf})EĈ~G+2aQ7 "ୋu2_jl:8>{u #>$=\fbd]G¤J͛XϿQj2$p24ހo{;ׁ~8<_S+E'd%{3 HC{_Qot݂լ]DΙޥE(2vduW_q,Vb$l$%J%%&&'(4() )h)**h**++L+t++++,,<,`,,--X-. ./\/0P0001"12*2334t45 5h56X7,789:^;&;>?h@J@|@A:AB C4CjCD,EFGHGH HI0IJKLLMMNNO2OPQTQRrRSTU8UVVWXYBYZ[[.[x[\P]]^L^__x_`B`aBabbrbcxcde!1 )9^%^^5^ -=>#>>3> +;~'~~7~/9uw=\Ov}\_w\nꆹnFnƹnB& >Z47Nk7g[8uNb`9&{hݘ?~I,KLԃ>ӚNnʡ%Q7VqhӳWbM1qR[{Ljnimol穓m$TR_-Ǚ3gv4q69`b Fm0 5i=sTsO2ez_se`YX~b1ZUŚX7牾y~;%_z_z_z_~|j ?|@}/H'mI(P>zJJvܒHHH"Eg}EEFʍ)7VXcʏ+?V~Xc'MKK+uQt%.wISM囪o/|L_~ze/S?݃D {PIO PDLLU&ߓݛNK'oʢ=zח|}뫯zG@ ?TP=#A=y뇠Aoqj9B?Gjke%CP1sx!°j( АOgГ$G90 &/Y9 +&g\*%Cf0ytUTmjyU[Y^j6Rz`^=bBCd eC~?+[KRXYc #D #p( ERD +D$QX@XD&QXXDYYYYDentypo-rails-3.0.0/app/assets/fonts/entypo.svg0000644000004100000410000034472613341310031021447 0ustar www-datawww-data Created by FontForge 20100429 at Wed Feb 6 17:44:49 2013 By root Copyright (C) 2012 by Daniel Bruce http://www.entypo.com/ under SIL Open Font License entypo-rails-3.0.0/app/assets/fonts/entypo.ttf0000644000004100000410000021633013341310031021432 0ustar www-datawww-datapFFTMbo>OS/27tVcmapp cvt fpgm0 gaspglyfP <head6hhea4$hmtxXlocaJfHmaxp e, name!LUpost  prepX8G8G`1PfEd@+RjZR, , \+-!9!!!!""##(#+####%%%%%%%&&&&&0&=&a&e&k&&&&&&' ''''N'S'^''''+  $)18:>BDFOkqx "%(*-036:=;510/.-,'&!    ++--!9!9!!!! !! !! "" ""###(#(#+#+########%%%%%%%%%%%%%%&& &&!&&#&&$&0&0(&=&=)&a&a*&e&e+&j&k,&&.&&/&&1&&2&&4&&5'' 6''9'':''<'N'N>'S'S?'^'^@''A''C''E''F++HKLMQR T UV ^"$_')b01e68g::j<>k@BnDDqFFrLOsQkwqqvx !"$%'(**--0033669:<<??BBEEHHKKNNQQTTWWBBMN\\de      &&>>TT !" !*)@&WKOC+3!'3#! f!X<S0@-MYQE +2+"=#"4;5425dddd,S@MQE+2#!"435ddjR $J@G"!@fddQ A B   $$  +2#"&7476"?6#"'>32327o.6P6/5#"d.< *( Z4N*F-ITR4,3K3/-('8,N`@<(V\dX%@"@>=KOC+%'7!!dtH->K2PX@ h B@ h_Y+###7ZdX%@"@>=KOC+%5!5!5dtH5=K2PX@ i B@ h_Y@ +%'33dnaN 1@.@>iMOC $+'7!2#5&);^Zd;)2 3@0 @ =hKRF  +7"&53!55s);l;)^ʖܖ  8@5 @>=WKOC+!'7!5!5!5 , Zd\Zd:"+;@8) @YMQE$#'%#+$+!$%$%" +>32#"&'#"&547632.#"3262#"6VS==Ulpr55S5OPPO55O/H@Ef dWKRF  +2#!"&54635#5##335*:;)(<;)&dd:*);<(X);>dd/0@-WKQE +2#!"&54635!*:;)(<;)& :*);<(X);>dd*@'fiMOC#!#"+++##"&5#"&762T T,P662#'+/37;?C@ W"    W! WKQE@@<<,,$$@C@CBA=;:9876543210,/,/.-+*)($'$'&%#"!  #+2#!"&546335#35%35#35%35#35%35#35#3%!!7#3'5#75#*))*dd2ddd2ddd2ddd2d2dd& dd2d*4))*ddd2ddd2ddd2dddddddddddd0@- @MQE +2#!"'&7637'7''7*:;)"'T'RHHHH:* );((J~H~~H~J!@MQE+"542 2"5!|BB:@@BB:Jt  &+&546&546qRv  Jt &+%6'%&5447%6'%&vhv <g @MQE  +&546%2#"54JJLv (:.:::<g @MQE#.+%6'%&54'432#"5lLJJLvF ::.::j?R#0pT@Q=:>MgY@fdYQ AQ B`_ONIH<;/-)'+"'&=4>54'&'&=462%3276'&#"476707657"'#&#67>54254'0/&'&3.1b`VUUV`b1.30Ԯ [}Y`jxT\eeZ' #Z>:D4! >?\! 8+.\f.v"''''"v.f\.+84,v NN v,42 66&\2662 Z$    Z B0""B\ 2g @MQE  +2#!"5463JJ>L$(@*BB$&@>_+7p6  &+&546T!!x  xD&+ pD&@=_+ &pxD&+%pD4 jR !-9EO]ktV@SY  Y Y Q A Q B#"A@;:54/.)&"-#,!   +2+"5463'#"&54632"3%2+"5463"&=4622"&=4'&7676>'&76&'&'.76&6'&202QQRqrrqkU==_+!%%!x@^^@\ .@+>  =KOC+%%!!'7''y^^@xx@H>86>\P|rr$!@YMQE)+"&'&'&7>3226764'."\1-H!$|'"H).[|&!!'|'!!&, %% R!& 2dle@b;- @) @  f  Y  Y  Y Y YMQElkhgdbZXOM%,$)"5=$"+46;&546320;2+"#"&75&547&'#"&6;32?676;#"'.'&'&'&#"!"264&"V9 ZG' :  **!\jFPb"^:UG+ f/71(4)317"Y 9U$$CL-< +*!'XM):"!UU8+#') ] e5>F*G# jhR,U]~@{G C@K ?  f  Y  YY Y Y Q A Q B.-]\YXSRONJHFEB@98-U.U9"$"+4632546326326#!"&=4'&'&'&'&7"!54?654#"."&#"54&""'&264&"LC#$V9:U "7-MZ&!+*C15%HN?6+ e$](,%#,8+('^GZ 9VU:^"`OMf["** :Y &"1%(&(5l8,j +,, ,4as@pG!B%@f  Y  Y  Y  Y Y  M Q Ea_YWRPMK?=75430/)' ,++"&546;2767676763232+#"'&#&264&"3203254'>54'654'3264&#!47654#"+V**  :)GZ 9VU:^"`OJi\!y)4"'#8,j +,Y %$/%(&*e+ C12&LC$$U9:U!"6-M['!yH ])'#+8,*&/GMA5* jhR.]e@G - C #%@? ?  f  f  W Y  Y  Y Q AQ Beda`SRJHEDB@<;8720*(" ..+7"&54>?67676=463!2'##"'#"&='32>?6326=3272673254'0'&=!264&"BMJ0: *e+!&WM);$U:9V!nH# +8,%,(]$+?D*<[F' '8 **"[hHPb"^:UV9 Y ,+ f.8m5(0+8!dX #A@>YYMQE #"    +2#!"&4635"&463!2#2#!"&463X((d((((C@ >_+$676' '&'7H5+)|ғ}.)5Fk##@ # =MQE$'(+ &47632762654'&#"'&#"kFFF@XY=:8@@6*&&@35hj06@N,2B@J@@::44::(@A#&0\\0J@B&k@ =_$)+ &476327632%FFFF=ZY@8:=YX@BJB@::44:Q4"@!=_""+'&76'&'.''&'&7676.+/-8  F-W9HGE(*JUI4*740.IJP# &*$*A8Y89:<>&+%&'&7>&'&7>F0?\l=F0?[m>t@0J101+3 xR0J101,3 2g #/2@/YMQE%$+($/%.333332 ++"=4;2+"=4;2+"=4;2!2+"=43 PZPPZP^PZPPZPPZPPZPPPZPP:ZPPZPPZPPZPRZPPZPPZPPZP@@>h_+6'.'&#767676y  ^FC+*!6$!<;PZd\[=>$#:B.+VTh MK .B"CFH3?`h,@)_@cbFE=hhh_# +#/.>767632676727676722'.'&?6%'&'76'&76767>767/&" F 14r" {P,# <*:0bH 1i8,RDD(  $ ':&- L.!  L #Z68:/60*  > $X ,NNF(N"88 F (>D gV.W-7E@B(*@$"> =YMQE43/.! +%&&"&'6'&&'654'6776'672772654&"W FB6)+..+)65SRRJ>6(,//,(6BF P`jkk))>:NRRQ7654PH45>7Q PP N:>))2JHnjLKmmKL 1@.WWKQE3+#!"&762#35#  ,nnn"d, &+&7076'&'&'&707>7'O(]\Y//^\dZZ'' l4/'' @MQE+  &54$̒ΐ<@#5@K PX@,h\\fMRFKPX@+hh\fMRF@*hhhfMRFYY@%$!  +2632#!"&546323&5476654'#&'7254&076\cGFFGcImkKNM 2 $# $4bkODCCDhHJhlLLr  t ' & r  bxD$.5@2YMQE+*&%#"%5 +#!"&5476323&547632654&"2654&"qCD_^DC_`((DC_bMjMMjMijMMjMD`_CD^_DC`H:@B_DC4NN45MMN45MM544>@;@hiKZOC; +##7'333!!|pdPPdp|d %  &("&xddp p<(!@YMQE=)1+63!2#"'&/&'&6#!"&5427N&Y]]Y r"":r /a2 2a/v  p  @>=_+07067&'&'&#' 26H 3 8h 4 H ,2 P3nR<"@@5+=i B+'&767&776'&'&767672767677K-d04 8>* $ HH". , 7y7QM75550!"%;E g{OO"OXNXE//4//ixyB n,$ 0O#!8 @ >_+!"/&6>#".,v(4$'O4 \b%@"@MQE+%"/"'&4?'&4762762#4444#2"44"2W/@,  @MQE+ &67''77aVXXV\\VVVV/0@- @MQE +2#!"&54637'7''7*:;)(<;)VVXX:*);<(X);VVVVS &1tK PX@)^dYMQE@*fdYMQEY@('.,'1(1&&-="+>32+"5676?67654'&#"2'"&>TV* K.)N ?Dp,:;--9;<>z@<;" c$6+(&$,)3Z<,-7;Z7'3@0YMQE$"''$" +4632#5276'&#"2#5276'&#"&46V<&&NO" oG6-<&&NO" oG6-=KOC+ 5!!m|^h &+%$7>7N"GB62'4"-1Qv|8vj &@#@>=MQE+%">76767635 +yzV  (88de|h--09ASA@55B@?  @fYMQE +2#"'7326&#"3'3676#vwwvmFTb~~|Z[|yxxyyxXJ<WW|̦uu7@4@fYMQE#$#+ 3'3&'&#"327#"&PwvzY[{~~hNFmtt}UV~=KOC+% !!z`JJ@>h_+#!#JP^|@=h_+ 3!n|^dX +7X@U   Y  Y M QE-, 30,7-6+*('%#"     +2#!"&4632#!"&463$+"=#"4;5423%2#!"&463m,dd((((dd((dX #/;Gd@aY  Y M Q E=<10%$ C@=KOC+!!`ھ|%@"@>=KOC+ 5!!m|^z@>h_+#!#|P^|@=h_+ 3!xn|^ ,8E@B @hiKWOC876543210/.-+%!56767654'&'&'&'4?&'&67623##5#5353/))_"# ".\ H^2ddj "##</  0  5U+:t6X"7.5@2-@YYMQE640/%$+2"&'&'&47676654'&"2'7>76"&546329t.1q99o30r9AA@@AA@] "CZA@.v1&NF JK&11&HM JJ&?XZ????ZX?? ,>>,.>  xR/"@( @MQE$"+'&676;26'&766'#"'&?&+U 0 0* 6  $(  0, @w\A"0) H( j1 ##@!E@B @hhhKRF !!+2+53'3#"&54632&5476326cGFFGcjhImkK NMo\DCCDhHJhlLLkO &@#@>=MQE+%&'&# 2VzyjX6n79 --NB6+Xou/ ,@)@> =MQE+ 2&'&# jgOM&N USSjpĊNB:21Io2,,NB>| &+' 6% '&?'&76@>  \      $<@9#$ @">WYKQE5"+463!#!57#!"&5"47>7>35 A! dMKU @"*LL01' >8R)(HU+[#,-1K PX@:\f   fZ   W  K O C@9hf   fZ   W  K O CY@10/.'%$#" -,3!$ +6727676;5!3203#!"2+!7#"&=463!!;0>/ ,|. -\0v""d,,b$$0F\$    8''''DD2 K@H>=fdWKQE   +7"&5#7#!73'3!'!2);fddf);2;).;)/&@# =MQE +2+'#"&5463*:;)(<;):*);<(^); #A@>@=MYKQE#""#" +46;!73+5#"&52+'!463;)^;)2(<*:;)2;));\);<(:*););2c@`  ?  f  W   WW WKQE+*$#"! +2#!"&5463!!%#535#535#53#43654&542*:;)(<;)  >ZT68):*);<(X);djZ??>#` W1nQP87OhiTT)>h|P87ONp $(, @,+*)('&%$#"!  >_"+#"//'&54?676!'!!'  H \hhhh~>2=@ <)@KPX@fQ AR BKPX@fVQ B@ fYMRFYY97&&%%+'&'&766'&'&76%>767676?32767=ȍPmronmqoy !,-PQ<< !,+QS;x+4$Ȏpnmpomm:FBX,- :FBX,+ -4$@%2ɶ@KPX@%^ZQ AQ BKPX@&fZQ AQ BKPX@#fZUQ B@)fYZMQEYYY@ 39'+ 7#"&'&' '&=46?6;23&'&+"373Ayy6" DDI@'#^prrp^*/\4 T_ f jT@RFF &J" ;())(; "J0r ~B 0@-WKQE +2#!"&5463!g*:;) (<;)  :*D);<();D G@DWW WKQE  +2#!"&5463!5!!!=!g*:;) (<;)(\\^ :*D);<();XxXZZlR" &+'%.?'&7%6%%%%j' &B6L & $n\0 $Z$ zZjR" 4f!@WKQE52+463!2#!"&5!!;) *:;)(< X);:* );<(  +9@+(%"9,  @KPX@1 ^ WWW  M Q E@2  f WWW  M Q EY@ 74210/.-*)  $# +467!2!7467!2!"'45&676?!55#!5#3!265`Hd!L:4N (DFD0,X2$>2,(PPdPPd2?@<Y YMOC     +#'&!5#42"&4Iv2vC^CD\DB xئvD\BB\/ +H@E$ * @YYMQE#! +++%2"&5465%#"&4632%4&54632#"'6>XYzY+1=YY=7%Y=>XY=4&$W?>XX> X|X>XW?>X   4>@;%?fWZMQE22&$$$" +34632#"&%4632#"&3!#!"=0/#54;2!<();:*);<();:*);+2r66b(<;)*:;)(<;)*:;  LLPV 4e@bf   fY Y W Y M Q E  1/-+&$"!4 4  +462"&'#53>32"'&#"!3##"'&4763232676c^^__v(҄y4Nxf sv'͊vRte ^C]]CA__Ax|t4R\(:b>b:(d> :*D);<(dd);bxx @@K PX@/^^WWKRFK PX@0f^WWKRF@1ffWWKRFYY@  +2#5!!53#!"&54635!5!5*:bnb;)p(<;) > :*Ddd);<();&xxdW _2+%#!".76760 "'!/ !' @  @h_+!''7!=h_+7'!''!7j(ddhddjdd&h/E@BfWYKRF  +2#!"&5463!!%!!"&5*:;)p(<;)p,(<:*p);<((:dpdd<(, "-18o@l2 @  ^  ^  f  i W  WKQE87654310/.,*'%! +2+53!3#"&54633254&#"3254&#"%!!###);:*);<(&d&Zl򖸖 ;)*:b2b;)X(<&&>,%)-X@U ^  ^  W   WKQE***-*-,+)('&$"  +2#!"&5463"3254&3254&#"!!5!);:*);<(&&*";)*:;)X(<^&$&}4<<jR@>=h_+!!4RnW"@>hMQE#++!67673#"'&'!265gfjjiwugfxwih;CMhk@18/+ N" k!< H b]YC @hh h  hh   fg Y K P DEDjihea^[ZXUGFDMEM:96542.-$#%+32"/&7>''.54767'#/0'&5&6374'43272636?"#>'&%+"5'#+"566;23 V|()]  U@+"@#b;5?<1A, ,<."J >$8)(V20V` Hz0 fI?S]_A&<8RJ)/G9T@2dlhS2B ZF&P{"Js8@5fddgMQEihVT>=/(.+&767676767676#"'&'&0#"'&'&&'&7>7>76767660#"'&'&&'&7>7>7676d<1$5===Jd  8@@8tD....Dt26538''6@;())(;@6'#!@YMQE5475+#!"&/&763!26&#!"3!267 "#8$"22X|"N"0,46*v.. J 18IU@R5 4*@fYYMQECA:9.-#!11+"'&'&'&7&'&76320#"'&'&'4'67264&'$26764'.#"* +He86poop- $#RSFG#$[5()D!: ex+&&,HG,&&+h*4E /.?z>Y1811118D0ZE):)m ,>!!!!j+R '@$ @Q AQ B7+"&54674;22654&'#>NN>(ȌdB2d3Id#zOppOz#2dF:VrY:F*P@M@ fdYMRF  + 654'& 3'35Rjkkjpp*|Ԕiiii*ξ* 9@6@YWMQE+$ 5476  654'& #'73z(jkkj(̠̾ԔiiiiZpr*9@6@YWMQE%#+  &#"3265%355#|4ҖkjԔ̾TiiԔZrp* J@G@fdYMQE  +5476 32654&#"5#7#zDjԔҖ9ppniԔS@ >_+"/&47676C,%))%2&&&&2<Q@@MQE!+632"/&5470 &&&&0r$,,$!<c@ @MQE(+"'&?'&7632q0$$$$r$,,$S@ =_+/'&4?62C%))%02&&&&2 &+6/&76 :  &+%/&?6  :  &+?'&76'& &+7'&?6/Md: &+ 6'&76Nrttt:dx  &+'&76x  &+ &76'&fxrtvvc: &+% '&763fzdX0@-WKQE +2#!"&5463!);:*);<( X;)*:;),(W WKQE  +2#!"&5463!!%3#353);:*);<(  X;)*:;),(=1/'%!-+&'67&#"&547&'632&#"654'67327&4&567676&'67327%&'&'6=67#"'63)7IY?>6 7=B2'-8:TNxnJX(u$> ]) "%;1/w8ZD D  AA@0d em Um:6m8HK+%-08ttjma@0 "R(> % *0j ,.U0d$Jc_'8v * h MC* ~@&aK PX@!^WKRF@"fWKRFY@$#!&&;3+#!"&/&7670?63!20%3'!32!76##(=;x (βff(,(F (<:u * rrdd*4@1@fWMQE54!'5+#!"&/&76;#%#'326&#!"3!267 "#8#"2hf2X|!P"25+3-v.. J *!*6@V@S=<87!&#'"@YYYMQE##%+'&'&76$627&"&547''"'367654&"276'4'|>77>Wg]f.-><|<>Uid2@@Ah.,hihh.;?A;>Xf^Vhh.@[\\[@Ab>^`_U>;A?v6N""&+%'&'&67'&766>'.6.-^^QPj:6`bOKI 0 0PMM"%%PK%#  &%Oh 2 2 @MQE+2"&54O\@AZA@.,BB,.I @MQE$$+2#"&4$2#"&4O\@A-.@\@C+.@@.,B@\@@.,B@\ !@MQE+2"&54$2"&54$2"&54O\@AZA\@CVC\@AZA@.,BB,.@@.,BB,.@@.,BB,. $S@P#@Y  K  QE$$"    +2+46;#"&53!35625&#");:*2<(22);nn``<5977;)*:d(<;)h..hBB4+5?I{@x  &@  f  Y  Y Y  YY Y  M Q EFEA@>=9821-,*(%#"  +++%2#"'#"'&5&5462;632#"'#"';6"26542654&"2654&"1GG1PW,+HGbGHNP1GG1P+#Nm:)*8**8*):)8*):)xFdFJ65A"L2FF2L"rNHFdFJNH,)((A(())()),7BMD@A)"!@YYMQEJHDC?=98640/ +2"&547&54626767>7&542654&#"2654&#"2654&#"bGJ M&54L"/FGbGHHGbGH)a6-F(8*)((8*)(8*)(F2Px2GP2FF2N"z"L2FF2L" @(M22(())G())0())4DOZepc@`A (8/'@ YY   Y   M  Q Emkgfdc_]YWSRNM(8666+2;2"&54754+"'"&5475+""&5475476;2=&544&#"262654&#"4&#"262654&#"bGHNdU,+HGbGHLd+#HGbGH.d#+HGbGH+,WdLH)((8*(8*)()((8*8*)(4F2L"465Ar"N2FF2N"rN "N2FF2N" ,"r"N2FF2N"rA564"L2))(((())'))(((()))4@1@YYMQE$$+2"&547&542654&#"2654&#"VbGHHGbGHH4(8*)((8*)(F2L""N2FF2N"z"L22(())G()))=HSH@E:90/@ Y Y M QEPNJIGE$+ +2"&547&544&#"262654&#"$2"&547&542654&#"2654&#"VbGHHGbGHH)((8*b8*)(bGHHGbGHH4(8*)((8*)(F2L""N2FF2N"z"L2v))((0())F2L""N2FF2N"z"L22(())G())0$@ >_+76.747676'.'&767676/^I$U%4 ls$X?!D$|%M+/$T ;VTp$D"? Y!y$@!  =_+6'0/70?676&%&4767%65 ё&  z  KK) nxNL(RlC)0@-)('   @iMQE+%/"5-#&5&5476 %754&"% *xyRyxYzYx  qqqq ;QQ;  %=-@*; @iMQE42+6&764&547632&#"'&+.7654'76{ lm20&FI=F$st'Z P5VdV=,㛜V  Ú   w7- 2M@J2)1*@YYMQE.-#" +267"'&'0767'762""'%&6?2767':e #ABBA# gD4 | ')%%l%&(PNNQ!4d&&d4!"""l,34L4L@ FE8710$#@KPX@*  Y  YQ AQ BKPX@'  Y  YUQ B@-Y  Y  YMQEYY@65IGDB<:5L6L#$%"&&%% +'&'&766'&'&76327#"&54632&#"27#"'&547632&#"=ȍPmronmqo<(8 &?KI=W%>#<F+ :?(@$&&&ȎpnmpommxP(#MA@PB $()&$D?+&B $R#-~>!-KPX@5 ^f\ Y Q  AR BKPX@7 ffd Y Q  AR B@: ffd   Y YMRFYY@)(#"!   +24#"4&+"3353#"54763 654'& DDB 88F捎ŢDstts8  ,ŎȌ梤rrrr~> +J@>@6 A7-*! ) @$?KPX@5^^  Z YQ  AQ BKPX@7ff  Z YQ  AQ B@:ff Y  Z YMQEYY@DB=<;:42('&%++ % +#"547632654'&'&/3267'#5"'77654'&#"676753&#"捎#06@ss0L18OCB2stk4 "/8E3>+)8<P>ŎȌ 4@ /K@A: HB; 1%&@KPX@:  Y  W  WY Q AQ B@=  Y  Y  W  WYMQEY@'000K0KJIEC@>86/.-,)'$" %+#"54763465#53'3267'#327#"'&'#53%654'&#"67632&#"3捎. ~t1 %C,07ED" 4,H stk3HpE5*.@$ 8>ŎȌ88:&t04rrdNF R\, 8~> $(<@843 )*'& @?KPX@;   ff X X Q AQ B@>   ff  Y X XMQEY@%%%<;:9651/%(%($#"! %+#"547633267'##5#535'#53'7654'&#"'3733捎o1~v|| p6,j~stn26L.RzL>ŎȌ6>lTDDllJ$J0 $dV97rrjRFb~>*6@K PX@;  ^fd \W Q  A R BKPX@=  ffd  dW Q  A R B@@  ffd  d   YW  M R FYY@21,+*)(#$!" +4&#"#7#632#"'#3276#"54763 654'& pXo $^`$ `9597dx :>PjJD,捎ŢDsttsXsfT^^VUGE[VZ02JJTŎȌ梤rrrr~>!~KPX@.ffWQ AR B@1ffYWMRFY@& +!5!!5!#"54763 654'& A\\v捎ŢDstts~RRŎȌ梤rrrr~> ';@7328)($#@KPX@'Y YQ AQ B@*YY YMQEY@;9640.!'' % +#"5476327#"&547'3267%'654'&#"632&#"捎& F=KVt1X! stk3AY=N&3>ŎȌ T *t D  .:6K PX@K PX@@YYK PX@5  ^^^ Y Q  AR BK PX@/  ^^ Y Q  AR BKPX@7  f^f Y Q  AR B@:  f^f   Y YMRFYYY@!!650/!.!-(&  % +"2654432&"#"'&?#"54763 654'& [ZZZV  jV"vr捎ŢDsttsttrrtt+,(ŎȌ梤rrrr~> $2> K PX@E  ^fd ^ YW Q A R BKPX@G  ffd  f YW Q A R B@J  ffd  f  Y YW M R FYY@%%:943%2%1,*$#"!  3%#"+4&+54&#!;3!265#3#3#"54763 654'&  h  h  N҂捎ŢDstts h  h  | ,N.ŎȌ梤rrrr~>"0<@%"  @!?KPX@fQ AQ B@!fYMQEY@##8721#0#/*(+&'5%700?''537'757#"54763 654'& 3$Fڂt||wx FLHVV^捎ŢDsttsRvz80z64;14\VZ j$T$ ŎȌ梤rrrr 1ISY@V'@$> Y YMQ EKJ72 PNJSKS@=2I7I 1/  +2#"&46"&#"'.'&547&67632676?#"#"&#&;27654&'&2#"&46{$$$$zGnF%K%3M@E< IB>8 @K PX@0   ^^Y Q  A R BKPX@1   f^Y Q  A R B@5   f^   YY M RFYY@"54&&A?4M5L&3&2-+$"  +""&#"27654'&"&542"&5432#"54763254'6'&'&#"&/3B @@ &+--+@ V捎,&,F-(40&f"AA"V...ŎȌ\7+%#$."$#%+7& @MQE+2"'&4"'&462r:;;:;:rr:&u:;;:;:uu:~> #ZKPX@Q AQ B@YMQEY@## %+#"547632654&"2654&#"捎ŨP<ŎȌ<()==)(<;)*<=)(<-@(>h_$"+.'&'&'6?676763276&676h!94%  7$EG5:   )U*HLuhNP.F", $2#68 6(Z~j L`.=6./~> 5J*)@KPX@Q A B@iMQEY@  %+#"547636'&6#"'&/&'.>7676捎 ==1&$+C(@#=5GE>ŎȌ~R 6&2&T^# 3 G#US.F@C-+)  @hfYMRF$#"(+#"'327.'327.=&547&54632676%9<<~g@_ ?W$0ToOR6:>?7|8*xyRSTPJ8 gF:d//Nn: B&~> 8~@ &.*@K PX@8^\\d YQ  A Q BK PX@9^\dd YQ  A Q BKPX@:^ddd YQ  A Q BKPX@;fddd YQ  A Q B@>fddd Y Y M Q EYYYY@64310/-+%$ % +#"547636767&#"&'"'#"'3+3265捎! *'7yI,,  E1ECMz>ŎȌx "8&^1 #4B(*h ,@)iYKOC# +#"3###53546;uY!fFV\~> ~KPX@)f WQ  AR B@,f Y WKRFY@    + '&545#"#33535#543n:H,ŎNC/,JJ4k"@@= YWKQE "! +2+35#54;5#"#3!"&5463,@A+rrV`Jdhh+A@,?+z,@6FmMB@,+?/<LX@ $ @K PX@H^ f \ iY K    W Z O  C@I^ f d iY K    W Z O  CY@'>=10XWVUTSRQPONMGE=L>L0<1;/."/'#+&57#"'&54676;"+'#"'.46763676'.#"327>'&3##5#5353# ?/J/"KLN 'D&2htCS9H/8@3YF;el&)P>$ ( !& **^^-),t5[3E?f8&/ZX6"TxR.R868 "%36> 2;d ! l:l^^~> AMZz@ )W @K PX@Wf   ^   d  f  ^YYYQ AR BK PX@Xf   ^   d  f  fYYYQ AR BK PX@Rf  ^  f  f WYYQ AR BK PX@Xf   ^   d  f  fYYYQ AR BKPX@Yf   f   d  f  fYYYQ AR B@]f   f   d  f  fYYYYMRFYYYYY@-ON TSNZOZMLKJIHGFEDCB<:860.+*AA  &$#+#"'&7632#"54763327654'&547654'636=#";#"#5##33532&'467 * +捎n)!<4"$(t" 2,$nL0LL0L*-!5."6<  ŎȌBD,0 ".: /,4^) LL0LL:!"'jP>@, =_#!+%&7676767&7>676'&'&'&&767676'.'&O"A T:H) 5Hg +=Z`+.dd\[&|WQ0x/#`k;(3A=X~U2(& mKQRU+@SIM]$/#Ê`_  ~> 9U@ 806@KPX@ AR B@hMRFY@ 9 9 + '&546'&'&64'&'&76'&7676'&67nR\ ?BPA44J  [\B0F)%*4/>Ŏ[I%& 10Fc `00B0dc .-)(34%;? V%?*7@4 @hWMRF&!+#"'&'&'&5#5676733#327?ao;33# dk/ 'DF:4"AB$^5?S .~> ,@"@K PX@&^YQ AR BKPX@'fYQ AR B@*fWYMRFYY@,*$# % +#"547635#"'&'&=35#5#332捎ł$" nn@2 "9>ŎȌRJ  (vJv,%B4  $rKPX@+^YKYO C@,fYKYO CY@ $#"!" +#"&54623#4'33632#4#"#<,*:9Z72  .K PX@9^  f  dW Q  A R BKPX@:f  f  dW Q  A R B@@f  f  d  YW K RFYY@%..,*&%"!  %+#"54763#3"2454&#"#'#3547632捎v``0h`:6BTb &0>ŎȌ0`@=K2*&>Դ&D *%-7EMq@nD?#!9 =FH5@f dYYMR F&& 42&-&-*)    +&'&'2&'#6767>76'&#"67 327&'764'67&'&0JPs d *=%r5bs1+OCA@|z\mLN<( nx#X2@P.4"hUl'[P%8p>9#CVb h|5W|JT d k (2!n[~>  (6DR@$GE   MI '%#@ ?KPX@E   f  d  dd dYQ  AR B@I   f  d  dd d YYMRFY@%77))"!QPLJ7D7C=;)6)50.!("(  &&+&=277&'632#"'6'672&'6#"54763654&#"367&#"&54#&,&70k] . I7 >"#'E1)qV"&[!/Bl捎bbcCDDCc.I#*3'`,*:FN,B.*Y9*Pv\*+CB R.9OŎȌ6`bEFa_FE-4@ 1?@<*( )@fYMRF()+62654762'54&#""&=3%3"&=73265&!BCCBfF Ff! :\AAAA\<""<\\\\  ~> '8@1@20?KPX@.fddQ A R B@2fddY M RFY@ 75"$%$ +#"'&543226=432754&""=#%5##"='326Bɋ\B"4B\D4XV4"C/.B捎fB..BB.DD..DDDD.BBFv@;@8 @MYMQE%+'#)%&"+%#"'&5476323254/&547632&#"#"'&/.'&#"32"@hkLMPOmo87$$0xNN:;WrSRBJDE$   G@b./?2$55`t  +\`Q12~> C}@ 65@KPX@" YQ A Q B@'Y Y M QEY@?=9742-+&$CC%$ +#"'&5432254/&54327&#"#"/&'&#"327'#"&54632BɋAxL& (-:^fB((>L97()K96 &",,&" 捎PB"JT<  J::()A;M25%+5$&:f'-@*@fMQE$"&%+#"'&547632&7>5 qppqpq6$MMFFEF4F !*Xtsstqr $"CB?;"lDl2L~> 0@ #"@KPX@^Q AQ BKPX@fQ AQ B@ fYMQEYY@ ,+&$$%$+#"'&5432676#&'.'&'&6765&#"2654&Bɋ5 IS >$E '$*Pr99t捎:,5J#AptRP::tP):B;@8 A=@YMQE<;@>;B" " 3r"E && " <uh8H~>);CX@ B>@KPX@Q AQ B@YMQEY@ =xr<:h@'' $!": "z&J*!$ ?Rq>I-*&;ln@ igXVPMJA>+ @ =K0PX@h^NRF@hfNRFY@ ca`_^\HF:9+%'&'7676767>%&'&76767.'.'.'&>67547547>32'#"'##"&547&''&;m {sB+  B%< PBBU&'yzZ9(s/ * ,$~;10< '4 2' 9$!!n 1*&>) $8OM]_SLYu' S+7  H,,' 2@A1'6    k $1;K PX@;  ^  f   YW  YMR F@<  f  f   YW  YMR FY@":9540-*' $# +"&5332654'3#2#&#"#5463;2=4+""&54627OLMkjO77ONJO7 HHP__^^PP8XkLMj8P\N8nn8N HA__AC]]&(@% >=_$++'7%532?32%7%!%7-tv  ,&N..N@  CX^z@w] @  f  d  f d  YYYKRF\ZTRHF><74,*)( CC +2#"'&76763#"76'&'&'&'&"#"'&'&'&543254&5432.#">763276+79$&5)$"#",V& 0E-  -^_!:tN(Y+$ * $%j23n'F%  4t"sq&"H_ R"2+.{/w@ @K PX@%^\YMRF@'fdYMRFY"'"#+7)#"'5"%7)6322765ô^^H8^^ִ. @b8 ~>i@  @KPX@-Y Y  YQ AQ B@0YMY Y  YQEY@ge_]WUCA860/")"" +%#"'#"547&547632632654'&'&'&'&'&5476232654'&'&'&#"#"'&'&'&#"3276h=;8 $JIkK="* !%'Ja d &/24J64@!+0D GJ0H&<(@^N<IWs*@d k]r @KPX@H  ^ \fd ^  \Y Q  A R BKPX@J  ^ dfd  f  \Y Q  A R B@N  ^ dfd  f  \   YY M RFYY@YXJJqogecaXsYsJWJVQO=;20*(&&"+#"'&'&'&#"32767654.'.'&5463232654'&'&'&#"#"547632654'654&#"&#"3273(  *V''$ ("< $   V"1(! 捎t:Tf"(;Ud"   8 %     . ŎȌW;#hW;'%#h( @ >_+&54767"'67.LJ{nnm*ge**"mnlw}{=88r": &9HVlK#PX@'^dYMQE@(fdYMQEY@('43-+'9(9"#+%#"'&547676376326'&'&"&5432"&54'&'.'&766.76a|}[_XT H>=.v  YZPQ ${YXDCA "9%"#9U0P 3#A#g^_NNv\%#DV"EA%ςPP00AAPP`"WW|_DC &8!$ V -''&%-<#j ;JD@A@fYYYMQE55:474#45 ++"+"&?326?6;27654+"&76;2+"7;27654&+"Xnk$ (jD$ *nn l *K3:$#nk  2V00@<"* b+wPP*(PS8$( '&:PP$"@/%(* "9@6 @hhKPD*+ &5467632#%7&'65!#&t m?KdZFXpfs5 N5vTVh008(((<6H7G31$$!+7#"/7632"5'742"5'742"5'742#"/632"547632632#1  V X  Z  \ @ %/X3ML4FHHllj l j j h ht uS J24J0@V@S"=@=hhh K R F@@8621-+&%$#! +$'&76765#%4'&'&'&#"&'&#"5#3546763235476325ϟP?102 F. 'B,X\ Z(  ʚgT~l# .&) $   'HRVb@ - 7 @K PX@Vf  fMWY Y  W   M W  Q EK PX@]f  f  fMWYW  W   M W  Q E@Vf  fMWY Y  W   M W  Q EYY@6SSIISVSVUTIRIROM?<984321/.)('%$#"!+22!2654&/#4'&/#322!3276?3"&'&=4>74'.#"!5QQ_(9& 578 JIc&6-l5546Bh,0- **8[Q*E(*&(4S $('(n7,RE68R*+/(H=%d; !2@NN*$2=G`@]%"@Y  Y  Y YMQE43DC?>983=4=10-+$$( +#"'&54676763327.'7.>54'&#""&5462&"2654`_!bXYpR hg:wSw7gdlJuUuKLg[FG{ *>=V==0 !.#*Ԗih RrZ[{c!``Swdh7SKkPt^jJJ:;W<*+=<,+;"!"~> %4Ķ-,@KPX@-^^YQ A R BKPX@/ffYQ A R B@3ffYY M RFYY@'&31&4'4%$!*!! +&+327654'654'&+322#!"&546327654'5654&+#$:41 0 1"+'FbbFFbbFRU()`DE3.t $ufbFFddFnFb,*+;`O0<(46,@)/ @20> =MQE,*#+%#"'&/&'&6?676&'&'&767&'76Q@774JECP/!Bdr"+t> /]:Oa/< " 1,HnN~$:j0";MX*5I4 *   @MQE  + ! '&6YX WW2 7@4WKQE  +2!5!!"5!#!5!43!!a p,(>|(2,2jR#,7 @5,+ >7=_+%/'/676&'676&/676./-)T@l8CCxzC:l@K*/i0D|>9\.H9\.@9\$>|hhKRF&& +"&7%6#'2#!"&54635''4Ll !$fd| ,H\N4(& #斖Z(< ,dt@O)%i @K PX@@fdd \  d  dQ AR BKPX@Afdd d  d  dQ AR B@Dfdd d  d  dYMRFYY@.-qplkhfVUSR=<-d.d" %$ +#"'&5432&'?67365426&54767676'&'&#.&547>767>76723327&#CŎɃO{   "> %V  /0!9* 3 "2  r':LH DhMQE#!''+'&#"&76767$264&#": )(_A "!]Z~ a_y!++ ,,>|*'#G."#%$&%ʐuvt#T.->++ ,2#'3@0&" '%$@hhh_&&+'7327"/654&#"'&4762 F<*L(L :*J&,J hFR*: L,L*<L(&LLj'*c@`)@*(? W  W  WKQE#"!  '&+2#3#3#3#!"&=35#535#535#54637'dddddd|ddddddTiMQE#",*"6#6'+#"$5476767670?6%2#"&'&=47676754=>-NN44  0'(O24 )2!!"JT.V94$@''% M<>9:2635 %>>&& / #6(@%"=hMQE%$.,$6%6'+7&'&5476320'&76765&"7654'&32845>=-!"(5!44  0'( 04 )2!?/F++.!&$@''% M<>9:26>35 %>^#j $B@?fWWMQE$#"!  82 +#!"''&?63!226767#"'#!'!jb ^77''WN:S#\&&\/n`xl"++BfF5]>pt ,!@!@MOC+%!54767654'&'&'&'4?&'&762T]#" --\ #"H2jj2H"#"=/7 .*5;:t6X"7/<#",WY@ MKB?@K PX@\MPD@hMPDY@HG10,,+54'&'654&'&'&'47&6762!54767654&'&'&'4?&/&62 z(    *8qJTI& LL &Z6<6 #"(C(((&<"# *0/!6G0N.,""9.- - $2jj2R- -.9"jR@>@;*# @WQ AQ B@>21+"+!''74&'.76763203676?67676'&#"FHFFE--=WVVT K !  XRX   h*)E1/FwWVVTzle* 56<%" "(x\^v".%?NRV@ /@KPX@WQ AQ BKPX@WUQ B@!WWKQEYY@SSSVSVUTRQPO98+%/&/&&?6&/.?64/&6?>/466?6?6#35#N!V0 . "2#5z 6jVVN#P. . $ 2 , < rVddd"+R , XN0F' L0L",R & PVT $ L2@hjP(=-@*! -@Q AQ B*()+"&54707676320"&547>76320%6320"&547076a!I'  'I!aE2 'I!$ 'I!aa!I'&_A:6{CXXC{6:A__AWT%z<XC{6:A XC{6:A__A:6{C~?>,Q@ @KPX@f AR B@hhMRFY*&+"'&5476767626'&#"032547>m0,vSRRSv,0/  7(0":*[h7qSRRSq7hevv :F432"D^ '+/5AK*PX@R ^   \WW  W   XKQE@T  f   dWW  W   XKQEY@P66,,((6A6A@?>=<;:987543210,/,/.-(+(+*)''&%$#"!  !+2#!"&5463!!!!#55353###553#537#53##535353#);:*);<(   b<;232!5#!'&+"5!#!"5'!8_& 1_ :Zf$TZ =Cj'l$L ]ld,6d*|TTd/ @@=@WWMQE4"+463!#!"&526=!3%#5;).;)(<&p,d););<(^*)@&YMQE + 2654&#"zYV@=Y*|X>@VX|]K PX@ \XMQE@hXMQEY@  +2#!"'&63%!7>;23!2*3*j  4"7T$<2n("$ Q@N WW W   WKQE  +!!2#!"&5463!!!5!!5*:;) (<;) nZ:*D);<();dDXxXX #K PX@.  ^   WXKQE@/   f   WXKQEY@"  # #"! +2#!"&546;35!35!!#53!#5/*:;)D(<;).",DFFF:*);<(X);ddddpv .%@"@%>hh_+%+&76%6#"'%'7 #"&7676>'1* +b46' !#  62$  v #&& -* P  P0L F &$/ ?@<MMMOC    +2#432#432#543((( R2&22jR5@2X AR B  +"&5463!72#!'3733U)*<<*)d,l$$n)**) dddtF5K2PX B_Y55+"'&'&76'&67676'&'&676gCIUO_+G P&(00 ,L4,(2<66A3>ARHG_`^P F,`P&( d*N4,(2:<2LCB37 9Rj5R -@*=iQ B     +2'4&+432'43d(((Rl2ഴ 2|:%&KPX@ h B@ h_Y%+#"54'%&#"'&/&547>. l%,   *R$   y -@"&*.2K PX@" @210/.-,+*)('&%$#>K PX@210/.-,+*)('&%$# >@" @210/.-,+*)('&%$#>YYK PX@ h_K PX_@ h_YY"!+%'57'5"&#'%&5476%6""'%!55c7 r ~~ r;DPDDPD "   " f00:DPD DPD* _,+6/&'&76767632/&'.767>76ܢ, ). )/0660  G ,",#$4/0n06  ,i:NND7&+%'&'.'&'&'&'0.'&'&76767676767676676'&'&'&i 0!$%H  #-9#  ( ~WT(",0<:V  Q(  S,x A+ "  48L $1/4861*2,"L!&K PX@(hhh\KRF@'hhhhKRFY@ "!7 +####!"&/&?332!76;'3## *b(,(b *0lnn#v@K PX@)h hh\KRF@(h hhhKRFY@##"!6 +%#!"&/&?332!76;'3'%33## *b(,(b0 *0lnn @@=WWKQE     +2!5463"&5!#!5u | Z) ) , xx ))dd / #'+/3}@zW   W  W   WWWKQE00030321/.-,+*)('&%$#"!  +2#!"&5463!!'#537#53'3##53#5;#!5!'53*:;)(<;)XX22dd2pdd :*D);<();dD22dd222222tSHlK2PX@ YQ AQ B@$WYMQEY@  +2#!"&54632654&#"7!*:;)(<;)+*,,\H:*);<( );T*l &]@Z&#" @YYYMQE%$!   +%2#"&546'62&"'632&#"'6! & );:*(::XXF::ґ͐FsvF;)*:;)();<();\\ڒВВ|"(7g@d52*'+@>,=Y Y MY QE)))7)6/-!((  +"+53267>7676;55#5320&55#"'074?33g~1chh3i(LMV$Rhhr! IQ$yHTZ=%"+W>$-+,xd l&(Ndxt\ X2>@;@>WKQE +2#!"&546;55#!5#5/*:;)D(<;)l:*);<(");nnҌC!%@"!  @ >=h_+%7&76767'67676'=XtwceGYVLXtwacGYVrVzxcfHX}}\VVzxchGX}}\t  '08?GOWT@Q Y YYY M Q  EUTQP6521.,)(   +2#"&5462654&#"&2"54%'&6762#"542"&4&'&'&66'"&462mC]]CB^_V;;+*<&dL $  $8&20""8$ $Z  "$8r8$  """^BD\]CA_<,+;<*+S((  $ "8((&&8$   $"$8$8$ $ "&& jR %1=ISaoxV@SY  Y Y Q A Q B'&ED?>9832-*&1'0%$  +2+"5463'#"&54632654&"2%2+"5463"&=4622"&=4'&7676>'&76&'&'.76&6'&202QQRqrrq;vv;:222""9""v"$$8$D $  $ $ $T$$   $ N$8$"$8$((PrtPPtr`;SRvvRS;:((622%22"$"8$ $ $  $~$   $  B$8$"$8" $8@5/.&%$ >_  +"&5476'76'&'&'%&7676&'&C "${J6"35N)/* (DCA#FHW4<-/ Z (\$!"%O9 (/)>򂙖A @2' ($*+8DS#@ hh_:9-,LJ9D:D,8-8+'.'&767676.'.'&76"&54?6'"&?6#"&76?6Tj./*?A[]eg '''&* N96%'  '$:=;@%'  ^$$`6* 6 `!`%G/kk*&''' ge]\@?*'%69N  '%@;=:$'    ` $$^v/`, %`% 6& 6 2/<9@6+@YYMQE10850<1;#43!+$;#!"&5463!2#"&'&'&76?76%2+"&463H*B#"T T"#B*H&! +"  +&v-pn-x`@ 8B  :D  =%&>>L< +@(@YMQE%%'+%/#"&5476322654'&#".$ ISZZa`.~DCYXN". *[[__YI~ZWDCtB/@ =_/-+'&/&7&'&>76'6&'&320fC?vFh !L  "G\3kXY(5p 7$  c  b3E9fH0 AApu)1f%'5  )#3@0YMQE"! +2#!"/&546;5462%354&"(0<)79)<0dee5^5'z00&FlzzlFZZZ2<< #9@6fYMQE! ##+2#!"/.5463!54"#54632)<3-/3<dec(z&&&nn(lzx+5@@?8@h_31+'&'&6'&767>76676'&'&7676'67'67* `_> 8 h1"B@EG*+QTggFH.-YVZV 9`8N@ +=db;: >6r6klT8DB5&'  %&13!#  )*,$2Cw @=_ +2'43E( R2/"F:@7hhfYMQEFE@>10+)%#"+732?632#"&54?>'&#"'&5462?654'.#"'&?6s5$%**8LNp8(Ze)$"2R88IM>2*2H=2""2:%3("$(8pLN8'+ '(0R8LN8H20H$& 2"$27 2a8@5 @>WKQE +2#!5!5!'7);<(N ;)(?Q. ,  0K:;B-@Eh K&&+a0>>.$ * J-E:;L _#+6!"&766?67< J p  B h*G@D@fYMRF + 654&#"3'TҖkjԔ$2*|Ԕiil2h"6@'@$(=hhh_=<980/'%+%0&?'&?67676?6;67>762264&".  ! '.' (j  %  4G%E@uRUP 9/cU@,,@,8!    n( *> K 4HBS U?B .@.. !~>  ^@ @KPX@Q AQ B@YMQEY@   %+#"54763 &#"2654'捎dkjjRa>ŎȌRkj}j֖eRG_< 8G8GjRTjZ #l!Mbbp>>0vvNvwwRzzdvf *f>bffz>>6>f:bsr!b''~OXRz(N-z>yz>>yN> >D>z>bR3*>>pz(((^,P|xDHrB 2Jhxz@ X  ( v x |6jBF&jxDjfF*Hjlf T(@n j D x!"!n!"<"#R#$$>$l$%J%%&&'(4() )h)**h**++L+t++++,,<,`,,--X-. ./\/0P0001"12*2334t45 5h56X7,789:^;&;>?h@J@|@A:AB C4CjCD,EFGHGH HI0IJKLLMMNNO2OPQTQRrRSTU8UVVWXYBYZ[[.[x[\P]]^L^__x_`B`aBabbrbcxcde  Y Copyright (C) 2012 by original authors @ fontello.comCopyright (C) 2012 by original authors @ fontello.comfontellofontelloMediumMediumFontForge 2.0 : fontello : 6-2-2013FontForge 2.0 : fontello : 6-2-2013fontellofontelloVersion 001.000 Version 001.000 fontellofontello2#      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     uni2139 arrowleftarrowup arrowright arrowdownuni21B0uni21B3uni21C6uni229Euni229Fhouseuni2328uni232Buni2389uni23E9uni23EAuni23EDuni23EEuni23F3 filledboxuni25B4uni25B6uni25B8uni25BEuni25C2uni25D1uni2601uni2605uni2606uni2615uni261Cuni261Duni261Euni261Funi2630uni263Duni2661heart musicalnotemusicalnotedbluni268Funi2691uni2692uni2699uni26A0uni26A1uni26ABuni26C8uni2707uni2708uni2709uni270Euni2712uni2713uni2715uni2716uni274Euni2753uni275Euni2795uni2796uni27A1uni27A2uni27A6uni27F2uni27F3uni2B05uni2B06uni2B07uniE003uniE005uniE4ADuniE4AEuniE4AFuniE4B0uniE700uniE704uniE705uniE70AuniE70CuniE711uniE712uniE713uniE714uniE715uniE716uniE717uniE718uniE720uniE722uniE723uniE724uniE727uniE728uniE729uniE730uniE731uniE736uniE737uniE738uniE73AuniE73CuniE73DuniE73EuniE740uniE741uniE742uniE744uniE746uniE74CuniE74DuniE74EuniE74FuniE751uniE752uniE753uniE754uniE755uniE756uniE757uniE758uniE759uniE75AuniE75BuniE75CuniE75DuniE75EuniE75FuniE760uniE761uniE762uniE763uniE764uniE765uniE766uniE767uniE768uniE769uniE76AuniE76BuniE771uniE776uniE777uniE778uniE788uniE789uniE78BuniE78CuniE78DuniE78EuniE790uniE791uniE792uniE793uniE794uniE79AuniE79BuniE7A1uniE7A2uniE7A3uniE7A5uniE7A6uniE7A7uniE7A8uniE7A9uniE7AAuniE7ABuniE7ACuniE7ADuniE7AEuniE7AFuniF300uniF301uniF303uniF304uniF306uniF307uniF309uniF30AuniF30CuniF30DuniF30EuniF30FuniF310uniF312uniF313uniF315uniF316uniF318uniF319uniF31BuniF31CuniF31EuniF31FuniF321uniF322uniF324uniF325uniF327uniF328uniF32AuniF32DuniF330uniF333uniF336uniF339uniF33AuniF33CuniF33FuniF342uniF345uniF348uniF34BuniF34EuniF351uniF354uniF357uniF600uniF601uniF603u1F304u1F30Eu1F342u1F393u1F3A4u1F3A8u1F3ABu1F3ACu1F3AFu1F3B5u1F3C6u1F44Du1F44Eu1F45Cu1F464u1F465u1F4A1u1F4A5u1F4A6u1F4A7u1F4B3u1F4BBu1F4BCu1F4BEu1F4BFu1F4C1u1F4C4u1F4C5u1F4C8u1F4CAu1F4CBu1F4CEu1F4D1u1F4D5u1F4D6u1F4DEu1F4E3u1F4E4u1F4E5u1F4E6u1F4F0u1F4F1u1F4F6u1F4F7u1F500u1F501u1F504u1F505u1F506u1F507u1F50Au1F50Bu1F50Du1F511u1F512u1F513u1F514u1F516u1F517u1F519u1F526u1F53Eu1F554u1F680u1F6AB22RjRj, `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-,#B#B#BCCQXC+C`BeY-,C E EcEb`D-,C 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%BC`B %B %B# %PXC%B #a*!#a #a*!C%B%a*!Y CG CG`b EcEb`#DC>C`B- ,ETX #B `a BB` +k+"Y-, +-, +-, +-, +-, +-, +-, +-, +-, +-, +-,+ETX #B `a BB` +k+"Y-,+-,+-,+-,+-,+-,+-,+- ,+-!,+-", +-#, `` C#`C%%QX# <`#e!!Y-$,#+#*-%, 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,*-.,%%G#G#aE+e.# <8-/,%% .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-0, & .G#G#a#<8-1, #B F#G+#a8-2,%%G#G#aTX. <#!%%G#G#a %%G#G#a%%I%aEc# Xb!YcEb`#.# <8#!Y-3, C .G#G#a ` `fb# <8-4,# .F%FRX , G#B.**-?,+*-@,-*-A,E# . F#a8$+-B, #BA+-C,:+-D,:+-E,:+-F,:+-G,;+-H,;+-I,;+-J,;+-K,7+-L,7+-M,7+-N,7+-O,9+-P,9+-Q,9+-R,9+-S,<+-T,<+-U,<+-V,<+-W,8+-X,8+-Y,8+-Z,8+-[,0+.$+-\,0+4+-],0+5+-^,0+6+-_,1+.$+-`,1+4+-a,1+5+-b,1+6+-c,2+.$+-d,2+4+-e,2+5+-f,2+6+-g,3+.$+-h,3+4+-i,3+5+-j,3+6+-k,+e$Px0-KRXYc #D #p( ERD +D$QX@XD&QXXDYYYYDentypo-rails-3.0.0/app/assets/fonts/entypo.eot0000644000004100000410000021661013341310031021425 0ustar www-datawww-dataLPGfontello Medium Version 001.000 fontellopFFTMbo>OS/27tVcmapp cvt fpgm0 gaspglyfP <head6hhea4$hmtxXlocaJfHmaxp e, name!LUpost  prepX8G8G`1PfEd@+RjZR, , \+-!9!!!!""##(#+####%%%%%%%&&&&&0&=&a&e&k&&&&&&' ''''N'S'^''''+  $)18:>BDFOkqx "%(*-036:=;510/.-,'&!    ++--!9!9!!!! !! !! "" ""###(#(#+#+########%%%%%%%%%%%%%%&& &&!&&#&&$&0&0(&=&=)&a&a*&e&e+&j&k,&&.&&/&&1&&2&&4&&5'' 6''9'':''<'N'N>'S'S?'^'^@''A''C''E''F++HKLMQR T UV ^"$_')b01e68g::j<>k@BnDDqFFrLOsQkwqqvx !"$%'(**--0033669:<<??BBEEHHKKNNQQTTWWBBMN\\de      &&>>TT !" !*)@&WKOC+3!'3#! f!X<S0@-MYQE +2+"=#"4;5425dddd,S@MQE+2#!"435ddjR $J@G"!@fddQ A B   $$  +2#"&7476"?6#"'>32327o.6P6/5#"d.< *( Z4N*F-ITR4,3K3/-('8,N`@<(V\dX%@"@>=KOC+%'7!!dtH->K2PX@ h B@ h_Y+###7ZdX%@"@>=KOC+%5!5!5dtH5=K2PX@ i B@ h_Y@ +%'33dnaN 1@.@>iMOC $+'7!2#5&);^Zd;)2 3@0 @ =hKRF  +7"&53!55s);l;)^ʖܖ  8@5 @>=WKOC+!'7!5!5!5 , Zd\Zd:"+;@8) @YMQE$#'%#+$+!$%$%" +>32#"&'#"&547632.#"3262#"6VS==Ulpr55S5OPPO55O/H@Ef dWKRF  +2#!"&54635#5##335*:;)(<;)&dd:*);<(X);>dd/0@-WKQE +2#!"&54635!*:;)(<;)& :*);<(X);>dd*@'fiMOC#!#"+++##"&5#"&762T T,P662#'+/37;?C@ W"    W! WKQE@@<<,,$$@C@CBA=;:9876543210,/,/.-+*)($'$'&%#"!  #+2#!"&546335#35%35#35%35#35%35#35#3%!!7#3'5#75#*))*dd2ddd2ddd2ddd2d2dd& dd2d*4))*ddd2ddd2ddd2dddddddddddd0@- @MQE +2#!"'&7637'7''7*:;)"'T'RHHHH:* );((J~H~~H~J!@MQE+"542 2"5!|BB:@@BB:Jt  &+&546&546qRv  Jt &+%6'%&5447%6'%&vhv <g @MQE  +&546%2#"54JJLv (:.:::<g @MQE#.+%6'%&54'432#"5lLJJLvF ::.::j?R#0pT@Q=:>MgY@fdYQ AQ B`_ONIH<;/-)'+"'&=4>54'&'&=462%3276'&#"476707657"'#&#67>54254'0/&'&3.1b`VUUV`b1.30Ԯ [}Y`jxT\eeZ' #Z>:D4! >?\! 8+.\f.v"''''"v.f\.+84,v NN v,42 66&\2662 Z$    Z B0""B\ 2g @MQE  +2#!"5463JJ>L$(@*BB$&@>_+7p6  &+&546T!!x  xD&+ pD&@=_+ &pxD&+%pD4 jR !-9EO]ktV@SY  Y Y Q A Q B#"A@;:54/.)&"-#,!   +2+"5463'#"&54632"3%2+"5463"&=4622"&=4'&7676>'&76&'&'.76&6'&202QQRqrrqkU==_+!%%!x@^^@\ .@+>  =KOC+%%!!'7''y^^@xx@H>86>\P|rr$!@YMQE)+"&'&'&7>3226764'."\1-H!$|'"H).[|&!!'|'!!&, %% R!& 2dle@b;- @) @  f  Y  Y  Y Y YMQElkhgdbZXOM%,$)"5=$"+46;&546320;2+"#"&75&547&'#"&6;32?676;#"'.'&'&'&#"!"264&"V9 ZG' :  **!\jFPb"^:UG+ f/71(4)317"Y 9U$$CL-< +*!'XM):"!UU8+#') ] e5>F*G# jhR,U]~@{G C@K ?  f  Y  YY Y Y Q A Q B.-]\YXSRONJHFEB@98-U.U9"$"+4632546326326#!"&=4'&'&'&'&7"!54?654#"."&#"54&""'&264&"LC#$V9:U "7-MZ&!+*C15%HN?6+ e$](,%#,8+('^GZ 9VU:^"`OMf["** :Y &"1%(&(5l8,j +,, ,4as@pG!B%@f  Y  Y  Y  Y Y  M Q Ea_YWRPMK?=75430/)' ,++"&546;2767676763232+#"'&#&264&"3203254'>54'654'3264&#!47654#"+V**  :)GZ 9VU:^"`OJi\!y)4"'#8,j +,Y %$/%(&*e+ C12&LC$$U9:U!"6-M['!yH ])'#+8,*&/GMA5* jhR.]e@G - C #%@? ?  f  f  W Y  Y  Y Q AQ Beda`SRJHEDB@<;8720*(" ..+7"&54>?67676=463!2'##"'#"&='32>?6326=3272673254'0'&=!264&"BMJ0: *e+!&WM);$U:9V!nH# +8,%,(]$+?D*<[F' '8 **"[hHPb"^:UV9 Y ,+ f.8m5(0+8!dX #A@>YYMQE #"    +2#!"&4635"&463!2#2#!"&463X((d((((C@ >_+$676' '&'7H5+)|ғ}.)5Fk##@ # =MQE$'(+ &47632762654'&#"'&#"kFFF@XY=:8@@6*&&@35hj06@N,2B@J@@::44::(@A#&0\\0J@B&k@ =_$)+ &476327632%FFFF=ZY@8:=YX@BJB@::44:Q4"@!=_""+'&76'&'.''&'&7676.+/-8  F-W9HGE(*JUI4*740.IJP# &*$*A8Y89:<>&+%&'&7>&'&7>F0?\l=F0?[m>t@0J101+3 xR0J101,3 2g #/2@/YMQE%$+($/%.333332 ++"=4;2+"=4;2+"=4;2!2+"=43 PZPPZP^PZPPZPPZPPZPPPZPP:ZPPZPPZPPZPRZPPZPPZPPZP@@>h_+6'.'&#767676y  ^FC+*!6$!<;PZd\[=>$#:B.+VTh MK .B"CFH3?`h,@)_@cbFE=hhh_# +#/.>767632676727676722'.'&?6%'&'76'&76767>767/&" F 14r" {P,# <*:0bH 1i8,RDD(  $ ':&- L.!  L #Z68:/60*  > $X ,NNF(N"88 F (>D gV.W-7E@B(*@$"> =YMQE43/.! +%&&"&'6'&&'654'6776'672772654&"W FB6)+..+)65SRRJ>6(,//,(6BF P`jkk))>:NRRQ7654PH45>7Q PP N:>))2JHnjLKmmKL 1@.WWKQE3+#!"&762#35#  ,nnn"d, &+&7076'&'&'&707>7'O(]\Y//^\dZZ'' l4/'' @MQE+  &54$̒ΐ<@#5@K PX@,h\\fMRFKPX@+hh\fMRF@*hhhfMRFYY@%$!  +2632#!"&546323&5476654'#&'7254&076\cGFFGcImkKNM 2 $# $4bkODCCDhHJhlLLr  t ' & r  bxD$.5@2YMQE+*&%#"%5 +#!"&5476323&547632654&"2654&"qCD_^DC_`((DC_bMjMMjMijMMjMD`_CD^_DC`H:@B_DC4NN45MMN45MM544>@;@hiKZOC; +##7'333!!|pdPPdp|d %  &("&xddp p<(!@YMQE=)1+63!2#"'&/&'&6#!"&5427N&Y]]Y r"":r /a2 2a/v  p  @>=_+07067&'&'&#' 26H 3 8h 4 H ,2 P3nR<"@@5+=i B+'&767&776'&'&767672767677K-d04 8>* $ HH". , 7y7QM75550!"%;E g{OO"OXNXE//4//ixyB n,$ 0O#!8 @ >_+!"/&6>#".,v(4$'O4 \b%@"@MQE+%"/"'&4?'&4762762#4444#2"44"2W/@,  @MQE+ &67''77aVXXV\\VVVV/0@- @MQE +2#!"&54637'7''7*:;)(<;)VVXX:*);<(X);VVVVS &1tK PX@)^dYMQE@*fdYMQEY@('.,'1(1&&-="+>32+"5676?67654'&#"2'"&>TV* K.)N ?Dp,:;--9;<>z@<;" c$6+(&$,)3Z<,-7;Z7'3@0YMQE$"''$" +4632#5276'&#"2#5276'&#"&46V<&&NO" oG6-<&&NO" oG6-=KOC+ 5!!m|^h &+%$7>7N"GB62'4"-1Qv|8vj &@#@>=MQE+%">76767635 +yzV  (88de|h--09ASA@55B@?  @fYMQE +2#"'7326&#"3'3676#vwwvmFTb~~|Z[|yxxyyxXJ<WW|̦uu7@4@fYMQE#$#+ 3'3&'&#"327#"&PwvzY[{~~hNFmtt}UV~=KOC+% !!z`JJ@>h_+#!#JP^|@=h_+ 3!n|^dX +7X@U   Y  Y M QE-, 30,7-6+*('%#"     +2#!"&4632#!"&463$+"=#"4;5423%2#!"&463m,dd((((dd((dX #/;Gd@aY  Y M Q E=<10%$ C@=KOC+!!`ھ|%@"@>=KOC+ 5!!m|^z@>h_+#!#|P^|@=h_+ 3!xn|^ ,8E@B @hiKWOC876543210/.-+%!56767654'&'&'&'4?&'&67623##5#5353/))_"# ".\ H^2ddj "##</  0  5U+:t6X"7.5@2-@YYMQE640/%$+2"&'&'&47676654'&"2'7>76"&546329t.1q99o30r9AA@@AA@] "CZA@.v1&NF JK&11&HM JJ&?XZ????ZX?? ,>>,.>  xR/"@( @MQE$"+'&676;26'&766'#"'&?&+U 0 0* 6  $(  0, @w\A"0) H( j1 ##@!E@B @hhhKRF !!+2+53'3#"&54632&5476326cGFFGcjhImkK NMo\DCCDhHJhlLLkO &@#@>=MQE+%&'&# 2VzyjX6n79 --NB6+Xou/ ,@)@> =MQE+ 2&'&# jgOM&N USSjpĊNB:21Io2,,NB>| &+' 6% '&?'&76@>  \      $<@9#$ @">WYKQE5"+463!#!57#!"&5"47>7>35 A! dMKU @"*LL01' >8R)(HU+[#,-1K PX@:\f   fZ   W  K O C@9hf   fZ   W  K O CY@10/.'%$#" -,3!$ +6727676;5!3203#!"2+!7#"&=463!!;0>/ ,|. -\0v""d,,b$$0F\$    8''''DD2 K@H>=fdWKQE   +7"&5#7#!73'3!'!2);fddf);2;).;)/&@# =MQE +2+'#"&5463*:;)(<;):*);<(^); #A@>@=MYKQE#""#" +46;!73+5#"&52+'!463;)^;)2(<*:;)2;));\);<(:*););2c@`  ?  f  W   WW WKQE+*$#"! +2#!"&5463!!%#535#535#53#43654&542*:;)(<;)  >ZT68):*);<(X);djZ??>#` W1nQP87OhiTT)>h|P87ONp $(, @,+*)('&%$#"!  >_"+#"//'&54?676!'!!'  H \hhhh~>2=@ <)@KPX@fQ AR BKPX@fVQ B@ fYMRFYY97&&%%+'&'&766'&'&76%>767676?32767=ȍPmronmqoy !,-PQ<< !,+QS;x+4$Ȏpnmpomm:FBX,- :FBX,+ -4$@%2ɶ@KPX@%^ZQ AQ BKPX@&fZQ AQ BKPX@#fZUQ B@)fYZMQEYYY@ 39'+ 7#"&'&' '&=46?6;23&'&+"373Ayy6" DDI@'#^prrp^*/\4 T_ f jT@RFF &J" ;())(; "J0r ~B 0@-WKQE +2#!"&5463!g*:;) (<;)  :*D);<();D G@DWW WKQE  +2#!"&5463!5!!!=!g*:;) (<;)(\\^ :*D);<();XxXZZlR" &+'%.?'&7%6%%%%j' &B6L & $n\0 $Z$ zZjR" 4f!@WKQE52+463!2#!"&5!!;) *:;)(< X);:* );<(  +9@+(%"9,  @KPX@1 ^ WWW  M Q E@2  f WWW  M Q EY@ 74210/.-*)  $# +467!2!7467!2!"'45&676?!55#!5#3!265`Hd!L:4N (DFD0,X2$>2,(PPdPPd2?@<Y YMOC     +#'&!5#42"&4Iv2vC^CD\DB xئvD\BB\/ +H@E$ * @YYMQE#! +++%2"&5465%#"&4632%4&54632#"'6>XYzY+1=YY=7%Y=>XY=4&$W?>XX> X|X>XW?>X   4>@;%?fWZMQE22&$$$" +34632#"&%4632#"&3!#!"=0/#54;2!<();:*);<();:*);+2r66b(<;)*:;)(<;)*:;  LLPV 4e@bf   fY Y W Y M Q E  1/-+&$"!4 4  +462"&'#53>32"'&#"!3##"'&4763232676c^^__v(҄y4Nxf sv'͊vRte ^C]]CA__Ax|t4R\(:b>b:(d> :*D);<(dd);bxx @@K PX@/^^WWKRFK PX@0f^WWKRF@1ffWWKRFYY@  +2#5!!53#!"&54635!5!5*:bnb;)p(<;) > :*Ddd);<();&xxdW _2+%#!".76760 "'!/ !' @  @h_+!''7!=h_+7'!''!7j(ddhddjdd&h/E@BfWYKRF  +2#!"&5463!!%!!"&5*:;)p(<;)p,(<:*p);<((:dpdd<(, "-18o@l2 @  ^  ^  f  i W  WKQE87654310/.,*'%! +2+53!3#"&54633254&#"3254&#"%!!###);:*);<(&d&Zl򖸖 ;)*:b2b;)X(<&&>,%)-X@U ^  ^  W   WKQE***-*-,+)('&$"  +2#!"&5463"3254&3254&#"!!5!);:*);<(&&*";)*:;)X(<^&$&}4<<jR@>=h_+!!4RnW"@>hMQE#++!67673#"'&'!265gfjjiwugfxwih;CMhk@18/+ N" k!< H b]YC @hh h  hh   fg Y K P DEDjihea^[ZXUGFDMEM:96542.-$#%+32"/&7>''.54767'#/0'&5&6374'43272636?"#>'&%+"5'#+"566;23 V|()]  U@+"@#b;5?<1A, ,<."J >$8)(V20V` Hz0 fI?S]_A&<8RJ)/G9T@2dlhS2B ZF&P{"Js8@5fddgMQEihVT>=/(.+&767676767676#"'&'&0#"'&'&&'&7>7>76767660#"'&'&&'&7>7>7676d<1$5===Jd  8@@8tD....Dt26538''6@;())(;@6'#!@YMQE5475+#!"&/&763!26&#!"3!267 "#8$"22X|"N"0,46*v.. J 18IU@R5 4*@fYYMQECA:9.-#!11+"'&'&'&7&'&76320#"'&'&'4'67264&'$26764'.#"* +He86poop- $#RSFG#$[5()D!: ex+&&,HG,&&+h*4E /.?z>Y1811118D0ZE):)m ,>!!!!j+R '@$ @Q AQ B7+"&54674;22654&'#>NN>(ȌdB2d3Id#zOppOz#2dF:VrY:F*P@M@ fdYMRF  + 654'& 3'35Rjkkjpp*|Ԕiiii*ξ* 9@6@YWMQE+$ 5476  654'& #'73z(jkkj(̠̾ԔiiiiZpr*9@6@YWMQE%#+  &#"3265%355#|4ҖkjԔ̾TiiԔZrp* J@G@fdYMQE  +5476 32654&#"5#7#zDjԔҖ9ppniԔS@ >_+"/&47676C,%))%2&&&&2<Q@@MQE!+632"/&5470 &&&&0r$,,$!<c@ @MQE(+"'&?'&7632q0$$$$r$,,$S@ =_+/'&4?62C%))%02&&&&2 &+6/&76 :  &+%/&?6  :  &+?'&76'& &+7'&?6/Md: &+ 6'&76Nrttt:dx  &+'&76x  &+ &76'&fxrtvvc: &+% '&763fzdX0@-WKQE +2#!"&5463!);:*);<( X;)*:;),(W WKQE  +2#!"&5463!!%3#353);:*);<(  X;)*:;),(=1/'%!-+&'67&#"&547&'632&#"654'67327&4&567676&'67327%&'&'6=67#"'63)7IY?>6 7=B2'-8:TNxnJX(u$> ]) "%;1/w8ZD D  AA@0d em Um:6m8HK+%-08ttjma@0 "R(> % *0j ,.U0d$Jc_'8v * h MC* ~@&aK PX@!^WKRF@"fWKRFY@$#!&&;3+#!"&/&7670?63!20%3'!32!76##(=;x (βff(,(F (<:u * rrdd*4@1@fWMQE54!'5+#!"&/&76;#%#'326&#!"3!267 "#8#"2hf2X|!P"25+3-v.. J *!*6@V@S=<87!&#'"@YYYMQE##%+'&'&76$627&"&547''"'367654&"276'4'|>77>Wg]f.-><|<>Uid2@@Ah.,hihh.;?A;>Xf^Vhh.@[\\[@Ab>^`_U>;A?v6N""&+%'&'&67'&766>'.6.-^^QPj:6`bOKI 0 0PMM"%%PK%#  &%Oh 2 2 @MQE+2"&54O\@AZA@.,BB,.I @MQE$$+2#"&4$2#"&4O\@A-.@\@C+.@@.,B@\@@.,B@\ !@MQE+2"&54$2"&54$2"&54O\@AZA\@CVC\@AZA@.,BB,.@@.,BB,.@@.,BB,. $S@P#@Y  K  QE$$"    +2+46;#"&53!35625&#");:*2<(22);nn``<5977;)*:d(<;)h..hBB4+5?I{@x  &@  f  Y  Y Y  YY Y  M Q EFEA@>=9821-,*(%#"  +++%2#"'#"'&5&5462;632#"'#"';6"26542654&"2654&"1GG1PW,+HGbGHNP1GG1P+#Nm:)*8**8*):)8*):)xFdFJ65A"L2FF2L"rNHFdFJNH,)((A(())()),7BMD@A)"!@YYMQEJHDC?=98640/ +2"&547&54626767>7&542654&#"2654&#"2654&#"bGJ M&54L"/FGbGHHGbGH)a6-F(8*)((8*)(8*)(F2Px2GP2FF2N"z"L2FF2L" @(M22(())G())0())4DOZepc@`A (8/'@ YY   Y   M  Q Emkgfdc_]YWSRNM(8666+2;2"&54754+"'"&5475+""&5475476;2=&544&#"262654&#"4&#"262654&#"bGHNdU,+HGbGHLd+#HGbGH.d#+HGbGH+,WdLH)((8*(8*)()((8*8*)(4F2L"465Ar"N2FF2N"rN "N2FF2N" ,"r"N2FF2N"rA564"L2))(((())'))(((()))4@1@YYMQE$$+2"&547&542654&#"2654&#"VbGHHGbGHH4(8*)((8*)(F2L""N2FF2N"z"L22(())G()))=HSH@E:90/@ Y Y M QEPNJIGE$+ +2"&547&544&#"262654&#"$2"&547&542654&#"2654&#"VbGHHGbGHH)((8*b8*)(bGHHGbGHH4(8*)((8*)(F2L""N2FF2N"z"L2v))((0())F2L""N2FF2N"z"L22(())G())0$@ >_+76.747676'.'&767676/^I$U%4 ls$X?!D$|%M+/$T ;VTp$D"? Y!y$@!  =_+6'0/70?676&%&4767%65 ё&  z  KK) nxNL(RlC)0@-)('   @iMQE+%/"5-#&5&5476 %754&"% *xyRyxYzYx  qqqq ;QQ;  %=-@*; @iMQE42+6&764&547632&#"'&+.7654'76{ lm20&FI=F$st'Z P5VdV=,㛜V  Ú   w7- 2M@J2)1*@YYMQE.-#" +267"'&'0767'762""'%&6?2767':e #ABBA# gD4 | ')%%l%&(PNNQ!4d&&d4!"""l,34L4L@ FE8710$#@KPX@*  Y  YQ AQ BKPX@'  Y  YUQ B@-Y  Y  YMQEYY@65IGDB<:5L6L#$%"&&%% +'&'&766'&'&76327#"&54632&#"27#"'&547632&#"=ȍPmronmqo<(8 &?KI=W%>#<F+ :?(@$&&&ȎpnmpommxP(#MA@PB $()&$D?+&B $R#-~>!-KPX@5 ^f\ Y Q  AR BKPX@7 ffd Y Q  AR B@: ffd   Y YMRFYY@)(#"!   +24#"4&+"3353#"54763 654'& DDB 88F捎ŢDstts8  ,ŎȌ梤rrrr~> +J@>@6 A7-*! ) @$?KPX@5^^  Z YQ  AQ BKPX@7ff  Z YQ  AQ B@:ff Y  Z YMQEYY@DB=<;:42('&%++ % +#"547632654'&'&/3267'#5"'77654'&#"676753&#"捎#06@ss0L18OCB2stk4 "/8E3>+)8<P>ŎȌ 4@ /K@A: HB; 1%&@KPX@:  Y  W  WY Q AQ B@=  Y  Y  W  WYMQEY@'000K0KJIEC@>86/.-,)'$" %+#"54763465#53'3267'#327#"'&'#53%654'&#"67632&#"3捎. ~t1 %C,07ED" 4,H stk3HpE5*.@$ 8>ŎȌ88:&t04rrdNF R\, 8~> $(<@843 )*'& @?KPX@;   ff X X Q AQ B@>   ff  Y X XMQEY@%%%<;:9651/%(%($#"! %+#"547633267'##5#535'#53'7654'&#"'3733捎o1~v|| p6,j~stn26L.RzL>ŎȌ6>lTDDllJ$J0 $dV97rrjRFb~>*6@K PX@;  ^fd \W Q  A R BKPX@=  ffd  dW Q  A R B@@  ffd  d   YW  M R FYY@21,+*)(#$!" +4&#"#7#632#"'#3276#"54763 654'& pXo $^`$ `9597dx :>PjJD,捎ŢDsttsXsfT^^VUGE[VZ02JJTŎȌ梤rrrr~>!~KPX@.ffWQ AR B@1ffYWMRFY@& +!5!!5!#"54763 654'& A\\v捎ŢDstts~RRŎȌ梤rrrr~> ';@7328)($#@KPX@'Y YQ AQ B@*YY YMQEY@;9640.!'' % +#"5476327#"&547'3267%'654'&#"632&#"捎& F=KVt1X! stk3AY=N&3>ŎȌ T *t D  .:6K PX@K PX@@YYK PX@5  ^^^ Y Q  AR BK PX@/  ^^ Y Q  AR BKPX@7  f^f Y Q  AR B@:  f^f   Y YMRFYYY@!!650/!.!-(&  % +"2654432&"#"'&?#"54763 654'& [ZZZV  jV"vr捎ŢDsttsttrrtt+,(ŎȌ梤rrrr~> $2> K PX@E  ^fd ^ YW Q A R BKPX@G  ffd  f YW Q A R B@J  ffd  f  Y YW M R FYY@%%:943%2%1,*$#"!  3%#"+4&+54&#!;3!265#3#3#"54763 654'&  h  h  N҂捎ŢDstts h  h  | ,N.ŎȌ梤rrrr~>"0<@%"  @!?KPX@fQ AQ B@!fYMQEY@##8721#0#/*(+&'5%700?''537'757#"54763 654'& 3$Fڂt||wx FLHVV^捎ŢDsttsRvz80z64;14\VZ j$T$ ŎȌ梤rrrr 1ISY@V'@$> Y YMQ EKJ72 PNJSKS@=2I7I 1/  +2#"&46"&#"'.'&547&67632676?#"#"&#&;27654&'&2#"&46{$$$$zGnF%K%3M@E< IB>8 @K PX@0   ^^Y Q  A R BKPX@1   f^Y Q  A R B@5   f^   YY M RFYY@"54&&A?4M5L&3&2-+$"  +""&#"27654'&"&542"&5432#"54763254'6'&'&#"&/3B @@ &+--+@ V捎,&,F-(40&f"AA"V...ŎȌ\7+%#$."$#%+7& @MQE+2"'&4"'&462r:;;:;:rr:&u:;;:;:uu:~> #ZKPX@Q AQ B@YMQEY@## %+#"547632654&"2654&#"捎ŨP<ŎȌ<()==)(<;)*<=)(<-@(>h_$"+.'&'&'6?676763276&676h!94%  7$EG5:   )U*HLuhNP.F", $2#68 6(Z~j L`.=6./~> 5J*)@KPX@Q A B@iMQEY@  %+#"547636'&6#"'&/&'.>7676捎 ==1&$+C(@#=5GE>ŎȌ~R 6&2&T^# 3 G#US.F@C-+)  @hfYMRF$#"(+#"'327.'327.=&547&54632676%9<<~g@_ ?W$0ToOR6:>?7|8*xyRSTPJ8 gF:d//Nn: B&~> 8~@ &.*@K PX@8^\\d YQ  A Q BK PX@9^\dd YQ  A Q BKPX@:^ddd YQ  A Q BKPX@;fddd YQ  A Q B@>fddd Y Y M Q EYYYY@64310/-+%$ % +#"547636767&#"&'"'#"'3+3265捎! *'7yI,,  E1ECMz>ŎȌx "8&^1 #4B(*h ,@)iYKOC# +#"3###53546;uY!fFV\~> ~KPX@)f WQ  AR B@,f Y WKRFY@    + '&545#"#33535#543n:H,ŎNC/,JJ4k"@@= YWKQE "! +2+35#54;5#"#3!"&5463,@A+rrV`Jdhh+A@,?+z,@6FmMB@,+?/<LX@ $ @K PX@H^ f \ iY K    W Z O  C@I^ f d iY K    W Z O  CY@'>=10XWVUTSRQPONMGE=L>L0<1;/."/'#+&57#"'&54676;"+'#"'.46763676'.#"327>'&3##5#5353# ?/J/"KLN 'D&2htCS9H/8@3YF;el&)P>$ ( !& **^^-),t5[3E?f8&/ZX6"TxR.R868 "%36> 2;d ! l:l^^~> AMZz@ )W @K PX@Wf   ^   d  f  ^YYYQ AR BK PX@Xf   ^   d  f  fYYYQ AR BK PX@Rf  ^  f  f WYYQ AR BK PX@Xf   ^   d  f  fYYYQ AR BKPX@Yf   f   d  f  fYYYQ AR B@]f   f   d  f  fYYYYMRFYYYYY@-ON TSNZOZMLKJIHGFEDCB<:860.+*AA  &$#+#"'&7632#"54763327654'&547654'636=#";#"#5##33532&'467 * +捎n)!<4"$(t" 2,$nL0LL0L*-!5."6<  ŎȌBD,0 ".: /,4^) LL0LL:!"'jP>@, =_#!+%&7676767&7>676'&'&'&&767676'.'&O"A T:H) 5Hg +=Z`+.dd\[&|WQ0x/#`k;(3A=X~U2(& mKQRU+@SIM]$/#Ê`_  ~> 9U@ 806@KPX@ AR B@hMRFY@ 9 9 + '&546'&'&64'&'&76'&7676'&67nR\ ?BPA44J  [\B0F)%*4/>Ŏ[I%& 10Fc `00B0dc .-)(34%;? V%?*7@4 @hWMRF&!+#"'&'&'&5#5676733#327?ao;33# dk/ 'DF:4"AB$^5?S .~> ,@"@K PX@&^YQ AR BKPX@'fYQ AR B@*fWYMRFYY@,*$# % +#"547635#"'&'&=35#5#332捎ł$" nn@2 "9>ŎȌRJ  (vJv,%B4  $rKPX@+^YKYO C@,fYKYO CY@ $#"!" +#"&54623#4'33632#4#"#<,*:9Z72  .K PX@9^  f  dW Q  A R BKPX@:f  f  dW Q  A R B@@f  f  d  YW K RFYY@%..,*&%"!  %+#"54763#3"2454&#"#'#3547632捎v``0h`:6BTb &0>ŎȌ0`@=K2*&>Դ&D *%-7EMq@nD?#!9 =FH5@f dYYMR F&& 42&-&-*)    +&'&'2&'#6767>76'&#"67 327&'764'67&'&0JPs d *=%r5bs1+OCA@|z\mLN<( nx#X2@P.4"hUl'[P%8p>9#CVb h|5W|JT d k (2!n[~>  (6DR@$GE   MI '%#@ ?KPX@E   f  d  dd dYQ  AR B@I   f  d  dd d YYMRFY@%77))"!QPLJ7D7C=;)6)50.!("(  &&+&=277&'632#"'6'672&'6#"54763654&#"367&#"&54#&,&70k] . I7 >"#'E1)qV"&[!/Bl捎bbcCDDCc.I#*3'`,*:FN,B.*Y9*Pv\*+CB R.9OŎȌ6`bEFa_FE-4@ 1?@<*( )@fYMRF()+62654762'54&#""&=3%3"&=73265&!BCCBfF Ff! :\AAAA\<""<\\\\  ~> '8@1@20?KPX@.fddQ A R B@2fddY M RFY@ 75"$%$ +#"'&543226=432754&""=#%5##"='326Bɋ\B"4B\D4XV4"C/.B捎fB..BB.DD..DDDD.BBFv@;@8 @MYMQE%+'#)%&"+%#"'&5476323254/&547632&#"#"'&/.'&#"32"@hkLMPOmo87$$0xNN:;WrSRBJDE$   G@b./?2$55`t  +\`Q12~> C}@ 65@KPX@" YQ A Q B@'Y Y M QEY@?=9742-+&$CC%$ +#"'&5432254/&54327&#"#"/&'&#"327'#"&54632BɋAxL& (-:^fB((>L97()K96 &",,&" 捎PB"JT<  J::()A;M25%+5$&:f'-@*@fMQE$"&%+#"'&547632&7>5 qppqpq6$MMFFEF4F !*Xtsstqr $"CB?;"lDl2L~> 0@ #"@KPX@^Q AQ BKPX@fQ AQ B@ fYMQEYY@ ,+&$$%$+#"'&5432676#&'.'&'&6765&#"2654&Bɋ5 IS >$E '$*Pr99t捎:,5J#AptRP::tP):B;@8 A=@YMQE<;@>;B" " 3r"E && " <uh8H~>);CX@ B>@KPX@Q AQ B@YMQEY@ =xr<:h@'' $!": "z&J*!$ ?Rq>I-*&;ln@ igXVPMJA>+ @ =K0PX@h^NRF@hfNRFY@ ca`_^\HF:9+%'&'7676767>%&'&76767.'.'.'&>67547547>32'#"'##"&547&''&;m {sB+  B%< PBBU&'yzZ9(s/ * ,$~;10< '4 2' 9$!!n 1*&>) $8OM]_SLYu' S+7  H,,' 2@A1'6    k $1;K PX@;  ^  f   YW  YMR F@<  f  f   YW  YMR FY@":9540-*' $# +"&5332654'3#2#&#"#5463;2=4+""&54627OLMkjO77ONJO7 HHP__^^PP8XkLMj8P\N8nn8N HA__AC]]&(@% >=_$++'7%532?32%7%!%7-tv  ,&N..N@  CX^z@w] @  f  d  f d  YYYKRF\ZTRHF><74,*)( CC +2#"'&76763#"76'&'&'&'&"#"'&'&'&543254&5432.#">763276+79$&5)$"#",V& 0E-  -^_!:tN(Y+$ * $%j23n'F%  4t"sq&"H_ R"2+.{/w@ @K PX@%^\YMRF@'fdYMRFY"'"#+7)#"'5"%7)6322765ô^^H8^^ִ. @b8 ~>i@  @KPX@-Y Y  YQ AQ B@0YMY Y  YQEY@ge_]WUCA860/")"" +%#"'#"547&547632632654'&'&'&'&'&5476232654'&'&'&#"#"'&'&'&#"3276h=;8 $JIkK="* !%'Ja d &/24J64@!+0D GJ0H&<(@^N<IWs*@d k]r @KPX@H  ^ \fd ^  \Y Q  A R BKPX@J  ^ dfd  f  \Y Q  A R B@N  ^ dfd  f  \   YY M RFYY@YXJJqogecaXsYsJWJVQO=;20*(&&"+#"'&'&'&#"32767654.'.'&5463232654'&'&'&#"#"547632654'654&#"&#"3273(  *V''$ ("< $   V"1(! 捎t:Tf"(;Ud"   8 %     . ŎȌW;#hW;'%#h( @ >_+&54767"'67.LJ{nnm*ge**"mnlw}{=88r": &9HVlK#PX@'^dYMQE@(fdYMQEY@('43-+'9(9"#+%#"'&547676376326'&'&"&5432"&54'&'.'&766.76a|}[_XT H>=.v  YZPQ ${YXDCA "9%"#9U0P 3#A#g^_NNv\%#DV"EA%ςPP00AAPP`"WW|_DC &8!$ V -''&%-<#j ;JD@A@fYYYMQE55:474#45 ++"+"&?326?6;27654+"&76;2+"7;27654&+"Xnk$ (jD$ *nn l *K3:$#nk  2V00@<"* b+wPP*(PS8$( '&:PP$"@/%(* "9@6 @hhKPD*+ &5467632#%7&'65!#&t m?KdZFXpfs5 N5vTVh008(((<6H7G31$$!+7#"/7632"5'742"5'742"5'742#"/632"547632632#1  V X  Z  \ @ %/X3ML4FHHllj l j j h ht uS J24J0@V@S"=@=hhh K R F@@8621-+&%$#! +$'&76765#%4'&'&'&#"&'&#"5#3546763235476325ϟP?102 F. 'B,X\ Z(  ʚgT~l# .&) $   'HRVb@ - 7 @K PX@Vf  fMWY Y  W   M W  Q EK PX@]f  f  fMWYW  W   M W  Q E@Vf  fMWY Y  W   M W  Q EYY@6SSIISVSVUTIRIROM?<984321/.)('%$#"!+22!2654&/#4'&/#322!3276?3"&'&=4>74'.#"!5QQ_(9& 578 JIc&6-l5546Bh,0- **8[Q*E(*&(4S $('(n7,RE68R*+/(H=%d; !2@NN*$2=G`@]%"@Y  Y  Y YMQE43DC?>983=4=10-+$$( +#"'&54676763327.'7.>54'&#""&5462&"2654`_!bXYpR hg:wSw7gdlJuUuKLg[FG{ *>=V==0 !.#*Ԗih RrZ[{c!``Swdh7SKkPt^jJJ:;W<*+=<,+;"!"~> %4Ķ-,@KPX@-^^YQ A R BKPX@/ffYQ A R B@3ffYY M RFYY@'&31&4'4%$!*!! +&+327654'654'&+322#!"&546327654'5654&+#$:41 0 1"+'FbbFFbbFRU()`DE3.t $ufbFFddFnFb,*+;`O0<(46,@)/ @20> =MQE,*#+%#"'&/&'&6?676&'&'&767&'76Q@774JECP/!Bdr"+t> /]:Oa/< " 1,HnN~$:j0";MX*5I4 *   @MQE  + ! '&6YX WW2 7@4WKQE  +2!5!!"5!#!5!43!!a p,(>|(2,2jR#,7 @5,+ >7=_+%/'/676&'676&/676./-)T@l8CCxzC:l@K*/i0D|>9\.H9\.@9\$>|hhKRF&& +"&7%6#'2#!"&54635''4Ll !$fd| ,H\N4(& #斖Z(< ,dt@O)%i @K PX@@fdd \  d  dQ AR BKPX@Afdd d  d  dQ AR B@Dfdd d  d  dYMRFYY@.-qplkhfVUSR=<-d.d" %$ +#"'&5432&'?67365426&54767676'&'&#.&547>767>76723327&#CŎɃO{   "> %V  /0!9* 3 "2  r':LH DhMQE#!''+'&#"&76767$264&#": )(_A "!]Z~ a_y!++ ,,>|*'#G."#%$&%ʐuvt#T.->++ ,2#'3@0&" '%$@hhh_&&+'7327"/654&#"'&4762 F<*L(L :*J&,J hFR*: L,L*<L(&LLj'*c@`)@*(? W  W  WKQE#"!  '&+2#3#3#3#!"&=35#535#535#54637'dddddd|ddddddTiMQE#",*"6#6'+#"$5476767670?6%2#"&'&=47676754=>-NN44  0'(O24 )2!!"JT.V94$@''% M<>9:2635 %>>&& / #6(@%"=hMQE%$.,$6%6'+7&'&5476320'&76765&"7654'&32845>=-!"(5!44  0'( 04 )2!?/F++.!&$@''% M<>9:26>35 %>^#j $B@?fWWMQE$#"!  82 +#!"''&?63!226767#"'#!'!jb ^77''WN:S#\&&\/n`xl"++BfF5]>pt ,!@!@MOC+%!54767654'&'&'&'4?&'&762T]#" --\ #"H2jj2H"#"=/7 .*5;:t6X"7/<#",WY@ MKB?@K PX@\MPD@hMPDY@HG10,,+54'&'654&'&'&'47&6762!54767654&'&'&'4?&/&62 z(    *8qJTI& LL &Z6<6 #"(C(((&<"# *0/!6G0N.,""9.- - $2jj2R- -.9"jR@>@;*# @WQ AQ B@>21+"+!''74&'.76763203676?67676'&#"FHFFE--=WVVT K !  XRX   h*)E1/FwWVVTzle* 56<%" "(x\^v".%?NRV@ /@KPX@WQ AQ BKPX@WUQ B@!WWKQEYY@SSSVSVUTRQPO98+%/&/&&?6&/.?64/&6?>/466?6?6#35#N!V0 . "2#5z 6jVVN#P. . $ 2 , < rVddd"+R , XN0F' L0L",R & PVT $ L2@hjP(=-@*! -@Q AQ B*()+"&54707676320"&547>76320%6320"&547076a!I'  'I!aE2 'I!$ 'I!aa!I'&_A:6{CXXC{6:A__AWT%z<XC{6:A XC{6:A__A:6{C~?>,Q@ @KPX@f AR B@hhMRFY*&+"'&5476767626'&#"032547>m0,vSRRSv,0/  7(0":*[h7qSRRSq7hevv :F432"D^ '+/5AK*PX@R ^   \WW  W   XKQE@T  f   dWW  W   XKQEY@P66,,((6A6A@?>=<;:987543210,/,/.-(+(+*)''&%$#"!  !+2#!"&5463!!!!#55353###553#537#53##535353#);:*);<(   b<;232!5#!'&+"5!#!"5'!8_& 1_ :Zf$TZ =Cj'l$L ]ld,6d*|TTd/ @@=@WWMQE4"+463!#!"&526=!3%#5;).;)(<&p,d););<(^*)@&YMQE + 2654&#"zYV@=Y*|X>@VX|]K PX@ \XMQE@hXMQEY@  +2#!"'&63%!7>;23!2*3*j  4"7T$<2n("$ Q@N WW W   WKQE  +!!2#!"&5463!!!5!!5*:;) (<;) nZ:*D);<();dDXxXX #K PX@.  ^   WXKQE@/   f   WXKQEY@"  # #"! +2#!"&546;35!35!!#53!#5/*:;)D(<;).",DFFF:*);<(X);ddddpv .%@"@%>hh_+%+&76%6#"'%'7 #"&7676>'1* +b46' !#  62$  v #&& -* P  P0L F &$/ ?@<MMMOC    +2#432#432#543((( R2&22jR5@2X AR B  +"&5463!72#!'3733U)*<<*)d,l$$n)**) dddtF5K2PX B_Y55+"'&'&76'&67676'&'&676gCIUO_+G P&(00 ,L4,(2<66A3>ARHG_`^P F,`P&( d*N4,(2:<2LCB37 9Rj5R -@*=iQ B     +2'4&+432'43d(((Rl2ഴ 2|:%&KPX@ h B@ h_Y%+#"54'%&#"'&/&547>. l%,   *R$   y -@"&*.2K PX@" @210/.-,+*)('&%$#>K PX@210/.-,+*)('&%$# >@" @210/.-,+*)('&%$#>YYK PX@ h_K PX_@ h_YY"!+%'57'5"&#'%&5476%6""'%!55c7 r ~~ r;DPDDPD "   " f00:DPD DPD* _,+6/&'&76767632/&'.767>76ܢ, ). )/0660  G ,",#$4/0n06  ,i:NND7&+%'&'.'&'&'&'0.'&'&76767676767676676'&'&'&i 0!$%H  #-9#  ( ~WT(",0<:V  Q(  S,x A+ "  48L $1/4861*2,"L!&K PX@(hhh\KRF@'hhhhKRFY@ "!7 +####!"&/&?332!76;'3## *b(,(b *0lnn#v@K PX@)h hh\KRF@(h hhhKRFY@##"!6 +%#!"&/&?332!76;'3'%33## *b(,(b0 *0lnn @@=WWKQE     +2!5463"&5!#!5u | Z) ) , xx ))dd / #'+/3}@zW   W  W   WWWKQE00030321/.-,+*)('&%$#"!  +2#!"&5463!!'#537#53'3##53#5;#!5!'53*:;)(<;)XX22dd2pdd :*D);<();dD22dd222222tSHlK2PX@ YQ AQ B@$WYMQEY@  +2#!"&54632654&#"7!*:;)(<;)+*,,\H:*);<( );T*l &]@Z&#" @YYYMQE%$!   +%2#"&546'62&"'632&#"'6! & );:*(::XXF::ґ͐FsvF;)*:;)();<();\\ڒВВ|"(7g@d52*'+@>,=Y Y MY QE)))7)6/-!((  +"+53267>7676;55#5320&55#"'074?33g~1chh3i(LMV$Rhhr! IQ$yHTZ=%"+W>$-+,xd l&(Ndxt\ X2>@;@>WKQE +2#!"&546;55#!5#5/*:;)D(<;)l:*);<(");nnҌC!%@"!  @ >=h_+%7&76767'67676'=XtwceGYVLXtwacGYVrVzxcfHX}}\VVzxchGX}}\t  '08?GOWT@Q Y YYY M Q  EUTQP6521.,)(   +2#"&5462654&#"&2"54%'&6762#"542"&4&'&'&66'"&462mC]]CB^_V;;+*<&dL $  $8&20""8$ $Z  "$8r8$  """^BD\]CA_<,+;<*+S((  $ "8((&&8$   $"$8$8$ $ "&& jR %1=ISaoxV@SY  Y Y Q A Q B'&ED?>9832-*&1'0%$  +2+"5463'#"&54632654&"2%2+"5463"&=4622"&=4'&7676>'&76&'&'.76&6'&202QQRqrrq;vv;:222""9""v"$$8$D $  $ $ $T$$   $ N$8$"$8$((PrtPPtr`;SRvvRS;:((622%22"$"8$ $ $  $~$   $  B$8$"$8" $8@5/.&%$ >_  +"&5476'76'&'&'%&7676&'&C "${J6"35N)/* (DCA#FHW4<-/ Z (\$!"%O9 (/)>򂙖A @2' ($*+8DS#@ hh_:9-,LJ9D:D,8-8+'.'&767676.'.'&76"&54?6'"&?6#"&76?6Tj./*?A[]eg '''&* N96%'  '$:=;@%'  ^$$`6* 6 `!`%G/kk*&''' ge]\@?*'%69N  '%@;=:$'    ` $$^v/`, %`% 6& 6 2/<9@6+@YYMQE10850<1;#43!+$;#!"&5463!2#"&'&'&76?76%2+"&463H*B#"T T"#B*H&! +"  +&v-pn-x`@ 8B  :D  =%&>>L< +@(@YMQE%%'+%/#"&5476322654'&#".$ ISZZa`.~DCYXN". *[[__YI~ZWDCtB/@ =_/-+'&/&7&'&>76'6&'&320fC?vFh !L  "G\3kXY(5p 7$  c  b3E9fH0 AApu)1f%'5  )#3@0YMQE"! +2#!"/&546;5462%354&"(0<)79)<0dee5^5'z00&FlzzlFZZZ2<< #9@6fYMQE! ##+2#!"/.5463!54"#54632)<3-/3<dec(z&&&nn(lzx+5@@?8@h_31+'&'&6'&767>76676'&'&7676'67'67* `_> 8 h1"B@EG*+QTggFH.-YVZV 9`8N@ +=db;: >6r6klT8DB5&'  %&13!#  )*,$2Cw @=_ +2'43E( R2/"F:@7hhfYMQEFE@>10+)%#"+732?632#"&54?>'&#"'&5462?654'.#"'&?6s5$%**8LNp8(Ze)$"2R88IM>2*2H=2""2:%3("$(8pLN8'+ '(0R8LN8H20H$& 2"$27 2a8@5 @>WKQE +2#!5!5!'7);<(N ;)(?Q. ,  0K:;B-@Eh K&&+a0>>.$ * J-E:;L _#+6!"&766?67< J p  B h*G@D@fYMRF + 654&#"3'TҖkjԔ$2*|Ԕiil2h"6@'@$(=hhh_=<980/'%+%0&?'&?67676?6;67>762264&".  ! '.' (j  %  4G%E@uRUP 9/cU@,,@,8!    n( *> K 4HBS U?B .@.. !~>  ^@ @KPX@Q AQ B@YMQEY@   %+#"54763 &#"2654'捎dkjjRa>ŎȌRkj}j֖eRG_< 8G8GjRTjZ #l!Mbbp>>0vvNvwwRzzdvf *f>bffz>>6>f:bsr!b''~OXRz(N-z>yz>>yN> >D>z>bR3*>>pz(((^,P|xDHrB 2Jhxz@ X  ( v x |6jBF&jxDjfF*Hjlf T(@n j D x!"!n!"<"#R#$$>$l$%J%%&&'(4() )h)**h**++L+t++++,,<,`,,--X-. ./\/0P0001"12*2334t45 5h56X7,789:^;&;>?h@J@|@A:AB C4CjCD,EFGHGH HI0IJKLLMMNNO2OPQTQRrRSTU8UVVWXYBYZ[[.[x[\P]]^L^__x_`B`aBabbrbcxcde  Y Copyright (C) 2012 by original authors @ fontello.comCopyright (C) 2012 by original authors @ fontello.comfontellofontelloMediumMediumFontForge 2.0 : fontello : 6-2-2013FontForge 2.0 : fontello : 6-2-2013fontellofontelloVersion 001.000 Version 001.000 fontellofontello2#      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     uni2139 arrowleftarrowup arrowright arrowdownuni21B0uni21B3uni21C6uni229Euni229Fhouseuni2328uni232Buni2389uni23E9uni23EAuni23EDuni23EEuni23F3 filledboxuni25B4uni25B6uni25B8uni25BEuni25C2uni25D1uni2601uni2605uni2606uni2615uni261Cuni261Duni261Euni261Funi2630uni263Duni2661heart musicalnotemusicalnotedbluni268Funi2691uni2692uni2699uni26A0uni26A1uni26ABuni26C8uni2707uni2708uni2709uni270Euni2712uni2713uni2715uni2716uni274Euni2753uni275Euni2795uni2796uni27A1uni27A2uni27A6uni27F2uni27F3uni2B05uni2B06uni2B07uniE003uniE005uniE4ADuniE4AEuniE4AFuniE4B0uniE700uniE704uniE705uniE70AuniE70CuniE711uniE712uniE713uniE714uniE715uniE716uniE717uniE718uniE720uniE722uniE723uniE724uniE727uniE728uniE729uniE730uniE731uniE736uniE737uniE738uniE73AuniE73CuniE73DuniE73EuniE740uniE741uniE742uniE744uniE746uniE74CuniE74DuniE74EuniE74FuniE751uniE752uniE753uniE754uniE755uniE756uniE757uniE758uniE759uniE75AuniE75BuniE75CuniE75DuniE75EuniE75FuniE760uniE761uniE762uniE763uniE764uniE765uniE766uniE767uniE768uniE769uniE76AuniE76BuniE771uniE776uniE777uniE778uniE788uniE789uniE78BuniE78CuniE78DuniE78EuniE790uniE791uniE792uniE793uniE794uniE79AuniE79BuniE7A1uniE7A2uniE7A3uniE7A5uniE7A6uniE7A7uniE7A8uniE7A9uniE7AAuniE7ABuniE7ACuniE7ADuniE7AEuniE7AFuniF300uniF301uniF303uniF304uniF306uniF307uniF309uniF30AuniF30CuniF30DuniF30EuniF30FuniF310uniF312uniF313uniF315uniF316uniF318uniF319uniF31BuniF31CuniF31EuniF31FuniF321uniF322uniF324uniF325uniF327uniF328uniF32AuniF32DuniF330uniF333uniF336uniF339uniF33AuniF33CuniF33FuniF342uniF345uniF348uniF34BuniF34EuniF351uniF354uniF357uniF600uniF601uniF603u1F304u1F30Eu1F342u1F393u1F3A4u1F3A8u1F3ABu1F3ACu1F3AFu1F3B5u1F3C6u1F44Du1F44Eu1F45Cu1F464u1F465u1F4A1u1F4A5u1F4A6u1F4A7u1F4B3u1F4BBu1F4BCu1F4BEu1F4BFu1F4C1u1F4C4u1F4C5u1F4C8u1F4CAu1F4CBu1F4CEu1F4D1u1F4D5u1F4D6u1F4DEu1F4E3u1F4E4u1F4E5u1F4E6u1F4F0u1F4F1u1F4F6u1F4F7u1F500u1F501u1F504u1F505u1F506u1F507u1F50Au1F50Bu1F50Du1F511u1F512u1F513u1F514u1F516u1F517u1F519u1F526u1F53Eu1F554u1F680u1F6AB22RjRj, `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-,#B#B#BCCQXC+C`BeY-,C E EcEb`D-,C 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%BC`B %B %B# %PXC%B #a*!#a #a*!C%B%a*!Y CG CG`b EcEb`#DC>C`B- ,ETX #B `a BB` +k+"Y-, +-, +-, +-, +-, +-, +-, +-, +-, +-, +-,+ETX #B `a BB` +k+"Y-,+-,+-,+-,+-,+-,+-,+- ,+-!,+-", +-#, `` C#`C%%QX# <`#e!!Y-$,#+#*-%, 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,*-.,%%G#G#aE+e.# <8-/,%% .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-0, & .G#G#a#<8-1, #B F#G+#a8-2,%%G#G#aTX. <#!%%G#G#a %%G#G#a%%I%aEc# Xb!YcEb`#.# <8#!Y-3, C .G#G#a ` `fb# <8-4,# .F%FRX , G#B.**-?,+*-@,-*-A,E# . F#a8$+-B, #BA+-C,:+-D,:+-E,:+-F,:+-G,;+-H,;+-I,;+-J,;+-K,7+-L,7+-M,7+-N,7+-O,9+-P,9+-Q,9+-R,9+-S,<+-T,<+-U,<+-V,<+-W,8+-X,8+-Y,8+-Z,8+-[,0+.$+-\,0+4+-],0+5+-^,0+6+-_,1+.$+-`,1+4+-a,1+5+-b,1+6+-c,2+.$+-d,2+4+-e,2+5+-f,2+6+-g,3+.$+-h,3+4+-i,3+5+-j,3+6+-k,+e$Px0-KRXYc #D #p( ERD +D$QX@XD&QXXDYYYYDentypo-rails-3.0.0/app/views/0000755000004100000410000000000013341310031016072 5ustar www-datawww-dataentypo-rails-3.0.0/app/views/entypo/0000755000004100000410000000000013341310031017410 5ustar www-datawww-dataentypo-rails-3.0.0/app/views/entypo/charmap/0000755000004100000410000000000013341310031021023 5ustar www-datawww-dataentypo-rails-3.0.0/app/views/entypo/charmap/index.html.erb0000644000004100000410000000071313341310031023570 0ustar www-datawww-data entypo-rails: charmap <%= Entypo::VERSION %> <%= stylesheet_link_tag 'entypo' %>
    <% @icons.each do |icon| %>
  • <%= ".#{icon.klass}" %> <%= "U+#{icon.codepoint.upcase}" %>
  • <% end %>
entypo-rails-3.0.0/LICENSE0000644000004100000410000000217713341310031015171 0ustar www-datawww-dataCopyright (c) 2012 by Lukas Westermann This license ONLY applies to files NOT IN the app/assets/fonts directory. MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. entypo-rails-3.0.0/entypo-rails.gemspec0000644000004100000410000000200513341310031020145 0ustar www-datawww-data# -*- encoding: utf-8 -*- require File.expand_path('../lib/entypo/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Lukas Westermann", "Marco Pluess"] gem.email = ["lukas@at-point.ch", "marco@at-point.ch"] gem.description = %q{Rails asset pipeline plugin and CSS mappings for the Entypo pictograms by Daniel Bruce http://www.entypo.com} gem.summary = %q{Rails asset pipeline plugin to provide Entypo icons.} gem.homepage = "" gem.licenses = ['MIT', 'SIL Open Font License'] gem.files = %w{.gitignore Gemfile Rakefile README.md LICENSE LICENSE_ENTYPO entypo-rails.gemspec} + Dir['**/*.{rb,erb,scss,eot,svg,ttf,woff}'] gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "entypo-rails" gem.require_paths = ["lib"] gem.version = Entypo::VERSION gem.required_ruby_version = '>= 1.9' gem.add_dependency "railties", ">= 4.1", "< 6" end entypo-rails-3.0.0/Rakefile0000644000004100000410000000006013341310031015616 0ustar www-datawww-data#!/usr/bin/env rake require "bundler/gem_tasks" entypo-rails-3.0.0/lib/0000755000004100000410000000000013341310031014723 5ustar www-datawww-dataentypo-rails-3.0.0/lib/entypo/0000755000004100000410000000000013341310031016241 5ustar www-datawww-dataentypo-rails-3.0.0/lib/entypo/version.rb0000644000004100000410000000016013341310031020250 0ustar www-datawww-datamodule Entypo # Gem version VERSION = "3.0.0" # Entypo font version FONT_VERSION = "2.0-20121031" end entypo-rails-3.0.0/lib/entypo/charmap.rb0000644000004100000410000000205013341310031020176 0ustar www-datawww-datamodule Entypo # The Charmap simply "parses" a CSS file which must conform to the following format: # # .icon$NAME$:before { content: ...} /* $codepoint$ */ # class Charmap Icon = Struct.new(:klass, :codepoint) do def <=>(other) klass <=> other.klass end end # Public: Access the shared instance based on our default entypo.scss file. # # Returns Charmap instance. def self.instance @@instance ||= self.new File.expand_path('../../../app/assets/stylesheets/entypo.scss.erb', __FILE__) end # Public: Returns Array of icons. # # Returns Array of Icon instances. def self.icons instance.icons end # Access the icons array. attr_reader :icons def initialize(path) @icons = load(path) end private def load(path) ERB.new(File.read(path)).result.split("\n").map do |line| if line =~ %r{\A\.(#{Entypo.css_prefix}-[a-z0-9\-]+):before.*/\* ([0-9a-f]+)} Icon.new($1, $2) end end.compact.sort end end end entypo-rails-3.0.0/lib/entypo-rails.rb0000644000004100000410000000173713341310031017706 0ustar www-datawww-datarequire 'rails' require 'entypo/version' # The entypo-rails plugin provides access to the Entypo pictograms # by Daniel Bruce http://www.entypo.com in the Rails asset pipeline. module Entypo # String used as CSS Prefix before the icon name defined by entypo, this can # be set to avoid conflicts with other libraries like bootstrap. # # The default is "icon" @@css_prefix = "icon" mattr_accessor :css_prefix # Boolean which controls in which cases the route charmap route is drawn (or # not), when set to `true` the route is drawn. # # Defaults to `true` in Rails development env. @@charmap = Rails.env.development? mattr_accessor :charmap def self.charmap?; charmap end # Dummy engine so that lib/assets/stylesheets and vendor/assets/fonts # are picked up by Rails asset pipeline. class Engine < ::Rails::Engine initializer :assets do |config| Rails.application.config.assets.precompile += %w{ entypo.css } if Entypo.charmap? end end end entypo-rails-3.0.0/config/0000755000004100000410000000000013341310031015422 5ustar www-datawww-dataentypo-rails-3.0.0/config/routes.rb0000644000004100000410000000026513341310031017273 0ustar www-datawww-data# Enable charmap in development mode, also makes it simpler to test it Rails.application.routes.draw do get 'entypo/charmap', :to => 'entypo/charmap#index' if Entypo.charmap? end entypo-rails-3.0.0/Gemfile0000644000004100000410000000014113341310031015444 0ustar www-datawww-datasource 'https://rubygems.org' # Specify your gem's dependencies in entypo-rails.gemspec gemspec entypo-rails-3.0.0/LICENSE_ENTYPO0000644000004100000410000001066713341310031016272 0ustar www-datawww-dataCopyright (c) Daniel Bruce (), with Reserved Font Name and . This Font Software located at app/assets/fonts is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER 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 THE COPYRIGHT HOLDER 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.