socicon-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4dd5e4e11c0f0ce61951047112672e1ca27b7ec7
4
+ data.tar.gz: 8b11955905549b7b3c44aacdad3854acf049f4fe
5
+ SHA512:
6
+ metadata.gz: 66a463ce9975d9d6a3cfd35db2abf7c513d7a65b6444b1e2bafd9546f6dc3cdbfae9c438e578c75107a95977fcef2b526e3937b97a9466c7ea1afb88a6806742
7
+ data.tar.gz: 6d7d7f5bf714e33e3a1205bcbfd01800b62ec5c29e0bb140d48585eca37b573bd5230227f482d1dd63d4a1fe9ec3f23b1ea237bfecd47ec5f914a33b7618c761
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,22 @@
1
+ language: ruby
2
+ cache: bundler
3
+ sudo: false
4
+ rvm:
5
+ - 2.1.8
6
+ - 2.2.4
7
+ - 2.3.0
8
+ gemfile:
9
+ - Gemfile
10
+ - gemfiles/rails-4.1.gemfile
11
+ - gemfiles/rails-4.2.gemfile
12
+ - gemfiles/rails-master.gemfile
13
+ matrix:
14
+ include:
15
+ - rvm: 2.1.8
16
+ gemfile: gemfiles/rails-3.2.gemfile
17
+ exclude:
18
+ - rvm: 2.1.8
19
+ gemfile: Gemfile
20
+ - rvm: 2.1.8
21
+ gemfile: gemfiles/rails-master.gemfile
22
+ fast_finish: true
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,84 @@
1
+ SIL OPEN FONT LICENSE
2
+
3
+ PREAMBLE
4
+ The goals of the Open Font License (OFL) are to stimulate worldwide
5
+ development of collaborative font projects, to support the font creation
6
+ efforts of academic and linguistic communities, and to provide a free and
7
+ open framework in which fonts may be shared and improved in partnership
8
+ with others.
9
+
10
+ The OFL allows the licensed fonts to be used, studied, modified and
11
+ redistributed freely as long as they are not sold by themselves. The
12
+ fonts, including any derivative works, can be bundled, embedded,
13
+ redistributed and/or sold with any software provided that any reserved
14
+ names are not used by derivative works. The fonts and derivatives,
15
+ however, cannot be released under any other type of license. The
16
+ requirement for fonts to remain under this license does not apply
17
+ to any document created using the fonts or their derivatives.
18
+
19
+ DEFINITIONS
20
+ "Font Software" refers to the set of files released by the Copyright
21
+ Holder(s) under this license and clearly marked as such. This may
22
+ include source files, build scripts and documentation.
23
+
24
+ "Reserved Font Name" refers to any names specified as such after the
25
+ copyright statement(s).
26
+
27
+ "Original Version" refers to the collection of Font Software components as
28
+ distributed by the Copyright Holder(s).
29
+
30
+ "Modified Version" refers to any derivative made by adding to, deleting,
31
+ or substituting — in part or in whole — any of the components of the
32
+ Original Version, by changing formats or by porting the Font Software to a
33
+ new environment.
34
+
35
+ "Author" refers to any designer, engineer, programmer, technical
36
+ writer or other person who contributed to the Font Software.
37
+
38
+ PERMISSION & CONDITIONS
39
+ Permission is hereby granted, free of charge, to any person obtaining
40
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
41
+ redistribute, and sell modified and unmodified copies of the Font
42
+ Software, subject to the following conditions:
43
+
44
+ 1) Neither the Font Software nor any of its individual components,
45
+ in Original or Modified Versions, may be sold by itself.
46
+
47
+ 2) Original or Modified Versions of the Font Software may be bundled,
48
+ redistributed and/or sold with any software, provided that each copy
49
+ contains the above copyright notice and this license. These can be
50
+ included either as stand-alone text files, human-readable headers or
51
+ in the appropriate machine-readable metadata fields within text or
52
+ binary files as long as those fields can be easily viewed by the user.
53
+
54
+ 3) No Modified Version of the Font Software may use the Reserved Font
55
+ Name(s) unless explicit written permission is granted by the corresponding
56
+ Copyright Holder. This restriction only applies to the primary font name as
57
+ presented to the users.
58
+
59
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
60
+ Software shall not be used to promote, endorse or advertise any
61
+ Modified Version, except to acknowledge the contribution(s) of the
62
+ Copyright Holder(s) and the Author(s) or with their explicit written
63
+ permission.
64
+
65
+ 5) The Font Software, modified or unmodified, in part or in whole,
66
+ must be distributed entirely under this license, and must not be
67
+ distributed under any other license. The requirement for fonts to
68
+ remain under this license does not apply to any document created
69
+ using the Font Software.
70
+
71
+ TERMINATION
72
+ This license becomes null and void if any of the above conditions are
73
+ not met.
74
+
75
+ DISCLAIMER
76
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
77
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
78
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
79
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
80
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
81
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
82
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
83
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
84
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,84 @@
1
+ # Socicon::Rails
2
+
3
+ [![Build Status](https://travis-ci.org/timsly/socicon-rails.svg?branch=master)](https://travis-ci.org/timsly/socicon-rails)
4
+
5
+ socicon + sprockets = :heart:
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'socicon-rails'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install socicon-rails
22
+
23
+ ## Usage
24
+
25
+ In your `application.css`, include the css file:
26
+
27
+ ```css
28
+ /*
29
+ *= require socicon
30
+ */
31
+ ```
32
+
33
+ ### Sass Support
34
+
35
+ If you prefer [SCSS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html), add this to your
36
+ `application.css.scss` file:
37
+
38
+ ```scss
39
+ @import "socicon";
40
+ ```
41
+
42
+ If you use the
43
+ [Sass indented syntax](http://sass-lang.com/docs/yardoc/file.INDENTED_SYNTAX.html),
44
+ add this to your `application.css.sass` file:
45
+
46
+ ```sass
47
+ @import socicon
48
+ ```
49
+
50
+ ## Development
51
+
52
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
53
+
54
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
55
+
56
+ ## Contributing
57
+
58
+ Bug reports and pull requests are welcome on GitHub at https://github.com/timsly/socicon-rails.
59
+
60
+ ## The little story behind Socicon
61
+ Socicon was created to give people an easy way to customize social icons.
62
+ **Made in France**
63
+ In France we are very proud of our food (sometimes a bit too much)! Socicon refers to the [saucisson](http://en.wikipedia.org/wiki/Saucisson), a sort of dry sausage that we eat as an aperitif with a drink, with cheese, in a packed lunch, well we can really eat saucisson any time, anywhere and with anyone!
64
+
65
+ ## License
66
+
67
+ Socicon is released under SIL Open Font License 1.1 ([http://scripts.sil.org/OFL](http://scripts.sil.org/OFL)).
68
+ You are free to use it on your website or project.
69
+
70
+ ### Commercial use
71
+ You can use Socicon on a commercial project (a product or service that you sell, make money out of it). Simply consider making a backlink to socicon.com, on credit page, legal notice or anywhere. You can use this:
72
+ `Social icons font: <a href="http://www.socicon.com" target="_blank" alt="Free social icons font" title="the social icons font">socicon</a>`
73
+
74
+ If you use Socicon on a commercial project, please consider making a [donation to support Socicon](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MMAFH9MJUDYJE).
75
+
76
+ You can [send a message](mailto:hello@socicon.com) to tell me about your project, so I know the whereabouts of Socicon. I can talk about it in return and maybe make a featuring on the site.
77
+
78
+ ## Share & Help
79
+
80
+ If you use Socicon for any project, please make a backlink to http://socicon.com somewhere in credits, imprint, legal notice.
81
+ It will give us a hand and be highly appreciated.
82
+ You can also share Socicon on twitter, facebook, google+ or anywhere else.
83
+
84
+ You can also [make a donation](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MMAFH9MJUDYJE)
@@ -0,0 +1,10 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << 'test'
6
+ t.libs << 'lib'
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "socicon/rails"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'railties', '~> 3.2.21'
6
+ gem 'sass-rails', '~> 3.2.6'
7
+ gem 'tzinfo'
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'railties', '~> 4.1.8'
6
+ gem 'sass-rails', '~> 4.0.5'
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'railties', '~> 4.2.0'
6
+ gem 'sass-rails', '~> 5.0.0'
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'railties', github: 'rails/rails', branch: 'master'
6
+ gem 'sprockets', '< 4.0'
7
+ gem 'sass-rails', '< 6.0'
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # See:
4
+ # http://blog.logdown.com/posts/171593-using-rails-4-asset-pipeline-on-rails-3-for-faster-deploy
5
+ # https://github.com/rails/sprockets-rails/issues/98
6
+ # https://discussion.heroku.com/t/using-the-rails-4-asset-pipeline-in-rails-3-apps-for-faster-deploys/205
7
+
8
+ gemspec path: '../'
9
+
10
+ gem 'railties', github: 'rails/rails', branch: '3-2-stable'
11
+ gem 'sprockets', '2.2.2.backport2'
12
+ gem 'sprockets-rails', '2.0.0.backport1'
13
+ gem 'sass-rails', github: 'guilleiguaran/sass-rails', branch: 'backport'
14
+ gem 'tzinfo'
@@ -0,0 +1 @@
1
+ require 'socicon/rails'
@@ -0,0 +1,2 @@
1
+ require 'socicon/rails/version'
2
+ require 'socicon/rails/engine' if defined?(::Rails)
@@ -0,0 +1,6 @@
1
+ module Socicon
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Socicon
2
+ module Rails
3
+ VERSION = '0.1.0'
4
+ end
5
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'socicon/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'socicon-rails'
8
+ spec.version = Socicon::Rails::VERSION
9
+ spec.authors = ['Tim Maslyuchenko']
10
+ spec.email = ['insside@gmail.com']
11
+
12
+ spec.summary = %q{socicon + sprockets = <3}
13
+ spec.description = %q{an asset gemification of the socicon icon font library}
14
+ spec.homepage = 'http://socicon.com/'
15
+ spec.license = 'SIL Open Font License 1.1'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_dependency 'railties', '>= 3.2', '< 5.1'
23
+
24
+ spec.add_development_dependency 'activesupport'
25
+ spec.add_development_dependency 'sass-rails'
26
+ end
@@ -0,0 +1,138 @@
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
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by Fontastic.me</metadata>
5
+ <defs>
6
+ <font id="socicon" horiz-adv-x="512">
7
+ <font-face font-family="socicon" units-per-em="512" ascent="480" descent="-32"/>
8
+ <missing-glyph horiz-adv-x="512" />
9
+
10
+ <glyph glyph-name="modelmayhem" unicode="&#57344;" d="M511 216c-1 21-2 41-8 61-5 19-14 37-25 54-10 15-23 30-40 39-16 8-33 10-51 8-42-5-74-34-101-66-14-16-27-34-40-52-3-6-7-11-10-17-3-4-5-10-9-13-7-7-11 17-12 21-12 44-23 90-43 132-8 17-17 34-30 47-14 14-31 15-51 15-9-2-17-2-25-10-8-7-16-14-23-21-7-7-13-16-22-21-7-4-16-3-19-11-5-9 1-19 1-29 0-11 2-34 2-34 0 0 0-24 0-36 0-6 0-12 0-18 0-5 0-15 0-15l0-143c0 0-2-21 3-28 4-7 13-6 20-6 14-1 32-2 34 15 2 11 1 22 1 33 0 12 0 25 0 37 0 48-8 97 1 145 2 14 10 46 30 41 18-4 30-28 36-43 17-44 26-91 36-137 2-12 4-24 8-35 2-8 4-17 12-20 15-9 37 1 49 11 17 13 28 30 37 49 11 21 21 42 31 64 9 18 15 38 32 51 14 10 34 17 51 15 46-3 57-65 58-101 1-24-2-48-3-72-1-12-1-24-1-36 0-5-1-12 2-17 6-10 26-6 35-5 13 1 18 7 23 20 7 21 10 42 11 65 1 21 2 42 0 63z"/>
11
+ <glyph glyph-name="mixcloud" unicode="&#57345;" d="M468 105c-3 0-6 1-9 3-8 5-10 16-5 24 16 23 24 51 24 79 0 29-8 56-24 79-5 8-3 19 5 24 7 5 18 3 23-5 20-29 30-63 30-98 0-35-10-69-30-98-3-5-8-8-14-8z m-49 28c-3 0-6 1-9 3-8 5-10 16-5 23 11 16 16 34 16 52 0 19-5 36-16 52-5 8-3 18 5 23 8 6 18 4 23-4 15-21 22-46 22-71 0-25-7-50-22-71-3-5-8-7-14-7z m-79 152c-7 68-65 122-135 122-58 0-109-37-128-92-43-6-77-44-77-89 0-50 41-91 91-91l232 0c42 0 76 34 76 76 0 36-25 67-59 74z m-17-116l-232 0c-31 0-57 26-57 57 0 31 26 56 57 56 15 0 29-5 40-16 7-7 17-7 24 0 7 6 7 17 0 24-12 12-26 20-42 24 16 35 52 59 92 59 56 0 101-45 101-101 0-11-1-22-5-32-3-9 2-18 11-21 2-1 4-1 5-1 8 0 14 4 17 12 2 6 4 13 5 20 15-6 26-21 26-39 0-23-18-42-42-42z"/>
12
+ <glyph glyph-name="drupal" unicode="&#57346;" d="M367 417c0 0 0 0-1 0-22 14-44 21-66 34-3 1-5 3-8 5-15 10-36 35-54 56 0 0 0 0 0 0 0 0 0 0 0 0-1-11-3-19-5-26-5-15-11-24-19-30 0-1-1-1-2-2-25-20-41-26-63-37-1-1-4-3-7-5-13-8-36-24-58-49-27-32-52-78-52-142 0-41 11-78 30-110 20-34 49-62 84-81 0-1 0-1 0-1 1 0 2 0 2-1 1 0 1 0 2-1 0 0 1 0 2-1 0 0 1 0 2-1 0 0 0 0 1 0 0-1 1-1 2-2 0 0 0 0 0 0 31-15 66-23 101-23 119 0 222 86 222 217 0 131-97 190-113 200z m3-371c-2-2-25-18-51-20-27-3-63-4-85 15-3 4-2 9 0 11 3 2 5 3 8 3 3 0 2 0 4-1 9-8 24-14 56-14 31 0 54 9 63 16 5 4 7 1 7-1 1-2 2-5-2-9z m-86 45c5 5 14 13 23 17 8 3 13 2 20 2 8 0 17 0 23-4 6-4 9-13 11-18 2-5 0-8-4-10-3-2-4-1-7 6-4 6-7 13-24 13-17 0-23-6-31-13-8-7-11-10-14-6-3 4-2 8 3 13z m131-4c-18 2-54 57-76 58-29 1-91-60-140-60-29 0-38 5-48 11-15 11-22 26-22 48 1 38 37 74 82 75 58 0 98-57 127-57 24 1 72 49 95 49 25 0 31-26 31-41 0-15-4-43-16-60-12-17-20-24-33-23z"/>
13
+ <glyph glyph-name="swarm" unicode="&#57347;" d="M191 193c-21-32-36-64-47-88 0-1-8-20-10-26-3-7 1-15 8-18 6-2 25-9 26-10 25-8 58-18 95-24-21 21-39 47-52 75-13 28-19 59-20 91z m73 132c0 0 0 0 0 0-1 2-3 7-4 8-72 148-232 142-257 76-20-50 65-171 261-84z m32 14c0 0 0 0 0 0 111 49 95 134 67 145-39 15-109-42-69-141 1-1 2-3 2-4z m203-108c-16 37-47 64-83 77-3 1-7 2-11 2-18 0-36-15-38-35-2-32 4-64 18-96 14-31 33-57 59-77 6-5 14-7 22-7 15 0 29 8 35 21 15 36 15 77-2 115z m-156-71c-18 40-25 80-22 119 1 11 5 22 10 32-1-1-3-1-3-1-16-4-32-11-46-20-20-14-38-34-46-57-2-6-4-13-4-20-3-31 2-64 16-95 14-30 33-55 57-74 15-11 42-19 63-19 20 0 40 6 58 15 6 3 18 11 19 12-11 2-21 7-29 14-31 23-56 55-73 94z"/>
14
+ <glyph glyph-name="istock" unicode="&#57348;" d="M30 352l92 0 0-343-92 0z m181-211c28-32 71-54 117-54 43 0 71 26 71 62 0 64-92 71-158 111-40 22-70 56-70 113 0 88 81 139 164 139 51 0 96-11 143-47l-49-72c-21 19-53 32-85 32-35 0-77-15-77-54 0-79 228-55 228-222 0-89-79-149-167-149-66 0-128 28-179 73z m-194 311c0 34 26 60 60 60 34 0 60-26 60-60 0-34-26-60-60-60-34 0-60 26-60 60z"/>
15
+ <glyph glyph-name="yammer" unicode="&#57349;" d="M249 454c-13 4-26-2-31-15 0 0 0-2-1-2 0-1 0-2 0-2l0 0c-8-20-79-210-79-210l-2 0-84 215c0 0 0 0 0 0l-1 3c-6 13-20 19-33 14-13-5-20-20-16-33 10-26 108-263 108-263l-7-14c-10-29-22-48-55-48-3 0-13 0-14 0-11 1-20-6-23-16-3-12 4-24 16-28 8-1 17-2 25-2 59 0 79 34 98 84 0 0 108 269 113 280 0 2 1 4 2 5l0 0c0 0 0 1 0 1 4 13-3 27-16 31z m195-313c-42 23-114 57-140 57-4 0-6-1-9-3-2-1-3-3-3-6 1-20 112-94 121-99l4-2c3-1 6-2 9-2 10 0 19 6 25 14 8 13 5 30-7 41z m-149 176c3-2 5-3 9-3 26 0 98 34 140 58 12 10 15 27 7 40-6 8-15 14-25 14-3 0-6-1-10-2l-3-2c-9-5-120-79-121-99 0-3 1-5 3-6z m193-30l-3 0c-11 0-143-12-154-29-1-2-2-6 0-8 11-23 154-25 157-23 15 2 26 16 25 32-1 13-11 25-25 28z"/>
16
+ <glyph glyph-name="ello" unicode="&#57350;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m149-294c-18-68-79-116-149-116-70 0-131 48-149 116-2 7 3 15 11 17 8 2 16-2 18-10 14-55 63-93 120-93 57 0 106 38 120 93 2 8 10 12 18 10 8-2 13-10 11-17z"/>
17
+ <glyph glyph-name="stackoverflow" unicode="&#57351;" d="M348 41l-255 0 1 172-38 0-1-213 334 0 0 215-41 0z m-230 72l199 0 0-41-199 0z m5 76l201-19-4-44-201 19z m18 87l195-55-12-42-194 55z m48 98l172-104-22-38-173 105z m180-96l-118 164 36 25 117-164z m11 227l43 7 34-199-44-7z"/>
18
+ <glyph glyph-name="persona" unicode="&#57352;" d="M344 452l-325 0c-11 0-19-8-19-18l0-356c0-10 8-18 19-18l325 0 168 196z m-137-314c-79 0-105 3-105 3 0 0 4 63 33 74 28 11 35 10 45 16 0 0 1 0 1 0l0 17c-10 8-17 21-22 35-5 6-8 12-8 19 0 5 2 10 4 14 2 35 24 58 52 58 27 0 50-23 51-58 3-4 4-9 4-14 0-7-3-13-8-19-4-14-12-27-21-35l0-17c0 0 0 0 0 0 10-6 17-5 46-16 29-11 33-74 33-74 0 0-27-3-105-3z"/>
19
+ <glyph glyph-name="triplej" unicode="&#57353;" d="M183 469c13-30 26-60 40-90 1-3 4-15 9-13 10 4 8 3 5 13-5 15-11 29-15 43-8 22-18 44-25 66-2 6-9 29-19 23-16-9 0-30 5-42 2-4-2 5 0 0z m175-152c-11 0-16-17-7-23 3-2 6-3 7-3 5 0 13 8 13 14 0 3 5 10 18 24 10 10 30 31 45 46 14 15 35 37 46 49 26 27 26 27 23 33-1 3-5 6-8 6-1 1-1 1-2 1-4-1-9-6-27-27-5-6-13-15-17-20-4-4-13-14-19-22-7-7-17-19-22-25-18-20-28-32-37-43-6-7-10-10-13-10z m-2-98c28 12 62 36 73 52 3 3 6 7 7 9 9 10 15 34 11 48-2 9-12 25-16 25-3 0-28-28-29-32-2-8 2-10 17-10 15 0 14-2-3-8-22-8-25-15-17-32 2-5 4-9 3-9 0-1-5 0-10 2-12 3-17 4-24 1-6-3-15-20-15-27 0-3-1-5-2-6-3-1-6 7-6 14 0 2-3 8-7 12-7 8-7 8-20 8-7 0-16-1-21-2l-8-1 12 12c10 10 12 12 12 20 0 10-5 17-16 26l-6 6 8-2c28-5 41 3 45 29 0 5 2 9 2 9 1 0 4-5 6-10 6-13 10-16 18-10 6 4 23 23 24 27 2 5-23 8-51 8-22 0-46-2-60-5-30-8-37-10-36-14 1-2 3-7 5-11 4-13 7-19 9-19 3 0 11-11 11-14 0-2-2-6-5-9-6-6-14-7-21-1-3 4-4 6-3 12 1 8-1 13-11 35l-2 4-15-7c-44-22-72-49-81-80-2-4-2-9-2-9 1 0 17-1 36-2 31-1 37-1 40 1 6 5 10 6 17 3 7-3 8-7 7-15-1-9-16-14-23-7-3 3-7 3-38 2-18 0-34-1-35-2-1-2 6-13 14-20 15-13 38-22 69-25 38-4 94 6 137 24z m119-41c-1 11-3 29-5 39-1 10-3 26-4 34-1 11-2 16-3 16-1 0-2-2-3-7-1-10-13-70-15-73 0-1-2-9-3-17-2-7-4-18-5-24-1-5-4-19-6-30-5-24-8-34-10-34-1 0-24 21-51 47l-48 48-4-7c-2-5-4-12-5-17 0-5-2-10-3-12-1-1-4-13-8-26-3-12-7-27-9-32-1-6-4-16-6-24-4-16-7-17-17-6-9 10-34 39-37 42-1 1-7 7-13 14-6 7-13 15-15 17-2 3-10 11-17 19-7 8-14 16-15 17-1 1-7 7-12 13-10 11-11 10-5-5 2-5 6-13 7-17 2-4 4-9 6-13 3-5 6-13 14-32 2-4 5-10 6-13 2-6 8-18 13-30 10-24 13-29 22-38 12-11 30-20 49-24 30-6 71-3 104 8 33 10 54 23 75 44 17 17 17 17 23 29 7 13 8 25 5 51-1 13-4 32-5 43z m-360 80c-4 1-20 1-38 1-29 0-66-1-67-2-3-4-3-13 0-16 2-2 13-2 57-1 31 1 56 2 56 2 1 0 1 4 0 8-1 5-2 7-8 8z"/>
20
+ <glyph glyph-name="houzz" unicode="&#57354;" d="M256 1l143 87 0 168-143-86z m0 340l0 172-148-87 0-174 147 86 144-82 0 170z m-2-172l-146 83 0-169z"/>
21
+ <glyph glyph-name="rss" unicode="&#57355;" d="M137 69c0-38-30-68-68-68-38 0-68 30-68 68 0 37 30 68 68 68 38 0 68-31 68-68z m-136 171c64 0 124-25 169-70 45-45 70-106 70-170l98 0c0 186-151 338-337 338z m0 174c227 0 412-186 412-414l98 0c0 282-229 512-510 512z"/>
22
+ <glyph glyph-name="paypal" unicode="&#57356;" d="M318 512l-185 0c-12 0-23-9-25-22l-74-472c-2-10 5-18 15-18l88 0c12 0 23 9 25 22l20 127c2 13 13 22 25 22l59 0c121 0 191 58 210 175 8 51 0 91-24 119-26 31-73 47-134 47z m21-173c-10-66-61-66-110-66l-27 0 19 124c1 7 8 13 15 13l13 0c33 0 65 0 81-19 10-12 13-28 9-52z"/>
23
+ <glyph glyph-name="odnoklassniki" unicode="&#57357;" d="M256 253c72 0 130 58 130 129 0 72-58 130-130 130-72 0-130-58-130-130 0-71 58-129 130-129z m0 193c35 0 64-28 64-64 0-35-29-63-64-63-35 0-64 28-64 63 0 36 29 64 64 64z m149-209c-7 15-27 27-54 6-37-29-95-29-95-29 0 0-58 0-95 29-27 21-47 9-54-6-13-26 1-38 34-59 28-18 66-24 90-27l-20-21c-29-28-57-56-77-76-11-11-11-30 0-42l4-3c12-12 30-12 42 0l76 76c29-29 57-57 77-76 11-12 30-12 42 0l3 3c12 12 12 31 0 42l-97 97c25 3 63 9 90 27 33 21 47 33 34 59z"/>
24
+ <glyph glyph-name="airbnb" unicode="&#57358;" d="M488 149c-3 6-5 12-8 18-4 9-8 18-12 26l0 1c-36 77-74 155-113 232l-2 3c-4 8-8 16-12 24-5 9-11 19-19 28-17 20-40 31-65 31-26 0-49-11-66-31-8-9-13-19-18-28-5-8-9-16-13-24l-2-3c-39-77-77-155-113-232l0-1c-4-8-8-17-12-26-2-6-5-12-7-18-7-19-9-37-7-56 6-38 31-70 67-85 13-5 28-8 42-8 5 0 9 0 14 1 17 2 34 8 51 17 21 12 41 29 64 53 22-24 43-41 63-53 17-9 35-15 52-17 4-1 9-1 13-1 15 0 29 3 42 8 36 15 61 47 67 85 2 19 0 37-6 56z m-231-27c-28 35-46 68-52 95-3 12-3 22-2 32 1 8 4 15 8 21 10 14 27 22 46 22 18 0 35-8 45-22 4-6 7-13 8-21 2-10 1-20-2-32-6-27-24-60-51-95z m204-24c-3-27-21-49-46-60-12-5-26-6-40-5-13 2-25 6-39 14-18 10-37 26-58 49 34 42 55 80 62 114 4 16 5 30 2 44-2 13-6 24-13 35-16 23-43 36-72 36-30 0-57-13-73-36-7-11-11-22-13-35-2-14-2-28 2-44 8-34 29-72 62-114-21-23-40-39-58-49-13-8-26-12-39-14-14-1-27 0-40 5-24 11-42 33-46 60-2 13-1 26 4 40 2 5 4 10 7 16 4 8 8 17 12 25l0 1c35 77 73 154 112 231l2 3c4 8 8 16 12 23 5 9 9 16 15 23 11 13 25 19 41 19 16 0 30-6 40-19 6-7 10-14 15-22 4-8 8-16 12-24l2-3c39-77 77-154 112-231l0 0c4-9 8-17 12-26 3-6 5-11 7-16 5-14 6-27 4-40z"/>
25
+ <glyph glyph-name="periscope" unicode="&#57359;" d="M402 448c-39 41-90 64-143 64-115 0-208-96-208-214 0-76 57-160 82-193 37-49 92-105 126-105 41 0 113 94 120 105 25 33 82 118 82 193 0 56-21 110-59 150z m-143-430c-43 0-190 167-190 280 0 107 84 196 190 196 100 0 184-89 184-196 0-113-147-280-184-280z m0 403c-10 0-20-1-30-3 16-7 27-23 27-41 0-25-20-44-45-44-25 0-45 19-45 44 0 0 0 0 0 0-15-19-24-44-24-72 0-59 51-109 117-109 60 0 111 50 111 109 0 66-51 116-111 116z"/>
26
+ <glyph glyph-name="outlook" unicode="&#57360;" d="M320 403l0-100 35-22c1 0 3 0 4 0l150 102c0 12-11 20-17 20z m0-137l32-22c4-3 10 0 10 0-6-3 147 98 147 98l0-184c0-20-13-28-27-28l-162 0 0 136z m-166 46c-11 0-19-5-26-15-6-10-9-24-9-41 0-17 3-30 9-40 7-10 15-15 26-15 10 0 19 5 25 14 6 10 9 23 9 41 0 17-3 31-9 41-6 10-14 15-25 15z m-151 142l0-392 298-62 0 512z m199-262c-12-16-29-25-49-25-20 0-36 8-48 24-13 16-19 37-19 63 0 27 6 49 19 66 13 17 29 26 50 26 20 0 36-8 48-25 12-16 18-37 18-63 0-27-6-49-19-66z"/>
27
+ <glyph glyph-name="coderwall" unicode="&#57361;" d="M447 360c36 0 64 29 64 64 0 35-28 64-64 64-35 0-63-29-63-64 0-35 28-64 63-64z m0-40c-35 0-63-29-63-64 0-35 28-64 63-64 36 0 64 29 64 64 0 35-28 64-64 64z m0-168c-35 0-63-29-63-64 0-35 28-64 63-64 36 0 64 29 64 64 0 35-28 64-64 64z m-193 336c-35 0-64-29-64-64 0-35 29-64 64-64 35 0 64 29 64 64 0 35-29 64-64 64z m0-168c-35 0-64-29-64-64 0-35 29-64 64-64 35 0 64 29 64 64 0 35-29 64-64 64z m-191 168c-35 0-64-29-64-64 0-35 29-64 64-64 35 0 64 29 64 64 0 35-29 64-64 64z"/>
28
+ <glyph glyph-name="tripadvisor" unicode="&#57362;" d="M150 234c0-11-9-21-21-21-11 0-21 10-21 21 0 12 10 21 21 21 12 0 21-9 21-21z m254 0c0-11-10-21-21-21-12 0-21 10-21 21 0 12 9 21 21 21 11 0 21-9 21-21z m-275 62c-16 0-32-6-44-18-11-12-18-27-18-44 0-16 7-32 18-44 12-11 28-18 44-18 35 0 62 28 62 62 0 34-27 62-62 62z m0-105c-11 0-22 5-30 13-8 8-13 19-13 30 0 12 5 23 13 31 8 8 19 12 30 12 24 0 43-19 43-43 0-24-19-43-43-43z m254 105c-17 0-32-6-44-18-12-12-18-27-18-44 0-16 6-32 18-44 12-11 27-18 44-18 34 0 62 28 62 62 0 34-28 62-62 62z m0-105c-12 0-23 5-31 13-8 8-12 19-12 30 0 12 4 23 12 31 8 8 19 12 31 12 23 0 43-19 43-43 0-24-20-43-43-43z m100 125c5 15 12 32 22 42l-84 0c-2 0-3 1-5 1-4 7-36 48-162 48-139 0-163-49-163-49l-89 0c11-10 19-31 24-46-16-22-26-49-26-78 0-71 58-129 129-129 40 0 75 18 99 46l29-41 26 42c23-29 59-47 100-47 71 0 129 58 129 129 0 31-11 60-29 82z m-354-186c-57 0-104 47-104 104 0 58 47 104 104 104 58 0 104-46 104-104 0-57-46-104-104-104z m2 226c0 0 33 38 122 38l9 0c88 0 122-38 122-38 0 0-95 16-127-101-31 117-126 101-126 101z m252-226c-58 0-104 47-104 104 0 58 46 104 104 104 57 0 104-46 104-104 0-57-47-104-104-104z"/>
29
+ <glyph glyph-name="appnet" unicode="&#57363;" d="M256 449l-256-386 52 0 58 89 292 0 58-89 52 0z m-112-252l112 169 112-169z"/>
30
+ <glyph glyph-name="goodreads" unicode="&#57364;" d="M369 502l0-51c-26 38-69 60-117 60-96 0-160-73-160-183 0-48 13-91 37-123 27-37 67-57 117-57 50 0 97 22 123 58l0-53c0-78-36-114-116-114-67 0-101 28-104 82l0 12-36 0 1-11c2-77 53-122 141-122 100 0 155 54 155 153l0 349-41 0z m9-174c0-71-39-142-126-142-72 0-119 56-119 142 0 67 32 145 124 145 32 0 59-11 80-32 27-27 42-68 41-113z"/>
31
+ <glyph glyph-name="tripit" unicode="&#57365;" d="M242 219l-181 2c-3 0-5 0-7-2-2-2-3-4-5-6-3-4-8-7-13-9-11-2-22 0-30 7-7 7-8 18-3 27 8 15 31 20 45 9 4-4 7-8 8-14 0-2 1-2 3-2l184 2c3 0 2 0 2-2 0-3 0-6 0-10 0-2-1-2-3-2z m89 0c5 14-1 29-12 37-19 12-46 6-58-12-7-11-8-24-1-35 7-10 19-14 31-15-1 0-1 0 2 0 5 0 4 0 2 0 16 1 31 11 36 25z m161 31c-12 1-23-6-26-17-1-2-1-2-3-2l-119 1c-1 0-1-3-1-4 0-2 0-4-1-6 0-2 0-2 2-2l120 2c2-1 3-6 4-8 2-2 4-5 6-7 5-4 12-5 18-4 11 1 20 11 20 23 0 12-8 22-20 24z m-203 55c2 0 2-1 2-3l-2-28c-1-2 1-3 3-3 3 1 6 1 9 0 2 0 2 1 2 3 0 9-1 19-1 29 0 3 4 3 7 4 2 2 5 4 7 6 4 4 6 10 6 17 1 11-6 21-17 25-10 4-22 0-29-9-11-14-5-35 13-41z m126 20c0-1 1-1 1-1 0 0-1 0-1 1z m-82-68c1-2 3-4 4-5 1-2 3-1 4 0l61 39c1 0 2-1 4-2 6-3 14-3 20 2 14 11 6 33-11 34-12 0-21-11-19-23 1-2 0-3-1-3-22-12-43-25-64-38-2-2 1-3 2-4z m-139-81c0 7 0-3 0 0z m62 22c-2 2-3 4-4 5-1 2-2 2-3 1-7-5-14-9-22-14-1-1-2-1-3 0-6 5-13 6-20 2-6-3-10-9-10-16-1-13 12-22 23-19 10 3 16 12 14 21 0 2 0 2 2 3 8 4 16 9 24 14 2 1 0 2-1 3z m-57 85c1 0 2 1 3 1 2 0 3-1 4-2l43-34c2-1 2-1 3 1 2 2 4 5 6 7 2 2-2 3-4 4l-41 30c-3 2-6 3-5 7 0 0 0 1 0 1-1 14-21 19-28 6-3-6-2-14 3-18 4-4 10-6 16-3z m146-87c-4-1-6 0-9 3-1 0-1 1-2 1-1 2-2 2-4 0-1-1-3-3-5-4-1-1-1-1 1-2 2-2 5-3 8-5 2-1 1-3 1-5 0-2 0-4 1-6 2-3 5-6 10-6 7-1 12 5 12 12 0 0 0 0 0 0l0 0c0 7-6 13-13 12z"/>
32
+ <glyph glyph-name="lanyrd" unicode="&#57366;" d="M273 140c4-2 8 1 12 2 44 13 91 29 139 44 19 6 37 13 46 7 7-4 10-14 13-22 1-4 1-9 2-14 1-3 3-6 3-10 0-1-1-3-1-3 2-10 5-14 6-24 0-1-1-5-1-9 0-4-2-11-5-15 0 0-3 0-3-1 0 0 1-1 1-2-1 0-4 0-4-1-4-9-51-20-66-24l-159-51c-33-10-61-21-75-16-21 8-35 70-47 108-20 62-33 112-53 168-1 2-1 6-3 8-1 2-2 2-3 5-6 16-8 37-17 54-1 1-3 2-3 4-4 9-6 20-10 31-7 20-14 34-20 59-4 11-7 22-6 28 1 2 6 9 10 12 3 3 9 4 16 7 19 9 86 34 104 25 16-9 25-51 36-85 10-33 18-65 27-94z"/>
33
+ <glyph glyph-name="slideshare" unicode="&#57367;" d="M189 356c-33 0-60-25-60-56 0-31 27-56 60-56 33 0 60 25 60 56 0 31-27 56-60 56z m142 1c-33 0-60-25-60-56 0-32 27-57 60-57 34 0 61 25 61 57 0 31-27 56-61 56z m158-89c-2-1-3-3-8-4l0 198c0 28-18 50-43 50l-359 0c-25 0-48-22-48-50l0-198c0 1-3 3-5 4-16 11-25-4-16-18 19-22 53-50 107-72-57-191 137-222 134-123 0-2 0 55 0 96 6-1 10-2 14-3 0-41 0-95 0-93-3-99 191-68 135 123 53 22 87 50 105 72 10 14-1 29-16 18z m-33-19c-67-37-127-31-159-30-24 2-32-9-33-24-5 4-11 9-17 14-1 1-1 2-2 3-6 5-13 8-27 7-31-1-95-7-157 29l0 192c0 35 8 46 40 46l318 0c30 0 37-14 37-46z"/>
34
+ <glyph glyph-name="buffer" unicode="&#57368;" d="M503 123c-1 1-3 2-4 3-13 6-27 12-40 18-11 6-23 6-35 0-50-23-100-47-150-70-12-5-24-6-35 0-50 23-101 47-151 70-12 6-24 6-36 0-12-6-25-12-37-17-4-2-10-4-10-10 0-5 6-6 10-8 74-35 148-70 223-104 12-6 24-6 35-1 75 35 150 70 225 105 2 1 4 2 5 3 5 3 5 8 0 11z m-495 266c2-1 5-3 7-4 75-34 149-69 223-104 12-5 24-5 36 0 74 35 149 70 223 104 2 2 5 3 7 5 4 2 4 6 0 9-2 2-5 3-7 5-74 34-148 69-222 103-13 6-25 6-38 0-74-34-148-69-222-104-3-1-5-2-7-3-4-3-4-8 0-11z m495-128c-1 1-3 2-4 3-13 6-27 12-40 18-11 6-23 6-35 0-50-23-100-47-150-70-12-5-24-5-35 0-50 23-101 47-151 70-12 6-24 6-36 0-12-6-25-12-37-17-4-2-10-4-10-9 0-6 6-7 10-9 74-35 148-70 223-104 12-6 24-6 35-1 75 35 150 70 225 105 2 1 4 2 5 3 5 3 5 8 0 11z"/>
35
+ <glyph glyph-name="disqus" unicode="&#57369;" d="M263 317l-27 0 0-122 27 0c41 0 70 20 70 61l0 0c0 40-29 61-70 61z m2 188c-136 0-246-112-246-249 0-37 8-72 22-103l-41-101 106 14c43-36 98-59 159-59 137 0 247 112 247 249 0 137-110 249-247 249z m134-248c0-72-50-124-138-124l-92 0 0 246 93 0c87 0 137-50 137-122z"/>
36
+ <glyph glyph-name="vkontakte" unicode="&#57370;" d="M495 159c-15 20-28 32-47 50-8 8-19 16-20 27-1 15 13 29 20 39 1 1 2 2 3 3 1 1 1 1 2 2 0 1 1 1 1 2 1 1 1 2 2 2 0 1 1 1 1 1 1 1 1 2 2 3 13 17 26 32 39 52 4 7 17 32 13 42-6 12-37 8-54 8-21 0-44 4-59-2-9-3-15-23-20-34-8-17-15-31-23-44 0-1-1-2-2-3 0 0 0 0 0 0 0-1-1-2-2-3 0 0 0 0 0 0-1-2-2-4-3-5 0-1-1-1-1-1 0-1-1-1-1-2-1-1-1-1-1-2-1 0-1-1-2-2 0 0-1-1-1-2-1 0-1-1-1-1-1-1-2-2-3-4-7-10-14-22-27-24-1 1-1 1-2 1 0 0 0 1 0 1-1 0-1 0-1 0 0 1-1 1-1 1 0 0 0 0-1 1 0 0 0 0 0 0 0 0 0 1-1 1 0 0 0 0 0 0 0 1-1 1-1 1 0 0 0 1 0 1 0 0-1 0-1 1 0 0 0 0 0 0 0 1 0 1-1 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0-1 0-1 0 0 1 0 1 0 2 0 0 0 0 0 0-1 1-1 1-1 1 0 1 0 1 0 1 0 0 0 1 0 1 0 0 0 1-1 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1-1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 2 0 0 0 0 0 0 0 1 0 1 0 2 0 0 0 0 0 0 0 1 0 1 0 2 0 0-1 0-1 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 2 0 0 0 0 0 0 0 1 0 1 0 2 0 0 0 0 0 0 0 3 0 5 0 8 0 0 0 1 0 1 0 2 0 5 1 7 0 22 7 51-3 68-9 15-43 13-67 13-29 0-52-2-61-19 10-7 21-7 26-17 6-11 7-34 6-55 0-1 0-2 0-3 0-18-1-47-13-49-12-2-22 16-29 25-1 2-2 3-3 5 0 0-1 1-1 1-1 1-1 2-2 4 0 0-1 1-1 1-1 1-2 2-2 3-1 1-1 1-1 2-1 1-2 3-3 4-9 15-18 30-26 49-6 11-13 30-19 33-12 6-36 3-52 3-18 0-37 3-48-6 0-20 10-37 18-53 11-22 22-43 34-63 0-1 1-2 1-3 2-2 3-5 5-7 0-1 1-2 1-3 2-2 3-5 5-7 0-1 1-2 2-3 2-3 4-6 6-9 0 0 0 0 0 0 2-3 4-7 6-10 1-1 1-2 2-2 2-3 3-5 5-7 0-1 1-2 2-3 1-2 3-5 5-7 0-1 1-2 2-3 2-3 4-6 7-9 31-39 66-76 135-84 22-2 54-4 61 9 10 16-1 54 21 57 15 3 28-20 37-29 15-17 33-35 59-40 0 0 1 0 2 0 23 10 92-11 96 18 1 10-11 26-17 33z"/>
37
+ <glyph glyph-name="whatsapp" unicode="&#57371;" d="M437 438c-48 48-112 74-180 74-140 0-254-114-254-254 0-44 12-88 34-127l-36-131 135 35c37-20 78-31 121-31l0 0c0 0 0 0 0 0 140 0 254 114 254 254 0 68-26 132-74 180z m-180-391l0 0c-38 0-75 10-107 30l-8 4-80-21 21 78-5 8c-21 34-32 72-32 112 0 117 95 211 211 211 56 0 109-22 149-62 40-40 62-93 62-149 0-116-95-211-211-211z m116 158c-7 3-38 19-44 21-5 2-10 3-14-3-4-7-16-21-20-25-4-4-7-5-14-2-6 3-26 10-51 32-18 16-31 37-35 44-4 6 0 9 3 13 3 2 6 7 9 11 4 3 5 6 7 10 2 4 1 8-1 11-1 3-14 35-19 47-6 13-11 11-15 11-3 0-8 0-12 0-4 0-11-1-17-7-6-7-22-22-22-53 0-32 23-62 26-66 3-4 45-68 108-96 15-6 27-10 36-13 16-5 29-4 40-3 13 2 38 16 43 31 6 14 6 27 4 30-2 2-6 4-12 7z"/>
38
+ <glyph glyph-name="patreon" unicode="&#57372;" d="M192 158c-1-2-1-3-1-5 0-26 0-51 0-77 0-4 1-5 5-6 72-22 137-8 193 42 35 31 55 71 62 117 13 97-46 188-140 215-109 31-220-34-245-143-4-14-5-29-5-43-1-84-1-168-1-251 0-7 0-7-6-7-16 0-33 0-49 0-4 0-5 1-5 5 0 86-1 173 0 259 1 46 14 88 39 127 40 63 97 102 170 117 22 4 45 5 67 3 57-4 108-26 151-64 36-32 61-72 75-118 5-17 8-34 9-51 3-36 0-70-12-104-27-76-78-128-153-158-29-11-60-16-91-16-37 0-73 0-109 0-7 0-7 0-7 7 0 84 0 168 0 252 1 54 42 103 96 112 64 11 122-28 136-91 14-64-30-129-94-139-29-5-56 0-81 15-1 1-3 1-4 2z"/>
39
+ <glyph glyph-name="storehouse" unicode="&#57373;" d="M256 341l-144-83 0 167 144-84 148 86-148 85-148-85 0-171 148-85 144 83 0-167-144 84-148-86 148-85 148 85 0 171z"/>
40
+ <glyph glyph-name="pocket" unicode="&#57374;" d="M512 424c0 14 1 27-7 39-6 9-16 17-26 20-14 4-29 3-42 2-60 0-121 1-181 1-7 0-13 0-20 0-8 0-16 0-25 0-29 0-59 0-89 0-15 0-30 0-45 0-8 0-16 0-24 0-7 0-13 0-19-2-21-6-34-26-34-48 0-30 0-60 0-90 0-29-1-59 1-89 2-27 10-55 21-80 21-45 55-83 97-110 46-29 101-43 155-39 53 4 104 25 145 59 39 31 67 73 82 120 8 27 11 56 11 84 0 29 0 59 0 89 0 15 0 30 0 44z m-102-116c-3-13-16-22-25-31-23-22-46-44-69-65-12-12-23-23-35-34-9-8-21-12-33-9-14 3-24 16-33 25-12 11-23 22-34 32-23 22-46 44-69 67-17 17-14 48 10 58 11 4 24 3 33-3 6-5 12-10 17-16 6-5 12-11 17-16 23-22 44-44 67-64 26 24 52 49 78 74 11 10 21 24 37 27 12 2 25-3 33-12 7-9 10-22 6-33z"/>
41
+ <glyph glyph-name="mail" unicode="&#57375;" d="M273 197c-5-4-11-7-17-7-6 0-12 3-17 7l-239 195 0-307 512 0 0 307z m-17 59c5 0 10 2 14 5l203 166-434 0 203-166c4-3 9-5 14-5z"/>
42
+ <glyph glyph-name="blogger" unicode="&#57376;" d="M476 317l-22 0c-22 0-34 15-34 31l0 14c0 73-81 150-150 150l-108 0c-91 0-162-72-162-163l0-194c0-85 73-155 149-155l205 0c84 0 158 71 158 157l0 123c0 23-8 37-36 37z m-314 62l93 0c16 0 30-14 30-31 0-16-14-31-30-31l-93 0c-16 0-30 15-30 31 0 16 14 31 30 31z m185-246l-185 0c-16 0-30 12-30 28 0 17 14 28 30 28l185 0c16 0 30-11 30-28 0-16-14-28-30-28z"/>
43
+ <glyph glyph-name="technorati" unicode="&#57377;" d="M512 512l0-354c-87-53-191-64-287-46-48-25-91-60-138-87 3 37 8 73 12 110 1 15 6 34-10 43-59 47-99 124-90 201 5 50 31 92 62 133z m-89-65c-39 29-90 42-138 40-55-1-110-21-147-61-21-22-37-52-37-83-2-43 22-84 55-109 70-53 173-58 249-15 43 24 77 67 78 117 1 45-24 86-60 111z"/>
44
+ <glyph glyph-name="reddit" unicode="&#57378;" d="M512 260c0 28-22 50-50 50-16 0-30-7-39-19-40 29-96 47-159 48l37 110 92-22c2 0 3 0 4 0 1-21 18-38 40-38 22 0 39 18 39 40 0 22-17 39-39 39-17 0-30-9-37-23 0 0-1 1-2 1l-101 24c-5 1-10-2-11-6l-43-125c-61-2-115-19-155-47-9 11-22 18-38 18-28 0-50-22-50-50 0-20 12-38 30-46-2-7-3-15-3-23 0-82 102-149 228-149 126 0 228 67 228 149 0 7-1 15-3 22 19 8 32 26 32 47z m-373-40c0 20 17 37 37 37 20 0 37-17 37-37 0-20-17-37-37-37-20 0-37 17-37 37z m200-102c-17-17-44-25-83-25-39 0-66 8-83 25-2 2-2 6 0 9 2 2 6 2 8 0 15-15 39-22 75-22 35 0 60 7 75 22 2 2 6 2 8 0 2-3 2-7 0-9z m-2 65c-21 0-38 16-38 37 0 20 17 37 38 37 20 0 36-17 36-37 0-21-16-37-36-37z"/>
45
+ <glyph glyph-name="dribbble" unicode="&#57379;" d="M255 510c-141 0-256-115-256-256 0-141 115-256 256-256 142 0 256 115 256 256 0 141-114 256-256 256z m170-118c30-37 49-84 49-136-7 2-79 16-152 7-2 4-3 8-5 11-4 11-9 22-14 32 80 33 117 80 122 86z m-170 81c56 0 107-21 145-55-3-6-36-50-114-79-36 65-76 119-82 128 17 4 34 6 51 6z m-92-21c5-8 44-62 81-127-103-27-193-26-203-26 15 68 60 124 122 153z m-126-198c0 2 0 4 0 7 9-1 115-2 225 31 6-12 12-25 17-37-3-1-5-2-8-3-113-36-173-136-178-144-35 39-56 90-56 146z m218-219c-50 0-97 18-134 46 4 9 48 94 172 137 0 0 1 0 1 1 31-80 44-147 47-166-26-11-55-18-86-18z m123 38c-3 13-14 77-43 156 69 11 129-7 136-10-9-61-44-113-93-146z"/>
46
+ <glyph glyph-name="stumbleupon" unicode="&#57380;" d="M256 364c-15 0-27-12-27-27l0-164c-1-62-52-113-115-113-63 0-114 52-114 115 0 1 0 71 0 71l88 0 0-70c0-15 12-27 27-27 15 0 27 12 27 27l0 165c2 61 52 110 114 110 62 0 112-49 114-110l0-37-52-15-35 16 0 32c0 15-12 27-27 27z m256-189c0-63-51-115-114-115-63 0-114 51-115 114l0 71 35-16 52 16 0-72c0-15 12-27 27-27 15 0 27 12 27 27l0 73 88 0c0 0 0-70 0-71z"/>
47
+ <glyph glyph-name="digg" unicode="&#57381;" d="M154 338l51 0 0-174-51 0z m-72 72l51 0 0-246-133 0 0 174 82 0z m0-113l-31 0 0-92 31 0z m72 61l51 0 0 52-51 0z m71-20l133 0 0-236-133 0 0 41 82 0 0 21-82 0z m51-133l31 0 0 92-31 0z m236 133l0-236-133 0 0 41 82 0 0 21-82 0 0 174z m-51-41l-31 0 0-92 31 0z"/>
48
+ <glyph glyph-name="envato" unicode="&#57382;" d="M414 508c-15 8-58 3-110-13-90-62-166-153-172-299-1-3-10 1-11 2-25 47-34 96-14 167 4 6-9 14-11 12-4-5-23-25-35-46-62-107-22-243 86-303 107-60 243-21 303 86 69 124 5 371-36 394z"/>
49
+ <glyph glyph-name="behance" unicode="&#57383;" d="M461 364l-128 0 0 30 128 0z m-212-121c10-14 15-30 15-50 0-16-3-30-9-41-7-12-15-21-25-29-11-7-23-12-36-16-13-3-27-5-41-5l-153 0 0 318 148 0c15 0 29-3 42-6 12-3 22-8 31-14 9-6 16-15 21-25 5-9 7-22 7-37 0-15-3-29-11-39-7-11-18-20-32-26 20-6 34-16 43-30z m-182 49l72 0c13 0 23 1 31 7 8 6 12 14 12 28 0 7-1 13-4 18-3 4-6 8-11 11-4 2-9 5-15 6-6 1-12 2-18 2l-67 0z m128-95c0 16-5 27-14 34-9 7-21 10-36 10l-78 0 0-87 76 0c7 0 14 1 20 2 6 2 11 4 16 7 5 3 9 7 11 13 3 5 5 12 5 21z m317 3l-165 0c0-16 6-35 16-44 9-9 23-14 40-14 13 0 24 4 33 11 9 6 14 11 17 21l55 0c-9-31-23-48-41-60-18-12-40-19-66-19-18 0-34 3-49 9-14 6-26 14-36 24-10 11-18 24-24 39-5 14-8 30-8 48 0 17 3 33 9 48 5 15 13 27 23 38 11 11 23 19 37 26 15 6 31 9 48 9 19 0 36-4 51-11 14-8 26-18 35-30 10-13 16-28 20-44 4-16 6-36 5-51z m-63 41c-2 15-7 27-14 35-8 9-21 13-36 13-10 0-18-2-25-6-6-3-12-7-16-12-4-5-6-10-8-16-2-5-3-9-3-14z"/>
50
+ <glyph glyph-name="delicious" unicode="&#57384;" d="M512 256l-256 0 0-256-256 0 0 256 256 0 0 256 256 0z"/>
51
+ <glyph glyph-name="deviantart" unicode="&#57385;" d="M483 238c-24 29-54 47-88 61-44 18-90 25-137 26-3 0-7 0-12 0 0 16 0 31 0 48-21-2-41-5-67-7 0-3 0-4 0-6 0-12 0-25 0-37 1-4-1-6-5-7-34-7-66-18-96-36-23-14-43-31-58-54-18-27-25-57-17-88 82 0 161 0 243 0 0 51 0 98 0 147 10 0 21 0 31 0 26-2 52-6 76-16 32-15 54-38 63-72 1-2 1-8 2-8-29 0-54 0-85 0 0 0 0 5 0 7 0 19 0 39 0 59 0 4-1 6-5 6-13 3-24 5-37 7-8 1-20 1-25 2 0-45 0-91 0-132 82 0 161 0 243 0 1 10 3 15 3 22 1 30-10 55-29 78z m-304-49c-31 0-56 0-84 0 2 36 43 81 84 86 0-28 0-55 0-86z"/>
52
+ <glyph glyph-name="forrst" unicode="&#57386;" d="M230 0l-188 0 214 512 214-512-188 0 0 85 86 43-6 13-80-40 0 39 49 27-7 13-42-22 0 57-52 0 0-88-43 30-8-12 51-36z"/>
53
+ <glyph glyph-name="play" unicode="&#57387;" d="M295 267l66 66-100 58c0 0-196 113-207 119-1 1-2 2-4 2z m178 1c-9 5-86 50-101 59l-68-68 69-70c19 11 89 51 99 57 12 7 11 17 1 22z m-438 243c-2-3-4-7-4-12 0-23 0-242 0-242 0 0 0-236 0-246 0-3 1-5 2-7l254 255z m260-261l-250-250c1 0 3 1 4 2 10 6 212 122 212 122l102 59z"/>
54
+ <glyph glyph-name="zerply" unicode="&#57388;" d="M275 412c-8-1-16-3-23-4-23-3-46-5-69-2-10 1-20 3-29 8-13 6-17 13-16 28 1 11 3 23 9 33 6 11 13 21 20 31 5 7 10 8 17 4 11-7 24-11 37-13 26-5 52-6 78-6 35 0 70 5 104 12 2 0 3 0 4 0 6 0 9-2 8-8-2-13-3-27-5-40 0-3-2-7-4-9-74-85-148-170-221-255-6-7-7-10-6-19 5-1 9-1 14-1 22-3 42-12 61-23 16-10 31-19 47-28 16-9 31-17 48-20 21-5 41-6 61-1 9 3 18 7 25 12 1 1 2 1 4 3 1-9 2-17 2-25-1-21-5-40-16-58-11-17-25-28-45-31-14-1-26 2-39 5-28 9-53 23-77 40-12 8-24 18-36 27-24 17-50 29-79 32-13 2-27 3-41 3-9 1-18 0-27 0-6 0-10 3-10 9 0 17 0 33 1 49 0 5 2 10 5 13 65 77 130 154 195 231 1 1 2 2 3 3z"/>
55
+ <glyph glyph-name="wikipedia" unicode="&#57389;" d="M48 362c-12 19-31 38-46 44l-2 1 0 18 1 1 131 0c0-4 0-11 0-18-18-2-38-11-33-30 33-72 63-146 95-219l56 104c-22 44-37 89-61 132-7 12-28 13-43 13l0 17 123 0 0-17c-11-1-24-4-22-17l35-77c11 24 24 48 34 73 5 20-18 21-32 22l0 16 110 0 0-16c-17-1-32-6-41-18-21-33-37-71-54-107 17-39 34-78 51-114l94 216c-7 14-21 19-35 22l-1 17 104 0 0-17c-5-1-9-2-13-4-8-4-16-12-21-21l-129-297-22 0-61 145-75-145-22 0c-44 91-75 186-121 276z"/>
56
+ <glyph glyph-name="apple" unicode="&#57390;" d="M463 340c-36-12-60-62-60-99 0-48 27-98 71-110-12-42-46-95-77-117-13-9-28-13-47-13-12 0-26 2-45 10-15 7-29 10-38 10-8 0-25-5-48-14-13-4-24-7-31-7-21 0-39 9-58 24-59 54-92 133-92 216 0 81 51 159 130 159 24 0 41-5 57-13 15-9 28-12 42-12 11 0 24 2 36 7 31 12 51 18 63 18 30 0 54-9 74-27 8-8 16-19 23-32z m-210 56c0 28 12 53 31 77 19 21 45 34 73 39 0-29-10-58-29-81-22-24-46-35-75-35z"/>
57
+ <glyph glyph-name="flattr" unicode="&#57391;" d="M512 200c0-33-4-66-16-98-21-54-60-85-116-97-17-4-34-5-51-5-96 0-192 0-288 0-1 0-3 0-4 0 0 0 0 1 0 1 18 18 36 36 54 54 50 50 100 100 149 149 1 1 1 2 2 2 3 3 5 5 9 3 4-2 5-5 5-9 0-25 0-51 0-76 0-2 0-4 0-5 0-1 2-1 2-1 22 0 44 0 65 1 8 1 17 3 24 6 24 8 37 26 41 50 3 13 4 26 4 40 1 45 1 91 1 137 0 3 0 5 3 7 37 38 74 75 112 112 1 1 1 3 2 4 1 0 2 0 2-1 0-1 0-3 0-4 0-90 0-180 0-270z m-393-40c0 45 0 90 1 134 0 14 1 28 3 42 5 26 19 44 45 52 5 2 11 4 16 4 24 1 47 1 71 2 0 0 1-1 1-1 0-1 0-3 0-4 0-25 0-50 0-75 0-2-1-3 0-4 1-3 3-5 5-7 2-2 5 0 8 2 1 1 2 2 3 3 67 67 133 133 200 200 1 1 2 4 4 4-3 0-4 0-5 0-96 0-192 0-288 0-17 0-34-1-50-5-58-12-98-45-118-101-11-31-15-63-15-95 0-90 0-180 0-269 0-2 0-3 0-5 2 1 3 2 4 3 37 38 75 75 112 113 2 2 3 4 3 7z"/>
58
+ <glyph glyph-name="github" unicode="&#57392;" d="M484 334c0 36-12 66-34 89 4 8 15 42-3 88 0 0-28 9-91-34-27 7-55 11-84 11-28 0-56-4-83-11-64 43-91 34-91 34-19-46-7-80-4-88-21-23-34-53-34-89 0-128 78-156 152-165-10-8-19-23-22-44-19-9-67-23-96 28 0 0-18 31-51 34 0 0-33 0-3-20 0 0 22-11 37-49 0 0 20-59 112-39 1-28 1-71 1-79l165 0c0 11 0 64 0 108 0 31-10 51-22 62 74 8 151 36 151 164z m-418-163c-1-1-4-2-6-1-2 1-4 4-3 5 1 2 3 3 6 1 2-1 3-3 3-5z m13-15c-1-1-5 0-7 2-2 2-2 5-1 7 2 1 5 1 7-2 2-2 3-5 1-7z m13-19c-2-1-5 0-7 3-2 3-2 7 0 8 2 1 5 0 7-3 2-3 2-6 0-8z m18-18c-2-2-6-2-8 1-3 3-4 6-2 8 2 3 6 2 8-1 3-2 4-6 2-8z m25-11c-1-3-5-4-8-3-4 1-7 4-6 7 1 3 5 4 9 3 3-1 6-4 5-7z m20-7c-4 0-7 2-7 5 0 3 3 5 7 5 4 0 7-2 7-5 0-3-3-5-7-5z m26 3c-4-1-7 1-8 4 0 2 3 5 7 6 4 1 7-1 8-4 0-2-3-5-7-6z"/>
59
+ <glyph glyph-name="renren" unicode="&#57393;" d="M256 159c0 0 0 0 0 0 0 0 0 0 0 0z m-137 102c1 7 3 14 4 21 2 7 1 15 1 22l0 39c0 20 0 39 0 58-4 0-9-1-12-2-12-4-22-7-31-12-37-18-65-50-77-94-11-41 0-85 17-112 4-6 9-15 14-19 5 0 9 4 12 7 7 4 14 9 20 14 3 2 5 5 8 7 20 17 34 43 44 71z m137-102c0 0 0 0 0 0 0 0 0 0 0 0z m-97 29c-3 6-5 12-8 18-1 3-2 6-3 9l0 0c-3-6-6-11-9-16-5-10-11-19-17-27-9-11-18-22-28-30-5-5-11-9-16-14 0 0 0-1 0-1 3-1 6-3 9-4 7-3 14-6 21-8 26-7 58-5 82 2 6 2 20 6 24 10l0 0c-6 3-11 8-16 12-15 14-28 30-39 49z m348 105c-11 45-39 76-76 95-9 4-19 8-31 11-3 1-8 2-12 2 0-19 0-38-1-58l0-38c0-8 0-16 1-23 2-7 4-14 5-21 10-28 24-54 44-71 3-2 5-4 8-7 6-5 13-10 20-14 3-2 7-7 12-7 5 4 10 13 14 19 17 27 28 71 16 112z m-117-121c-6 8-12 17-17 27-3 5-6 10-9 16l0 0c-1-3-2-6-3-9-3-6-5-12-8-18-11-19-24-35-39-48-5-5-10-10-16-13l0 0c4-4 18-8 24-10 24-7 56-9 82-2 7 2 14 5 21 8 3 1 6 3 9 4 0 1 0 1 0 1-5 5-11 9-16 14-10 8-19 19-28 30z m-52 87c2 6 3 13 4 20 2 6 1 15 1 23l0 43c0 19 0 37 0 56-1 0-1 0-2 0-6-1-10-1-19-4-11-3-22-9-31-14-10-5-17-13-25-19-3-2-7-6-10-10 0 0 0 0 0 0 0 0 0-1 0-1 4-5 8-10 11-15 8-11 15-24 19-39 10-34 6-77-7-104-5-9-9-17-15-24-2-4-5-7-8-11 0 0 0 0 0 0 0 0 0 0 0-1 0 0 1 0 1 0 12 7 22 19 32 27 7 5 12 12 17 18 13 16 24 33 32 55z m-82-99c-3 4-6 7-8 11-6 7-11 15-15 24-13 27-18 70-7 105 4 14 11 27 18 38 4 5 8 10 12 15 0 0 0 1 0 1 0 0 0 0 0 0-3 4-7 8-10 10-8 6-16 14-25 19-9 5-20 11-31 14-9 3-13 3-19 4-1 0-1 0-2 0 0-19 0-37 0-56l0-43c0-8-1-17 1-23 1-7 2-14 4-20 8-22 19-39 32-55 5-6 10-13 17-18 10-8 20-20 32-27 0 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0z"/>
60
+ <glyph glyph-name="friendfeed" unicode="&#57394;" d="M512 415l-76 0c-15 0-31-20-31-47l0-45 90 0 0-89-90 0 0-225-90 0 0 225-135 0 0-225-90 0 0 225-90 0 0 89 90 0 0 45c0 75 54 135 121 135l76 0 0-88-76 0c-15 0-31-20-31-47l0-45 135 0 0 45c0 75 54 135 121 135l76 0z"/>
61
+ <glyph glyph-name="newsvine" unicode="&#57395;" d="M274 74l44 32c0 2 0 3 0 4 0 20 16 37 36 37 20 0 37-17 37-37 0-20-17-36-37-36-7 0-14 2-19 6l-61-44 0-36-36 0 0 108-62 45c-6-3-12-5-18-5-20 0-37 17-37 37 0 20 17 36 37 36 20 0 36-16 36-36 0-2 0-4-1-6l45-33 0 108-62 45c-6-3-12-5-18-5-20 0-37 17-37 37 0 20 17 36 37 36 20 0 36-16 36-36 0-2 0-5-1-7l45-32 0 101-63 46c-5-3-11-5-17-5-20 0-37 16-37 36 0 20 17 37 37 37 20 0 36-17 36-37 0-2 0-4-1-6l45-33 0 81 36 0 0-153 44 32c0 2 0 4 0 5 0 20 16 37 36 37 20 0 37-17 37-37 0-20-17-36-37-36-7 0-13 2-19 5l-61-44 0-101 44 32c0 2 0 3 0 4 0 21 16 37 36 37 20 0 37-16 37-37 0-20-17-36-37-36-7 0-13 2-19 6l-61-45 0-107z"/>
62
+ <glyph glyph-name="identica" unicode="&#57396;" d="M0 270c0-126 104-228 233-228 37 0 72 9 103 24l176-52-57 183c8 23 12 48 12 73 0 126-104 228-233 228-129 0-234-102-234-228z m392 0c0-19-4-38-10-55l29-82 3-8c0 0 0 1 0 1l10-27-37 9-80 25c-22-11-47-17-74-17-87-1-158 69-158 154 0 85 71 154 159 155 87 0 158-70 158-155z"/>
63
+ <glyph glyph-name="bebo" unicode="&#57397;" d="M282 0l-52 0c-113 0-204 92-204 205l0 256c0 28 23 51 51 51 28 0 51-23 51-51l0-256c0-57 46-103 102-103l52 0c56 0 102 41 102 90 0 50-28 90-51 90l-103 0c-28 0-51 23-51 51 0 28 23 51 51 51l103 0c85 0 153-86 153-192 0-106-91-192-204-192z"/>
64
+ <glyph glyph-name="zynga" unicode="&#57398;" d="M382 510c0 0 35 3 63-15 10 1 18-4 23-13 5-10 15-33 7-47-2-2-8 9-8 9 0 0-3-14-11-19 1-29-10-49-13-56-2-3-1-7 1-11 1-3 20-71 19-93-1-23-12-49-21-59 2-18-7-34-11-42-5-7-14-36-16-49-3-14-4-28-1-32 3-5 16-18 15-25-1-6-15-14-22-14-6 0-20 4-23 13-4 9-4 25-2 34 3 9 19 76 9 115-23-11-62-10-62-10 0 0-7-35-15-55-3-5-2-37-2-58 0-20 7-52 7-52 0 0 10-8 8-17-1-9-13-14-23-14-10 0-23 8-23 20 0 12 2 41 1 61-1 21 0 34-4 47-3 13-13 47-14 73-3 0-6 3-6 3 0 0-16-19-27-29 2-7 5-20 5-23 0-3 3-5 8-7 5-2 20-10 19-18 0-8-19-10-35-3-4 2-18 49-20 55-2 6-3 9-1 15 3 5 9 22 8 32-1 10-19 26-32 26-9 0-24-15-34-23-13-10-28-25-32-28-4-2-34-57-39-72-3-7-7-38-33-37-11 1-22 14 11 36 8 19 19 39 20 43 1 4 9 53 24 99 14 47 35 69 39 72 3 3 5 4 2 6-3 2-37 31-31 93 1 7 4 5 7-11 2-17 15-56 44-68 3-1 24 15 132 23 0 19 3 39 3 39 0 0-7 6-8 17-4-5-6-7-11-6-4 1-4 23-3 39 1 15 19 22 26 23 9 5 19 4 19 4 0 0 16 17 63 9z"/>
65
+ <glyph glyph-name="steam" unicode="&#57399;" d="M446 353c0-42-34-75-75-75-42 0-76 33-76 75 0 41 34 75 76 75 41 0 75-34 75-75z m-446-240l29-11c10-47 52-83 102-83 55 0 99 42 105 95l134 98c78 0 141 63 141 140 0 78-63 141-141 141-77 0-140-62-140-139l-88-126c-3 1-7 1-11 1-19 0-38-5-53-15l-78 32 0-133z m370 334c52 0 94-43 94-95 0-52-42-94-94-94-52 0-94 42-94 94 0 52 42 95 94 95z m-239-246c43 0 77-34 77-77 0-43-34-77-77-77-29 0-55 16-68 41 13-5 25-10 38-15 31-13 67 2 80 34 13 31-3 67-34 79l-32 13c5 1 11 2 16 2z"/>
66
+ <glyph glyph-name="xbox" unicode="&#57400;" d="M254 416l0 0c0 0 0 0 0 0 102 74 166 37 166 37-45 38-103 61-166 61-63 0-121-23-166-61 0 0 63 38 166-37z m-67-49c-75 46-120 66-120 66-43-46-69-107-69-175 0-60 21-115 56-159 0 0-35 94 133 268z m323-109c0 68-26 129-69 175 0 0-44-20-120-66 168-174 133-268 133-268 35 44 56 99 56 159z m-257 53c-142-105-184-229-184-229 47-49 112-79 185-79 73 0 139 30 185 79 0 0-27 112-186 229z"/>
67
+ <glyph glyph-name="windows" unicode="&#57401;" d="M-1 71l211-28 0 198-212 0z m-1 195l212 0 0 206-211-31z m232-226l282-38 0 239-282 0z m0 435l0-209 282 0 0 247z"/>
68
+ <glyph glyph-name="qq" unicode="&#57402;" d="M482 216c-15 36-36 62-51 68 0 2 0 4 0 7 0 13-4 26-10 36 0 1 0 2 0 3 0 6-2 12-4 17-4 92-64 165-161 165-97 0-157-73-161-165-3-5-4-11-4-17 0-1 0-2 0-3-6-10-10-23-10-36 0-3 0-5 0-7-15-6-36-32-51-68-19-45-22-88-7-96 11-5 28 7 43 31 6-26 22-48 43-67-22-8-37-22-37-38 0-25 40-46 90-46 45 0 82 17 89 39 2 0 9 0 10 0 7-22 45-39 89-39 50 0 91 21 91 46 0 16-15 30-38 38 22 19 37 41 43 67 16-24 32-36 43-31 15 8 12 51-7 96z m-272 131c-27 3-33 53-20 77 5 8 13 15 23 15 18 0 29-23 29-45 0-22-10-49-32-47z m96 0c-3-1-9-2-13 0-26 7-31 55-17 77 4 7 11 14 20 15 2 1 7 1 10 0 30-12 29-81 0-92z m-7 59c-8 4-15-2-17-8-1-5-3-13 4-14 3 3 2 14 8 13 6-1 2-14 11-12 3 8 0 19-6 21z m-73 5c-14-2-14-36 1-37 15-1 16 39-1 37z"/>
69
+ <glyph glyph-name="douban" unicode="&#57403;" d="M0 504l512 0 0-56-512 0z m419-325l51 0 0 215-427 0 0-215 45 0 38-122-126 0 0-49 512 0 0 49-129 0z m-290 159l257 0 0-102-257 0z m182-281l-113 0-38 122 187 0z"/>
70
+ <glyph glyph-name="meetup" unicode="&#57404;" d="M387 499c-4 0-8-4-12-4-12 0-22-10-32-8-10 1-19-16-31-16l-3 0c-3 0-6 19-7 20-53-72-71-165-95-263-13 24-25 49-37 74-22 42-44 87-68 123-7 0-14 1-21 1-28 0-54-5-78-12l-1-66c-3-113-6-210 23-302 5-1 11-2 16-2 34 0 64 17 77 24 3 29-1 51-5 75-2 12-4 25 3 41 19-26 37-54 54-82 11-18 22-36 31-51 5-1 11-1 16-1 13 0 25 2 37 3 12 2 24 4 38 4l8-3c15 34 16 86 17 135 1 46 2 93 22 128 22-102 52-201 92-302 13 2 29 7 43 11 11 3 20 7 28 7 4 0 7-2 10-4-24 65-39 138-53 210-19 93-39 187-72 260z"/>
71
+ <glyph glyph-name="playstation" unicode="&#57405;" d="M511 170c-5 24-43 37-103 42-42 3-84-7-125-21l-7-2 0 181c0 15 32 14 32-3l0-141c65-19 98 10 99 82 0 61-41 97-108 115l-106 27 0-214-32-11 32-10 0-54-76-26c-26-9-47 12-24 20l19 7-71 22c-22-7-42-23-41-45 1-22 53-28 92-34 37-6 71-3 101 8l0 23 0-48 83-27 0 2 1-2 72 26 120 42-78 24-115-39 0 27 73 25 43 15c45 8 63-7 20-21l-21-7 78-24 1 0c31 11 45 27 42 41z m-470 14l71-22 81 29 0 24-32 10-118-40c-1 0-1-1-2-1z"/>
72
+ <glyph glyph-name="android" unicode="&#57406;" d="M444 352c-17 0-31-15-31-32l0-124c0-17 14-31 31-31 17 0 31 14 31 31l0 124c0 17-14 32-31 32z m-376 0c-17 0-31-15-31-32l0-124c0-17 14-31 31-31 17 0 31 14 31 31l0 124c0 17-14 32-31 32z m50-1l0-226c0-14 11-25 24-25l28 0 0-68c0-18 14-32 31-32 17 0 31 14 31 32l0 68 49 0 0-68c0-18 14-32 31-32 17 0 31 14 31 32l0 68 28 0c13 0 24 11 24 25l0 226z m204 117l25 37c2 2 1 5-1 6-2 2-4 1-6-1l-26-39c-18 7-37 11-58 11-21 0-40-4-58-11l-26 39c-2 2-4 3-6 1-2-1-3-4-1-6l25-37c-40-19-69-55-73-97l278 0c-4 42-33 78-73 97z m-124-59c-9 0-16 7-16 15 0 9 7 16 16 16 8 0 15-7 15-16 0-8-7-15-15-15z m118 0c-8 0-15 7-15 15 0 9 7 16 15 16 9 0 16-7 16-16 0-8-7-15-16-15z"/>
73
+ <glyph glyph-name="snapchat" unicode="&#57407;" d="M261 485c19 0 85-5 116-75 10-23 8-65 6-98-1-6-1-11-1-16l0-2 1-1c1-1 6-7 18-7l0 0c8 0 17 3 27 7 1 1 3 1 5 1 2 0 5 0 7-1l0 0c5-2 8-5 8-8 0-2-1-8-19-15-1-1-4-1-6-2-12-4-29-9-35-23-4-8-3-17 2-28 3-5 36-79 110-92 0 0 0 0 0-1-2-3-10-13-59-21-8-1-10-10-12-20-1-4-2-7-3-11-1-1-1-1-2-1 0 0 0 0 0 0-3 0-6 0-10 1-7 1-17 3-29 3-7 0-14-1-21-2-16-2-28-11-41-20-18-13-36-26-64-26-1 0-2 0-4 0l0 0c-1 0-1 0-2 0-28 0-46 13-64 26-13 9-26 18-41 20-7 1-14 2-21 2-12 0-22-2-29-3-4-1-7-2-10-2-2 0-2 0-2 2-1 3-2 7-3 11-2 10-4 19-12 20-50 8-58 18-59 21 0 1 0 1 0 1 74 13 107 87 109 92 6 10 6 20 3 27-6 14-23 20-35 24-3 0-5 1-7 2-15 6-19 12-19 15 1 5 9 9 15 9 1 0 2 0 3-1 11-5 20-7 28-7 13 0 19 6 20 7l1 1 0 2c0 5-1 10-1 16-2 33-5 75 6 98 31 69 97 75 116 75 0 0 9 0 9 0 0 0 1 0 1 0z m0 12c-1 0-1 0-1 0-3 0-9 0-9 0-11 0-34-2-59-13-14-6-26-14-37-25-13-12-23-27-31-44-12-26-9-69-7-104l0 0c0-4 1-8 1-11-2-1-5-2-9-2-6 0-14 2-22 6-3 1-6 2-9 2-5 0-11-2-15-4-6-4-10-9-11-14-1-4-1-11 7-18 4-4 11-8 19-11 2-1 5-2 8-3 9-3 23-7 27-16 2-5 1-11-2-18-1 0-1 0-1 0-1-2-9-21-26-40-9-11-19-21-31-28-13-9-28-14-43-17-6-1-11-6-10-12 0-2 0-4 1-6 2-5 8-10 17-15 11-5 28-9 50-13 1-2 2-7 3-11 1-4 2-8 3-12 2-4 5-10 14-10 3 0 7 1 12 2 6 1 15 3 27 3 6 0 12-1 19-2 12-2 23-9 36-18 18-13 39-28 70-28 1 0 2 0 3 0 1 0 2 0 4 0 31 0 52 15 70 28 13 9 24 16 36 18 7 1 13 2 20 2 10 0 19-1 26-3 5-1 9-1 12-1l1 0c6 0 11 3 13 9 1 4 2 8 3 12 1 4 2 9 3 11 22 4 39 8 50 13 9 5 15 9 17 15 1 2 1 4 1 6 1 6-4 11-10 12-68 11-99 82-100 85 0 0 0 0 0 0-4 7-5 13-3 18 4 8 18 13 28 16 2 1 5 2 7 3 9 3 16 7 21 12 5 5 6 10 6 14 0 8-7 15-17 19-3 1-7 2-11 2-3 0-7 0-10-2-8-4-15-6-22-6-3 0-5 1-7 1 1 4 1 7 1 10l0 2c2 34 5 78-6 103-8 18-19 33-32 45-10 11-23 19-37 25-24 11-47 13-58 13z"/>
74
+ <glyph glyph-name="twitter" unicode="&#57408;" d="M460 360c0-4 0-9 0-13 0-139-106-299-299-299-59 0-115 17-161 47 8-1 17-1 25-1 49 0 95 16 131 45-46 0-85 31-99 73 7-2 13-2 20-2 10 0 19 1 28 3-48 10-84 53-84 103 0 1 0 1 0 2 14-8 30-13 47-13-28 18-47 51-47 87 0 19 6 37 15 53 51-64 129-106 216-110-2 8-3 16-3 24 0 58 47 105 105 105 31 0 58-13 77-33 24 5 47 13 67 25-8-24-25-45-46-58 21 3 41 8 60 17-14-21-32-40-52-55z"/>
75
+ <glyph glyph-name="facebook" unicode="&#57409;" d="M296 0l0 234 78 0 12 91-90 0 0 58c0 26 7 44 45 44l48 0 0 81c-8 2-37 4-70 4-70 0-117-42-117-120l0-67-79 0 0-91 79 0 0-234z"/>
76
+ <glyph glyph-name="googleplus" unicode="&#57410;" d="M164 287c0-22 0-43 0-64 30 0 60 0 90 0-4-21-16-39-33-51-11-7-24-12-36-14-13-2-27-3-40 0-13 2-25 8-36 16-18 12-31 30-38 50-7 21-7 43 0 64 5 14 13 28 24 39 13 13 31 23 49 27 16 3 33 3 48-2 14-4 26-11 36-21 10 10 20 20 30 30 5 6 11 11 16 16-15 15-33 26-53 33-35 13-75 13-111 1-40-14-74-44-93-81-6-13-11-27-14-42-7-35-2-73 14-106 11-21 26-40 45-54 18-14 38-25 60-31 27-7 56-7 84 0 25 5 48 17 67 34 20 19 34 43 41 69 9 28 10 58 5 87-52 0-103 0-155 0z m348-4l-56 0 0 56-41 0 0-56-56 0 0-41 56 0 0-56 41 0 0 56 56 0z"/>
77
+ <glyph glyph-name="pinterest" unicode="&#57411;" d="M170 316c0 22 5 40 17 55 11 15 25 23 41 23 13 0 23-4 30-13 7-9 11-20 11-33 0-8-2-18-5-29-3-12-6-26-11-41-5-16-9-28-11-37-4-16-1-30 9-42 10-11 23-17 39-17 28 0 51 16 69 47 18 32 27 70 27 115 0 34-11 62-33 84-22 21-53 32-93 32-45 0-81-14-108-43-28-28-42-62-42-102 0-24 7-44 20-60 5-5 6-11 5-17-2-5-4-13-6-24-1-4-3-7-6-8-3-1-6-1-9 0-21 9-36 23-47 44-11 21-16 45-16 72 0 18 3 35 9 53 6 18 14 35 26 51 12 17 27 31 43 44 17 13 37 23 62 31 24 7 50 11 77 11 29 0 55-5 79-15 24-9 45-22 61-38 17-17 29-35 39-56 9-21 14-43 14-65 0-60-15-110-46-149-31-40-70-59-118-59-16 0-31 3-45 11-14 7-24 16-30 27-11-47-18-75-21-84-6-23-20-51-43-84l-21 0c-4 41-3 75 3 102l39 165c-6 13-9 29-9 49z"/>
78
+ <glyph glyph-name="foursquare" unicode="&#57412;" d="M394 512c0 0-235 0-273 0-37 0-48-28-48-46 0-18 0-434 0-434 0-20 10-28 16-30 7-3 23-5 33 7 0 0 129 150 131 152 4 3 4 3 7 3 7 0 57 0 84 0 35 0 40 25 44 40 3 12 37 187 49 243 8 42-2 65-43 65z m-6-308c3 12 37 187 49 243z m-10 234l-11-60c-2-6-10-13-17-13-8 0-107 0-107 0-12 0-20-8-20-20l0-13c0-12 8-20 20-20 0 0 82 0 91 0 8 0 16-10 15-19-2-9-11-54-12-59-1-4-6-13-17-13-8 0-73 0-73 0-14 0-18-2-27-13-9-11-89-108-89-108-1-1-2-1-2 0l0 339c0 8 7 17 17 17 0 0 210 0 219 0 8 0 15-8 13-18z"/>
79
+ <glyph glyph-name="yahoo" unicode="&#57413;" d="M497 350c-9 0-46-9-59-11-13-4-135-98-143-121-2-8-3-21-3-32l-1-19c0-13 4-35 6-46 8-2 66-1 77-2l-2-24c-10 1-84 0-126 0-21 0-90-2-111-1l4 22c12 1 59-2 70 9 5 6 4 12 4 44l0 15c0 7 0 21-2 33-5 13-112 147-140 169-8 2-58 8-70 10l-1 21c6 3 62-1 116 1 36 1 117 0 127-1l-2-18c-11-3-63-4-76-8 35-51 90-118 108-143 9 14 95 73 98 93-13 3-58 10-65 10l-4 23c12 2 76 0 108 0 27 0 85 0 102-2z"/>
80
+ <glyph glyph-name="skype" unicode="&#57414;" d="M494 202c4 16 5 34 5 51 0 133-107 241-240 241-14 0-28-1-41-3-22 13-47 21-75 21-77 0-139-63-139-140 0-25 7-50 19-70-3-16-5-32-5-49 0-133 108-240 241-240 15 0 29 1 44 4 19-11 42-17 66-17 77 0 139 63 139 140 0 22-5 43-14 62z m-114-63c-11-16-27-28-49-37-21-9-46-13-75-13-34 0-63 6-86 18-16 8-30 20-40 35-10 15-15 29-15 43 0 9 3 17 10 23 7 6 15 9 25 9 8 0 15-2 21-7 6-5 11-12 14-21 5-9 9-18 14-24 5-6 12-12 20-16 9-4 21-6 35-6 20 0 37 4 49 13 12 8 18 18 18 30 0 9-3 17-10 23-6 6-15 10-25 14-11 3-26 7-44 11-25 5-47 11-64 19-17 7-31 17-41 30-10 13-16 29-16 48 0 18 6 35 17 49 11 14 26 25 47 32 20 8 43 11 70 11 22 0 41-2 56-7 16-5 30-12 40-20 11-8 19-17 24-26 5-9 7-19 7-28 0-8-3-16-10-23-6-7-15-10-25-10-8 0-15 2-20 6-5 4-9 11-15 19-6 12-13 21-21 27-8 6-22 9-40 9-18 0-32-3-42-10-10-6-15-14-15-23 0-5 1-10 5-14 3-4 8-8 14-11 6-3 13-6 19-7 7-2 18-5 34-9 19-4 37-8 53-13 16-6 30-12 41-19 12-8 21-17 27-29 7-11 10-26 10-42 0-20-6-38-17-54z"/>
81
+ <glyph glyph-name="yelp" unicode="&#57415;" d="M105 461c5 8 15 12 15 12l101 37c4 1 9 6 24-4 9-5 11-27 11-27l1-173c0 0-2-20-16-24-13-3-24 8-24 8l-104 142c0 0-15 18-8 29z m-53-295c-4 7-3 22-3 22l7 87c0 5 6 12 12 15 7 5 24-2 24-2l108-55c0 0 16-8 16-21 0-18-9-18-14-21l-127-28c0 0-18-7-23 3z m195-165c-8-2-18 0-18 0l-85 27c-6 3-11 7-13 15-3 9 8 23 8 23l85 93c0 0 13 12 23 6 10-5 11-17 11-17l-2-126c0 0 2-18-9-21z m52 259l68 108c0 0 7 14 19 13 10 0 15-9 15-9l58-68c0 0 5-11 3-20-2-9-19-16-19-16l-121-35c0 0-18-4-24 7-5 10 1 20 1 20z m159-141l-51-74c0 0-10-7-19-7-9 0-20 14-20 14l-65 109c0 0-7 16 1 24 8 8 20 5 20 5l122-39c0 0 17-3 17-15 0-8-5-17-5-17z"/>
82
+ <glyph glyph-name="feedburner" unicode="&#57416;" d="M321 355c17-90-38-145-106-126 100 164-46 165-1 283-69-49-137-185-137-284 0-139 73-227 171-228 95-1 187 90 187 179 0 102-55 142-114 176z m-73-320c-97-2-177 102-87 249-19-85 32-149 81-149 55-1 87 51 103 118 88-67 48-215-97-218z"/>
83
+ <glyph glyph-name="linkedin" unicode="&#57417;" d="M383 250c-7 8-19 12-36 12-22 0-37-7-46-19-9-13-13-31-13-54l0-175c0-3-1-6-4-9-2-2-6-4-9-4l-92 0c-3 0-6 2-9 4-2 3-4 6-4 9l0 323c0 3 2 6 4 9 3 2 6 4 9 4l89 0c3 0 6-1 8-2 2-1 3-4 4-7 0-3 1-6 1-7 0-1 0-4 0-8 23 22 54 32 91 32 43 0 76-10 100-31 24-22 36-53 36-95l0-218c0-3-1-6-4-9-2-2-6-4-9-4l-94 0c-3 0-6 2-9 4-2 3-4 6-4 9l0 197c0 17-3 30-9 39z m-277 155c-12-12-27-18-44-18-17 0-32 6-44 18-12 12-18 26-18 44 0 17 6 31 18 43 12 12 27 19 44 19 17 0 32-7 44-19 12-12 18-26 18-43 0-18-6-32-18-44z m15-68l0-323c0-3-2-6-4-9-3-2-6-4-9-4l-92 0c-3 0-6 2-9 4-2 3-4 6-4 9l0 323c0 3 2 6 4 9 3 2 6 4 9 4l92 0c3 0 6-2 9-4 2-3 4-6 4-9z"/>
84
+ <glyph glyph-name="viadeo" unicode="&#57418;" d="M99 112c12-22 29-39 49-51 14-8 29-13 44-16 133 52 117 303 116 316-5 15-28 79-71 151 0 0 60-40 71-150 0 0 0-1 0-1 1-2 1-3 1-3 78-208-91-315-92-315 25 0 47 6 67 18 21 12 37 29 50 51 12 22 18 45 18 71 0 20-4 39-11 57 12 2 27 7 42 17 9-23 14-47 14-73 0-49-17-92-51-129-33-37-77-55-129-55-54 0-97 18-131 55-33 37-50 80-50 129 0 48 16 91 48 126 35 40 79 59 133 59 22 0 43-3 62-10-6-12-12-27-13-43-16 6-32 9-50 9-37 0-68-14-95-41-27-28-40-62-40-101 0-26 6-49 18-71z m238 206c0 0 103 56 107 104 0 0-32-71-119-91 0 0-31 49 9 89 0 0 14 16 54 26 0 0 40 8 62 54 0 0 45-62 17-145 0 0-14-37-42-54-22-13-54-17-88 17z m-120-275c0 0-1 0-1 0 0 0 0 0 0 0 1 0 1 0 1 0z"/>
85
+ <glyph glyph-name="xing" unicode="&#57419;" d="M123 153l-74 0c-4 0-7 2-9 5-2 3-2 8 0 12l78 138c0 0 0 0 0 1l-50 86c-2 4-2 8 0 11 2 3 5 5 10 5l74 0c11 0 17-7 20-14 0 0 51-88 51-88-3-6-80-141-80-141-4-7-9-15-20-15z m349 343l-163-289c0 0 0-1 0-1l104-190c2-4 2-8 0-11-2-3-5-5-10-5l-74 0c-11 0-16 8-20 14 0 0-105 192-105 193 5 9 164 291 164 291 4 7 9 14 20 14l75 0c4 0 8-2 9-5 2-3 2-7 0-11z"/>
86
+ <glyph glyph-name="myspace" unicode="&#57420;" d="M423 233c49 0 89-39 89-89 0-16 0-45 0-45l-179 0c0 0 0 29 0 45 0 50 40 89 90 89z m-82 98c0 45 36 82 82 82 45 0 82-37 82-82 0-46-37-82-82-82-46 0-82 36-82 82z m-103-112c44 0 80-36 80-80 0-14 0-40 0-40l-159 0c0 0 0 26 0 40 0 44 35 80 79 80z m-73 89c0 41 33 74 73 74 41 0 74-33 74-74 0-40-33-73-74-73-41 0-73 33-73 73z m-94-101c40 0 72-32 72-72 0-13 0-36 0-36l-143 0c0 0 0 23 0 36 0 40 32 72 71 72z m-66 80c0 37 30 66 66 66 37 0 66-29 66-66 0-36-29-66-66-66-36 0-66 30-66 66z"/>
87
+ <glyph glyph-name="soundcloud" unicode="&#57421;" d="M10 174l-10 0 0 62 10 0z m26-20l-10 0 0 97 10 0z m20-6l-10 0 0 113 10 0z m21-5l-10 0 0 113 10 0z m25 0l-10 0 0 149 10 0z m21 0l-10 0 0 169 10 0z m25 0l-10 0 0 180 10 0z m21 0l-10 0 0 185 10 0z m26 0l-11 0 0 180 11 0z m20 0l-10 0 0 174 10 0z m21 0l-11 0 0 195 11 0z m25 0l-10 0 0 210 10 0z m188 2c-1 0-175 0-175 0-4 0-8 3-8 7l0 200c0 4 2 6 7 8 12 5 26 7 40 7 58 0 106-44 111-101 8 3 16 5 25 5 35 0 63-28 63-63 0-35-28-63-63-63z"/>
88
+ <glyph glyph-name="spotify" unicode="&#57422;" d="M413 97c-6-10-20-14-30-7-85 51-191 63-316 34-12-2-24 5-27 17-3 12 5 24 17 27 137 31 254 18 349-40 11-6 14-20 7-31z m44 98c-8-13-25-17-38-9-97 59-244 76-359 42-14-5-30 4-35 18-4 15 4 31 19 35 131 40 293 21 404-47 13-9 18-26 9-39z m50 114c-9-16-30-21-46-12-116 69-307 75-418 42-17-6-36 4-42 22-5 18 5 37 23 42 127 39 338 31 472-48 16-10 21-30 11-46z"/>
89
+ <glyph glyph-name="grooveshark" unicode="&#57423;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m150-307c-19 8-35 24-47 41-13 19-27 38-42 56-15 16-30 32-47 47-16 14-34 28-54 38-14 6-27 11-41 15-2 0-6 2-8 0 0-1 0-3 0-5 1-3 1-5 1-8 5-36 6-73-5-107-6-18-16-35-31-48-11-11-28-22-45-21-3 0-6 0-9 1-18 6-19 26-19 42-1 17 1 34 6 51 1 5 3 10 4 15 20 57 65 103 122 123 22 8 44 12 67 12 67 0 130-34 167-90 9-14 16-29 22-44l0 0c1-6 3-11 4-16 5-17 7-34 7-51-1-32-11-68-52-51z"/>
90
+ <glyph glyph-name="lastfm" unicode="&#57424;" d="M390 114c-101 0-137 46-155 102l-19 59c-14 43-31 76-82 76-36 0-72-26-72-98 0-56 28-91 69-91 46 0 76 34 76 34l19-51c0 0-32-31-98-31-82 0-128 48-128 137 0 93 46 147 132 147 78 0 117-28 142-104l19-59c14-43 39-74 98-74 40 0 61 9 61 31 0 17-10 29-40 36l-40 10c-48 11-68 36-68 76 0 64 52 84 105 84 60 0 96-21 101-74l-59-7c-2 25-18 35-46 35-26 0-41-11-41-31 0-18 7-28 33-34l38-8c50-12 77-37 77-84 0-59-49-81-122-81z"/>
91
+ <glyph glyph-name="youtube" unicode="&#57425;" d="M507 358c0 0-5 36-20 51-20 21-42 21-52 22-71 5-179 5-179 5l0 0c0 0-108 0-179-5-10-1-32-1-52-22-15-15-20-51-20-51 0 0-5-41-5-82l0-39c0-42 5-83 5-83 0 0 5-35 20-51 20-20 46-20 57-22 41-4 174-5 174-5 0 0 108 0 179 5 10 1 32 2 52 22 15 16 20 51 20 51 0 0 5 41 5 83l0 39c0 41-5 82-5 82z m-182-106l0 0-121-63 0 144 138-72z"/>
92
+ <glyph glyph-name="vimeo" unicode="&#57426;" d="M331 366c-12 0-25-3-38-9 25 83 73 123 144 120 53-1 78-35 75-102-3-50-37-118-105-205-69-90-128-136-176-136-30 0-55 28-76 83-14 51-28 101-41 152-16 55-32 82-50 82-4 0-17-8-40-24l-24 31c25 23 50 45 75 67 33 29 59 44 76 46 39 4 64-23 73-82 10-63 17-102 21-117 11-52 24-78 38-78 11 0 27 17 48 50 21 34 33 60 35 78 3 29-9 44-35 44z"/>
93
+ <glyph glyph-name="dailymotion" unicode="&#57427;" d="M443 512l-109-22 0-161c-24 32-59 47-103 47-47 0-89-17-123-51-38-37-59-84-59-137 0-58 22-107 64-145 33-29 71-43 116-43 43 0 76 12 109 43l0-41 104 0 0 510z m-190-414c-56 0-96 39-96 91 0 49 40 91 92 91 50 0 89-40 89-93 0-51-39-89-85-89z"/>
94
+ <glyph glyph-name="vine" unicode="&#57428;" d="M365 435c-22 0-36-20-36-58 0-79 50-124 114-124 12 0 23 1 38 5l0-61c-20-5-43-7-61-7-43-91-121-168-146-183-17-9-32-10-50 1-32 19-152 120-192 427l87 0c22-189 75-281 134-352 33 32 64 75 88 125-58 29-93 94-93 170 0 76 44 134 119 134 73 0 113-46 113-124 0-29-6-62-17-88-55-11-75 24-75 24 4 13 10 36 10 57 0 36-13 54-33 54z"/>
95
+ <glyph glyph-name="flickr" unicode="&#57429;" d="M116 140c-64 0-116 52-116 116 0 64 52 116 116 116 64 0 116-52 116-116 0-64-52-116-116-116z m280 0c-64 0-116 52-116 116 0 64 52 116 116 116 64 0 116-52 116-116 0-64-52-116-116-116z"/>
96
+ <glyph glyph-name="500px" unicode="&#57430;" d="M338 190c-6-6-10-11-16-16-8-8-15-15-24-21-21-16-46-20-72-15-25 5-42 21-53 44-1 1-1 2-2 3 0 0 0 1 0 1-4-6-7-11-10-16-17-23-40-35-69-35-16-1-32 1-47 8-31 13-44 39-45 67 16 0 32 0 48 0 1-2 1-4 1-6 4-14 11-25 26-28 16-4 30-1 42 11 14 16 16 43 4 61-12 18-40 23-59 10-2-2-5-4-7-7-3-5-8-6-13-5-11 0-23 0-35 0 8 44 16 87 24 131 44 0 89 0 133 0 0-13 0-26 0-39-2 0-3 0-5 0-30 0-59 0-89 0-3 0-4-1-5-4-3-16-6-32-8-47-1-1-1-2 0-3 18 16 39 20 62 16 23-4 39-19 51-40 1 3 2 5 3 7 16 32 47 48 82 43 22-3 40-12 56-27 9-9 18-18 27-28 1 1 2 2 3 3 9 10 18 20 28 29 13 12 28 21 46 23 33 5 71-6 88-43 13-30 12-60-3-89-13-27-36-40-66-42-23-1-43 6-61 20-11 9-20 18-29 27-2 2-4 4-6 7z m-92-6c10 0 20 3 29 8 12 7 22 18 33 28 1 2 2 3 0 4-8 8-16 16-25 23-7 7-15 12-24 14-23 7-43-3-49-25-1-4-1-7-1-10-2-25 14-42 37-42z m119 39c10-10 19-18 28-26 11-9 23-13 37-13 19 0 31 10 35 28 1 6 1 13 1 18-3 22-20 35-42 34-13-2-23-8-32-16-9-8-18-16-27-25z"/>
97
+ <glyph glyph-name="instagram" unicode="&#57431;" d="M511 459c-3 30-28 53-59 53-131 0-262 0-393 0-4 0-7 0-11-1-29-6-48-30-48-59 0-65 0-131 0-196 0-65 0-130 0-196 0-3 0-6 0-10 4-28 29-50 58-50 132 0 263 0 395 0 3 0 5 0 7 0 29 4 51 29 51 58 0 132 0 264 0 396 0 1 0 3 0 5z m-157-26c0 11 9 20 20 20 19 0 39 0 58 0 12 0 20-9 20-20 1-20 1-39 0-59 0-11-8-20-19-20-10 0-20 0-30 0-10 0-19 0-29 0-11 0-20 9-20 20 0 20 0 39 0 59z m-98-79c54 0 98-44 98-98 0-54-44-98-98-98-55 0-99 44-99 98 0 54 44 98 99 98z m195-61c0-71 1-142 1-214 0-11-8-20-20-20-118 0-237 0-354 0-12 0-22 9-22 21 0 71 0 142 0 213 0 1 0-1 0 4 16 0 32 0 47 0-10-41-5-78 13-114 14-27 35-48 61-63 52-30 116-28 166 5 28 19 48 44 60 76 12 31 13 60 5 96 15 0 27 0 43 0 0-5 0-3 0-4z"/>
98
+ <glyph glyph-name="wordpress" unicode="&#57432;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m-230-256c0 33 7 65 20 94l110-301c-77 37-130 116-130 207z m230-230c-23 0-44 3-65 9l69 201 71-194c0-1 1-2 1-3-23-9-49-13-76-13z m32 338c14 1 26 2 26 2 12 2 11 20-1 19 0 0-38-3-62-3-22 0-60 3-60 3-13 1-14-18-2-19 0 0 12-1 24-2l36-98-50-151-84 249c14 1 26 2 26 2 13 2 11 20-1 19 0 0-37-3-61-3-5 0-10 0-15 0 41 63 112 104 192 104 60 0 114-23 155-60-1 0-2 0-3 0-22 0-38-20-38-41 0-19 11-35 22-54 9-15 19-35 19-63 0-20-7-43-17-75l-23-76z m84-307l70 203c13 33 18 59 18 83 0 8-1 16-2 23 18-32 28-70 28-110 0-85-46-159-114-199z"/>
99
+ <glyph glyph-name="tumblr" unicode="&#57433;" d="M98 302l0 73c20 6 38 16 52 28 14 12 26 27 34 44 9 17 15 39 18 65l73 0 0-129 122 0 0-81-122 0 0-131c0-30 2-49 5-57 3-9 9-15 17-20 12-7 25-11 39-11 26 0 52 9 78 26l0-81c-22-10-42-18-60-22-17-4-37-6-57-6-24 0-44 3-62 9-18 6-34 14-46 25-13 11-22 23-27 35-5 12-7 30-7 54l0 179z"/>
100
+ <glyph glyph-name="twitch" unicode="&#57434;" d="M367 67l-100 0-67-67-66 0 0 67-123 0 0 356 34 89 456 0 0-312z m89 156l0 245-367 0 0-323 100 0 0-67 67 67 122 0z m-122 155l0-133 44 0 0 133z m-123-133l45 0 0 133-45 0z"/>
101
+ <glyph glyph-name="8tracks" unicode="&#57435;" d="M141 281c-78 0-141-63-141-140 0-78 63-141 141-141 77 0 140 63 140 141 0 39 0 23 0 40l-50 0c0 0 0-1 0-40 0-25-10-48-27-64-16-16-38-26-63-26-25 0-48 10-64 26-17 16-27 39-27 64 0 25 10 47 27 64 16 16 39 26 64 26 46 0 182 0 230 0 78 0 141 63 141 140 0 78-63 141-141 141-77 0-140-63-140-141 0-39 0-40 0-40l50 0c0 0 0 1 0 40 0 25 10 48 27 64 16 16 38 26 63 26 25 0 48-10 64-26 17-16 27-39 27-64 0-25-10-47-27-64-16-16-39-26-64-26l-230 0z"/>
102
+ <glyph glyph-name="amazon" unicode="&#57436;" d="M455 130c-63-27-131-40-194-40-92 0-181 25-253 67-6 4-11-3-6-7 67-61 155-97 253-97 70 0 152 22 208 63 9 7 1 18-8 14z m55 31c-6 8-59 14-91-8-5-4-4-8 2-8 18 2 58 7 65-2 7-9-8-47-15-64-2-5 3-7 7-3 30 25 38 78 32 85z m-226 189c-29-3-67-5-94-17-32-14-54-41-54-82 0-52 33-78 75-78 36 0 55 9 83 37 9-14 12-20 28-34 4-2 9-2 12 1l0 0c10 9 28 25 39 33 4 4 3 9 0 14-9 12-19 23-19 46l0 78c0 33 2 63-22 86-19 18-51 25-75 25-48 0-101-18-112-77-1-6 3-9 7-10l49-5c4 0 8 4 9 9 4 20 21 30 40 30 10 0 22-4 28-13 7-10 6-24 6-36l0-7z m-10-104c-7-14-20-23-34-23-19 0-31 15-31 37 0 42 39 50 75 50l0-11c0-19 0-35-10-53z"/>
103
+ <glyph glyph-name="icq" unicode="&#57437;" d="M497 231l-3 6c-6 8-12 17-20 23-8 5-16 8-24 12 22 11 38 26 45 46 5 15 4 28-3 41l0 2c-9 14-21 24-39 29-10 2-23 2-34 1l-23-5 8 18c7 23 5 46-8 67l-2 3c-11 18-27 29-48 35-23 6-43 3-64-7-20-11-34-28-41-49l0-2-1-5-2 5-8 13c-11 18-26 29-44 34-16 4-29 2-42-5-15-9-24-24-28-44-3-21 0-41 11-61l5-8-17 6c-22 5-42 2-62-9-21-10-34-26-43-46-8-21-7-40 3-58 4-8 11-15 17-19 8-9 19-14 32-16l5-1-11-10c-10-8-16-19-19-30-4-13-2-26 5-38 4-6 7-11 13-15 6-5 13-8 22-9 15-4 32-4 50 2l-13-22-4-9c-7-23-5-43 6-64 5-8 11-15 17-22 9-8 19-13 32-16 22-6 44-5 65 5 20 11 33 29 39 50l1 4c14-15 27-25 41-28 15-5 29-4 42 5 12 7 21 19 25 34 4 16 4 32 0 50 8-5 15-9 23-11 23-7 44-6 64 5 19 10 32 28 39 50 6 22 4 43-7 63z m-104 120l8 4c13 6 26 7 39 6 12-2 21-7 25-16l3-9-2-8c-5-13-16-23-34-31-7-3-15-5-23-6l-89-11-2 5-1 2 3 4z m-123 91c4 15 14 26 27 33 13 7 27 9 41 4 15-4 26-12 32-24 4-7 6-16 6-26l-2-15c-3-8-7-16-11-22l-65-79c-6 5-14 8-21 12l-7 81-1 29z m-123-2c0 13 5 22 14 27 4 4 11 4 17 1 13-4 23-13 32-31 4-8 7-15 9-23l14-86-11-3-64 70-3 7c-6 13-10 25-8 38z m-107-153c-5 11-5 22-1 33 5 13 14 24 28 30 13 7 26 9 41 6l19-8 64-46c-6-8-10-15-12-22l-104-13-7 1c-13 3-22 8-28 19z m201-213l-1-7c-5-13-13-24-26-30-13-7-27-8-40-5-14 4-25 13-31 24-4 7-7 16-7 25l4 16c2 8 5 15 11 21l61 72c7-4 14-7 22-8 1-25 4-51 7-79z m-24 145c-9 8-14 21-14 34 0 13 5 23 14 34 9 7 21 13 34 13 13 0 26-6 33-13 11-11 15-21 15-34 0-13-4-26-15-34-9-10-20-15-33-15-13 0-25 5-34 15z m134-127c-2-13-6-22-15-26-5-3-10-3-16-3-14 4-25 15-33 32l-8 24-11 63 12 4 10 5 30-31 19-23 3-7c7-12 10-24 9-38z m124 85c-4-15-12-25-25-31-13-7-25-9-40-4-9 2-14 6-19 12l-76 62 5 11 2 9 82 7 28 1 8-1c10-3 21-10 26-21 8-8 11-18 11-31z"/>
104
+ <glyph glyph-name="smugmug" unicode="&#57438;" d="M144 411c47 0 70 28 67 53-3 21-23 40-62 41-32 0-53-24-56-47-3-24 12-48 51-47z m236 6c45 2 64 25 65 47 0 26-24 51-65 48-32-3-52-25-54-48-4-25 13-50 54-47z m28-101c-112-11-118-12-325-17-87 0-68-299 118-299 177 0 392 335 207 316z m-202-263c-163 0-141 194-113 195 188 7 237 15 304 15 69 0-62-210-191-210z"/>
105
+ <glyph glyph-name="ravelry" unicode="&#57439;" d="M464 405c-107 122-270 46-270 46-9-4-15-7-20-11-5-4-9-8-11-12-7-15-12-30-16-44-19-25-33-55-38-88-19-27-31-59-33-92-46 12-76 27-76 27 26-15 51-27 76-35 0-16 2-32 6-48 10-35 31-63 58-85-16 18-28 39-35 62-6 21-7 42-5 63 5-2 11-3 17-5 23-70 84-122 159-134 27-12 55-15 81-7 13 5 24 11 34 19 3 3 6 6 9 9 51 27 89 75 102 133 0-3 0-4 0-4 0 0 40 117-38 206z m-320-33c-4-19-6-34-7-44-8-7-15-15-22-24 6 25 15 48 29 68z m-7-94c1-25 6-50 15-76 1-4 2-8 4-11-13 1-26 2-38 4-3 13-6 26-7 39 7 16 15 31 26 44z m-36-79c2 8 4 17 7 25 1-9 2-19 5-28-4 1-8 2-12 3z m21-17c14-3 27-6 40-7 23-54 59-95 98-118-64 16-116 63-138 125z m283-104c-1 3-11-2-11-2-7-4-14-8-21-10-63-20-136 26-179 106 110-5 185 37 185 37 0 0 18 0 15 25-4 25-22 6-22 6-61-40-127-52-187-51-5 11-9 22-13 33-9 27-13 53-14 79 21 20 49 36 80 45 28 8 57 10 84 6 0 0 5-3 4 10-2 13-11 15-11 15-31 6-65 5-98-4-21-7-40-16-58-28 2 15 6 30 10 43 0 0 5 14 27 25 30 12 122 42 181 17 101-43 121-145 124-198-5-66-42-122-96-154z"/>
106
+ <glyph glyph-name="weibo" unicode="&#57440;" d="M383 263c-7 2-12 4-9 13 9 21 9 38 1 51-17 24-62 23-115 1 0 0-16-7-12 6 8 25 7 47-5 59-29 29-104-1-168-65-49-48-77-100-77-144 0-85 109-136 215-136 139 0 232 81 232 145 0 39-33 61-62 70z m-170-185c-85-8-158 30-163 86-6 56 59 107 143 116 85 8 158-30 164-86 5-55-59-107-144-116z m262 340c-33 37-83 52-129 42-10-2-17-13-15-23 2-11 13-18 23-16 33 7 68-3 92-29 24-27 31-63 20-95-3-10 3-21 13-24 10-4 21 2 25 12 0 0 0 0 0 0 14 45 5 96-29 133z m-59-122c9-3 18 2 21 11 7 21 3 46-13 64-17 19-41 25-63 21-9-2-15-11-13-20 2-10 11-15 20-13 10 2 22-1 30-10 8-9 10-21 7-32-3-9 2-18 11-21z m-194-59c-41 10-86-10-104-45-18-36 0-77 40-90 43-13 92 7 110 47 17 38-5 77-46 88z m-31-93c-8-13-26-18-39-12-13 6-17 21-9 33 8 13 25 19 38 13 14-5 18-20 10-34z m27 35c-3-5-10-7-15-5-5 2-6 7-4 12 3 5 10 8 15 6 5-2 7-8 4-13z"/>
107
+ <glyph glyph-name="baidu" unicode="&#57441;" d="M328 349c41-6 67 38 73 71 5 33-22 72-51 79-29 6-65-40-68-71-4-37 5-74 46-79z m-236-107c56 12 48 79 47 93-3 23-30 62-65 59-45-4-52-69-52-69-6-30 15-95 70-83z m103 112c31 0 56 35 56 79 0 44-25 79-56 79-30 0-55-35-55-79 0-44 25-79 55-79z m-44-228c-1-4-5-16-2-27 6-23 27-24 27-24l29 0 0 71-31 0c-14-4-21-15-23-20z m340 167c0 16-13 64-62 64-50 0-56-46-56-78 0-30 3-73 64-71 60 1 54 69 54 85z m-62-140c0 0-64 49-101 102-50 79-122 47-146 7-24-40-61-65-66-72-5-6-77-45-61-115 16-71 72-69 72-69 0 0 41-4 88 6 48 11 89-2 89-2 0 0 112-38 142 34 30 72-17 109-17 109z m-191-107l-72 0c-31 7-44 28-45 32-2 3-11 20-6 49 13 44 52 47 52 47l38 0 0 48 33-1z m135 1l-83 0c-33 8-34 31-34 31l0 92 34 1 0-83c2-9 13-11 13-11l34 0 0 93 36 0z"/>
108
+ <glyph glyph-name="angellist" unicode="&#57442;" d="M76 149c0 21 5 37 14 49 8 10 20 18 37 22-5 14-8 24-8 30 0 11 6 23 18 35 12 12 24 18 35 18 5 0 12-2 20-5-16 46-28 81-35 105-8 27-12 46-12 57 0 16 4 29 12 38 8 9 20 14 34 14 24 0 53-49 87-148l8-25c2 5 4 11 6 17 34 98 64 146 90 146 14 0 24-4 32-13 8-9 12-21 12-35 0-10-4-29-12-57-7-24-18-58-33-100 19-5 33-14 41-27 9-15 14-37 14-67 0-60-18-108-54-146-36-38-81-57-137-57-22 0-43 4-64 12-20 7-37 18-54 33-17 16-29 33-38 50-8 18-13 36-13 54z m33 2c0-8 2-18 7-30 4-10 11-21 20-33 13-18 29-31 48-41 19-9 41-14 65-14 43 0 79 16 109 49 29 32 44 73 44 122 0 15-1 27-3 35-2 8-5 13-10 18-9 7-27 14-53 20-27 6-55 9-85 9-7 0-12-1-14-3-2-1-3-5-3-10 0-14 8-24 23-30 17-7 44-10 83-10l14 0c5 0 9-2 11-6 3-2 5-7 6-15-6-6-15-11-28-16-12-4-21-8-26-13-14-9-24-21-32-34-8-13-12-26-12-38 0-7 2-15 5-25 4-11 6-18 6-22l0-3-2-7c-15 1-26 8-33 20-5 11-8 25-9 41-1 0-3 0-6 0l-6 0c1-2 1-4 1-6 0-10-4-19-12-26-7-7-16-10-27-10-15 0-31 7-47 22-17 16-25 31-25 46 0 2 1 5 2 8 0 2 3 6 8 11 8-11 14-18 17-22 14-20 27-30 38-30 3 0 6 1 9 3 2 2 3 4 3 5 0 3-2 8-6 15-3 5-9 14-19 27-9 12-17 20-22 25-5 4-9 7-11 7-7 0-13-4-19-11-6-8-9-17-9-28z m45 96c0-4 3-12 8-23 5-9 12-20 23-34 10-13 19-24 28-31 8-7 14-10 18-10 2 0 5 1 7 4 2 2 3 5 3 8 0 4-3 13-9 29-7 17-14 32-23 46-7 12-14 20-19 25-6 5-11 7-16 7-4 0-8-2-12-7-5-6-8-10-8-14z m23 217c0-12 4-29 12-54 7-24 18-55 33-95 3 2 8 3 14 3 0 0 1 0 3-1 2 0 4 0 5 0 2 0 6 0 14-1l-35 101c-9 26-17 44-22 52-5 7-9 10-13 10-3 0-6-1-8-4-2-3-3-7-3-11z m83-256c3-8 6-16 10-25 6 7 13 14 20 19-2 0-5 1-8 1-3 1-6 1-7 1-7 2-12 3-15 4z m53 102l33-6c15 42 27 75 35 100 8 27 13 43 13 48 0 6-2 10-4 13-1 2-4 3-8 3-4 0-9-4-15-13-6-10-14-27-22-51z"/>
109
+ <glyph glyph-name="ebay" unicode="&#57443;" d="M512 238l0 30c-4 74-37 227-250 227-253 1-263-197-262-248 0 0-12-230 256-230 230 0 241 144 241 144l-106 0c0 0-20-80-135-77-147 2-153 145-153 145l408 0c0 0 1 3 1 9z m-406 61c0 0 8 129 153 129 146 0 146-129 146-129z"/>
110
+ <glyph glyph-name="imdb" unicode="&#57444;" d="M0 359l53 0 0-204-53 0z m166 0l-12-95-8 52c-2 16-4 31-6 43l-69 0 0-204 47 0 0 135 19-135 33 0 19 138 0-138 46 0 0 204z m152-36c3-1 4-4 5-6 0-3 1-9 1-18l0-79c0-14-1-22-3-25-2-3-7-5-14-5l0 135c5 0 9-1 11-2z m-1-168c13 0 22 1 29 2 6 2 12 4 16 7 4 4 7 9 9 15 2 6 3 18 3 37l0 71c0 20-1 32-2 39-1 7-4 13-9 18-5 5-12 9-20 12-10 2-24 3-50 3l-40 0 0-204z m144 50c0-10-1-16-2-19-1-3-5-4-8-4-4 0-6 1-7 3-1 3-1 9-1 18l0 54c0 9 0 15 1 17 1 2 3 4 7 4 3 0 7-2 8-4 1-3 2-8 2-17z m-69 154l0-204 47 0 3 13c4-5 10-9 15-12 5-2 13-4 19-4 8 0 15 2 21 7 6 4 10 9 12 15 1 6 2 15 2 27l0 59c0 12 0 20-1 24 0 3-2 7-5 11-2 5-6 8-11 10-6 2-12 3-19 3-6 0-14-1-19-4-5-2-10-6-14-11l0 67-50 0z"/>
111
+ <glyph glyph-name="stayfriends" unicode="&#57445;" d="M158 199c0 0 1 29 7 38 6 9 13 16 22 21 9 4 15 6 22 10 0 0 2 1 4 2 6 4 17 11 18 18 0 7 0 7 0 11 0 3-2 11-3 13-3 6-7 2-9 10 0 2-1 13 0 14 0 2 2 3 2 3 0 0 0 6 0 9 0 2 0 14 5 21 6 7 8 12 29 12 20-1 23-7 27-12 4-7 5-20 5-29 0-2 2 2 2-4 1-3 0-10 0-14-1-8-6-3-9-11-1-4-1-9 0-15 0-6 0-8 4-13 3-5 8-9 17-13l1 0c10-4 19-7 27-13 8-6 10-8 13-14 2-6 4-21 4-26 1-6 2-13 2-13 0 0 2 12 9 17 7 6 8 7 17 11 8 4 7 2 16 7 9 5 12 7 14 10 2 3 3 8 1 11-2 3-2 7-6 9-5 4-4 11-7 13-3 2-5 3-5 6-1 4-2 8-1 16 1 7 1 4 2 7 1 3 2 11 3 15 2 3 3 8 6 11 3 3 10 11 25 13 9 1 15 0 22-2 8-3 17-14 19-20 2-6 2-9 2-14 0-1 0-3 0-8 0-2 2-4-1-19-2-5-2-7-7-11-3-2-4-7-7-9-4-3-3-8-2-13 1-5 4-5 9-8 5-3 30-14 37-24 6-10 15-15 17-44 2-10 1-12 1-23 0-11 1-13 1-23l-165 0c0 0-3 33-6 28-4-5-9-29-9-29l-163 0c0 0-5 24-7 29-2 3-4-29-4-29l-159 0c0 0 1 13 2 20 1 11 1 24 4 34 3 11 3 16 9 22 7 5 11 9 16 12 9 4 22 14 13 38-7 16 1 40 10 54 9 13 13 24 32 24 19 0 33-21 37-35 3-15 5-33 1-46-5-15 0-23 21-34 8-4 11-17 13-21z"/>
112
+ <glyph glyph-name="residentadvisor" unicode="&#57446;" d="M0 225c0 51 0 103 0 154 53 0 105 0 158 0 3-1 5-1 7-1 6-1 12-2 17-3 12-2 23-7 33-13 9-5 18-11 26-19 18-18 35-36 53-54 1 0 2-1 2-1-14-15-29-29-43-44-17 17-34 35-51 51-7 8-15 13-24 17-7 3-14 4-22 4-31 0-61 0-92 0-1 0-2 0-2 0 0-10 0-20 0-30 1 0 1 0 3 0 28 0 56 0 85 0 2 0 5 0 7-1 8-1 16-4 22-11 22-22 44-44 66-66 2-2 5-5 8-8 5-4 11-6 17-6 54 0 107 0 161 0 0 0 1 0 2 0-38 39-76 77-114 115 15 14 29 28 43 43 0 0 1-1 2-1 47-48 95-96 142-143 2-2 3-3 4-5 1-2 1-4 2-7 0-1 0-1 0-2 0 0-1-1-1-1 0-5-2-8-5-11-13-13-27-27-40-40-4-4-8-6-13-7-2-1-3-1-6-1-66 0-133 0-199 0-2 0-3 0-4 1-8 1-15 4-21 10-24 23-47 48-71 72-7 6-14 9-23 9-43-1-86-1-129-1z"/>
113
+ <glyph glyph-name="google" unicode="&#57447;" d="M506 273c-1 10-2 21-4 31-80 0-161 0-241 0 0-33 0-67 0-100 0 0 0 0 0 0 0 0 0 0 0 0 47 0 93 0 140 0-6-32-25-61-52-79 0 0 0 0 0 0-17-11-36-19-56-22-20-4-41-4-61 0-21 4-40 13-57 25-25 17-45 43-56 71-1 2-2 5-3 7 0 0 0 0 0 0 0 0 0 0 1 0-11 32-11 68-1 100 8 22 21 43 38 60 20 21 47 36 76 43 25 5 51 4 75-3 21-7 40-18 55-33 16 16 32 31 47 47 9 8 17 17 25 25 0 0 0 0 0 0 0 0 0 0 0 0-24 23-52 40-82 51-55 21-117 21-172 2-63-21-116-68-146-127-10-20-17-42-22-64-11-56-3-115 22-166 17-33 41-62 70-85 27-22 59-38 93-47 43-12 88-12 131-2 39 9 75 28 105 55 31 28 53 66 65 106 9 34 13 69 10 105z"/>
114
+ <glyph glyph-name="yandex" unicode="&#57448;" d="M390 512l-43 0c-4 0-6-2-7-5 0-2-65-199-69-215-4-12-15-53-17-63l-23 62c-5 17-57 162-59 168-1 3-2 7-8 7l-42 0c-4 0-6-4-5-7 1-2 77-206 108-283l0-171c0-3 2-5 5-5l40 0c2 0 4 2 4 5l0 169c26 72 120 328 121 331 1 3 1 7-5 7z"/>
115
+ <glyph glyph-name="sharethis" unicode="&#57449;" d="M181 256c0-2-1-4-1-5l184-92c15 14 35 22 57 22 50 0 90-41 90-90 0-51-40-91-90-91-50 0-90 40-90 91 0 2 1 3 1 5l-184 91c-15-13-35-21-57-21-51 0-91 40-91 90 0 50 40 91 90 91 22 0 43-9 58-22l183 92c0 1 0 3 0 5 0 50 41 90 91 90 50 0 90-40 90-90 0-50-40-91-90-91-22 0-43 8-58 22l-184-92c0-1 1-3 1-5z"/>
116
+ <glyph glyph-name="bandcamp" unicode="&#57450;" d="M0 180l190 0 89 155-190 0z m378 98c-4 6-9 10-17 13-6 3-14 4-23 4-3 0-7 0-10-1-3-1-6-2-10-3-3-2-5-4-8-6-2-2-4-4-6-7l0 0 0 57-25 0 0-155 23 0 0 16 1 0c2-4 4-7 7-10 3-2 6-4 9-5 4-2 8-3 12-3 4-1 7-1 12-1 8 0 15 2 22 5 6 3 11 8 15 13 4 6 7 12 9 19 2 7 3 14 3 22 0 8-1 16-3 23-3 7-7 13-11 19z m-13-56c-1-5-4-9-6-13-3-4-6-7-10-9-4-3-9-4-14-4-5 0-10 1-13 3-5 2-8 5-11 8-2 4-5 8-6 13-1 4-2 10-2 16 0 11 3 21 8 28 5 7 14 11 24 11 5 0 10-1 14-4 4-2 7-5 10-8 2-4 5-8 6-13 2-5 2-10 2-15-1-4-1-9-2-13z m113-19c-5-4-11-6-19-6-5 0-10 1-14 3-3 2-7 5-9 9-2 3-4 8-5 12-1 5-1 9-1 14 0 9 1 15 3 21 2 5 4 9 7 12 3 3 7 5 11 6 3 1 7 2 10 2 7 0 13-2 17-5 5-4 8-9 9-16l25 0c-1 7-3 13-5 18-3 5-7 9-11 13-5 3-10 5-16 7-6 2-13 3-19 3-9 0-18-2-25-5-7-3-13-7-17-12-5-6-8-12-11-20-2-7-4-15-4-23 0-9 2-16 4-24 3-7 6-13 11-18 4-5 10-9 17-12 7-3 15-5 24-5 15 0 26 4 35 12 9 8 14 19 17 34l-25 0c-1-9-4-15-9-20z"/>
117
+ <glyph glyph-name="itunes" unicode="&#57451;" d="M458 489c0 7-1 15-7 20-8 6-19 2-28 0-43-8-87-17-130-26-22-5-44-9-66-13-11-3-22-5-32-7-8-2-15-5-20-12-5-8-3-16-3-25 0-11 0-23 0-34 0-23 0-45 0-68 0-45 0-64 0-109l0-1c0-12 0-23 0-35 0-10 2-21 0-32-3-18-22-19-37-23-18-4-39-7-55-18-26-17-33-53-16-79 19-30 59-32 89-21 17 6 32 17 41 33 8 17 8 38 8 57 0 45 0 90 0 136l-1 68c0 10-1 21 0 31 2 17 20 16 33 19 44 9 89 18 133 27 11 2 22 5 33 7 7 2 16 5 22 1 7-4 6-14 6-20 0-11 0-22 0-34 0-22 0-44 0-66 0-12 0-23 0-35 0-10 1-21 0-31-4-19-23-20-38-23-18-4-39-8-54-18-26-18-33-54-17-80 19-29 59-32 90-21 16 6 32 17 40 33 9 18 8 38 8 57 0 46 0 91 0 136 0 46 0 91 0 136 0 24 1 47 1 70z"/>
118
+ <glyph glyph-name="deezer" unicode="&#57452;" d="M0 141l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m104-148l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m105-74l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m0 36l94 0 0-28-94 0z m0 37l94 0 0-28-94 0z m105-221l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m105-148l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 36l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z m0 37l93 0 0-28-93 0z"/>
119
+ <glyph glyph-name="telegram" unicode="&#57454;" d="M475 472l-455-178c0 0-22-7-20-21 2-14 19-20 19-20l113-38c9-29 36-122 41-140 6-20 10-24 13-25 1 0 2 0 2 0 8-1 14 4 14 4l72 71 114-87c31-13 43 15 43 15l81 408c0 27-37 11-37 11z m-57-93c-8-7-197-180-216-198l-11-94c-1-9-9-9-13-2-8 26-27 95-37 126l268 178c0 0 15 10 15 0 0 0 0-4-6-10z"/>
120
+ <glyph glyph-name="openid" unicode="&#57455;" d="M232 68c-88 11-155 59-155 117 0 55 60 101 142 115l0 49c-125-15-219-82-219-164 0-85 101-154 232-166l78 36 0 438-78-38z m280 148l-11 111-40-22c-37 22-84 38-137 45l0-49c30-6 57-15 79-29l-42-23z"/>
121
+ <glyph glyph-name="amplement" unicode="&#57456;" d="M253 310c23 3 40 7 51 12 18 7 27 20 27 35 0 20-7 34-21 41-14 8-35 12-62 12-30 0-51-8-64-22-9-11-15-26-18-45l-122 0c2 43 14 77 35 104 34 43 91 65 173 65 54 0 101-11 143-32 41-21 62-61 62-119l0-223c0-15 0-34 1-56 1-16 3-28 7-34 5-6 11-11 19-15l0-18-138 0c-4 10-7 19-8 28-2 9-3 18-4 29-17-19-38-35-61-48-27-16-58-24-92-24-44 0-81 12-110 37-29 25-43 61-43 107 0 60 23 103 69 130 26 14 63 25 112 31z m78-59c-8-5-17-9-25-12-8-3-19-7-34-9l-29-5c-27-5-46-11-58-18-20-11-30-29-30-53 0-22 6-38 18-48 12-9 27-14 45-14 27 0 53 8 76 24 24 16 36 45 37 88z"/>
122
+ <glyph glyph-name="viber" unicode="&#57457;" d="M295 383c-6 1-12-4-12-11-1-6 4-12 11-13 40-2 59-22 61-64 1-6 6-11 13-11 0 0 0 0 0 0 7 0 12 6 12 12-3 55-32 84-85 87z m135-120c6 0 12 5 12 11 1 48-13 88-43 120-29 32-70 50-122 55-7 0-12-5-13-12 0-6 5-12 11-13 47-3 81-18 106-46 26-27 38-61 37-103 0-6 5-12 12-12z m3 178c-47 46-107 70-178 71-7 0-12-6-12-12 0-7 5-13 12-13 64 0 119-22 162-64 43-42 65-99 65-174 0-6 6-12 13-12 6 0 12 6 12 12-2 81-26 146-74 192z m45-330c0 0-28 23-42 33-13 10-33 22-44 29-21 11-42 4-50-8l-18-22c-10-11-27-10-27-10-125 32-158 159-158 159 0 0-2 17 9 26l23 18c11 9 18 30 7 50-6 11-19 32-28 45-11 13-34 41-34 41-11 13-27 16-45 7 0 0 0 0 0 0-17-9-32-21-46-37 0 0 0 0 0-1-11-12-17-25-19-38 0-1 0-3 0-5 0-6 0-11 2-17l1 0c5-19 19-51 48-105 19-34 38-63 58-87 10-13 21-26 35-39 0-1 1-2 1-2 1-1 1-1 2-2 0 0 1-1 1-1 1-1 1-1 2-2 13-13 26-24 39-34 24-20 53-39 88-58 53-30 85-43 104-48l1-1c5-1 10-3 16-3 2 0 4 0 6 1 12 2 25 8 37 18 0 0 0 0 1 1 16 14 28 30 37 46 0 0 0 0 0 1 9 17 6 33-7 45z"/>
123
+ <glyph glyph-name="zomato" unicode="&#57458;" d="M407 356c0 0-86 32-151 14-66-18-93-60-93-60 0 0-30-33-52-36-22-3-39-4-111 0l0-35c72 3 89 2 111-1 22-2 52-36 52-36 0 0 27-42 93-60 66-18 152 14 152 14 102 37 104 97 104 97l0 6c0 0-2 60-105 97z m-100-19c-32-1-53-10-67-18 0 0 0-1 0-1-1 0-2 0-3 0-4 0-6 3-6 6 0 3 1 5 3 6 9 4 18 7 30 10 10 4 23 5 37 5 31 0 63-8 80-13 0 0-37 7-74 5z"/>
124
+ <glyph glyph-name="quora" unicode="&#57459;" d="M272 113c-18 34-39 70-79 70-8 0-16-2-23-5l-14 28c17 14 44 25 79 25 54 0 82-26 104-59 14 29 20 67 20 115 0 119-37 180-125 180-86 0-122-61-122-180 0-119 36-179 122-179 14 0 26 2 38 5z m21-42c-19-5-39-8-59-8-114 0-226 92-226 224 0 134 112 225 226 225 117 0 227-91 227-225 0-75-35-135-85-174 16-25 33-41 57-41 25 0 35 20 38 35l33 0c2-20-8-106-102-106-57-1-87 32-109 70z"/>
125
+ <glyph glyph-name="draugiem" unicode="&#57460;" d="M366 348c91-1 145-58 84-135-28-35-75-71-138-93-3-1-6-2-9-3-7-2-12-4-18-6-14-4-26-7-40-10-14-2-27-5-40-6-9-1-18-1-26-1-59-2-103 14-117 48-17 41 18 98 88 142-52-21-146-70-150-140l0-9c1-7 2-14 4-22 15-47 86-69 175-61 9 0 18 1 27 3 13 2 26 4 40 7 13 4 26 7 40 11 3 1 6 2 8 3 7 2 12 4 18 6 78 29 135 66 169 109 20 25 29 48 32 69l0 15c-6 51-66 81-147 73m-60 25c2 0 4 1 6 1 13 3 19 17 20 34 0 17-6 31-20 33-1 1-3 1-4 1-12 0-19-7-23-17-2-5-3-11-3-17 0-8 1-15 3-21 4-8 10-14 21-14z m0-5c-6 0-11-1-15-2l1-1 2-5 1-4 2-4 1-4 0-5 1-5 0-9-1-4-1-10 0-4 0-5-1-4-1-5-1-5-1-4-2-8-1-4-1-3-1-4 0-2-1-2-1-5 0-3-1-3 0-1-1-6 0-4-1-3 0-4-1-4 0-3-1-4 0-3-1-4 0-3c1-11 1-20 2-25 0-6 1-10 3-13 3-4 7-5 14-6 6 1 10 2 13 5 3 2 4 7 6 14 3 16 9 65 15 87 8 31 28 87-21 91-2 0-4 0-6 0z m-61 15c20 0 29 18 29 40 0 21-9 39-28 39l-1 0c-19 0-28-18-28-39 0-22 9-40 28-40z m-39-91c1-7 3-14 5-20 6-25 12-82 14-99 2-18 8-21 21-23 12 1 18 5 20 23 2 17 8 74 14 99 2 6 4 13 5 20 6 23 10 50 0 67-6 11-18 18-40 18-21 0-34-7-40-18-9-17-5-44 1-67z m-27 82c2 0 4 0 6 0 11 0 17 5 21 14 2 5 3 12 3 20-1 6-2 12-3 17-4 11-12 17-23 17-1 0-2 0-3 0-15-2-21-17-20-34 0-17 6-31 19-34z m-6-185c1-7 3-11 6-14 3-3 7-5 13-5 7 0 11 2 14 6 1 3 3 7 3 13 1 5 1 14 2 25l0 0 0 4-1 3 0 4-1 4 0 3-1 4 0 4-1 3 0 4-1 3 0 3 0 0-1 3 0 3-1 3 0 2-1 3 0 2-1 3-1 4-1 5-2 8-1 4-1 4-1 5-1 4-1 5 0 4-2 10 0 13 1 5 1 5 1 4 1 4 2 4 2 5 1 1c-4 1-9 2-15 2-2 0-4 0-6-1-49-4-29-60-21-91 6-22 13-71 15-87z"/>
126
+ <glyph glyph-name="endomodo" unicode="&#57461;" d="M97 347c0 10-7 19-17 22l-63 0c-10-3-17-12-17-22 0-12 10-22 22-22l53 0c13 0 22 10 22 22z m384 56c-26 40-72 61-149 61-11 0-22-1-32-2-2 0-4 0-6 0 0 0 0 0-1 0 0 0-1 0-2-1-40-4-63-4-63-4l-104 0c-12 0-22-10-22-22 0-13 10-22 22-22l94 0c12 0 22-10 22-22 0-11-7-19-17-22-1 0-3 0-5 0l-80 0c-9-3-17-12-17-22 0-12 10-22 22-22l20 0c12 0 22-10 22-22 0-12-10-22-22-22l-101 0c-12 0-22-10-22-22 0-12 10-22 22-22l96 0c12 0 22-10 22-22 0-12-10-22-22-22l-11 0c-12 0-22-10-22-22 0-12 10-22 22-22l43 0c13 0 22-10 22-22 0-12-9-22-22-22l-9 0c-14 0-24-11-24-24 0-13 10-24 24-24l49 0c0 0 30-1 61-4 7-1 14-2 20-3 3 0 5 0 6 0 11-1 21-1 32-1 56 0 107 12 134 23 5 2 9 5 9 11 0 1 0 3-1 3l-9 35c-2 6-5 9-10 9 0 0-2 0-4-1-27-8-60-18-108-18-45 0-76 7-97 27-18 18-27 39-28 76l263 0c8 0 12 7 12 14 1 11 1 26 1 36 1 58-6 106-30 139z m-56-154c-23 0-42 19-42 42 0 23 19 41 42 41 19 0 35-13 40-30-3 4-8 6-12 6-10 0-17-8-17-17 0-9 7-17 17-17 5 0 9 2 12 6-5-18-21-31-40-31z"/>
127
+ <glyph glyph-name="filmweb" unicode="&#57462;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m-59-76c28 0 50-22 50-50 0-29-22-51-50-51-29 0-51 22-51 51 0 28 22 50 51 50z m-129-180c0 28 23 51 51 51 28 0 50-23 50-51 0-28-22-51-50-51-28 0-51 23-51 51z m129-180c-29 0-51 22-51 50 0 29 22 51 51 51 28 0 50-22 50-51 0-28-22-50-50-50z m121 154l-86 0 0 52 86 0z m99-71c-18-27-43-48-72-62l-20 44c44 20 71 64 71 114 0 26-7 50-20 71-12 20-30 36-51 46l21 43c29-14 53-36 71-64 18-28 27-61 27-96 0-34-9-68-27-96z"/>
128
+ <glyph glyph-name="stackexchange" unicode="&#57463;" d="M397 512l-282 0c-36 0-65-30-65-68l0-22 412 0 0 22c0 38-29 68-65 68z m-347-332l0-22c0-38 29-68 65-68l176 0 0-90 87 90 19 0c36 0 65 30 65 67l0 22-412 0z m0 218l0-85 412 0 0 85z m0-110l0-85 412 0 0 85z"/>
129
+ <glyph glyph-name="wykop" unicode="&#57464;" d="M322 400l-46-23c-4-2-5-6-3-10l71-142 1-2c2-4 0-9-4-11l-14-7c-4-2-9-1-11 3l-1 3-70 142c-2 4-7 5-11 3l-45-22c-4-2-6-7-4-10l70-142 2-3c2-4 0-9-4-10l-14-7c-5-2-9-1-11 3l-1 3-70 140c-2 4-7 6-11 4l-45-23c-4-2-6-6-4-10l82-163c2-4 6-6 10-4l6 3 39 20 43 21 46 22 42 21 38 19 8 4c4 2 5 6 3 10l-81 164c-2 4-7 6-11 4z m60 80l-253 0c-71 0-130-58-130-129l0-189c0-71 59-130 130-130l253 0c72 0 130 59 130 130l0 189c-1 71-59 129-130 129z m76-315c0-43-35-78-78-78l-249 0c-43 0-78 35-78 78l0 183c0 43 35 78 78 78l249 0c42 0 78-35 78-78z"/>
130
+ <glyph glyph-name="teamspeak" unicode="&#57465;" d="M236 83c113 19 198 98 198 193 0 109-112 197-250 197-9 0-19 0-28-1 12-6 24-16 34-28 79-3 146-42 172-96 1-1 2-2 2-3 1-2 2-5 3-7 5-13 8-28 8-43 0-63-52-119-125-141 2-3 4-8 1-13l-1-1-2-1c-6-4-6-9-5-17 1-4 3-9 3-14 1-6 0-12-3-18-1-2-4-4-7-7z m15 79c-1-1-1-2-2-2l-2-2c-1 0-1-1-1-1 39 18 66 51 66 88 0 37-26 69-64 87 1-4 1-8 1-12 0-4-1-8-3-11-1-1-1-2-2-3-1-1-2-2-3-3-3-4-3-6-3-9l1-3c13-21 28-43 42-65l1-1c3-7 0-15-6-19-3-3-6-4-9-5-3 0-6-1-8-1-5-1-7-2-8-5-1-3-1-6 0-9 1-1 1-3 2-5 1-2 2-4 3-5l1-2 0-2c-2-6-4-8-6-10z m-108-72c58-11 77-2 82 6 9 18-14 38 7 51 3 5-3 7-5 10-4 8 9 9 9 17-4 8-8 15-5 25 5 12 19 7 28 14 3 3 5 8 3 12-14 21-29 44-43 66l-1 4c-1 12 11 16 12 28-1 34-41 133-98 145 0 0 0-51 0-115 46-35 72-92 62-156-5-39-24-76-51-107z m62 418c-32 0-64-4-93-11l-20-6c-14-5-21-13-24-24l-22-110c-27-11-46-37-46-68 0-41 33-74 74-74 41 0 74 33 74 74 0 27-14 50-35 63l0 137c24 6 49 9 75 9 160 0 290-107 290-238 0-132-130-238-290-238-38 0-75 6-109 17-5-3-9-5-13-7 42-18 89-28 140-28 169 0 306 113 306 252 0 139-137 252-307 252z m-77-217c0-30-25-54-54-54-30 0-55 24-55 54 0 31 25 55 55 55 30 0 54-25 54-55z"/>
131
+ <glyph glyph-name="teamviewer" unicode="&#57466;" d="M256 512c-141 0-256-115-256-256 0-141 115-256 256-256 141 0 256 115 256 256 0 141-115 256-256 256z m63-338l23 56-171 0 22-56-166 82 166 82-21-53 168 0-20 53 166-82z"/>
132
+ <glyph glyph-name="ventrilo" unicode="&#57467;" d="M459 350c-9 36-24 68-49 94-36 35-87 53-154 53-66 0-117-18-153-53-25-26-40-58-49-93-30-5-54-32-54-64l0-66c0-36 29-65 65-65l0 76 43-25c3-1 6-2 9-2l85 0c5 0 10 2 15 6 0 1 0 1 1 1l26 32c0 0 5 6 12 6 4 0 8-1 12-5l26-33c1 0 1-1 1-1 5-4 10-6 15-6l85 0c3 0 6 1 9 2l43 25 0-57-121-141-73 0c-5 0-9-4-9-9 0-5 4-9 9-9l81 0 124 142c31 5 54 32 54 64l0 65c0 31-23 58-53 63z m-210-99l1 1c0-1-1-1-1-1z m13 0c1 0 1 0 0 0z m133 119l-278 0c-3 0-6 0-9-2l-35-20c8 32 22 61 44 83 32 31 77 47 139 47 62 0 108-16 140-47 22-22 35-51 44-83l-36 21c-3 1-6 1-9 1z"/>
133
+ <glyph glyph-name="younow" unicode="&#57468;" d="M353 226c1 18 3 36 5 54 1 14 3 29 5 43 2 16 4 33 6 50 1 5 2 10 2 16 0 1 1 2 2 2 18 5 36 10 53 15 2 0 2 0 3-2 6-29 11-58 17-88 5-20 8-38 12-58 0 0 0-1 1-1 0 2 0 4 0 6-1 20 0 40 1 60 1 13 1 27 2 40 1 17 2 34 2 51 0 2 1 3 3 3 14 4 28 8 42 12 1 0 2 0 2 0 0-5 0-9-1-14-1-11-2-22-3-34-1-15-2-30-4-46-1-14-2-27-3-41-2-15-3-31-4-47-1-10-2-21-3-31 0-1 0-2-1-2-19-6-37-10-56-15-1-1-2 0-2 1-9 37-17 73-25 110-2 11-4 22-6 33 0 1 0 1-1 2 0-8-1-16-1-24-1-13-3-26-4-39-2-13-4-27-5-39-2-15-4-30-6-44-1-4-1-9-2-13 0-1-1-1-2-2-18-5-37-10-57-15-1-1-1 0-2 1-4 23-8 46-12 69-4 23-7 46-11 69-4 20-7 40-11 60 0 1 0 1 1 2 15 4 29 7 43 11 1 1 2 0 2-1 1-10 2-20 3-30 2-16 5-33 7-49 2-23 6-46 7-70 0-2 0-3 1-5 0-1-1-1 0-2 0 1 0 2 0 2z m-261-38c-1 12-3 24-3 36-1 13-2 25-2 38-1 16-2 32-3 49 0 2 0 2 2 3 13 3 26 7 39 10 1 1 2 1 2-1 0-25 2-49 3-73 0-19 1-38 2-56 1-24 1-47 2-70 0-2 0-4 1-6 0-1 0-2-1-2-15-3-29-7-43-12-1 0-1 1-2 2-7 16-13 32-19 48-9 22-18 43-25 65-1-1-1-2 0-3 0-12 1-22 2-34 0-10 1-22 2-32 1-17 2-34 3-50 0-2 0-3 1-5 0-1-1-1-2-2-11-2-21-5-31-9-3-1-6-1-9-2-2-1-2 0-2 1 0 15-1 30-1 46-1 26-2 52-3 79 0 17-1 35-2 53 0 9 0 18-1 27 0 1 1 1 2 2 14 3 28 7 42 11 1 1 2 0 3-1 15-38 30-76 45-114 0 0 0-1 0-1 0 0 0 0 0 1-2 1-2 2-2 2z m192 58c-1 19-1 37-2 56-1 8-2 16-4 24-5 15-14 25-30 28-8 1-17 1-25 0-14-2-27-6-40-12-14-8-23-18-26-34-2-9-2-17-2-26 0-20 1-41 1-61 1-12 1-22 1-34 1-7 2-15 4-23 4-14 14-24 28-28 8-1 15-2 22-1 16 2 31 6 44 13 13 7 21 16 26 29 2 7 3 15 3 22 1 16 0 31 0 47z m-48-57c-2-10-7-14-17-15-2 0-3 0-5 0-5 1-8 4-9 9-1 8-1 16-1 24 0 13 0 26 0 38 0 18 0 36 0 53 0 11 10 19 21 17 4-1 8-5 9-10 0-4 0-8 0-12 2-28 2-56 3-84 0-6 1-13-1-20z"/>
134
+ <glyph glyph-name="raidcall" unicode="&#57469;" d="M99 298l43 31c-10 85 42 148 42 148 0 0-11-5-97-60-86-55-87-77-87-77l0-223 78-117 118 0-118 187c-25 37-15 87 21 111z m294-34c-41-25-95-15-124 25-28 39-21 94 16 125 1 2 3 3 5 4 2 2 3 3 5 4l126 90-183 0-11-7c-83-61-102-179-42-263l12-16c61-84 179-103 263-42l52 38 0 128z"/>
135
+ <glyph glyph-name="mumble" unicode="&#57470;" d="M511 161c2 6 1 13 1 20 0 6-1 12-2 18 0 1 0 1 0 2 0 1 0 3-1 4 0 0 0 0 0 1 0 0 0 1 0 2-2 8-4 15-6 22-2 4-3 9-6 13 0 0 0 0 0 1-1 2-2 5-4 7 0 1 0 1 0 1-1 2-2 4-4 6 0 1-1 2-2 3 0 1-1 2-2 3 0 0 0 1-1 1 0 0 0 1-1 1 0 1-1 2-2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1-1 1 0 1 0 2-1 2 0 0-1 0-1 0 0 2-1 2-2 3-1 1-2 2-3 3 1 2 0 3-1 4-1 4-3 8-7 11 0 1 0 1-1 1-1 2-1 3-1 5-1 3 0 6-1 9 0 0 0 1 0 1 0 3 0 5-1 7 0 1 0 2 0 2 0 2 0 4-1 6 0 0 0 1-1 1 1 2 0 3-1 5 0 0 0 0 0 1 0 0 0 1 0 1-1 7-3 14-5 20-1 4-1 7-3 10 0 0 0 0-1 1-3 8-6 16-10 24-2 3-4 7-6 10 0 1-1 1-1 1 0 1 0 2-1 3 0 0 0 0-1 0 0 2-2 4-4 6 0 0 0 1 0 1 0 0 0 1-1 1 0 0 0 0-1 0 0 1 0 1-1 1 0 1-1 2-2 3 0 0 0 1-1 1 0 0 0 0 0 0-1 2-2 4-4 5 0 0-1 1-1 2 0 1-1 1-2 1 0 1-1 2-1 2 0 1-1 1-1 1-1 1-1 1-1 1 0 1 0 1-1 1 0 2-1 2-2 2-1 2-3 4-5 5-1 1-2 2-3 3 0 1 0 1-1 1 0 1 0 1-1 1 0 1 0 1-1 1 0 0 0 0 0 0 0 0 0 0 0 0-1 2-3 3-5 5 0 0 0 1-1 1 0 1-1 2-2 2-1 1-1 2-2 2 0 1-1 2-2 2-1 1-1 1-2 2 0 0 0 1-1 1 3 2 3 2 2 2 0 1-1 2-2 2 0 0-1 0-1 1 0 1-1 1-1 1 0 0-1 0-1 1 0 0-1 1-1 1-1 1-2 2-3 2 0 1-1 2-2 2-2 1-3 2-5 4-1 1-2 2-4 2-1 1-2 1-3 2-3 2-7 4-11 5-1 0-1 0-1 0-2 1-4 1-6 1-2 0-3 0-4 0-2 0-4 0-6-1-1 0-1 0-1 0-5-1-9-2-13-5-1-2-1-2-2-3-1 0-3-1-4-3 0 0 0 0-1-1-1 0-2-1-2-2-1-1-2-2-2-2-1-1-2-1-2-2 0 0 0 0 1 0 0 0-1 0-1 0-1-1-1-1-1-1-1 0-1-1-2-2-5-7-8-16-8-25 0-11 0-23 0-34 0-13 1-26 0-39 0-11-5-20-15-25-5-2-9-1-13-1 0 0 0 0-1 0-3 1-8 2-11 5-2 1-4 3-6 5 0 1 0 1-1 1-6 7-8 16-8 26 0 25 0 49 0 74 0 6-1 12-3 17-9 22-35 34-57 25-28-11-53-28-73-51-37-40-56-88-58-143 0-7-1-13-6-19-2-2-4-4-5-7-16-27-23-56-24-87-1-11-1-22 1-33 0-3-1-4-3-6-11-11-15-24-8-39 3-7 8-13 14-18 6-4 12-8 18-11 2-1 4-3 5-4 7-10 14-18 24-24 6-5 13-8 20-8 7 0 15 1 22 2 1 0 2 0 3 1 2 1 2 4 2 5 1 2 1 3 4 2 4-1 8-1 12-2 3-1 5 0 6 1 1 1 3 1 4 1 14-3 28-5 42-6 17-2 34-3 51-4 26-1 52-1 78 0 1 0 2 0 3-1 1-3 4-4 7-3 0 0 0-1 0-1 1-1 1-1 2-1 1-1 2-2 3-2 0 0 0-1 0-1 2-1 4-2 7-3 0 0 0 0 1 0 1 0 1-1 3-1 0 0 0 0 1 0 0 0 1-1 1-1 7 0 14 0 21 1 0 0 1 0 2 0 3 0 8 0 11 1 1 0 1 0 2 0 6 1 12 3 17 7 0 0 0 0 0 1 13 11 16 32 6 45-1 1-1 2-1 2 0 1 1 1 2 1 1 0 2 0 4 0 0-1 0-1 0-2-2-2-1-3 1-5 2-3 6-5 9-7 8-4 15-4 23 2 4 3 6 7 9 11 6 7 10 15 13 24 7 19 9 39 9 59 1 12 0 24-1 37-2 14-4 28-8 42-2 8-5 17-9 25-3 8-7 15-12 22-1 1-1 1-1 2 1 1 2 1 3 1 5 0 9 0 14 0 2-1 3-2 5-3 1-2 4-3 5-5 8-9 15-20 19-32 9-22 13-45 15-69 1-18 0-36-4-54-1-5-3-10-7-14-4-4-10-6-16-9-1 0-3-1-3-2-2-4-3-7-4-10-1-3-4-6-4-10-1-1-1-1-1-2-2 0-2-2-3-3-2-2-3-3-3-6 0 0-1 0-1 0-2 0-2-1-3-2-2-2-4-4-6-6-6-6-15-7-23-5-1 0-2 0-2-1 6-2 12-2 19-1 8 0 16 0 24 4 11 5 20 13 28 22 1 2 3 3 3 5 0 0 1 1 1 1 0 0 1 0 0 1 1 1 3 3 4 5 0 0 1 0 0 1 0 0 0 0 1 0 1 1 1 1 1 2 0 1 0 1 0 1 1 0 1 1 1 1 0 1 1 2 1 3 1 0 1 1 1 1 0 1 0 1 0 2 1 0 1 0 1 1 0 0 0 1 0 2 1 0 1 1 1 2 0 1 1 1 1 1 1 1 1 3 1 5 0 0 1 1 1 1 0 0 1 1 0 1 0 1 1 2 1 2 1 0 1 1 0 2 0 0 0 0 0 1 2 3 3 6 3 10 0 0 0 0 0 1 1 1 1 2 1 4 0 0 0 1 0 1 1 1 2 3 1 4 0 0 0 1 0 2 1 1 1 4 1 6 0 0 0 1 0 1 2 3 2 5 1 7z m-206 127c5 3 9 5 13 9 5 4 8 7 11 12 1 0 2 1 3 2 13 17 19 37 20 58 0 1 0 2 0 2-2 2-1 5-1 7 0 8 0 16 0 23 0 1 0 2-1 3 0 1 0 2 0 2 1 1 1 1 2 0 1 0 1-2 2-2 0-1 1-1 1-1 2-2 3-4 5-5 2-3 4-4 6-6 2-3 3-5 5-7 11-16 20-33 26-52 2-6 4-12 4-18 1-6 0-11 0-17 0-1 0-2-2-3-4-3-7-6-10-10 0-1 0-1 0-1 0-2 0-2-1-2-15 0-30 0-44 0-6 0-11 0-16-1 0 0 0 0-1 0 0 0 0 0-1 0-12-1-24-1-36-2-1 0-3-1-4-1-3-2-3-2-5 2 7 1 16 4 24 8z m-229 51c1 3 1 5 2 8 0 0 0 0 0 1 2 5 4 11 5 17 0 0 0 0 0 0 3 4 4 7 5 11 0 0 0 0 1 1 1 1 1 2 2 3 0 1 0 1 0 1 1 0 1 1 1 2 0 0 0 0 0 1 1 1 1 2 2 3 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 1 1 1 0 1 1 2 3 0 0 0 1 1 2 0 0 1 0 1 1 0 1 1 2 1 2 0 0 1 1 1 2 0 0 0 0 0 0 1 1 1 2 1 3 1 1 1 2 2 3 0 0 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 1 0 1 1 2 2 3 1 0 1 1 1 2 0 0 1 0 1 0 0 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 2 1 0 2 1 2 2 4 3 8 7 11 10 1 1 2 1 2 2 1 0 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 2-2-3-2-4-2-5 2 1 3 2 4 3 2 2 5 4 8 6 0 0 1 1 1 1 2 1 3 2 4 3 1 0 1 0 2 1 0 0 0 0 0 0 1 0 1 1 2 1 0 0 0 0 0 0 1 0 1 1 2 1 0 0 0 0 0 0 1 0 2 1 3 2 0 0 0 0 0 0 1 0 1 0 2 1 0 0 0 0 0 0 1 0 1 0 2 1 0 0 0 0 0 0 1 0 1 0 2 1 0 0 1 0 2 1 2 0 4 1 5 3 0 0 1 0 1 0 1 0 1 0 2 1 0 0 0 0 0 0 4 1 8 3 12 5 17 8 34-5 34-21 0-23 0-47 0-69 0-2 0-3-2-3-4 1-7 1-10 1-2 0-3 0-3 2 0 1 0 3-1 5 0 21 0 42 0 63 0 1 0 2-1 3 1 1 0 1-1 2 0 0-1 1-1 1-2 2-4 2-6 1-2 0-4-1-6-2-6-3-12-5-16-9 0 0-1 0-1 0-2-1-4-2-6-4-1 0-2-1-2-1 0 0 0-1-1-1-1-1-2-2-3-3 1 1 2 2 3 3-3-1-5-3-7-5 0 0 0 0-1 0-1 0-1-1-2-2 0 0 0 0 0 0-1 0-2-1-2-2 0 0-1 0-1-1 0 0 0 0-1 0-1 0-1-1-2-2-1-2-3-3-4-4-1-1-2-2-3-3 0 0-1 0-1-1 0 0 0 0-1-1-1 0-1 0-1-1-1 0-2-1-2-2-1-1-2-2-3-3-1-1-1-1-1-2 0-1-1-1-1-1 0 0-1-1-1-1 0 0-1-1-1-1 0 0-1-1-1-1 0 0 0 0 0-1-1 0-2-2-2-4-1 0-1-1-1-1-1 0-1-1-1-1 0-1-1-1-1-1-2-2-4-5-6-8 0 0 0 0 0 0-1-2-3-4-3-6 0 0 0 0 0 0-2-2-3-4-3-6-1 0-1-1-1-2-1 0-1 0-1-1 0-1 0-1-1-1 0 0 0-1-1-1-6-11-10-22-13-34-1-2-2-3-4-2-4 1-8 1-12 0-2-1-2 0-2 1-5 0-5 0-5 0z m-3-20c0 7 5 12 11 12 7 0 13-5 13-12 0-6-6-10-12-11-7 0-12 5-12 11z m46-250c-3 0-6 2-9 3 0 0-1 0-1 1 0 0 1 0 1 0 3 0 6 1 9 0 1-1 3-1 3-2 0-2-2-1-3-2z m65-8c-3 0-7 0-11 0-12 0-26 2-38 4-2 1-4 1-6 2 0 1-2 1-1 2 0 1 1 1 2 1 1 0 2 1 4 1 16-2 32-4 49-7 0 0 1 0 1-1 1 0 2 0 1-1 0-1 0-1-1-1z m30 15c-7 0-12 0-18-1-8 0-15 1-22 2-8 0-15 1-22 2-3 1-6 1-8 1-3 0-4 3-5 4-4 1-8 2-13 3 5-1 9-2 13-3 2 1 1 2 1 3-2 4 0 9 0 13 0 6 0 14-1 20-1 3-2 6-2 10 0 14 1 27 0 41 0 3 0 6 0 9-1 7-1 13-1 20 0 1 0 2 0 3-1 8-2 17-3 26 0 6-1 12-1 17-1 5-2 9-3 14-1 4-2 7-2 11 2 2 4 3 7 3 27 0 54 0 82 0 6 0 9-3 9-9 0-11 0-20 0-31 0-12 0-25 0-37 0-7-3-11-9-11-1 0-2-1-2-2 0-1 0-2 0-2 0-2 0-4 1-5 0-2 3-1 4-1 3-1 6-4 6-9 0-5 0-11 0-16 0-21 0-42 0-63-1-7-5-12-11-12z m18 205c-2 1-5 0-7-1-1 0-1 0-1 0-1 1-2 1-3 1-4 2-9 2-13 1-7 0-15 0-23 0 0 1-1 1-1 1-18 0-35 0-52 0-3 0-6 0-8-1 0 0 0 0-1 0-3 0-5-2-8-2-1 0-3 0-3 1 0 0 0 1 0 2 0-1 0-1 0-1-1-4 0-8 0-12 1-11 2-22 2-33 0-3 0-6 1-9 0-1 0-2 0-3 0-1 0-1 0-2 0-3 0-6 1-8-1-1-1-2-1-3 1-12 1-24 1-36 0-18 0-36-3-54 0-3-1-4-4-4-5 0-9 1-13 0-4-1-6 0-9 3-2 2-1 4-2 6 0 13 0 25-1 37 1 3 1 7 0 11 0 2 0 4 0 6 1 0 1 1 0 1 0 1 0 2 0 2 2 2 1 4 0 6 0 6 1 12 0 18 0 4 0 9 0 13 0 4 0 9-1 13 0 8 0 15 0 23 0 5 0 10-1 16 0 7 0 13-1 19 0 3 3 5 6 5 3 0 5 0 8 0 3 0 5 0 8 0 2 0 3 2 4 4 0 1-2 1-3 2 0 0-1 0-1 0 0 2 0 3 0 5 1 2 1 5 0 7 2 1 5 0 6 1 2 0 1 1 2 2 2 8 3 15 6 22 6 17 14 33 25 47 2 3 4 5 6 8 0 0 1 1 1 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 0 1 0 1 0 0 0-1 0-1 4 4 9 9 14 14 1 0 1 1 2 1 5 5 11 8 16 12 2 1 3 1 3-1 0-15 0-30 0-45 0-2-1-3-2-4-3-1-5-3-5-6 1-12 3-23 7-34 2-6 5-12 9-17 3-5 5-9 9-12 2-3 4-5 7-7 1-2 4-4 6-5 3-3 7-5 11-7 3-2 6-3 10-5-2-1-4 0-4-1-1 0-2 0-2 0z m5-214c12 0 25 0 37 0-12-1-25-1-37 0z m77-34c-1 0-1 0-2 1 0 1 1 1 1 1 1 0 2 0 2-1 0-1-1-1-1-1z m7 16c-2-1-3-1-3 1 0 5-2 11-2 16 0 3-3 6-5 7-1 0-2-1-2 1 0 1 1 2 2 2 4 2 10-1 11-5 2-5 3-10 3-16-1-2-1-5-4-6z m19 23c2-1-1-2-1-4 0-1-1 1-2 1-2-1-3 2-6 2 0 0 0 1 0 1 0 1 1 1 1 2 0 2 1 2 2 2 1 1 2 2 4 2 0 0 1 0 1-1 1-2 1-2 3-2-2-1-3-1-2-3z m84 143c-1 0-1-1-1-2-1-1-2-2-3-2 0 0-1 0-1-1-3 0-7 0-10 0-5 0-9 0-13 0 0 0 0 0-1 0 0 0 0 1-1 0-1 1-2 2-3 4 0 3 0 6 0 9 0 8 1 7-8 6-2 0-2-1-2-2 0-8 0-17 0-25 0-2 1-3 4-3 9 1 19 0 29 1 5 0 8-4 8-9 0-9 0-19 0-29 0-2-1-3-3-3-1-1-3-1-5-1-5-1-11 0-17-1-3 0-6 0-9 0-2 0-3 0-5 0-2 0-2-1-2-3 0-10 0-19 0-29 0 0 0-1 1-1 0 0 0 0 1 0 2-1 3 0 4 0 3 0 3 1 3 3 0 3 0 7 0 10 0 5 1 8 6 10 4 0 8 1 13 1 1-1 3-1 5 0 1 0 2 0 3 0 1-1 1-1 1 0 3-1 4-3 5-5 0 0-1-1-1-2 0-15 0-29 0-44 0-4-1-7-3-10-2-1-4-1-6-1-4 0-8 0-12-1-1 0-3 0-4-1-2 0-5 1-7 0-1 0-1 0-2 0-2 2-3 3-5 4-2 1-11 4-26 5-4 0-7-1-11-1-8-1-15-2-24-5 0-1-1-1-3-3-4-2-7-4-11-4-9 0-18-1-26-1-2 0-4 0-6-1-2 0-5 0-7 0-1 0-3 0-4 0-7-1-16-1-23-1-5 0-8 2-8 7 0 4 0 8 0 12 0 56 0 111 0 167 0 6 3 9 9 9 8 0 17 0 26 0 7 0 10-3 10-10 0-44 0-89 0-133 0-7 0-7 7-7 2 0 3 1 3 3 0 9 0 17 0 25 0 7 3 11 11 11 3 0 6-1 9 0 1 0 2 0 3 0 2 0 4 0 6 0 7 0 10-2 10-9 0-18-1-36 0-53 0-2 0-3 0-4 3 1 6 1 9 2 0 9 0 18 0 26 0 32 0 62 0 94 0 9 0 19 0 29 0 1 0 2 0 3 1 5 0 11 0 16 0 5 4 8 9 8 4 0 9 0 13 0 8 0 16 0 24 0 12 0 24 0 36 0 1 0 2-1 2-1 1 0 2-1 2-2 1-3 1-6 1-9-1-6-2-12-1-18 0-10 1-18 1-27 0-1 0-1 0-1z m5 136c-5 14-11 26-19 38-1 1-1 2-3 3 0-2 0-4 1-6 0 0 0-1-1-2 0-1-1 1-1 1-1 1-1 1-2 1 0 0 0 1 0 1 0 1 0 1-1 1-1 1-1 2-2 3 0 1 0 1-1 1-1 1-1 2-2 3 0 1-1 1-2 2 0 0 0 0 0 1 0 1 0 1-1 1-1 2-3 3-4 4 0 1 0 1-1 1-2 3-3 4-5 6 0 2-2 2-3 2 0 1 0 1-1 1 0 1 0 1-1 1 0 1 0 1-1 1-2 2-4 4-6 6 0 1-1 1-1 1-2 2-3 3-5 4 0 2 0 2-1 2-4 3-7 5-11 7 0 1 0 1-1 1 0 0 0 1-1 1-2 1-3 3-5 2-2-1-1-3-1-5 0-16 0-31 0-46 0-2 0-5 0-7-1 0-1-1-1 0-3 1-4 1-4-3 0-2-1-3-3-2-4 0-8 0-12 0-1 0-2 1-2 2-2 4-2 8-2 11-1 15-1 30-1 45 1 6 1 11 3 17 4 8 13 14 22 14 4 0 8-2 12-4 15-9 28-20 39-32 22-24 38-51 47-81 2-5 4-11 5-16 0-2 0-3-3-2-2 1-5 1-7 0-3 0-4 1-5 3-2 6-4 12-6 18z m21-41c-4-4-7-4-11 0 0 0-1 0-1 0-2 2-4 5-2 8 1 4 4 6 8 6 3 0 7-3 8-6 1-1 1-3 1-4 0-2-2-3-3-4z m-275-162c-2 0-2 0-2-2 0-4 0-9 0-13 0-3 0-7 0-10 0-7 0-7 7-6 2 0 3 1 2 3 0 7 0 14 0 22 0 7 0 7-7 6z m2 83c-1 0-2 0-2-2 0-5 0-9 0-13 0-4 0-7 0-10 0-7 0-7 7-7 2 0 3 1 3 3 0 7 0 15 0 22 0 8 0 8-8 7z"/>
136
+ <glyph glyph-name="medium" unicode="&#57453;" d="M508 395l-162 81c-1 0-1 0-2 0-2 0-5-1-6-2l-99-163 111-181 160 259c1 2 0 5-2 6z m-322-27l0-175 156-78z m169-259l143-72c7-4 14 0 14 9l0 318z m-187 285l-149 74-10 6c-1 0-2 1-3 1-2 0-3-1-4-2-1-1-2-3-2-6l0-341c0-6 4-13 9-15l147-74c2-1 4-2 6-2 5 0 8 4 8 11l0 345c0 1 0 2-2 3z"/>
137
+ <glyph glyph-name="bebee" unicode="&#57471;" d="M160 246c21 9 30 46 111 64 0 13-42 152-129 195-90 41-104-109-66-174 3-12 63-93 84-85z m77 175c20-36 28-70 31-72 3-2 20-17 21-15 5 17 7 27 8 31-36 185-115 127-115 127 0 0 34-34 55-71z m164-51c-3 2-6 3-10 5l1 1 41-11c0 0 7-1 8 7 2 7-3 11-3 11 0 0-38 10-42 11-8 2-22-3-31-7-1 1-2 1-3 1-2 4-10 23-6 25 3 2 52 4 52 4 0 0 7 4 6 12 0 7-10 8-10 8 0 0-58-4-61-4-13-2-7-18-7-18l6-25c-11 0-21-6-28-18-18-29-11-87 24-108 35-21 96-27 113 2 17 29-15 82-50 104z m20-76c-11-9-34-1-49 18-16 19-20 42-8 52 11 9 34 1 49-18 16-19 20-42 8-52z m-300-178c0 0-17-46 11-113 93-12 126 26 126 26 0 0-55 21-80 38-24 15-57 49-57 49z m49 118c0 0-44-27-45-81 0-5 45-68 162-106 30 13 36 83 36 83 0 0-59 29-86 44-27 14-67 60-67 60z m115 58c-63-9-85-44-85-44 0 0 44-59 117-83 1 1-1 66 2 73 4 6 14 10 14 10 0 0-16 12-26 23-12 11-6 22-22 21z"/>
138
+ </font></defs></svg>
@@ -0,0 +1,428 @@
1
+ /*
2
+ Social icons font: <a href="http://www.socicon.com" target="_blank" alt="Free social icons font" title="the social icons font">socicon</a>
3
+ */
4
+ //= depend_on_asset "socicon.eot"
5
+ //= depend_on_asset "socicon.svg"
6
+ //= depend_on_asset "socicon.ttf"
7
+ //= depend_on_asset "socicon.woff"
8
+ <% v = Socicon::Rails::VERSION %>
9
+ @font-face {
10
+ font-family: 'socicon';
11
+ src: url('<%= font_path('socicon.eot') %>?v=<%= v %>');
12
+ src: url('<%= font_path('socicon.eot') %>?#iefix&v=<%= v %>') format('embedded-opentype'),
13
+ url('<%= font_path('socicon.woff') %>?v=<%= v %>') format('woff'),
14
+ url('<%= font_path('socicon.ttf') %>?v=<%= v %>') format('truetype'),
15
+ url('<%= font_path('socicon.svg') %>?v=<%= v %>#socicon') format('svg');
16
+ font-weight: normal;
17
+ font-style: normal;
18
+ }
19
+ [data-icon]:before {
20
+ font-family: "socicon" !important;
21
+ content: attr(data-icon);
22
+ font-style: normal !important;
23
+ font-weight: normal !important;
24
+ font-variant: normal !important;
25
+ text-transform: none !important;
26
+ speak: none;
27
+ line-height: 1;
28
+ -webkit-font-smoothing: antialiased;
29
+ -moz-osx-font-smoothing: grayscale;
30
+ }
31
+
32
+ [class^="socicon-"]:before,
33
+ [class*=" socicon-"]:before {
34
+ font-family: "socicon" !important;
35
+ font-style: normal !important;
36
+ font-weight: normal !important;
37
+ font-variant: normal !important;
38
+ text-transform: none !important;
39
+ speak: none;
40
+ line-height: 1;
41
+ -webkit-font-smoothing: antialiased;
42
+ -moz-osx-font-smoothing: grayscale;
43
+ }
44
+
45
+ .socicon-modelmayhem:before {
46
+ content: "\e000";
47
+ }
48
+ .socicon-mixcloud:before {
49
+ content: "\e001";
50
+ }
51
+ .socicon-drupal:before {
52
+ content: "\e002";
53
+ }
54
+ .socicon-swarm:before {
55
+ content: "\e003";
56
+ }
57
+ .socicon-istock:before {
58
+ content: "\e004";
59
+ }
60
+ .socicon-yammer:before {
61
+ content: "\e005";
62
+ }
63
+ .socicon-ello:before {
64
+ content: "\e006";
65
+ }
66
+ .socicon-stackoverflow:before {
67
+ content: "\e007";
68
+ }
69
+ .socicon-persona:before {
70
+ content: "\e008";
71
+ }
72
+ .socicon-triplej:before {
73
+ content: "\e009";
74
+ }
75
+ .socicon-houzz:before {
76
+ content: "\e00a";
77
+ }
78
+ .socicon-rss:before {
79
+ content: "\e00b";
80
+ }
81
+ .socicon-paypal:before {
82
+ content: "\e00c";
83
+ }
84
+ .socicon-odnoklassniki:before {
85
+ content: "\e00d";
86
+ }
87
+ .socicon-airbnb:before {
88
+ content: "\e00e";
89
+ }
90
+ .socicon-periscope:before {
91
+ content: "\e00f";
92
+ }
93
+ .socicon-outlook:before {
94
+ content: "\e010";
95
+ }
96
+ .socicon-coderwall:before {
97
+ content: "\e011";
98
+ }
99
+ .socicon-tripadvisor:before {
100
+ content: "\e012";
101
+ }
102
+ .socicon-appnet:before {
103
+ content: "\e013";
104
+ }
105
+ .socicon-goodreads:before {
106
+ content: "\e014";
107
+ }
108
+ .socicon-tripit:before {
109
+ content: "\e015";
110
+ }
111
+ .socicon-lanyrd:before {
112
+ content: "\e016";
113
+ }
114
+ .socicon-slideshare:before {
115
+ content: "\e017";
116
+ }
117
+ .socicon-buffer:before {
118
+ content: "\e018";
119
+ }
120
+ .socicon-disqus:before {
121
+ content: "\e019";
122
+ }
123
+ .socicon-vkontakte:before {
124
+ content: "\e01a";
125
+ }
126
+ .socicon-whatsapp:before {
127
+ content: "\e01b";
128
+ }
129
+ .socicon-patreon:before {
130
+ content: "\e01c";
131
+ }
132
+ .socicon-storehouse:before {
133
+ content: "\e01d";
134
+ }
135
+ .socicon-pocket:before {
136
+ content: "\e01e";
137
+ }
138
+ .socicon-mail:before {
139
+ content: "\e01f";
140
+ }
141
+ .socicon-blogger:before {
142
+ content: "\e020";
143
+ }
144
+ .socicon-technorati:before {
145
+ content: "\e021";
146
+ }
147
+ .socicon-reddit:before {
148
+ content: "\e022";
149
+ }
150
+ .socicon-dribbble:before {
151
+ content: "\e023";
152
+ }
153
+ .socicon-stumbleupon:before {
154
+ content: "\e024";
155
+ }
156
+ .socicon-digg:before {
157
+ content: "\e025";
158
+ }
159
+ .socicon-envato:before {
160
+ content: "\e026";
161
+ }
162
+ .socicon-behance:before {
163
+ content: "\e027";
164
+ }
165
+ .socicon-delicious:before {
166
+ content: "\e028";
167
+ }
168
+ .socicon-deviantart:before {
169
+ content: "\e029";
170
+ }
171
+ .socicon-forrst:before {
172
+ content: "\e02a";
173
+ }
174
+ .socicon-play:before {
175
+ content: "\e02b";
176
+ }
177
+ .socicon-zerply:before {
178
+ content: "\e02c";
179
+ }
180
+ .socicon-wikipedia:before {
181
+ content: "\e02d";
182
+ }
183
+ .socicon-apple:before {
184
+ content: "\e02e";
185
+ }
186
+ .socicon-flattr:before {
187
+ content: "\e02f";
188
+ }
189
+ .socicon-github:before {
190
+ content: "\e030";
191
+ }
192
+ .socicon-renren:before {
193
+ content: "\e031";
194
+ }
195
+ .socicon-friendfeed:before {
196
+ content: "\e032";
197
+ }
198
+ .socicon-newsvine:before {
199
+ content: "\e033";
200
+ }
201
+ .socicon-identica:before {
202
+ content: "\e034";
203
+ }
204
+ .socicon-bebo:before {
205
+ content: "\e035";
206
+ }
207
+ .socicon-zynga:before {
208
+ content: "\e036";
209
+ }
210
+ .socicon-steam:before {
211
+ content: "\e037";
212
+ }
213
+ .socicon-xbox:before {
214
+ content: "\e038";
215
+ }
216
+ .socicon-windows:before {
217
+ content: "\e039";
218
+ }
219
+ .socicon-qq:before {
220
+ content: "\e03a";
221
+ }
222
+ .socicon-douban:before {
223
+ content: "\e03b";
224
+ }
225
+ .socicon-meetup:before {
226
+ content: "\e03c";
227
+ }
228
+ .socicon-playstation:before {
229
+ content: "\e03d";
230
+ }
231
+ .socicon-android:before {
232
+ content: "\e03e";
233
+ }
234
+ .socicon-snapchat:before {
235
+ content: "\e03f";
236
+ }
237
+ .socicon-twitter:before {
238
+ content: "\e040";
239
+ }
240
+ .socicon-facebook:before {
241
+ content: "\e041";
242
+ }
243
+ .socicon-googleplus:before {
244
+ content: "\e042";
245
+ }
246
+ .socicon-pinterest:before {
247
+ content: "\e043";
248
+ }
249
+ .socicon-foursquare:before {
250
+ content: "\e044";
251
+ }
252
+ .socicon-yahoo:before {
253
+ content: "\e045";
254
+ }
255
+ .socicon-skype:before {
256
+ content: "\e046";
257
+ }
258
+ .socicon-yelp:before {
259
+ content: "\e047";
260
+ }
261
+ .socicon-feedburner:before {
262
+ content: "\e048";
263
+ }
264
+ .socicon-linkedin:before {
265
+ content: "\e049";
266
+ }
267
+ .socicon-viadeo:before {
268
+ content: "\e04a";
269
+ }
270
+ .socicon-xing:before {
271
+ content: "\e04b";
272
+ }
273
+ .socicon-myspace:before {
274
+ content: "\e04c";
275
+ }
276
+ .socicon-soundcloud:before {
277
+ content: "\e04d";
278
+ }
279
+ .socicon-spotify:before {
280
+ content: "\e04e";
281
+ }
282
+ .socicon-grooveshark:before {
283
+ content: "\e04f";
284
+ }
285
+ .socicon-lastfm:before {
286
+ content: "\e050";
287
+ }
288
+ .socicon-youtube:before {
289
+ content: "\e051";
290
+ }
291
+ .socicon-vimeo:before {
292
+ content: "\e052";
293
+ }
294
+ .socicon-dailymotion:before {
295
+ content: "\e053";
296
+ }
297
+ .socicon-vine:before {
298
+ content: "\e054";
299
+ }
300
+ .socicon-flickr:before {
301
+ content: "\e055";
302
+ }
303
+ .socicon-500px:before {
304
+ content: "\e056";
305
+ }
306
+ .socicon-instagram:before {
307
+ content: "\e057";
308
+ }
309
+ .socicon-wordpress:before {
310
+ content: "\e058";
311
+ }
312
+ .socicon-tumblr:before {
313
+ content: "\e059";
314
+ }
315
+ .socicon-twitch:before {
316
+ content: "\e05a";
317
+ }
318
+ .socicon-8tracks:before {
319
+ content: "\e05b";
320
+ }
321
+ .socicon-amazon:before {
322
+ content: "\e05c";
323
+ }
324
+ .socicon-icq:before {
325
+ content: "\e05d";
326
+ }
327
+ .socicon-smugmug:before {
328
+ content: "\e05e";
329
+ }
330
+ .socicon-ravelry:before {
331
+ content: "\e05f";
332
+ }
333
+ .socicon-weibo:before {
334
+ content: "\e060";
335
+ }
336
+ .socicon-baidu:before {
337
+ content: "\e061";
338
+ }
339
+ .socicon-angellist:before {
340
+ content: "\e062";
341
+ }
342
+ .socicon-ebay:before {
343
+ content: "\e063";
344
+ }
345
+ .socicon-imdb:before {
346
+ content: "\e064";
347
+ }
348
+ .socicon-stayfriends:before {
349
+ content: "\e065";
350
+ }
351
+ .socicon-residentadvisor:before {
352
+ content: "\e066";
353
+ }
354
+ .socicon-google:before {
355
+ content: "\e067";
356
+ }
357
+ .socicon-yandex:before {
358
+ content: "\e068";
359
+ }
360
+ .socicon-sharethis:before {
361
+ content: "\e069";
362
+ }
363
+ .socicon-bandcamp:before {
364
+ content: "\e06a";
365
+ }
366
+ .socicon-itunes:before {
367
+ content: "\e06b";
368
+ }
369
+ .socicon-deezer:before {
370
+ content: "\e06c";
371
+ }
372
+ .socicon-telegram:before {
373
+ content: "\e06e";
374
+ }
375
+ .socicon-openid:before {
376
+ content: "\e06f";
377
+ }
378
+ .socicon-amplement:before {
379
+ content: "\e070";
380
+ }
381
+ .socicon-viber:before {
382
+ content: "\e071";
383
+ }
384
+ .socicon-zomato:before {
385
+ content: "\e072";
386
+ }
387
+ .socicon-quora:before {
388
+ content: "\e073";
389
+ }
390
+ .socicon-draugiem:before {
391
+ content: "\e074";
392
+ }
393
+ .socicon-endomodo:before {
394
+ content: "\e075";
395
+ }
396
+ .socicon-filmweb:before {
397
+ content: "\e076";
398
+ }
399
+ .socicon-stackexchange:before {
400
+ content: "\e077";
401
+ }
402
+ .socicon-wykop:before {
403
+ content: "\e078";
404
+ }
405
+ .socicon-teamspeak:before {
406
+ content: "\e079";
407
+ }
408
+ .socicon-teamviewer:before {
409
+ content: "\e07a";
410
+ }
411
+ .socicon-ventrilo:before {
412
+ content: "\e07b";
413
+ }
414
+ .socicon-younow:before {
415
+ content: "\e07c";
416
+ }
417
+ .socicon-raidcall:before {
418
+ content: "\e07d";
419
+ }
420
+ .socicon-mumble:before {
421
+ content: "\e07e";
422
+ }
423
+ .socicon-medium:before {
424
+ content: "\e06d";
425
+ }
426
+ .socicon-bebee:before {
427
+ content: "\e07f";
428
+ }
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: socicon-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Tim Maslyuchenko
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-04-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.1'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '3.2'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.1'
33
+ - !ruby/object:Gem::Dependency
34
+ name: activesupport
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: sass-rails
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ description: an asset gemification of the socicon icon font library
62
+ email:
63
+ - insside@gmail.com
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files: []
67
+ files:
68
+ - ".gitignore"
69
+ - ".travis.yml"
70
+ - Gemfile
71
+ - LICENSE.txt
72
+ - README.md
73
+ - Rakefile
74
+ - bin/console
75
+ - bin/setup
76
+ - gemfiles/rails-3.2.gemfile
77
+ - gemfiles/rails-4.1.gemfile
78
+ - gemfiles/rails-4.2.gemfile
79
+ - gemfiles/rails-master.gemfile
80
+ - gemfiles/sprockets-backport.gemfile
81
+ - lib/socicon-rails.rb
82
+ - lib/socicon/rails.rb
83
+ - lib/socicon/rails/engine.rb
84
+ - lib/socicon/rails/version.rb
85
+ - socicon-rails.gemspec
86
+ - vendor/assets/fonts/socicon.eot
87
+ - vendor/assets/fonts/socicon.svg
88
+ - vendor/assets/fonts/socicon.ttf
89
+ - vendor/assets/fonts/socicon.woff
90
+ - vendor/assets/stylesheets/socicon.css.erb
91
+ homepage: http://socicon.com/
92
+ licenses:
93
+ - SIL Open Font License 1.1
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubyforge_project:
111
+ rubygems_version: 2.5.2
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: socicon + sprockets = <3
115
+ test_files: []