evil_icons 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +22 -0
  3. data/README.md +93 -0
  4. data/Rakefile +2 -0
  5. data/app/assets/images/evil-icons/ei-archive.svg +120 -0
  6. data/app/assets/images/evil-icons/ei-arrow-down.svg +133 -0
  7. data/app/assets/images/evil-icons/ei-arrow-left.svg +120 -0
  8. data/app/assets/images/evil-icons/ei-arrow-right.svg +133 -0
  9. data/app/assets/images/evil-icons/ei-arrow-up.svg +133 -0
  10. data/app/assets/images/evil-icons/ei-bell.svg +134 -0
  11. data/app/assets/images/evil-icons/ei-calendar.svg +144 -0
  12. data/app/assets/images/evil-icons/ei-cart.svg +136 -0
  13. data/app/assets/images/evil-icons/ei-chart.svg +133 -0
  14. data/app/assets/images/evil-icons/ei-check.svg +132 -0
  15. data/app/assets/images/evil-icons/ei-chevron-down.svg +115 -0
  16. data/app/assets/images/evil-icons/ei-chevron-left.svg +128 -0
  17. data/app/assets/images/evil-icons/ei-chevron-right.svg +128 -0
  18. data/app/assets/images/evil-icons/ei-chevron-up.svg +128 -0
  19. data/app/assets/images/evil-icons/ei-clock.svg +119 -0
  20. data/app/assets/images/evil-icons/ei-close-o.svg +120 -0
  21. data/app/assets/images/evil-icons/ei-close.svg +105 -0
  22. data/app/assets/images/evil-icons/ei-comment.svg +133 -0
  23. data/app/assets/images/evil-icons/ei-envelope.svg +116 -0
  24. data/app/assets/images/evil-icons/ei-exclamation.svg +133 -0
  25. data/app/assets/images/evil-icons/ei-external-link.svg +120 -0
  26. data/app/assets/images/evil-icons/ei-eye.svg +136 -0
  27. data/app/assets/images/evil-icons/ei-gear.svg +139 -0
  28. data/app/assets/images/evil-icons/ei-heart.svg +115 -0
  29. data/app/assets/images/evil-icons/ei-image.svg +120 -0
  30. data/app/assets/images/evil-icons/ei-link.svg +125 -0
  31. data/app/assets/images/evil-icons/ei-location.svg +133 -0
  32. data/app/assets/images/evil-icons/ei-lock.svg +134 -0
  33. data/app/assets/images/evil-icons/ei-minus.svg +132 -0
  34. data/app/assets/images/evil-icons/ei-navicon.svg +117 -0
  35. data/app/assets/images/evil-icons/ei-paperclip.svg +131 -0
  36. data/app/assets/images/evil-icons/ei-pencil.svg +135 -0
  37. data/app/assets/images/evil-icons/ei-play.svg +132 -0
  38. data/app/assets/images/evil-icons/ei-plus.svg +120 -0
  39. data/app/assets/images/evil-icons/ei-pointer.svg +134 -0
  40. data/app/assets/images/evil-icons/ei-question.svg +139 -0
  41. data/app/assets/images/evil-icons/ei-redo.svg +132 -0
  42. data/app/assets/images/evil-icons/ei-refresh.svg +122 -0
  43. data/app/assets/images/evil-icons/ei-retweet.svg +133 -0
  44. data/app/assets/images/evil-icons/ei-sc-facebook.svg +102 -0
  45. data/app/assets/images/evil-icons/ei-sc-github.svg +118 -0
  46. data/app/assets/images/evil-icons/ei-sc-google-plus.svg +122 -0
  47. data/app/assets/images/evil-icons/ei-sc-twitter.svg +117 -0
  48. data/app/assets/images/evil-icons/ei-sc-vk.svg +119 -0
  49. data/app/assets/images/evil-icons/ei-search.svg +108 -0
  50. data/app/assets/images/evil-icons/ei-share-apple.svg +133 -0
  51. data/app/assets/images/evil-icons/ei-share-google.svg +139 -0
  52. data/app/assets/images/evil-icons/ei-spinner-2.svg +126 -0
  53. data/app/assets/images/evil-icons/ei-spinner-3.svg +106 -0
  54. data/app/assets/images/evil-icons/ei-spinner.svg +134 -0
  55. data/app/assets/images/evil-icons/ei-star.svg +117 -0
  56. data/app/assets/images/evil-icons/ei-tag.svg +134 -0
  57. data/app/assets/images/evil-icons/ei-trash.svg +122 -0
  58. data/app/assets/images/evil-icons/ei-undo.svg +132 -0
  59. data/app/assets/images/evil-icons/ei-unlock.svg +135 -0
  60. data/app/assets/images/evil-icons/ei-user.svg +139 -0
  61. data/app/assets/stylesheets/evil-icons.css +56 -0
  62. data/app/helpers/evil_icons/helpers.rb +21 -0
  63. data/app/views/evil_icons/_icons.erb +1 -0
  64. data/evil_icons.gemspec +33 -0
  65. data/lib/evil_icons/engine.rb +12 -0
  66. data/lib/evil_icons/generator.rb +60 -0
  67. data/lib/evil_icons/version.rb +3 -0
  68. data/lib/tasks/icons.rb +33 -0
  69. data/lib/templates/icons.erb +7 -0
  70. data/lib/templates/index.erb +176 -0
  71. metadata +185 -0
