Social Icons Widget by WPZOOM - Version 1.0.3

Version Description

  • Updated Google+ icon
  • Added new icons: Airbnb, Baidu, eBay, Medium, Periscope
Download this release

Release Info

Developer WPZOOM
Plugin Icon 128x128 Social Icons Widget by WPZOOM
Version 1.0.3
Comparing to
See all releases

Version 1.0.3

class.zoom-social-icons-widget.php ADDED
@@ -0,0 +1,451 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Zoom_Social_Icons_Widget extends WP_Widget {
4
+ /**
5
+ * @var array Default widget options.
6
+ */
7
+ protected $defaults;
8
+
9
+ /**
10
+ * @var string Path to plugin file.
11
+ */
12
+ protected $plugin_file;
13
+
14
+ /**
15
+ * @var array List of supported icons.
16
+ */
17
+ protected $icons = array(
18
+ '500px',
19
+ 'airbnb',
20
+ 'android',
21
+ 'apple',
22
+ 'appnet',
23
+ 'baidu',
24
+ 'bebo',
25
+ 'behance',
26
+ 'blogger',
27
+ 'buffer',
28
+ 'coderwall',
29
+ 'dailymotion',
30
+ 'delicious',
31
+ 'deviantart',
32
+ 'digg',
33
+ 'disqus',
34
+ 'dribbble',
35
+ 'drupal',
36
+ 'ebay',
37
+ 'envato',
38
+ 'facebook',
39
+ 'feedburner',
40
+ 'flattr',
41
+ 'flickr',
42
+ 'foursquare',
43
+ 'friendfeed',
44
+ 'github',
45
+ 'goodreads',
46
+ 'google',
47
+ 'grooveshark',
48
+ 'houzz',
49
+ 'identica',
50
+ 'instagram',
51
+ 'lanyrd',
52
+ 'lastfm',
53
+ 'linkedin',
54
+ 'mail',
55
+ 'medium',
56
+ 'meetup',
57
+ 'myspace',
58
+ 'newsvine',
59
+ 'odnoklassniki',
60
+ 'outlook',
61
+ 'patreon',
62
+ 'paypal',
63
+ 'periscope',
64
+ 'persona',
65
+ 'pinterest',
66
+ 'play',
67
+ 'playstation',
68
+ 'reddit',
69
+ 'rss',
70
+ 'skype',
71
+ 'slideshare',
72
+ 'smugmug',
73
+ 'soundcloud',
74
+ 'spotify',
75
+ 'stackoverflow',
76
+ 'steam',
77
+ 'stumbleupon',
78
+ 'swarm',
79
+ 'technorati',
80
+ 'tripadvisor',
81
+ 'tripit',
82
+ 'triplej',
83
+ 'tumblr',
84
+ 'twitter',
85
+ 'viadeo',
86
+ 'vimeo',
87
+ 'vine',
88
+ 'vkontakte',
89
+ 'wikipedia',
90
+ 'windows',
91
+ 'wordpress',
92
+ 'xbox',
93
+ 'xing',
94
+ 'yahoo',
95
+ 'yammer',
96
+ 'yelp',
97
+ 'youtube',
98
+ 'zerply',
99
+ 'zynga'
100
+ );
101
+
102
+ /**
103
+ * Widget constructor.
104
+ */
105
+ public function __construct() {
106
+ parent::__construct(
107
+ 'zoom-social-icons-widget',
108
+ esc_html__( 'Social Icons by WPZOOM', 'zoom-social-icons-widget' ),
109
+ array(
110
+ 'classname' => 'zoom-social-icons-widget',
111
+ 'description' => __( 'Social Icons Widget.', 'zoom-social-icons-widget' ),
112
+ )
113
+ );
114
+
115
+ $this->defaults = apply_filters( 'zoom-social-icons-widget-defaults', array(
116
+ 'title' => esc_html__( 'Social Icons', 'zoom-social-icons-widget' ),
117
+ 'description' => '',
118
+ 'show-icon-labels' => false,
119
+ 'open-new-tab' => true,
120
+ 'icon-style' => 'with-canvas',
121
+ 'icon-canvas-style' => 'rounded',
122
+ 'fields' => array(
123
+ array(
124
+ 'url' => 'https://facebook.com/',
125
+ 'label' => __( 'Friend me on Facebook', 'zoom-social-icons-widget' )
126
+ ),
127
+ array(
128
+ 'url' => 'https://twitter.com/',
129
+ 'label' => __( 'Follow Me', 'zoom-social-icons-widget' )
130
+ )
131
+ )
132
+ ) );
133
+
134
+ $this->plugin_file = dirname( __FILE__ ) . '/social-icons-widget-by-wpzoom.php';
135
+
136
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
137
+ add_action( 'admin_print_footer_scripts', array( $this, 'admin_js_templates' ) );
138
+
139
+ add_action( 'wp_enqueue_scripts', array( $this, 'scripts' ) );
140
+ }
141
+
142
+ /**
143
+ * Script & styles for back-end widget form.
144
+ */
145
+ public function admin_scripts() {
146
+ wp_enqueue_script( 'zoom-social-icons-widget', plugin_dir_url( $this->plugin_file ) . 'social-icons-widget.js', array( 'jquery', 'jquery-ui-sortable' ), '20150203' );
147
+ wp_enqueue_style( 'socicon', plugin_dir_url( $this->plugin_file ) . 'css/socicon.css', array(), '20150204' );
148
+ wp_enqueue_style( 'social-icons-widget-admin', plugin_dir_url( $this->plugin_file ) . 'css/social-icons-widget-admin.css', array( 'socicon' ), '20150206' );
149
+ }
150
+
151
+ /**
152
+ * JavaScript templates for back-end widget form.
153
+ */
154
+ public function admin_js_templates() {
155
+ ?>
156
+
157
+ <script type="text/html" id="tmpl-zoom-social-icons-field"><?php $this->list_field_template(); ?></script>
158
+
159
+ <?php
160
+ }
161
+
162
+ /**
163
+ * Scripts & styles for front-end display of widget.
164
+ */
165
+ public function scripts() {
166
+ wp_enqueue_style( 'socicon', plugin_dir_url( $this->plugin_file ) . 'css/socicon.css', array(), '20150204' );
167
+ }
168
+
169
+ /**
170
+ * Front-end display of widget.
171
+ *
172
+ * @see WP_Widget::widget()
173
+ *
174
+ * @param array $args Widget arguments.
175
+ * @param array $instance Saved values from database.
176
+ */
177
+ public function widget( $args, $instance ) {
178
+ $instance = wp_parse_args( (array) $instance, $this->defaults );
179
+
180
+ echo $args['before_widget'];
181
+
182
+ if ( $instance['title'] ) {
183
+ echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title'];
184
+ }
185
+
186
+ $class_list = array();
187
+ $class_list[] = 'zoom-social-icons-list--' . $instance['icon-style'];
188
+ $class_list[] = 'zoom-social-icons-list--' . $instance['icon-canvas-style'];
189
+
190
+ if ( ! $instance['show-icon-labels'] ) {
191
+ $class_list[] = 'zoom-social-icons-list--no-labels';
192
+ }
193
+ ?>
194
+
195
+ <?php if ( ! empty( $instance['description'] ) ) : ?>
196
+
197
+ <p><?php echo $instance['description']; ?></p>
198
+
199
+ <?php endif; ?>
200
+
201
+ <ul class="zoom-social-icons-list <?php echo esc_attr( implode(' ', $class_list) ); ?>">
202
+
203
+ <?php foreach ( $instance['fields'] as $field ) : ?>
204
+
205
+ <li class="zoom-social_icons-list__item">
206
+ <a href="<?php echo esc_url( $field['url'] ); ?>" <?php echo ( $instance['open-new-tab'] ? 'target="_blank"' : '' ); ?>>
207
+ <span class="socicon socicon-<?php echo esc_attr( $this->get_icon( $field['url'] ) ); ?>"></span>
208
+
209
+ <?php if ( $instance['show-icon-labels'] ) : ?>
210
+ <span class="zoom-social_icons-list__label"><?php echo esc_html( $field['label'] ); ?></span>
211
+ <?php endif; ?>
212
+ </a>
213
+ </li>
214
+
215
+ <?php endforeach; ?>
216
+
217
+ </ul>
218
+
219
+ <?php
220
+
221
+ echo $args['after_widget'];
222
+ }
223
+
224
+ /**
225
+ * Sanitize widget form values as they are saved.
226
+ *
227
+ * @see WP_Widget::update()
228
+ *
229
+ * @param array $new_instance Values just sent to be saved.
230
+ * @param array $old_instance Previously saved values from database.
231
+ *
232
+ * @return array Updated safe values to be saved.
233
+ */
234
+ public function update( $new_instance, $old_instance ) {
235
+ $instance['title'] = sanitize_text_field( $new_instance['title'] );
236
+
237
+ $instance['description'] = balanceTags( wp_kses( $new_instance['description'], wp_kses_allowed_html() ), true );
238
+
239
+ $instance['show-icon-labels'] = (bool) $new_instance['show-icon-labels'];
240
+ $instance['open-new-tab'] = (bool) $new_instance['open-new-tab'];
241
+
242
+ $instance['icon-style'] = $this->defaults['icon-style'];
243
+ if ( in_array( $new_instance['icon-style'], array( 'with-canvas', 'without-canvas' ) ) ) {
244
+ $instance['icon-style'] = $new_instance['icon-style'];
245
+ }
246
+
247
+ $instance['icon-canvas-style'] = $this->defaults['icon-canvas-style'];
248
+ if ( in_array( $new_instance['icon-canvas-style'], array( 'rounded', 'round', 'square' ) ) ) {
249
+ $instance['icon-canvas-style'] = $new_instance['icon-canvas-style'];
250
+ }
251
+
252
+ $field_count = count( $new_instance['url-fields'] );
253
+
254
+ $instance['fields'] = array();
255
+
256
+ for ( $i = 0; $i < $field_count; $i ++ ) {
257
+ $url = esc_url( $new_instance['url-fields'][ $i ] );
258
+ $label = esc_html( $new_instance['label-fields'][ $i ] );
259
+
260
+ if ( $url ) {
261
+ $instance['fields'][] = array(
262
+ 'url' => $url,
263
+ 'label' => $label
264
+ );
265
+ }
266
+ }
267
+
268
+ return $instance;
269
+ }
270
+
271
+ /**
272
+ * Back-end widget form.
273
+ *
274
+ * @see WP_Widget::form()
275
+ *
276
+ * @param array $instance Previously saved values from database.
277
+ *
278
+ * @return string|void
279
+ */
280
+ public function form( $instance ) {
281
+ $instance = wp_parse_args( (array) $instance, $this->defaults );
282
+ ?>
283
+
284
+ <p>
285
+ <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'zoom-social-icons-widget' ); ?></label>
286
+ <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>"/>
287
+ </p>
288
+
289
+ <p>
290
+ <label for="<?php echo $this->get_field_id( 'description' ); ?>"><?php esc_html_e( 'Description:', 'zoom-social-icons-widget' ); ?></label>
291
+ <textarea class="widefat" id="<?php echo $this->get_field_id( 'description' ); ?>" name="<?php echo $this->get_field_name( 'description' ); ?>" cols="20" rows="3"><?php echo esc_attr( $instance['description'] ); ?></textarea>
292
+ <small><?php _e( 'Short description to be displayed right above the icons. Basic HTML allowed.', 'zoom-social-icons-widget' ); ?></small>
293
+ </p>
294
+
295
+ <p>
296
+ <input class="checkbox zoom-social-icons-show-icon-labels" type="checkbox" <?php checked( $instance['show-icon-labels'] ); ?> id="<?php echo $this->get_field_id( 'show-icon-labels' ); ?>" name="<?php echo $this->get_field_name( 'show-icon-labels' ); ?>" />
297
+ <label for="<?php echo $this->get_field_id( 'show-icon-labels' ); ?>"><?php _e(' Show icon labels? ', 'zoom-social-icons-widget'); ?></label>
298
+ </p>
299
+
300
+ <p>
301
+ <input class="checkbox" type="checkbox" <?php checked( $instance['open-new-tab'] ); ?> id="<?php echo $this->get_field_id( 'open-new-tab' ); ?>" name="<?php echo $this->get_field_name( 'open-new-tab' ); ?>" />
302
+ <label for="<?php echo $this->get_field_id( 'open-new-tab' ); ?>"><?php _e(' Open links in new tab? ', 'zoom-social-icons-widget'); ?></label>
303
+ </p>
304
+
305
+ <p>
306
+ <label for="<?php echo $this->get_field_id( 'icon-style' ); ?>"><?php _e( 'Icon Style:', 'zoom-social-icons-widget' ); ?></label>
307
+ <select name="<?php echo $this->get_field_name( 'icon-style' ); ?>" id="<?php echo $this->get_field_id( 'icon-style' ); ?>" class="widefat">
308
+ <option value="with-canvas"<?php selected( $instance['icon-style'], 'with-canvas' ); ?>><?php esc_html_e( 'Color Background / White Icon', 'zoom-social-icons-widget' ); ?></option>
309
+ <option value="without-canvas"<?php selected( $instance['icon-style'], 'without-canvas' ); ?>><?php esc_html_e( 'Color Icon / No Background', 'zoom-social-icons-widget' ); ?></option>
310
+ </select>
311
+ </p>
312
+
313
+ <p>
314
+ <label for="<?php echo $this->get_field_id( 'icon-canvas-style' ); ?>"><?php _e( 'Icon Background Style:', 'zoom-social-icons-widget' ); ?></label>
315
+ <select name="<?php echo $this->get_field_name( 'icon-canvas-style' ); ?>" id="<?php echo $this->get_field_id( 'icon-canvas-style' ); ?>" class="widefat">
316
+ <option value="rounded"<?php selected( $instance['icon-canvas-style'], 'rounded' ); ?>><?php esc_html_e( 'Rounded Corners', 'zoom-social-icons-widget' ); ?></option>
317
+ <option value="round"<?php selected( $instance['icon-canvas-style'], 'round' ); ?>><?php esc_html_e( 'Round', 'zoom-social-icons-widget' ); ?></option>
318
+ <option value="square"<?php selected( $instance['icon-canvas-style'], 'square' ); ?>><?php esc_html_e( 'Square', 'zoom-social-icons-widget' ); ?></option>
319
+ </select>
320
+ </p>
321
+
322
+ <p>
323
+ <small>
324
+ <?php echo wp_kses_post( __( 'Icon Background Style has no effect on <i>Color Icon / No Background</i> icon style.', 'zoom-social-icons-widget' ) ); ?>
325
+ </small>
326
+ </p>
327
+
328
+ <p style="margin-bottom: 0;"><?php _e( 'Icons:', 'zoom-social-icons-widget' ); ?></p>
329
+
330
+ <ul class="zoom-social-icons__list <?php echo ($instance['show-icon-labels'] ? '' : 'zoom-social-icons__list--no-labels'); ?>"
331
+ data-url-field-id="<?php echo $this->get_field_id( 'url-fields' ); ?>"
332
+ data-url-field-name="<?php echo $this->get_field_name( 'url-fields' ); ?>"
333
+ data-label-field-id="<?php echo $this->get_field_id( 'label-fields' ); ?>"
334
+ data-label-field-name="<?php echo $this->get_field_name( 'label-fields' ); ?>">
335
+
336
+ <?php
337
+ foreach ( $instance['fields'] as $field ) {
338
+ $this->list_field_template( array(
339
+ 'url-field-id' => $this->get_field_id( 'url-fields' ),
340
+ 'url-field-name' => $this->get_field_name( 'url-fields' ),
341
+ 'url-value' => $field['url'],
342
+ 'label-field-id' => $this->get_field_id( 'label-fields' ),
343
+ 'label-field-name' => $this->get_field_name( 'label-fields' ),
344
+ 'label-value' => $field['label'],
345
+ ) );
346
+ }
347
+ ?>
348
+
349
+ </ul>
350
+
351
+ <div class="zoom-social-icons__add-button">
352
+ <button class="button"><?php _e( 'Add more', 'zoom-social-icons-widget' ); ?></button>
353
+ </div>
354
+
355
+ <p>
356
+ <small>
357
+ <?php echo wp_kses_post( __( 'Note that icons above is not how they will look on front-end. This is just for reference.', 'zoom-social-icons-widget' ) ); ?>
358
+ </small>
359
+ </p>
360
+
361
+ <?php
362
+ }
363
+
364
+ /**
365
+ * Generates template for field item, used for widget options in wp-admin directly and by javascript.
366
+ *
367
+ * @param array $args Template arguments
368
+ */
369
+ protected function list_field_template( $args = array() ) {
370
+ $defaults = array(
371
+ 'url-field-id' => '',
372
+ 'url-field-name' => '',
373
+ 'url-value' => '',
374
+ 'label-field-id' => '',
375
+ 'label-field-name' => '',
376
+ 'label-value' => '',
377
+ );
378
+
379
+ $args = wp_parse_args( $args, $defaults );
380
+
381
+ $icon_class = 'dashicons dashicons-sort';
382
+ if ( ( $icon = $this->get_icon( $args['url-value'] ) ) ) {
383
+ $icon_class = 'socicon socicon-' . $icon;
384
+ }
385
+
386
+ ?>
387
+
388
+ <li class="zoom-social-icons__field">
389
+ <div class="zoom-social-icons__cw">
390
+ <div class="zoom-social-icons__inputs">
391
+
392
+ <?php
393
+ printf('<input class="widefat zoom-social-icons__field-url" id="%1$s" name="%2$s[]" type="text" placeholder="%3$s" value="%4$s">',
394
+ $args['url-field-id'],
395
+ $args['url-field-name'],
396
+ __('URL', 'zoom-social-icons-widget'),
397
+ esc_attr( $args['url-value'] )
398
+ );
399
+
400
+ printf('<input class="widefat zoom-social-icons__field-label" id="%1$s" name="%2$s[]" type="text" placeholder="%3$s" value="%4$s">',
401
+ $args['label-field-id'],
402
+ $args['label-field-name'],
403
+ __( 'Label', 'zoom-social-icons-widget' ),
404
+ esc_attr( $args['label-value'] )
405
+ );
406
+ ?>
407
+
408
+ </div>
409
+ </div>
410
+
411
+ <span class="zoom-social-icons__field-handle <?php echo $icon_class; ?>"></span>
412
+ <a class="zoom-social-icons__field-trash" href="#"><span class="dashicons dashicons-trash"></span></a>
413
+
414
+ <br style="clear:both">
415
+ </li>
416
+
417
+ <?php
418
+ }
419
+
420
+ /**
421
+ * Returns an icon identifier for given website url.
422
+ *
423
+ * @param $url string Profile URL
424
+ *
425
+ * @return string icon id that matches given url
426
+ */
427
+ protected function get_icon( $url ) {
428
+ $icon = '';
429
+
430
+ if ( $url ) {
431
+ if ( strstr( $url, 'feedburner.google.com' ) ) {
432
+ $icon = 'mail';
433
+ }
434
+
435
+ if ( strstr( $url, 'feedburner.com') ) {
436
+ $icon = 'rss';
437
+ }
438
+
439
+ if ( ! $icon ) {
440
+ foreach ( $this->icons as $icon_id ) {
441
+ if ( strstr( $url, $icon_id ) ) {
442
+ $icon = $icon_id;
443
+ break;
444
+ }
445
+ }
446
+ }
447
+ }
448
+
449
+ return apply_filters( 'zoom-social-icons-widget-icon', $icon, $url );
450
+ }
451
+ }
css/social-icons-widget-admin.css ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .zoom-social-icons__list--no-labels .zoom-social-icons__field-label { display: none; }
2
+ .zoom-social-icons__field { padding: 6px 0; display: block; margin: 0; }
3
+ .zoom-social-icons__field + .zoom-social-icons__field { border-top: 1px solid #efefef; }
4
+
5
+ .zoom-social-icons__cw { float: left; width: 100%; }
6
+ .zoom-social-icons__inputs { margin-left: 40px; margin-right: 30px; }
7
+ .zoom-social-icons__field-url + .zoom-social-icons__field-label { margin-top: 2px; }
8
+
9
+ .zoom-social-icons__field-handle, .zoom-social-icons__field-trash { float: left; width: 30px; margin-top: 12px; }
10
+ .zoom-social-icons__field-handle { width: 40px; margin-left: -100%; }
11
+ .zoom-social-icons__field-handle:hover { cursor: move; }
12
+ .zoom-social-icons__field-trash { margin-top: 18px; margin-left: -30px; text-decoration: none; display: block; text-align: right; }
13
+
14
+ .zoom-social-icons__list--no-labels .zoom-social-icons__field-handle { margin-top: -4px; }
15
+ .zoom-social-icons__list--no-labels .zoom-social-icons__field-trash { margin-top: 2px; }
16
+
17
+ .zoom-social-icons__field-handle.dashicons { width: 30px; margin-top: 18px; }
18
+ .zoom-social-icons__list--no-labels .zoom-social-icons__field-handle.dashicons { margin-top: 3px; }
19
+
20
+ .zoom-social-icons__add-button { margin-bottom: 10px; }
21
+
22
+ .zoom-social-icons__field-handle.socicon { color: white; padding: 6px; border-radius: 20px; }
css/socicon.css ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'socicon';
3
+ src: url('../font/socicon-webfont.eot');
4
+ src: url('../font/socicon-webfont.eot?#iefix') format('embedded-opentype'),
5
+ url('../font/socicon-webfont.woff') format('woff'),
6
+ url('../font/socicon-webfont.woff2') format('woff2'),
7
+ url('../font/socicon-webfont.ttf') format('truetype'),
8
+ url('../font/socicon-webfont.svg#sociconregular') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ text-transform: initial;
12
+ }
13
+
14
+ /* inline icon
15
+ ========================================================================== */
16
+ .socicon {
17
+ position: relative;
18
+ top: 3px;
19
+ display: inline-block;
20
+ font-family: 'socicon';
21
+ font-style: normal;
22
+ font-weight: normal;
23
+ line-height: 1;
24
+ -webkit-font-smoothing: antialiased;
25
+ font-size: 1.2em;
26
+ }
27
+ .socicon:empty {
28
+ width: 1em;
29
+ }
30
+
31
+
32
+
33
+ .socicon-500px { background-color: #58a9de; color: #58a9de; }
34
+ .socicon-500px:before { content: "\e056" }
35
+ .socicon-airbnb { background-color: #FF5A5F; color: #FF5A5F; }
36
+ .socicon-airbnb:before { content: "\e00e" }
37
+ .socicon-android { background-color: #8ec047; color: #8ec047; }
38
+ .socicon-android:before { content: "\e03e" }
39
+ .socicon-apple { background-color: #B9BFC1; color: #B9BFC1; }
40
+ .socicon-apple:before { content: "\e02e" }
41
+ .socicon-appnet { background-color: #494949; color: #494949; }
42
+ .socicon-appnet:before { content: "\e013" }
43
+ .socicon-baidu { background-color: #2319DC; color: #2319DC; }
44
+ .socicon-baidu:before { content: "\e061" }
45
+ .socicon-bebo { background-color: #EF1011; color: #EF1011; }
46
+ .socicon-bebo:before { content: "\e035" }
47
+ .socicon-behance { background-color: #1769ff; color: #1769ff; }
48
+ .socicon-behance:before { content: "\e027" }
49
+ .socicon-blogger { background-color: #ec661c; color: #ec661c; }
50
+ .socicon-blogger:before { content: "\e020" }
51
+ .socicon-buffer { background-color: #000000; color: #000000; }
52
+ .socicon-buffer:before { content: "\e018" }
53
+ .socicon-coderwall { background-color: #3E8DCC; color: #3E8DCC; }
54
+ .socicon-coderwall:before { content: "\e011" }
55
+ .socicon-dailymotion { background-color: #004e72; color: #004e72; }
56
+ .socicon-dailymotion:before { content: "\e053" }
57
+ .socicon-delicious { background-color: #020202; color: #020202; }
58
+ .socicon-delicious:before { content: "\e028" }
59
+ .socicon-deviantart { background-color: #c5d200; color: #c5d200; }
60
+ .socicon-deviantart:before { content: "\e029" }
61
+ .socicon-digg { background-color: #1d1d1b; color: #1d1d1b; }
62
+ .socicon-digg:before { content: "\e025" }
63
+ .socicon-disqus { background-color: #2e9fff; color: #2e9fff; }
64
+ .socicon-disqus:before { content: "\e019" }
65
+ .socicon-dribbble { background-color: #e84d88; color: #e84d88; }
66
+ .socicon-dribbble:before { content: "\e023" }
67
+ .socicon-drupal { background-color: #00598e; color: #00598e; }
68
+ .socicon-drupal:before { content: "\e002" }
69
+ .socicon-ebay { background-color: #E53238; color: #E53238; }
70
+ .socicon-ebay:before { content: "\e063" }
71
+ .socicon-envato { background-color: #82B540; color: #82B540; }
72
+ .socicon-envato:before { content: "\e026" }
73
+ .socicon-facebook { background-color: #3b5998; color: #3b5998; }
74
+ .socicon-facebook:before { content: "\e041" }
75
+ .socicon-feedburner { background-color: #FFCC00; color: #FFCC00; }
76
+ .socicon-feedburner:before { content: "\e048" }
77
+ .socicon-flattr { background-color: #F67C1A; color: #F67C1A; }
78
+ .socicon-flattr:before { content: "\e02f" }
79
+ .socicon-flickr { background-color: #ff0084; color: #ff0084; }
80
+ .socicon-flickr:before { content: "\e055" }
81
+ .socicon-foursquare { background-color: #F94877; color: #F94877; }
82
+ .socicon-foursquare:before { content: "\e044" }
83
+ .socicon-friendfeed { background-color: #2F72C4; color: #2F72C4; }
84
+ .socicon-friendfeed:before { content: "\e032" }
85
+ .socicon-github { background-color: #221e1b; color: #221e1b; }
86
+ .socicon-github:before { content: "\e030" }
87
+ .socicon-goodreads { background-color: #463020; color: #463020; }
88
+ .socicon-goodreads:before { content: "\e014" }
89
+ .socicon-google { background-color: #d93e2d; color: #d93e2d; }
90
+ .socicon-google:before { content: "\e042" }
91
+ .socicon-grooveshark { background-color: #000000; color: #000000; }
92
+ .socicon-grooveshark:before { content: "\e04f" }
93
+ .socicon-houzz { background-color: #7CC04B; color: #7CC04B; }
94
+ .socicon-houzz:before { content: "\e00a" }
95
+ .socicon-identica { background-color: #000000; color: #000000; }
96
+ .socicon-identica:before { content: "\e034" }
97
+ .socicon-instagram { background-color: #3f729b; color: #3f729b; }
98
+ .socicon-instagram:before { content: "\e057" }
99
+ .socicon-lanyrd { background-color: #3c80c9; color: #3c80c9; }
100
+ .socicon-lanyrd:before { content: "\e016" }
101
+ .socicon-lastfm { background-color: #d41316; color: #d41316; }
102
+ .socicon-lastfm:before { content: "\e050" }
103
+ .socicon-linkedin { background-color: #3371b7; color: #3371b7; }
104
+ .socicon-linkedin:before { content: "\e049" }
105
+ .socicon-mail { background-color: #000000; color: #000000; }
106
+ .socicon-mail:before { content: "\e01f" }
107
+ .socicon-medium { background-color: #01AB6C; color: #01AB6C }
108
+ .socicon-medium:before { content: "\e06d" }
109
+ .socicon-meetup { background-color: #e2373c; color: #e2373c; }
110
+ .socicon-meetup:before { content: "\e03c" }
111
+ .socicon-myspace { background-color: #323232; color: #323232; }
112
+ .socicon-myspace:before { content: "\e04c" }
113
+ .socicon-newsvine { background-color: #075B2F; color: #075B2F; }
114
+ .socicon-newsvine:before { content: "\e033" }
115
+ .socicon-odnoklassniki { background-color: #f48420; color: #f48420; }
116
+ .socicon-odnoklassniki:before { content: "\e00d" }
117
+ .socicon-outlook { background-color: #0072C6; color: #0072C6; }
118
+ .socicon-outlook:before { content: "\e010" }
119
+ .socicon-patreon { background-color: #E44727; color: #E44727; }
120
+ .socicon-patreon:before { content: "\e01c" }
121
+ .socicon-paypal { background-color: #009cde; color: #009cde; }
122
+ .socicon-paypal:before { content: "\e00c" }
123
+ .socicon-periscope { background-color: #40A4C4; color: #40A4C4; }
124
+ .socicon-periscope:before { content: "\e00f" }
125
+ .socicon-persona { background-color: #e6753d; color: #e6753d; }
126
+ .socicon-persona:before { content: "\e008" }
127
+ .socicon-pinterest { background-color: #c92619; color: #c92619; }
128
+ .socicon-pinterest:before { content: "\e043" }
129
+ .socicon-play { background-color: #000000; color: #000000; }
130
+ .socicon-play:before { content: "\e02b" }
131
+ .socicon-playstation { background-color: #000000; color: #000000; }
132
+ .socicon-playstation:before { content: "\e03d" }
133
+ .socicon-reddit { background-color: #e74a1e; color: #e74a1e; }
134
+ .socicon-reddit:before { content: "\e022" }
135
+ .socicon-rss { background-color: #f26109; color: #f26109; }
136
+ .socicon-rss:before { content: "\e00b" }
137
+ .socicon-skype { background-color: #28abe3; color: #28abe3; }
138
+ .socicon-skype:before { content: "\e046" }
139
+ .socicon-slideshare { background-color: #4ba3a6; color: #4ba3a6; }
140
+ .socicon-slideshare:before { content: "\e017" }
141
+ .socicon-smugmug { background-color: #ACFD32; color: #ACFD32; }
142
+ .socicon-smugmug:before { content: "\e05e" }
143
+ .socicon-soundcloud { background-color: #fe3801; color: #fe3801; }
144
+ .socicon-soundcloud:before { content: "\e04d" }
145
+ .socicon-spotify { background-color: #7bb342; color: #7bb342; }
146
+ .socicon-spotify:before { content: "\e04e" }
147
+ .socicon-stackoverflow { background-color: #FD9827; color: #FD9827; }
148
+ .socicon-stackoverflow:before { content: "\e007" }
149
+ .socicon-steam { background-color: #8F8D8A; color: #8F8D8A; }
150
+ .socicon-steam:before { content: "\e037" }
151
+ .socicon-stumbleupon { background-color: #e64011; color: #e64011; }
152
+ .socicon-stumbleupon:before { content: "\e024" }
153
+ .socicon-swarm { background-color: #FC9D3C; color: #FC9D3C; }
154
+ .socicon-swarm:before { content: "\e003" }
155
+ .socicon-technorati { background-color: #5cb030; color: #5cb030; }
156
+ .socicon-technorati:before { content: "\e021" }
157
+ .socicon-tripadvisor { background-color: #589442; color: #589442; }
158
+ .socicon-tripadvisor:before { content: "\e012" }
159
+ .socicon-tripit { background-color: #1982C3; color: #1982C3; }
160
+ .socicon-tripit:before { content: "\e015" }
161
+ .socicon-triplej { background-color: #E53531; color: #E53531; }
162
+ .socicon-triplej:before { content: "\e009" }
163
+ .socicon-tumblr { background-color: #45556c; color: #45556c; }
164
+ .socicon-tumblr:before { content: "\e059" }
165
+ .socicon-twitter { background-color: #55acee; color: #55acee; }
166
+ .socicon-twitter:before { content: "\e040" }
167
+ .socicon-viadeo { background-color: #e4a000; color: #e4a000; }
168
+ .socicon-viadeo:before { content: "\e04a" }
169
+ .socicon-vimeo { background-color: #51b5e7; color: #51b5e7; }
170
+ .socicon-vimeo:before { content: "\e052" }
171
+ .socicon-vine { background-color: #00b389; color: #00b389; }
172
+ .socicon-vine:before { content: "\e054" }
173
+ .socicon-vkontakte { background-color: #5a7fa6; color: #5a7fa6; }
174
+ .socicon-vkontakte:before { content: "\e01a" }
175
+ .socicon-wikipedia { background-color: #000000; color: #000000; }
176
+ .socicon-wikipedia:before { content: "\e02d" }
177
+ .socicon-windows { background-color: #00BDF6; color: #00BDF6; }
178
+ .socicon-windows:before { content: "\e039" }
179
+ .socicon-wordpress { background-color: #464646; color: #464646; }
180
+ .socicon-wordpress:before { content: "\e058" }
181
+ .socicon-xbox { background-color: #92C83E; color: #92C83E; }
182
+ .socicon-xbox:before { content: "\e038" }
183
+ .socicon-xing { background-color: #005a60; color: #005a60; }
184
+ .socicon-xing:before { content: "\e04b" }
185
+ .socicon-yahoo { background-color: #6E2A85; color: #6E2A85; }
186
+ .socicon-yahoo:before { content: "\e045" }
187
+ .socicon-yammer { background-color: #1175C4; color: #1175C4; }
188
+ .socicon-yammer:before { content: "\e005" }
189
+ .socicon-yelp { background-color: #c83218; color: #c83218; }
190
+ .socicon-yelp:before { content: "\e047" }
191
+ .socicon-youtube { background-color: #e02a20; color: #e02a20; }
192
+ .socicon-youtube:before { content: "\e051" }
193
+ .socicon-zerply { background-color: #9DBC7A; color: #9DBC7A; }
194
+ .socicon-zerply:before { content: "\e02c" }
195
+ .socicon-zynga { background-color: #DC0606; color: #DC0606; }
196
+ .socicon-zynga:before { content: "\e036" }
197
+
198
+
199
+ .zoom-social-icons-list { list-style-type: none; }
200
+
201
+ .zoom-social_icons-list__item { margin: 0 0 10px; }
202
+ .zoom-social_icons-list__label { margin-left: 4px; }
203
+ .zoom-social-icons-list--no-labels .zoom-social_icons-list__item { display: inline-block; margin: 4px; }
204
+ .zoom-social-icons-list .socicon { padding: 8px; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; -moz-transition: opacity .2s; -webkit-transition: opacity .2s; transition: opacity .2s; }
205
+ .zoom-social_icons-list__item a:hover .socicon { opacity: 0.8; }
206
+
207
+ .zoom-social-icons-list--with-canvas .socicon { color: #ffffff; }
208
+ .zoom-social-icons-list--with-canvas .socicon:before { position: relative; top: 1px; }
209
+
210
+ .zoom-social-icons-list--without-canvas .socicon { background: none; }
211
+ /* .widget because we need higher css specificity */
212
+ .widget .zoom-social-icons-list--without-canvas { margin-left: -8px; margin-top: -4px; }
213
+ .widget .zoom-social-icons-list--no-labels.zoom-social-icons-list--without-canvas { margin-left: -14px; margin-top: -8px; }
214
+
215
+ .zoom-social-icons-list--rounded .socicon { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; }
216
+ .zoom-social-icons-list--round .socicon { -moz-border-radius: 100px; -webkit-border-radius: 100px; border-radius: 100px; }
font/socicon-webfont.eot ADDED
Binary file
font/socicon-webfont.svg ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="medium" unicode="&#57453;" d="M270 97c5 0 8 2 10 6l112 209c14 25 27 52 33 65 1 3 4 2 4 0l0-370c0-4 2-7 6-7l70 0c4 0 6 3 6 7l0 498c0 4-2 7-6 7l-91 0c-5 0-9-3-12-7l-145-284c-1-2-2-2-3 0l-144 284c-3 4-6 7-12 7l-91 0c-4 0-7-3-7-7l0-498c0-4 3-7 7-7l69 0c4 0 7 3 7 7l0 370c0 2 3 3 3 0 7-13 20-40 33-65l112-209c3-4 6-6 10-6z"/>
120
+ <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"/>
121
+ <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"/>
122
+ </font></defs></svg>
font/socicon-webfont.ttf ADDED
Binary file
font/socicon-webfont.woff ADDED
Binary file
font/socicon-webfont.woff2 ADDED
Binary file
readme.txt ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Social Icons Widget by WPZOOM ===
2
+ Contributors: WPZOOM, nvartolomei, ciorici
3
+ Donate link: http://www.wpzoom.com/
4
+ Tags: social icons, social networks, social media, social profiles, widget, twitter, facebook, google, pinterest, foursquare, yahoo, skype, yelp, feedburner, linkedin, viadeo, xing, myspace, soundcloud, spotify, grooveshark, lastfm, youtube, vimeo, dailymotion, vine, flickr, 500px, instagram, wordpress, tumblr, blogger, technorati, reddit, dribbble, stumbleupon, digg, envato, behance, delicious, deviantart, forrst, play, zerply, wikipedia, apple, flattr, github, chimein, friendfeed, newsvine, identica, bebo, zynga, steam, xbox, windows, outlook, coderwall, tripadvisor, appnet, goodreads, tripit, lanyrd, slideshare, buffer, rss, vkontakte, disqus, houzz, mail, patreon, paypal, playstation, smugmug, swarm, triplej, yammer, stackoverflow, drupal, odnoklassniki, android, meetup, persona, airbnb, baidu, ebay, medium, periscope
5
+ Requires at least: 4.1
6
+ Tested up to: 4.4
7
+ Stable tag: trunk
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Social Icons Widget to displays links to social sharing websites. Supports more than 80 sites and you can easily add and sort icons by Drag & Drop.
12
+
13
+ == Description ==
14
+
15
+ Sortable widget that supports more than 80+ social networks
16
+
17
+ = Where I can view a Demo? =
18
+
19
+ You can view the widget live in all our themes at [WPZOOM](http://www.wpzoom.com/themes/).
20
+
21
+ = View Demo & Examples =
22
+ * [Monte Theme](http://demo.wpzoom.com/?theme=monte) - header bar and footer
23
+ * [Tempo Theme](http://demo.wpzoom.com/?theme=tempo) - header (under logo) and footer
24
+ * [Foodica Theme](http://demo.wpzoom.com/?theme=foodica) - header bar and sidebar
25
+ * [Inspiro Theme](http://demo.wpzoom.com/?theme=inspiro) - sidebar panel and footer
26
+
27
+ = Features: =
28
+
29
+ * 80+ Sites/Social Networks supported
30
+ * Drag & Drop Icons
31
+ * 2 Styles: Icon Shape and Icon with Background
32
+ * 3 Background Styles: Rounded Corners, Round, Square
33
+ * Retina Ready Icons
34
+ * Supports email addresses (email@example.com)
35
+
36
+ = Icons =
37
+
38
+ Icons are provided by [socicon](http://www.socicon.com) icon font.
39
+
40
+ Twitter, Facebook, Google+, Pinterest, Foursquare, Yahoo, Skype, Yelp, Feedburner, LinkedIn, Myspace, SoundCloud, Spotify, Grooveshark, Last.fm, YouTube, Vimeo, Vine, Flickr, 500px, Instagram, Tumblr, Blogger, Reddit, Dribbble, Envato, Behance,DeviantArt, GitHub,RSS, Disqus, Stackoverflow, and many others.
41
+
42
+ = Get Involved =
43
+
44
+ Looking to contribute code to this plugin? Go ahead and [fork the repository over at GitHub](https://github.com/wpzoom/social-icons-widget/).
45
+
46
+ == Installation ==
47
+
48
+ Simply search for the plugin via the Plugins -> Add New dialog and click install, or download and extract the plugin, and copy the plugin folder into your wp-content/plugins directory and activate.
49
+
50
+ == Frequently Asked Questions ==
51
+
52
+ = Where do I find more details about this plugin? =
53
+
54
+ On our [website](http://www.wpzoom.com/plugins/social-widget/).
55
+
56
+ == Screenshots ==
57
+
58
+ 1. Rounded Corners Style
59
+ 2. Square Style
60
+ 3. Rounded Icons Style
61
+ 4. No Background Style
62
+ 5. With Icon label
63
+ 6. Widget Settings
64
+
65
+ == Changelog ==
66
+
67
+ = 1.0.3 =
68
+ * Updated Google+ icon
69
+ * Added new icons: Airbnb, Baidu, eBay, Medium, Periscope
70
+
71
+ = 1.0.2 =
72
+ * Display proper icons for FeedBurner services
73
+
74
+ = 1.0.1 =
75
+ * Fix TripAdvisor brand color
76
+ * Add subtle hover effect for icons
77
+ * Add description field for cool call to action headlines
78
+
79
+ = 1.0 =
80
+ * Initial release.
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file
screenshot-4.png ADDED
Binary file
screenshot-5.png ADDED
Binary file
screenshot-6.png ADDED
Binary file
social-icons-widget-by-wpzoom.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Plugin Name: Social Icons Widget by WPZOOM
4
+ * Plugin URI: http://wpzoom.com/
5
+ * Description: Social Icons Widget
6
+ * Author: WPZOOM
7
+ * Author URI: http://wpzoom.com/
8
+ * Version: 1.0.3
9
+ * License: GPLv2 or later
10
+ */
11
+
12
+ require_once plugin_dir_path( __FILE__ ) . 'class.zoom-social-icons-widget.php';
13
+
14
+ add_action( 'widgets_init', 'zoom_social_icons_widget_register' );
15
+ function zoom_social_icons_widget_register() {
16
+ register_widget( 'Zoom_Social_Icons_Widget' );
17
+ }
social-icons-widget.js ADDED
@@ -0,0 +1,183 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function ($) {
2
+ var icons = [
3
+ '500px',
4
+ 'airbnb',
5
+ 'android',
6
+ 'apple',
7
+ 'appnet',
8
+ 'baidu',
9
+ 'bebo',
10
+ 'behance',
11
+ 'blogger',
12
+ 'buffer',
13
+ 'coderwall',
14
+ 'dailymotion',
15
+ 'delicious',
16
+ 'deviantart',
17
+ 'digg',
18
+ 'disqus',
19
+ 'dribbble',
20
+ 'drupal',
21
+ 'ebay',
22
+ 'envato',
23
+ 'facebook',
24
+ 'feedburner',
25
+ 'flattr',
26
+ 'flickr',
27
+ 'foursquare',
28
+ 'friendfeed',
29
+ 'github',
30
+ 'goodreads',
31
+ 'google',
32
+ 'grooveshark',
33
+ 'houzz',
34
+ 'identica',
35
+ 'instagram',
36
+ 'lanyrd',
37
+ 'lastfm',
38
+ 'linkedin',
39
+ 'mail',
40
+ 'medium',
41
+ 'meetup',
42
+ 'myspace',
43
+ 'newsvine',
44
+ 'odnoklassniki',
45
+ 'outlook',
46
+ 'patreon',
47
+ 'paypal',
48
+ 'periscope',
49
+ 'persona',
50
+ 'pinterest',
51
+ 'play',
52
+ 'playstation',
53
+ 'reddit',
54
+ 'rss',
55
+ 'skype',
56
+ 'slideshare',
57
+ 'smugmug',
58
+ 'soundcloud',
59
+ 'spotify',
60
+ 'stackoverflow',
61
+ 'steam',
62
+ 'stumbleupon',
63
+ 'swarm',
64
+ 'technorati',
65
+ 'tripadvisor',
66
+ 'tripit',
67
+ 'triplej',
68
+ 'tumblr',
69
+ 'twitter',
70
+ 'viadeo',
71
+ 'vimeo',
72
+ 'vine',
73
+ 'vkontakte',
74
+ 'wikipedia',
75
+ 'windows',
76
+ 'wordpress',
77
+ 'xbox',
78
+ 'xing',
79
+ 'yahoo',
80
+ 'yammer',
81
+ 'yelp',
82
+ 'youtube',
83
+ 'zerply',
84
+ 'zynga'
85
+ ];
86
+
87
+ $(document).ready(function () {
88
+ $(document).on('click', '.zoom-social-icons__add-button button', function (event) {
89
+ event.preventDefault();
90
+
91
+ var $tmpl = $($.trim($('#tmpl-zoom-social-icons-field').html()));
92
+
93
+ var url_field_id = $(this).parents('.widget-content').find('.zoom-social-icons__list').data('url-field-id');
94
+ var url_field_name = $(this).parents('.widget-content').find('.zoom-social-icons__list').data('url-field-name');
95
+
96
+ var label_field_id = $(this).parents('.widget-content').find('.zoom-social-icons__list').data('label-field-id');
97
+ var label_field_name = $(this).parents('.widget-content').find('.zoom-social-icons__list').data('label-field-name');
98
+
99
+ $tmpl.find('.zoom-social-icons__field-url').attr('id', url_field_id).attr('name', url_field_name + '[]');
100
+ $tmpl.find('.zoom-social-icons__field-label').attr('id', label_field_id).attr('name', label_field_name + '[]');
101
+
102
+ $(this).parents('.widget-content').find('.zoom-social-icons__list').append($tmpl);
103
+ $(this).parents('.widget-content').find('.zoom-social-icons__list:last input:first-child').trigger('focus');
104
+ });
105
+
106
+ $(document).on('keyup', '.zoom-social-icons__field-url', function () {
107
+ var url = $(this).val();
108
+ var $this = $(this);
109
+
110
+ var found = false;
111
+
112
+ if (url.indexOf('feedburner.com') !== -1) {
113
+ $this.parents('.zoom-social-icons__field').find('.zoom-social-icons__field-handle').attr('class', 'zoom-social-icons__field-handle socicon socicon-rss');
114
+ found = true;
115
+ } else if (url.indexOf('feedburner.google.com') !== -1) {
116
+ $this.parents('.zoom-social-icons__field').find('.zoom-social-icons__field-handle').attr('class', 'zoom-social-icons__field-handle socicon socicon-mail');
117
+ found = true;
118
+ } else {
119
+ $(icons).each(function (ix, icon) {
120
+ if (url.indexOf(icon) !== -1) {
121
+ $this.parents('.zoom-social-icons__field').find('.zoom-social-icons__field-handle').attr('class', 'zoom-social-icons__field-handle socicon socicon-' + icon);
122
+ found = true;
123
+ return;
124
+ }
125
+ });
126
+ }
127
+
128
+ if (!found) {
129
+ $this.parents('.zoom-social-icons__field').find('.zoom-social-icons__field-handle').attr('class', 'zoom-social-icons__field-handle dashicons dashicons-sort');
130
+ }
131
+ });
132
+
133
+ $(document).on('change', '.zoom-social-icons-show-icon-labels', function () {
134
+ if ($(this).is(':checked')) {
135
+ $(this).parents('.widget-content').find('.zoom-social-icons__list').removeClass('zoom-social-icons__list--no-labels');
136
+ } else {
137
+ $(this).parents('.widget-content').find('.zoom-social-icons__list').addClass('zoom-social-icons__list--no-labels');
138
+ }
139
+ });
140
+
141
+ $(document).on('click', '.zoom-social-icons__field-trash', function (event) {
142
+ event.preventDefault();
143
+ var $widget = $(this).parents('.widget[id*=zoom-social-icons-widget]');
144
+ $(this).parents('.zoom-social-icons__field').remove();
145
+ triggerFakeChange($widget);
146
+ });
147
+
148
+ // Event handler for widget open button
149
+ $(document).on('click', 'div.widget[id*=zoom-social-icons-widget] .widget-title, div.widget[id*=zoom-social-icons-widget] .widget-action', function () {
150
+ if ($(this).parents('#available-widgets').length) return;
151
+
152
+ initWidget($(this).parents('.widget[id*=zoom-social-icons-widget]'));
153
+ });
154
+
155
+ // Event handler for widget added
156
+ $(document).on('widget-added', function (event, $widget) {
157
+ if ($widget.is('[id*=zoom-social-icons-widget]')) {
158
+ event.preventDefault();
159
+ initWidget($widget);
160
+ }
161
+ });
162
+
163
+ // Event handler for widget updated
164
+ $(document).on('widget-updated', function (event, $widget) {
165
+ if ($widget.is('[id*=zoom-social-icons-widget]')) {
166
+ event.preventDefault();
167
+ initWidget($widget);
168
+ }
169
+ });
170
+
171
+ function initWidget($widget) {
172
+ $widget.find('.zoom-social-icons__list').sortable({
173
+ update: function () {
174
+ triggerFakeChange($widget);
175
+ }
176
+ });
177
+ }
178
+
179
+ function triggerFakeChange($widget) {
180
+ $widget.find('.zoom-social-icons-show-icon-labels').trigger('change');
181
+ }
182
+ });
183
+ })(jQuery);