prawn-icon 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +54 -1
- data/GPLv2 +21 -22
- data/README.md +10 -10
- data/data/fonts/fab/LICENSE +34 -0
- data/data/fonts/fab/fa-brands.ttf +0 -0
- data/data/fonts/fab/fab.yml +333 -0
- data/data/fonts/far/LICENSE +34 -0
- data/data/fonts/far/fa-regular.ttf +0 -0
- data/data/fonts/far/far.yml +119 -0
- data/data/fonts/fas/LICENSE +34 -0
- data/data/fonts/fas/fa-solid.ttf +0 -0
- data/data/fonts/fas/fas.yml +503 -0
- data/data/fonts/pf/paymentfont-webfont.ttf +0 -0
- data/data/fonts/pf/pf.yml +118 -97
- data/examples/fas-beer-inline.png +0 -0
- data/examples/fas-beer.png +0 -0
- data/examples/fontawesome.rb +28 -20
- data/examples/foundation_icons.rb +1 -1
- data/examples/paymentfont.rb +1 -1
- data/lib/prawn/icon.rb +3 -200
- data/lib/prawn/icon/base.rb +19 -0
- data/lib/prawn/icon/errors.rb +21 -0
- data/lib/prawn/icon/font_data.rb +11 -13
- data/lib/prawn/icon/interface.rb +208 -0
- data/lib/prawn/icon/parser.rb +45 -53
- data/lib/prawn/icon/version.rb +1 -1
- data/prawn-icon.gemspec +8 -9
- data/spec/integration/icon_spec.rb +80 -60
- data/spec/spec_helper.rb +4 -0
- data/spec/support/parser_helper.rb +1 -1
- data/spec/support/pdf_helper.rb +1 -1
- data/spec/unit/base_spec.rb +15 -0
- data/spec/unit/errors/icon_key_empty_spec.rb +19 -0
- data/spec/unit/errors/icon_not_found_spec.rb +19 -0
- data/spec/unit/font_data_spec.rb +54 -73
- data/spec/unit/icon_spec.rb +20 -27
- data/spec/unit/parser_spec.rb +66 -63
- metadata +35 -41
- data/data/fonts/fa/LICENSE +0 -4
- data/data/fonts/fa/fa.yml +0 -676
- data/data/fonts/fa/fontawesome.ttf +0 -0
- data/data/fonts/octicon/LICENSE +0 -9
- data/data/fonts/octicon/octicon.yml +0 -192
- data/data/fonts/octicon/octicons.ttf +0 -0
- data/examples/fa-beer-inline.png +0 -0
- data/examples/fa-beer.png +0 -0
- data/examples/octicons.rb +0 -35
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9efb0b74b59e669ba8755dc2768d156b798eafb7
|
4
|
+
data.tar.gz: b4ac081cd8e32226989e4a1372ecbc02bdcd025e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1af37c3f257d7f1904365049e43c98079fbcf8731a04d20b8aceebfff92d2e49d9a720284a1c468a79b58d248fae9571f5fdd2b5627e68e5f924ad3e63e0ff3
|
7
|
+
data.tar.gz: 62c35e08a09d709dfc60996404224083c2206ac208039c6943a1379c5b3affa98d39f52f79b15a8c68b575da3bb85b12a79a3f2fb552a6984296a1c2b026aaae
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1
|
+
# 2.0.0 - March 7, 2018
|
2
|
+
|
3
|
+
* [**breaking change**] Update to FontAwesome 5.0.8. FontAwesome 5 now provides 3 different font families: `brands`, `regular` and `solid`. The specifiers for these font icons are now: `fab`, `far` and `fas`.
|
4
|
+
* [**breaking change**] Remove GitHub Octicons because Octicons are now only [delivered via SVG](https://github.com/blog/2112-delivering-octicons-with-svg).
|
5
|
+
* [**breaking change**] Make the font specifier a required attribute for `Prawn::Icon::FontData#new`. Previously it was assumed to be `fa`.
|
6
|
+
* Write a new tool `tool/fontawesome/converter.rb` that accepts the FontAwesome metadata YAML file ([link](https://github.com/FortAwesome/Font-Awesome/blob/31281606f5205b0191c17c3b4d2d56e1ddbb2dc6/advanced-options/metadata/icons.yml)), and generates the correct legend files for `brands`, `regular` and `solid` styles.
|
7
|
+
* Require 'prawn/icon/version' with by default.
|
8
|
+
|
9
|
+
# 1.4.0 - Sept 11, 2017
|
10
|
+
|
11
|
+
- Update dependency gems to latest version.
|
12
|
+
- Fix `rubocop` config to show cop names as well as increase the ABC complexity slightly.
|
13
|
+
- Add internal tooling to assist with the SCSS => YAML mappings of FontAwesome and PaymentFont.
|
14
|
+
- Update FontAwesome to `v4.7.0` from `v4.6.3`. See [changelog](http://fontawesome.io/icons#new).
|
15
|
+
- Update PaymentFont to `v1.2.5` from `v1.1.2`. See [icons](https://paymentfont.com/#icons).
|
16
|
+
- Update Octicons from to `v4.4.0` from `v3.1.0`. NOTE: As Octicons have moved from font-based icons to SVG after this version, this will be the final octicon version in `prawn/icon`. See the [wiki](https://github.com/blog/2112-delivering-octicons-with-svg).
|
17
|
+
- Fix rubocop warnings for whitespace.
|
18
|
+
|
19
|
+
# 1.3.0 - Oct 15, 2016
|
20
|
+
|
21
|
+
- Update rubocop developement dependency (to `0.44.1`).
|
22
|
+
- Add `simplecov` as a development dependency and require 100% coverage.
|
23
|
+
- Break out `Prawn::Icon::Interface` into its own file. This resolves issue [#27](https://github.com/jessedoyle/prawn-icon/issues/27).
|
24
|
+
|
25
|
+
# 1.2.0 - Sept 12, 2016
|
26
|
+
|
27
|
+
- Update FontAwesome from v4.5.0 to v4.6.3. See [changelog](http://fontawesome.io/icons#new).
|
28
|
+
- Refactor spec files to remove duplication using `let` blocks.
|
29
|
+
- Break internal dependencies to `Prawn::Icon::Base` to allow selective code requires.
|
30
|
+
e.g. (to require only `prawn/icon/font_data`):
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
require 'prawn/icon/base'
|
34
|
+
require 'prawn/icon/font_data'
|
35
|
+
```
|
36
|
+
|
37
|
+
This resolves issue [#27](https://github.com/jessedoyle/prawn-icon/issues/27). Thanks @mojavelinux for reporting!
|
38
|
+
- Introduce `Prawn::Icon::Errors` to contain internal exception classes.
|
39
|
+
- `Prawn::Icon::FONTDIR` is now an alias to `Prawn::Icon::Base::FONTDIR` for compatibilty.
|
40
|
+
- Add basic spec files for `Prawn::Icon::Base` and separate exception classes.
|
41
|
+
- Minor backwards-compatible code refactor of `Prawn::Icon::FontData` for readability.
|
42
|
+
- Add a spec to test inline_icon with final_gap: false to achieve 100% coverage.
|
43
|
+
|
44
|
+
# 1.1.1 - Jun 24, 2016
|
45
|
+
|
46
|
+
- BUGFIX: Inline icons now properly render at the correct cursor position with the correct line gap and box leading[#24](https://github.com/jessedoyle/prawn-icon/issues/24). Thanks @ToniTornado for reporting!
|
47
|
+
|
48
|
+
# 1.1.0 - March 16, 2016
|
49
|
+
|
50
|
+
- Update FontAwesome from v4.4.0 to v4.5.0. See [changelog](http://fontawesome.io/icons#new).
|
51
|
+
- Refactor specs to use `expect(foo).to be true` over `expect(foo).to be_true`.
|
52
|
+
- Update development dependencies to latest.
|
53
|
+
|
1
54
|
# 1.0.0 - September 9, 2015
|
2
55
|
|
3
56
|
- *(breaking change)* Updated Octicons from v2.4.1 to v3.1.0.
|
@@ -65,4 +118,4 @@
|
|
65
118
|
|
66
119
|
# 0.5.0 - October 29, 2014
|
67
120
|
|
68
|
-
- Initial public release.
|
121
|
+
- Initial public release.
|
data/GPLv2
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
GNU GENERAL PUBLIC LICENSE
|
2
|
+
Version 2, June 1991
|
3
3
|
|
4
|
-
Copyright (C) 1989, 1991 Free Software Foundation, Inc
|
5
|
-
|
4
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
5
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6
6
|
Everyone is permitted to copy and distribute verbatim copies
|
7
7
|
of this license document, but changing it is not allowed.
|
8
8
|
|
9
|
-
|
9
|
+
Preamble
|
10
10
|
|
11
11
|
The licenses for most software are designed to take away your
|
12
12
|
freedom to share and change it. By contrast, the GNU General Public
|
@@ -15,7 +15,7 @@ software--to make sure the software is free for all its users. This
|
|
15
15
|
General Public License applies to most of the Free Software
|
16
16
|
Foundation's software and to any other program whose authors commit to
|
17
17
|
using it. (Some other Free Software Foundation software is covered by
|
18
|
-
the GNU
|
18
|
+
the GNU Lesser General Public License instead.) You can apply it to
|
19
19
|
your programs, too.
|
20
20
|
|
21
21
|
When we speak of free software, we are referring to freedom, not
|
@@ -55,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all.
|
|
55
55
|
|
56
56
|
The precise terms and conditions for copying, distribution and
|
57
57
|
modification follow.
|
58
|
-
|
59
|
-
|
58
|
+
|
59
|
+
GNU GENERAL PUBLIC LICENSE
|
60
60
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61
61
|
|
62
62
|
0. This License applies to any program or other work which contains
|
@@ -110,7 +110,7 @@ above, provided that you also meet all of these conditions:
|
|
110
110
|
License. (Exception: if the Program itself is interactive but
|
111
111
|
does not normally print such an announcement, your work based on
|
112
112
|
the Program is not required to print an announcement.)
|
113
|
-
|
113
|
+
|
114
114
|
These requirements apply to the modified work as a whole. If
|
115
115
|
identifiable sections of that work are not derived from the Program,
|
116
116
|
and can be reasonably considered independent and separate works in
|
@@ -168,7 +168,7 @@ access to copy from a designated place, then offering equivalent
|
|
168
168
|
access to copy the source code from the same place counts as
|
169
169
|
distribution of the source code, even though third parties are not
|
170
170
|
compelled to copy the source along with the object code.
|
171
|
-
|
171
|
+
|
172
172
|
4. You may not copy, modify, sublicense, or distribute the Program
|
173
173
|
except as expressly provided under this License. Any attempt
|
174
174
|
otherwise to copy, modify, sublicense or distribute the Program is
|
@@ -225,7 +225,7 @@ impose that choice.
|
|
225
225
|
|
226
226
|
This section is intended to make thoroughly clear what is believed to
|
227
227
|
be a consequence of the rest of this License.
|
228
|
-
|
228
|
+
|
229
229
|
8. If the distribution and/or use of the Program is restricted in
|
230
230
|
certain countries either by patents or by copyrighted interfaces, the
|
231
231
|
original copyright holder who places the Program under this License
|
@@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals
|
|
255
255
|
of preserving the free status of all derivatives of our free software and
|
256
256
|
of promoting the sharing and reuse of software generally.
|
257
257
|
|
258
|
-
|
258
|
+
NO WARRANTY
|
259
259
|
|
260
260
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
261
261
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
@@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|
277
277
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
278
278
|
POSSIBILITY OF SUCH DAMAGES.
|
279
279
|
|
280
|
-
|
281
|
-
|
282
|
-
|
280
|
+
END OF TERMS AND CONDITIONS
|
281
|
+
|
282
|
+
How to Apply These Terms to Your New Programs
|
283
283
|
|
284
284
|
If you develop a new program, and you want it to be of the greatest
|
285
285
|
possible use to the public, the best way to achieve this is to make it
|
@@ -303,17 +303,16 @@ the "copyright" line and a pointer to where the full notice is found.
|
|
303
303
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
304
304
|
GNU General Public License for more details.
|
305
305
|
|
306
|
-
You should have received a copy of the GNU General Public License
|
307
|
-
|
308
|
-
|
309
|
-
|
306
|
+
You should have received a copy of the GNU General Public License along
|
307
|
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
308
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
310
309
|
|
311
310
|
Also add information on how to contact you by electronic and paper mail.
|
312
311
|
|
313
312
|
If the program is interactive, make it output a short notice like this
|
314
313
|
when it starts in an interactive mode:
|
315
314
|
|
316
|
-
Gnomovision version 69, Copyright (C) year
|
315
|
+
Gnomovision version 69, Copyright (C) year name of author
|
317
316
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
318
317
|
This is free software, and you are welcome to redistribute it
|
319
318
|
under certain conditions; type `show c' for details.
|
@@ -336,5 +335,5 @@ necessary. Here is a sample; alter the names:
|
|
336
335
|
This General Public License does not permit incorporating your program into
|
337
336
|
proprietary programs. If your program is a subroutine library, you may
|
338
337
|
consider it more useful to permit linking proprietary applications with the
|
339
|
-
library. If this is what you want to do, use the GNU
|
340
|
-
Public License instead of this License.
|
338
|
+
library. If this is what you want to do, use the GNU Lesser General
|
339
|
+
Public License instead of this License.
|
data/README.md
CHANGED
@@ -10,7 +10,6 @@ The following icon fonts ship with Prawn::Icon:
|
|
10
10
|
|
11
11
|
* FontAwesome (http://fontawesome.io/icons/)
|
12
12
|
* Foundation Icons (http://zurb.com/playground/foundation-icon-fonts-3)
|
13
|
-
* GitHub Octicons (https://octicons.github.com)
|
14
13
|
* PaymentFont (http://paymentfont.io)
|
15
14
|
|
16
15
|
Prawn::Icon was originally written by Jesse Doyle.
|
@@ -31,13 +30,13 @@ Prawn::Icon was designed to have an API familiar to Prawn. A single icon may be
|
|
31
30
|
require 'prawn/icon'
|
32
31
|
|
33
32
|
Prawn::Document.generate('icons.pdf') do |pdf|
|
34
|
-
pdf.icon '
|
33
|
+
pdf.icon 'fas-beer', size: 60
|
35
34
|
end
|
36
35
|
```
|
37
36
|
|
38
37
|
produces:
|
39
38
|
|
40
|
-

|
41
40
|
|
42
41
|
## Inline Icons
|
43
42
|
|
@@ -47,13 +46,13 @@ You can also provide the `inline_format: true` option to Prawn::Icon:
|
|
47
46
|
require 'prawn/icon'
|
48
47
|
|
49
48
|
Prawn::Document.generate('inline_icons.pdf') do |pdf|
|
50
|
-
pdf.icon 'Enjoy: <icon size="20" color="AAAAAA">
|
49
|
+
pdf.icon 'Enjoy: <icon size="20" color="AAAAAA">fas-beer</icon>', inline_format: true
|
51
50
|
end
|
52
51
|
```
|
53
52
|
|
54
53
|
produces:
|
55
54
|
|
56
|
-

|
57
56
|
|
58
57
|
When using `inline_format: true`, you may supply `<icon>` tags with `color` and `size` attributes.
|
59
58
|
|
@@ -69,7 +68,7 @@ Prawn::Document.generate('table_icons.pdf') do |pdf|
|
|
69
68
|
|
70
69
|
data = [
|
71
70
|
# Explicit brackets must be used here
|
72
|
-
[pdf.table_icon('
|
71
|
+
[pdf.table_icon('fas-birthday-cake'), 'Cake'],
|
73
72
|
['is', 'Great!']
|
74
73
|
]
|
75
74
|
|
@@ -85,10 +84,11 @@ Prawn::Icon uses the prefix of an icon key to determine which font family is use
|
|
85
84
|
|
86
85
|
Currently supported prefixes include:
|
87
86
|
|
88
|
-
* `
|
89
|
-
* `
|
90
|
-
* `
|
91
|
-
* `
|
87
|
+
* `fab` - [FontAwesome Brands](https://fontawesome.com/icons?d=gallery&s=brands&m=free) (eg. `fab-amazon`).
|
88
|
+
* `far` - [FontAwesome Regular](https://fontawesome.com/icons?d=gallery&s=regular&m=free) (eg. `far-address-book`).
|
89
|
+
* `fas` - [FontAwesome Solid](https://fontawesome.com/icons?d=gallery&s=solid&m=free) (eg. `fas-location-arrow`).
|
90
|
+
* `fi` - [Foundation Icons](https://zurb.com/playground/foundation-icon-fonts-3) (eg. `fi-compass`).
|
91
|
+
* `pf` - [PaymentFont](https://paymentfont.com/#icons) (eg. `pf-cash`).
|
92
92
|
|
93
93
|
## How It Works
|
94
94
|
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Font Awesome Free License
|
2
|
+
-------------------------
|
3
|
+
|
4
|
+
Font Awesome Free is free, open source, and GPL friendly. You can use it for
|
5
|
+
commercial projects, open source projects, or really almost whatever you want.
|
6
|
+
Full Font Awesome Free license: https://fontawesome.com/license.
|
7
|
+
|
8
|
+
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
|
9
|
+
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
|
10
|
+
packaged as SVG and JS file types.
|
11
|
+
|
12
|
+
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
|
13
|
+
In the Font Awesome Free download, the SIL OLF license applies to all icons
|
14
|
+
packaged as web and desktop font files.
|
15
|
+
|
16
|
+
# Code: MIT License (https://opensource.org/licenses/MIT)
|
17
|
+
In the Font Awesome Free download, the MIT license applies to all non-font and
|
18
|
+
non-icon files.
|
19
|
+
|
20
|
+
# Attribution
|
21
|
+
Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font
|
22
|
+
Awesome Free files already contain embedded comments with sufficient
|
23
|
+
attribution, so you shouldn't need to do anything additional when using these
|
24
|
+
files normally.
|
25
|
+
|
26
|
+
We've kept attribution comments terse, so we ask that you do not actively work
|
27
|
+
to remove them from files, especially code. They're a great way for folks to
|
28
|
+
learn about Font Awesome.
|
29
|
+
|
30
|
+
# Brand Icons
|
31
|
+
All brand icons are trademarks of their respective owners. The use of these
|
32
|
+
trademarks does not indicate endorsement of the trademark holder by Font
|
33
|
+
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
34
|
+
to represent the company, product, or service to which they refer.**
|
Binary file
|
@@ -0,0 +1,333 @@
|
|
1
|
+
---
|
2
|
+
fab:
|
3
|
+
__font_version__: 5.0.8
|
4
|
+
500px: ""
|
5
|
+
accessible-icon: ""
|
6
|
+
accusoft: ""
|
7
|
+
adn: ""
|
8
|
+
adversal: ""
|
9
|
+
affiliatetheme: ""
|
10
|
+
algolia: ""
|
11
|
+
amazon: ""
|
12
|
+
amazon-pay: ""
|
13
|
+
amilia: ""
|
14
|
+
android: ""
|
15
|
+
angellist: ""
|
16
|
+
angrycreative: ""
|
17
|
+
angular: ""
|
18
|
+
app-store: ""
|
19
|
+
app-store-ios: ""
|
20
|
+
apper: ""
|
21
|
+
apple: ""
|
22
|
+
apple-pay: ""
|
23
|
+
asymmetrik: ""
|
24
|
+
audible: ""
|
25
|
+
autoprefixer: ""
|
26
|
+
avianex: ""
|
27
|
+
aviato: ""
|
28
|
+
aws: ""
|
29
|
+
bandcamp: ""
|
30
|
+
behance: ""
|
31
|
+
behance-square: ""
|
32
|
+
bimobject: ""
|
33
|
+
bitbucket: ""
|
34
|
+
bitcoin: ""
|
35
|
+
bity: ""
|
36
|
+
black-tie: ""
|
37
|
+
blackberry: ""
|
38
|
+
blogger: ""
|
39
|
+
blogger-b: ""
|
40
|
+
bluetooth: ""
|
41
|
+
bluetooth-b: ""
|
42
|
+
btc: ""
|
43
|
+
buromobelexperte: ""
|
44
|
+
buysellads: ""
|
45
|
+
cc-amazon-pay: ""
|
46
|
+
cc-amex: ""
|
47
|
+
cc-apple-pay: ""
|
48
|
+
cc-diners-club: ""
|
49
|
+
cc-discover: ""
|
50
|
+
cc-jcb: ""
|
51
|
+
cc-mastercard: ""
|
52
|
+
cc-paypal: ""
|
53
|
+
cc-stripe: ""
|
54
|
+
cc-visa: ""
|
55
|
+
centercode: ""
|
56
|
+
chrome: ""
|
57
|
+
cloudscale: ""
|
58
|
+
cloudsmith: ""
|
59
|
+
cloudversify: ""
|
60
|
+
codepen: ""
|
61
|
+
codiepie: ""
|
62
|
+
connectdevelop: ""
|
63
|
+
contao: ""
|
64
|
+
cpanel: ""
|
65
|
+
creative-commons: ""
|
66
|
+
css3: ""
|
67
|
+
css3-alt: ""
|
68
|
+
cuttlefish: ""
|
69
|
+
d-and-d: ""
|
70
|
+
dashcube: ""
|
71
|
+
delicious: ""
|
72
|
+
deploydog: ""
|
73
|
+
deskpro: ""
|
74
|
+
deviantart: ""
|
75
|
+
digg: ""
|
76
|
+
digital-ocean: ""
|
77
|
+
discord: ""
|
78
|
+
discourse: ""
|
79
|
+
dochub: ""
|
80
|
+
docker: ""
|
81
|
+
draft2digital: ""
|
82
|
+
dribbble: ""
|
83
|
+
dribbble-square: ""
|
84
|
+
dropbox: ""
|
85
|
+
drupal: ""
|
86
|
+
dyalog: ""
|
87
|
+
earlybirds: ""
|
88
|
+
edge: ""
|
89
|
+
elementor: ""
|
90
|
+
ember: ""
|
91
|
+
empire: ""
|
92
|
+
envira: ""
|
93
|
+
erlang: ""
|
94
|
+
ethereum: ""
|
95
|
+
etsy: ""
|
96
|
+
expeditedssl: ""
|
97
|
+
facebook: ""
|
98
|
+
facebook-f: ""
|
99
|
+
facebook-messenger: ""
|
100
|
+
facebook-square: ""
|
101
|
+
firefox: ""
|
102
|
+
first-order: ""
|
103
|
+
firstdraft: ""
|
104
|
+
flickr: ""
|
105
|
+
flipboard: ""
|
106
|
+
fly: ""
|
107
|
+
font-awesome: ""
|
108
|
+
font-awesome-alt: ""
|
109
|
+
font-awesome-flag: ""
|
110
|
+
fonticons: ""
|
111
|
+
fonticons-fi: ""
|
112
|
+
fort-awesome: ""
|
113
|
+
fort-awesome-alt: ""
|
114
|
+
forumbee: ""
|
115
|
+
foursquare: ""
|
116
|
+
free-code-camp: ""
|
117
|
+
freebsd: ""
|
118
|
+
get-pocket: ""
|
119
|
+
gg: ""
|
120
|
+
gg-circle: ""
|
121
|
+
git: ""
|
122
|
+
git-square: ""
|
123
|
+
github: ""
|
124
|
+
github-alt: ""
|
125
|
+
github-square: ""
|
126
|
+
gitkraken: ""
|
127
|
+
gitlab: ""
|
128
|
+
gitter: ""
|
129
|
+
glide: ""
|
130
|
+
glide-g: ""
|
131
|
+
gofore: ""
|
132
|
+
goodreads: ""
|
133
|
+
goodreads-g: ""
|
134
|
+
google: ""
|
135
|
+
google-drive: ""
|
136
|
+
google-play: ""
|
137
|
+
google-plus: ""
|
138
|
+
google-plus-g: ""
|
139
|
+
google-plus-square: ""
|
140
|
+
google-wallet: ""
|
141
|
+
gratipay: ""
|
142
|
+
grav: ""
|
143
|
+
gripfire: ""
|
144
|
+
grunt: ""
|
145
|
+
gulp: ""
|
146
|
+
hacker-news: ""
|
147
|
+
hacker-news-square: ""
|
148
|
+
hips: ""
|
149
|
+
hire-a-helper: ""
|
150
|
+
hooli: ""
|
151
|
+
hotjar: ""
|
152
|
+
houzz: ""
|
153
|
+
html5: ""
|
154
|
+
hubspot: ""
|
155
|
+
imdb: ""
|
156
|
+
instagram: ""
|
157
|
+
internet-explorer: ""
|
158
|
+
ioxhost: ""
|
159
|
+
itunes: ""
|
160
|
+
itunes-note: ""
|
161
|
+
jenkins: ""
|
162
|
+
joget: ""
|
163
|
+
joomla: ""
|
164
|
+
js: ""
|
165
|
+
js-square: ""
|
166
|
+
jsfiddle: ""
|
167
|
+
keycdn: ""
|
168
|
+
kickstarter: ""
|
169
|
+
kickstarter-k: ""
|
170
|
+
korvue: ""
|
171
|
+
laravel: ""
|
172
|
+
lastfm: ""
|
173
|
+
lastfm-square: ""
|
174
|
+
leanpub: ""
|
175
|
+
less: ""
|
176
|
+
line: ""
|
177
|
+
linkedin: ""
|
178
|
+
linkedin-in: ""
|
179
|
+
linode: ""
|
180
|
+
linux: ""
|
181
|
+
lyft: ""
|
182
|
+
magento: ""
|
183
|
+
maxcdn: ""
|
184
|
+
medapps: ""
|
185
|
+
medium: ""
|
186
|
+
medium-m: ""
|
187
|
+
medrt: ""
|
188
|
+
meetup: ""
|
189
|
+
microsoft: ""
|
190
|
+
mix: ""
|
191
|
+
mixcloud: ""
|
192
|
+
mizuni: ""
|
193
|
+
modx: ""
|
194
|
+
monero: ""
|
195
|
+
napster: ""
|
196
|
+
nintendo-switch: ""
|
197
|
+
node: ""
|
198
|
+
node-js: ""
|
199
|
+
npm: ""
|
200
|
+
ns8: ""
|
201
|
+
nutritionix: ""
|
202
|
+
odnoklassniki: ""
|
203
|
+
odnoklassniki-square: ""
|
204
|
+
opencart: ""
|
205
|
+
openid: ""
|
206
|
+
opera: ""
|
207
|
+
optin-monster: ""
|
208
|
+
osi: ""
|
209
|
+
page4: ""
|
210
|
+
pagelines: ""
|
211
|
+
palfed: ""
|
212
|
+
patreon: ""
|
213
|
+
paypal: ""
|
214
|
+
periscope: ""
|
215
|
+
phabricator: ""
|
216
|
+
phoenix-framework: ""
|
217
|
+
php: ""
|
218
|
+
pied-piper: ""
|
219
|
+
pied-piper-alt: ""
|
220
|
+
pied-piper-pp: ""
|
221
|
+
pinterest: ""
|
222
|
+
pinterest-p: ""
|
223
|
+
pinterest-square: ""
|
224
|
+
playstation: ""
|
225
|
+
product-hunt: ""
|
226
|
+
pushed: ""
|
227
|
+
python: ""
|
228
|
+
qq: ""
|
229
|
+
quinscape: ""
|
230
|
+
quora: ""
|
231
|
+
ravelry: ""
|
232
|
+
react: ""
|
233
|
+
rebel: ""
|
234
|
+
red-river: ""
|
235
|
+
reddit: ""
|
236
|
+
reddit-alien: ""
|
237
|
+
reddit-square: ""
|
238
|
+
rendact: ""
|
239
|
+
renren: ""
|
240
|
+
replyd: ""
|
241
|
+
resolving: ""
|
242
|
+
rocketchat: ""
|
243
|
+
rockrms: ""
|
244
|
+
safari: ""
|
245
|
+
sass: ""
|
246
|
+
schlix: ""
|
247
|
+
scribd: ""
|
248
|
+
searchengin: ""
|
249
|
+
sellcast: ""
|
250
|
+
sellsy: ""
|
251
|
+
servicestack: ""
|
252
|
+
shirtsinbulk: ""
|
253
|
+
simplybuilt: ""
|
254
|
+
sistrix: ""
|
255
|
+
skyatlas: ""
|
256
|
+
skype: ""
|
257
|
+
slack: ""
|
258
|
+
slack-hash: ""
|
259
|
+
slideshare: ""
|
260
|
+
snapchat: ""
|
261
|
+
snapchat-ghost: ""
|
262
|
+
snapchat-square: ""
|
263
|
+
soundcloud: ""
|
264
|
+
speakap: ""
|
265
|
+
spotify: ""
|
266
|
+
stack-exchange: ""
|
267
|
+
stack-overflow: ""
|
268
|
+
staylinked: ""
|
269
|
+
steam: ""
|
270
|
+
steam-square: ""
|
271
|
+
steam-symbol: ""
|
272
|
+
sticker-mule: ""
|
273
|
+
strava: ""
|
274
|
+
stripe: ""
|
275
|
+
stripe-s: ""
|
276
|
+
studiovinari: ""
|
277
|
+
stumbleupon: ""
|
278
|
+
stumbleupon-circle: ""
|
279
|
+
superpowers: ""
|
280
|
+
supple: ""
|
281
|
+
telegram: ""
|
282
|
+
telegram-plane: ""
|
283
|
+
tencent-weibo: ""
|
284
|
+
themeisle: ""
|
285
|
+
trello: ""
|
286
|
+
tripadvisor: ""
|
287
|
+
tumblr: ""
|
288
|
+
tumblr-square: ""
|
289
|
+
twitch: ""
|
290
|
+
twitter: ""
|
291
|
+
twitter-square: ""
|
292
|
+
typo3: ""
|
293
|
+
uber: ""
|
294
|
+
uikit: ""
|
295
|
+
uniregistry: ""
|
296
|
+
untappd: ""
|
297
|
+
usb: ""
|
298
|
+
ussunnah: ""
|
299
|
+
vaadin: ""
|
300
|
+
viacoin: ""
|
301
|
+
viadeo: ""
|
302
|
+
viadeo-square: ""
|
303
|
+
viber: ""
|
304
|
+
vimeo: ""
|
305
|
+
vimeo-square: ""
|
306
|
+
vimeo-v: ""
|
307
|
+
vine: ""
|
308
|
+
vk: ""
|
309
|
+
vnv: ""
|
310
|
+
vuejs: ""
|
311
|
+
weibo: ""
|
312
|
+
weixin: ""
|
313
|
+
whatsapp: ""
|
314
|
+
whatsapp-square: ""
|
315
|
+
whmcs: ""
|
316
|
+
wikipedia-w: ""
|
317
|
+
windows: ""
|
318
|
+
wordpress: ""
|
319
|
+
wordpress-simple: ""
|
320
|
+
wpbeginner: ""
|
321
|
+
wpexplorer: ""
|
322
|
+
wpforms: ""
|
323
|
+
xbox: ""
|
324
|
+
xing: ""
|
325
|
+
xing-square: ""
|
326
|
+
y-combinator: ""
|
327
|
+
yahoo: ""
|
328
|
+
yandex: ""
|
329
|
+
yandex-international: ""
|
330
|
+
yelp: ""
|
331
|
+
yoast: ""
|
332
|
+
youtube: ""
|
333
|
+
youtube-square: ""
|