plinth 0.0.1.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (237) hide show
  1. data/.codoopts +10 -0
  2. data/.env +1 -0
  3. data/.gitignore +23 -0
  4. data/.ruby-version +1 -0
  5. data/CHANGELOG.md +1 -0
  6. data/Capfile +4 -0
  7. data/Gemfile +52 -0
  8. data/Gemfile.lock +243 -0
  9. data/Guardfile +9 -0
  10. data/LICENSE +22 -0
  11. data/Procfile +1 -0
  12. data/README.md +79 -0
  13. data/Rakefile +35 -0
  14. data/app/assets/images/layouts/basic-marketing-site.png +0 -0
  15. data/app/assets/images/layouts/jumbotron-site.png +0 -0
  16. data/app/assets/images/rails.png +0 -0
  17. data/app/assets/javascripts/application.js +17 -0
  18. data/app/assets/javascripts/base.js.coffee +3 -0
  19. data/app/assets/javascripts/grids.js.coffee +3 -0
  20. data/app/assets/javascripts/javascript.js.coffee +3 -0
  21. data/app/assets/javascripts/lib/modernizr.js +4 -0
  22. data/app/assets/javascripts/modules.js.coffee +3 -0
  23. data/app/assets/stylesheets/application-old-ie.css.scss +10 -0
  24. data/app/assets/stylesheets/application.css.scss +57 -0
  25. data/app/assets/stylesheets/base/_all.scss +6 -0
  26. data/app/assets/stylesheets/base/_reset.css.scss +16 -0
  27. data/app/assets/stylesheets/base/_type.scss +16 -0
  28. data/app/assets/stylesheets/modules/_coderay.css.scss +171 -0
  29. data/app/assets/stylesheets/modules/_layout_examples.css.scss +13 -0
  30. data/app/assets/stylesheets/modules/_webfont_table.css.scss +47 -0
  31. data/app/assets/stylesheets/vanilla-normal-old-ie.css.scss +11 -0
  32. data/app/assets/stylesheets/vanilla-normal.css.scss +33 -0
  33. data/app/controllers/application_controller.rb +5 -0
  34. data/app/controllers/base_controller.rb +52 -0
  35. data/app/controllers/grids_controller.rb +48 -0
  36. data/app/controllers/javascript_controller.rb +20 -0
  37. data/app/controllers/javascripts_controller.rb +4 -0
  38. data/app/controllers/modules_controller.rb +43 -0
  39. data/app/controllers/ui_controller.rb +2 -0
  40. data/app/helpers/plinth_helper.rb +33 -0
  41. data/app/views/base/_webfonts_social_standard.html +429 -0
  42. data/app/views/base/_webfonts_ss_standard.html +2413 -0
  43. data/app/views/base/buttons.html.haml +20 -0
  44. data/app/views/base/forms.html.haml +40 -0
  45. data/app/views/base/images.html.haml +20 -0
  46. data/app/views/base/index.html.haml +68 -0
  47. data/app/views/base/labels.html.haml +22 -0
  48. data/app/views/base/lists.html.haml +20 -0
  49. data/app/views/base/webfonts.html.haml +17 -0
  50. data/app/views/grids/index.html.haml +73 -0
  51. data/app/views/grids/layouts/basic-marketing-site.haml +69 -0
  52. data/app/views/grids/layouts/jumbotron-site.haml +92 -0
  53. data/app/views/grids/layouts.html.haml +9 -0
  54. data/app/views/layouts/_main_nav.html.haml +15 -0
  55. data/app/views/layouts/application.html.haml +15 -0
  56. data/app/views/modules/alerts.html.haml +12 -0
  57. data/app/views/modules/footer.html.haml +2 -0
  58. data/app/views/modules/index.html.haml +5 -0
  59. data/app/views/modules/nav.html.haml +12 -0
  60. data/app/views/modules/panels.html.haml +3 -0
  61. data/app/views/modules/tabs.html.haml +58 -0
  62. data/app/views/old_javascript/close.html.haml +2 -0
  63. data/app/views/old_javascript/forms.html.haml +2 -0
  64. data/app/views/old_javascript/ga_events.html.haml +2 -0
  65. data/app/views/old_javascript/index.html.haml +2 -0
  66. data/app/views/old_javascript/responsive_resize.html.haml +2 -0
  67. data/app/views/old_javascript/switch.html.haml +2 -0
  68. data/app/views/parts/base/_button.haml +3 -0
  69. data/app/views/parts/base/_button_colours.haml +4 -0
  70. data/app/views/parts/base/_button_group.haml +4 -0
  71. data/app/views/parts/base/_button_sizing.haml +3 -0
  72. data/app/views/parts/base/_button_states.haml +3 -0
  73. data/app/views/parts/base/_form_example.haml +26 -0
  74. data/app/views/parts/base/_form_example_horizontal.haml +26 -0
  75. data/app/views/parts/base/_form_group.haml +10 -0
  76. data/app/views/parts/base/_form_location.haml +3 -0
  77. data/app/views/parts/base/_labels.haml +5 -0
  78. data/app/views/parts/base/_labels_sizing.haml +3 -0
  79. data/app/views/parts/base/_list.haml +10 -0
  80. data/app/views/parts/base/_list_action.haml +5 -0
  81. data/app/views/parts/base/_list_nav.haml +12 -0
  82. data/app/views/parts/base/_list_unset.haml +10 -0
  83. data/app/views/parts/base/_type_body.haml +2 -0
  84. data/app/views/parts/base/_type_headings.haml +5 -0
  85. data/app/views/parts/base/_type_helpers.haml +3 -0
  86. data/app/views/parts/base/_type_links.haml +9 -0
  87. data/app/views/parts/base/_type_shouts.haml +4 -0
  88. data/app/views/parts/grids/_example_layout_1.haml +10 -0
  89. data/app/views/parts/grids/_live_grid.haml +29 -0
  90. data/app/views/parts/modules/_alerts.haml +11 -0
  91. data/app/views/parts/modules/_nav_footer.haml +34 -0
  92. data/app/views/parts/modules/_nav_header.haml +18 -0
  93. data/app/views/parts/modules/_panels.haml +9 -0
  94. data/app/views/parts/modules/_tabs_minimal.haml +11 -0
  95. data/app/views/parts/modules/_tabs_simple_group.haml +11 -0
  96. data/app/views/parts/modules/_tabs_simple_group_toggle.haml +11 -0
  97. data/app/views/parts/modules/_tabs_toggle.haml +5 -0
  98. data/app/views/parts/modules/_tabs_traditional.haml +11 -0
  99. data/app/views/shared/_placeholder_text.html.haml +1 -0
  100. data/app/views/shared/_title.html.haml +8 -0
  101. data/app/views/shared/_ui_nav.html.haml +5 -0
  102. data/app/views/ui/alert.html.haml +35 -0
  103. data/app/views/ui/buttons.html.haml +116 -0
  104. data/app/views/ui/footer.html.haml +69 -0
  105. data/app/views/ui/forms/_vertical_form.haml +7 -0
  106. data/app/views/ui/forms.html.haml +59 -0
  107. data/app/views/ui/grids.html.haml +18 -0
  108. data/app/views/ui/index.html.haml +5 -0
  109. data/app/views/ui/labels.html.haml +15 -0
  110. data/app/views/ui/modules/panel.html.haml +3 -0
  111. data/app/views/ui/nav.html.haml +48 -0
  112. data/app/views/ui/tabs.html.haml +171 -0
  113. data/app/views/ui/typography.html.haml +118 -0
  114. data/db/development.sqlite3 +0 -0
  115. data/db/seeds.rb +7 -0
  116. data/doc/README_FOR_APP +2 -0
  117. data/lib/assets/.gitkeep +0 -0
  118. data/lib/plinth/version.rb +3 -0
  119. data/lib/plinth.rb +11 -0
  120. data/lib/tasks/.gitkeep +0 -0
  121. data/lib/templates/haml/scaffold/_form.html.haml +8 -0
  122. data/log/.gitkeep +0 -0
  123. data/plinth.gemspec +33 -0
  124. data/public/404.html +26 -0
  125. data/public/422.html +26 -0
  126. data/public/500.html +25 -0
  127. data/public/favicon.ico +0 -0
  128. data/public/javascripts/LICENSE.html +158 -0
  129. data/public/javascripts/README.md.html +163 -0
  130. data/public/javascripts/assets/codo.css +1 -0
  131. data/public/javascripts/assets/codo.js +21 -0
  132. data/public/javascripts/assets/search_data.js +1 -0
  133. data/public/javascripts/class_index.html +215 -0
  134. data/public/javascripts/class_list.html +58 -0
  135. data/public/javascripts/classes/Close.html +259 -0
  136. data/public/javascripts/classes/GAEvent.html +231 -0
  137. data/public/javascripts/classes/ResizeHandler.html +225 -0
  138. data/public/javascripts/classes/Switch.html +318 -0
  139. data/public/javascripts/classes/TBGForm.html +373 -0
  140. data/public/javascripts/extra_list.html +36 -0
  141. data/public/javascripts/file_list.html +74 -0
  142. data/public/javascripts/files/styleguide/plugins/tbg-close.js.coffee.html +160 -0
  143. data/public/javascripts/files/styleguide/plugins/tbg-forms.js.coffee.html +160 -0
  144. data/public/javascripts/files/styleguide/plugins/tbg-ga-events.js.coffee.html +160 -0
  145. data/public/javascripts/files/styleguide/plugins/tbg-respinsiveresize.js.coffee.html +160 -0
  146. data/public/javascripts/files/styleguide/plugins/tbg-switch.js.coffee.html +160 -0
  147. data/public/javascripts/index.html +14 -0
  148. data/public/javascripts/method_list.html +187 -0
  149. data/public/javascripts/mixin_list.html +28 -0
  150. data/public/robots.txt +5 -0
  151. data/script/rails +6 -0
  152. data/spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml +4 -0
  153. data/spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml +12 -0
  154. data/spec/javascripts/fixtures/plugins/tbg-ga-events_fixture.html.haml +9 -0
  155. data/spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml +11 -0
  156. data/spec/javascripts/plugins/tbg-close_spec.js.coffee +54 -0
  157. data/spec/javascripts/plugins/tbg-forms_spec.js.coffee +87 -0
  158. data/spec/javascripts/plugins/tbg-ga-events_spec.js.coffee +83 -0
  159. data/spec/javascripts/plugins/tbg-switch_spec.js.coffee +96 -0
  160. data/spec/javascripts/spec.js.coffee +2 -0
  161. data/vendor/assets/fonts/ss-social-circle.eot +0 -0
  162. data/vendor/assets/fonts/ss-social-circle.svg +139 -0
  163. data/vendor/assets/fonts/ss-social-circle.ttf +0 -0
  164. data/vendor/assets/fonts/ss-social-circle.woff +0 -0
  165. data/vendor/assets/fonts/ss-social-regular.eot +0 -0
  166. data/vendor/assets/fonts/ss-social-regular.svg +133 -0
  167. data/vendor/assets/fonts/ss-social-regular.ttf +0 -0
  168. data/vendor/assets/fonts/ss-social-regular.woff +0 -0
  169. data/vendor/assets/fonts/ss-social.js +75 -0
  170. data/vendor/assets/fonts/ss-standard.eot +0 -0
  171. data/vendor/assets/fonts/ss-standard.js +75 -0
  172. data/vendor/assets/fonts/ss-standard.svg +207 -0
  173. data/vendor/assets/fonts/ss-standard.ttf +0 -0
  174. data/vendor/assets/fonts/ss-standard.woff +0 -0
  175. data/vendor/assets/images/background.png +0 -0
  176. data/vendor/assets/images/logos/sb-logo-white.png +0 -0
  177. data/vendor/assets/images/logos/sb-logo-white.svg +5 -0
  178. data/vendor/assets/images/middleman.png +0 -0
  179. data/vendor/assets/index.html.haml +8 -0
  180. data/vendor/assets/javascripts/.gitkeep +0 -0
  181. data/vendor/assets/javascripts/plinth/lib/handlebars.js +3 -0
  182. data/vendor/assets/javascripts/plinth/lib/jquery.fitvids.js +81 -0
  183. data/vendor/assets/javascripts/plinth/lib/ss-social.js +75 -0
  184. data/vendor/assets/javascripts/plinth/lib/ss-standard.js +78 -0
  185. data/vendor/assets/javascripts/plinth/plugins/doc/assets/codo.css +1 -0
  186. data/vendor/assets/javascripts/plinth/plugins/doc/assets/codo.js +21 -0
  187. data/vendor/assets/javascripts/plinth/plugins/doc/assets/search_data.js +1 -0
  188. data/vendor/assets/javascripts/plinth/plugins/doc/class_index.html +194 -0
  189. data/vendor/assets/javascripts/plinth/plugins/doc/class_list.html +58 -0
  190. data/vendor/assets/javascripts/plinth/plugins/doc/classes/Close.html +215 -0
  191. data/vendor/assets/javascripts/plinth/plugins/doc/classes/GAEvent.html +235 -0
  192. data/vendor/assets/javascripts/plinth/plugins/doc/classes/ResizeHandler.html +192 -0
  193. data/vendor/assets/javascripts/plinth/plugins/doc/classes/Switch.html +233 -0
  194. data/vendor/assets/javascripts/plinth/plugins/doc/classes/TBGForm.html +318 -0
  195. data/vendor/assets/javascripts/plinth/plugins/doc/extra_list.html +30 -0
  196. data/vendor/assets/javascripts/plinth/plugins/doc/file_list.html +58 -0
  197. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-close.js.coffee.html +154 -0
  198. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-forms.js.coffee.html +154 -0
  199. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-ga-events.js.coffee.html +154 -0
  200. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-respinsiveresize.js.coffee.html +154 -0
  201. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-switch.js.coffee.html +154 -0
  202. data/vendor/assets/javascripts/plinth/plugins/doc/index.html +14 -0
  203. data/vendor/assets/javascripts/plinth/plugins/doc/method_list.html +163 -0
  204. data/vendor/assets/javascripts/plinth/plugins/doc/mixin_list.html +28 -0
  205. data/vendor/assets/javascripts/plinth/plugins/tbg-close.js.coffee +97 -0
  206. data/vendor/assets/javascripts/plinth/plugins/tbg-forms.js.coffee +156 -0
  207. data/vendor/assets/javascripts/plinth/plugins/tbg-ga-events.js.coffee +107 -0
  208. data/vendor/assets/javascripts/plinth/plugins/tbg-respinsiveresize.js.coffee +73 -0
  209. data/vendor/assets/javascripts/plinth/plugins/tbg-switch.js.coffee +121 -0
  210. data/vendor/assets/stylesheets/.gitkeep +0 -0
  211. data/vendor/assets/stylesheets/_functions.scss +28 -0
  212. data/vendor/assets/stylesheets/_mixins.css.scss +273 -0
  213. data/vendor/assets/stylesheets/_settings.css.scss +120 -0
  214. data/vendor/assets/stylesheets/plinth/base/_all.css.scss +7 -0
  215. data/vendor/assets/stylesheets/plinth/base/_buttons.css.scss +166 -0
  216. data/vendor/assets/stylesheets/plinth/base/_form.css.scss +196 -0
  217. data/vendor/assets/stylesheets/plinth/base/_labels.css.scss +58 -0
  218. data/vendor/assets/stylesheets/plinth/base/_lists.css.scss +57 -0
  219. data/vendor/assets/stylesheets/plinth/base/_reset.css.scss +284 -0
  220. data/vendor/assets/stylesheets/plinth/base/_type.css.scss +328 -0
  221. data/vendor/assets/stylesheets/plinth/base/webfonts/_all.css.scss +2 -0
  222. data/vendor/assets/stylesheets/plinth/base/webfonts/ss-social.css.scss +57 -0
  223. data/vendor/assets/stylesheets/plinth/base/webfonts/ss-standard.css.scss +48 -0
  224. data/vendor/assets/stylesheets/plinth/grid/_grid.css.scss +127 -0
  225. data/vendor/assets/stylesheets/plinth/modules/_alert.css.scss +71 -0
  226. data/vendor/assets/stylesheets/plinth/modules/_all-grid.css.scss +1 -0
  227. data/vendor/assets/stylesheets/plinth/modules/_all-no-grid.css.scss +4 -0
  228. data/vendor/assets/stylesheets/plinth/modules/_footer.css.scss +93 -0
  229. data/vendor/assets/stylesheets/plinth/modules/_nav.css.scss +106 -0
  230. data/vendor/assets/stylesheets/plinth/modules/_panel.css.scss +28 -0
  231. data/vendor/assets/stylesheets/plinth/modules/_switch.css.scss +88 -0
  232. data/vendor/assets/stylesheets/plinth.css.scss +15 -0
  233. data/vendor/assets/views/buttons/_buttons.haml +9 -0
  234. data/vendor/assets/views/forms/_vertical_form.haml +7 -0
  235. data/vendor/assets/views/type/_headings.haml +6 -0
  236. data/vendor/assets/views/type/_paragraphs.haml +4 -0
  237. metadata +537 -0
