fruit_warehouse 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/CODE_OF_CONDUCT.md +13 -0
  4. data/Gemfile +7 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +85 -0
  7. data/Rakefile +1 -0
  8. data/_config.yml +5 -0
  9. data/assets/fonts/fruit_warehouse/fruit_warehouse-webfont.eot +0 -0
  10. data/assets/fonts/fruit_warehouse/fruit_warehouse-webfont.svg +212 -0
  11. data/assets/fonts/fruit_warehouse/fruit_warehouse-webfont.ttf +0 -0
  12. data/assets/fonts/fruit_warehouse/fruit_warehouse-webfont.woff +0 -0
  13. data/assets/stylesheets/_fruit_warehouse-compass.scss +5 -0
  14. data/assets/stylesheets/_fruit_warehouse-sprockets.scss +5 -0
  15. data/assets/stylesheets/fruit_warehouse.scss +12 -0
  16. data/assets/stylesheets/fruit_warehouse/_animated.scss +34 -0
  17. data/assets/stylesheets/fruit_warehouse/_bordered-pulled.scss +16 -0
  18. data/assets/stylesheets/fruit_warehouse/_core.scss +12 -0
  19. data/assets/stylesheets/fruit_warehouse/_extras.scss +44 -0
  20. data/assets/stylesheets/fruit_warehouse/_fixed-width.scss +6 -0
  21. data/assets/stylesheets/fruit_warehouse/_icons.scss +13 -0
  22. data/assets/stylesheets/fruit_warehouse/_larger.scss +13 -0
  23. data/assets/stylesheets/fruit_warehouse/_list.scss +19 -0
  24. data/assets/stylesheets/fruit_warehouse/_mixins.scss +26 -0
  25. data/assets/stylesheets/fruit_warehouse/_path.scss +14 -0
  26. data/assets/stylesheets/fruit_warehouse/_rotated-flipped.scss +20 -0
  27. data/assets/stylesheets/fruit_warehouse/_stacked.scss +20 -0
  28. data/assets/stylesheets/fruit_warehouse/_variables.scss +23 -0
  29. data/fruit_warehouse.gemspec +37 -0
  30. data/lib/fruit_warehouse.rb +82 -0
  31. data/lib/fruit_warehouse/rails/engine.rb +13 -0
  32. data/lib/fruit_warehouse/rails/helpers.rb +17 -0
  33. data/lib/fruit_warehouse/rails/railtie.rb +11 -0
  34. data/lib/fruit_warehouse/version.rb +3 -0
  35. data/src/_includes/head.html +20 -0
  36. data/src/_layouts/default.html +7 -0
  37. data/src/_sass/_fruit_warehouse.scss +0 -0
  38. data/src/css/application.scss +6 -0
  39. data/src/index.html +5 -0
  40. metadata +153 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2d1bb40b3e7469fc54ba181aeacd96c4a15dce8e