@@ -0,0 +1,21 @@
1
+ module EvilIcons
2
+ module Helpers
3
+
4
+ def evil_icons
5
+ render "evil_icons/icons"
6
+ end
7
+
8
+ def icon(name, options = {})
9
+ size = options[:size] ? "icon--#{options[:size]}" : ''
10
+ options[:class] = "icon icon--#{name} #{size} #{options[:class]}"
11
+
12
+ content_tag :div, options do
13
+ content_tag :svg, class: "icon__cnt" do
14
+ tag :use, "xlink:href" => "##{name}-icon"
15
+ end
16
+ end
17
+
18
+ end
19
+
20
+ end
21
+ end
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none"><symbol id='ei-archive-icon' viewBox='0 0 50 50'><g><path d="M42,20h-2v-5c0-0.6-0.4-1-1-1H11c-0.6,0-1,0.4-1,1v5H8v-5c0-1.7,1.3-3,3-3h28c1.7,0,3,1.3,3,3V20z"></path><path d="M37,40H13c-1.7,0-3-1.3-3-3V20h2v17c0,0.6,0.4,1,1,1h24c0.6,0,1-0.4,1-1V20h2v17C40,38.7,38.7,40,37,40z"></path><path d="M29,26h-8c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1S29.6,26,29,26z"></path><rect x="8" y="18" width="34" height="2"></rect></g><path d="M42,20h-2v-5c0-0.6-0.4-1-1-1H11c-0.6,0-1,0.4-1,1v5H8v-5c0-1.7,1.3-3,3-3h28c1.7,0,3,1.3,3,3V20z"></path><path d="M37,40H13c-1.7,0-3-1.3-3-3V20h2v17c0,0.6,0.4,1,1,1h24c0.6,0,1-0.4,1-1V20h2v17C40,38.7,38.7,40,37,40z"></path><path d="M29,26h-8c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1S29.6,26,29,26z"></path><rect x="8" y="18" width="34" height="2"></rect></symbol><symbol id='ei-arrow-down-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="25,34.3 15.3,24.7 16.7,23.3 25,31.7 33.3,23.3 34.7,24.7"></polygon><rect x="24" y="16" width="2" height="17"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="25,34.3 15.3,24.7 16.7,23.3 25,31.7 33.3,23.3 34.7,24.7"></polygon><rect x="24" y="16" width="2" height="17"></rect></symbol><symbol id='ei-arrow-left-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="25.3,34.7 15.7,25 25.3,15.3 26.7,16.7 18.3,25 26.7,33.3"></polygon><rect x="17" y="24" width="17" height="2"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="25.3,34.7 15.7,25 25.3,15.3 26.7,16.7 18.3,25 26.7,33.3"></polygon><rect x="17" y="24" width="17" height="2"></rect></symbol><symbol id='ei-arrow-right-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="24.7,34.7 23.3,33.3 31.7,25 23.3,16.7 24.7,15.3 34.3,25"></polygon><rect x="16" y="24" width="17" height="2"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="24.7,34.7 23.3,33.3 31.7,25 23.3,16.7 24.7,15.3 34.3,25"></polygon><rect x="16" y="24" width="17" height="2"></rect></symbol><symbol id='ei-arrow-up-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="33.3,26.7 25,18.3 16.7,26.7 15.3,25.3 25,15.7 34.7,25.3"></polygon><rect x="24" y="17" width="2" height="17"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="33.3,26.7 25,18.3 16.7,26.7 15.3,25.3 25,15.7 34.7,25.3"></polygon><rect x="24" y="17" width="2" height="17"></rect></symbol><symbol id='ei-bell-icon' viewBox='0 0 50 50'><g><path d="M42,35.9c-6.5,0-7.3-6-8.2-11.8C33,17.9,32.1,11.9,25,11.9s-8,5.9-8.8,12.2c-0.8,5.8-1.7,11.8-8.2,11.8v-1.9 c4.5,0,5.4-3.9,6.3-10.2c0.9-6.1,2-13.8,10.7-13.8s9.8,7.7,10.7,13.8c0.9,6.3,1.8,10.2,6.3,10.2V35.9z"></path><path d="M25,39.9c-2.7,0-4.9-2.2-4.9-4.9h1.9c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1h1.9C29.9,37.7,27.7,39.9,25,39.9z"></path><rect x="8" y="34" width="34" height="2"></rect><path d="M27,10c0,1.1-0.9,1.5-2,1.5s-2-0.4-2-1.5s0.9-2,2-2S27,8.9,27,10z"></path></g><path d="M42,35.9c-6.5,0-7.3-6-8.2-11.8C33,17.9,32.1,11.9,25,11.9s-8,5.9-8.8,12.2c-0.8,5.8-1.7,11.8-8.2,11.8v-1.9 c4.5,0,5.4-3.9,6.3-10.2c0.9-6.1,2-13.8,10.7-13.8s9.8,7.7,10.7,13.8c0.9,6.3,1.8,10.2,6.3,10.2V35.9z"></path><path d="M25,39.9c-2.7,0-4.9-2.2-4.9-4.9h1.9c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1h1.9C29.9,37.7,27.7,39.9,25,39.9z"></path><rect x="8" y="34" width="34" height="2"></rect><path d="M27,10c0,1.1-0.9,1.5-2,1.5s-2-0.4-2-1.5s0.9-2,2-2S27,8.9,27,10z"></path></symbol><symbol id='ei-calendar-icon' viewBox='0 0 50 50'><g><path d="M37,38H13c-1.7,0-3-1.3-3-3V13c0-1.7,1.1-3,2.5-3H14v2h-1.5c-0.2,0-0.5,0.4-0.5,1v22c0,0.6,0.4,1,1,1h24c0.6,0,1-0.4,1-1 V13c0-0.6-0.3-1-0.5-1H36v-2h1.5c1.4,0,2.5,1.3,2.5,3v22C40,36.7,38.7,38,37,38z"></path><path d="M17,14c-0.6,0-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1v4C18,13.6,17.6,14,17,14z"></path><path d="M33,14c-0.6,0-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1v4C34,13.6,33.6,14,33,14z"></path><rect x="20" y="10" width="10" height="2"></rect><rect x="12" y="16" width="26" height="2"></rect><rect x="34" y="20" width="2" height="2"></rect><rect x="30" y="20" width="2" height="2"></rect><rect x="26" y="20" width="2" height="2"></rect><rect x="22" y="20" width="2" height="2"></rect><rect x="18" y="20" width="2" height="2"></rect><rect x="34" y="24" width="2" height="2"></rect><rect x="30" y="24" width="2" height="2"></rect><rect x="26" y="24" width="2" height="2"></rect><rect x="22" y="24" width="2" height="2"></rect><rect x="18" y="24" width="2" height="2"></rect><rect x="14" y="24" width="2" height="2"></rect><rect x="34" y="28" width="2" height="2"></rect><rect x="30" y="28" width="2" height="2"></rect><rect x="26" y="28" width="2" height="2"></rect><rect x="22" y="28" width="2" height="2"></rect><rect x="18" y="28" width="2" height="2"></rect><rect x="14" y="28" width="2" height="2"></rect><rect x="30" y="32" width="2" height="2"></rect><rect x="26" y="32" width="2" height="2"></rect><rect x="22" y="32" width="2" height="2"></rect><rect x="18" y="32" width="2" height="2"></rect><rect x="14" y="32" width="2" height="2"></rect></g><path d="M37,38H13c-1.7,0-3-1.3-3-3V13c0-1.7,1.1-3,2.5-3H14v2h-1.5c-0.2,0-0.5,0.4-0.5,1v22c0,0.6,0.4,1,1,1h24c0.6,0,1-0.4,1-1 V13c0-0.6-0.3-1-0.5-1H36v-2h1.5c1.4,0,2.5,1.3,2.5,3v22C40,36.7,38.7,38,37,38z"></path><path d="M17,14c-0.6,0-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1v4C18,13.6,17.6,14,17,14z"></path><path d="M33,14c-0.6,0-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1v4C34,13.6,33.6,14,33,14z"></path><rect x="20" y="10" width="10" height="2"></rect><rect x="12" y="16" width="26" height="2"></rect><rect x="34" y="20" width="2" height="2"></rect><rect x="30" y="20" width="2" height="2"></rect><rect x="26" y="20" width="2" height="2"></rect><rect x="22" y="20" width="2" height="2"></rect><rect x="18" y="20" width="2" height="2"></rect><rect x="34" y="24" width="2" height="2"></rect><rect x="30" y="24" width="2" height="2"></rect><rect x="26" y="24" width="2" height="2"></rect><rect x="22" y="24" width="2" height="2"></rect><rect x="18" y="24" width="2" height="2"></rect><rect x="14" y="24" width="2" height="2"></rect><rect x="34" y="28" width="2" height="2"></rect><rect x="30" y="28" width="2" height="2"></rect><rect x="26" y="28" width="2" height="2"></rect><rect x="22" y="28" width="2" height="2"></rect><rect x="18" y="28" width="2" height="2"></rect><rect x="14" y="28" width="2" height="2"></rect><rect x="30" y="32" width="2" height="2"></rect><rect x="26" y="32" width="2" height="2"></rect><rect x="22" y="32" width="2" height="2"></rect><rect x="18" y="32" width="2" height="2"></rect><rect x="14" y="32" width="2" height="2"></rect></symbol><symbol id='ei-cart-icon' viewBox='0 0 50 50'><g><path d="M35,34H13c-0.3,0-0.6-0.2-0.8-0.4s-0.2-0.6-0.1-0.9l1.9-4.8L12.1,10H6V8h7c0.5,0,0.9,0.4,1,0.9l2,19c0,0.2,0,0.3-0.1,0.5 L14.5,32H35V34z"></path><path d="M15.2,29l-0.4-2L38,22.2V14H14v-2h25c0.6,0,1,0.4,1,1v10c0,0.5-0.3,0.9-0.8,1L15.2,29z"></path><path d="M36,40c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S38.2,40,36,40z M36,34c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S37.1,34,36,34z"></path><path d="M12,40c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S14.2,40,12,40z M12,34c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,34,12,34z"></path></g><path d="M35,34H13c-0.3,0-0.6-0.2-0.8-0.4s-0.2-0.6-0.1-0.9l1.9-4.8L12.1,10H6V8h7c0.5,0,0.9,0.4,1,0.9l2,19c0,0.2,0,0.3-0.1,0.5 L14.5,32H35V34z"></path><path d="M15.2,29l-0.4-2L38,22.2V14H14v-2h25c0.6,0,1,0.4,1,1v10c0,0.5-0.3,0.9-0.8,1L15.2,29z"></path><path d="M36,40c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S38.2,40,36,40z M36,34c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S37.1,34,36,34z"></path><path d="M12,40c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S14.2,40,12,40z M12,34c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,34,12,34z"></path></symbol><symbol id='ei-chart-icon' viewBox='0 0 50 50'><g><polygon points="18,36 16,36 16,26 12,26 12,36 10,36 10,24 18,24"></polygon><polygon points="28,36 26,36 26,20 22,20 22,36 20,36 20,18 28,18"></polygon><polygon points="38,36 36,36 36,14 32,14 32,36 30,36 30,12 38,12"></polygon><rect x="8" y="36" width="32" height="2"></rect></g><polygon points="18,36 16,36 16,26 12,26 12,36 10,36 10,24 18,24"></polygon><polygon points="28,36 26,36 26,20 22,20 22,36 20,36 20,18 28,18"></polygon><polygon points="38,36 36,36 36,14 32,14 32,36 30,36 30,12 38,12"></polygon><rect x="8" y="36" width="32" height="2"></rect></symbol><symbol id='ei-check-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="23,32.3 14.3,23.7 15.7,22.3 23,29.7 34.3,18.3 35.7,19.6"></polygon></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="23,32.3 14.3,23.7 15.7,22.3 23,29.7 34.3,18.3 35.7,19.6"></polygon></symbol><symbol id='ei-chevron-down-icon' viewBox='0 0 50 50'><polygon points="25,32.4 15.3,22.7 16.7,21.3 25,29.6 33.3,21.3 34.7,22.7"></polygon></symbol><symbol id='ei-chevron-left-icon' viewBox='0 0 50 50'><polygon points="27.3,34.7 17.6,25 27.3,15.3 28.7,16.7 20.4,25 28.7,33.3"></polygon></symbol><symbol id='ei-chevron-right-icon' viewBox='0 0 50 50'><polygon points="22.7,34.7 21.3,33.3 29.6,25 21.3,16.7 22.7,15.3 32.4,25"></polygon></symbol><symbol id='ei-chevron-up-icon' viewBox='0 0 50 50'><polygon points="33.3,28.7 25,20.4 16.7,28.7 15.3,27.3 25,17.6 34.7,27.3"></polygon></symbol><symbol id='ei-clock-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="30.3,33.7 24,27.4 24,16 26,16 26,26.6 31.7,32.3"></polygon></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><polygon points="30.3,33.7 24,27.4 24,16 26,16 26,26.6 31.7,32.3"></polygon></symbol><symbol id='ei-close-o-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="24.1" y="13.7" transform="matrix(0.7068 0.7074 -0.7074 0.7068 25.0131 -10.3553)" width="1.9" height="22.6"></rect><rect x="13.7" y="24.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25 -10.3553)" width="22.6" height="1.9"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="24.1" y="13.7" transform="matrix(0.7068 0.7074 -0.7074 0.7068 25.0131 -10.3553)" width="1.9" height="22.6"></rect><rect x="13.7" y="24.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25 -10.3553)" width="22.6" height="1.9"></rect></symbol><symbol id='ei-close-icon' viewBox='0 0 50 50'><g><rect x="24.1" y="6.6" transform="matrix(0.7068 0.7074 -0.7074 0.7068 25.0131 -10.3553)" width="1.9" height="36.8"></rect><rect x="6.6" y="24.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25 -10.3553)" width="36.8" height="1.9"></rect></g><rect x="24.1" y="6.6" transform="matrix(0.7068 0.7074 -0.7074 0.7068 25.0131 -10.3553)" width="1.9" height="36.8"></rect><rect x="6.6" y="24.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25 -10.3553)" width="36.8" height="1.9"></rect></symbol><symbol id='ei-comment-icon' viewBox='0 0 50 50'><g><path d="M15,41.9h-1.8l1.1-1.5c0.8-1.1,1.3-2.5,1.6-4.3c-5-2.2-7.8-6.5-7.8-12.2c0-8.6,6.5-13.9,16.9-13.9S41.9,15.4,41.9,24 c0,8.7-6.3,13.9-16.9,13.9c-0.2,0-0.5,0-0.7,0C22.7,39.8,19.9,41.9,15,41.9z M25,11.9c-9.4,0-15.1,4.5-15.1,12.1 c0,6.5,4,9.4,7.3,10.7l0.7,0.3l-0.1,0.7c-0.2,1.7-0.6,3.1-1.1,4.3c3.4-0.4,5.4-2.1,6.5-3.6l0.3-0.4l0.6,0c0.3,0,0.6,0,1,0 c13.6,0,15.1-8.4,15.1-12.1C40.1,16.4,34.4,11.9,25,11.9z"></path></g><path d="M15,41.9h-1.8l1.1-1.5c0.8-1.1,1.3-2.5,1.6-4.3c-5-2.2-7.8-6.5-7.8-12.2c0-8.6,6.5-13.9,16.9-13.9S41.9,15.4,41.9,24 c0,8.7-6.3,13.9-16.9,13.9c-0.2,0-0.5,0-0.7,0C22.7,39.8,19.9,41.9,15,41.9z M25,11.9c-9.4,0-15.1,4.5-15.1,12.1 c0,6.5,4,9.4,7.3,10.7l0.7,0.3l-0.1,0.7c-0.2,1.7-0.6,3.1-1.1,4.3c3.4-0.4,5.4-2.1,6.5-3.6l0.3-0.4l0.6,0c0.3,0,0.6,0,1,0 c13.6,0,15.1-8.4,15.1-12.1C40.1,16.4,34.4,11.9,25,11.9z"></path></symbol><symbol id='ei-envelope-icon' viewBox='0 0 50 50'><path d="M41.7,15.7l-1.3-1.3L27.9,26.8c-1.6,1.6-4.2,1.6-5.8,0L9.7,14.3l-1.3,1.3l9.3,9.3l-9.3,9.3l1.3,1.3l9.3-9.3l1.8,1.8 c1.1,1.1,2.6,1.7,4.2,1.7s3.1-0.6,4.2-1.7l1.8-1.8l9.3,9.3l1.3-1.3L32.4,25L41.7,15.7z"></path><path d="M39,38H11c-1.7,0-3-1.3-3-3V15c0-1.7,1.3-3,3-3h28c1.7,0,3,1.3,3,3v20C42,36.7,40.7,38,39,38z M11,14c-0.6,0-1,0.4-1,1v20 c0,0.6,0.4,1,1,1h28c0.6,0,1-0.4,1-1V15c0-0.6-0.4-1-1-1H11z"></path></symbol><symbol id='ei-exclamation-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="24" y="32" width="2" height="2"></rect><polygon points="25.6,30 24.4,30 24,22 24,16 26,16 26,22"></polygon></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="24" y="32" width="2" height="2"></rect><polygon points="25.6,30 24.4,30 24,22 24,16 26,16 26,22"></polygon></symbol><symbol id='ei-external-link-icon' viewBox='0 0 50 50'><g><rect x="30.6" y="7.9" transform="matrix(0.7068 0.7074 -0.7074 0.7068 22.3207 -16.8587)" width="1.9" height="21.2"></rect><polygon points="40,20 38,20 38,12 30,12 30,10 40,10"></polygon><path d="M35,38H15c-1.7,0-3-1.3-3-3V15c0-1.7,1.3-3,3-3h11v2H15c-0.6,0-1,0.4-1,1v20c0,0.6,0.4,1,1,1h20c0.6,0,1-0.4,1-1V24h2v11 C38,36.7,36.7,38,35,38z"></path></g><rect x="30.6" y="7.9" transform="matrix(0.7068 0.7074 -0.7074 0.7068 22.3207 -16.8587)" width="1.9" height="21.2"></rect><polygon points="40,20 38,20 38,12 30,12 30,10 40,10"></polygon><path d="M35,38H15c-1.7,0-3-1.3-3-3V15c0-1.7,1.3-3,3-3h11v2H15c-0.6,0-1,0.4-1,1v20c0,0.6,0.4,1,1,1h20c0.6,0,1-0.4,1-1V24h2v11 C38,36.7,36.7,38,35,38z"></path></symbol><symbol id='ei-eye-icon' viewBox='0 0 50 50'><g><path d="M25,35.9c-11.4,0-16.6-10.1-16.8-10.5c-0.1-0.3-0.1-0.6,0-0.8c0.2-0.4,5.4-10.5,16.8-10.5s16.6,10.1,16.8,10.5 c0.1,0.3,0.1,0.6,0,0.8C41.6,25.8,36.4,35.9,25,35.9z M10.1,25c1.1,1.8,5.9,9.1,14.9,9.1s13.9-7.2,14.9-9.1 c-1.1-1.8-5.9-9.1-14.9-9.1S11.1,23.2,10.1,25z"></path><path d="M25,33.9c-4.9,0-8.9-4-8.9-8.9s4-8.9,8.9-8.9s8.9,4,8.9,8.9S29.9,33.9,25,33.9z M25,17.9c-3.9,0-7.1,3.2-7.1,7.1 s3.2,7.1,7.1,7.1s7.1-3.2,7.1-7.1S28.9,17.9,25,17.9z"></path><path d="M25,29.9c-2.7,0-4.9-2.2-4.9-4.9c0-0.5,0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1 s-1.4-3.1-3.1-3.1c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9c2.7,0,4.9,2.2,4.9,4.9S27.7,29.9,25,29.9z"></path></g><path d="M25,35.9c-11.4,0-16.6-10.1-16.8-10.5c-0.1-0.3-0.1-0.6,0-0.8c0.2-0.4,5.4-10.5,16.8-10.5s16.6,10.1,16.8,10.5 c0.1,0.3,0.1,0.6,0,0.8C41.6,25.8,36.4,35.9,25,35.9z M10.1,25c1.1,1.8,5.9,9.1,14.9,9.1s13.9-7.2,14.9-9.1 c-1.1-1.8-5.9-9.1-14.9-9.1S11.1,23.2,10.1,25z"></path><path d="M25,33.9c-4.9,0-8.9-4-8.9-8.9s4-8.9,8.9-8.9s8.9,4,8.9,8.9S29.9,33.9,25,33.9z M25,17.9c-3.9,0-7.1,3.2-7.1,7.1 s3.2,7.1,7.1,7.1s7.1-3.2,7.1-7.1S28.9,17.9,25,17.9z"></path><path d="M25,29.9c-2.7,0-4.9-2.2-4.9-4.9c0-0.5,0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1 s-1.4-3.1-3.1-3.1c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9c2.7,0,4.9,2.2,4.9,4.9S27.7,29.9,25,29.9z"></path></symbol><symbol id='ei-gear-icon' viewBox='0 0 50 50'><g><path d="M25,33.9c-4.9,0-8.9-4-8.9-8.9s4-8.9,8.9-8.9s8.9,4,8.9,8.9S29.9,33.9,25,33.9z M25,17.9c-3.9,0-7.1,3.2-7.1,7.1 s3.2,7.1,7.1,7.1s7.1-3.2,7.1-7.1S28.9,17.9,25,17.9z"></path><path d="M27.7,43.9h-5.3l-1.5-4.6c-1-0.3-2-0.7-2.9-1.2l-4.4,2.2l-3.8-3.8l2.2-4.4c-0.5-0.9-0.9-1.9-1.2-2.9l-4.6-1.5v-5.3 l4.6-1.5c0.3-1,0.7-2,1.2-2.9l-2.2-4.4l3.8-3.8l4.4,2.2c0.9-0.5,1.9-0.9,2.9-1.2l1.5-4.6h5.3l1.5,4.6c1,0.3,2,0.7,2.9,1.2l4.4-2.2 l3.8,3.8l-2.2,4.4c0.5,0.9,0.9,1.9,1.2,2.9l4.6,1.5v5.3l-4.6,1.5c-0.3,1-0.7,2-1.2,2.9l2.2,4.4l-3.8,3.8l-4.4-2.2 c-0.9,0.5-1.9,0.9-2.9,1.2L27.7,43.9z M23.7,42.1h2.7l1.4-4.3l0.5-0.1c1.2-0.3,2.3-0.8,3.4-1.4l0.4-0.3l4.1,2l1.9-1.9l-2-4.1 l0.3-0.4c0.6-1.1,1.1-2.2,1.4-3.4l0.1-0.5l4.3-1.4v-2.7l-4.3-1.4l-0.1-0.5c-0.3-1.2-0.8-2.3-1.4-3.4L36,17.9l2-4.1L36.1,12l-4.1,2 l-0.4-0.3c-1.1-0.6-2.2-1.1-3.4-1.4l-0.5-0.1l-1.4-4.3h-2.7l-1.4,4.3l-0.5,0.1c-1.2,0.3-2.3,0.8-3.4,1.4L17.9,14l-4.1-2L12,13.9 l2,4.1l-0.3,0.4c-0.6,1.1-1.1,2.2-1.4,3.4l-0.1,0.5l-4.3,1.4v2.7l4.3,1.4l0.1,0.5c0.3,1.2,0.8,2.3,1.4,3.4l0.3,0.4l-2,4.1l1.9,1.9 l4.1-2l0.4,0.3c1.1,0.6,2.2,1.1,3.4,1.4l0.5,0.1L23.7,42.1z"></path></g><path d="M25,33.9c-4.9,0-8.9-4-8.9-8.9s4-8.9,8.9-8.9s8.9,4,8.9,8.9S29.9,33.9,25,33.9z M25,17.9c-3.9,0-7.1,3.2-7.1,7.1 s3.2,7.1,7.1,7.1s7.1-3.2,7.1-7.1S28.9,17.9,25,17.9z"></path><path d="M27.7,43.9h-5.3l-1.5-4.6c-1-0.3-2-0.7-2.9-1.2l-4.4,2.2l-3.8-3.8l2.2-4.4c-0.5-0.9-0.9-1.9-1.2-2.9l-4.6-1.5v-5.3 l4.6-1.5c0.3-1,0.7-2,1.2-2.9l-2.2-4.4l3.8-3.8l4.4,2.2c0.9-0.5,1.9-0.9,2.9-1.2l1.5-4.6h5.3l1.5,4.6c1,0.3,2,0.7,2.9,1.2l4.4-2.2 l3.8,3.8l-2.2,4.4c0.5,0.9,0.9,1.9,1.2,2.9l4.6,1.5v5.3l-4.6,1.5c-0.3,1-0.7,2-1.2,2.9l2.2,4.4l-3.8,3.8l-4.4-2.2 c-0.9,0.5-1.9,0.9-2.9,1.2L27.7,43.9z M23.7,42.1h2.7l1.4-4.3l0.5-0.1c1.2-0.3,2.3-0.8,3.4-1.4l0.4-0.3l4.1,2l1.9-1.9l-2-4.1 l0.3-0.4c0.6-1.1,1.1-2.2,1.4-3.4l0.1-0.5l4.3-1.4v-2.7l-4.3-1.4l-0.1-0.5c-0.3-1.2-0.8-2.3-1.4-3.4L36,17.9l2-4.1L36.1,12l-4.1,2 l-0.4-0.3c-1.1-0.6-2.2-1.1-3.4-1.4l-0.5-0.1l-1.4-4.3h-2.7l-1.4,4.3l-0.5,0.1c-1.2,0.3-2.3,0.8-3.4,1.4L17.9,14l-4.1-2L12,13.9 l2,4.1l-0.3,0.4c-0.6,1.1-1.1,2.2-1.4,3.4l-0.1,0.5l-4.3,1.4v2.7l4.3,1.4l0.1,0.5c0.3,1.2,0.8,2.3,1.4,3.4l0.3,0.4l-2,4.1l1.9,1.9 l4.1-2l0.4,0.3c1.1,0.6,2.2,1.1,3.4,1.4l0.5,0.1L23.7,42.1z"></path></symbol><symbol id='ei-heart-icon' viewBox='0 0 50 50'><path d="M25,39.6l-0.6-0.5C11.6,28.7,8.1,25,8.1,19c0-4.9,4-8.9,8.9-8.9c4.1,0,6.4,2.3,8,4.1c1.6-1.8,3.9-4.1,8-4.1 c4.9,0,8.9,4,8.9,8.9c0,6-3.5,9.7-16.3,20.1L25,39.6z M17,11.9c-3.9,0-7.1,3.2-7.1,7.1c0,5.1,3.2,8.6,15.1,18.2 C36.8,27.6,40.1,24.1,40.1,19c0-3.9-3.2-7.1-7.1-7.1c-3.6,0-5.4,2.1-6.9,3.8L25,17l-1.1-1.2C22.4,14.1,20.6,11.9,17,11.9z"></path></symbol><symbol id='ei-image-icon' viewBox='0 0 50 50'><g><path d="M39,38H11c-1.7,0-3-1.3-3-3V15c0-1.7,1.3-3,3-3h28c1.7,0,3,1.3,3,3v20C42,36.7,40.7,38,39,38z M11,14c-0.6,0-1,0.4-1,1v20 c0,0.6,0.4,1,1,1h28c0.6,0,1-0.4,1-1V15c0-0.6-0.4-1-1-1H11z"></path><path d="M30,23.9c-2.2,0-3.9-1.8-3.9-3.9s1.8-3.9,3.9-3.9s3.9,1.8,3.9,3.9S32.2,23.9,30,23.9z M30,17.9c-1.1,0-2.1,0.9-2.1,2.1 s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1S31.1,17.9,30,17.9z"></path><polygon points="35.4,37.7 19,22.3 9.6,31 8.4,29.6 19,19.7 36.6,36.3"></polygon><polygon points="40.4,32.6 35,28.2 30.4,31.9 29.2,30.5 35,25.8 41.6,31.2"></polygon></g><path d="M39,38H11c-1.7,0-3-1.3-3-3V15c0-1.7,1.3-3,3-3h28c1.7,0,3,1.3,3,3v20C42,36.7,40.7,38,39,38z M11,14c-0.6,0-1,0.4-1,1v20 c0,0.6,0.4,1,1,1h28c0.6,0,1-0.4,1-1V15c0-0.6-0.4-1-1-1H11z"></path><path d="M30,23.9c-2.2,0-3.9-1.8-3.9-3.9s1.8-3.9,3.9-3.9s3.9,1.8,3.9,3.9S32.2,23.9,30,23.9z M30,17.9c-1.1,0-2.1,0.9-2.1,2.1 s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1S31.1,17.9,30,17.9z"></path><polygon points="35.4,37.7 19,22.3 9.6,31 8.4,29.6 19,19.7 36.6,36.3"></polygon><polygon points="40.4,32.6 35,28.2 30.4,31.9 29.2,30.5 35,25.8 41.6,31.2"></polygon></symbol><symbol id='ei-link-icon' viewBox='0 0 50 50'><g><path d="M24,30.2c0,0.2,0.1,0.5,0.1,0.8c0,1.4-0.5,2.6-1.5,3.6l-2,2c-1,1-2.2,1.5-3.6,1.5c-2.8,0-5.1-2.3-5.1-5.1 c0-1.4,0.5-2.6,1.5-3.6l2-2c1-1,2.2-1.5,3.6-1.5c0.3,0,0.5,0,0.8,0.1l1.5-1.5c-0.7-0.3-1.5-0.4-2.3-0.4c-1.9,0-3.6,0.7-4.9,2l-2,2 c-1.3,1.3-2,3-2,4.9c0,3.8,3.1,6.9,6.9,6.9c1.9,0,3.6-0.7,4.9-2l2-2c1.3-1.3,2-3,2-4.9c0-0.8-0.1-1.6-0.4-2.3L24,30.2z"></path><path d="M33,10.1c-1.9,0-3.6,0.7-4.9,2l-2,2c-1.3,1.3-2,3-2,4.9c0,0.8,0.1,1.6,0.4,2.3l1.5-1.5c0-0.2-0.1-0.5-0.1-0.8 c0-1.4,0.5-2.6,1.5-3.6l2-2c1-1,2.2-1.5,3.6-1.5c2.8,0,5.1,2.3,5.1,5.1c0,1.4-0.5,2.6-1.5,3.6l-2,2c-1,1-2.2,1.5-3.6,1.5 c-0.3,0-0.5,0-0.8-0.1l-1.5,1.5c0.7,0.3,1.5,0.4,2.3,0.4c1.9,0,3.6-0.7,4.9-2l2-2c1.3-1.3,2-3,2-4.9C39.9,13.2,36.8,10.1,33,10.1z"></path><path d="M20,31c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l10-10c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-10,10 C20.5,30.9,20.3,31,20,31z"></path></g><path d="M24,30.2c0,0.2,0.1,0.5,0.1,0.8c0,1.4-0.5,2.6-1.5,3.6l-2,2c-1,1-2.2,1.5-3.6,1.5c-2.8,0-5.1-2.3-5.1-5.1 c0-1.4,0.5-2.6,1.5-3.6l2-2c1-1,2.2-1.5,3.6-1.5c0.3,0,0.5,0,0.8,0.1l1.5-1.5c-0.7-0.3-1.5-0.4-2.3-0.4c-1.9,0-3.6,0.7-4.9,2l-2,2 c-1.3,1.3-2,3-2,4.9c0,3.8,3.1,6.9,6.9,6.9c1.9,0,3.6-0.7,4.9-2l2-2c1.3-1.3,2-3,2-4.9c0-0.8-0.1-1.6-0.4-2.3L24,30.2z"></path><path d="M33,10.1c-1.9,0-3.6,0.7-4.9,2l-2,2c-1.3,1.3-2,3-2,4.9c0,0.8,0.1,1.6,0.4,2.3l1.5-1.5c0-0.2-0.1-0.5-0.1-0.8 c0-1.4,0.5-2.6,1.5-3.6l2-2c1-1,2.2-1.5,3.6-1.5c2.8,0,5.1,2.3,5.1,5.1c0,1.4-0.5,2.6-1.5,3.6l-2,2c-1,1-2.2,1.5-3.6,1.5 c-0.3,0-0.5,0-0.8-0.1l-1.5,1.5c0.7,0.3,1.5,0.4,2.3,0.4c1.9,0,3.6-0.7,4.9-2l2-2c1.3-1.3,2-3,2-4.9C39.9,13.2,36.8,10.1,33,10.1z"></path><path d="M20,31c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l10-10c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-10,10 C20.5,30.9,20.3,31,20,31z"></path></symbol><symbol id='ei-location-icon' viewBox='0 0 50 50'><g><path d="M25,42.4l-0.7-0.8C23.8,41,12.1,27.2,12.1,19c0-7.1,5.8-12.9,12.9-12.9S37.9,11.9,37.9,19c0,8.2-11.7,22-12.2,22.6 L25,42.4z M25,7.9c-6.1,0-11.1,5-11.1,11.1c0,6.5,8.5,17.4,11.1,20.5c2.5-3.1,11.1-14.1,11.1-20.5C36.1,12.9,31.1,7.9,25,7.9z"></path><path d="M25,23.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S27.7,23.9,25,23.9z M25,15.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S26.7,15.9,25,15.9z"></path></g><path d="M25,42.4l-0.7-0.8C23.8,41,12.1,27.2,12.1,19c0-7.1,5.8-12.9,12.9-12.9S37.9,11.9,37.9,19c0,8.2-11.7,22-12.2,22.6 L25,42.4z M25,7.9c-6.1,0-11.1,5-11.1,11.1c0,6.5,8.5,17.4,11.1,20.5c2.5-3.1,11.1-14.1,11.1-20.5C36.1,12.9,31.1,7.9,25,7.9z"></path><path d="M25,23.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S27.7,23.9,25,23.9z M25,15.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S26.7,15.9,25,15.9z"></path></symbol><symbol id='ei-lock-icon' viewBox='0 0 50 50'><g><path d="M33.9,23h-1.9v-4c0-3.9-3.2-7.1-7.1-7.1s-7.1,3.2-7.1,7.1v4h-1.9v-4c0-4.9,4-8.9,8.9-8.9s8.9,4,8.9,8.9V23z"></path><path d="M33,40H17c-1.7,0-3-1.3-3-3V25c0-1.7,1.3-3,3-3h16c1.7,0,3,1.3,3,3v12C36,38.7,34.7,40,33,40z M17,24c-0.6,0-1,0.4-1,1v12 c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V25c0-0.6-0.4-1-1-1H17z"></path><circle cx="25" cy="28" r="2"></circle><polygon points="25.5,28 24.5,28 23.5,34 26.5,34"></polygon></g><path d="M33.9,23h-1.9v-4c0-3.9-3.2-7.1-7.1-7.1s-7.1,3.2-7.1,7.1v4h-1.9v-4c0-4.9,4-8.9,8.9-8.9s8.9,4,8.9,8.9V23z"></path><path d="M33,40H17c-1.7,0-3-1.3-3-3V25c0-1.7,1.3-3,3-3h16c1.7,0,3,1.3,3,3v12C36,38.7,34.7,40,33,40z M17,24c-0.6,0-1,0.4-1,1v12 c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V25c0-0.6-0.4-1-1-1H17z"></path><circle cx="25" cy="28" r="2"></circle><polygon points="25.5,28 24.5,28 23.5,34 26.5,34"></polygon></symbol><symbol id='ei-minus-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="16" y="24" width="18" height="2"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="16" y="24" width="18" height="2"></rect></symbol><symbol id='ei-navicon-icon' viewBox='0 0 50 50'><g><rect x="10" y="12" width="30" height="4"></rect><rect x="10" y="22" width="30" height="4"></rect><rect x="10" y="32" width="30" height="4"></rect></g><rect x="10" y="12" width="30" height="4"></rect><rect x="10" y="22" width="30" height="4"></rect><rect x="10" y="32" width="30" height="4"></rect></symbol><symbol id='ei-paperclip-icon' viewBox='0 0 50 50'><path d="M13.8,39.5c-1.6,0-3.1-0.6-4.2-1.7s-1.7-2.6-1.7-4.2c0-1.6,0.6-3.1,1.7-4.2l17-17c3.1-3.1,8.1-3.1,11.2,0 c1.5,1.5,2.3,3.5,2.3,5.6s-0.8,4.1-2.3,5.6L25.1,36.3L23.7,35l12.7-12.7c2.4-2.4,2.4-6.2,0-8.6c-2.4-2.4-6.2-2.4-8.6,0l-17,17 c-0.8,0.8-1.2,1.8-1.2,2.9c0,1.1,0.4,2.1,1.2,2.9c1.6,1.6,4.2,1.6,5.8,0l12.7-12.7c0.8-0.8,0.8-2.1,0-2.9c-0.8-0.8-2.1-0.8-2.9,0 L18,29.3l-1.3-1.3l8.5-8.5c1.5-1.5,4-1.5,5.6,0c1.5,1.5,1.5,4,0,5.6L18,37.7C16.9,38.9,15.4,39.5,13.8,39.5z"></path></symbol><symbol id='ei-pencil-icon' viewBox='0 0 50 50'><g><path d="M9.7,40.3l2.4-9.8L27,15.7l7.3,7.3L19.5,37.8L9.7,40.3z M13.8,31.5l-1.6,6.2l6.2-1.6L31.7,23L27,18.3L13.8,31.5z"></path><path d="M17.9,37.3c-0.6-2.5-2.6-4.5-5.1-5.1l0.5-1.8c3.2,0.8,5.7,3.3,6.5,6.5L17.9,37.3z"></path><rect x="22.6" y="17.3" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.6213 -8.8553)" width="1.9" height="18.4"></rect><path d="M11,39l2.9-0.7c-0.3-1.1-1.1-1.9-2.2-2.2L11,39z"></path><path d="M35,22.3L27.7,15l2.9-2.9l0.5,0.1c3.5,0.5,6.3,3.3,6.8,6.8l0.1,0.5L35,22.3z M30.3,15l4.7,4.7l0.9-0.9 c-0.5-2.3-2.3-4.2-4.7-4.7L30.3,15z"></path></g><path d="M9.7,40.3l2.4-9.8L27,15.7l7.3,7.3L19.5,37.8L9.7,40.3z M13.8,31.5l-1.6,6.2l6.2-1.6L31.7,23L27,18.3L13.8,31.5z"></path><path d="M17.9,37.3c-0.6-2.5-2.6-4.5-5.1-5.1l0.5-1.8c3.2,0.8,5.7,3.3,6.5,6.5L17.9,37.3z"></path><rect x="22.6" y="17.3" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.6213 -8.8553)" width="1.9" height="18.4"></rect><path d="M11,39l2.9-0.7c-0.3-1.1-1.1-1.9-2.2-2.2L11,39z"></path><path d="M35,22.3L27.7,15l2.9-2.9l0.5,0.1c3.5,0.5,6.3,3.3,6.8,6.8l0.1,0.5L35,22.3z M30.3,15l4.7,4.7l0.9-0.9 c-0.5-2.3-2.3-4.2-4.7-4.7L30.3,15z"></path></symbol><symbol id='ei-play-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><path d="M20,33.7V16.3L35,25L20,33.7z M22,19.7v10.5l9-5.3L22,19.7z"></path></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><path d="M20,33.7V16.3L35,25L20,33.7z M22,19.7v10.5l9-5.3L22,19.7z"></path></symbol><symbol id='ei-plus-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="16" y="24" width="18" height="2"></rect><rect x="24" y="16" width="2" height="18"></rect></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><rect x="16" y="24" width="18" height="2"></rect><rect x="24" y="16" width="2" height="18"></rect></symbol><symbol id='ei-pointer-icon' viewBox='0 0 50 50'><path d="M33,38H21c-0.6,0-1-0.4-1-1c0-1.5-0.7-2.4-1.8-3.8c-0.6-0.7-1.3-1.6-2-2.7c-1.9-3-3.5-6.5-3.9-7.9 c-0.4-1.3-0.1-2.2,0.2-2.7c0.4-0.6,1.2-0.9,2.1-0.9c1.2,0,2.4,1,3.5,2.3V11c0-1.7,1.3-3,3-3s3,1.3,3,3v4.2c0.3-0.1,0.6-0.2,1-0.2 c1.1,0,2,0.6,2.5,1.4C28,16.1,28.5,16,29,16c1.4,0,2.5,0.9,2.9,2.2c0.3-0.1,0.7-0.2,1.1-0.2c1.7,0,3,1.3,3,3v3c0,2.6-0.5,4.7-1,6.7 c-0.5,2-1,3.9-1,6.3C34,37.6,33.6,38,33,38z M21.9,36H32c0.1-2.2,0.6-4,1-5.8c0.5-2,1-3.9,1-6.2v-3.2c0-0.6-0.4-1-1-1s-1,0.4-1,1 V22c0,0.6-0.4,1-1,1s-1-0.4-1-1v-3.2c0-0.6-0.4-1-1-1s-1,0.4-1,1V21c0,0.6-0.4,1-1,1s-1-0.4-1-1v-3.2c0-0.6-0.4-1-1-1s-1,0.4-1,1 V20c0,0.6-0.4,1-1,1s-1-0.4-1-1v-9.2c0-0.6-0.4-1-1-1s-1,0.4-1,1V26c0,0.6-0.4,1-1,1s-1-0.4-1-1v-0.8c-0.9-2.3-2.8-4.3-3.5-4.3 c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.1,0.4,0,0.9c0.3,1.1,1.8,4.3,3.8,7.5c0.6,1,1.2,1.7,1.8,2.5C20.7,33.2,21.7,34.3,21.9,36z"></path></symbol><symbol id='ei-question-icon' viewBox='0 0 50 50'><g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><g><path d="M19.8,19.6c0.3-0.8,0.6-1.4,1.2-1.9c0.5-0.5,1.1-0.9,1.9-1.2s1.6-0.4,2.5-0.4c0.7,0,1.4,0.1,2,0.3 c0.6,0.2,1.2,0.5,1.7,0.9s0.9,0.9,1.1,1.5c0.3,0.6,0.4,1.3,0.4,2c0,1-0.2,1.8-0.6,2.5s-1,1.3-1.6,2c-0.5,0.5-1,1-1.3,1.3 c-0.3,0.3-0.6,0.6-0.7,0.9c-0.2,0.3-0.3,0.7-0.3,1.1c-0.1,0.4-0.1,0.7-0.1,1.5h-1.6c0-0.8,0-1.1,0.1-1.7c0.1-0.5,0.3-1,0.5-1.5 c0.2-0.4,0.5-0.8,0.9-1.2c0.4-0.4,0.9-0.8,1.4-1.4c0.5-0.5,0.9-1,1.2-1.5s0.5-1.2,0.5-1.8c0-0.5-0.1-1-0.3-1.4 c-0.2-0.4-0.5-0.8-0.8-1.1c-0.3-0.3-0.7-0.5-1.2-0.7c-0.5-0.2-0.9-0.3-1.4-0.3c-0.7,0-1.3,0.1-1.8,0.4c-0.5,0.2-1,0.6-1.3,1 c-0.3,0.4-0.6,0.9-0.8,1.5S21,21.3,21,22h-1.6C19.4,21.1,19.5,20.4,19.8,19.6z M26,32v2h-2v-2H26z"></path></g></g><path d="M25,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25,8.1S41.9,15.7,41.9,25S34.3,41.9,25,41.9z M25,9.9 C16.7,9.9,9.9,16.7,9.9,25S16.7,40.1,25,40.1S40.1,33.3,40.1,25S33.3,9.9,25,9.9z"></path><g><path d="M19.8,19.6c0.3-0.8,0.6-1.4,1.2-1.9c0.5-0.5,1.1-0.9,1.9-1.2s1.6-0.4,2.5-0.4c0.7,0,1.4,0.1,2,0.3 c0.6,0.2,1.2,0.5,1.7,0.9s0.9,0.9,1.1,1.5c0.3,0.6,0.4,1.3,0.4,2c0,1-0.2,1.8-0.6,2.5s-1,1.3-1.6,2c-0.5,0.5-1,1-1.3,1.3 c-0.3,0.3-0.6,0.6-0.7,0.9c-0.2,0.3-0.3,0.7-0.3,1.1c-0.1,0.4-0.1,0.7-0.1,1.5h-1.6c0-0.8,0-1.1,0.1-1.7c0.1-0.5,0.3-1,0.5-1.5 c0.2-0.4,0.5-0.8,0.9-1.2c0.4-0.4,0.9-0.8,1.4-1.4c0.5-0.5,0.9-1,1.2-1.5s0.5-1.2,0.5-1.8c0-0.5-0.1-1-0.3-1.4 c-0.2-0.4-0.5-0.8-0.8-1.1c-0.3-0.3-0.7-0.5-1.2-0.7c-0.5-0.2-0.9-0.3-1.4-0.3c-0.7,0-1.3,0.1-1.8,0.4c-0.5,0.2-1,0.6-1.3,1 c-0.3,0.4-0.6,0.9-0.8,1.5S21,21.3,21,22h-1.6C19.4,21.1,19.5,20.4,19.8,19.6z M26,32v2h-2v-2H26z"></path></g><path d="M19.8,19.6c0.3-0.8,0.6-1.4,1.2-1.9c0.5-0.5,1.1-0.9,1.9-1.2s1.6-0.4,2.5-0.4c0.7,0,1.4,0.1,2,0.3 c0.6,0.2,1.2,0.5,1.7,0.9s0.9,0.9,1.1,1.5c0.3,0.6,0.4,1.3,0.4,2c0,1-0.2,1.8-0.6,2.5s-1,1.3-1.6,2c-0.5,0.5-1,1-1.3,1.3 c-0.3,0.3-0.6,0.6-0.7,0.9c-0.2,0.3-0.3,0.7-0.3,1.1c-0.1,0.4-0.1,0.7-0.1,1.5h-1.6c0-0.8,0-1.1,0.1-1.7c0.1-0.5,0.3-1,0.5-1.5 c0.2-0.4,0.5-0.8,0.9-1.2c0.4-0.4,0.9-0.8,1.4-1.4c0.5-0.5,0.9-1,1.2-1.5s0.5-1.2,0.5-1.8c0-0.5-0.1-1-0.3-1.4 c-0.2-0.4-0.5-0.8-0.8-1.1c-0.3-0.3-0.7-0.5-1.2-0.7c-0.5-0.2-0.9-0.3-1.4-0.3c-0.7,0-1.3,0.1-1.8,0.4c-0.5,0.2-1,0.6-1.3,1 c-0.3,0.4-0.6,0.9-0.8,1.5S21,21.3,21,22h-1.6C19.4,21.1,19.5,20.4,19.8,19.6z M26,32v2h-2v-2H26z"></path></symbol><symbol id='ei-redo-icon' viewBox='0 0 50 50'><g><path d="M25,37.9c-7.1,0-12.9-5.8-12.9-12.9S17.9,12.1,25,12.1c5.4,0,10,3.4,11.9,8.6l-1.8,0.6c-1.6-4.6-5.5-7.4-10.1-7.4 c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1c4.3,0,8.3-2.5,10.1-6.5l1.7,0.8C34.7,35,30,37.9,25,37.9z"></path><polygon points="38,22 30,22 30,20 36,20 36,14 38,14"></polygon></g><path d="M25,37.9c-7.1,0-12.9-5.8-12.9-12.9S17.9,12.1,25,12.1c5.4,0,10,3.4,11.9,8.6l-1.8,0.6c-1.6-4.6-5.5-7.4-10.1-7.4 c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1c4.3,0,8.3-2.5,10.1-6.5l1.7,0.8C34.7,35,30,37.9,25,37.9z"></path><polygon points="38,22 30,22 30,20 36,20 36,14 38,14"></polygon></symbol><symbol id='ei-refresh-icon' viewBox='0 0 50 50'><g><path d="M25,37.9c-7.1,0-12.9-5.8-12.9-12.9c0-3.2,1.1-6.2,3.2-8.6l1.4,1.2c-1.8,2-2.8,4.6-2.8,7.3c0,6.1,5,11.1,11.1,11.1 c1.6,0,3.2-0.3,4.6-1l0.8,1.7C28.7,37.5,26.9,37.9,25,37.9z"></path><path d="M34.6,33.6l-1.4-1.2c1.8-2,2.8-4.7,2.8-7.4c0-6.1-5-11.1-11.1-11.1c-1.6,0-3.2,0.3-4.6,1l-0.8-1.7 c1.7-0.8,3.5-1.2,5.4-1.2c7.1,0,12.9,5.8,12.9,12.9C37.9,28.2,36.8,31.2,34.6,33.6z"></path><polygon points="18,24 16,24 16,18 10,18 10,16 18,16"></polygon><polygon points="40,34 32,34 32,26 34,26 34,32 40,32"></polygon></g><path d="M25,37.9c-7.1,0-12.9-5.8-12.9-12.9c0-3.2,1.1-6.2,3.2-8.6l1.4,1.2c-1.8,2-2.8,4.6-2.8,7.3c0,6.1,5,11.1,11.1,11.1 c1.6,0,3.2-0.3,4.6-1l0.8,1.7C28.7,37.5,26.9,37.9,25,37.9z"></path><path d="M34.6,33.6l-1.4-1.2c1.8-2,2.8-4.7,2.8-7.4c0-6.1-5-11.1-11.1-11.1c-1.6,0-3.2,0.3-4.6,1l-0.8-1.7 c1.7-0.8,3.5-1.2,5.4-1.2c7.1,0,12.9,5.8,12.9,12.9C37.9,28.2,36.8,31.2,34.6,33.6z"></path><polygon points="18,24 16,24 16,18 10,18 10,16 18,16"></polygon><polygon points="40,34 32,34 32,26 34,26 34,32 40,32"></polygon></symbol><symbol id='ei-retweet-icon' viewBox='0 0 50 50'><g><path d="M38,35h-2V17c0-0.6-0.4-1-1-1H18v-2h17c1.7,0,3,1.3,3,3V35z"></path><polygon points="37,36.4 30.3,28.6 31.7,27.4 37,33.6 42.3,27.4 43.7,28.6"></polygon><path d="M32,36H15c-1.7,0-3-1.3-3-3V15h2v18c0,0.6,0.4,1,1,1h17V36z"></path><polygon points="18.3,22.6 13,16.4 7.7,22.6 6.3,21.4 13,13.6 19.7,21.4"></polygon></g><path d="M38,35h-2V17c0-0.6-0.4-1-1-1H18v-2h17c1.7,0,3,1.3,3,3V35z"></path><polygon points="37,36.4 30.3,28.6 31.7,27.4 37,33.6 42.3,27.4 43.7,28.6"></polygon><path d="M32,36H15c-1.7,0-3-1.3-3-3V15h2v18c0,0.6,0.4,1,1,1h17V36z"></path><polygon points="18.3,22.6 13,16.4 7.7,22.6 6.3,21.4 13,13.6 19.7,21.4"></polygon></symbol><symbol id='ei-sc-facebook-icon' viewBox='0 0 50 50'><path d="M26,20v-3c0-1.3,0.3-2,2.4-2H31v-5h-4c-5,0-7,3.3-7,7v3h-4v5h4v15h6V25h4.4l0.6-5H26z"></path></symbol><symbol id='ei-sc-github-icon' viewBox='0 0 50 50'><path fill-rule="evenodd" clip-rule="evenodd" d="M25,10c-8.3,0-15,6.7-15,15c0,6.6,4.3,12.2,10.3,14.2 c0.8,0.1,1-0.3,1-0.7c0-0.4,0-1.3,0-2.6c-4.2,0.9-5.1-2-5.1-2c-0.7-1.7-1.7-2.2-1.7-2.2c-1.4-0.9,0.1-0.9,0.1-0.9 c1.5,0.1,2.3,1.5,2.3,1.5c1.3,2.3,3.5,1.6,4.4,1.2c0.1-1,0.5-1.6,1-2c-3.3-0.4-6.8-1.7-6.8-7.4c0-1.6,0.6-3,1.5-4 c-0.2-0.4-0.7-1.9,0.1-4c0,0,1.3-0.4,4.1,1.5c1.2-0.3,2.5-0.5,3.8-0.5c1.3,0,2.6,0.2,3.8,0.5c2.9-1.9,4.1-1.5,4.1-1.5 c0.8,2.1,0.3,3.6,0.1,4c1,1,1.5,2.4,1.5,4c0,5.8-3.5,7-6.8,7.4c0.5,0.5,1,1.4,1,2.8c0,2,0,3.6,0,4.1c0,0.4,0.3,0.9,1,0.7 c6-2,10.2-7.6,10.2-14.2C40,16.7,33.3,10,25,10z"></path></symbol><symbol id='ei-sc-google-plus-icon' viewBox='0 0 50 50'><g><path d="M29.3,31.1c-0.6-0.8-1.2-1.4-2-2c-0.7-0.6-1.6-1.1-2.1-1.9c-1.1-1.8,1.3-3.2,2.3-4.4c2.4-2.6,1.7-7.5-1.3-9.4 c0.7,0,1.8,0.2,2.5,0c0.8-0.2,1.7-1,2.4-1.4c-2.6,0-5.1,0-7.7,0c-2.4,0-4.9,0.3-6.8,1.9c-2.2,1.8-3.3,4.7-2.4,7.5 c1,3.2,4.4,4.6,7.5,4.2c-0.2,0.7-0.5,1.2-0.4,1.9c0.1,0.9,0.6,1.7,1.1,2.4c-2.8,0.1-6.2,0.6-8.5,2.5c-2.1,1.8-2.8,5-0.9,7.2 c2,2.3,5.6,2.7,8.4,2.5c2.5-0.2,4.9-1,6.7-2.7C30.4,37.1,31.2,33.6,29.3,31.1C28.9,30.7,29.6,31.5,29.3,31.1z M22.3,24.6 c-5.1,0-7.4-11.3-1.5-11.3c2.9,0,4.2,3.2,4.7,5.7C25.9,21.4,25.4,24.6,22.3,24.6z M27.3,38.1c-1.7,2.9-6.4,2.6-9,1.5 c-2.7-1.2-4.1-4.7-1.6-7c1.1-1,2.7-1.4,4.1-1.6c0.8-0.1,1.6-0.2,2.4-0.1c0.6,0.1,0.9,0.4,1.4,0.7C26.7,33.1,28.9,35.4,27.3,38.1 C27,38.7,27.6,37.5,27.3,38.1z"></path><polygon points="40,16 36,16 36,12 34,12 34,16 30,16 30,18 34,18 34,22 36,22 36,18 40,18"></polygon></g><path d="M29.3,31.1c-0.6-0.8-1.2-1.4-2-2c-0.7-0.6-1.6-1.1-2.1-1.9c-1.1-1.8,1.3-3.2,2.3-4.4c2.4-2.6,1.7-7.5-1.3-9.4 c0.7,0,1.8,0.2,2.5,0c0.8-0.2,1.7-1,2.4-1.4c-2.6,0-5.1,0-7.7,0c-2.4,0-4.9,0.3-6.8,1.9c-2.2,1.8-3.3,4.7-2.4,7.5 c1,3.2,4.4,4.6,7.5,4.2c-0.2,0.7-0.5,1.2-0.4,1.9c0.1,0.9,0.6,1.7,1.1,2.4c-2.8,0.1-6.2,0.6-8.5,2.5c-2.1,1.8-2.8,5-0.9,7.2 c2,2.3,5.6,2.7,8.4,2.5c2.5-0.2,4.9-1,6.7-2.7C30.4,37.1,31.2,33.6,29.3,31.1C28.9,30.7,29.6,31.5,29.3,31.1z M22.3,24.6 c-5.1,0-7.4-11.3-1.5-11.3c2.9,0,4.2,3.2,4.7,5.7C25.9,21.4,25.4,24.6,22.3,24.6z M27.3,38.1c-1.7,2.9-6.4,2.6-9,1.5 c-2.7-1.2-4.1-4.7-1.6-7c1.1-1,2.7-1.4,4.1-1.6c0.8-0.1,1.6-0.2,2.4-0.1c0.6,0.1,0.9,0.4,1.4,0.7C26.7,33.1,28.9,35.4,27.3,38.1 C27,38.7,27.6,37.5,27.3,38.1z"></path><polygon points="40,16 36,16 36,12 34,12 34,16 30,16 30,18 34,18 34,22 36,22 36,18 40,18"></polygon></symbol><symbol id='ei-sc-twitter-icon' viewBox='0 0 50 50'><path d="M39.2,16.8c-1.1,0.5-2.2,0.8-3.5,1c1.2-0.8,2.2-1.9,2.7-3.3c-1.2,0.7-2.5,1.2-3.8,1.5c-1.1-1.2-2.7-1.9-4.4-1.9 c-3.3,0-6.1,2.7-6.1,6.1c0,0.5,0.1,0.9,0.2,1.4c-5-0.2-9.5-2.7-12.5-6.3C11.3,16,11,17,11,18.1c0,2.1,1.1,4,2.7,5 c-1,0-1.9-0.3-2.7-0.8c0,0,0,0,0,0.1c0,2.9,2.1,5.4,4.9,5.9c-0.5,0.1-1,0.2-1.6,0.2c-0.4,0-0.8,0-1.1-0.1c0.8,2.4,3,4.2,5.7,4.2 c-2.1,1.6-4.7,2.6-7.5,2.6c-0.5,0-1,0-1.4-0.1C12.4,37,15.6,38,19,38c11.1,0,17.2-9.2,17.2-17.2c0-0.3,0-0.5,0-0.8 C37.4,19.1,38.4,18.1,39.2,16.8z"></path></symbol><symbol id='ei-sc-vk-icon' viewBox='0 0 50 50'><path fill-rule="evenodd" clip-rule="evenodd" d="M25.1,35.9h2c0,0,0.6-0.1,0.9-0.4c0.3-0.3,0.3-0.9,0.3-0.9s0-2.6,1.2-3 c1.2-0.4,2.8,2.6,4.4,3.7C35.1,36.2,36,36,36,36l4.4-0.1c0,0,2.3-0.1,1.2-2c-0.1-0.1-0.6-1.3-3.3-3.8c-2.8-2.6-2.4-2.1,0.9-6.6 c2-2.7,2.8-4.3,2.6-5.1c-0.2-0.7-1.7-0.5-1.7-0.5l-5,0c0,0-0.4-0.1-0.6,0.1c-0.3,0.2-0.4,0.5-0.4,0.5s-0.8,2.1-1.8,3.9 c-2.2,3.7-3.1,3.9-3.4,3.7c-0.8-0.5-0.6-2.2-0.6-3.3c0-3.6,0.6-5.1-1.1-5.5c-0.5-0.1-0.9-0.2-2.3-0.2c-1.8,0-3.3,0-4.1,0.4 c-0.6,0.3-1,0.9-0.7,0.9c0.3,0,1.1,0.2,1.5,0.7C22,20,22,21.5,22,21.5s0.3,4.3-0.7,4.8c-0.7,0.4-1.6-0.4-3.6-3.8 c-1-1.7-1.8-3.7-1.8-3.7s-0.1-0.4-0.4-0.6c-0.3-0.2-0.8-0.3-0.8-0.3l-4.7,0c0,0-0.7,0-1,0.3c-0.2,0.3,0,0.8,0,0.8s3.7,8.6,7.9,13 C20.8,36.2,25.1,35.9,25.1,35.9L25.1,35.9z"></path></symbol><symbol id='ei-search-icon' viewBox='0 0 50 50'><g><path d="M23,35.9c-7.1,0-12.9-5.8-12.9-12.9S15.9,10.1,23,10.1S35.9,15.9,35.9,23S30.1,35.9,23,35.9z M23,11.9 c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S29.1,11.9,23,11.9z"></path><rect x="30.1" y="35.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 36.5 -15.1188)" width="12.7" height="2"></rect></g><path d="M23,35.9c-7.1,0-12.9-5.8-12.9-12.9S15.9,10.1,23,10.1S35.9,15.9,35.9,23S30.1,35.9,23,35.9z M23,11.9 c-6.1,0-11.1,5-11.1,11.1s5,11.1,11.1,11.1s11.1-5,11.1-11.1S29.1,11.9,23,11.9z"></path><rect x="30.1" y="35.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 36.5 -15.1188)" width="12.7" height="2"></rect></symbol><symbol id='ei-share-apple-icon' viewBox='0 0 50 50'><g><polygon points="30.3,13.7 25,8.3 19.7,13.7 18.3,12.3 25,5.7 31.7,12.3"></polygon><rect x="24" y="7" width="2" height="21"></rect><path d="M35,40H15c-1.7,0-3-1.3-3-3V19c0-1.7,1.3-3,3-3h7v2h-7c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h20c0.6,0,1-0.4,1-1V19 c0-0.6-0.4-1-1-1h-7v-2h7c1.7,0,3,1.3,3,3v18C38,38.7,36.7,40,35,40z"></path></g><polygon points="30.3,13.7 25,8.3 19.7,13.7 18.3,12.3 25,5.7 31.7,12.3"></polygon><rect x="24" y="7" width="2" height="21"></rect><path d="M35,40H15c-1.7,0-3-1.3-3-3V19c0-1.7,1.3-3,3-3h7v2h-7c-0.6,0-1,0.4-1,1v18c0,0.6,0.4,1,1,1h20c0.6,0,1-0.4,1-1V19 c0-0.6-0.4-1-1-1h-7v-2h7c1.7,0,3,1.3,3,3v18C38,38.7,36.7,40,35,40z"></path></symbol><symbol id='ei-share-google-icon' viewBox='0 0 50 50'><g><g><path d="M15,29.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S17.7,29.9,15,29.9z M15,21.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S16.7,21.9,15,21.9z"></path><path d="M35,19.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S37.7,19.9,35,19.9z M35,11.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S36.7,11.9,35,11.9z"></path><path d="M35,39.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S37.7,39.9,35,39.9z M35,31.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S36.7,31.9,35,31.9z"></path></g><rect x="17.8" y="29" transform="matrix(0.8944 0.4472 -0.4472 0.8944 16.0557 -8.0132)" width="14.4" height="2"></rect><rect x="24" y="12.8" transform="matrix(0.4472 0.8944 -0.8944 0.4472 31.7082 -11.305)" width="2" height="14.4"></rect></g><g><path d="M15,29.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S17.7,29.9,15,29.9z M15,21.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S16.7,21.9,15,21.9z"></path><path d="M35,19.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S37.7,19.9,35,19.9z M35,11.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S36.7,11.9,35,11.9z"></path><path d="M35,39.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S37.7,39.9,35,39.9z M35,31.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S36.7,31.9,35,31.9z"></path></g><rect x="17.8" y="29" transform="matrix(0.8944 0.4472 -0.4472 0.8944 16.0557 -8.0132)" width="14.4" height="2"></rect><rect x="24" y="12.8" transform="matrix(0.4472 0.8944 -0.8944 0.4472 31.7082 -11.305)" width="2" height="14.4"></rect><path d="M15,29.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S17.7,29.9,15,29.9z M15,21.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S16.7,21.9,15,21.9z"></path><path d="M35,19.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S37.7,19.9,35,19.9z M35,11.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S36.7,11.9,35,11.9z"></path><path d="M35,39.9c-2.7,0-4.9-2.2-4.9-4.9s2.2-4.9,4.9-4.9s4.9,2.2,4.9,4.9S37.7,39.9,35,39.9z M35,31.9c-1.7,0-3.1,1.4-3.1,3.1 s1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1S36.7,31.9,35,31.9z"></path></symbol><symbol id='ei-spinner-2-icon' viewBox='0 0 50 50'><g><circle cx="25" cy="10" r="2"></circle><circle opacity="0.3" cx="25" cy="40" r="2"></circle><circle opacity="0.3" cx="32.5" cy="12" r="2"></circle><circle opacity="0.3" cx="17.5" cy="38" r="2"></circle><circle opacity="0.93" cx="17.5" cy="12" r="2"></circle><circle opacity="0.3" cx="32.5" cy="38" r="2"></circle><circle opacity="0.65" cx="10" cy="25" r="2"></circle><circle opacity="0.3" cx="40" cy="25" r="2"></circle><circle opacity="0.86" cx="12" cy="17.5" r="2"></circle><circle opacity="0.3" cx="38" cy="32.5" r="2"></circle><circle opacity="0.44" cx="12" cy="32.5" r="2"></circle><circle opacity="0.3" cx="38" cy="17.5" r="2"></circle></g><circle cx="25" cy="10" r="2"></circle><circle opacity="0.3" cx="25" cy="40" r="2"></circle><circle opacity="0.3" cx="32.5" cy="12" r="2"></circle><circle opacity="0.3" cx="17.5" cy="38" r="2"></circle><circle opacity="0.93" cx="17.5" cy="12" r="2"></circle><circle opacity="0.3" cx="32.5" cy="38" r="2"></circle><circle opacity="0.65" cx="10" cy="25" r="2"></circle><circle opacity="0.3" cx="40" cy="25" r="2"></circle><circle opacity="0.86" cx="12" cy="17.5" r="2"></circle><circle opacity="0.3" cx="38" cy="32.5" r="2"></circle><circle opacity="0.44" cx="12" cy="32.5" r="2"></circle><circle opacity="0.3" cx="38" cy="17.5" r="2"></circle></symbol><symbol id='ei-spinner-3-icon' viewBox='0 0 50 50'><path d="M41.9,23.9c-0.3-6.1-4-11.8-9.5-14.4c-6-2.7-13.3-1.6-18.3,2.6c-4.8,4-7,10.5-5.6,16.6c1.3,6,6,10.9,11.9,12.5 C27.5,43.2,34,39.8,38,34c-3.6,4.8-9.1,8-15.2,6.9c-6.1-1.1-11.1-5.7-12.5-11.7c-1.5-6.4,1.5-13.1,7.2-16.4 c5.9-3.4,14.2-2.1,18.1,3.7c1,1.4,1.7,3.1,2,4.8c0.3,1.4,0.2,2.9,0.4,4.3c0.2,1.3,1.3,3,2.8,2.1C42.1,26.9,42,25.2,41.9,23.9 C41.9,23.5,42,24.6,41.9,23.9z"></path></symbol><symbol id='ei-spinner-icon' viewBox='0 0 50 50'><g><path d="M25,18c-0.6,0-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1v8C26,17.6,25.6,18,25,18z"></path><path opacity="0.3" d="M25,42c-0.6,0-1-0.4-1-1v-8c0-0.6,0.4-1,1-1s1,0.4,1,1v8C26,41.6,25.6,42,25,42z"></path><path opacity="0.3" d="M29,19c-0.2,0-0.3,0-0.5-0.1c-0.4-0.3-0.6-0.8-0.3-1.3l4-6.9c0.3-0.4,0.8-0.6,1.3-0.3 c0.4,0.3,0.6,0.8,0.3,1.3l-4,6.9C29.6,18.8,29.3,19,29,19z"></path><path opacity="0.3" d="M17,39.8c-0.2,0-0.3,0-0.5-0.1c-0.4-0.3-0.6-0.8-0.3-1.3l4-6.9c0.3-0.4,0.8-0.6,1.3-0.3 c0.4,0.3,0.6,0.8,0.3,1.3l-4,6.9C17.6,39.6,17.3,39.8,17,39.8z"></path><path opacity="0.93" d="M21,19c-0.3,0-0.6-0.2-0.8-0.5l-4-6.9c-0.3-0.4-0.1-1,0.3-1.3c0.4-0.3,1-0.1,1.3,0.3l4,6.9 c0.3,0.4,0.1,1-0.3,1.3C21.3,19,21.2,19,21,19z"></path><path opacity="0.3" d="M33,39.8c-0.3,0-0.6-0.2-0.8-0.5l-4-6.9c-0.3-0.4-0.1-1,0.3-1.3c0.4-0.3,1-0.1,1.3,0.3l4,6.9 c0.3,0.4,0.1,1-0.3,1.3C33.3,39.7,33.2,39.8,33,39.8z"></path><path opacity="0.65" d="M17,26H9c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1S17.6,26,17,26z"></path><path opacity="0.3" d="M41,26h-8c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1S41.6,26,41,26z"></path><path opacity="0.86" d="M18.1,21.9c-0.2,0-0.3,0-0.5-0.1l-6.9-4c-0.4-0.3-0.6-0.8-0.3-1.3c0.3-0.4,0.8-0.6,1.3-0.3l6.9,4 c0.4,0.3,0.6,0.8,0.3,1.3C18.7,21.8,18.4,21.9,18.1,21.9z"></path><path opacity="0.3" d="M38.9,33.9c-0.2,0-0.3,0-0.5-0.1l-6.9-4c-0.4-0.3-0.6-0.8-0.3-1.3c0.3-0.4,0.8-0.6,1.3-0.3l6.9,4 c0.4,0.3,0.6,0.8,0.3,1.3C39.5,33.8,39.2,33.9,38.9,33.9z"></path><path opacity="0.44" d="M11.1,33.9c-0.3,0-0.6-0.2-0.8-0.5c-0.3-0.4-0.1-1,0.3-1.3l6.9-4c0.4-0.3,1-0.1,1.3,0.3 c0.3,0.4,0.1,1-0.3,1.3l-6.9,4C11.5,33.9,11.3,33.9,11.1,33.9z"></path><path opacity="0.3" d="M31.9,21.9c-0.3,0-0.6-0.2-0.8-0.5c-0.3-0.4-0.1-1,0.3-1.3l6.9-4c0.4-0.3,1-0.1,1.3,0.3 c0.3,0.4,0.1,1-0.3,1.3l-6.9,4C32.2,21.9,32.1,21.9,31.9,21.9z"></path></g><path d="M25,18c-0.6,0-1-0.4-1-1V9c0-0.6,0.4-1,1-1s1,0.4,1,1v8C26,17.6,25.6,18,25,18z"></path><path opacity="0.3" d="M25,42c-0.6,0-1-0.4-1-1v-8c0-0.6,0.4-1,1-1s1,0.4,1,1v8C26,41.6,25.6,42,25,42z"></path><path opacity="0.3" d="M29,19c-0.2,0-0.3,0-0.5-0.1c-0.4-0.3-0.6-0.8-0.3-1.3l4-6.9c0.3-0.4,0.8-0.6,1.3-0.3 c0.4,0.3,0.6,0.8,0.3,1.3l-4,6.9C29.6,18.8,29.3,19,29,19z"></path><path opacity="0.3" d="M17,39.8c-0.2,0-0.3,0-0.5-0.1c-0.4-0.3-0.6-0.8-0.3-1.3l4-6.9c0.3-0.4,0.8-0.6,1.3-0.3 c0.4,0.3,0.6,0.8,0.3,1.3l-4,6.9C17.6,39.6,17.3,39.8,17,39.8z"></path><path opacity="0.93" d="M21,19c-0.3,0-0.6-0.2-0.8-0.5l-4-6.9c-0.3-0.4-0.1-1,0.3-1.3c0.4-0.3,1-0.1,1.3,0.3l4,6.9 c0.3,0.4,0.1,1-0.3,1.3C21.3,19,21.2,19,21,19z"></path><path opacity="0.3" d="M33,39.8c-0.3,0-0.6-0.2-0.8-0.5l-4-6.9c-0.3-0.4-0.1-1,0.3-1.3c0.4-0.3,1-0.1,1.3,0.3l4,6.9 c0.3,0.4,0.1,1-0.3,1.3C33.3,39.7,33.2,39.8,33,39.8z"></path><path opacity="0.65" d="M17,26H9c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1S17.6,26,17,26z"></path><path opacity="0.3" d="M41,26h-8c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1S41.6,26,41,26z"></path><path opacity="0.86" d="M18.1,21.9c-0.2,0-0.3,0-0.5-0.1l-6.9-4c-0.4-0.3-0.6-0.8-0.3-1.3c0.3-0.4,0.8-0.6,1.3-0.3l6.9,4 c0.4,0.3,0.6,0.8,0.3,1.3C18.7,21.8,18.4,21.9,18.1,21.9z"></path><path opacity="0.3" d="M38.9,33.9c-0.2,0-0.3,0-0.5-0.1l-6.9-4c-0.4-0.3-0.6-0.8-0.3-1.3c0.3-0.4,0.8-0.6,1.3-0.3l6.9,4 c0.4,0.3,0.6,0.8,0.3,1.3C39.5,33.8,39.2,33.9,38.9,33.9z"></path><path opacity="0.44" d="M11.1,33.9c-0.3,0-0.6-0.2-0.8-0.5c-0.3-0.4-0.1-1,0.3-1.3l6.9-4c0.4-0.3,1-0.1,1.3,0.3 c0.3,0.4,0.1,1-0.3,1.3l-6.9,4C11.5,33.9,11.3,33.9,11.1,33.9z"></path><path opacity="0.3" d="M31.9,21.9c-0.3,0-0.6-0.2-0.8-0.5c-0.3-0.4-0.1-1,0.3-1.3l6.9-4c0.4-0.3,1-0.1,1.3,0.3 c0.3,0.4,0.1,1-0.3,1.3l-6.9,4C32.2,21.9,32.1,21.9,31.9,21.9z"></path></symbol><symbol id='ei-star-icon' viewBox='0 0 50 50'><path d="M35.8,40.5c-0.2,0-0.4-0.1-0.5-0.2L25,32.9l-10.3,7.5c-0.3,0.2-0.8,0.2-1.1,0c-0.3-0.2-0.5-0.7-0.3-1l3.9-12.1L6.9,19.7 c-0.3-0.2-0.5-0.7-0.3-1c0.1-0.4,0.5-0.6,0.9-0.6h12.7L24.1,6c0.1-0.4,0.5-0.6,0.9-0.6s0.8,0.3,0.9,0.6l3.9,12.1h12.7 c0.4,0,0.8,0.3,0.9,0.6c0.1,0.4,0,0.8-0.3,1l-10.3,7.5l3.9,12.1c0.1,0.4,0,0.8-0.3,1C36.2,40.5,36,40.5,35.8,40.5z M25,30.8 c0.2,0,0.4,0.1,0.5,0.2l8.5,6.2l-3.3-10c-0.1-0.4,0-0.8,0.3-1l8.5-6.2H29.1c-0.4,0-0.8-0.3-0.9-0.6L25,9.3l-3.3,10 c-0.1,0.4-0.5,0.6-0.9,0.6H10.3l8.5,6.2c0.3,0.2,0.5,0.7,0.3,1l-3.3,10l8.5-6.2C24.6,30.9,24.8,30.8,25,30.8z"></path></symbol><symbol id='ei-tag-icon' viewBox='0 0 50 50'><g><path d="M22,40.1c-0.9,0-1.7-0.3-2.3-0.9l-8.9-8.9c-1.2-1.2-1.2-3.3,0-4.5l11.9-11.9c1-1,3-1.8,4.5-1.8h7.6c1.8,0,3.2,1.4,3.2,3.2 v7.6c0,1.5-0.8,3.4-1.8,4.5L24.3,39.2C23.7,39.8,22.9,40.1,22,40.1z M27.2,14c-1,0-2.4,0.6-3,1.3L12.3,27.2 c-0.5,0.5-0.5,1.2,0,1.7l8.9,8.9c0.5,0.4,1.2,0.4,1.7,0l11.9-11.9c0.7-0.7,1.3-2.1,1.3-3v-7.6c0-0.7-0.5-1.2-1.2-1.2H27.2z"></path><path d="M30,23.9c-2.2,0-3.9-1.8-3.9-3.9s1.8-3.9,3.9-3.9s3.9,1.8,3.9,3.9S32.2,23.9,30,23.9z M30,17.9c-1.1,0-2.1,0.9-2.1,2.1 s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1S31.1,17.9,30,17.9z"></path></g><path d="M22,40.1c-0.9,0-1.7-0.3-2.3-0.9l-8.9-8.9c-1.2-1.2-1.2-3.3,0-4.5l11.9-11.9c1-1,3-1.8,4.5-1.8h7.6c1.8,0,3.2,1.4,3.2,3.2 v7.6c0,1.5-0.8,3.4-1.8,4.5L24.3,39.2C23.7,39.8,22.9,40.1,22,40.1z M27.2,14c-1,0-2.4,0.6-3,1.3L12.3,27.2 c-0.5,0.5-0.5,1.2,0,1.7l8.9,8.9c0.5,0.4,1.2,0.4,1.7,0l11.9-11.9c0.7-0.7,1.3-2.1,1.3-3v-7.6c0-0.7-0.5-1.2-1.2-1.2H27.2z"></path><path d="M30,23.9c-2.2,0-3.9-1.8-3.9-3.9s1.8-3.9,3.9-3.9s3.9,1.8,3.9,3.9S32.2,23.9,30,23.9z M30,17.9c-1.1,0-2.1,0.9-2.1,2.1 s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1S31.1,17.9,30,17.9z"></path></symbol><symbol id='ei-trash-icon' viewBox='0 0 50 50'><g><rect x="20" y="18" width="2" height="16"></rect><rect x="24" y="18" width="2" height="16"></rect><rect x="28" y="18" width="2" height="16"></rect><rect x="12" y="12" width="26" height="2"></rect><path d="M29.9,13h-1.9v-2c0-0.6-0.5-1.1-1.1-1.1h-4c-0.6,0-1.1,0.5-1.1,1.1v2h-1.9v-2c0-1.6,1.3-2.9,2.9-2.9h4 c1.6,0,2.9,1.3,2.9,2.9V13z"></path><path d="M31,40H19c-1.6,0-3-1.3-3.2-2.9l-1.8-24l2-0.2l1.8,24c0,0.6,0.6,1.1,1.2,1.1h12c0.6,0,1.1-0.5,1.2-1.1l1.8-24l2,0.2 l-1.8,24C34,38.7,32.6,40,31,40z"></path></g><rect x="20" y="18" width="2" height="16"></rect><rect x="24" y="18" width="2" height="16"></rect><rect x="28" y="18" width="2" height="16"></rect><rect x="12" y="12" width="26" height="2"></rect><path d="M29.9,13h-1.9v-2c0-0.6-0.5-1.1-1.1-1.1h-4c-0.6,0-1.1,0.5-1.1,1.1v2h-1.9v-2c0-1.6,1.3-2.9,2.9-2.9h4 c1.6,0,2.9,1.3,2.9,2.9V13z"></path><path d="M31,40H19c-1.6,0-3-1.3-3.2-2.9l-1.8-24l2-0.2l1.8,24c0,0.6,0.6,1.1,1.2,1.1h12c0.6,0,1.1-0.5,1.2-1.1l1.8-24l2,0.2 l-1.8,24C34,38.7,32.6,40,31,40z"></path></symbol><symbol id='ei-undo-icon' viewBox='0 0 50 50'><g><path d="M25,37.9c-5,0-9.7-3-11.8-7.5l1.7-0.8c1.8,3.9,5.8,6.5,10.1,6.5c6.1,0,11.1-5,11.1-11.1s-5-11.1-11.1-11.1 c-4.6,0-8.5,2.8-10.1,7.4l-1.8-0.6c1.9-5.2,6.5-8.6,11.9-8.6c7.1,0,12.9,5.8,12.9,12.9S32.1,37.9,25,37.9z"></path><polygon points="20,22 12,22 12,14 14,14 14,20 20,20"></polygon></g><path d="M25,37.9c-5,0-9.7-3-11.8-7.5l1.7-0.8c1.8,3.9,5.8,6.5,10.1,6.5c6.1,0,11.1-5,11.1-11.1s-5-11.1-11.1-11.1 c-4.6,0-8.5,2.8-10.1,7.4l-1.8-0.6c1.9-5.2,6.5-8.6,11.9-8.6c7.1,0,12.9,5.8,12.9,12.9S32.1,37.9,25,37.9z"></path><polygon points="20,22 12,22 12,14 14,14 14,20 20,20"></polygon></symbol><symbol id='ei-unlock-icon' viewBox='0 0 50 50'><g><path d="M17.9,23h-1.9v-4c0-4.9,4-8.9,8.9-8.9c4.5,0,8.3,3.4,8.9,7.8L32,18.1c-0.4-3.5-3.5-6.2-7-6.2c-3.9,0-7.1,3.2-7.1,7.1V23z"></path><path d="M33,40H17c-1.7,0-3-1.3-3-3V25c0-1.7,1.3-3,3-3h16c1.7,0,3,1.3,3,3v12C36,38.7,34.7,40,33,40z M17,24c-0.6,0-1,0.4-1,1v12 c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V25c0-0.6-0.4-1-1-1H17z"></path><circle cx="25" cy="28" r="2"></circle><polygon points="25.5,28 24.5,28 23.5,34 26.5,34"></polygon></g><path d="M17.9,23h-1.9v-4c0-4.9,4-8.9,8.9-8.9c4.5,0,8.3,3.4,8.9,7.8L32,18.1c-0.4-3.5-3.5-6.2-7-6.2c-3.9,0-7.1,3.2-7.1,7.1V23z"></path><path d="M33,40H17c-1.7,0-3-1.3-3-3V25c0-1.7,1.3-3,3-3h16c1.7,0,3,1.3,3,3v12C36,38.7,34.7,40,33,40z M17,24c-0.6,0-1,0.4-1,1v12 c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V25c0-0.6-0.4-1-1-1H17z"></path><circle cx="25" cy="28" r="2"></circle><polygon points="25.5,28 24.5,28 23.5,34 26.5,34"></polygon></symbol><symbol id='ei-user-icon' viewBox='0 0 50 50'><g><path d="M25.1,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25.1,8.1S42,15.7,42,25S34.4,41.9,25.1,41.9z M25.1,9.9 C16.8,9.9,10,16.7,10,25s6.8,15.1,15.1,15.1S40.1,33.3,40.1,25S33.4,9.9,25.1,9.9z"></path><path d="M15.2,37.2l-1.7-0.7c0.5-1.2,2-1.9,3.8-2.7c1.7-0.8,3.8-1.7,3.8-2.8v-1.5c-0.6-0.5-1.6-1.6-1.8-3.2 c-0.5-0.5-1.3-1.4-1.3-2.6c0-0.7,0.3-1.3,0.5-1.6c-0.1-0.8-0.4-2.3-0.4-3.5c0-3.9,2.7-6.4,6.9-6.4c1.2,0,2.7,0.3,3.5,1.2 c1.9,0.3,3.4,2.6,3.4,5.2c0,1.7-0.3,3.1-0.5,3.8c0.2,0.3,0.4,0.8,0.4,1.4c0,1.3-0.7,2.2-1.3,2.6c-0.2,1.6-1.1,2.7-1.7,3.2V31 c0,1,1.7,1.6,3.4,2.2c1.9,0.7,3.9,1.4,4.5,3.1l-1.7,0.7c-0.3-0.8-2-1.4-3.4-2c-2.2-0.8-4.6-1.7-4.6-4v-2.5l0.4-0.3 c0,0,1.3-0.8,1.3-2.5v-0.6l0.6-0.2c0.1,0,0.7-0.3,0.7-1.2c0-0.3-0.2-0.6-0.3-0.6l-0.3-0.4l0.2-0.5c0,0,0.5-1.6,0.5-3.6 c0-1.8-1-3.4-2.1-3.4h-0.5l-0.3-0.5c-0.2-0.3-1-0.7-2.2-0.7c-3.2,0-5.1,1.7-5.1,4.6c0,1.4,0.5,3.5,0.5,3.6l0.1,0.5l-0.4,0.4l0,0 c0,0-0.3,0.3-0.3,0.7c0,0.5,0.6,1.2,0.9,1.4l0.4,0.3l0,0.5c0,1.5,1.3,2.4,1.4,2.4l0.4,0.3l0,2.5c0,2.3-2.6,3.5-4.9,4.5 C16.9,36,15.4,36.7,15.2,37.2z"></path></g><path d="M25.1,41.9c-9.3,0-16.9-7.6-16.9-16.9S15.7,8.1,25.1,8.1S42,15.7,42,25S34.4,41.9,25.1,41.9z M25.1,9.9 C16.8,9.9,10,16.7,10,25s6.8,15.1,15.1,15.1S40.1,33.3,40.1,25S33.4,9.9,25.1,9.9z"></path><path d="M15.2,37.2l-1.7-0.7c0.5-1.2,2-1.9,3.8-2.7c1.7-0.8,3.8-1.7,3.8-2.8v-1.5c-0.6-0.5-1.6-1.6-1.8-3.2 c-0.5-0.5-1.3-1.4-1.3-2.6c0-0.7,0.3-1.3,0.5-1.6c-0.1-0.8-0.4-2.3-0.4-3.5c0-3.9,2.7-6.4,6.9-6.4c1.2,0,2.7,0.3,3.5,1.2 c1.9,0.3,3.4,2.6,3.4,5.2c0,1.7-0.3,3.1-0.5,3.8c0.2,0.3,0.4,0.8,0.4,1.4c0,1.3-0.7,2.2-1.3,2.6c-0.2,1.6-1.1,2.7-1.7,3.2V31 c0,1,1.7,1.6,3.4,2.2c1.9,0.7,3.9,1.4,4.5,3.1l-1.7,0.7c-0.3-0.8-2-1.4-3.4-2c-2.2-0.8-4.6-1.7-4.6-4v-2.5l0.4-0.3 c0,0,1.3-0.8,1.3-2.5v-0.6l0.6-0.2c0.1,0,0.7-0.3,0.7-1.2c0-0.3-0.2-0.6-0.3-0.6l-0.3-0.4l0.2-0.5c0,0,0.5-1.6,0.5-3.6 c0-1.8-1-3.4-2.1-3.4h-0.5l-0.3-0.5c-0.2-0.3-1-0.7-2.2-0.7c-3.2,0-5.1,1.7-5.1,4.6c0,1.4,0.5,3.5,0.5,3.6l0.1,0.5l-0.4,0.4l0,0 c0,0-0.3,0.3-0.3,0.7c0,0.5,0.6,1.2,0.9,1.4l0.4,0.3l0,0.5c0,1.5,1.3,2.4,1.4,2.4l0.4,0.3l0,2.5c0,2.3-2.6,3.5-4.9,4.5 C16.9,36,15.4,36.7,15.2,37.2z"></path></symbol></svg>
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'evil_icons/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "evil_icons"
8
+ spec.version = EvilIcons::VERSION
9
+ spec.authors = ["Alexander Madyankin", "Roman Shamin"]
10
+ spec.email = ["alexander@madyankin.name"]
11
+ spec.summary = "Evil Icons is a set of SVG icons for modern web projects"
12
+ spec.description = "Evil Icons is a set of SVG icons designed extensively for using in modern web projects"
13
+ spec.homepage = "https://github.com/outpunk/evil-icons"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = Dir.glob("{app,lib}/*/**/**") + %w(
17
+ evil_icons.gemspec
18
+ LICENSE.txt
19
+ Rakefile
20
+ README.md
21
+ )
22
+
23
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
24
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
25
+ spec.require_paths = ["lib"]
26
+
27
+ spec.add_dependency "rails", ">= 3.1"
28
+ spec.add_dependency "nokogiri"
29
+ spec.add_dependency "svg_optimizer"
30
+
31
+ spec.add_development_dependency "bundler", "~> 1.6"
32
+ spec.add_development_dependency "rake"
33
+ end
@@ -0,0 +1,12 @@
1
+ module EvilIcons
2
+ class Engine < Rails::Engine
3
+
4
+ initializer 'evil_icons.view_helpers' do
5
+ ActiveSupport.on_load :action_view do
6
+ include ::EvilIcons::Helpers
7
+ end
8
+ end
9
+
10
+ end
11
+ end
12
+
@@ -0,0 +1,60 @@
1
+ require "nokogiri"
2
+ require "svg_optimizer"
3
+ require "erb"
4
+
5
+ module EvilIcons
6
+
7
+ class Generator
8
+ def initialize(svg_path)
9
+ @svg_path = svg_path
10
+ @templates_dir = File.expand_path('../../templates', __FILE__)
11
+ end
12
+
13
+ def files
14
+ @_files ||= begin
15
+ Dir.entries(@svg_path).select { |f| File.extname(f) == '.svg' }
16
+ end
17
+ end
18
+
19
+ def read_svg(filename)
20
+ file = File.join(@svg_path, filename)
21
+ File.read(file)
22
+ end
23
+
24
+ def icons
25
+ files.map do |name|
26
+ file = read_svg(name)
27
+ optimized = SvgOptimizer.optimize(file)
28
+ doc = Nokogiri::HTML::DocumentFragment.parse(optimized)
29
+
30
+ svg = doc.at_css('svg')
31
+ viewbox = svg['viewbox']
32
+ g = svg.search('g')
33
+ container = g.empty? ? svg : g
34
+
35
+ shape = container.children.map {|c| c.to_s}.join('')
36
+ name = File.basename(name, '.svg')
37
+
38
+ { name: name, viewbox: viewbox, shape: shape }
39
+ end
40
+ end
41
+
42
+ def optimize(svg)
43
+ svg.gsub(/$\s+/, '')
44
+ end
45
+
46
+ def sprite(template)
47
+ view = File.read File.join(@templates_dir, "#{template}.erb")
48
+ result = ERB.new(view).result(binding)
49
+ template == 'icons' ? optimize(result) : result
50
+ end
51
+
52
+ def write(sprite_path, template)
53
+ file = File.new(sprite_path, 'w')
54
+ file.write sprite(template)
55
+ file.close
56
+ end
57
+
58
+ end
59
+
60
+ end
@@ -0,0 +1,3 @@
1
+ module EvilIcons
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,33 @@
1
+ require "evil_icons/generator"
2
+
3
+ root = File.expand_path('../../../', __FILE__)
4
+ svg_path = File.join(root, 'app', 'assets', 'images', 'evil-icons')
5
+ res_path = File.join(root, 'app', 'views', 'evil_icons', '_icons.erb')
6
+ doc_path = File.join(root, 'index.html')
7
+
8
+ namespace :evil_icons do
9
+
10
+ desc "Generate SVG icons sprite"
11
+ task :process => :normalize_filenames do
12
+ generator = EvilIcons::Generator.new(svg_path)
13
+ generator.write(res_path, 'icons')
14
+ generator.write(doc_path, 'index')
15
+ end
16
+
17
+
18
+ desc "Normalize filenames"
19
+ task :normalize_filenames do
20
+ filenames = Dir.entries(svg_path).select { |f| File.extname(f) == '.svg' }
21
+
22
+ filenames.each do |old_name|
23
+ next unless old_name.include?('_')
24
+
25
+ new_name = File.join svg_path, old_name.gsub('_', '-')
26
+ old_name = File.join svg_path, old_name
27
+
28
+ File.delete(new_name) if File.exists?(new_name)
29
+ File.rename(old_name, new_name)
30
+ end
31
+ end
32
+
33
+ end
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
2
+ <% icons.each do |icon| %>
3
+ <symbol id='<%= icon[:name] %>-icon' viewBox='<%= icon[:viewbox] %>'>
4
+ <%= icon[:shape] %>
5
+ </symbol>
6
+ <% end %>
7
+ </svg>
@@ -0,0 +1,176 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Evil Icons</title>
5
+ <link rel="stylesheet" type="text/css" href="app/assets/stylesheets/evil-icons.css">
6
+ <link rel="stylesheet" type="text/css" href="doc/assets/style.css">
7
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
8
+ </head>
9
+ <body>
10
+
11
+ <%= sprite('icons') %>
12
+
13
+ <h1>Evil Icons</h1>
14
+
15
+ <p>
16
+ Evil Icons is a set of SVG icons designed extensively for using in modern web projects. You can use it as-is, or try a Ruby gem (for Ruby on Rails) or an npm package.
17
+ </p>
18
+ <p>Sponsored by <a href="http://evilmartians.com">Evil Martians</a>.</p>
19
+
20
+ <section class="icons">
21
+ <div class="sizes">
22
+ <button class="size-button" data-size="s">S</button>
23
+ <button class="size-button" data-size="m">M</button>
24
+ <button class="size-button" data-size="l">L</button>
25
+ </div>
26
+
27
+
28
+ <% icons.each do |icon| %>
29
+
30
+ <figure class="plate">
31
+ <div class="icon icon--m icon--<%= icon[:name] %>">
32
+ <svg class="icon__cnt">
33
+ <use xlink:href="#<%= icon[:name] %>-icon">
34
+ </svg>
35
+ </div>
36
+ <figcaption>
37
+ <%= icon[:name] %>
38
+ </figcaption>
39
+ </figure>
40
+
41
+ <% end %>
42
+ </section>
43
+
44
+
45
+ <h2>Usage</h2>
46
+
47
+ <h3>Rails</h3>
48
+
49
+ <p>Add the <code>'evil-icons'</code> gem to your Gemfile:</p>
50
+ <pre>
51
+ gem 'evil-icons'
52
+ </pre>
53
+
54
+ <p>Add the evil icons require to your <code>application.css</code>:</p>
55
+ <pre>
56
+ /*= require evil-icons */
57
+ </pre>
58
+
59
+ <p>Next, you have to render the evil-icons sprite in your template (or, in your layout):</p>
60
+ <pre>
61
+ &lt;%= evil_icons %&gt;
62
+ </pre>
63
+
64
+ <p>
65
+ Finally, you can render the icon using the <code>icon</code> helper.
66
+ Here are some examples:
67
+ </p>
68
+ <pre>
69
+ &lt;%= icon 'ei-search' %&gt;
70
+ &lt;%= icon 'ei-arrow-right', size: :m %&gt;
71
+ &lt;%= icon 'ei-envelope', size: :l, class: "custom-class" %&gt;
72
+ </pre>
73
+
74
+
75
+ <h3>npm</h3>
76
+ <p>Add the <code>'evil-icons'</code> package to your project:</p>
77
+ <pre>
78
+ npm install evil-icons
79
+ </pre>
80
+
81
+ <p>Add the evil icons styles to your pages:</p>
82
+ <pre>
83
+ &lt;link rel="stylesheet" type="text/css" href="./node_modules/evil-icons/app/assets/stylesheets/evil-icons.css"&gt;
84
+ </pre>
85
+
86
+ <p>Require `evil-icons` in your JavaScript code:</p>
87
+ <pre>
88
+ var icons = require("evil-icons").icons
89
+ </pre>
90
+
91
+ <p>
92
+ Finally, you can render the icons in your page using helpers.
93
+ Here are some examples:
94
+ </p>
95
+ <pre>
96
+ /* A string with SVG sprite */
97
+ icons.sprite;
98
+
99
+ /* Icons rendering */
100
+ icon("ei-search");
101
+ icon("ei-arrow-right", {size: "m"});
102
+ icon("ei-envelope", {size: "l", class: "custom-class"});
103
+ </pre>
104
+
105
+ <h3>Styling</h3>
106
+ <p>
107
+ Every icon has the <code>.icon</code> class and its modifier including the icon name.
108
+ For example, the facebook icon has the <code>.icon--ei-facebook</code> modifier.
109
+ </p>
110
+ <p>
111
+ In addition, an icon may have a size modifier. But we do recommend to change the size using helper's <code>size</code> parameter instead. Evil icons have some predefined sizes:
112
+ <code>s</code> (25x25, default), <code>m</code> (50x50), , <code>l</code> (100x100),
113
+ <code>xl</code> (150x150) and <code>xxl</code> (200x200).
114
+ You may want to add more sizes, we recommend to keep the sizes multiple to 50.
115
+ </p>
116
+ <pre>
117
+ icon("ei-arrow-right", {size: "m"})
118
+ </pre>
119
+ <p>
120
+ Also you may want to add a custom class for an icon.
121
+ You can do this using the <code>class</code> parameter:
122
+ </p>
123
+ <pre>
124
+ icon("ei-envelope", {class: "custom-class"})
125
+ </pre>
126
+ <p>
127
+ An icon's color can be changed in CSS:
128
+ </p>
129
+ <pre>
130
+ .icon {
131
+ fill: green;
132
+ }
133
+ .icon--ei-facebook {
134
+ fill: blue;
135
+ }
136
+ </pre>
137
+
138
+
139
+ <h2>License</h2>
140
+
141
+
142
+
143
+ <script type="text/javascript">
144
+
145
+ $(function(){
146
+ var icons = $('.icon');
147
+ var buttons = $('.size-button');
148
+ var colors = ['#2c3e50', '#2980b9', '#1abc9c', '#2ecc71', '#f1c40f', '#e74c3c', '#8e44ad'];
149
+
150
+ buttons.on('click', function() {
151
+ var modifier = 'icon--' + $(this).data('size');
152
+
153
+ $('.icon').removeClass('icon--s icon--m icon--l');
154
+ $('.icon').addClass(modifier);
155
+
156
+ buttons.removeClass('is-active');
157
+ $(this).addClass('is-active');
158
+ });
159
+
160
+
161
+ var color = 1;
162
+ setInterval(function(){
163
+ icons.css('fill', colors[color]);
164
+ if (++color == colors.length + 1) {
165
+ color = 0;
166
+ }
167
+ }, 2000);
168
+
169
+ }());
170
+
171
+ </script>
172
+
173
+ </body>
174
+ </html>
175
+
176
+