@@ -0,0 +1,75 @@
1
+ /*
2
+ * Symbolset
3
+ * www.symbolset.com
4
+ * Copyright © 2012 Oak Studios LLC
5
+ *
6
+ * Upload this file to your web server
7
+ * and place this before the closing </body> tag.
8
+ * <script src="webfonts/ss-social.js"></script>
9
+ */
10
+
11
+ if (/(MSIE [7-9]\.|Opera.*Version\/(10\.[5-9]|(11|12)\.)|Chrome\/([1-9]|10)\.|Version\/[2-4][\.0-9]+ Safari\/|Version\/(4\.0\.[4-9]|4\.[1-9]|5\.0)[\.0-9]+? Mobile\/.*Safari\/|Android [1-2]\.)/.test(navigator.userAgent)) {
12
+
13
+ var ss_set={'github octocat':'\uF671','googleplus':'\uF613','foursquare':'\uF690','thumbs up':'\uD83D\uDC4D','wordpress':'\uF621','posterous':'\uF623','pinterest':'\uF650','instagram':'\uF641','linkedin':'\uF612','thumbsup':'\uD83D\uDC4D','dribbble':'\uF660','facebook':'\uF610','envelope':'\u2709','rss feed':'\uDB8C\uDC20','behance':'\uF661','twitter':'\uF611','octocat':'\uF671','youtube':'\uF630','google+':'\uF613','spotify':'\uF6B1','approve':'\uD83D\uDC4D','last fm':'\uF6B2','blogger':'\uF622','paypal':'\uF680','flickr':'\uF640','github':'\uF670','tumblr':'\uF620','lastfm':'\uF6B2','email':'\u2709','vimeo':'\uF631','skype':'\uF6A0','mail':'\u2709','like':'\uD83D\uDC4D','rdio':'\uF6B0','rss':'\uE310'};
14
+
15
+ if (typeof ss_icons !== 'object' || typeof ss_icons !== 'object') {
16
+ var ss_icons = ss_set;
17
+ var ss_keywords = [];
18
+ for (var i in ss_set) { ss_keywords.push(i); };
19
+ } else {
20
+ for (var i in ss_set) { ss_icons[i] = ss_set[i]; ss_keywords.push(i); }
21
+ };
22
+
23
+ if (typeof ss_legacy !== 'function') {
24
+
25
+ /* domready.js */
26
+ !function(a,b){typeof module!="undefined"?module.exports=b():typeof define=="function"&&typeof define.amd=="object"?define(b):this[a]=b()}("ss_ready",function(a){function m(a){l=1;while(a=b.shift())a()}var b=[],c,d=!1,e=document,f=e.documentElement,g=f.doScroll,h="DOMContentLoaded",i="addEventListener",j="onreadystatechange",k="readyState",l=/^loade|c/.test(e[k]);return e[i]&&e[i](h,c=function(){e.removeEventListener(h,c,d),m()},d),g&&e.attachEvent(j,c=function(){/^c/.test(e[k])&&(e.detachEvent(j,c),m())}),a=g?function(c){self!=top?l?c():b.push(c):function(){try{f.doScroll("left")}catch(b){return setTimeout(function(){a(c)},50)}c()}()}:function(a){l?a():b.push(a)}})
27
+
28
+ var ss_legacy = function(node) {
29
+
30
+ if (!node instanceof Object) return false;
31
+
32
+ if (node.length) {
33
+ for (var i=0; i<node.length; i++) {
34
+ ss_legacy(node[i]);
35
+ }
36
+ return;
37
+ };
38
+
39
+ if (node.value) {
40
+ node.value = ss_liga(node.value);
41
+ } else if (node.nodeValue) {
42
+ node.nodeValue = ss_liga(node.nodeValue);
43
+ } else if (node.innerHTML) {
44
+ node.innerHTML = ss_liga(node.innerHTML);
45
+ }
46
+
47
+ };
48
+
49
+ var ss_getElementsByClassName = function(node, classname) {
50
+ var a = [];
51
+ var re = new RegExp('(^| )'+classname+'( |$)');
52
+ var els = node.getElementsByTagName("*");
53
+ for(var i=0,j=els.length; i<j; i++)
54
+ if(re.test(els[i].className))a.push(els[i]);
55
+ return a;
56
+ };
57
+
58
+ var ss_liga = function(that) {
59
+ var re = new RegExp(ss_keywords.join('|').replace(/[-[\]{}()*+?.,\\^$#\s]/g, "\\$&"),"gi");
60
+ return that.replace(re, function(v) {
61
+ return ss_icons[v.toLowerCase()];
62
+ });
63
+ };
64
+
65
+ ss_ready(function() {
66
+ if (document.getElementsByClassName) {
67
+ ss_legacy(document.getElementsByClassName('ss-icon'));
68
+ } else {
69
+ ss_legacy(ss_getElementsByClassName(document.body, 'ss-icon'));
70
+ }
71
+ });
72
+
73
+ }
74
+
75
+ };
Binary file
@@ -0,0 +1,75 @@
1
+ /*
2
+ * Symbolset
3
+ * www.symbolset.com
4
+ * Copyright © 2012 Oak Studios LLC
5
+ *
6
+ * Upload this file to your web server
7
+ * and place this before the closing </body> tag.
8
+ * <script src="webfonts/ss-standard.js"></script>
9
+ */
10
+
11
+ if (/(MSIE [7-9]\.|Opera.*Version\/(10\.[5-9]|(11|12)\.)|Chrome\/([1-9]|10)\.|Version\/[2-4][\.0-9]+ Safari\/|Version\/(4\.0\.[4-9]|4\.[1-9]|5\.0)[\.0-9]+? Mobile\/.*Safari\/|Android [1-2]\.)/.test(navigator.userAgent)) {
12
+
13
+ var ss_set={'notifications disabled':'\uD83D\uDD15','notificationsdisabled':'\uD83D\uDD15','notification disabled':'\uD83D\uDD15','notificationdisabled':'\uD83D\uDD15','telephone disabled':'\uE300','telephonedisabled':'\uE300','writing disabled':'\uE071','calendar remove':'\uF071','pencil disabled':'\uE071','writingdisabled':'\uE071','delete calendar':'\uF073','calendar delete':'\uF073','remove calendar':'\uF071','check calendar':'\uF072','pencildisabled':'\uE071','deletecalendar':'\uF073','navigate right':'\u25BB','calendardelete':'\uF073','cloud download':'\uEB00','phone disabled':'\uE300','calendar check':'\uF072','removecalendar':'\uF071','medium battery':'\uEA11','calendarremove':'\uF071','battery medium':'\uEA11','female avatar':'\uD83D\uDC67','notifications':'\uD83D\uDD14','navigate left':'\u25C5','clouddownload':'\uEB00','navigate down':'\uF501','bell disabled':'\uD83D\uDD15','shopping cart':'\uE500','phonedisabled':'\uE300','calendarcheck':'\uF072','call disabled':'\uE300','empty battery':'\uEA13','navigateright':'\u25BB','mediumbattery':'\uEA11','battery empty':'\uEA13','batterymedium':'\uEA11','checkcalendar':'\uF072','direct right':'\u25B9','high battery':'\uEA10','calldisabled':'\uE300','notification':'\uD83D\uDD14','rotate right':'\u21BB','navigatedown':'\uF501','navigateleft':'\u25C5','femaleavatar':'\uD83D\uDC67','batteryempty':'\uEA13','emptybattery':'\uEA13','battery high':'\uEA10','shoppingcart':'\uE500','fast forward':'\u23E9','cloud upload':'\uEB40','full battery':'\uD83D\uDD0B','belldisabled':'\uD83D\uDD15','skip forward':'\u23ED','battery full':'\uD83D\uDD0B','add calendar':'\uF070','calendar add':'\uF070','mobile phone':'\uD83D\uDCF1','remove date':'\uF071','directright':'\u25B9','direct left':'\u25C3','information':'\u2139','cloudupload':'\uEB40','male avatar':'\uD83D\uDC64','batteryhigh':'\uEA10','skipforward':'\u23ED','female user':'\uD83D\uDC67','low battery':'\uEA12','navigate up':'\uF500','videocamera':'\uD83D\uDCF9','photographs':'\uD83C\uDF04','rotateright':'\u21BB','thumbs down':'\uD83D\uDC4E','high volume':'\uD83D\uDD0A','credit card':'\uD83D\uDCB3','volume high':'\uD83D\uDD0A','highbattery':'\uEA10','dollar sign':'\uD83D\uDCB2','fullbattery':'\uD83D\uDD0B','delete date':'\uF073','rotate left':'\u21BA','battery low':'\uEA12','addcalendar':'\uF070','fastforward':'\u23E9','calendaradd':'\uF070','batteryfull':'\uD83D\uDD0B','mobilephone':'\uD83D\uDCF1','direct down':'\u25BE','highvolume':'\uD83D\uDD0A','navigation':'\uE670','smartphone':'\uD83D\uDCF1','screenshot':'\u2316','dollarsign':'\uD83D\uDCB2','creditcard':'\uD83D\uDCB3','hard drive':'\uE7B0','femaleuser':'\uD83D\uDC67','maleavatar':'\uD83D\uDC64','removedate':'\uF071','check date':'\uF072','microphone':'\uD83C\uDFA4','eyedropper':'\uE200','deletedate':'\uF073','volume low':'\uD83D\uDD09','low volume':'\uD83D\uDD09','volumehigh':'\uD83D\uDD0A','half heart':'\uE1A0','directions':'\uE672','navigateup':'\uF500','cell phone':'\uD83D\uDCF1','thumbsdown':'\uD83D\uDC4E','photograph':'\uD83C\uDF04','disapprove':'\uD83D\uDC4E','batterylow':'\uEA12','lowbattery':'\uEA12','down right':'\u2B0A','thumbnails':'\uE9A3','attachment':'\uD83D\uDCCE','visibility':'\uD83D\uDC40','connection':'\uEB85','descending':'\u25BE','directdown':'\u25BE','rotateleft':'\u21BA','directleft':'\u25C3','pull quote':'\u201C','down left':'\u2B0B','backspace':'\u232B','paperclip':'\uD83D\uDCCE','direct up':'\u25B4','dashboard':'\uF000','male user':'\uD83D\uDC64','cellphone':'\uD83D\uDCF1','checkmark':'\u2713','checkdate':'\uF072','harddrive':'\uE7B0','halfheart':'\uE1A0','pie chart':'\uE570','downright':'\u2B0A','musicnote':'\u266B','telephone':'\uD83D\uDCDE','briefcase':'\uD83D\uDCBC','bar chart':'\uD83D\uDCCA','ascending':'\u25B4','skip back':'\u23EE','crosshair':'\u2316','thumbs up':'\uD83D\uDC4D','volumelow':'\uD83D\uDD09','open book':'\uD83D\uDCD6','pullquote':'\u201C','half star':'\uE1A1','lowvolume':'\uD83D\uDD09','stopwatch':'\u23F1','maleuser':'\uD83D\uDC64','typeface':'\uED01','redirect':'\u21AA','contract':'\uEE01','document':'\uD83D\uDCC4','skipback':'\u23EE','question':'\u2753','computer':'\uD83D\uDCBB','sign out':'\uEE02','subtract':'\u002D','settings':'\u2699','pictures':'\uD83C\uDF04','database':'\uE7A0','location':'\uE6D0','signpost':'\uE672','navigate':'\uE670','calendar':'\uD83D\uDCC5','piechart':'\uE570','barchart':'\uD83D\uDCCA','add date':'\uF070','openbook':'\uD83D\uDCD6','envelope':'\u2709','facetime':'\uE320','end call':'\uE300','halfstar':'\uE1A1','favorite':'\u22C6','thumbsup':'\uD83D\uDC4D','bookmark':'\uD83D\uDD16','keywords':'\uE100','trashcan':'\uE0D0','previous':'\u25C5','insecure':'\uD83D\uDD13','up right':'\u2B08','unlocked':'\uD83D\uDD13','downleft':'\u2B0B','directup':'\u25B4','zoom out':'\uE003','dropdown':'\u25BE','download':'\uEB01','notebook':'\uD83D\uDCD3','desktop':'\uD83D\uDCBB','endcall':'\uE300','display':'\uD83D\uDCBB','monitor':'\uD83D\uDCBB','loading':'\uEB83','syncing':'\uEB82','visible':'\uD83D\uDC40','approve':'\uD83D\uDC4D','zoom in':'\uE002','signout':'\uEE02','refresh':'\u21BB','private':'\uD83D\uDD12','log out':'\uEE02','caution':'\u26D4','warning':'\u26A0','battery':'\uD83D\uDD0B','package':'\uD83D\uDCE6','dislike':'\uD83D\uDC4E','dictate':'\uD83C\uDFA4','descend':'\u25BE','forward':'\u27A1','speaker':'\uD83D\uDD08','windows':'\uE202','avatars':'\uD83D\uDC65','zoomout':'\uE003','up left':'\u2B09','printer':'\u2399','compass':'\uE671','droplet':'\uD83D\uDCA7','keyword':'\uE100','comment':'\uD83D\uDCAC','shuffle':'\uD83D\uDD00','airplay':'\uE800','retweet':'\uF600','picture':'\uD83C\uDF04','upright':'\u2B08','compose':'\uD83D\uDCDD','adddate':'\uF070','columns':'\uE9A2','checked':'\u2713','mobile':'\uD83D\uDCF1','cursor':'\uE001','search':'\uD83D\uDD0E','zoomin':'\uE002','iphone':'\uD83D\uDCF1','attach':'\uD83D\uDCCE','pencil':'\u270E','ascend':'\u25B4','upleft':'\u2B09','tablet':'\uEA01','laptop':'\uEA00','eraser':'\u2710','locked':'\uD83D\uDD12','secure':'\uD83D\uDD12','unlock':'\uD83D\uDD13','public':'\uD83D\uDD13','target':'\u25CE','folder':'\uD83D\uDCC1','tagged':'\uE100','sample':'\uE200','layers':'\uE202','avatar':'\uD83D\uDC64','locate':'\uE670','replay':'\u21BA','upload':'\uEB41','repeat':'\uD83D\uDD01','volume':'\uD83D\uDD08','camera':'\uD83D\uDCF7','layout':'\uEDA0','action':'\uEE00','delete':'\u2421','images':'\uD83C\uDF04','photos':'\uD83C\uDF04','remove':'\u002D','expand':'\u2922','hyphen':'\u002D','videos':'\uD83D\uDCF9','rewind':'\u23EA','logout':'\uEE02','record':'\u25CF','alert':'\u26A0','clock':'\u23F2','pause':'\uE8A0','merge':'\uEB81','write':'\u270E','erase':'\u2710','nodes':'\uEB85','video':'\uD83D\uDCF9','right':'\u27A1','trash':'\uE0D0','quote':'\u201C','minus':'\u002D','eject':'\u23CF','visit':'\uEE00','check':'\u2713','photo':'\uD83C\uDF04','share':'\uEE00','heart':'\u2665','close':'\u2421','image':'\uD83C\uDF04','cloud':'\u2601','zelda':'\uE1A0','phone':'\uD83D\uDCDE','sound':'\uD83D\uDD08','reply':'\u21A9','email':'\u2709','inbox':'\uD83D\uDCE5','audio':'\u266B','music':'\u266B','users':'\uD83D\uDC65','price':'\uD83D\uDCB2','globe':'\uD83C\uDF0E','print':'\u2399','earth':'\uD83C\uDF0E','world':'\uD83C\uDF0E','timer':'\u23F1','skip':'\u23ED','font':'\uED01','time':'\u23F2','fork':'\uEB80','home':'\u2302','zoom':'\uE002','exit':'\uEE02','cost':'\uD83D\uDCB2','cart':'\uE500','view':'\uD83D\uDC40','text':'\uED00','user':'\uD83D\uDC64','talk':'\uD83D\uDCAC','chat':'\uD83D\uDCAC','look':'\uD83D\uDC40','bell':'\uD83D\uDD14','stop':'\u25A0','send':'\uE350','redo':'\u21BB','link':'\uD83D\uDD17','call':'\uD83D\uDCDE','list':'\uED50','undo':'\u21BA','crop':'\uE201','book':'\uD83D\uDCD5','star':'\u22C6','gear':'\u2699','work':'\uD83D\uDCBC','move':'\uE070','drop':'\uD83D\uDCA7','love':'\u2665','edit':'\u270E','like':'\uD83D\uDC4D','flag':'\u2691','date':'\uD83D\uDCC5','next':'\u25BB','tags':'\uE100','info':'\u2139','page':'\uD83D\uDCC4','cell':'\uD83D\uDCF1','ipad':'\uEA01','play':'\u25B6','sync':'\uEB82','grid':'\uE9A0','plus':'\u002B','file':'\uD83D\uDCC4','help':'\u2753','rows':'\uE9A1','down':'\u2B07','lock':'\uD83D\uDD12','wifi':'\uEB84','left':'\u2B05','back':'\u2B05','mail':'\u2709','key':'\uD83D\uDD11','ban':'\uD83D\uDEAB','add':'\u002B','tag':'\uE100','out':'\uEE00','cog':'\u2699','rss':'\uE310','map':'\uE673','mic':'\uD83C\uDFA4','eye':'\uD83D\uDC40','hdd':'\uE7B0','pin':'\uD83D\uDCCD','box':'\uD83D\uDCE6','fax':'\uD83D\uDCE0','up':'\u2B06'};
14
+
15
+ if (typeof ss_icons !== 'object' || typeof ss_icons !== 'object') {
16
+ var ss_icons = ss_set;
17
+ var ss_keywords = [];
18
+ for (var i in ss_set) { ss_keywords.push(i); };
19
+ } else {
20
+ for (var i in ss_set) { ss_icons[i] = ss_set[i]; ss_keywords.push(i); }
21
+ };
22
+
23
+ if (typeof ss_legacy !== 'function') {
24
+
25
+ /* domready.js */
26
+ !function(a,b){typeof module!="undefined"?module.exports=b():typeof define=="function"&&typeof define.amd=="object"?define(b):this[a]=b()}("ss_ready",function(a){function m(a){l=1;while(a=b.shift())a()}var b=[],c,d=!1,e=document,f=e.documentElement,g=f.doScroll,h="DOMContentLoaded",i="addEventListener",j="onreadystatechange",k="readyState",l=/^loade|c/.test(e[k]);return e[i]&&e[i](h,c=function(){e.removeEventListener(h,c,d),m()},d),g&&e.attachEvent(j,c=function(){/^c/.test(e[k])&&(e.detachEvent(j,c),m())}),a=g?function(c){self!=top?l?c():b.push(c):function(){try{f.doScroll("left")}catch(b){return setTimeout(function(){a(c)},50)}c()}()}:function(a){l?a():b.push(a)}})
27
+
28
+ var ss_legacy = function(node) {
29
+
30
+ if (!node instanceof Object) return false;
31
+
32
+ if (node.length) {
33
+ for (var i=0; i<node.length; i++) {
34
+ ss_legacy(node[i]);
35
+ }
36
+ return;
37
+ };
38
+
39
+ if (node.value) {
40
+ node.value = ss_liga(node.value);
41
+ } else if (node.nodeValue) {
42
+ node.nodeValue = ss_liga(node.nodeValue);
43
+ } else if (node.innerHTML) {
44
+ node.innerHTML = ss_liga(node.innerHTML);
45
+ }
46
+
47
+ };
48
+
49
+ var ss_getElementsByClassName = function(node, classname) {
50
+ var a = [];
51
+ var re = new RegExp('(^| )'+classname+'( |$)');
52
+ var els = node.getElementsByTagName("*");
53
+ for(var i=0,j=els.length; i<j; i++)
54
+ if(re.test(els[i].className))a.push(els[i]);
55
+ return a;
56
+ };
57
+
58
+ var ss_liga = function(that) {
59
+ var re = new RegExp(ss_keywords.join('|').replace(/[-[\]{}()*+?.,\\^$#\s]/g, "\\$&"),"gi");
60
+ return that.replace(re, function(v) {
61
+ return ss_icons[v.toLowerCase()];
62
+ });
63
+ };
64
+
65
+ ss_ready(function() {
66
+ if (document.getElementsByClassName) {
67
+ ss_legacy(document.getElementsByClassName('ss-icon'));
68
+ } else {
69
+ ss_legacy(ss_getElementsByClassName(document.body, 'ss-icon'));
70
+ }
71
+ });
72
+
73
+ }
74
+
75
+ };
@@ -0,0 +1,207 @@
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></metadata>
5
+ <defs>
6
+ <font id="SSStandardRegular" horiz-adv-x="864" >
7
+ <font-face units-per-em="864" ascent="864" descent="0" />
8
+ <missing-glyph horiz-adv-x="216" />
9
+ <glyph unicode="&#x002B;" d="M0 342v180q0 8 5 13t13 5h306v306q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-306h306q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-306v-306q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13v306h-306q-8 0 -13 5t-5 13z" />
10
+ <glyph unicode="&#x002D;" d="M0 342v180q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13z" />
11
+ <glyph unicode="&#x201C;" d="M0 108v270q0 190 99.5 311t260.5 121q8 0 13 -5t5 -13v-163q0 -16 -16 -18q-70 -5 -108 -65t-38 -168h108q22 0 38 -16t16 -38v-216q0 -22 -16 -38t-38 -16h-270q-22 0 -38 16t-16 38zM486 108v270q0 190 99.5 311t260.5 121q8 0 13 -5t5 -13v-163q0 -16 -16 -18 q-70 -5 -108 -65t-38 -168h108q22 0 38 -16t16 -38v-216q0 -22 -16 -38t-38 -16h-270q-22 0 -38 16t-16 38z" />
12
+ <glyph unicode="&#x2139;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM360 630q0 -30 21 -51t51 -21t51 21t21 51t-21 51t-51 21t-51 -21t-21 -51zM378 162h108v306h-108v-306z" />
13
+ <glyph unicode="&#x21A9;" d="M0 432q0 9 7 14l396 306q9 7 19 1.5t10 -15.5v-162q200 0 312.5 -106t119.5 -291q0 -13 -14 -17h-4q-7 0 -16 9q-47 59 -152 88t-246 29v-162q0 -7 -5 -12.5t-13 -5.5q-7 0 -11 4l-396 306q-7 5 -7 14z" />
14
+ <glyph unicode="&#x21BA;" d="M0 504v342q0 11 11 16.5t20 -3.5l134 -135q114 104 267 104q164 0 280 -116t116 -280q0 -107 -53 -198.5t-144.5 -144.5t-198.5 -53q-75 0 -144 27t-122 76h-1v1q-5 5 -5 12q0 8 5 13l77 77q5 5 12 5t12 -5q72 -62 166 -62q104 0 178 74t74 178t-74 178t-178 74 q-95 0 -165 -62l106 -105q9 -9 3.5 -20t-16.5 -11h-342q-8 0 -13 5t-5 13z" />
15
+ <glyph unicode="&#x21BB;" d="M36 432q0 107 53 198.5t144.5 144.5t198.5 53q153 0 267 -104l134 135q9 9 20 3.5t11 -16.5v-342q0 -7 -5 -12.5t-13 -5.5h-342q-11 0 -16.5 11t3.5 20l106 105q-70 62 -165 62q-104 0 -178 -74t-74 -178t74 -178t178 -74q93 0 166 62q5 5 12 5t12 -5l77 -77v-1 q5 -4 5 -12q0 -7 -5 -12q0 -1 -1 -1q-53 -49 -122 -76t-144 -27q-107 0 -198.5 53t-144.5 144.5t-53 198.5z" />
16
+ <glyph unicode="&#x22C6;" d="M1.5 529q5.5 11 16.5 11h276l121 312q5 12 17 12t17 -12l121 -312h276q11 0 16.5 -11t-3.5 -20l-210 -209l53 -279q1 -8 -4 -14.5t-14 -6.5q-6 0 -10 3l-242 156l-242 -156q-11 -7 -20 0.5t-8 17.5l53 279l-210 209q-9 9 -3.5 20z" />
17
+ <glyph unicode="&#x2302;" d="M1.5 424.5q-4.5 10.5 3.5 20.5l414 414q13 13 26 0l414 -414q8 -10 3.5 -20.5t-16.5 -10.5h-90v-396q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13v306h-216v-306q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13v396h-90q-12 0 -16.5 10.5z" />
18
+ <glyph unicode="&#x2316;" d="M0 396v72q0 8 5 13t13 5h94q17 102 90.5 175.5t175.5 89.5v95q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-95q102 -17 175 -90t90 -175h95q8 0 13 -5t5 -13v-72q0 -8 -5 -13t-13 -5h-95q-16 -102 -89.5 -175.5t-175.5 -90.5v-94q0 -8 -5 -13t-13 -5h-72q-8 0 -13 5t-5 13v94 q-102 17 -175.5 90.5t-90.5 175.5h-94q-8 0 -13 5t-5 13zM216 432q0 -89 63.5 -152.5t152.5 -63.5t152.5 63.5t63.5 152.5t-63.5 152.5t-152.5 63.5t-152.5 -63.5t-63.5 -152.5z" />
19
+ <glyph unicode="&#x232B;" d="M0 432q0 22 16 38l279 281q7 5 13 5h502q22 0 38 -16t16 -38v-540q0 -22 -16 -38t-38 -16h-502q-6 0 -13 5l-279 281q-16 16 -16 38zM324 288l72 -72l144 144l144 -144l72 72l-144 144l144 144l-72 72l-144 -144l-144 144l-72 -72l144 -144z" />
20
+ <glyph unicode="&#x23CF;" d="M0 18v108q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM2.5 334q-5.5 10 1.5 19l414 504q4 7 14 7q8 0 14 -7l414 -504q4 -4 4 -11q0 -8 -5.5 -13t-12.5 -5h-828q-10 0 -15.5 10z" />
21
+ <glyph unicode="&#x23E9;" d="M0 18v828q0 7 5 12.5t13 5.5q7 0 11 -4l295 -242v228q0 7 5 12.5t13 5.5q7 0 11 -4l504 -414q7 -6 7 -14q0 -10 -7 -14l-504 -414q-9 -7 -19 -1.5t-10 15.5v228l-295 -242q-9 -7 -19 -1.5t-10 15.5z" />
22
+ <glyph unicode="&#x23EA;" d="M0 432q0 8 7 14l504 414q4 4 11 4q8 0 13 -5.5t5 -12.5v-228l295 242q4 4 11 4q8 0 13 -5.5t5 -12.5v-828q0 -10 -10 -15.5t-19 1.5l-295 242v-228q0 -10 -10 -15.5t-19 1.5l-504 414q-7 4 -7 14z" />
23
+ <glyph unicode="&#x23ED;" d="M54 18v828q0 10 10 15.5t19 -1.5l504 -414q7 -6 7 -14q0 -10 -7 -14l-504 -414q-4 -4 -11 -4q-5 0 -9 2.5t-6.5 6.5t-2.5 9zM666 18v828q0 8 5 13t13 5h108q8 0 13 -5t5 -13v-828q0 -8 -5 -13t-13 -5h-108q-8 0 -13 5t-5 13z" />
24
+ <glyph unicode="&#x23EE;" d="M54 18v828q0 8 5 13t13 5h108q8 0 13 -5t5 -13v-828q0 -8 -5 -13t-13 -5h-108q-8 0 -13 5t-5 13zM270 432q0 8 7 14l504 414q9 7 19 1.5t10 -15.5v-828q0 -7 -5 -12.5t-13 -5.5q-7 0 -11 4l-504 414q-7 4 -7 14z" />
25
+ <glyph unicode="&#x23F1;" d="M54 378q0 127 76 227t194 135v106q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-106q58 -17 103 -49l60 59q13 12 25 0l77 -77q13 -13 0 -25l-60 -59q65 -95 65 -211q0 -157 -110.5 -267.5t-267.5 -110.5t-267.5 110.5t-110.5 267.5zM360 378q0 -30 21 -51t51 -21t51 21t21 51 v270h-72l-70 -254q-2 -10 -2 -16z" />
26
+ <glyph unicode="&#x23F2;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM360 432q0 -30 21 -51q4 -4 12 -10l230 -130l51 51l-176 176l-66 288h-72v-324z" />
27
+ <glyph unicode="&#x2421;" d="M53 198q0 6 5 13l221 221l-221 221q-5 7 -5 13t5 13l127 127q7 5 13 5t13 -5l221 -221l221 221q7 5 13 5t13 -5l127 -127q5 -7 5 -13t-5 -13l-221 -221l221 -221q5 -7 5 -13t-5 -13l-127 -127q-7 -5 -13 -5t-13 5l-221 221l-221 -221q-7 -5 -13 -5t-13 5l-127 127 q-5 7 -5 13z" />
28
+ <glyph unicode="&#x25A0;" d="M0 18v828q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-828q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13z" />
29
+ <glyph unicode="&#x25B6;" d="M0 18v828q0 9 8.5 15t17.5 1l828 -414q10 -5 10 -16t-10 -16l-828 -414q-6 -2 -8 -2q-8 0 -13 5.5t-5 12.5z" />
30
+ <glyph unicode="&#x25BB;" d="M149 131q-13 13 0 26l275 275l-275 275q-13 13 0 26l126 126q7 5 13 5t13 -5l414 -414q13 -13 0 -26l-414 -414q-13 -13 -26 0z" />
31
+ <glyph unicode="&#x25BE;" d="M2.5 692q5.5 10 15.5 10h828q10 0 15.5 -10t-1.5 -19l-414 -504q-6 -7 -14 -7q-10 0 -14 7l-414 504q-7 9 -1.5 19z" />
32
+ <glyph unicode="&#x25C5;" d="M149 419q-13 13 0 26l414 414q13 13 26 0l126 -126q13 -13 0 -26l-276 -275l276 -275q13 -13 0 -26l-126 -126q-7 -5 -13 -5t-13 5z" />
33
+ <glyph unicode="&#x25CE;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM144 432q0 -119 84.5 -203.5t203.5 -84.5t203.5 84.5t84.5 203.5t-84.5 203.5t-203.5 84.5t-203.5 -84.5t-84.5 -203.5zM288 432q0 -60 42 -102 t102 -42q59 0 101.5 42t42.5 102q0 59 -42.5 101.5t-101.5 42.5q-60 0 -102 -42.5t-42 -101.5z" />
34
+ <glyph unicode="&#x25CF;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5z" />
35
+ <glyph unicode="&#x2601;" d="M0 297q0 71 46.5 124t115.5 63v2q0 112 79 191t191 79q99 0 174 -63.5t92 -158.5q72 -17 119 -75.5t47 -134.5q0 -89 -63.5 -152.5t-152.5 -63.5h-459q-78 0 -133.5 55.5t-55.5 133.5z" />
36
+ <glyph unicode="&#x2665;" d="M2.5 632q11.5 61 57.5 107q68 68 165 68t165 -68q25 -25 42 -56q17 31 42 56q68 69 165 69t166 -69q46 -46 57 -107t-18.5 -133t-99.5 -142l-299 -300q-7 -5 -13 -5q-8 0 -13 5l-299 300q-70 70 -99.5 142t-18 133z" />
37
+ <glyph unicode="&#x266B;" d="M0 112q0 60 56 115.5t133 70.5q42 8 73 8h26v388q0 22 15.5 41.5t37.5 24.5l470 103q22 5 37.5 -8t15.5 -35v-496q0 -79 -54.5 -137.5t-134.5 -73.5q-78 -16 -133.5 15.5t-55.5 91.5t56 115.5t133 70.5q42 8 73 8h26v216l-396 -90v-324q0 -79 -54.5 -137.5t-134.5 -73.5 q-78 -16 -133.5 15.5t-55.5 91.5z" />
38
+ <glyph unicode="&#x2691;" d="M108 18v800q0 10 9 15q56 31 126 31q59 0 189 -36t189 -36q60 0 110 23q9 4 17 -2t8 -15v-392q0 -9 -10 -16q-57 -30 -125 -30q-59 0 -189 36t-189 36q-5 0 -14 -0.5t-13 -0.5v-413q0 -8 -5 -13t-13 -5h-72q-8 0 -13 5t-5 13z" />
39
+ <glyph unicode="&#x2699;" d="M24 291q-5 12 5 19l83 72q-4 21 -4 50t4 50l-83 72q-10 7 -5 19q25 77 82 142q8 10 19 5l104 -36q37 31 86 50l21 108q2 12 14 14q82 17 164 0q12 -2 14 -14l21 -108q46 -18 86 -50l104 36q11 5 19 -5q57 -65 82 -142q5 -12 -5 -19l-83 -72q4 -21 4 -50t-4 -50l83 -72 q10 -7 5 -19q-25 -77 -82 -142q-8 -10 -19 -5l-104 36q-40 -32 -86 -50l-21 -108q-2 -12 -14 -14q-43 -8 -82 -8t-82 8q-12 2 -14 14l-21 108q-49 19 -86 50l-104 -36q-11 -5 -19 5q-57 65 -82 142zM270 432q0 -68 47 -115t115 -47q67 0 114.5 47.5t47.5 114.5t-47.5 114.5 t-114.5 47.5t-114.5 -47.5t-47.5 -114.5z" />
40
+ <glyph unicode="&#x26A0;" d="M9 130l342 684q26 50 81 50q56 0 80 -50l342 -684q23 -45 -3 -87q-27 -43 -77 -43h-684q-50 0 -77 43q-25 41 -4 87zM360 162q0 -30 21 -51t51 -21t51 21t21 51t-21 51t-51 21t-51 -21t-21 -51zM378 324h108v306h-108v-306z" />
41
+ <glyph unicode="&#x26D4;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM108 324h648v216h-648v-216z" />
42
+ <glyph unicode="&#x2709;" d="M0 162v443l432 -324l432 324v-443q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM0 702q0 22 16 38t38 16h756q22 0 38 -16t16 -38l-432 -324z" />
43
+ <glyph unicode="&#x270E;" d="M1 25q-3 -10 2 -17.5t15 -7.5q4 0 7 1l226 90q4 2 6 4l445 445l-162 162l-445 -445q-2 -2 -4 -6zM594 756l92 92q16 16 38.5 16t38.5 -16l85 -85q16 -16 16 -38.5t-16 -38.5l-92 -92z" />
44
+ <glyph unicode="&#x2710;" d="M0 139.5q0 22.5 16 38.5l92 92l162 -162l-92 -92q-16 -16 -38.5 -16t-38.5 16l-85 85q-16 16 -16 38.5zM162 324l445 445q3 3 6 4l226 90q2 1 7 1q10 0 15 -7.5t2 -17.5l-90 -226q-1 -3 -4 -6l-445 -445z" />
45
+ <glyph unicode="&#x2713;" d="M5 401q-13 13 0 26l126 126q13 13 26 0l167 -168l383 384q13 13 26 0l126 -126q13 -13 0 -26l-522 -522q-7 -5 -13 -5t-13 5z" />
46
+ <glyph unicode="&#x27A1;" d="M0 288v288q0 8 5 13t13 5h414v234q0 11 11 16.5t20 -3.5l396 -396q5 -7 5 -13t-5 -13l-396 -396q-9 -9 -20 -3.5t-11 16.5v234h-414q-8 0 -13 5t-5 13z" />
47
+ <glyph unicode="&#x2922;" d="M0 18v396q0 11 11 16.5t20 -3.5l121 -122l153 152q13 13 25 0l127 -127q6 -4 6 -13q0 -7 -6 -12l-152 -153l121 -121q6 -5 6 -13t-5 -13t-13 -5h-396q-8 0 -13 5t-5 13zM401 546.5q0 7.5 5 12.5l153 153l-122 121q-9 9 -3.5 20t16.5 11h396q8 0 13 -5t5 -13v-396 q0 -7 -5 -12.5t-13 -5.5q-6 0 -13 5l-121 122l-153 -153q-5 -5 -12 -5q-8 0 -13 5l-128 128q-5 5 -5 12.5z" />
48
+ <glyph unicode="&#x2B05;" d="M0 432q0 6 5 13l396 396q9 9 20 3.5t11 -16.5v-234h414q8 0 13 -5t5 -13v-288q0 -8 -5 -13t-13 -5h-414v-234q0 -11 -11 -16.5t-20 3.5l-396 396q-5 7 -5 13z" />
49
+ <glyph unicode="&#x2B06;" d="M19.5 443q-5.5 11 3.5 20l396 396q7 5 13 5t13 -5l396 -396q9 -9 3.5 -20t-16.5 -11h-234v-414q0 -8 -5 -13t-13 -5h-288q-8 0 -13 5t-5 13v414h-234q-11 0 -16.5 11z" />
50
+ <glyph unicode="&#x2B07;" d="M19.5 421q5.5 11 16.5 11h234v414q0 8 5 13t13 5h288q8 0 13 -5t5 -13v-414h234q11 0 16.5 -11t-3.5 -20l-396 -396q-7 -5 -13 -5t-13 5l-396 396q-9 9 -3.5 20z" />
51
+ <glyph unicode="&#x2B08;" d="M113 311q-13 13 0 26l312 311l-186 185q-9 9 -3.5 20t16.5 11h594q8 0 13 -5t5 -13v-594q0 -11 -11 -16.5t-20 3.5l-185 186l-311 -312q-13 -13 -26 0z" />
52
+ <glyph unicode="&#x2B09;" d="M0 252v594q0 8 5 13t13 5h594q11 0 16.5 -11t-3.5 -20l-186 -185l312 -311q5 -5 5 -13t-5 -13l-198 -198q-5 -5 -13 -5t-13 5l-311 312l-185 -186q-9 -9 -20 -3.5t-11 16.5z" />
53
+ <glyph unicode="&#x2B0A;" d="M108 540q0 8 5 13l198 198q5 5 13 5t13 -5l311 -312l185 186q9 9 20 3.5t11 -16.5v-594q0 -8 -5 -13t-13 -5h-594q-11 0 -16.5 11t3.5 20l186 185l-312 311q-5 5 -5 13z" />
54
+ <glyph unicode="&#x2B0B;" d="M0 18v594q0 11 11 16.5t20 -3.5l185 -186l311 312q13 13 26 0l198 -198q13 -13 0 -26l-312 -311l186 -185q9 -9 3.5 -20t-16.5 -11h-594q-8 0 -13 5t-5 13z" />
55
+ <glyph unicode="&#xE001;" d="M162 126v720q0 11 11 16.5t20 -3.5l504 -504q9 -9 3.5 -20t-16.5 -11h-225l126 -257q9 -16 -8 -24l-81 -41q-16 -9 -24 8l-125 258l-154 -155q-7 -5 -13 -5q-8 0 -13 5.5t-5 12.5z" />
56
+ <glyph unicode="&#xE070;" d="M0 432q0 8 5 13l162 162q9 9 20 3.5t11 -16.5v-90h162v162h-90q-11 0 -16.5 11t3.5 20l162 162q13 13 26 0l162 -162q9 -9 3.5 -20t-16.5 -11h-90v-162h162v90q0 11 11 16.5t20 -3.5l162 -162q5 -5 5 -13t-5 -13l-162 -162q-7 -5 -13 -5q-8 0 -13 5.5t-5 12.5v90h-162 v-162h90q11 0 16.5 -11t-3.5 -20l-162 -162q-7 -5 -13 -5t-13 5l-162 162q-9 9 -3.5 20t16.5 11h90v162h-162v-90q0 -7 -5 -12.5t-13 -5.5q-6 0 -13 5l-162 162q-5 5 -5 13z" />
57
+ <glyph unicode="&#xE071;" d="M1 25q-3 -10 2 -17.5t15 -7.5q4 0 7 1l226 90q4 2 6 4l166 166l-162 162l-166 -166q-2 -2 -4 -6zM53 758.5q0 -21.5 15 -36.5l653 -653q15 -15 37 -15t37 15t15 36.5t-15 37.5l-245 245l152 152l-162 162l-152 -152l-246 246q-16 15 -37.5 15t-36.5 -15 q-15 -16 -15 -37.5zM594 756l92 92q16 16 38.5 16t38.5 -16l85 -85q16 -16 16 -38.5t-16 -38.5l-92 -92z" />
58
+ <glyph unicode="&#xE0D0;" d="M36 774v72q0 8 5 13t13 5h756q8 0 13 -5t5 -13v-72q0 -8 -5 -13t-13 -5h-756q-8 0 -13 5t-5 13zM108 684h648l-54 -668q-2 -16 -18 -16h-504q-16 0 -18 16z" />
59
+ <glyph unicode="&#xE100;" d="M0 355.5q0 22.5 16 38.5l465 465q5 5 12 5h317q22 0 38 -16t16 -38v-317q0 -7 -5 -12l-465 -465q-16 -16 -38.5 -16t-38.5 16l-301 301q-16 16 -16 38.5zM594 675q0 -34 23.5 -57.5t57.5 -23.5t57.5 23.5t23.5 57.5t-23.5 57.5t-57.5 23.5t-57.5 -23.5t-23.5 -57.5z" />
60
+ <glyph unicode="&#xE1A0;" horiz-adv-x="432" d="M2.5 632q11.5 61 57.5 107q68 68 165 68t165 -68q25 -25 42 -56v-631q-8 0 -13 5l-299 300q-70 70 -99.5 142t-18 133z" />
61
+ <glyph unicode="&#xE1A1;" horiz-adv-x="432" d="M1.5 529q5.5 11 16.5 11h276l121 312q5 12 17 12v-705l-242 -156q-11 -7 -20 0.5t-8 17.5l53 279l-210 209q-9 9 -3.5 20z" />
62
+ <glyph unicode="&#xE200;" d="M5 52l47 -47q12 -13 25 0q3 3 14 14.5t17 17.5q18 17 54 17t54 18l288 288l-144 144l-288 -288q-18 -18 -18 -54t-18 -54l-31 -31q-13 -13 0 -25zM347 624q-13 12 0 25l47 48q13 13 26 0l48 -49l179 179q37 37 90 37t90 -37t37 -90t-37 -90l-179 -179l49 -48 q13 -13 0 -26l-48 -47q-13 -13 -25 0z" />
63
+ <glyph unicode="&#xE201;" d="M0 576q0 -8 5 -13t13 -5h72v144h-72q-8 0 -13 -5t-5 -13v-108zM162 180v666q0 8 5 13t13 5h108q8 0 13 -5t5 -13v-144h378q8 0 13 -5t5 -13v-378h144q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5h-666q-8 0 -13 5t-5 13zM306 306h252v252h-252v-252zM558 18q0 -8 5 -13 t13 -5h108q8 0 13 5t5 13v72h-144v-72z" />
64
+ <glyph unicode="&#xE202;" d="M0 324v378q0 22 16 38t38 16h540q22 0 38 -16t16 -38v-90h-396q-45 0 -76.5 -31.5t-31.5 -76.5v-234h-90q-22 0 -38 16t-16 38zM216 162v342q0 15 10.5 25.5t25.5 10.5h558q22 0 38 -16t16 -38v-324q0 -22 -16 -38t-38 -16h-540q-22 0 -38 16t-16 38z" />
65
+ <glyph unicode="&#xE300;" d="M1 225q-5 16 9 23l236 118q10 6 21 -3l220 -220q-171 -117 -377 -142q-3 -1 -7 -1q-11 0 -17 11zM53 704.5q0 21.5 15 37.5q15 15 36.5 15t37.5 -15l380 -381q53 55 94 121l-115 115q-9 11 -3 21l118 236q7 14 23 9l214 -85q11 -6 11 -17q0 -4 -1 -7q-36 -288 -238 -496 l170 -169q15 -16 15 -37.5t-15 -36.5t-37 -15t-37 15l-653 653q-15 15 -15 36.5z" />
66
+ <glyph unicode="&#xE310;" d="M0 135q0 56 39.5 95.5t95.5 39.5t95.5 -39.5t39.5 -95.5t-39.5 -95.5t-95.5 -39.5t-95.5 39.5t-39.5 95.5zM0 450v126q0 8 5 13t13 5q117 0 223.5 -45.5t184 -123t123 -184t45.5 -223.5q0 -8 -5 -13t-13 -5h-126q-8 0 -13 5t-5 13q0 172 -121 293t-293 121q-8 0 -13 5 t-5 13zM0 720v126q0 8 5 13t13 5q230 0 424.5 -113.5t308 -308t113.5 -424.5q0 -8 -5 -13t-13 -5h-126q-8 0 -13 5t-5 13q0 139 -54 266t-145.5 218.5t-218.5 145.5t-266 54q-8 0 -13 5t-5 13z" />
67
+ <glyph unicode="&#xE320;" d="M0 216v432q0 22 16 38t38 16h432q22 0 38 -16t16 -38v-432q0 -22 -16 -38t-38 -16h-432q-22 0 -38 16t-16 38zM591 432q0 22 16 38l226 227q9 9 20 3.5t11 -16.5v-504q0 -3 -1 -6.5t-3.5 -6t-6 -4t-7.5 -1.5q-6 0 -13 5l-226 227q-16 16 -16 38z" />
68
+ <glyph unicode="&#xE500;" d="M0 810q0 22 16 38t38 16h96q19 0 34 -11.5t19 -29.5l30 -121h613q8 0 14 -7t3 -15l-110 -369q-5 -18 -19 -29.5t-33 -11.5h-431q-19 0 -33.5 11.5t-18.5 29.5l-110 445h-54q-22 0 -38 16t-16 38zM252 90q0 38 26 64t64 26t64 -26t26 -64t-26 -64t-64 -26t-64 26t-26 64z M540 90q0 38 26 64t64 26t64 -26t26 -64t-26 -64t-64 -26t-64 26t-26 64z" />
69
+ <glyph unicode="&#xE570;" d="M0 378q0 157 110.5 267.5t267.5 110.5v-378h378q0 -157 -110.5 -267.5t-267.5 -110.5t-267.5 110.5t-110.5 267.5zM450 450v396q0 8 5 13t13 5q164 0 280 -116t116 -280q0 -8 -5 -13t-13 -5h-396z" />
70
+ <glyph unicode="&#xE670;" d="M0.5 446q-3.5 14 9.5 20l828 396q11 5 21 -3q8 -10 3 -21l-396 -828q-5 -10 -16 -10h-4q-14 4 -14 18v414h-414q-14 0 -17.5 14z" />
71
+ <glyph unicode="&#xE671;" d="M109 24l306 828q5 12 17 12t17 -12l306 -828q3 -8 -2 -16t-15 -8q-8 0 -12 4l-294 266l-294 -266q-11 -9 -22 -0.5t-7 20.5z" />
72
+ <glyph unicode="&#xE672;" d="M5 689q-13 13 0 26l90 90q7 5 13 5h252v36q0 8 5 13t13 5h108q8 0 13 -5t5 -13v-36h288q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-684q-6 0 -13 5zM54 234v180q0 8 5 13t13 5h288v90h144v-90h252q6 0 13 -5l90 -90q13 -13 0 -26l-90 -90q-7 -5 -13 -5h-684q-8 0 -13 5 t-5 13zM360 18v126h144v-126q0 -8 -5 -13t-13 -5h-108q-8 0 -13 5t-5 13z" />
73
+ <glyph unicode="&#xE6D0;" d="M144 576q0 119 84.5 203.5t203.5 84.5t203.5 -84.5t84.5 -203.5q0 -75 -37 -141l-235 -426q-5 -9 -16 -9t-16 9l-235 426q-37 63 -37 141zM324 576q0 -45 31.5 -76.5t76.5 -31.5t76.5 31.5t31.5 76.5t-31.5 76.5t-76.5 31.5t-76.5 -31.5t-31.5 -76.5z" />
74
+ <glyph unicode="&#xE800;" d="M0 216v540q0 22 16 38t38 16h756q22 0 38 -16t16 -38v-540q0 -22 -16 -38t-38 -16h-89l-108 108h143v432h-648v-432h143l-108 -108h-89q-22 0 -38 16t-16 38zM163.5 65q5.5 -11 16.5 -11h504q11 0 16.5 11t-3.5 20l-252 252q-5 5 -13 5t-13 -5l-252 -252q-9 -9 -3.5 -20z " />
75
+ <glyph unicode="&#xE8A0;" d="M0 18v828q0 8 5 13t13 5h288q8 0 13 -5t5 -13v-828q0 -8 -5 -13t-13 -5h-288q-8 0 -13 5t-5 13zM540 18v828q0 8 5 13t13 5h288q8 0 13 -5t5 -13v-828q0 -8 -5 -13t-13 -5h-288q-8 0 -13 5t-5 13z" />
76
+ <glyph unicode="&#xE9A0;" d="M0 18v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM0 342v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM0 666v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5 h-180q-8 0 -13 5t-5 13zM324 18v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM324 342v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM324 666v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13 v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM648 18v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM648 342v180q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM648 666v180q0 8 5 13 t13 5h180q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13z" />
77
+ <glyph unicode="&#xE9A1;" d="M0 18v180q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM0 342v180q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM0 666v180q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5 h-828q-8 0 -13 5t-5 13z" />
78
+ <glyph unicode="&#xEA00;" d="M0 72v84q0 7 3 10l51 77v513q0 22 16 38t38 16h648q22 0 38 -16t16 -38v-513l51 -77q3 -3 3 -10v-84q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM162 270h540v432h-540v-432z" />
79
+ <glyph unicode="&#xEA01;" d="M108 54v756q0 22 16 38t38 16h540q22 0 38 -16t16 -38v-756q0 -22 -16 -38t-38 -16h-540q-22 0 -38 16t-16 38zM216 108h432v648h-432v-648z" />
80
+ <glyph unicode="&#xEA10;" d="M0 270v324q0 22 16 38t38 16h486v-432h-486q-22 0 -38 16t-16 38zM648 216v432h54q22 0 38 -16t16 -38v-54h90q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-90v-54q0 -22 -16 -38t-38 -16h-54z" />
81
+ <glyph unicode="&#xEA11;" d="M0 270v324q0 22 16 38t38 16h324v-432h-324q-22 0 -38 16t-16 38zM648 216v432h54q22 0 38 -16t16 -38v-54h90q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-90v-54q0 -22 -16 -38t-38 -16h-54z" />
82
+ <glyph unicode="&#xEA12;" d="M0 270v324q0 22 16 38t38 16h162v-432h-162q-22 0 -38 16t-16 38zM648 216v432h54q22 0 38 -16t16 -38v-54h90q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-90v-54q0 -22 -16 -38t-38 -16h-54z" />
83
+ <glyph unicode="&#xEA13;" d="M0 270v324q0 22 16 38t38 16h54v-432h-54q-22 0 -38 16t-16 38zM648 216v432h54q22 0 38 -16t16 -38v-54h90q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-90v-54q0 -22 -16 -38t-38 -16h-54z" />
84
+ <glyph unicode="&#xEB00;" d="M0 297q0 71 46.5 124t115.5 63v2q0 112 79 191t191 79q99 0 174 -63.5t92 -158.5q72 -17 119 -75.5t47 -134.5q0 -89 -63.5 -152.5t-152.5 -63.5h-182l186 185q9 9 3.5 20t-16.5 11h-135v182h-144v-182h-135q-11 0 -16.5 -11t3.5 -20l186 -185h-209q-78 0 -133.5 55.5 t-55.5 133.5z" />
85
+ <glyph unicode="&#xEB01;" d="M54 18v108q0 8 5 13t13 5h720q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5h-720q-8 0 -13 5t-5 13zM55.5 601q5.5 11 16.5 11h198v234q0 8 5 13t13 5h288q8 0 13 -5t5 -13v-234h198q11 0 16.5 -11t-3.5 -20l-360 -360q-7 -5 -13 -5t-13 5l-360 360q-9 9 -3.5 20z" />
86
+ <glyph unicode="&#xEB40;" d="M0 297q0 71 46.5 124t115.5 63v2q0 112 79 191t191 79q99 0 174 -63.5t92 -158.5q72 -17 119 -75.5t47 -134.5q0 -89 -63.5 -152.5t-152.5 -63.5h-144v162h135q11 0 16.5 11t-3.5 20l-220 219l-220 -219q-9 -9 -3.5 -20t16.5 -11h135v-162h-171q-78 0 -133.5 55.5 t-55.5 133.5z" />
87
+ <glyph unicode="&#xEB41;" d="M54 18v108q0 8 5 13t13 5h720q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5h-720q-8 0 -13 5t-5 13zM55.5 479q-5.5 11 3.5 20l360 360q7 5 13 5t13 -5l360 -360q9 -9 3.5 -20t-16.5 -11h-198v-234q0 -8 -5 -13t-13 -5h-288q-8 0 -13 5t-5 13v234h-198q-11 0 -16.5 11z" />
88
+ <glyph unicode="&#xEB80;" d="M0 378v108q0 8 5 13t13 5h189q27 0 43 22l87 116q59 78 157 78h172v90q0 11 11 16.5t20 -3.5l162 -162q5 -7 5 -13t-5 -13l-162 -162q-9 -9 -20 -3.5t-11 16.5v90h-171q-27 0 -43 -22l-92 -122l92 -122q16 -22 43 -22h171v90q0 11 11 16.5t20 -3.5l162 -162q5 -7 5 -13 t-5 -13l-162 -162q-9 -9 -20 -3.5t-11 16.5v90h-172q-98 0 -157 78l-87 116q-16 22 -43 22h-189q-8 0 -13 5t-5 13z" />
89
+ <glyph unicode="&#xEB81;" d="M0 162v108q0 8 5 13t13 5h225q27 0 43 22l87 116q1 1 2.5 3t2.5 3q-1 1 -2.5 3t-2.5 3l-87 116q-16 22 -43 22h-225q-8 0 -13 5t-5 13v108q0 8 5 13t13 5h226q98 0 157 -78l87 -116q16 -22 43 -22h135v90q0 11 11 16.5t20 -3.5l162 -162q13 -13 0 -26l-162 -162 q-7 -5 -13 -5q-18 0 -18 18v90h-135q-27 0 -43 -22l-87 -116q-59 -78 -157 -78h-226q-8 0 -13 5t-5 13z" />
90
+ <glyph unicode="&#xEB82;" d="M0 18v342q0 8 5 13t13 5h342q11 0 16.5 -11t-3.5 -20l-106 -105q70 -62 165 -62q86 0 153 52t90 133q3 13 17 13h111q8 0 14 -6.5t4 -14.5q-27 -139 -136.5 -230t-252.5 -91q-153 0 -267 104l-134 -135q-7 -5 -13 -5q-18 0 -18 18zM43 507q26 138 135.5 229.5t253.5 91.5 q153 0 267 -104l134 135q7 5 13 5q18 0 18 -18v-342q0 -8 -5 -13t-13 -5h-342q-11 0 -16.5 11t3.5 20l106 105q-70 62 -165 62q-86 0 -153 -52t-90 -133q-3 -13 -17 -13h-111q-9 0 -14.5 6.5t-3.5 14.5z" />
91
+ <glyph unicode="&#xEB83;" d="M0 432q0 30 21 51t51 21h126q30 0 51 -21t21 -51t-21 -51t-51 -21h-126q-30 0 -51 21t-21 51zM105 177.5q0 29.5 21 50.5l90 89q21 22 50.5 22t50.5 -22q22 -21 22 -50.5t-22 -50.5l-89 -90q-21 -21 -50.5 -21t-51.5 21q-21 22 -21 51.5zM105 686.5q0 29.5 21 50.5 q22 22 51.5 22t50.5 -22l89 -89q22 -21 22 -50.5t-22 -50.5q-21 -22 -50.5 -22t-50.5 22l-90 89q-21 21 -21 50.5zM360 72v126q0 30 21 51t51 21t51 -21t21 -51v-126q0 -30 -21 -51t-51 -21t-51 21t-21 51zM360 666v126q0 30 21 51t51 21t51 -21t21 -51v-126q0 -30 -21 -51 t-51 -21t-51 21t-21 51zM525 266.5q0 29.5 22 50.5q21 22 50.5 22t50.5 -22l89 -89q22 -21 22 -50.5t-22 -51.5q-21 -21 -50.5 -21t-50.5 21l-89 90q-22 21 -22 50.5zM525 597.5q0 29.5 22 50.5l89 89q21 22 50.5 22t50.5 -22q22 -21 22 -50.5t-22 -50.5l-89 -89 q-21 -22 -50.5 -22t-50.5 22q-22 21 -22 50.5zM594 432q0 30 21 51t51 21h126q30 0 51 -21t21 -51t-21 -51t-51 -21h-126q-30 0 -51 21t-21 51z" />
92
+ <glyph unicode="&#xEB84;" d="M6 536q-12 12 0 25q116 116 271 157.5t310 0t271 -157.5q12 -13 0 -25l-76 -76q-6 -6 -13 -6q-8 0 -12 6q-66 66 -152 100.5t-173 34.5t-173 -34.5t-152 -100.5q-5 -6 -12 -6t-13 6zM166 383q0 8 5 13q53 53 122 80.5t139 27.5t139 -27.5t122 -80.5q5 -5 5 -13t-5 -13 l-76 -76q-5 -5 -13 -5t-13 5q-66 66 -159 66t-159 -66q-7 -5 -13 -5q-8 0 -13 5l-76 76q-5 5 -5 13zM336 205q-12 13 0 25q40 40 96 40t95 -40q13 -12 0 -25l-82 -83q-13 -13 -26 0z" />
93
+ <glyph unicode="&#xEB85;" d="M0 144q0 39 19.5 72.5t52.5 52.5v163q0 30 21 51t51 21h163q19 33 52.5 52.5t72.5 19.5t72.5 -19.5t52.5 -52.5h91v91q-33 19 -52.5 52.5t-19.5 72.5q0 59 42 101.5t102 42.5q59 0 101.5 -42.5t42.5 -101.5q0 -39 -19.5 -72.5t-52.5 -52.5v-163q0 -30 -21 -51t-51 -21 h-163q-19 -33 -52.5 -52.5t-72.5 -19.5t-72.5 19.5t-52.5 52.5h-91v-91q33 -19 52.5 -52.5t19.5 -72.5q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102z" />
94
+ <glyph unicode="&#xED00;" d="M54 720v126q0 8 5 13t13 5h720q8 0 13 -5t5 -13v-126q0 -8 -5 -13t-13 -5h-252v-684q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13v684h-252q-8 0 -13 5t-5 13z" />
95
+ <glyph unicode="&#xED01;" d="M1 24l282 828q3 12 17 12h264q12 0 17 -12l282 -828q3 -9 -2 -17q-7 -7 -15 -7h-180q-14 0 -17 12l-48 150h-342l-48 -150q-3 -12 -17 -12h-176q-8 0 -15 7q-5 8 -2 17zM310 324h239l-119 375z" />
96
+ <glyph unicode="&#xED50;" d="M0 18v108q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM0 378v108q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM0 738v108q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-108q0 -8 -5 -13t-13 -5 h-828q-8 0 -13 5t-5 13z" />
97
+ <glyph unicode="&#xEDA0;" d="M0 18v540q0 8 5 13t13 5h234v-558q0 -8 -5 -13t-13 -5h-216q-8 0 -13 5t-5 13zM0 666v180q0 8 5 13t13 5h828q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13zM324 18v558h522q8 0 13 -5t5 -13v-540q0 -8 -5 -13t-13 -5h-504q-8 0 -13 5t-5 13z" />
98
+ <glyph unicode="&#xEE00;" d="M0 198v432q0 44 32 76t76 32h306v-44q-98 -15 -166 -64h-140v-432h486v42l108 74v-116q0 -44 -32 -76t-76 -32h-486q-44 0 -76 32t-32 76zM180 341q0 121 72 197q80 86 234 91v127q0 9 9 15.5t19 -0.5l342 -234q8 -6 8 -15q0 -10 -8 -15l-342 -234q-5 -3 -10 -3 q-8 0 -13 5.5t-5 12.5v127q-58 -1 -106.5 -9.5t-76 -18t-50 -23t-28.5 -19t-11 -11.5l-1 -1q-5 -9 -15 -9h-4q-12 3 -14 17z" />
99
+ <glyph unicode="&#xEE01;" d="M0 414q0 8 5 13t13 5h396q8 0 13 -5t5 -13v-396q0 -11 -11 -16.5t-20 3.5l-121 122l-122 -122q-12 -13 -25 0l-128 128q-13 13 0 25l122 122l-121 121q-6 5 -6 13zM432 450v396q0 11 11 16.5t20 -3.5l121 -122l122 122q12 13 25 0l128 -128q13 -13 0 -25l-122 -122 l121 -121q6 -5 6 -13t-5 -13t-13 -5h-396q-8 0 -13 5t-5 13z" />
100
+ <glyph unicode="&#xF000;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM90 440q3 116 87 198t201 82q119 0 203.5 -84.5t84.5 -203.5h108q0 142 -100 242t-242 100q-139 0 -239 -97.5t-103 -236.5zM360 162 q0 -30 21 -51t51 -21t51 21t21 51v378h-72l-70 -362q-2 -10 -2 -16z" />
101
+ <glyph unicode="&#xF070;" d="M54 54v486h756v-486q0 -22 -16 -38t-38 -16h-648q-22 0 -38 16t-16 38zM54 612v90q0 22 16 38t38 16h54v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h324v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h54q22 0 38 -16t16 -38v-90h-756zM252 216h126v-126h108v126h126v108h-126 v126h-108v-126h-126v-108z" />
102
+ <glyph unicode="&#xF071;" d="M54 54v486h756v-486q0 -22 -16 -38t-38 -16h-648q-22 0 -38 16t-16 38zM54 612v90q0 22 16 38t38 16h54v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h324v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h54q22 0 38 -16t16 -38v-90h-756zM252 216h360v108h-360v-108z" />
103
+ <glyph unicode="&#xF072;" d="M54 54v486h756v-486q0 -22 -16 -38t-38 -16h-648q-22 0 -38 16t-16 38zM54 612v90q0 22 16 38t38 16h54v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h324v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h54q22 0 38 -16t16 -38v-90h-756zM196 268l182 -182l290 290l-76 76 l-214 -214l-106 106z" />
104
+ <glyph unicode="&#xF500;" d="M0 288q0 6 5 13l414 414q13 13 26 0l414 -414q13 -13 0 -26l-126 -126q-13 -13 -26 0l-275 275l-275 -275q-13 -13 -26 0l-126 126q-5 7 -5 13z" />
105
+ <glyph unicode="&#xF501;" d="M5 563q-13 13 0 26l126 126q13 13 26 0l275 -276l275 276q13 13 26 0l126 -126q5 -7 5 -13t-5 -13l-414 -414q-13 -13 -26 0z" />
106
+ <glyph unicode="&#xF600;" d="M1.5 443q-5.5 11 3.5 20l162 162q5 5 13 5t13 -5l162 -162q9 -9 3.5 -20t-16.5 -11h-90v-162q0 -8 5 -13t13 -5h279q8 0 13 -5l109 -109q4 -4 4 -12t-5 -13t-13 -5h-387q-67 0 -114.5 47t-47.5 115v162h-90q-11 0 -16.5 11zM189 738q0 8 5.5 13t12.5 5h387 q67 0 114.5 -47.5t47.5 -114.5v-162h90q11 0 16.5 -11t-3.5 -20l-162 -162q-7 -5 -13 -5t-13 5l-162 162q-9 9 -3.5 20t16.5 11h90v162q0 8 -5 13t-13 5h-279q-8 0 -13 5l-109 109q-4 4 -4 12z" />
107
+ <glyph unicode="&#x1F304;" d="M0 162v540q0 22 16 38t38 16h756q22 0 38 -16t16 -38v-540q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM108 216h648l-216 324l-198 -252l-126 90zM108 567q0 -34 23.5 -57.5t57.5 -23.5t57.5 23.5t23.5 57.5t-23.5 57.5t-57.5 23.5t-57.5 -23.5t-23.5 -57.5z" />
108
+ <glyph unicode="&#x1F30E;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM180 576q0 -81 58.5 -139.5t139.5 -58.5h3q-3 -14 -3 -27q0 -41 25.5 -73t64.5 -41v-129q0 -8 5 -13t13 -5q48 0 105 65t57 151q0 52 -37 89 t-89 37h-72q-40 0 -65 18t-25 45q0 19 13 32t32 13t35 -18t28 -18q15 0 25.5 10.5t10.5 25.5q0 36 -34 70q33 63 34 141q0 16 -15 18q-32 5 -57 5q-116 -4 -184 -56t-68 -142z" />
109
+ <glyph unicode="&#x1F3A4;" d="M90 504q0 22 16 38t38 16t38 -16t16 -38q0 -97 68.5 -165.5t165.5 -68.5t165.5 68.5t68.5 165.5q0 22 16 38t38 16t38 -16t16 -38q0 -127 -82.5 -222.5t-205.5 -115.5v-148q0 -8 -5 -13t-13 -5h-72q-8 0 -13 5t-5 13v148q-123 20 -205.5 115.5t-82.5 222.5zM270 504v198 q0 67 47.5 114.5t114.5 47.5t114.5 -47.5t47.5 -114.5v-198q0 -67 -47.5 -114.5t-114.5 -47.5q-68 0 -115 47t-47 115z" />
110
+ <glyph unicode="&#x1F440;" d="M3 422q-7 10 0 20q8 11 22 30t59 67t92.5 84.5t117.5 66.5t138 30q69 0 139 -30t117 -66t92.5 -84.5t59 -67t21.5 -30.5q7 -10 0 -20q-8 -11 -22 -30t-59 -67t-92.5 -84.5t-117.5 -66.5t-138 -30t-137 28.5t-119.5 69.5t-91 82t-60.5 70zM270 432q0 -68 47 -115t115 -47 q44 0 81 21.5t59 59t22 81.5q0 67 -47.5 114.5t-114.5 47.5t-114.5 -47.5t-47.5 -114.5z" />
111
+ <glyph unicode="&#x1F44D;" d="M0 18v504q0 8 5 13t13 5h108q8 0 13 -5t5 -13v-504q0 -8 -5 -13t-13 -5h-108q-8 0 -13 5t-5 13zM216 108v378q154 103 203 170t49 154q0 22 16 38t38 16q32 0 59 -40q31 -43 31 -104q0 -30 -8.5 -69t-17 -62.5t-9.5 -23.5q-3 -10 2.5 -17.5t14.5 -7.5h189 q34 0 57.5 -23.5t23.5 -57.5q0 -50 -44 -72q44 -24 44 -72q0 -52 -47 -74q11 -20 11 -43q0 -29 -17 -52.5t-44 -32.5q7 -14 7 -32q0 -34 -23.5 -57.5t-57.5 -23.5h-189q-54 0 -103 22z" />
112
+ <glyph unicode="&#x1F44E;" d="M0 405q0 48 44 72q-44 22 -44 72q0 52 47 74q-11 19 -11 43q0 29 17 52.5t43 32.5q-6 15 -6 32q0 34 23.5 57.5t57.5 23.5h189q54 0 103 -22l185 -86v-378q-154 -103 -203 -170t-49 -154q0 -22 -16 -38t-38 -16q-31 0 -60 39q-30 46 -30 105q0 30 9 69t17 62t9 24 q3 10 -2.5 17.5t-14.5 7.5h-189q-34 0 -57.5 23.5t-23.5 57.5zM720 342v504q0 8 5 13t13 5h108q8 0 13 -5t5 -13v-504q0 -8 -5 -13t-13 -5h-108q-8 0 -13 5t-5 13z" />
113
+ <glyph unicode="&#x1F464;" d="M0 18v36q0 50 33.5 84.5t81 54t95 37t81 45.5t33.5 67q-4 4 -11.5 12.5t-26 38t-33 62.5t-26 85.5t-11.5 107.5q0 89 63.5 152.5t152.5 63.5t152.5 -63.5t63.5 -152.5q0 -55 -11 -107t-27 -86.5t-32 -61t-27 -39.5l-11 -12q0 -39 33.5 -67t81 -45.5t95 -37t81 -54 t33.5 -84.5v-36q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13z" />
114
+ <glyph unicode="&#x1F467;" d="M0 18v36q0 50 33.5 84.5t81 54t95 37t81 45.5t33.5 67q-48 0 -88.5 18t-57.5 36l-16 18q2 1 5.5 5t13 20.5t16.5 40t13 68.5t6 100q0 89 63.5 152.5t152.5 63.5t152.5 -63.5t63.5 -152.5q0 -55 5.5 -99.5t13.5 -68.5t16 -40t13 -21l6 -5q-6 -8 -18 -20t-54 -32t-90 -20 q0 -39 33.5 -67t81 -45.5t95 -37t81 -54t33.5 -84.5v-36q0 -8 -5 -13t-13 -5h-828q-8 0 -13 5t-5 13z" />
115
+ <glyph unicode="&#x1F4AC;" d="M0 459q0 146 126.5 248.5t305.5 102.5t305.5 -102.5t126.5 -248.5t-126.5 -248.5t-305.5 -102.5q-35 0 -73 5q-113 -113 -233 -113q-11 0 -16.5 11t3.5 20q6 6 15.5 18t27 49t22.5 77q-83 49 -130.5 123.5t-47.5 160.5z" />
116
+ <glyph unicode="&#x1F4B3;" d="M0 162v324h864v-324q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM0 648v54q0 22 16 38t38 16h756q22 0 38 -16t16 -38v-54h-864z" />
117
+ <glyph unicode="&#x1F4BB;" d="M0 216v594q0 22 16 38t38 16h756q22 0 38 -16t16 -38v-594q0 -22 -16 -38t-38 -16h-270v-52l151 -76q11 -3 11 -16q0 -8 -5 -13t-13 -5h-504q-14 0 -17.5 13.5t9.5 20.5l152 76v52h-270q-22 0 -38 16t-16 38zM108 270h648v486h-648v-486z" />
118
+ <glyph unicode="&#x1F4BC;" d="M0 162v432q0 22 16 38t38 16h216v90q0 41 43 57q38 15 119 15q82 0 119 -15q43 -16 43 -57v-90h216q22 0 38 -16t16 -38v-432q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM360 648h144v72h-144v-72z" />
119
+ <glyph unicode="&#x1F4C1;" d="M0 162v540q0 22 16 38t38 16h312q12 0 23.5 -8.5t15.5 -20.5l27 -79h378q22 0 38 -16t16 -38v-432q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38z" />
120
+ <glyph unicode="&#x1F4C4;" d="M108 54v756q0 22 16 38t38 16h306q6 0 13 -5l270 -270q5 -7 5 -13v-522q0 -22 -16 -38t-38 -16h-540q-22 0 -38 16t-16 38z" />
121
+ <glyph unicode="&#x1F4C6;" d="M54 54v486h756v-486q0 -22 -16 -38t-38 -16h-648q-22 0 -38 16t-16 38zM54 612v90q0 22 16 38t38 16h54v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h324v90q0 8 5 13t13 5h72q8 0 13 -5t5 -13v-90h54q22 0 38 -16t16 -38v-90h-756z" />
122
+ <glyph unicode="&#x1F4CA;" d="M0 18v396q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-396q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM324 18v828q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-828q0 -8 -5 -13t-13 -5h-180q-8 0 -13 5t-5 13zM648 18v612q0 8 5 13t13 5h180q8 0 13 -5t5 -13v-612q0 -8 -5 -13t-13 -5 h-180q-8 0 -13 5t-5 13z" />
123
+ <glyph unicode="&#x1F4CD;" d="M180 612q0 104 74 178t178 74t178 -74t74 -178t-74 -178t-178 -74t-178 74t-74 178zM378 36q0 -4 1.5 -10t15 -16t37.5 -10t37.5 9t14.5 18l2 9v256q-24 -4 -54 -4t-54 4v-256zM414 675q0 -34 23.5 -57.5t57.5 -23.5t57.5 23.5t23.5 57.5t-23.5 57.5t-57.5 23.5 t-57.5 -23.5t-23.5 -57.5z" />
124
+ <glyph unicode="&#x1F4CE;" d="M0 234q0 97 68 165l396 396q69 69 166 69t165 -69q69 -68 69 -165t-69 -166l-39 -39q-3 61 -40 113l3 3q37 37 37 89t-37 89t-89 37t-89 -37l-396 -396q-37 -37 -37 -89t37 -89t89 -37t89 37l243 242q10 11 10 26t-10 25t-25 10t-26 -10l-153 -152q-16 -16 -38 -16 t-38 16t-16 38t16 38l152 153q43 42 102.5 42t101.5 -42q42 -43 42 -102.5t-42 -101.5l-243 -243q-68 -68 -165 -68t-166 68q-68 69 -68 166z" />
125
+ <glyph unicode="&#x1F4D3;" d="M54 126v72q0 8 5 13t13 5h90v162h-90q-8 0 -13 5t-5 13v72q0 8 5 13t13 5h90v162h-90q-8 0 -13 5t-5 13v72q0 8 5 13t13 5h90v54q0 22 16 38t38 16h540q22 0 38 -16t16 -38v-756q0 -22 -16 -38t-38 -16h-540q-22 0 -38 16t-16 38v54h-90q-8 0 -13 5t-5 13zM324 486h324 v162h-324v-162z" />
126
+ <glyph unicode="&#x1F4DD;" d="M0 108q0 -44 32 -76t76 -32h486q44 0 76 32t32 76v360l-108 -108v-252h-486v540h306l108 108h-414q-44 0 -76 -32t-32 -76v-540zM178 201q-3 -8 3 -16t14 -8q1 0 3 0.5t3 0.5l1 1l173 72q2 0 5 3l376 376l-126 126l-376 -376q-3 -3 -3 -5l-72 -173zM684 810l49 49 q13 13 25 0l101 -101q13 -12 0 -25l-49 -49z" />
127
+ <glyph unicode="&#x1F4DE;" d="M1 225q-5 16 9 23l236 118q10 6 21 -3l115 -116q143 89 234 235l-115 115q-9 11 -3 21l118 236q7 14 23 9l214 -85q11 -6 11 -17q0 -4 -1 -7q-37 -295 -248 -505.5t-505 -247.5q-3 -1 -7 -1q-11 0 -17 11z" />
128
+ <glyph unicode="&#x1F4E5;" d="M0 54v270q0 5 1 8l72 486q2 20 17.5 33t35.5 13h612q20 0 35 -13t18 -33l72 -486q1 -3 1 -8v-270q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM109 324h176q12 0 17 -11l35 -86q5 -11 17 -11h156q12 0 17 11l35 86q5 11 17 11h176l-64 432h-518z" />
129
+ <glyph unicode="&#x1F4E6;" d="M0 54v540q0 10 3 17l72 216q5 16 19.5 26.5t31.5 10.5h612q17 0 31.5 -10.5t19.5 -26.5l72 -216q3 -7 3 -17v-540q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM111 594h642l-54 162h-534z" />
130
+ <glyph unicode="&#x1F4F1;" d="M162 54v756q0 22 16 38t38 16h432q22 0 38 -16t16 -38v-756q0 -22 -16 -38t-38 -16h-432q-22 0 -38 16t-16 38zM252 216h360v504h-360v-504zM378 108q0 -22 16 -38t38 -16t38 16t16 38t-16 38t-38 16t-38 -16t-16 -38z" />
131
+ <glyph unicode="&#x1F4F7;" d="M0 162v432q0 22 16 38t38 16h162l26 79q5 12 16 20.5t24 8.5h300q12 0 23.5 -8.5t15.5 -20.5l27 -79h162q22 0 38 -16t16 -38v-432q0 -22 -16 -38t-38 -16h-756q-22 0 -38 16t-16 38zM270 378q0 -68 47 -115t115 -47q67 0 114.5 47.5t47.5 114.5t-47.5 114.5t-114.5 47.5 t-114.5 -47.5t-47.5 -114.5z" />
132
+ <glyph unicode="&#x1F4F9;" d="M0 216v432q0 23 16 38.5t38 15.5h540q22 0 38 -15.5t16 -38.5v-137l185 186q9 9 20 3.5t11 -16.5v-504q0 -3 -1 -6.5t-3.5 -6t-6 -4t-7.5 -1.5q-6 0 -13 5l-185 186v-137q0 -22 -16 -38t-38 -16h-540q-22 0 -38 16t-16 38z" />
133
+ <glyph unicode="&#x1F500;" d="M0 162v108q0 8 5 13t13 5h99q27 0 43 22l249 332q59 78 157 78h100v90q0 11 11 16.5t20 -3.5l162 -162q13 -13 0 -26l-162 -162q-7 -5 -13 -5q-18 0 -18 18v90h-99q-27 0 -43 -22l-249 -332q-59 -78 -157 -78h-100q-8 0 -13 5t-5 13zM0 594v108q0 8 5 13t13 5h100 q98 0 157 -78l19 -27l-90 -120l-44 59q-16 22 -43 22h-99q-8 0 -13 5t-5 13zM389 249l90 120l45 -59q16 -22 43 -22h99v90q0 11 11 16.5t20 -3.5l162 -162q13 -13 0 -26l-162 -162q-7 -5 -13 -5q-18 0 -18 18v90h-100q-98 0 -157 78z" />
134
+ <glyph unicode="&#x1F501;" d="M0 432q0 119 84.5 203.5t203.5 84.5h198v90q0 11 11 16.5t20 -3.5l162 -162q5 -5 5 -13t-5 -13l-162 -162q-9 -9 -20 -3.5t-11 16.5v90h-198q-60 0 -102 -42.5t-42 -101.5q0 -50 31 -89q9 -12 -1 -24l-78 -77q-4 -5 -12 -5t-13 6q-71 82 -71 189zM180 216q0 8 5 13 l162 162q9 9 20 3.5t11 -16.5v-90h198q39 0 72 19t52.5 52.5t19.5 72.5q0 50 -31 89q-10 12 1 23l78 78q4 5 12 5t13 -6q71 -82 71 -189q0 -119 -84.5 -203.5t-203.5 -84.5h-198v-90q0 -11 -11 -16.5t-20 3.5l-162 162q-5 5 -5 13z" />
135
+ <glyph unicode="&#x1F508;" d="M216 288v288q0 8 5 13t13 5h136l193 193q9 9 20 3.5t11 -16.5v-684q0 -11 -11 -16.5t-20 3.5l-193 193h-136q-8 0 -13 5.5t-5 12.5z" />
136
+ <glyph unicode="&#x1F509;" d="M81 288v288q0 8 5.5 13t12.5 5h136l193 193q9 9 20 3.5t11 -16.5v-684q0 -11 -11 -16.5t-20 3.5l-193 193h-136q-7 0 -12.5 5.5t-5.5 12.5zM579 196q-12 14 0 26q87 87 87 210t-87 210q-13 12 0 25l51 51q12 12 25 0q78 -78 105.5 -182t0 -208t-105.5 -182q-13 -12 -25 0 z" />
137
+ <glyph unicode="&#x1F50A;" d="M-27 288v288q0 8 5.5 13t12.5 5h136l193 193q9 9 20 3.5t11 -16.5v-684q0 -11 -11 -16.5t-20 3.5l-193 193h-136q-7 0 -12.5 5.5t-5.5 12.5zM471 196q-12 14 0 26q87 87 87 210t-87 210q-13 12 0 25l51 51q12 12 25 0q78 -78 105.5 -182t0 -208t-105.5 -182 q-13 -12 -25 0zM611 56q-12 14 0 26q95 95 128.5 222.5t0 255t-128.5 222.5q-13 12 0 25l51 51q12 12 25 0q116 -116 157.5 -271t0 -310t-157.5 -271q-13 -12 -25 0z" />
138
+ <glyph unicode="&#x1F50B;" d="M0 270v324q0 22 16 38t38 16h648q22 0 38 -16t16 -38v-54h90q8 0 13 -5t5 -13v-180q0 -8 -5 -13t-13 -5h-90v-54q0 -22 -16 -38t-38 -16h-648q-22 0 -38 16t-16 38z" />
139
+ <glyph unicode="&#x1F50E;" d="M0 72q0 30 21 51l245 244q-50 78 -50 173q0 134 95 229t229 95t229 -95t95 -229t-95 -229t-229 -95q-95 0 -173 50l-244 -245q-21 -21 -51 -21t-51 21t-21 51zM324 540q0 -89 63.5 -152.5t152.5 -63.5t152.5 63.5t63.5 152.5t-63.5 152.5t-152.5 63.5t-152.5 -63.5 t-63.5 -152.5z" />
140
+ <glyph unicode="&#x1F511;" d="M0 18v136q0 8 5 13l335 335q-16 42 -16 92q0 112 79 191t191 79t191 -79t79 -191t-79 -191t-191 -79q-50 0 -92 16l-119 -119q-5 -5 -13 -5h-100v-90q0 -8 -5 -13t-13 -5h-90v-90q0 -8 -5 -13t-13 -5h-126q-8 0 -13 5t-5 13zM567 648q0 -34 23.5 -57.5t57.5 -23.5 t57.5 23.5t23.5 57.5t-23.5 57.5t-57.5 23.5t-57.5 -23.5t-23.5 -57.5z" />
141
+ <glyph unicode="&#x1F512;" d="M108 54v378q0 22 16 38t38 16h54v162q0 89 63.5 152.5t152.5 63.5t152.5 -63.5t63.5 -152.5v-162h54q22 0 38 -16t16 -38v-378q0 -22 -16 -38t-38 -16h-540q-22 0 -38 16t-16 38zM324 486h216v162q0 45 -31.5 76.5t-76.5 31.5t-76.5 -31.5t-31.5 -76.5v-162z" />
142
+ <glyph unicode="&#x1F513;" d="M0 54v378q0 22 16 38t38 16h378v162q0 89 63.5 152.5t152.5 63.5t152.5 -63.5t63.5 -152.5v-252q0 -8 -5 -13t-13 -5h-72q-8 0 -13 5t-5 13v252q0 45 -31.5 76.5t-76.5 31.5t-76.5 -31.5t-31.5 -76.5v-162h54q22 0 38 -16t16 -38v-378q0 -22 -16 -38t-38 -16h-540 q-22 0 -38 16t-16 38z" />
143
+ <glyph unicode="&#x1F514;" d="M1.5 173q-5.5 11 3.5 20l157 156v245q0 112 79 191t191 79t191 -79t79 -191v-245l157 -156q9 -9 3.5 -20t-16.5 -11h-828q-11 0 -16.5 11zM342 90h180q0 -38 -26 -64t-64 -26t-64 26t-26 64z" />
144
+ <glyph unicode="&#x1F515;" d="M0 811.5q0 21.5 15 37.5q15 15 36.5 15t37.5 -15l113 -114q37 59 97.5 94t132.5 35q112 0 191 -79t79 -191v-245l157 -156q9 -9 3.5 -20t-16.5 -11h-71l74 -73q15 -16 15 -37.5t-15 -36.5t-37 -15t-37 15l-760 760q-15 15 -15 36.5zM1.5 173q-5.5 11 3.5 20l157 156v173 l360 -360h-504q-11 0 -16.5 11zM342 90h180q0 -38 -26 -64t-64 -26t-64 26t-26 64z" />
145
+ <glyph unicode="&#x1F516;" d="M216 18v792q0 22 16 38t38 16h324q22 0 38 -16t16 -38v-792q0 -7 -5 -12.5t-13 -5.5q-6 0 -13 5l-185 185l-185 -185q-9 -9 -20 -3.5t-11 16.5z" />
146
+ <glyph unicode="&#x1F517;" d="M0 234q0 97 68 165l123 123q-6 -70 18 -135l-64 -64q-37 -37 -37 -89t37 -89t89 -37t89 37l134 134q37 37 37 89t-37 89q-16 16 -16 38.5t16 38.5t38.5 16t38.5 -16q68 -69 68 -166t-68 -165l-135 -135q-68 -68 -165 -68t-166 68q-68 69 -68 166zM262 496q0 97 68 165 l134 134q69 69 166 69t165 -69q69 -68 69 -165t-69 -166l-122 -122q6 69 -18 134l64 65q37 37 37 89t-37 89t-89 37t-89 -37l-135 -134q-37 -37 -37 -89t37 -90q16 -16 16 -38t-16 -38t-38 -16t-38 16q-68 69 -68 166z" />
147
+ <glyph unicode="&#x1F6AB;" d="M0 432q0 179 126.5 305.5t305.5 126.5t305.5 -126.5t126.5 -305.5t-126.5 -305.5t-305.5 -126.5t-305.5 126.5t-126.5 305.5zM144 432q0 -86 45 -154l397 397q-68 45 -154 45q-119 0 -203.5 -84.5t-84.5 -203.5zM278 189q68 -45 154 -45q119 0 203.5 84.5t84.5 203.5 q0 86 -45 154z" />
148
+ <glyph d="M0 0v864h864v-864h-864zM108 184l248 248l-248 248v-496zM184 108h496l-248 248zM184 756l248 -248l248 248h-496zM508 432l248 -248v496z" />
149
+ <glyph unicode="&#xd;" d="M0 0v864h864v-864h-864zM108 184l248 248l-248 248v-496zM184 108h496l-248 248zM184 756l248 -248l248 248h-496zM508 432l248 -248v496z" />
150
+ <glyph unicode=" " horiz-adv-x="216" />
151
+ <glyph unicode="&#x09;" horiz-adv-x="216" />
152
+ <glyph unicode="&#xa0;" horiz-adv-x="216" />
153
+ <glyph unicode="A" horiz-adv-x="668" d="M14 0l269 719h112l258 -719h-106l-70 209h-289l-75 -209h-99zM219 295h221l-106 318z" />
154
+ <glyph unicode="B" horiz-adv-x="668" d="M72 0v719h324q80 0 136 -48t58 -134q0 -49 -24.5 -91.5t-69.5 -58.5q57 -20 93 -65t36 -106q0 -97 -65 -156.5t-158 -59.5h-330zM170 82h225q65 0 98 36.5t36 84.5q0 65 -35 97.5t-131 33.5h-193v-252zM170 414h189q68 0 100.5 29t34.5 73q0 59 -30.5 88.5t-106.5 30.5 h-187v-221z" />
155
+ <glyph unicode="C" horiz-adv-x="723" d="M42 365q0 96 35.5 178t112 137t181.5 58q43 0 87 -10.5t90.5 -34.5t81 -73.5t44.5 -117.5h-94q-15 71 -68 109.5t-127 38.5q-123 0 -181.5 -79.5t-60.5 -205.5q1 -56 14.5 -107.5t39 -95t69 -69.5t99.5 -26q94 0 150.5 52t70.5 145h96q-14 -122 -96 -203t-211 -81 q-90 0 -157.5 35.5t-104 94t-54 122.5t-17.5 133z" />
156
+ <glyph unicode="D" horiz-adv-x="723" d="M80 0v719h301q48 0 96 -18.5t92 -55.5t73 -104.5t31 -155.5q0 -103 -32.5 -188.5t-99 -140.5t-156.5 -56h-305zM178 82h201q88 0 141 84t53 211q0 70 -19 126t-67 94t-120 38h-189v-553z" />
157
+ <glyph unicode="E" horiz-adv-x="668" d="M84 0v719h525v-88h-427v-219h394v-86h-394v-240h433v-86h-531z" />
158
+ <glyph unicode="F" horiz-adv-x="611" d="M84 0v719h498v-88h-400v-219h353v-86h-353v-326h-98z" />
159
+ <glyph unicode="G" horiz-adv-x="777" d="M47 365q0 69 21.5 133t62 117t107 85.5t149.5 33.5q115 0 202 -62t102 -172h-93q-38 150 -215 150q-103 0 -170 -78.5t-67 -212.5q0 -143 65.5 -220.5t171.5 -77.5q85 0 150 52q45 36 61.5 77t18.5 110h-224v82h314v-382h-62l-24 96q-33 -48 -96 -79t-140 -33 q-171 0 -252.5 104t-81.5 277z" />
160
+ <glyph unicode="H" horiz-adv-x="723" d="M76 0v719h98v-299h375v299h98v-719h-98v334h-375v-334h-98z" />
161
+ <glyph unicode="I" horiz-adv-x="277" d="M90 0v719h98v-719h-98z" />
162
+ <glyph unicode="J" horiz-adv-x="500" d="M16 160v70h91v-50q0 -117 108 -117q59 0 86 30t29 95v531h98v-526q0 -110 -57 -160.5t-150 -52.5q-56 0 -98 17t-64 44.5t-32.5 57t-10.5 61.5z" />
163
+ <glyph unicode="K" horiz-adv-x="668" d="M74 0v719h98v-350l349 350h133l-299 -291l307 -428h-125l-252 359l-113 -107v-252h-98z" />
164
+ <glyph unicode="L" horiz-adv-x="557" d="M74 0v719h98v-633h365v-86h-463z" />
165
+ <glyph unicode="M" horiz-adv-x="832" d="M72 0v719h139l207 -610l205 610h139v-719h-96v604l-201 -604h-96l-205 602v-602h-92z" />
166
+ <glyph unicode="N" horiz-adv-x="723" d="M76 0v719h115l362 -582v582h94v-719h-110l-367 580v-580h-94z" />
167
+ <glyph unicode="O" horiz-adv-x="777" d="M41 359q0 103 36.5 185t117.5 135t196 55q76 0 137 -24t99.5 -62t64.5 -88.5t36.5 -100t10.5 -100.5q0 -40 -5.5 -80t-27 -95t-57 -96.5t-102.5 -71.5t-156 -31q-87 0 -156 31.5t-110.5 85t-62.5 119t-21 138.5zM140 359q0 -129 67.5 -207.5t183.5 -80.5q117 0 183 79 t66 209q0 129 -66 208t-183 81q-112 0 -181.5 -78.5t-69.5 -210.5z" />
168
+ <glyph unicode="P" horiz-adv-x="668" d="M84 0v719h324q91 0 151 -53t62 -150q0 -55 -19.5 -100.5t-69 -78.5t-124.5 -34h-226v-303h-98zM182 385h193q144 0 146 131q0 119 -142 119h-197v-250z" />
169
+ <glyph unicode="Q" horiz-adv-x="777" d="M39 359q0 103 36.5 185t117.5 135t196 55q76 0 137.5 -24t100 -62t64.5 -88.5t36.5 -100.5t10.5 -100q0 -172 -104 -276l97 -76l-47 -59l-110 86q-74 -49 -185 -49q-87 0 -156 31.5t-110.5 85t-62.5 119t-21 138.5zM139 359q0 -129 67 -207.5t183 -80.5q60 0 105 24 l-75 56l50 61l92 -70q77 80 77 217q0 129 -66 208t-183 81q-112 0 -181 -78.5t-69 -210.5z" />
170
+ <glyph unicode="R" horiz-adv-x="723" d="M75 0v719h344q92 0 158 -50t68 -148q0 -113 -105 -167q80 -24 89 -117q3 -27 6 -76t7 -80t12 -52q8 -19 19 -29h-110q-12 28 -18 72.5t-7.5 91t-2.5 55.5q-13 86 -118 88h-244v-307h-98zM173 391h246q55 0 91 33.5t36 87.5t-28.5 88t-90.5 35h-254v-244z" />
171
+ <glyph unicode="S" horiz-adv-x="668" d="M49 237h90q0 -62 31 -101t72.5 -52.5t95.5 -15.5q79 0 133 28.5t54 92.5q0 63 -44.5 86t-193.5 55q-14 3 -21 5q-41 9 -72 21t-60 32.5t-45 52t-17 73.5q0 94 62 157t186 63q75 0 130 -19.5t82.5 -44.5t43.5 -60t19.5 -56t4.5 -43v-5h-90q0 73 -52.5 108t-127.5 38 q-44 0 -78 -9.5t-60 -39.5t-26 -78q0 -67 86 -87l205 -47q162 -37 162 -189q0 -106 -77.5 -161.5t-203.5 -55.5q-286 0 -289 252z" />
172
+ <glyph unicode="T" horiz-adv-x="611" d="M14 631v88h584v-88h-244v-631h-98v631h-242z" />
173
+ <glyph unicode="U" horiz-adv-x="723" d="M78 232v487h98v-469q0 -83 46.5 -131t132.5 -48q87 0 138.5 46t53.5 131v471h98v-483q0 -107 -73 -177.5t-217 -72.5q-137 0 -206 63.5t-71 182.5z" />
174
+ <glyph unicode="V" horiz-adv-x="668" d="M20 719h113l203 -614l212 614h98l-261 -719h-104z" />
175
+ <glyph unicode="W" horiz-adv-x="943" d="M16 719h105l133 -586l164 586h105l165 -586l132 586h108l-190 -719h-101l-164 596l-168 -596h-102z" />
176
+ <glyph unicode="X" horiz-adv-x="668" d="M18 0l257 369l-242 350h123l182 -276l183 276h116l-241 -352l252 -367h-121l-193 295l-199 -295h-117z" />
177
+ <glyph unicode="Y" horiz-adv-x="668" d="M15 719h117l205 -346l207 346h108l-271 -432v-287h-96v287z" />
178
+ <glyph unicode="Z" horiz-adv-x="611" d="M23 0v80l440 553h-408v86h533v-84l-443 -547h443v-88h-565z" />
179
+ <glyph unicode="a" horiz-adv-x="557" d="M34 131q0 33 8.5 59t27 43.5t36.5 29.5t49 20.5t50.5 12.5t55 9.5t50.5 8.5q74 14 74 64q0 41 -30.5 65t-90.5 24q-54 0 -86.5 -25.5t-33.5 -78.5h-82q0 72 54 122t159 52q81 0 139.5 -39.5t58.5 -114.5v-281q0 -30 11 -40q5 -5 16 -4q12 0 31 6v-64q-23 -10 -58 -10 q-83 0 -84 78q-74 -81 -188 -84q-74 0 -120.5 43t-46.5 104zM126 133q0 -38 25 -58t68 -20q55 0 109.5 33.5t54.5 85.5v94q-19 -12 -66 -22t-87 -17.5t-72 -31.5t-32 -64z" />
180
+ <glyph unicode="b" horiz-adv-x="557" d="M56 0v719h90v-262q58 77 160 80q96 0 157.5 -72.5t65.5 -187.5v-11q1 -35 -5 -70q-6 -40 -23.5 -79t-43.5 -68t-67 -47t-93 -18q-107 0 -154 80l-7 -64h-80zM143 263q0 -198 152 -202q68 0 105 55t37 146q0 96 -39 146.5t-108 50.5q-52 0 -87 -33t-47.5 -75t-12.5 -88z " />
181
+ <glyph unicode="c" horiz-adv-x="500" d="M29 261q0 134 67.5 205.5t167.5 71.5q83 0 145.5 -45t72.5 -145h-84q-6 52 -41.5 81t-89.5 29q-64 0 -104.5 -46.5t-40.5 -150.5q0 -82 41 -139.5t104 -57.5q109 0 129 120h86q-12 -104 -76 -152t-146 -48q-98 0 -164.5 77t-66.5 200z" />
182
+ <glyph unicode="d" horiz-adv-x="557" d="M31 277q4 115 65.5 187.5t157.5 72.5q102 -3 160 -80v262h90v-719h-80v74q-23 -40 -67.5 -65t-93.5 -25q-52 0 -93 18t-67 47t-43 68q-18 39 -24 79q-6 35 -5 70v11zM123 262q0 -91 37 -146t105 -55q152 4 152 202q0 46 -12.5 88t-47.5 75t-87 33q-69 0 -108 -50.5 t-39 -146.5z" />
183
+ <glyph unicode="e" horiz-adv-x="557" d="M1 246q0 132 68 212.5t178 80.5q117 -1 179 -85q59 -79 59 -206v-16h-391q0 -74 44.5 -120.5t110.5 -46.5q63 0 101 33.5t38 65.5h90q-14 -84 -78 -131.5t-156 -47.5q-110 0 -175.5 75t-67.5 186zM95 303h298q0 70 -42.5 114t-102.5 44q-62 0 -106.5 -46.5t-46.5 -111.5z " />
184
+ <glyph unicode="f" horiz-adv-x="277" d="M14 443v80h72v97q0 48 36 80t93 32q21 0 47 -6v-73q-23 3 -37 3q-27 0 -38 -12.5t-11 -41.5v-79h86v-80h-86v-443h-90v443h-72z" />
185
+ <glyph unicode="g" horiz-adv-x="597" d="M48 248q0 135 68 212t177 77q47 0 86.5 -20.5t60.5 -53.5v64h88v-504q0 -127 -62.5 -189.5t-173.5 -62.5q-24 0 -47 3t-52.5 13.5t-51.5 27.5t-37.5 48.5t-16.5 72.5h88q0 -40 33 -62t78 -22q72 0 113 40.5t41 123.5v31q-58 -62 -160 -62q-87 0 -158 72t-74 191zM142 268 q0 -100 45 -152.5t106 -52.5q64 0 105 52.5t42 144.5q0 88 -40 138t-111 50q-58 0 -102.5 -47t-44.5 -133z" />
186
+ <glyph unicode="h" horiz-adv-x="557" d="M62 0v719h90v-266q27 42 71.5 62.5t91.5 22.5q34 0 63 -9t56 -29t42.5 -59t15.5 -93v-348h-90v342q0 116 -103 116q-62 0 -104.5 -43.5t-42.5 -129.5v-285h-90z" />
187
+ <glyph unicode="i" horiz-adv-x="223" d="M64 0v523h90v-523h-90zM64 617v100h90v-100h-90z" />
188
+ <glyph unicode="j" horiz-adv-x="310" d="M67 -129q27 -5 40 -5q25 0 35.5 14t10.5 50v593h90v-613q0 -52 -34 -85.5t-97 -33.5q-24 0 -45 4v76zM153 617v102h90v-102h-90z" />
189
+ <glyph unicode="k" horiz-adv-x="500" d="M62 0v719h90v-418l223 222h113l-208 -201l220 -322h-112l-172 256l-64 -62v-194h-90z" />
190
+ <glyph unicode="l" horiz-adv-x="223" d="M65 0v719h90v-719h-90z" />
191
+ <glyph unicode="m" horiz-adv-x="832" d="M63 0v523h83v-74q57 88 161 88q96 0 140 -84q23 35 64 59.5t96 24.5q26 0 52 -7.5t52.5 -25.5t43 -55t16.5 -88v-361h-90v338q0 121 -97 121q-53 0 -86.5 -38t-35.5 -103v-318h-90v361q0 41 -20.5 69.5t-63.5 28.5q-55 0 -94 -41.5t-41 -132.5v-285h-90z" />
192
+ <glyph unicode="n" horiz-adv-x="557" d="M62 0v523h86v-76q17 29 62.5 59.5t104.5 30.5q80 0 128.5 -47t48.5 -142v-348h-90v327q0 132 -103 132q-63 0 -105 -43.5t-42 -117.5v-298h-90z" />
193
+ <glyph unicode="o" horiz-adv-x="557" d="M36 262q0 116 65.5 196t178.5 80q112 0 178.5 -80t66.5 -196q0 -114 -66.5 -194.5t-178.5 -82.5q-112 0 -178 81t-66 196zM128 262q0 -85 37.5 -142.5t114.5 -57.5t113.5 57t39.5 143v6q0 42 -14 82q-15 43 -51 76t-88 34q-75 0 -113.5 -62t-38.5 -136z" />
194
+ <glyph unicode="p" horiz-adv-x="557" d="M57 -207v730h80v-74q23 40 67.5 65t93.5 25q52 0 93 -18t67 -47t43 -68t23 -79q6 -35 6 -70v-11q-4 -115 -65.5 -187.5t-157.5 -72.5q-102 3 -160 80v-273h-90zM144 260q0 -46 12.5 -88t47.5 -75t87 -33q69 0 108 50.5t39 146.5q0 91 -37 146t-105 55q-152 -4 -152 -202z " />
195
+ <glyph unicode="q" horiz-adv-x="557" d="M22 246q0 42 6.5 81t23.5 78.5t42.5 68.5t66.5 47t93 18q106 0 153 -80l8 64h80v-730h-90v273q-58 -77 -160 -80q-98 0 -159.5 70t-63.5 190zM114 261q0 -96 39 -146.5t108 -50.5q52 0 87 33t47.5 75t12.5 88q0 198 -152 202q-68 0 -105 -55t-37 -146z" />
196
+ <glyph unicode="r" horiz-adv-x="332" d="M38 0v523h86v-89q48 101 172 101v-92q-75 0 -121.5 -34.5t-46.5 -95.5v-313h-90z" />
197
+ <glyph unicode="s" horiz-adv-x="500" d="M35 168h86q0 -107 139 -107q49 0 84 21t35 61q0 21 -11 33.5t-49.5 27t-120.5 33.5q-29 7 -49.5 14.5t-45 22.5t-37.5 39.5t-13 57.5q0 79 55.5 123t142.5 44q48 0 85.5 -12.5t58 -30.5t33.5 -42.5t17.5 -42.5t5.5 -37h-86q0 88 -123 88q-13 0 -25.5 -2t-32.5 -8 t-33 -22.5t-14 -41.5q0 -32 30 -46.5t125 -37.5q15 -3 22 -5q71 -19 111 -49.5t42 -90.5q0 -75 -55.5 -124.5t-151.5 -49.5q-98 0 -158.5 44t-66.5 140z" />
198
+ <glyph unicode="t" horiz-adv-x="277" d="M18 443v80h68v147h90v-147h86v-80h-86v-330q0 -29 11 -41.5t38 -12.5q14 0 37 3v-73q-25 -6 -47 -6q-57 0 -93 32t-36 80v348h-68z" />
199
+ <glyph unicode="u" horiz-adv-x="557" d="M57 175v348h90v-327q0 -132 103 -132q63 0 105 43.5t42 117.5v298h90v-523h-86v76q-17 -29 -62.5 -59.5t-104.5 -30.5q-80 0 -128.5 47t-48.5 142z" />
200
+ <glyph unicode="v" horiz-adv-x="500" d="M-4 523h101l143 -429l146 429h94l-199 -523h-94z" />
201
+ <glyph unicode="w" horiz-adv-x="723" d="M14 523h95l100 -412l107 412h97l103 -412l105 412h88l-152 -523h-92l-104 404l-105 -404h-92z" />
202
+ <glyph unicode="x" horiz-adv-x="500" d="M10 0l185 270l-175 253h113l121 -185l121 185h107l-177 -255l185 -268h-113l-129 197l-127 -197h-111z" />
203
+ <glyph unicode="y" horiz-adv-x="500" d="M12 523h99l143 -427l141 427h95q-81 -228 -153.5 -419.5t-88.5 -225.5q-32 -64 -72 -82q-22 -10 -54 -10q-27 0 -61 7v80q27 -10 49 -10q42 0 62 38l35 83z" />
204
+ <glyph unicode="z" horiz-adv-x="500" d="M31 0v68l315 381h-291v74h404v-72l-313 -379h323v-72h-438z" />
205
+ <glyph unicode="&#xe000;" horiz-adv-x="525" d="M0 0v525h525v-525h-525z" />
206
+ </font>
207
+ </defs></svg>
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="82.883px" xml:space="preserve" height="50.601px" viewBox="0 0 82.883 50.601" baseProfile="tiny" version="1.2" y="0px" x="0px" overflow="inherit" xmlns:xlink="http://www.w3.org/1999/xlink">
4
+ <path d="m45.359 39.473c-0.865 0.604-1.38 2.212-1.16 3.451 0.131 0.745 0.44 0.908 0.715 0.86 0.364-0.065 0.67-0.478 0.818-1.208-0.204-0.449-0.326-0.876-0.4-1.287-0.088-0.516-0.123-1.335 0.027-1.816m-21.561-1.969c0.545-1.349 0.666-2.674 0.524-3.479-0.177-1.008-0.81-1.632-2.421-1.632 0.023 2.392-0.051 4.128-0.17 5.476 0.245-0.087 0.562-0.168 0.957-0.238 0.341-0.063 0.737-0.109 1.11-0.127m-2.264 2.054c-0.122 1.187-0.417 2.351-0.949 3.483 1.923 0.305 3.839 0.556 4.713 0.402 0.573-0.098 0.969-0.553 0.862-1.145-0.209-1.196-1.391-1.983-4.626-2.74m9.792-6.994c1.247-0.455 1.396-1.216 1.275-1.903-0.084-0.483-0.317-0.727-0.592-0.679-0.324 0.057-0.807 0.949-0.683 2.582m9.668 0.453l-0.107-4.907c-1.018 0.938-1.785 3.038-1.471 4.806 0.148 0.85 0.439 0.893 0.76 0.836 0.32-0.059 0.603-0.343 0.818-0.735m4.498-17.176c1.297-0.475 1.452-1.267 1.329-1.985-0.091-0.502-0.331-0.757-0.618-0.704-0.338 0.057-0.839 0.985-0.711 2.689m34.262 15.673c-0.76 6.558-5.146 11.996-8.709 13.787-3.566 1.779-7.428 0.987-9.48-1.857-2.051-2.843-0.281-5.35 1.203-6.42 1.484-1.071 4.214-1.932 5.156-4.295 1.109-2.778-0.354-4.462-1.008-6.346-0.637-1.845 0.301-4.398 2.715-5.417 2.418-1.018 4.604-0.65 6.604 0.861 0 0 4.273 3.13 3.519 9.687m-8.84-19.289c0.244 1.412-2.662 6.338-5.412 6.825-1.67 0.293-2.983-0.289-3.504-2.036-1.103 1.547-2.606 3.013-3.787 3.224-1.41 0.246-2.004-0.289-2.232-1.605-0.279-1.581 0.514-4.211 0.421-4.739-0.03-0.191-0.144-0.269-0.336-0.234-0.214 0.037-0.94 0.535-1.647 1.992-0.01 1.899 0.035 3.001 0.254 4.643-0.198 0.282-0.354 0.384-0.903 0.479-1.187 0.209-2.261-0.622-2.687-1.805-1.197 1.525-2.91 2.938-4.565 3.231-2.347 0.415-3.681-0.855-4.136-3.44-0.637-3.613 1.657-7.818 3.979-8.226 1.65-0.292 2.701 0.338 2.997 2.014 0.351 2.009-0.545 3.771-3.692 5.091 0.191 1.075 0.512 1.638 1.442 1.473 1.313-0.23 2.778-1.422 3.819-3.091 0.023-0.208 0.049-0.417 0.092-0.634-0.273-0.421-0.416-0.963-0.502-1.442-0.249-1.41 1.436-4.299 2.921-4.56 0.813-0.145 1.079 0.106 1.208 0.823 0.107 0.599 0.088 2.328-0.35 3.615 1.215-3.324 2.672-4.692 3.729-4.877 1.1-0.195 1.775 0.428 1.941 1.359 0.111 0.645 0.07 1.518-0.23 2.755-0.245 1.128-0.71 2.962-0.602 3.561 0.043 0.263 0.18 0.339 0.394 0.3 0.396-0.068 1.347-1.096 2.289-2.797 0.044-0.794 0.128-1.8 0.278-3.082-0.488 0.037-0.9 0.06-0.996-0.466-0.129-0.742 0.277-1.504 1.255-1.702-0.063-0.508-0.106-0.894-0.171-1.795-0.154-2.146 0.874-3.881 2.499-4.167 1.101-0.194 1.672 0.1 1.854 1.128 0.131 0.741-0.06 1.366-0.875 4.128 0.736-0.155 1.729-0.405 2.029-0.53 0.322 0.162 0.564 0.564 0.631 0.924 0.159 0.909-0.316 1.707-1.107 1.849-0.549 0.096-1.059 0.163-1.772 0.163-0.183 2.75-0.14 4.119-0.075 4.48 0.102 0.573 0.295 0.812 0.795 0.722 0.984-0.172 2.432-1.612 3.655-4.196 0.452-0.081 1.013 0.166 1.099 0.645m-26.852 14.023c0.054 0.299 0.086 0.886 0.017 1.56-0.293 3.034-0.339 4.532-0.232 5.13 0.08 0.461 0.185 0.513 0.369 0.479 0.359-0.062 1.084-0.748 1.912-2.172 0.027-0.263 0.067-0.532 0.119-0.812-0.257-0.402-0.401-0.925-0.482-1.383-0.24-1.356 1.382-4.125 2.806-4.375 0.779-0.139 1.035 0.101 1.159 0.789 0.098 0.573 0.085 2.233-0.338 3.466 1.165-3.187 2.57-4.499 3.58-4.678 1.054-0.186 1.703 0.412 1.863 1.305 0.107 0.62 0.066 1.457-0.221 2.644-0.234 1.084-0.682 2.842-0.58 3.418 0.043 0.251 0.174 0.324 0.379 0.288 0.264-0.049 0.78-0.534 1.373-1.369-0.127-1.334-0.005-3.018 0.951-3.186 0.803-0.141 1.628 0.778 1.73 1.354 0.086 0.48-0.062 0.861-0.373 1.366 0.361 0.979 1.263 1.528 1.789 1.436 0.229-0.041 0.459-0.22 0.39-0.613-0.209-1.171-2.026-3.713-2.28-5.136-0.337-1.929 0.987-3.536 3.076-3.906 1.333-0.234 2.217 0.203 2.408 1.304 0.086 0.482-0.036 1.002-0.264 1.324-0.469-0.104-0.896-0.124-1.264-0.059-0.48 0.084-0.711 0.266-0.639 0.68 0.182 1.033 1.828 2.707 2.125 4.385 0.488 2.778-1.686 4.273-3.756 4.641-1.367 0.241-2.635-0.276-3.334-1.551-0.995 1.252-2.21 2.337-3.193 2.512-1.357 0.236-1.917-0.279-2.142-1.541-0.269-1.516 0.495-4.041 0.405-4.547-0.033-0.183-0.14-0.258-0.326-0.229-0.205 0.037-0.902 0.518-1.582 1.912-0.006 1.825 0.039 2.884 0.244 4.456-0.189 0.271-0.338 0.37-0.865 0.463-1.125 0.197-2.149-0.583-2.566-1.698-0.979 1.359-2.226 2.59-3.079 2.738-1.009 0.18-1.725-0.121-1.984-1.59-0.042-0.252-0.072-0.555-0.087-0.909-0.366 2.222-1.323 2.979-2.127 3.119-1.017 0.181-1.936-0.336-2.471-1.557-1.14 1.412-2.728 2.688-4.264 2.962-2.249 0.396-3.531-0.824-3.969-3.303-0.609-3.466 1.589-7.5 3.816-7.893 1.583-0.28 2.59 0.324 2.874 1.93 0.338 1.931-0.521 3.62-3.541 4.887 0.181 1.035 0.49 1.57 1.385 1.413 1.093-0.192 2.291-1.077 3.242-2.353-0.017-3.148 1.953-6.445 3.996-6.807 0.323-0.058 0.491-0.039 0.627 0.054l-0.168-1.343c0.149-0.238 0.432-0.384 0.754-0.439 1.56-0.276 2.595 0.629 2.738 1.434m-7.214-2.345c-1.475 0.26-2.678-0.289-3.369-1.768-0.123 0.169-0.253 0.342-0.382 0.505-0.95 1.204-2.081 2.192-3.086 2.371-0.982 0.173-1.634-0.036-1.853-1.277-0.061-0.335-0.082-0.751-0.077-1.27-0.766 2.379-2.048 3.643-3.126 3.831-1.366 0.241-1.855-0.465-2.114-1.814-1.011 1.329-2.305 2.496-3.571 2.722-1.844 0.322-3.256-0.416-3.647-2.616-0.12-0.695-0.138-2.196 0.235-5.396-0.488 0.037-0.902 0.061-0.996-0.465-0.13-0.741 0.278-1.505 1.255-1.703-0.063-0.506-0.108-0.891-0.168-1.795-0.157-2.143 0.869-3.879 2.498-4.166 1.099-0.193 1.669 0.1 1.851 1.13 0.131 0.741-0.054 1.365-0.876 4.126 0.736-0.154 1.73-0.402 2.03-0.528 0.322 0.163 0.567 0.564 0.629 0.923 0.161 0.91-0.314 1.709-1.105 1.849-0.547 0.097-1.055 0.161-1.771 0.163-0.182 2.748-0.136 4.121-0.075 4.48 0.102 0.574 0.292 0.811 0.797 0.723 0.856-0.152 2.075-1.272 3.183-3.285 0.008-0.032 0.013-0.061 0.022-0.093-0.352-0.456-0.493-0.949-0.575-1.427-0.263-1.484 1.562-4.57 3.237-4.866 0.742-0.131 1.191 0.037 1.317 0.755 0.136 0.768-0.235 2.312-1.104 4.514-0.087 0.903-0.103 1.646-0.037 2.028 0.067 0.383 0.254 0.598 0.59 0.539 0.407-0.072 1.069-0.781 1.461-1.368 0.356-2.729 0.396-4.462 0.153-6.543 0.184-0.352 0.566-0.566 0.924-0.629 1.34-0.237 2.491 0.546 2.666 1.528 0.074 0.431 0.063 0.926-0.13 1.946-0.259 1.451-0.872 3.854-0.793 4.311 0.058 0.312 0.212 0.355 0.405 0.322 0.378-0.067 0.966-0.644 1.67-1.793-0.231-3.304 1.882-6.776 3.671-7.092 0.743-0.132 1.172 0.211 1.282 0.833 0.016 0.095 0.035 0.191 0.027 0.292-1.549 1.435-1.868 4.104-1.568 5.804 0.143 0.812 0.424 1.012 0.906 0.927 1.003-0.178 1.805-4.167 1.12-8.046-0.49-2.774-2.245-3.92-4.522-3.668-0.246-0.154-0.397-0.448-0.448-0.733-0.2-1.126 0.555-2.442 2.685-2.817 2.706-0.479 4.895 1.457 5.534 5.067 1.31 7.441-1.719 12.935-4.755 13.469m-27.517 8.372c-3.685 0.651-5.934-1.197-6.394-3.827-0.31-1.749 0.264-3.947 1.939-4.241 0.404-0.073 0.788-0.016 1.045 0.209l0.079 0.453c0.574 3.257 2.313 4.431 3.916 4.146 0.909-0.159 1.48-1.123 1.266-2.344-0.142-0.789-0.397-1.409-3.122-3.841-1.554-1.404-2.198-2.672-2.459-4.157-0.466-2.653 1.089-5.863 4.101-6.398 2.585-0.454 3.876 0.851 4.13 2.284 0.163 0.933-0.203 1.787-0.685 2.143-1.452-0.826-2.422-1.153-3.308-0.994-0.527 0.094-0.876 0.623-0.757 1.315 0.137 0.768 0.708 1.629 2.436 3.323 2.513 2.491 3.027 3.44 3.275 4.851 0.478 2.701-1.443 6.371-5.462 7.078m11.289-3.396c4.503-0.794 6.71 0.712 7.172 3.328 0.259 1.472-0.417 3.553-1.862 5.561 2.484 0.794 3.312 2.4 3.491 3.408 0.431 2.437-0.867 4.487-4.197 5.076-1.607 0.282-3.108 0.096-5.644-0.993-0.829 0.949-1.254 1.355-1.806 1.452-0.572 0.101-1.651-0.631-1.902-2.057-0.152-0.87 0.61-1.241 2.371-1.721 0.722-2.639 1.109-6.896 1.023-10.052-1.952 0.606-3.791 1.592-4.343 3.44-0.124 0.092-0.322 0.176-0.506 0.208-0.62 0.107-1.083-0.354-1.226-1.182-0.455-2.569 2.494-5.598 7.429-6.468m12.554 17.425c-0.129-0.743 0.55-1.394 1.384-1.537 0.697-0.123 1.109 0.085 1.175 0.464 0.156 0.875-0.248 2.231-1.065 2.371-0.726 0.128-1.352-0.495-1.494-1.298m6.414-7.113c1.032-0.181 1.643 0.274 1.806 1.197 0.17 0.969-0.375 1.861-1.104 1.991-0.331 0.06-0.548-0.013-0.702-0.172 0.035-0.428 0.019-0.785-0.016-0.983-0.039-0.208-0.161-0.299-0.252-0.279-0.287 0.051-0.648 1.109-0.378 2.641 0.147 0.834 0.432 1.126 1.024 1.022 0.695-0.12 1.501-0.874 2.095-1.913 0.046-2.104 1.149-4.014 2.499-4.254 0.398-0.069 0.916 0.012 1.018 0.508 0.123-0.176 0.25-0.262 0.49-0.304 0.62-0.111 1.068 0.653 1.191 1.334 0.13 0.728 0.08 1.348-0.09 2.233 0.052 0.037 0.168 0.081 0.32 0.054 0.41-0.073 0.775-0.46 1.11-1.245-0.16-0.262-0.248-0.589-0.3-0.881-0.159-0.893 0.855-2.228 1.796-2.394 0.438-0.081 0.683 0.066 0.764 0.523 0.065 0.376 0.054 0.925-0.168 1.79 0.769-2.1 1.45-2.675 2.115-2.792 0.575-0.103 0.963 0.238 1.049 0.738 0.072 0.391 0.118 0.746-0.117 1.535 0.914-2.082 1.632-2.881 2.298-3 0.699-0.119 1.127 0.35 1.229 0.94 0.07 0.393 0.025 0.949-0.135 1.633-0.155 0.717-0.528 2.14-0.459 2.517 0.027 0.168 0.113 0.214 0.252 0.191 0.271-0.049 1.1-1.009 1.886-2.677 0.287-0.051 0.623 0.092 0.678 0.396 0.168 0.957-1.999 4.161-3.392 4.407-0.896 0.16-1.268-0.182-1.416-1.016-0.174-0.999 0.4-2.959 0.342-3.29-0.021-0.123-0.091-0.171-0.214-0.148-0.134 0.021-0.608 0.434-1.058 1.354-0.006 1.205-0.006 2.08 0.127 3.118-0.121 0.179-0.244 0.279-0.564 0.334-0.846 0.15-1.484-0.096-1.659-1.005-0.103-0.576-0.019-1.511 0.128-2.285 0.061-0.355 0.137-0.727 0.11-0.879-0.024-0.137-0.091-0.172-0.213-0.149-0.134 0.023-0.462 0.312-0.91 1.236-0.005 1.201 0.009 2.076 0.146 3.114-0.125 0.179-0.222 0.243-0.572 0.304-0.846 0.15-1.607-0.543-1.783-1.45-0.003-0.013-0.003-0.034-0.005-0.05-0.308 0.315-0.692 0.562-1.142 0.642-0.275 0.051-0.445 0.03-0.633-0.045-0.553 1.112-1.258 1.801-2.322 1.987-0.924 0.161-1.769-0.233-2.156-1.287-0.708 1.021-1.776 2.012-2.808 2.194-1.483 0.264-2.282-0.549-2.571-2.189-0.41-2.327 1.049-4.96 2.666-5.246m38.367-19.64c-1.771-1.335-3.675-2.011-5.668-2.011-0.193 0-0.388 0.017-0.584 0.031 0.764-1.094 2.395-3.722 2.02-5.843-0.24-1.348-1.229-2.414-2.52-2.828 0-0.274-0.029-0.552-0.076-0.832-0.197-1.125-0.86-2.144-1.769-2.753 0.101-0.645 0.091-1.165-0.017-1.772-0.382-2.186-1.953-3.543-4.089-3.543-0.34 0-0.691 0.033-1.067 0.102-2.748 0.483-4.671 2.951-4.858 6.044-0.293-0.058-0.601-0.09-0.918-0.09-0.289 0-0.588 0.028-0.881 0.079-0.578 0.103-1.24 0.333-1.932 0.794-0.565-0.305-1.189-0.438-1.774-0.438-0.28 0-0.567 0.025-0.882 0.082-1.286 0.226-2.303 1.016-3.041 1.822-0.79-0.508-1.74-0.783-2.809-0.783-0.396 0-0.807 0.036-1.227 0.109-0.629 0.111-1.24 0.343-1.824 0.682-1.139-3.67-3.835-5.962-7.17-5.962-0.425 0-0.86 0.036-1.292 0.112-3.871 0.684-5.447 3.6-5 6.123 0.197 1.128 0.84 2.099 1.761 2.668l0.673 0.414c-0.023 0.024-0.045 0.049-0.07 0.072-0.897-0.736-2.077-1.176-3.361-1.176-0.324 0-0.651 0.028-0.977 0.087-0.61 0.105-1.179 0.345-1.671 0.684-0.231-0.042-0.473-0.062-0.724-0.062-0.29 0-0.586 0.027-0.907 0.084-0.802 0.142-1.509 0.488-2.112 0.923-0.012-0.22-0.04-0.44-0.08-0.675-0.385-2.186-1.953-3.542-4.091-3.542-0.338 0-0.687 0.032-1.067 0.099-1.453 0.257-2.669 1.07-3.526 2.235-1.01-0.733-2.29-1.156-3.719-1.156-0.482 0-0.984 0.046-1.496 0.137-4.716 0.83-7.123 5.687-6.417 9.7 0.155 0.88 0.406 1.687 0.769 2.447-1.37 0.499-2.461 1.603-3.056 3.13-0.499 1.271-0.634 2.764-0.38 4.195 0.676 3.842 3.73 6.32 7.781 6.32 0.62 0 1.268-0.06 1.923-0.174 0.157-0.028 0.308-0.072 0.463-0.105 0.008 0.285 0.038 0.574 0.089 0.863 0.374 2.127 1.928 3.554 3.861 3.554 0.223 0 0.447-0.022 0.671-0.06 0.408-0.071 0.813-0.208 1.179-0.396-0.081 0.631-0.173 1.239-0.275 1.796-1.52 0.646-3.198 1.891-2.753 4.412 0.446 2.521 2.424 4.424 4.602 4.424 0.204 0 0.407-0.021 0.604-0.056 0.82-0.143 1.472-0.496 2.027-0.938 1.335 0.438 2.499 0.64 3.634 0.64 0.587 0 1.171-0.054 1.79-0.161 2.059-0.362 3.585-1.175 4.653-2.229 0.386 2.112 2.107 3.643 4.105 3.643h0.002c0.228 0 0.459-0.019 0.685-0.061 0.865-0.15 1.579-0.589 2.131-1.187 0.703 0.256 1.337 0.305 1.68 0.305 0.329 0 0.669-0.032 1.016-0.095 0.942-0.168 1.774-0.595 2.47-1.103 0.502 0.182 1.041 0.278 1.603 0.278 0.293 0 0.592-0.03 0.887-0.08 1.186-0.209 2.199-0.743 3.039-1.598 0.635 0.369 1.362 0.578 2.12 0.578 0.24 0 0.487-0.022 0.728-0.064 0.32-0.061 0.711-0.149 1.113-0.349 0.297 0.062 0.605 0.094 0.93 0.094 0.298 0 0.611-0.028 0.927-0.081 0.394-0.071 0.753-0.188 1.084-0.353 0.272 0.057 0.55 0.082 0.817 0.082 0.281 0 0.572-0.025 0.881-0.082 0.906-0.162 1.867-0.738 2.74-1.54 1.83 2.465 4.68 3.878 7.848 3.878h0.005c1.724 0 3.499-0.433 5.14-1.249 4.438-2.226 9.389-8.439 10.266-16.007 0.929-8.11-4.441-12.146-4.637-12.288" fill="#fff"/>
5
+ </svg>
Binary file
@@ -0,0 +1,8 @@
1
+ .container
2
+ .row
3
+ .six.column.mobile-three.tablet-two
4
+ = partial "views/buttons/_buttons"
5
+ .six.column.mobile-one.tablet-four
6
+ = partial "views/forms/_vertical_form"
7
+ = partial "views/type/_headings"
8
+ = partial "views/type/_paragraphs"
File without changes