4
+ data.tar.gz: 0678333b6142e243f543c09c2259207af59528c0
5
+ SHA512:
6
+ metadata.gz: bdb7dbbfbea982294eb4d0fb53e7dd622c9330ab1fe90cd42c5e48a4f31be4df7a1540d9d1604875b02c7c0f061a204c725ba7fa500841028d205c5c9a2f3bd4
7
+ data.tar.gz: 1cc9d13b862f92014c3fe8553a9f3b31be6a46928e6fbdeb2fb785e7fe04fb78f5cd2148f8162337ba30fc3c39ca68d186e4a5689cf3af4e558ee5fe06366a85
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .idea
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ .DS_Store
8
+ Gemfile.lock
9
+ InstalledFiles
10
+ _yardoc
11
+ coverage
12
+ doc/
13
+ lib/bundler/man
14
+ pkg
15
+ rdoc
16
+ spec/reports
17
+ test/tmp
18
+ test/version_tmp
19
+ tmp
20
+ _gh_pages
21
+ _site
22
+ .sass-cache
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fruit_warehouse.gemspec
4
+ gemspec
5
+
6
+ gem 'jekyll', '~> 2.5.3'
7
+ gem "jgd"
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 imgarylai
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,85 @@
1
+ # FruitWarehouse
2
+
3
+ This idea is from [FontAwesome](https://github.com/FortAwesome/Font-Awesome)!
4
+
5
+ Fruit Warehouse is a set of fruit icons. This gem support Ruby projects and Ruby on Rails projects with Compass, Sprocket, etc.
6
+
7
+ ## Installation
8
+
9
+ Please see the appropriate guide for your environment of choice:
10
+
11
+ * [Ruby on Rails](#a-ruby-on-rails).
12
+ * [Compass](#b-compass-without-rails) not on Rails.
13
+
14
+ ### a. Ruby on Rails
15
+
16
+ In your Gemfile include:
17
+
18
+ ```ruby
19
+ gem 'fruit_warehouse'
20
+ ```
21
+
22
+ And then execute:
23
+
24
+ ```sh
25
+ bundle install
26
+ ```
27
+
28
+ Import the FruitWarehouse styles in your `app/assets/stylesheets/application.css.scss`. The `fruit_warehouse-sprockets` file
29
+ includes the sprockets assets helper Sass functions used for finding the proper path to the font file.
30
+
31
+ ```scss
32
+ @import "fruit_warehouse-sprockets";
33
+ @import "fruit_warehouse";
34
+ ```
35
+
36
+ #### Rails Helper usage
37
+
38
+ In your view:
39
+
40
+ ```ruby
41
+ fruit('flag')
42
+ # => <i class="fa fa-flag"></i>
43
+ ```
44
+
45
+ ```ruby
46
+ fruit('flag', '', class: 'strong')
47
+ # => <i class="fa fa-flag strong"></i>
48
+ ```
49
+
50
+ ```ruby
51
+ fruit('flag', 'Font Awesome', id: 'my-icon', class: 'strong')
52
+ # => <i id="my-icon" class="fa fa-flag strong"></i> Font Awesome
53
+ ```
54
+
55
+ Note: the icon helper can take a hash of options that will be passed to the content_tag helper
56
+
57
+ ### b. Compass without Rails
58
+
59
+ Install the gem
60
+
61
+ ```sh
62
+ gem install fruit_warehouse
63
+ ```
64
+
65
+ If you have an existing Compass project:
66
+
67
+ ```ruby
68
+ # config.rb:
69
+ require 'fruit_warehouse'
70
+ ```
71
+
72
+ Import the FruitWarehouse styles
73
+
74
+ ```scss
75
+ @import "fruit_warehouse-compass";
76
+ @import "fruit_warehouse";
77
+ ```
78
+
79
+ ## Contributing
80
+
81
+ 1. Fork it ( https://github.com/jungllle/fruit_warehouse/fork )
82
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
83
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
84
+ 4. Push to the branch (`git push origin my-new-feature`)
85
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/_config.yml ADDED
@@ -0,0 +1,5 @@
1
+ source: src
2
+ destination: _gh_pages
3
+
4
+ title: Fruit Warehouse - Jungllle
5
+ description: Give me a banana, I'll give you a monkey.
@@ -0,0 +1,212 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <!--
4
+ 2015-5-15: Created with FontForge (http://fontforge.org)
5
+ -->
6
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
7
+ <metadata>
8
+ Created by FontForge 20150504 at Fri May 15 18:10:11 2015
9
+ By Gary Lai
10
+ Copyright (c) 2015, Gary Lai
11
+ </metadata>
12
+ <defs>
13
+ <font id="FruitWarehouse" horiz-adv-x="512" >
14
+ <font-face
15
+ font-family="FruitWarehouse"
16
+ font-weight="400"
17
+ font-stretch="normal"
18
+ units-per-em="512"
19
+ panose-1="2 0 5 3 0 0 0 0 0 0"
20
+ ascent="448"
21
+ descent="-64"
22
+ bbox="2.40039 -52 509.6 442.517"
23
+ underline-thickness="25.6"
24
+ underline-position="-51.2"
25
+ unicode-range="U+0020-F10E"
26
+ />
27
+ <missing-glyph />
28
+ <glyph glyph-name="space" unicode=" " horiz-adv-x="200"
29
+ />
30
+ <glyph glyph-name="uniF106" unicode="&#xf106;"
31
+ d="M186.4 33.5996c0 6.62793 5.37207 12 12 12c6.62695 0 12 -5.37207 12 -12c0 -6.62695 -5.37305 -12 -12 -12c-6.62793 0 -12 5.37305 -12 12zM232 35.2002c0 6.62695 5.37305 12 12 12s12 -5.37305 12 -12c0 -6.62793 -5.37305 -12 -12 -12s-12 5.37207 -12 12z
32
+ M282.4 45.5996c0 6.62793 5.37207 12 12 12c6.62695 0 12 -5.37207 12 -12c0 -6.62695 -5.37305 -12 -12 -12c-6.62793 0 -12 5.37305 -12 12zM327.2 66.4004c0 6.62695 5.37207 12 12 12c6.62695 0 12 -5.37305 12 -12c0 -6.62793 -5.37305 -12 -12 -12
33
+ c-6.62793 0 -12 5.37207 -12 12zM364 99.2002c0 6.62695 5.37305 12 12 12s12 -5.37305 12 -12c0 -6.62793 -5.37305 -12 -12 -12s-12 5.37207 -12 12zM290.4 90.4004c0 6.62695 5.37207 12 12 12c6.62695 0 12 -5.37305 12 -12c0 -6.62793 -5.37305 -12 -12 -12
34
+ c-6.62793 0 -12 5.37207 -12 12zM322.4 120.8c0 6.62793 5.37207 12 12 12c6.62695 0 12 -5.37207 12 -12c0 -6.62695 -5.37305 -12 -12 -12c-6.62793 0 -12 5.37305 -12 12zM199.2 78.4004c0 6.62695 5.37207 12 12 12c6.62695 0 12 -5.37305 12 -12
35
+ c0 -6.62793 -5.37305 -12 -12 -12c-6.62793 0 -12 5.37207 -12 12zM215.2 124c0 6.62695 5.37207 12 12 12c6.62695 0 12 -5.37305 12 -12s-5.37305 -12 -12 -12c-6.62793 0 -12 5.37305 -12 12zM244 76.7998c0 6.62793 5.37305 12 12 12s12 -5.37207 12 -12
36
+ c0 -6.62695 -5.37305 -12 -12 -12s-12 5.37305 -12 12zM256 115.2c0 6.62695 5.37305 12 12 12s12 -5.37305 12 -12c0 -6.62793 -5.37305 -12 -12 -12s-12 5.37207 -12 12zM278.4 144.8c0 6.62793 5.37207 12 12 12c6.62695 0 12 -5.37207 12 -12
37
+ c0 -6.62695 -5.37305 -12 -12 -12c-6.62793 0 -12 5.37305 -12 12zM239.416 172.036c4.93066 5.06641 12.7773 5.42578 17.5264 0.802734c4.75 -4.62305 4.60254 -12.4766 -0.328125 -17.542c-4.93066 -5.06641 -12.7783 -5.42578 -17.5273 -0.802734
38
+ c-4.74902 4.62207 -4.60254 12.4766 0.329102 17.542zM469.6 350.4c38.4004 -94.4004 32.8008 -192 -17.5996 -269.601c-48 -74.3994 -132 -119.2 -223.2 -119.2v0c-40.7998 0 -80.7998 8.80078 -120 25.6006c-12 -9.60059 -26.3994 -15.2002 -39.2002 -15.2002
39
+ c-10.3994 0 -20 4 -26.3994 10.4004c-9.60059 9.59961 -12.7998 24 -8.7998 39.1992c2.39941 10.4004 8 20.8008 15.1992 29.6006c-35.1992 92.7998 -28.7998 183.2 20 256c50.4004 75.2002 136.801 120 232 120c36 0 72 -6.40039 106.4 -19.2002
40
+ c21.5996 15.2002 47.2002 16 61.5996 1.59961c13.6006 -13.5996 13.6006 -37.5996 0 -59.1992zM424 100c44.7998 69.5996 48.7998 159.2 10.4004 245.6l-4 9.60059l6.39941 8c9.60059 11.2002 8.7998 21.5996 8 22.3994c0 0.800781 -0.799805 0.800781 -2.39941 0.800781
41
+ c-4 0 -12.8008 -3.2002 -20.8008 -10.4004l-8 -7.2002l-9.59961 4c-33.5996 13.6006 -68.7998 20 -103.2 20c-83.2002 0 -160 -39.2002 -203.2 -104.8c-44 -65.5996 -48.7998 -148.8 -12.7998 -233.6l4.7998 -11.2002l-8.7998 -8
42
+ c-0.799805 -0.799805 -0.799805 -0.799805 -1.59961 -1.60059c-13.6006 -12.7998 -14.4004 -25.5996 -12.7998 -27.1992c0 -0.800781 0.799805 -0.800781 2.39941 -0.800781c5.60059 0 15.2002 4 24 12.8008l8 9.59961l12 -5.59961
43
+ c38.4004 -17.6006 77.6006 -26.4004 116 -26.4004c80 0 152.8 39.2002 195.2 104z" />
44
+ <glyph glyph-name="uniF10A" unicode="&#xf10a;"
45
+ d="M454.398 309.602zM488.8 313.6c8 -34.3994 18.4004 -142.399 -28.7998 -231.199c-40 -72.8008 -132 -122.4 -228.8 -122.4c-19.2002 0 -38.4004 1.59961 -57.6006 5.59961c-76 14.4004 -129.6 56 -149.6 90.4004c-10.4004 16.7998 -12.7998 33.5996 -8 47.2002
46
+ c13.5996 41.5996 59.2002 41.5996 73.5996 41.5996c19.2002 0 40 -2.39941 62.4004 -5.59961c24 -3.2002 48.7998 -6.40039 72 -6.40039c9.59961 0 17.5996 0.799805 25.5996 1.60059c75.2002 9.59961 107.2 61.5996 135.2 108c18.4004 30.3994 33.6006 57.5996 60 64
47
+ c5.60059 1.59961 20.7998 9.59961 20.7998 32c0 4 -1.59961 13.5996 -2.39941 17.5996c-1.60059 12.7998 -3.2002 16 -4.7998 23.2002c-2.40039 10.3994 -9.60059 14.3994 -14.4004 17.5996c-5.59961 4 -8.7998 9.60059 -8.7998 16c0 6.40039 4 12 10.3994 14.4004
48
+ l0.800781 0.799805l23.1992 10.4004h3.2002c8.7998 0 16 -6.40039 16 -15.2002c0 -5.60059 0 -22.4004 -0.799805 -41.6006c0 -20 -0.799805 -42.3994 -0.799805 -55.1992c0 -4 0.799805 -8.80078 1.59961 -12.8008zM434.4 96.7998
49
+ c34.3994 64 34.3994 137.601 30.3994 177.601c-0.799805 5.59961 -6.39941 9.59961 -12 7.19922c-0.799805 -0.799805 -2.39941 -0.799805 -3.2002 -1.59961c-13.5996 -6.40039 -26.3994 -26.4004 -41.5996 -52c-28.7998 -47.2002 -68 -110.4 -156 -121.6
50
+ c-8.7998 -0.800781 -18.4004 -1.60059 -28.7998 -1.60059c-24.7998 0 -50.4004 3.2002 -75.2002 6.40039c-20.7998 3.2002 -41.5996 5.59961 -58.4004 5.59961c-34.3994 0 -43.1992 -11.2002 -47.1992 -22.3994c-1.60059 -5.60059 0 -13.6006 5.59961 -23.2002
51
+ c16.7998 -28 64 -64 130.4 -77.6006c17.5996 -3.19922 34.3994 -4.7998 52 -4.7998c87.1992 0 168.8 43.2002 204 108zM382.4 75.2002c5.59961 5.59961 14.3994 -3.2002 8.7998 -8.7998c-72 -76 -216 -87.2002 -299.2 -20.8008
52
+ c-6.40039 4.80078 2.40039 13.6006 8.7998 8.80078c77.6006 -61.6006 214.4 -49.6006 281.601 20.7998z" />
53
+ <glyph glyph-name="uniF10D" unicode="&#xf10d;"
54
+ d="M439.2 100c6.39941 -35.2002 -3.2002 -68 -24.7998 -93.5996c-22.4004 -26.4004 -68.8008 -57.6006 -163.2 -57.6006c-91.2002 0 -138.4 33.6006 -161.601 60.7998c-24 28.8008 -34.3994 65.6006 -28.7998 100.801c6.40039 40.7998 28 63.1992 48 84
55
+ c18.4004 19.1992 36 37.5996 42.4004 70.3994c11.2002 57.6006 45.5996 92.7998 93.5996 96c0 17.6006 -0.799805 43.2002 -2.39941 58.4004c-0.800781 6.39941 3.19922 12 10.3994 15.2002h0.799805c5.60059 2.39941 21.6006 7.19922 15.2002 -9.60059
56
+ c-2.39941 -6.39941 -4 -18.3994 -4.7998 -30.3994c14.4004 11.1992 49.5996 34.3994 86.4004 8c0.799805 -0.800781 0.799805 -1.60059 0 -2.40039c-28.8008 -36.7998 -72 -21.5996 -87.2002 -14.4004c-0.799805 -9.59961 -0.799805 -19.1992 -0.799805 -26.3994
57
+ c45.5996 -4.7998 78.3994 -39.2002 88.7998 -95.2002c6.39941 -33.5996 23.2002 -54.4004 41.5996 -76c19.2002 -23.2002 40 -48 46.4004 -88zM396 20.7998c17.5996 20.7998 24.7998 47.2002 20.7998 75.2002c-5.59961 33.5996 -23.2002 54.4004 -41.5996 76
58
+ c-19.2002 22.4004 -40 46.4004 -47.2002 86.4004c-9.59961 48.7998 -36.7998 76.7998 -76.7998 76.7998s-67.2002 -28 -76.7998 -76.7998c-8 -40.8008 -29.6006 -63.2002 -48.8008 -83.2002c-18.3994 -20 -36 -37.6006 -41.5996 -71.2002
59
+ c-4.7998 -28 4 -57.5996 23.2002 -80.7998c20.7998 -24 61.5996 -52 144 -52c84.7998 0 125.6 27.2002 144.8 49.5996zM195.2 231.2c4 0 7.2002 -4.7998 6.39941 -9.60059c-4 -17.5996 -12.7998 -41.5996 -36.7998 -68.7998
60
+ c-0.799805 -0.799805 -1.59961 -2.39941 -3.2002 -4c-12 -13.5996 -40.7998 -44 -38.3994 -76c0.799805 -13.5996 7.2002 -26.3994 20 -38.3994c3.2002 -2.40039 3.2002 -7.2002 0.799805 -10.4004v0c-3.2002 -4 -8.7998 -4 -12 -0.799805
61
+ c-15.2002 14.3994 -24 31.2002 -24.7998 48.7998c-2.40039 39.2002 29.5996 73.5996 43.2002 88c1.59961 0.799805 2.39941 2.40039 3.19922 3.2002c21.6006 24 29.6006 45.5996 32.8008 61.5996c0.799805 4 4.7998 7.2002 8.7998 6.40039v0zM197.6 282.4
62
+ c1.60059 4.7998 8 6.39941 12 2.39941c2.40039 -1.59961 4 -5.59961 2.40039 -8.7998c-1.59961 -4 -2.40039 -9.59961 -3.2002 -13.5996c0 -4 -4 -6.40039 -8 -6.40039v0c-4.7998 0 -8.7998 4.7998 -7.2002 9.59961c0 4.80078 1.60059 11.2002 4 16.8008z" />
63
+ <glyph glyph-name="uniF108" unicode="&#xf108;"
64
+ d="M256 436.8c133.6 0 241.6 -108.8 241.6 -242.399c0 -133.601 -108 -241.601 -241.6 -241.601s-241.6 108 -241.6 241.601c0 133.6 108 242.399 241.6 242.399zM256 -20c118.4 0 215.2 95.2002 215.2 214.4c0 119.199 -96.7998 215.199 -215.2 215.199
65
+ s-215.2 -95.1992 -215.2 -214.399s96.7998 -215.2 215.2 -215.2zM105.6 200.8c-21.5996 0 -36.7998 20 -31.1992 40.7998c4 17.6006 11.1992 33.6006 20 48.8008c11.1992 18.3994 36 21.5996 51.1992 6.39941l82.4004 -82.3994c8 -7.2002 4.7998 -13.6006 -5.59961 -13.6006
66
+ h-116.801zM208.8 376c20.7998 5.59961 41.6006 -9.59961 40.7998 -31.2002v-116.8c0 -10.4004 -5.59961 -13.5996 -13.5996 -5.59961l-82.4004 82.3994c-15.1992 15.2002 -12 40 6.40039 51.2002c15.2002 8.7998 31.2002 15.2002 48.7998 20zM276 222.4
67
+ c-8 -7.2002 -14.4004 -4.80078 -13.5996 5.59961v116.8c0 21.6006 20 36.7998 40.7998 31.2002c17.5996 -4 33.5996 -11.2002 48.7998 -20c18.4004 -11.2002 21.5996 -36 6.40039 -51.2002zM228 175.2l-82.4004 -82.4004c-15.1992 -15.2002 -40 -12 -51.1992 6.40039
68
+ c-8.80078 15.2002 -15.2002 31.2002 -20 48.7998c-5.60059 20.7998 9.59961 40.7998 31.1992 40.7998h116.801c10.3994 0 13.5996 -5.59961 5.59961 -13.5996zM406.4 188.8c21.5996 0 36.7998 -20.7998 31.1992 -40.7998c-4 -17.5996 -11.1992 -33.5996 -20 -48.7998
69
+ c-11.1992 -18.4004 -36 -21.6006 -51.1992 -6.40039l-82.4004 82.4004c-8 7.2002 -4.7998 13.5996 5.59961 13.5996h116.801zM236 166.4c8 8 14.4004 4.7998 13.5996 -5.60059v-116.8c0 -21.5996 -20 -36.7998 -40.7998 -31.2002c-17.5996 4 -33.5996 11.2002 -48.7998 20
70
+ c-18.4004 11.2002 -21.5996 36 -6.40039 51.2002zM284 214.4l82.4004 82.3994c15.1992 15.2002 40 12 51.1992 -6.39941c8.80078 -15.2002 15.2002 -31.2002 20 -48.8008c5.60059 -20.7998 -9.59961 -40.7998 -31.1992 -40.7998h-116.801
71
+ c-10.3994 0 -13.5996 5.60059 -5.59961 13.6006zM276 166.4l82.4004 -82.4004c15.1992 -15.2002 12 -40 -6.40039 -51.2002c-15.2002 -8.7998 -31.2002 -15.2002 -48.7998 -20c-20.7998 -5.59961 -40.7998 9.60059 -40.7998 31.2002v116.8
72
+ c0 10.4004 5.59961 13.6006 13.5996 5.60059z" />
73
+ <glyph glyph-name="uniF10E" unicode="&#xf10e;"
74
+ d="M476.8 35.2002c23.2002 -13.6006 21.6006 -31.2002 18.4004 -38.4004c-7.2002 -26.3994 -48.7998 -46.3994 -96.7998 -46.3994c-36.8008 0 -129.601 12.7998 -199.2 131.199c-55.2002 93.6006 -128 96.8008 -159.2 98.4004c-4.7998 0 -8 0 -11.2002 0.799805
75
+ c-9.59961 1.60059 -16 10.4004 -15.2002 20.7998c1.60059 18.4004 28 48 91.2002 48c10.4004 0 20.7998 -0.799805 32 -2.39941h0.799805c4.80078 0 8.80078 -0.799805 12.8008 -1.60059c-8.80078 47.2002 2.39941 111.2 30.3994 152.801
76
+ c18.4004 27.1992 41.6006 42.3994 67.2002 44c13.5996 0.799805 24 -2.40039 30.4004 -12.8008c14.3994 -16.7998 9.59961 -44.7998 3.19922 -80.7998c-4.7998 -26.3994 -9.59961 -56 -6.39941 -83.2002c23.2002 29.6006 76 59.2002 141.6 58.4004
77
+ c17.6006 0 36.7998 -0.799805 40.7998 -15.2002c4.80078 -16 -14.3994 -27.2002 -48 -48c-23.1992 -13.5996 -52 -31.2002 -60.7998 -45.5996c-27.2002 -41.6006 6.40039 -97.6006 32.7998 -117.601v0c25.6006 -18.3994 56.8008 -39.1992 95.2002 -62.3994zM292.8 249.6
78
+ c-6.39941 -8 -8 -15.1992 -7.2002 -20v0c8.80078 -24 20 -47.1992 31.2002 -66.3994c-4 21.5996 -0.799805 44.7998 12 65.5996c12 19.2002 42.4004 37.6006 68.7998 53.6006c9.60059 5.59961 21.6006 13.5996 29.6006 19.1992h-9.60059h-0.799805
79
+ c-57.5996 0 -105.6 -26.3994 -124 -52zM200.8 384.8c-26.3994 -39.2002 -36 -102.399 -24 -145.6c15.2002 -4 32 -10.4004 52 -22.4004c17.6006 -10.3994 33.6006 -23.2002 52 -38.3994c-10.3994 20.7998 -19.2002 43.1992 -24.7998 64
80
+ c-9.59961 36 -3.2002 76.7998 3.2002 112c4.7998 24.7998 9.59961 52.7998 2.39941 60.7998c-2.39941 2.39941 -6.39941 3.2002 -12 3.2002c-22.3994 -0.800781 -39.1992 -19.2002 -48.7998 -33.6006zM473.6 3.2002c0.800781 4 -2.39941 8 -7.19922 12
81
+ c-39.2002 23.2002 -71.2002 44.7998 -97.6006 64v0h-0.799805c-11.2002 8 -20.7998 16 -30.4004 23.2002v0c-0.799805 0 -0.799805 0.799805 -1.59961 0.799805c-20 16 -37.5996 30.3994 -52 43.2002c-24.7998 20.7998 -44.7998 37.5996 -66.4004 50.3994
82
+ c-33.5996 20 -56 23.2002 -81.5996 26.4004h-0.799805c-10.4004 1.59961 -20 2.39941 -28.7998 2.39941c-40.8008 0 -60 -13.5996 -65.6006 -21.5996h1.60059c32 -1.59961 116.8 -5.59961 178.399 -109.6c64 -108 146.4 -120 179.2 -120
83
+ c42.4004 0 70.4004 16.7998 73.5996 28.7998zM424 15.2002c13.5996 1.59961 13.5996 -20 -0.799805 -21.6006c-82.4004 -9.59961 -149.601 41.6006 -188 112c-6.40039 12.8008 12.7998 23.2002 19.2002 11.2002c35.1992 -64 93.5996 -109.6 169.6 -101.6z" />
84
+ <glyph glyph-name="uniF107" unicode="&#xf107;"
85
+ d="M420.8 356.8c42.4004 -42.3994 68.7998 -101.6 68.7998 -165.6c0 -128.8 -104.8 -233.601 -233.6 -233.601s-233.6 104.801 -233.6 233.601s104.8 233.6 234.399 233.6c55.2002 0 105.601 -19.2002 145.601 -51.2002c16 18.4004 30.3994 37.6006 39.1992 55.2002
86
+ c5.60059 11.2002 18.4004 16 28 7.2002c5.60059 -5.59961 11.2002 -11.2002 16.8008 -16c9.59961 -9.59961 4 -23.2002 -8 -28.7998c-16 -7.2002 -37.6006 -19.2002 -57.6006 -34.4004zM256 -9.59961c110.4 0 200.8 89.5996 200.8 200c0 56.7998 -24 107.199 -61.5996 144
87
+ c-8.7998 -8.80078 -16.7998 -17.6006 -23.2002 -27.2002c-4.7998 -7.2002 -15.2002 -8 -21.5996 -1.60059v0c-5.60059 6.40039 -4.80078 16.8008 2.39941 21.6006c7.2002 5.59961 16 12.7998 25.6006 21.5996c-33.6006 26.4004 -76 42.4004 -122.4 42.4004
88
+ c-110.4 0 -200.8 -88.7998 -200.8 -200s90.3994 -200.8 200.8 -200.8zM312.8 36c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM307.2 78.4004
89
+ c0 6.18555 5.01465 11.1992 11.2002 11.1992s11.1992 -5.01367 11.1992 -11.1992s-5.01367 -11.2002 -11.1992 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM302.4 119.2c0 6.18555 5.01367 11.2002 11.1992 11.2002s11.2002 -5.01465 11.2002 -11.2002
90
+ s-5.01465 -11.2002 -11.2002 -11.2002s-11.1992 5.01465 -11.1992 11.2002zM336.8 100c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM336.8 145.6
91
+ c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002s-5.01465 -11.1992 -11.2002 -11.1992s-11.2002 5.01367 -11.2002 11.1992zM304.8 168c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002
92
+ s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM376 89.5996c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002s-5.01465 -11.1992 -11.2002 -11.1992s-11.2002 5.01367 -11.2002 11.1992zM398.4 130.4
93
+ c0 6.18555 5.01367 11.1992 11.1992 11.1992s11.2002 -5.01367 11.2002 -11.1992s-5.01465 -11.2002 -11.2002 -11.2002s-11.1992 5.01465 -11.1992 11.2002zM412 176c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002
94
+ s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM370.4 161.6c0 6.18555 5.01367 11.2002 11.1992 11.2002s11.2002 -5.01465 11.2002 -11.2002s-5.01465 -11.1992 -11.2002 -11.1992s-11.1992 5.01367 -11.1992 11.1992zM379.2 200.8
95
+ c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.1992 -5.01465 11.1992 -11.2002s-5.01367 -11.2002 -11.1992 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM343.2 187.2c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.1992 -5.01465 11.1992 -11.2002
96
+ s-5.01367 -11.2002 -11.1992 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM409.6 223.2c0 6.18555 5.01465 11.2002 11.2002 11.2002s11.2002 -5.01465 11.2002 -11.2002s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM365.6 122.4
97
+ c0 6.18555 5.01465 11.1992 11.2002 11.1992s11.2002 -5.01367 11.2002 -11.1992s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002zM348 58.4004c0 6.18555 5.01465 11.1992 11.2002 11.1992s11.2002 -5.01367 11.2002 -11.1992
98
+ s-5.01465 -11.2002 -11.2002 -11.2002s-11.2002 5.01465 -11.2002 11.2002z" />
99
+ <glyph glyph-name="uniF109" unicode="&#xf109;"
100
+ d="M480 294.4h29.5996v-12c0 -140 -113.6 -253.601 -253.6 -253.601s-253.6 113.601 -253.6 253.601v12h29.5996h24h228.8v-12c0 -20.8008 20 -32 40 -32c16.7998 0 35.2002 8 35.2002 32v12h96h24zM324.8 225.6c-32 0 -56.7998 18.4004 -61.5996 44h-205.601v-4.7998v-4
101
+ c0 -1.59961 0.800781 -4 0.800781 -5.59961c0.799805 -1.60059 0.799805 -2.40039 0.799805 -4c0 -2.40039 0 -4 0.799805 -6.40039c0.799805 -0.799805 0.799805 -2.39941 0.799805 -3.2002c0 -2.39941 0.799805 -5.59961 1.60059 -8v-1.59961
102
+ c1.59961 -6.40039 4 -12 6.39941 -18.4004c0 -0.799805 0.799805 -1.59961 0.799805 -2.39941c0.800781 -1.60059 1.60059 -4 2.40039 -6.40039c0 -0.799805 0.799805 -2.39941 3.2002 -3.2002c0.799805 -1.59961 1.59961 -4 2.39941 -5.59961
103
+ c0.800781 -0.799805 0.800781 -2.40039 1.60059 -3.2002c0.799805 -2.39941 1.59961 -4 2.39941 -5.59961c0 -0.799805 0.800781 -2.40039 1.60059 -3.2002c1.59961 -1.59961 2.39941 -3.2002 3.2002 -4.7998c0.799805 -0.799805 1.59961 -2.40039 2.39941 -3.2002
104
+ c0.799805 -1.59961 2.40039 -3.2002 3.2002 -4.7998c0.799805 -0.799805 1.59961 -2.40039 2.40039 -3.2002c0.799805 -1.59961 2.39941 -3.2002 3.19922 -4.7998c0.800781 -0.799805 1.60059 -2.40039 2.40039 -3.2002s2.40039 -2.40039 3.2002 -4
105
+ c0.799805 -0.799805 1.59961 -2.40039 2.39941 -3.2002c0.800781 -1.59961 1.60059 -2.39941 3.2002 -4c0.799805 -1.59961 1.60059 -2.39941 2.40039 -3.2002l4 -4c1.59961 -1.59961 2.39941 -2.39941 3.2002 -3.19922c1.59961 -1.60059 2.39941 -2.40039 4 -4
106
+ c0.799805 -0.800781 2.39941 -1.60059 3.19922 -2.40039c1.60059 -0.799805 2.40039 -2.40039 4 -3.2002c0.800781 -0.799805 2.40039 -1.59961 3.2002 -2.39941c1.60059 -0.800781 2.40039 -2.40039 4 -3.2002c0.799805 -0.799805 2.40039 -1.60059 3.2002 -2.40039
107
+ s2.40039 -2.39941 4 -3.2002c0.799805 -0.799805 2.40039 -1.59961 3.2002 -2.39941c1.59961 -1.60059 3.2002 -2.40039 4.7998 -3.2002c0.799805 -0.799805 1.59961 -1.59961 3.2002 -2.40039c1.59961 -0.799805 3.2002 -1.59961 4.7998 -2.39941
108
+ s2.40039 -1.60059 4 -2.40039s3.2002 -1.59961 4.7998 -2.39941c1.60059 0 2.40039 -0.800781 4 -1.60059c1.60059 -0.799805 3.2002 -1.59961 4.7998 -2.39941c1.60059 -0.800781 2.40039 -0.800781 4 -1.60059c1.60059 0 3.2002 -0.799805 4.80078 -1.59961
109
+ c1.59961 -0.799805 2.39941 -0.799805 4 -1.60059c1.59961 -0.799805 3.19922 -0.799805 4.7998 -1.59961c1.59961 -0.799805 2.39941 -0.799805 4 -1.59961c2.39941 -0.800781 4 -0.800781 5.59961 -1.60059c1.60059 0 2.40039 -0.799805 4 -0.799805
110
+ c2.40039 -0.799805 4 -0.799805 5.60059 -1.59961c1.59961 0 2.39941 -0.800781 4 -0.800781c1.59961 0 4 -0.799805 5.59961 -0.799805s2.40039 -0.799805 4 -0.799805s4 -0.799805 5.59961 -0.799805c1.60059 -0.799805 2.40039 -0.799805 4 -0.799805
111
+ c1.60059 -0.800781 4 -0.800781 6.40039 -0.800781h3.2002h10.3994h10.4004h3.2002c1.59961 0.800781 4 0.800781 6.39941 0.800781c1.60059 0.799805 2.40039 0.799805 4 0.799805c1.60059 0 4 0.799805 5.60059 0.799805c1.59961 0 2.39941 0.799805 4 0.799805
112
+ c1.59961 0 4 0.799805 5.59961 0.799805c1.60059 0 2.40039 0.800781 4 0.800781c2.40039 0.799805 4 0.799805 5.60059 1.59961c1.59961 0 2.39941 0.799805 4 0.799805c2.39941 0.799805 4 0.799805 5.59961 1.60059c1.59961 0.799805 2.40039 0.799805 4 1.59961
113
+ s3.2002 0.799805 4.7998 1.59961c1.60059 0.800781 2.40039 0.800781 4 1.60059c1.60059 0 3.2002 0.799805 4.7998 1.59961c1.60059 0.799805 2.40039 0.799805 4 1.60059c1.60059 0.799805 3.2002 1.59961 4.80078 2.39941c1.59961 0 2.39941 0.799805 4 1.60059
114
+ c1.59961 0.799805 3.19922 1.59961 4.7998 2.39941c1.59961 0.799805 2.39941 1.60059 4 2.40039c1.59961 0.799805 3.2002 1.59961 4.7998 2.39941c0.799805 0.800781 2.40039 1.60059 3.2002 2.40039c1.59961 1.59961 3.2002 2.40039 4.7998 3.2002
115
+ c0.799805 0.799805 2.40039 1.59961 3.2002 2.39941c0.799805 0.800781 2.39941 2.40039 4 3.2002c0.799805 0.799805 2.39941 1.60059 3.2002 2.40039c1.59961 0.799805 2.39941 2.39941 4 3.2002c0.799805 0.799805 2.39941 1.59961 3.19922 2.39941
116
+ c1.60059 0.799805 2.40039 2.40039 4 3.2002c0.800781 0.799805 2.40039 1.59961 3.2002 2.40039c1.60059 1.59961 2.40039 2.39941 4 4c1.60059 1.59961 2.40039 2.39941 3.2002 3.19922c1.59961 1.60059 2.40039 2.40039 4 4
117
+ c0.799805 1.60059 1.59961 2.40039 2.40039 3.2002c0.799805 1.60059 2.39941 2.40039 3.19922 4c0.800781 0.799805 1.60059 2.40039 2.40039 3.2002s2.40039 2.40039 3.2002 4c0.799805 0.799805 1.59961 2.40039 2.39941 3.2002
118
+ c0.800781 1.59961 2.40039 3.2002 3.2002 4.7998c0.799805 0.799805 1.60059 2.40039 2.40039 3.2002c0.799805 1.59961 2.39941 3.2002 3.2002 4.7998c0.799805 0.799805 1.59961 2.40039 2.39941 3.2002c1.60059 1.59961 2.40039 3.2002 3.2002 4.7998
119
+ c0.799805 0.799805 0.799805 2.40039 1.59961 3.2002c0.800781 1.59961 1.60059 4 2.40039 5.59961c0.799805 0.799805 0.799805 2.40039 1.59961 3.2002c0.800781 1.59961 1.60059 4 2.40039 5.59961c0.799805 1.60059 0.799805 2.40039 1.59961 3.2002
120
+ c0.800781 1.60059 1.60059 4 2.40039 6.40039c0 0.799805 0.799805 1.59961 0.799805 2.39941c2.40039 5.60059 4 12 5.60059 18.4004v1.59961c0.799805 2.40039 0.799805 5.60059 1.59961 8c0.799805 0.800781 0.799805 2.40039 0.799805 3.2002
121
+ c0 2.40039 0.799805 4 0.799805 6.40039c0.800781 1.59961 0.800781 2.39941 0.800781 4c0 1.59961 0.799805 4 0.799805 5.59961v4v4.7998h-72c-5.60059 -26.3994 -28 -44 -58.4004 -44zM256 52c122.4 0 223.2 96.7998 232 218.4h-6.40039
122
+ c0 -3.2002 -0.799805 -6.40039 -0.799805 -9.60059v-1.59961c-0.799805 -4 -0.799805 -7.2002 -1.59961 -11.2002c-0.799805 -0.799805 -0.799805 -1.59961 -0.799805 -2.40039c-0.800781 -2.39941 -0.800781 -5.59961 -1.60059 -8
123
+ c0 -1.59961 -0.799805 -2.39941 -0.799805 -4c-0.799805 -2.39941 -0.799805 -4 -1.59961 -6.39941c-0.800781 -1.60059 -0.800781 -3.2002 -1.60059 -4.7998c-0.799805 -1.60059 -0.799805 -4 -1.59961 -5.60059c-0.799805 -1.59961 -0.799805 -3.2002 -1.60059 -4.7998
124
+ c0 -1.59961 -0.799805 -4 -1.59961 -5.59961c0 -1.60059 -0.799805 -3.2002 -1.59961 -4.80078c-0.800781 -2.39941 -1.60059 -4 -2.40039 -5.59961s-1.59961 -3.2002 -2.40039 -4.7998c-0.799805 -1.60059 -1.59961 -3.2002 -2.39941 -4.7998
125
+ c-0.799805 -1.60059 -1.60059 -3.2002 -2.40039 -4.80078c-0.799805 -1.59961 -1.59961 -3.19922 -2.39941 -4.7998c-0.800781 -1.59961 -1.60059 -3.2002 -2.40039 -4.7998s-1.59961 -3.2002 -2.40039 -4.7998c-0.799805 -0.799805 -1.59961 -2.40039 -2.39941 -4
126
+ c-1.60059 -1.60059 -2.40039 -3.2002 -3.2002 -4.7998c-1.59961 -0.800781 -2.40039 -2.40039 -3.2002 -4c-0.799805 -1.60059 -2.39941 -3.2002 -3.2002 -4.80078c-0.799805 -1.59961 -2.39941 -2.39941 -3.19922 -4c-0.800781 -0.799805 -2.40039 -2.39941 -3.2002 -4
127
+ c-0.799805 -1.59961 -2.40039 -2.39941 -3.2002 -4c-0.799805 -1.59961 -2.40039 -2.39941 -3.2002 -4c-0.799805 -1.59961 -2.39941 -2.39941 -3.2002 -4l-4 -4l-4 -4l-4 -4c-1.59961 -0.799805 -2.39941 -2.39941 -4 -3.19922
128
+ c-1.59961 -0.800781 -2.39941 -2.40039 -4 -3.2002c-1.59961 -0.799805 -2.39941 -2.40039 -4 -3.2002c-0.799805 -0.799805 -2.39941 -2.40039 -4 -3.2002c-1.59961 -0.799805 -2.39941 -2.39941 -4 -3.2002c-1.59961 -0.799805 -3.19922 -2.39941 -4.7998 -3.19922
129
+ c-0.799805 -1.60059 -2.39941 -2.40039 -4 -3.2002c-1.59961 -1.60059 -3.2002 -2.40039 -4.7998 -3.2002c-0.799805 -0.799805 -2.40039 -1.59961 -4 -2.40039c-1.59961 -0.799805 -3.2002 -1.59961 -4.7998 -2.39941
130
+ c-1.60059 -0.799805 -3.2002 -1.60059 -4.7998 -2.40039c-1.60059 -0.799805 -3.2002 -1.59961 -4.80078 -2.39941c-1.59961 -0.800781 -3.19922 -1.60059 -4.7998 -2.40039c-1.59961 -0.799805 -3.2002 -1.59961 -4.7998 -2.40039
131
+ c-1.59961 -0.799805 -3.2002 -1.59961 -4.7998 -2.39941c-2.40039 -0.799805 -4 -1.60059 -5.60059 -2.40039c-1.59961 -0.799805 -3.19922 -0.799805 -4.7998 -1.59961c-1.59961 -0.799805 -4 -0.799805 -5.59961 -1.60059
132
+ c-1.60059 -0.799805 -3.2002 -0.799805 -4.7998 -1.59961c-1.60059 -0.799805 -4 -0.799805 -5.60059 -1.59961c-1.59961 -0.800781 -3.2002 -0.800781 -4.7998 -1.60059s-4 -0.799805 -5.59961 -1.59961c-1.60059 0 -3.2002 -0.799805 -4.80078 -0.799805
133
+ c-2.39941 0 -4 -0.800781 -6.39941 -0.800781c-1.60059 0 -3.2002 -0.799805 -4.7998 -0.799805c-2.40039 0 -4 -0.799805 -6.40039 -0.799805c-1.59961 -0.799805 -3.2002 -0.799805 -4.7998 -0.799805c-2.40039 -0.799805 -4.7998 -0.799805 -7.2002 -0.799805h-4
134
+ h-11.2002h-11.2002h-4c-2.39941 0.799805 -4.7998 0.799805 -7.19922 0.799805c-1.60059 0 -3.2002 0.799805 -4.80078 0.799805c-2.39941 0 -4 0.799805 -6.39941 0.799805c-1.60059 0 -3.2002 0.799805 -4.7998 0.799805c-2.40039 0 -4 0 -6.40039 0.800781
135
+ c-1.59961 0 -3.2002 0.799805 -4.7998 0.799805c-1.60059 0.799805 -4 0.799805 -5.60059 1.59961c-1.59961 0.799805 -3.19922 0.799805 -4.7998 1.60059c-1.59961 0.799805 -4 0.799805 -5.59961 1.59961c-1.60059 0.799805 -3.2002 0.799805 -4.7998 1.59961
136
+ c-1.60059 0 -4 0.800781 -5.60059 1.60059c-1.59961 0 -3.2002 0.799805 -4.7998 1.59961c-2.40039 0.799805 -4 1.60059 -5.59961 2.40039c-1.60059 0.799805 -3.2002 1.59961 -4.80078 2.39941c-1.59961 0.800781 -3.19922 1.60059 -4.7998 2.40039
137
+ c-1.59961 0.799805 -3.2002 1.59961 -4.7998 2.40039c-1.59961 0.799805 -3.2002 1.59961 -4.7998 2.39941c-1.60059 0.799805 -3.2002 1.60059 -4.7998 2.40039c-1.60059 0.799805 -3.2002 1.59961 -4.80078 2.39941c-0.799805 0.800781 -2.39941 1.60059 -4 2.40039
138
+ c-1.59961 1.59961 -3.19922 2.40039 -4.7998 3.2002c-0.799805 1.59961 -2.39941 2.39941 -4 3.2002c-1.59961 0.799805 -3.2002 2.39941 -4.7998 3.19922c-1.59961 0.800781 -2.40039 2.40039 -4 3.2002c-0.799805 0.799805 -2.40039 2.40039 -4 3.2002
139
+ s-2.40039 2.40039 -4 3.2002s-2.40039 2.39941 -4 3.2002c-1.59961 0.799805 -2.40039 2.39941 -4 3.19922c-1.59961 1.60059 -2.40039 2.40039 -4 4c-1.59961 1.60059 -2.40039 2.40039 -4 4c-1.59961 1.60059 -2.40039 2.40039 -4 4
140
+ c-0.799805 1.60059 -2.40039 2.40039 -3.2002 4c-0.799805 1.60059 -2.39941 2.40039 -3.2002 4c-0.799805 1.60059 -2.39941 2.40039 -3.19922 4c-0.800781 0.800781 -2.40039 2.40039 -3.2002 4c-0.799805 1.60059 -2.40039 2.40039 -3.2002 4
141
+ c-0.799805 1.60059 -2.40039 3.2002 -3.2002 4.80078c-1.59961 0.799805 -2.39941 2.39941 -3.2002 4c-1.59961 1.59961 -2.39941 3.19922 -3.19922 4.7998c-0.800781 0.799805 -1.60059 2.39941 -2.40039 4c-0.799805 1.59961 -1.59961 3.2002 -2.40039 4.7998
142
+ c-0.799805 1.59961 -1.59961 3.2002 -2.39941 4.7998c-0.799805 1.60059 -1.60059 3.2002 -2.40039 4.7998c-0.799805 1.60059 -1.59961 3.2002 -2.39941 4.80078c-0.800781 1.59961 -1.60059 3.19922 -2.40039 4.7998c-0.799805 1.59961 -1.59961 3.2002 -2.40039 4.7998
143
+ c-0.799805 2.40039 -1.59961 4 -2.39941 5.59961c-0.799805 1.60059 -0.799805 3.2002 -1.60059 4.80078c0 1.59961 -0.799805 4 -1.59961 5.59961s-0.799805 3.2002 -1.59961 4.7998c-0.800781 1.60059 -0.800781 4 -1.60059 5.60059
144
+ c-0.799805 1.59961 -0.799805 2.39941 -0.799805 4c-0.799805 2.39941 -0.799805 4 -1.59961 6.39941c0 1.60059 -0.800781 2.40039 -0.800781 4c-0.799805 2.40039 -0.799805 5.60059 -1.59961 8c-0.799805 0.799805 -0.799805 1.60059 -0.799805 2.40039
145
+ c-0.799805 4 -1.60059 7.2002 -1.60059 11.2002v1.59961c0 3.2002 -0.799805 6.40039 -0.799805 9.59961h-6.39941c6.39941 -120.8 107.199 -217.6 229.6 -217.6zM108 196c-4 7.2002 -1.59961 16 5.59961 20c5.60059 3.2002 24 2.40039 30.4004 2.40039
146
+ c1.59961 0 2.40039 -1.60059 1.59961 -2.40039c-3.19922 -6.40039 -12 -22.4004 -17.5996 -25.5996c-7.2002 -4 -16 -1.60059 -20 5.59961zM170.4 133.6c-7.2002 4 -9.60059 12.8008 -5.60059 20c3.2002 5.60059 20 14.4004 25.6006 17.6006
147
+ c1.59961 0 2.39941 0 2.39941 -1.60059c0.799805 -6.39941 0.799805 -24.7998 -2.39941 -30.3994c-4 -7.2002 -12.8008 -9.60059 -20 -5.60059zM256 110.4c-8 0 -14.4004 6.39941 -13.5996 14.3994c0 6.40039 9.59961 22.4004 12.7998 28
148
+ c0.799805 0.799805 1.59961 0.799805 2.39941 0c3.2002 -5.59961 12.8008 -21.5996 12.8008 -28c0 -8 -6.40039 -14.3994 -14.4004 -14.3994zM341.6 133.6c-7.19922 -4 -15.1992 -1.59961 -20 5.60059c-3.19922 5.59961 -2.39941 24 -2.39941 30.3994
149
+ c0 1.60059 1.59961 2.40039 2.39941 1.60059c6.40039 -3.2002 22.4004 -12 25.6006 -17.6006c4 -7.19922 1.59961 -16 -5.60059 -20zM384.8 191.2c-5.59961 3.2002 -14.3994 19.2002 -17.5996 25.5996c0 1.60059 0 2.40039 1.59961 2.40039
150
+ c6.40039 0.799805 24.7998 0.799805 30.4004 -2.40039c7.2002 -4 9.59961 -12.7998 5.59961 -20s-12.7998 -9.59961 -20 -5.59961z" />
151
+ <glyph glyph-name="uniF105" unicode="&#xf105;"
152
+ d="M492.8 416c-16.7998 -15.2002 -53.5996 -51.2002 -78.3994 -85.5996c16.7998 -11.2002 29.5996 -28 35.1992 -48c5.60059 -22.4004 3.2002 -45.6006 -8 -65.6006c-6.39941 -12 -16 -22.3994 -26.3994 -30.3994c17.5996 -25.6006 20 -60.8008 4 -91.2002
153
+ c-16 -28.7998 -44.7998 -47.2002 -76.7998 -47.2002c-3.2002 0 -7.2002 0 -11.2002 0.799805c-2.40039 -5.59961 -4 -11.2002 -7.2002 -16.7998c-16 -28.7998 -44.7998 -47.2002 -76.7998 -47.2002c-9.60059 0 -18.4004 1.60059 -27.2002 4.7998
154
+ c-16 -25.5996 -44 -41.5996 -73.5996 -41.5996c-12.8008 0 -25.6006 3.2002 -37.6006 9.59961c-33.5996 18.4004 -49.5996 57.6006 -40 95.2002c-2.39941 0.799805 -4 2.40039 -6.39941 3.2002c-20 10.4004 -34.4004 28 -40 50.4004
155
+ c-5.60059 21.5996 -3.2002 44.7998 8 65.5996c4.7998 10.4004 12 19.2002 20.7998 26.4004c-8.7998 8.7998 -15.2002 20.7998 -18.4004 33.5996c-5.59961 21.5996 -3.2002 45.5996 8 65.5996c12 23.2002 32.7998 39.2002 56.7998 44.8008
156
+ c0 13.5996 3.2002 28 10.4004 40.7998c16 28.7998 44.7998 47.2002 76.7998 47.2002c12.7998 0 26.4004 -3.2002 37.6006 -9.60059c7.19922 -4 13.5996 -8.7998 19.1992 -14.3994c16 15.1992 36.8008 24 59.2002 24c12.7998 0 25.6006 -3.2002 37.6006 -9.60059
157
+ c8.7998 -4.7998 16 -10.3994 21.5996 -16.7998c21.5996 -4 41.5996 -11.2002 56 -16.7998c26.4004 29.5996 51.2002 52.7998 53.5996 54.3994zM392.8 359.2c-4 1.59961 -8 2.39941 -12.7998 4c1.59961 -5.60059 1.59961 -12 1.59961 -18.4004
158
+ c4 4.7998 7.2002 9.60059 11.2002 14.4004zM415.2 229.6c8 14.4004 9.59961 29.6006 6.39941 44.8008c-3.19922 13.5996 -12 24 -23.1992 31.1992c-0.800781 0.800781 -1.60059 0.800781 -2.40039 1.60059c-6.40039 3.2002 -13.5996 4.7998 -20.7998 5.59961h-4
159
+ c-3.2002 0 -6.40039 0 -9.60059 -0.799805c-0.799805 0 -2.39941 -0.799805 -3.19922 -0.799805c-9.60059 -2.40039 -18.4004 -7.2002 -25.6006 -14.4004c2.40039 -2.39941 4.7998 -5.59961 6.40039 -8.7998c2.39941 -4.7998 4.7998 -8.7998 6.39941 -13.5996
160
+ c1.60059 -3.2002 2.40039 -6.40039 3.2002 -9.60059c4 -14.3994 4 -30.3994 0 -44.7998c12.7998 0 25.6006 -3.2002 37.6006 -9.59961c2.39941 -0.800781 4.7998 -2.40039 7.19922 -4c8.80078 5.59961 16 13.5996 21.6006 23.1992zM393.6 108.8
161
+ c11.2002 21.6006 8.80078 47.2002 -4.7998 63.2002c-3.2002 4.7998 -8 8.7998 -13.5996 12c-0.799805 0 -0.799805 0.799805 -1.60059 0.799805c-7.19922 4.7998 -15.1992 6.40039 -24 6.40039c-4.7998 0 -8.7998 -0.799805 -12.7998 -1.60059
162
+ c-0.799805 -0.799805 -1.59961 -0.799805 -2.39941 -0.799805c-2.40039 -4 -5.60059 -7.2002 -8.80078 -10.3994c-8 -8 -17.5996 -14.4004 -28 -19.2002v0c-1.59961 -4 -3.19922 -8 -4.7998 -12c18.4004 -10.4004 32.7998 -28 38.4004 -49.6006
163
+ c1.59961 -6.39941 3.2002 -13.5996 3.2002 -20c3.19922 -0.799805 5.59961 -0.799805 8 -0.799805c20.7998 0 40.7998 12.7998 51.1992 32zM247.2 14.4004c20.7998 0 40.7998 12 51.2002 32c1.59961 4 3.19922 8 4.7998 12c1.59961 4.7998 2.39941 10.3994 2.39941 15.1992
164
+ c0 4.80078 -0.799805 10.4004 -2.39941 16c-0.799805 3.2002 -1.60059 5.60059 -3.2002 8.80078c-0.799805 2.39941 -2.40039 4.7998 -4 7.19922c-4 6.40039 -10.4004 12 -17.5996 16c-0.800781 0 -0.800781 0.800781 -1.60059 0.800781
165
+ c-4.7998 2.39941 -10.3994 4 -15.2002 4.7998v0c-3.19922 0.799805 -5.59961 0.799805 -8 0.799805c-3.19922 0 -7.19922 0 -10.3994 -0.799805c-13.6006 -2.40039 -26.4004 -10.4004 -35.2002 -22.4004v0c-0.799805 -0.799805 -1.59961 -1.59961 -2.40039 -3.2002
166
+ c4 -3.19922 7.2002 -6.39941 9.60059 -9.59961c7.2002 -8.7998 12.7998 -19.2002 16 -31.2002c4 -14.3994 4 -29.5996 0.799805 -44c4.7998 -1.59961 9.59961 -2.39941 15.2002 -2.39941zM197.6 8.7998c1.60059 3.2002 3.2002 5.60059 4 8
167
+ c1.60059 6.40039 3.2002 12 3.2002 18.4004c0 5.59961 -0.799805 11.2002 -2.39941 16.7998c-2.40039 6.40039 -4.80078 12 -8 16.7998c-3.2002 5.60059 -8 10.4004 -12.8008 13.6006c-1.59961 1.59961 -3.19922 2.39941 -4.7998 3.19922
168
+ c-0.799805 0 -2.39941 0.800781 -4 1.60059c-1.59961 0.799805 -2.39941 0.799805 -4 1.59961c-3.2002 1.60059 -6.39941 2.40039 -10.3994 2.40039h-4.80078c-5.59961 0 -11.1992 -0.799805 -16.7998 -2.40039c-7.2002 -2.39941 -13.5996 -6.39941 -19.2002 -11.2002
169
+ c-5.59961 -4 -10.3994 -10.3994 -14.3994 -16.7998l-0.799805 -0.799805c-2.40039 -4.7998 -4 -8.7998 -5.60059 -13.5996c-6.39941 -24.8008 3.2002 -51.2002 25.6006 -63.2002c7.19922 -4 15.1992 -6.40039 24 -6.40039c20 0 37.5996 10.4004 48.7998 27.2002
170
+ c0.799805 1.59961 1.59961 3.2002 2.39941 4.7998zM50.4004 114.4c4 -14.4004 12.7998 -26.4004 26.3994 -32.8008c0.799805 0 2.40039 -0.799805 4 -1.59961c11.2002 17.5996 28 30.4004 47.2002 36.7998c-7.2002 8.7998 -12.7998 19.2002 -16 31.2002
171
+ c-2.40039 8 -3.2002 16 -3.2002 24c-11.2002 0 -22.3994 3.2002 -32.7998 8c-8 -4.7998 -15.2002 -12.7998 -20 -21.5996c-8 -14.4004 -9.59961 -29.6006 -5.59961 -44zM66.4004 284c-8 -14.4004 -9.60059 -29.5996 -4 -43.2002c2.39941 -10.3994 8 -20 16 -26.3994
172
+ c3.19922 -2.40039 6.39941 -4.80078 9.59961 -6.40039s5.59961 -3.2002 8.7998 -4v0c4.7998 -1.59961 9.60059 -2.40039 15.2002 -2.40039h3.2002c0 1.60059 0 2.40039 0.799805 3.2002c0.799805 2.40039 2.40039 5.60059 4 8.7998
173
+ c0.799805 0.800781 1.59961 2.40039 2.40039 4c11.1992 18.4004 28 32 47.1992 38.4004v2.40039c-10.3994 0.799805 -20 4 -28.7998 8.7998c-18.3994 9.59961 -32 27.2002 -38.3994 46.3994c-15.2002 -4 -28 -15.1992 -36 -29.5996zM133.6 368.8
174
+ c-4 -8 -6.39941 -16 -6.39941 -25.5996c-0.799805 -4.7998 0 -9.60059 0.799805 -14.4004v0c0.799805 -5.59961 2.40039 -11.2002 5.59961 -16c4.80078 -8.7998 12 -16 20.8008 -20.7998c2.39941 -1.59961 5.59961 -2.40039 8 -3.2002
175
+ c4.7998 -1.59961 10.3994 -2.39941 16 -2.39941h0.799805c4.7998 0 9.59961 0.799805 14.3994 2.39941c3.2002 0.799805 6.40039 2.40039 9.60059 4c4.7998 6.40039 9.59961 11.2002 16 16c2.39941 1.60059 4 2.40039 6.39941 4c0.800781 1.60059 2.40039 4 3.2002 5.60059
176
+ c0.799805 0.799805 0.799805 1.59961 1.60059 2.39941c7.19922 15.2002 8 32 2.39941 46.4004c-1.59961 5.59961 -4.7998 10.3994 -8.7998 15.2002c-4 4.7998 -8.7998 9.59961 -15.2002 12c-7.2002 4.7998 -15.2002 6.39941 -24 6.39941
177
+ c-20.7998 0 -40.7998 -12.7998 -51.2002 -32zM300.8 400.8c-16 0 -31.2002 -7.2002 -42.3994 -18.3994c8 -17.6006 9.59961 -37.6006 4.7998 -56.8008c2.39941 0.800781 5.59961 0.800781 8 0.800781c12.7998 0 26.3994 -3.2002 37.5996 -9.60059
178
+ c0 -0.799805 0.799805 -0.799805 0.799805 -0.799805c11.2002 12 26.4004 20 42.4004 24c0.799805 7.2002 0 15.2002 -1.59961 22.4004c-0.800781 2.39941 -1.60059 5.59961 -3.2002 8c-4 11.1992 -12 19.1992 -22.4004 24.7998
179
+ c-6.39941 3.2002 -13.5996 5.59961 -21.5996 5.59961h-2.40039zM320.8 257.6c-0.799805 1.60059 -0.799805 2.40039 -1.59961 7.2002c-0.799805 3.2002 -2.40039 6.40039 -4 8.7998c-0.799805 1.60059 -1.60059 2.40039 -2.40039 4
180
+ c-2.39941 3.2002 -4.7998 6.40039 -8 8.80078c-0.799805 0.799805 -2.39941 2.39941 -4 3.19922c-1.59961 0.800781 -4 2.40039 -5.59961 3.2002c-0.799805 0 -1.60059 0.799805 -2.40039 0.799805c-6.39941 3.2002 -13.5996 4.80078 -21.5996 4.80078
181
+ c-2.40039 0 -4 -0.800781 -6.40039 -0.800781c-5.59961 -0.799805 -11.2002 -2.39941 -16.7998 -4.7998c-0.799805 0 -1.59961 -0.799805 -2.40039 -0.799805c-4 -2.40039 -7.19922 -4.7998 -10.3994 -7.2002c-4.7998 -4 -8.7998 -8.7998 -12 -13.5996
182
+ c-0.799805 -1.60059 -2.40039 -4 -3.2002 -5.60059c-0.799805 -2.39941 -2.40039 -4.7998 -3.2002 -7.19922c-1.59961 -4.80078 -2.39941 -9.60059 -3.2002 -14.4004c-0.799805 -4.7998 -0.799805 -10.4004 0 -15.2002c0 -3.2002 0.800781 -5.59961 1.60059 -8
183
+ c4 -14.3994 12.7998 -26.3994 25.5996 -32.7998c1.60059 -1.59961 4 -2.40039 6.40039 -3.2002c4.7998 -1.59961 10.3994 -3.2002 15.2002 -3.2002h2.39941c4 0 8 0.800781 12 1.60059c0.799805 0 1.60059 0.799805 2.40039 0.799805
184
+ c8.7998 2.40039 16.7998 7.2002 24 13.5996c4 3.2002 7.2002 7.2002 9.59961 11.2002c0.799805 0.799805 1.60059 2.40039 2.40039 4v0.799805c2.39941 3.2002 3.2002 7.2002 4.7998 10.4004v0c3.2002 11.2002 4 22.4004 0.799805 33.5996zM187.2 124.8
185
+ c13.5996 17.6006 32.7998 28.7998 53.5996 32.7998c-4.7998 0.800781 -9.59961 3.2002 -14.3994 5.60059c-20 10.3994 -34.4004 28 -40 50.3994c0 1.60059 -0.800781 2.40039 -0.800781 4c-1.59961 4.80078 -2.39941 8.80078 -2.39941 13.6006
186
+ c-3.2002 -0.799805 -5.60059 -1.60059 -8.7998 -3.2002c-9.60059 -4 -19.2002 -11.2002 -25.6006 -20.7998c-1.59961 -2.40039 -3.2002 -4.7998 -4.7998 -7.2002c-0.799805 -2.40039 -1.59961 -4 -2.40039 -5.59961c-1.59961 -4.80078 -3.19922 -10.4004 -4 -15.2002
187
+ v-3.2002c-0.799805 -6.40039 0 -13.5996 1.60059 -20.7998c3.2002 -11.2002 9.59961 -21.6006 18.3994 -28c2.40039 -2.40039 4.80078 -3.2002 7.2002 -4.7998c2.40039 -1.60059 4 -2.40039 6.40039 -3.2002c3.2002 -0.799805 7.2002 -1.60059 10.3994 -2.40039
188
+ c1.60059 3.2002 4 5.60059 5.60059 8z" />
189
+ <glyph glyph-name="uniF10C" unicode="&#xf10c;"
190
+ d="M482.4 351.2c-12 -8.7998 -10.4004 -44 -5.60059 -64.7998c24 -68 20.7998 -134.4 -8.7998 -188.801c-29.5996 -55.1992 -84 -93.5996 -156.8 -111.199c-16.7998 -4 -32.7998 -6.40039 -48.7998 -7.2002c-76.8008 -4 -140 24.7998 -166.4 60
191
+ c-14.4004 19.2002 -16.7998 40.7998 -6.40039 57.5996c2.40039 4.7998 5.60059 8.7998 9.60059 12c-56.7998 20 -78.4004 49.6006 -86.4004 68.7998c-9.59961 22.4004 -8 46.4004 4.7998 63.2002c18.4004 25.6006 41.6006 28 66.4004 22.4004
192
+ c-12.7998 21.5996 -16.7998 44 -14.4004 62.3994c3.2002 22.4004 16.8008 37.6006 36.8008 40.8008c31.1992 5.59961 48.7998 -14.4004 65.5996 -34.4004c16 -18.4004 33.5996 -38.4004 67.2002 -48.7998c44 -12.7998 135.2 3.2002 155.2 32.7998
193
+ c1.59961 3.2002 8 19.2002 8.7998 34.4004c1.59961 12 1.59961 12 -3.2002 18.3994c-0.799805 1.60059 -1.59961 3.2002 -3.2002 4.7998c-2.39941 3.2002 -8.7998 12.8008 -3.2002 23.2002c5.60059 10.4004 16.8008 9.60059 32.8008 8.7998
194
+ c5.59961 -0.799805 13.5996 -1.59961 23.1992 -1.59961c27.2002 -1.59961 48.8008 -1.59961 53.6006 -18.4004c4.7998 -15.1992 -10.4004 -26.3994 -20.7998 -34.3994zM100.8 320.8c-3.2002 -21.5996 12.7998 -66.3994 68 -93.5996
195
+ c24 -10.4004 49.6006 -18.4004 76 -16.7998v0c65.6006 4 116 37.5996 145.601 62.3994c-46.4004 -26.3994 -123.2 -30.3994 -160 -19.2002c-42.4004 12.8008 -64.8008 39.2002 -81.6006 58.4004s-23.2002 26.4004 -36.7998 24
196
+ c-8 -1.59961 -10.4004 -8.7998 -11.2002 -15.2002zM42.4004 189.6c13.5996 -32.7998 62.3994 -57.5996 131.199 -66.3994c5.60059 -0.799805 11.2002 -0.799805 16.8008 -1.60059c39.1992 -4 84 -8.7998 129.6 11.2002c63.2002 27.2002 88 80 99.2002 121.601
197
+ c-32 -28 -91.2002 -70.4004 -170.4 -75.2002h-0.799805c-32.7998 -2.40039 -62.4004 7.2002 -90.4004 19.2002v0v0c-11.1992 4.7998 -21.5996 9.59961 -31.1992 14.3994c-48 22.4004 -68 28.7998 -82.4004 8.7998c-6.40039 -8 -6.40039 -20 -1.59961 -32zM440.8 112
198
+ c24 43.2002 27.2002 97.5996 10.4004 152.8c-8 -49.5996 -34.4004 -124 -119.2 -160.8c-52.7998 -23.2002 -104 -17.5996 -144.8 -13.5996c-17.6006 1.59961 -32 3.19922 -43.2002 2.39941c-12.7998 -0.799805 -22.4004 -4 -27.2002 -12.7998
199
+ c-4.7998 -8 0 -16.7998 4.7998 -23.2002c21.6006 -29.5996 92.8008 -62.3994 182.4 -40.7998c63.2002 15.2002 111.2 48.7998 136.8 96z" />
200
+ <glyph glyph-name="uniF10B" unicode="&#xf10b;"
201
+ d="M469.6 293.6c31.2002 -56 12 -147.199 -16.7998 -215.199c-21.5996 -51.2002 -58.3994 -109.601 -94.3994 -119.2c-11.2002 -2.40039 -22.4004 -4 -33.6006 -4v0c-27.2002 0 -48.7998 8.7998 -62.3994 16.7998c-4 2.40039 -8.80078 2.40039 -12.8008 0
202
+ c-13.5996 -7.2002 -35.1992 -16.7998 -63.1992 -16.7998c-11.2002 0 -22.4004 0.799805 -33.6006 4c-36 9.59961 -72.7998 68 -94.3994 119.2c-28.8008 67.1992 -48 158.399 -16.8008 214.399c21.6006 38.4004 64.8008 59.2002 124 59.2002
203
+ c30.4004 0 59.2002 -5.59961 77.6006 -9.59961c0 26.3994 -4 52.7998 -7.2002 68c-1.59961 8.7998 0.799805 17.5996 7.2002 21.5996c5.59961 3.2002 12 7.2002 19.2002 7.2002c15.1992 0.799805 16 -8 9.59961 -23.2002c-1.59961 -4 -3.2002 -13.5996 -4.7998 -24.7998
204
+ c18.3994 14.3994 56.7998 38.3994 98.3994 13.5996c1.60059 -0.799805 1.60059 -2.39941 0.800781 -3.2002c-30.4004 -41.5996 -79.2002 -32 -100 -24.7998c0 -12 -0.800781 -25.5996 -0.800781 -34.3994c18.4004 4.7998 48 10.3994 80 10.3994
205
+ c59.2002 0 102.4 -20 124 -59.2002zM430.4 88.7998c32.7998 77.6006 40 152.8 18.3994 192.8c-17.5996 31.2002 -52 47.2002 -102.399 47.2002c-33.6006 0 -64.8008 -7.2002 -80.8008 -11.2002c-6.39941 -1.59961 -12.7998 -1.59961 -19.1992 0
206
+ c-16 4 -47.2002 11.2002 -80.8008 11.2002c-50.3994 0 -84.7998 -16 -102.399 -47.2002c-21.6006 -39.1992 -14.4004 -115.199 18.3994 -192.8c24 -56 56 -99.2002 78.4004 -104.8c8.7998 -1.59961 18.4004 -3.2002 27.2002 -3.2002c22.3994 0 40 7.2002 50.3994 13.6006
207
+ c5.60059 3.19922 12 4.7998 18.4004 4.7998s12.7998 -1.60059 18.4004 -4.7998c10.3994 -6.40039 28 -13.6006 50.3994 -13.6006v0c8.7998 0 18.4004 0.799805 27.2002 3.2002c22.4004 5.59961 54.4004 48.7998 78.4004 104.8zM148.8 19.2002
208
+ c-56 64 -74.3994 173.6 -72 213.6c0 4.7998 4.7998 8 9.60059 7.2002v0c4 -0.799805 6.39941 -4 6.39941 -8c-1.59961 -33.5996 14.4004 -140 68 -201.6c3.2002 -3.2002 2.40039 -8 -0.799805 -11.2002v0c-3.2002 -3.2002 -8 -3.2002 -11.2002 0zM90.4004 263.2v0
209
+ c-4.80078 0.799805 -8 6.39941 -5.60059 11.2002c0.799805 2.39941 1.60059 4 3.2002 6.39941c3.2002 4.7998 10.4004 4.7998 13.5996 -0.799805v0c1.60059 -2.40039 1.60059 -5.59961 0 -8c-0.799805 -0.799805 -1.59961 -2.40039 -1.59961 -4
210
+ c-2.40039 -3.2002 -6.40039 -5.59961 -9.59961 -4.7998z" />
211
+ </font>
212
+ </defs></svg>
@@ -0,0 +1,5 @@
1
+ @function fruit-font-path($path) {
2
+ @return font-url($path, true);
3
+ }
4
+
5
+ $fruit-sass-asset-helper: true;
@@ -0,0 +1,5 @@
1
+ @function fruit-font-path($path) {
2
+ @return font-path($path);
3
+ }
4
+
5
+ $fruit-sass-asset-helper: true;
@@ -0,0 +1,12 @@
1
+ @import "fruit_warehouse/variables";
2
+ @import "fruit_warehouse/mixins";
3
+ @import "fruit_warehouse/path";
4
+ @import "fruit_warehouse/core";
5
+ @import "fruit_warehouse/larger";
6
+ @import "fruit_warehouse/fixed-width";
7
+ @import "fruit_warehouse/list";
8
+ @import "fruit_warehouse/bordered-pulled";
9
+ @import "fruit_warehouse/animated";
10
+ @import "fruit_warehouse/rotated-flipped";
11
+ @import "fruit_warehouse/stacked";
12
+ @import "fruit_warehouse/icons";
@@ -0,0 +1,34 @@
1
+ // Spinning Icons
2
+ // --------------------------
3
+
4
+ .#{$fruit-css-prefix}-spin {
5
+ -webkit-animation: fruit-spin 2s infinite linear;
6
+ animation: fruit-spin 2s infinite linear;
7
+ }
8
+
9
+ .#{$fruit-css-prefix}-pulse {
10
+ -webkit-animation: fruit-spin 1s infinite steps(8);
11
+ animation: fruit-spin 1s infinite steps(8);
12
+ }
13
+
14
+ @-webkit-keyframes fruit-spin {
15
+ 0% {
16
+ -webkit-transform: rotate(0deg);
17
+ transform: rotate(0deg);
18
+ }
19
+ 100% {
20
+ -webkit-transform: rotate(359deg);
21
+ transform: rotate(359deg);
22
+ }
23
+ }
24
+
25
+ @keyframes fruit-spin {
26
+ 0% {
27
+ -webkit-transform: rotate(0deg);
28
+ transform: rotate(0deg);
29
+ }
30
+ 100% {
31
+ -webkit-transform: rotate(359deg);
32
+ transform: rotate(359deg);
33
+ }
34
+ }
@@ -0,0 +1,16 @@
1
+ // Bordered & Pulled
2
+ // -------------------------
3
+
4
+ .#{$fruit-css-prefix}-border {
5
+ padding: .2em .25em .15em;
6
+ border: solid .08em $fruit-border-color;
7
+ border-radius: .1em;
8
+ }
9
+
10
+ .pull-right { float: right; }
11
+ .pull-left { float: left; }
12
+
13
+ .#{$fruit-css-prefix} {
14
+ &.pull-left { margin-right: .3em; }
15
+ &.pull-right { margin-left: .3em; }
16
+ }
@@ -0,0 +1,12 @@
1
+ // Base Class Definition
2
+ // -------------------------
3
+
4
+ .#{$fruit-css-prefix} {
5
+ display: inline-block;
6
+ font: normal normal normal #{$fruit-font-size-base}/1 FruitWarehouse; // shortening font declaration
7
+ font-size: inherit; // can't have font-size inherit on line above, so need to override
8
+ text-rendering: auto; // optimizelegibility throws things off #1094
9
+ -webkit-font-smoothing: antialiased;
10
+ -moz-osx-font-smoothing: grayscale;
11
+ transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12
+ }
@@ -0,0 +1,44 @@
1
+ /* EXTRAS
2
+ * -------------------------- */
3
+
4
+ /* Stacked and layered icon */
5
+
6
+ /* Animated rotating icon */
7
+ .#{$fruit-css-prefix}-spin {
8
+ -webkit-animation: spin 2s infinite linear;
9
+ -moz-animation: spin 2s infinite linear;
10
+ -o-animation: spin 2s infinite linear;
11
+ animation: spin 2s infinite linear;
12
+ }
13
+
14
+ @-moz-keyframes spin {
15
+ 0% { -moz-transform: rotate(0deg); }
16
+ 100% { -moz-transform: rotate(359deg); }
17
+ }
18
+ @-webkit-keyframes spin {
19
+ 0% { -webkit-transform: rotate(0deg); }
20
+ 100% { -webkit-transform: rotate(359deg); }
21
+ }
22
+ @-o-keyframes spin {
23
+ 0% { -o-transform: rotate(0deg); }
24
+ 100% { -o-transform: rotate(359deg); }
25
+ }
26
+ @-ms-keyframes spin {
27
+ 0% { -ms-transform: rotate(0deg); }
28
+ 100% { -ms-transform: rotate(359deg); }
29
+ }
30
+ @keyframes spin {
31
+ 0% { transform: rotate(0deg); }
32
+ 100% { transform: rotate(359deg); }
33
+ }
34
+
35
+
36
+ // Icon rotations & flipping
37
+ // -------------------------
38
+
39
+ .#{$fruit-css-prefix}-rotate-90 { @include fruit-icon-rotate(90deg, 1); }
40
+ .#{$fruit-css-prefix}-rotate-180 { @include fruit-icon-rotate(180deg, 2); }
41
+ .#{$fruit-css-prefix}-rotate-270 { @include fruit-icon-rotate(270deg, 3); }
42
+
43
+ .#{$fruit-css-prefix}-flip-horizontal { @include fruit-icon-flip(-1, 1, 0); }
44
+ .#{$fruit-css-prefix}-flip-vertical { @include fruit-icon-flip(1, -1, 2); }
@@ -0,0 +1,6 @@
1
+ // Fixed Width Icons
2
+ // -------------------------
3
+ .#{$fruit-css-prefix}-fw {
4
+ width: (18em / 14);
5
+ text-align: center;
6
+ }
@@ -0,0 +1,13 @@
1
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
2
+ readers do not read off random characters that represent icons */
3
+
4
+ .#{$fruit-css-prefix}-a-banana:before { content: $fruit-var-a-banana; }
5
+ .#{$fruit-css-prefix}-apple:before { content: $fruit-var-apple; }
6
+ .#{$fruit-css-prefix}-banana:before { content: $fruit-var-banana; }
7
+ .#{$fruit-css-prefix}-grape:before { content: $fruit-var-grape; }
8
+ .#{$fruit-css-prefix}-lemon:before { content: $fruit-var-lemon; }
9
+ .#{$fruit-css-prefix}-orgnge:before { content: $fruit-var-orgnge; }
10
+ .#{$fruit-css-prefix}-pear:before { content: $fruit-var-pear; }
11
+ .#{$fruit-css-prefix}-peeled-banana:before { content: $fruit-var-peeled-banana; }
12
+ .#{$fruit-css-prefix}-sliced-lemon:before { content: $fruit-var-sliced-lemon; }
13
+ .#{$fruit-css-prefix}-water-melon:before { content: $fruit-var-water-melon; }
@@ -0,0 +1,13 @@
1
+ // Icon Sizes
2
+ // -------------------------
3
+
4
+ /* makes the font 33% larger relative to the icon container */
5
+ .#{$fruit-css-prefix}-lg {
6
+ font-size: (4em / 3);
7
+ line-height: (3em / 4);
8
+ vertical-align: -15%;
9
+ }
10
+ .#{$fruit-css-prefix}-2x { font-size: 2em; }
11
+ .#{$fruit-css-prefix}-3x { font-size: 3em; }
12
+ .#{$fruit-css-prefix}-4x { font-size: 4em; }
13
+ .#{$fruit-css-prefix}-5x { font-size: 5em; }
@@ -0,0 +1,19 @@
1
+ // List Icons
2
+ // -------------------------
3
+
4
+ .#{$fruit-css-prefix}-ul {
5
+ padding-left: 0;
6
+ margin-left: $fruit-li-width;
7
+ list-style-type: none;
8
+ > li { position: relative; }
9
+ }
10
+ .#{$fruit-css-prefix}-li {
11
+ position: absolute;
12
+ left: -$fruit-li-width;
13
+ width: $fruit-li-width;
14
+ top: (2em / 14);
15
+ text-align: center;
16
+ &.#{$fruit-css-prefix}-lg {
17
+ left: -$fruit-li-width + (4em / 14);
18
+ }
19
+ }
@@ -0,0 +1,26 @@
1
+ // Mixins
2
+ // --------------------------
3
+
4
+ @mixin fruit-icon() {
5
+ display: inline-block;
6
+ font: normal normal normal #{$fruit-font-size-base}/1 FruitWarehouse; // shortening font declaration
7
+ font-size: inherit; // can't have font-size inherit on line above, so need to override
8
+ text-rendering: auto; // optimizelegibility throws things off #1094
9
+ -webkit-font-smoothing: antialiased;
10
+ -moz-osx-font-smoothing: grayscale;
11
+ transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12
+ }
13
+
14
+ @mixin fruit-icon-rotate($degrees, $rotation) {
15
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
16
+ -webkit-transform: rotate($degrees);
17
+ -ms-transform: rotate($degrees);
18
+ transform: rotate($degrees);
19
+ }
20
+
21
+ @mixin fruit-icon-flip($horiz, $vert, $rotation) {
22
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
23
+ -webkit-transform: scale($horiz, $vert);
24
+ -ms-transform: scale($horiz, $vert);
25
+ transform: scale($horiz, $vert);
26
+ }
@@ -0,0 +1,14 @@
1
+ /* FONT PATH
2
+ * -------------------------- */
3
+
4
+ @font-face {
5
+ font-family: 'FruitWarehouse';
6
+ src: url(if($fruit-sass-asset-helper, fruit-font-path('#{$fruit-font-path}#{$fruit-font-name}.eot'), '#{$fruit-font-path}#{$fruit-font-name}.eot'));
7
+ src: url(if($fruit-sass-asset-helper, fruit-font-path('#{$fruit-font-path}#{$fruit-font-name}.eot?#iefix'), '#{$fruit-font-path}#{$fruit-font-name}.eot?#iefix')) format('embedded-opentype'),
8
+ url(if($fruit-sass-asset-helper, fruit-font-path('#{$fruit-font-path}#{$fruit-font-name}.woff2'), '#{$fruit-font-path}#{$fruit-font-name}.woff2')) format('woff2'),
9
+ url(if($fruit-sass-asset-helper, fruit-font-path('#{$fruit-font-path}#{$fruit-font-name}.woff'), '#{$fruit-font-path}#{$fruit-font-name}.woff')) format('woff'),
10
+ url(if($fruit-sass-asset-helper, fruit-font-path('#{$fruit-font-path}#{$fruit-font-name}.ttf'), '#{$fruit-font-path}#{$fruit-font-name}.ttf')) format('truetype'),
11
+ url(if($fruit-sass-asset-helper, fruit-font-path('#{$fruit-font-path}#{$fruit-font-name}.svg#fruitwarehouseregular'), '#{$fruit-font-path}#{$fruit-font-name}.svg#fruitwarehouseregular')) format('svg');
12
+ font-weight: normal;
13
+ font-style: normal;
14
+ }
@@ -0,0 +1,20 @@
1
+ // Rotated & Flipped Icons
2
+ // -------------------------
3
+
4
+ .#{$fruit-css-prefix}-rotate-90 { @include fruit-icon-rotate(90deg, 1); }
5
+ .#{$fruit-css-prefix}-rotate-180 { @include fruit-icon-rotate(180deg, 2); }
6
+ .#{$fruit-css-prefix}-rotate-270 { @include fruit-icon-rotate(270deg, 3); }
7
+
8
+ .#{$fruit-css-prefix}-flip-horizontal { @include fruit-icon-flip(-1, 1, 0); }
9
+ .#{$fruit-css-prefix}-flip-vertical { @include fruit-icon-flip(1, -1, 2); }
10
+
11
+ // Hook for IE8-9
12
+ // -------------------------
13
+
14
+ :root .#{$fruit-css-prefix}-rotate-90,
15
+ :root .#{$fruit-css-prefix}-rotate-180,
16
+ :root .#{$fruit-css-prefix}-rotate-270,
17
+ :root .#{$fruit-css-prefix}-flip-horizontal,
18
+ :root .#{$fruit-css-prefix}-flip-vertical {
19
+ filter: none;
20
+ }
@@ -0,0 +1,20 @@
1
+ // Stacked Icons
2
+ // -------------------------
3
+
4
+ .#{$fruit-css-prefix}-stack {
5
+ position: relative;
6
+ display: inline-block;
7
+ width: 2em;
8
+ height: 2em;
9
+ line-height: 2em;
10
+ vertical-align: middle;
11
+ }
12
+ .#{$fruit-css-prefix}-stack-1x, .#{$fruit-css-prefix}-stack-2x {
13
+ position: absolute;
14
+ left: 0;
15
+ width: 100%;
16
+ text-align: center;
17
+ }
18
+ .#{$fruit-css-prefix}-stack-1x { line-height: inherit; }
19
+ .#{$fruit-css-prefix}-stack-2x { font-size: 2em; }
20
+ .#{$fruit-css-prefix}-inverse { color: $fruit-inverse; }
@@ -0,0 +1,23 @@
1
+ // Variables
2
+ // --------------------------
3
+ $fruit-sass-asset-helper: false !default;
4
+
5
+ $fruit-font-path: if($fruit-sass-asset-helper, "fruit_warehouse/", "../fonts/fruit_warehouse/") !default;
6
+ $fruit-font-name: "fruit_warehouse-webfont" !default;
7
+ $fruit-font-size-base: 14px !default;
8
+ $fruit-css-prefix: fruit!default;
9
+ $fruit-version: "1.0.0" !default;
10
+ $fruit-border-color: #eee !default;
11
+ $fruit-inverse: #fff !default;
12
+ $fruit-li-width: (30em / 14) !default;
13
+
14
+ $fruit-var-a-banana: "\f10a";
15
+ $fruit-var-apple: "\f10b";
16
+ $fruit-var-banana: "\f10c";
17
+ $fruit-var-grape: "\f105";
18
+ $fruit-var-lemon: "\f106";
19
+ $fruit-var-orgnge: "\f107";
20
+ $fruit-var-pear: "\f10d";
21
+ $fruit-var-peeled-banana: "\f10e";
22
+ $fruit-var-sliced-lemon: "\f108";
23
+ $fruit-var-water-melon: "\f109";
@@ -0,0 +1,37 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fruit_warehouse/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "fruit_warehouse"
8
+ spec.version = FruitWarehouse::VERSION
9
+ spec.authors = ["imgarylai"]
10
+ spec.email = ["garylai1990@gmail.com"]
11
+
12
+ spec.summary = %q{Fruit Icons!}
13
+ spec.description = %q{Give me a banana, I'll give you a monkey.}
14
+ spec.homepage = "https://github.com/Jungllle/FruitWarehouse"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_runtime_dependency 'sass', '~> 3.4'
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.9"
33
+ spec.add_development_dependency "rake", "~> 10.0"
34
+
35
+ spec.add_development_dependency 'sass-rails', '~> 5'
36
+ spec.add_development_dependency 'compass', '~> 1'
37
+ end
@@ -0,0 +1,82 @@
1
+ module FruitWarehouse
2
+ class << self
3
+ def load!
4
+ register_compass_extension if compass?
5
+
6
+ if rails?
7
+ register_rails_engine
8
+ elsif sprockets?
9
+ register_sprockets
10
+ end
11
+
12
+ configure_sass
13
+ end
14
+
15
+ # Paths
16
+ def gem_path
17
+ @gem_path ||= File.expand_path('..', File.dirname(__FILE__))
18
+ end
19
+
20
+ def stylesheets_path
21
+ File.join(assets_path, 'stylesheets')
22
+ end
23
+
24
+ def fonts_path
25
+ File.join(assets_path, 'fonts')
26
+ end
27
+
28
+ def assets_path
29
+ @assets_path ||= File.join(gem_path, 'assets')
30
+ end
31
+
32
+ # Environment detection helpers
33
+ def sprockets?
34
+ defined?(::Sprockets)
35
+ end
36
+
37
+ def compass?
38
+ defined?(::Compass)
39
+ end
40
+
41
+ def rails?
42
+ defined?(::Rails)
43
+ end
44
+
45
+ def sprockets?
46
+ defined?(::Sprockets)
47
+ end
48
+
49
+ private
50
+
51
+ def configure_sass
52
+ require 'sass'
53
+
54
+ ::Sass.load_paths << stylesheets_path
55
+ end
56
+
57
+ def register_compass_extension
58
+ require "fruit_warehouse/version"
59
+
60
+ ::Compass::Frameworks.register(
61
+ 'fruit_warehouse',
62
+ :version => FruitWarehouse::VERSION,
63
+ :path => gem_path,
64
+ :stylesheets_directory => stylesheets_path,
65
+ :templates_directory => File.join(gem_path, 'templates')
66
+ )
67
+ end
68
+
69
+ def register_rails_engine
70
+ require 'sass-rails'
71
+ require 'fruit_warehouse/rails/engine'
72
+ require 'fruit_warehouse/rails/railtie'
73
+ end
74
+
75
+ def register_sprockets
76
+ Sprockets.append_path(stylesheets_path)
77
+ Sprockets.append_path(fonts_path)
78
+ end
79
+ end
80
+ end
81
+
82
+ FruitWarehouse.load!
@@ -0,0 +1,13 @@
1
+ module FruitWarehouse
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ initializer 'fruit_warehouse.assets.precompile' do |app|
5
+ %w(stylesheets fonts).each do |sub|
6
+ app.config.assets.paths << root.join('assets', sub).to_s
7
+ end
8
+
9
+ app.config.assets.precompile << /\.(?:svg|eot|woff|woff2|ttf)\z/
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,17 @@
1
+ module FruitWarehouse
2
+ module Rails
3
+ module ViewHelpers
4
+ def fruit(icon, text = nil, html_options = {})
5
+ text, html_options = nil, text if text.is_a?(Hash)
6
+
7
+ content_class = "fruit fruit-#{icon}"
8
+ content_class << " #{html_options[:class]}" if html_options.key?(:class)
9
+ html_options[:class] = content_class
10
+
11
+ html = content_tag(:i, nil, html_options)
12
+ html << ' ' << text.to_s unless text.blank?
13
+ html
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,11 @@
1
+ require "fruit_warehouse/rails/helpers"
2
+
3
+ module FruitWarehouse
4
+ module Rails
5
+ class Railtie < ::Rails::Railtie
6
+ initializer "fruit_warehouse.view_helpers" do
7
+ ActionView::Base.send :include, ViewHelpers
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module FruitWarehouse
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,20 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+
6
+ <title>
7
+ {% if page.title %}
8
+ {{ page.title }}
9
+ {% else %}
10
+ {{ site.title }}
11
+ {% endif %}
12
+ </title>
13
+
14
+ <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
15
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
16
+ <link rel="stylesheet" href="{{ "/css/application.css" }}">
17
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
18
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
19
+
20
+ </head>
@@ -0,0 +1,7 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {% include head.html %}
4
+ <body>
5
+ {{ content }}
6
+ </body>
7
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+ @import "fruit_warehouse";
data/src/index.html ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ hi
metadata ADDED
@@ -0,0 +1,153 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fruit_warehouse
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - imgarylai
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-05-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.9'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sass-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: compass
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1'
83
+ description: Give me a banana, I'll give you a monkey.
84
+ email:
85
+ - garylai1990@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - CODE_OF_CONDUCT.md
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - _config.yml
97
+ - assets/fonts/fruit_warehouse/fruit_warehouse-webfont.eot
98
+ - assets/fonts/fruit_warehouse/fruit_warehouse-webfont.svg
99
+ - assets/fonts/fruit_warehouse/fruit_warehouse-webfont.ttf
100
+ - assets/fonts/fruit_warehouse/fruit_warehouse-webfont.woff
101
+ - assets/stylesheets/_fruit_warehouse-compass.scss
102
+ - assets/stylesheets/_fruit_warehouse-sprockets.scss
103
+ - assets/stylesheets/fruit_warehouse.scss
104
+ - assets/stylesheets/fruit_warehouse/_animated.scss
105
+ - assets/stylesheets/fruit_warehouse/_bordered-pulled.scss
106
+ - assets/stylesheets/fruit_warehouse/_core.scss
107
+ - assets/stylesheets/fruit_warehouse/_extras.scss
108
+ - assets/stylesheets/fruit_warehouse/_fixed-width.scss
109
+ - assets/stylesheets/fruit_warehouse/_icons.scss
110
+ - assets/stylesheets/fruit_warehouse/_larger.scss
111
+ - assets/stylesheets/fruit_warehouse/_list.scss
112
+ - assets/stylesheets/fruit_warehouse/_mixins.scss
113
+ - assets/stylesheets/fruit_warehouse/_path.scss
114
+ - assets/stylesheets/fruit_warehouse/_rotated-flipped.scss
115
+ - assets/stylesheets/fruit_warehouse/_stacked.scss
116
+ - assets/stylesheets/fruit_warehouse/_variables.scss
117
+ - fruit_warehouse.gemspec
118
+ - lib/fruit_warehouse.rb
119
+ - lib/fruit_warehouse/rails/engine.rb
120
+ - lib/fruit_warehouse/rails/helpers.rb
121
+ - lib/fruit_warehouse/rails/railtie.rb
122
+ - lib/fruit_warehouse/version.rb
123
+ - src/_includes/head.html
124
+ - src/_layouts/default.html
125
+ - src/_sass/_fruit_warehouse.scss
126
+ - src/css/application.scss
127
+ - src/index.html
128
+ homepage: https://github.com/Jungllle/FruitWarehouse
129
+ licenses:
130
+ - MIT
131
+ metadata:
132
+ allowed_push_host: https://rubygems.org
133
+ post_install_message:
134
+ rdoc_options: []
135
+ require_paths:
136
+ - lib
137
+ required_ruby_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ required_rubygems_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ requirements: []
148
+ rubyforge_project:
149
+ rubygems_version: 2.4.5
150
+ signing_key:
151
+ specification_version: 4
152
+ summary: Fruit Icons!
153
+ test_files: []