shibori 1.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +27 -0
  5. data/Procfile +1 -0
  6. data/README.md +24 -0
  7. data/Rakefile +2 -0
  8. data/app.json +11 -0
  9. data/builder/lineage_hunter.js +80 -0
  10. data/builder/list_item_hunter.js +106 -0
  11. data/builder/media_hunter.js +51 -0
  12. data/builder/object_factory.js +60 -0
  13. data/builder/parameter_hunter.js +69 -0
  14. data/builder/pattern_assembler.js +258 -0
  15. data/builder/pattern_exporter.js +43 -0
  16. data/builder/patternlab.js +365 -0
  17. data/builder/patternlab_grunt.js +38 -0
  18. data/builder/patternlab_gulp.js +26 -0
  19. data/builder/pseudopattern_hunter.js +78 -0
  20. data/config.json +34 -0
  21. data/docs/Pattern Lab Node.md +225 -0
  22. data/favicon.ico +0 -0
  23. data/gulpfile.js +148 -0
  24. data/index.js +20 -0
  25. data/lib/shibori/version.rb +3 -0
  26. data/lib/shibori.rb +11 -0
  27. data/package.json +44 -0
  28. data/public/data/annotations.js +109 -0
  29. data/public/styleguide/css/static.css +458 -0
  30. data/public/styleguide/css/static.scss +404 -0
  31. data/public/styleguide/css/styleguide-specific.css +170 -0
  32. data/public/styleguide/css/styleguide-specific.scss +204 -0
  33. data/public/styleguide/css/styleguide.css +880 -0
  34. data/public/styleguide/css/styleguide.scss +950 -0
  35. data/public/styleguide/css/vendor/prism.css +112 -0
  36. data/public/styleguide/css/vendor/typeahead.css +66 -0
  37. data/public/styleguide/fonts/icomoon.eot +0 -0
  38. data/public/styleguide/fonts/icomoon.svg +22 -0
  39. data/public/styleguide/fonts/icomoon.ttf +0 -0
  40. data/public/styleguide/fonts/icomoon.woff +0 -0
  41. data/public/styleguide/html/README +1 -0
  42. data/public/styleguide/images/spinner.gif +0 -0
  43. data/public/styleguide/js/annotations-pattern.js +308 -0
  44. data/public/styleguide/js/annotations-viewer.js +289 -0
  45. data/public/styleguide/js/code-pattern.js +120 -0
  46. data/public/styleguide/js/code-viewer.js +443 -0
  47. data/public/styleguide/js/data-saver.js +169 -0
  48. data/public/styleguide/js/pattern-finder.js +114 -0
  49. data/public/styleguide/js/postmessage.js +127 -0
  50. data/public/styleguide/js/styleguide.js +600 -0
  51. data/public/styleguide/js/url-handler.js +182 -0
  52. data/public/styleguide/js/vendor/classlist-polyfill.js +176 -0
  53. data/public/styleguide/js/vendor/jquery.js +4 -0
  54. data/public/styleguide/js/vendor/jwerty.js +523 -0
  55. data/public/styleguide/js/vendor/prism.js +7 -0
  56. data/public/styleguide/js/vendor/typeahead.bundle.min.js +7 -0
  57. data/script/bootstrap +58 -0
  58. data/shibori.gemspec +18 -0
  59. data/shibori.jpg +0 -0
  60. data/source/_data/annotations.js +109 -0
  61. data/source/_data/data.json +93 -0
  62. data/source/_data/listitems.json +782 -0
  63. data/source/_patternlab-files/README +1 -0
  64. data/source/_patternlab-files/index.mustache +94 -0
  65. data/source/_patternlab-files/partials/ishControls.mustache +64 -0
  66. data/source/_patternlab-files/partials/patternNav.mustache +17 -0
  67. data/source/_patternlab-files/partials/patternPaths.mustache +3 -0
  68. data/source/_patternlab-files/partials/viewAllPaths.mustache +3 -0
  69. data/source/_patternlab-files/pattern-header-footer/README +1 -0
  70. data/source/_patternlab-files/pattern-header-footer/footer.html +34 -0
  71. data/source/_patternlab-files/pattern-header-footer/header.html +44 -0
  72. data/source/_patternlab-files/styleguide.mustache +75 -0
  73. data/source/_patternlab-files/viewall.mustache +75 -0
  74. data/source/_patterns/00-atoms/00-typography/00-headings.mustache +6 -0
  75. data/source/_patterns/00-atoms/00-typography/01-headings-options.mustache +7 -0
  76. data/source/_patterns/00-atoms/00-typography/02-body.mustache +2 -0
  77. data/source/_patterns/00-atoms/00-typography/03-text-manipulation.mustache +12 -0
  78. data/source/_patterns/00-atoms/00-typography/04-blockquotes.mustache +3 -0
  79. data/source/_patterns/00-atoms/00-typography/05-lists.mustache +64 -0
  80. data/source/_patterns/00-atoms/01-colors/00-colors-monochromatic.mustache +36 -0
  81. data/source/_patterns/00-atoms/01-colors/01-colors-brand.mustache +26 -0
  82. data/source/_patterns/00-atoms/01-colors/02-colors-gradients.mustache +38 -0
  83. data/source/_patterns/00-atoms/02-buttons/00-btn-lg.mustache +7 -0
  84. data/source/_patterns/00-atoms/02-buttons/01-btn-sm.mustache +7 -0
  85. data/source/_patterns/00-atoms/02-buttons/02-btn-xs.mustache +7 -0
  86. data/source/_patterns/00-atoms/02-buttons/03-btn-block.mustache +7 -0
  87. data/source/_patterns/00-atoms/02-buttons/04-btn-deploy.mustache +4 -0
  88. data/source/_patterns/00-atoms/03-forms/00-text-fields.mustache +24 -0
  89. data/source/_patterns/00-atoms/03-forms/01-select-menu.mustache +6 -0
  90. data/source/_patterns/00-atoms/03-forms/02-checkbox.mustache +10 -0
  91. data/source/_patterns/00-atoms/03-forms/03-radios.mustache +10 -0
  92. data/source/_patterns/00-atoms/03-forms/04-validation.mustache +14 -0
  93. data/source/_patterns/00-atoms/04-quote/00-pullquote.mustache +7 -0
  94. data/source/_patterns/00-atoms/04-quote/01-quote-small.mustache +7 -0
  95. data/source/_patterns/00-atoms/05-code/01-pre.mustache +11 -0
  96. data/source/_patterns/00-atoms/06-tooltips/00-text.mustache +3 -0
  97. data/source/_patterns/00-atoms/06-tooltips/01-diagram-callout.mustache +1 -0
  98. data/source/_patterns/00-atoms/07-loader/00-spinner.mustache +5 -0
  99. data/source/_patterns/00-atoms/08-readmore/00-readmore.mustache +3 -0
  100. data/source/_patterns/00-atoms/09-slider/00-dots.mustache +8 -0
  101. data/source/_patterns/00-atoms/10-tables/00-tables.mustache +26 -0
  102. data/source/_patterns/00-atoms/12-modal/00-modal.mustache +14 -0
  103. data/source/_patterns/00-atoms/13-panel/00-panel.mustache +3 -0
  104. data/source/_patterns/00-atoms/14-users/00-avatar.mustache +3 -0
  105. data/source/_patterns/00-atoms/15-icons/00-icons.mustache +333 -0
  106. data/source/_patterns/00-atoms/15-icons/04-icon-colors.mustache +38 -0
  107. data/source/_patterns/00-atoms/15-icons/05-icon-sizes.mustache +31 -0
  108. data/source/_patterns/00-atoms/15-icons/_02-languages.mustache +0 -0
  109. data/source/_patterns/00-atoms/15-icons/_03-social.mustache +0 -0
  110. data/source/_patterns/00-atoms/15-icons/_05-icon-containers.mustache +0 -0
  111. data/source/_patterns/00-atoms/16-video/01-video.mustache +3 -0
  112. data/source/_patterns/00-atoms/16-video/_00-play-button.mustache +0 -0
  113. data/source/_patterns/00-atoms/17-utilities/00-visibility.mustache +8 -0
  114. data/source/_patterns/00-atoms/17-utilities/01-ui-elements.mustache +3 -0
  115. data/source/_patterns/00-atoms/18-grid/_00-grid.mustache +0 -0
  116. data/source/_patterns/01-molecules/00-text/00-header-groups.mustache +4 -0
  117. data/source/_patterns/01-molecules/00-text/01-intro-text.mustache +5 -0
  118. data/source/_patterns/01-molecules/01-layout/00-one-up.mustache +8 -0
  119. data/source/_patterns/01-molecules/01-layout/01-two-up.mustache +9 -0
  120. data/source/_patterns/01-molecules/01-layout/02-three-up.mustache +10 -0
  121. data/source/_patterns/01-molecules/01-layout/03-four-up.mustache +11 -0
  122. data/source/_patterns/01-molecules/01-layout/04-masonary-2.mustache +24 -0
  123. data/source/_patterns/01-molecules/01-layout/05-masonary-3.mustache +24 -0
  124. data/source/_patterns/01-molecules/02-navigation/01-subnav.mustache +21 -0
  125. data/source/_patterns/01-molecules/02-navigation/02-breadcrumbs.mustache +25 -0
  126. data/source/_patterns/01-molecules/02-navigation/03-side-nav.mustache +11 -0
  127. data/source/_patterns/01-molecules/02-navigation/04-side-nav-small.mustache +32 -0
  128. data/source/_patterns/01-molecules/02-navigation/05-pagination.mustache +0 -0
  129. data/source/_patterns/01-molecules/02-navigation/06-tabs.mustache +46 -0
  130. data/source/_patterns/01-molecules/03-forms/_00-search.mustache +0 -0
  131. data/source/_patterns/01-molecules/04-slider/00-slider.mustache +8 -0
  132. data/source/_patterns/01-molecules/05-messages/00-alert.mustache +15 -0
  133. data/source/_patterns/01-molecules/06-components/_00-social-share.mustache +0 -0
  134. data/source/_patterns/01-molecules/07-Elements/01-Addons-Card.mustache +79 -0
  135. data/source/_patterns/01-molecules/07-Elements/02-Buttons-Card.mustache +131 -0
  136. data/source/_patterns/01-molecules/07-Elements/03-Buildpack-Card.mustache +109 -0
  137. data/source/_patterns/01-molecules/08-vertical-tabs/01-vertical-tabs.mustache +30 -0
  138. data/source/_patterns/02-organisms/03-sections/00-purple.mustache +11 -0
  139. data/source/_patterns/02-organisms/03-sections/01-purple-dark.mustache +12 -0
  140. data/source/_patterns/02-organisms/03-sections/03-gray-light.mustache +12 -0
  141. data/source/css/hk-icon-rails.scss +13 -0
  142. data/source/css/scss/base/_base.scss +62 -0
  143. data/source/css/scss/base/_fonts.scss +12 -0
  144. data/source/css/scss/base/_normalize.scss +431 -0
  145. data/source/css/scss/base/_type.scss +128 -0
  146. data/source/css/scss/base/_utilities.scss +78 -0
  147. data/source/css/scss/components/_alert.scss +38 -0
  148. data/source/css/scss/components/_animate.scss +3340 -0
  149. data/source/css/scss/components/_animation.scss +15 -0
  150. data/source/css/scss/components/_buttons.scss +175 -0
  151. data/source/css/scss/components/_code.scss +26 -0
  152. data/source/css/scss/components/_forms.scss +136 -0
  153. data/source/css/scss/components/_hero.scss +18 -0
  154. data/source/css/scss/components/_hr.scss +11 -0
  155. data/source/css/scss/components/_icons.scss +85 -0
  156. data/source/css/scss/components/_lists.scss +45 -0
  157. data/source/css/scss/components/_logos.scss +15 -0
  158. data/source/css/scss/components/_masonary.scss +46 -0
  159. data/source/css/scss/components/_modal.scss +218 -0
  160. data/source/css/scss/components/_owlCarousel.scss +270 -0
  161. data/source/css/scss/components/_panel.scss +11 -0
  162. data/source/css/scss/components/_pill-box.scss +38 -0
  163. data/source/css/scss/components/_quote.scss +96 -0
  164. data/source/css/scss/components/_readmore.scss +11 -0
  165. data/source/css/scss/components/_slider.scss +96 -0
  166. data/source/css/scss/components/_spinner.scss +64 -0
  167. data/source/css/scss/components/_sprites.scss +3 -0
  168. data/source/css/scss/components/_sr-only.scss +10 -0
  169. data/source/css/scss/components/_tables.scss +62 -0
  170. data/source/css/scss/components/_tooltips.scss +93 -0
  171. data/source/css/scss/components/_users.scss +11 -0
  172. data/source/css/scss/components/_vertical-tabs.scss +129 -0
  173. data/source/css/scss/components/_video.scss +7 -0
  174. data/source/css/scss/ecosystem/_addons-card.scss +3 -0
  175. data/source/css/scss/ecosystem/_cards.scss +369 -0
  176. data/source/css/scss/ecosystem/_elements-brand.scss +32 -0
  177. data/source/css/scss/ecosystem/_elements.scss +4 -0
  178. data/source/css/scss/globals/_colors.scss +189 -0
  179. data/source/css/scss/globals/_mixins.scss +45 -0
  180. data/source/css/scss/globals/_variables.scss +87 -0
  181. data/source/css/scss/layout/_grid-settings.scss +13 -0
  182. data/source/css/scss/layout/_layout.scss +95 -0
  183. data/source/css/scss/page-elements/_headers.scss +3 -0
  184. data/source/css/scss/page-elements/_navigation.scss +254 -0
  185. data/source/css/scss/page-elements/_sections.scss +66 -0
  186. data/source/css/scss/page-elements/_sidebar.scss +34 -0
  187. data/source/css/shibori.scss +63 -0
  188. data/source/fonts/bentonsans/bentonsans-book.eot +0 -0
  189. data/source/fonts/bentonsans/bentonsans-book.svg +400 -0
  190. data/source/fonts/bentonsans/bentonsans-book.ttf +0 -0
  191. data/source/fonts/bentonsans/bentonsans-book.woff +0 -0
  192. data/source/fonts/bentonsans/bentonsans-medium.eot +0 -0
  193. data/source/fonts/bentonsans/bentonsans-medium.svg +416 -0
  194. data/source/fonts/bentonsans/bentonsans-medium.ttf +0 -0
  195. data/source/fonts/bentonsans/bentonsans-medium.woff +0 -0
  196. data/source/fonts/bentonsans/bentonsans-regular.eot +0 -0
  197. data/source/fonts/bentonsans/bentonsans-regular.svg +416 -0
  198. data/source/fonts/bentonsans/bentonsans-regular.ttf +0 -0
  199. data/source/fonts/bentonsans/bentonsans-regular.woff +0 -0
  200. data/source/fonts/hk-icon/hk-icon.eot +0 -0
  201. data/source/fonts/hk-icon/hk-icon.svg +261 -0
  202. data/source/fonts/hk-icon/hk-icon.ttf +0 -0
  203. data/source/fonts/hk-icon/hk-icon.woff +0 -0
  204. data/source/fonts/inconsolata/inconsolata-bold.eot +0 -0
  205. data/source/fonts/inconsolata/inconsolata-bold.svg +239 -0
  206. data/source/fonts/inconsolata/inconsolata-bold.ttf +0 -0
  207. data/source/fonts/inconsolata/inconsolata-bold.woff +0 -0
  208. data/source/fonts/inconsolata/inconsolata-regular.eot +0 -0
  209. data/source/fonts/inconsolata/inconsolata-regular.svg +239 -0
  210. data/source/fonts/inconsolata/inconsolata-regular.ttf +0 -0
  211. data/source/fonts/inconsolata/inconsolata-regular.woff +0 -0
  212. data/source/images/blockquote/close-sm.png +0 -0
  213. data/source/images/blockquote/close.png +0 -0
  214. data/source/images/blockquote/close@2x.png +0 -0
  215. data/source/images/blockquote/open-sm.png +0 -0
  216. data/source/images/blockquote/open.png +0 -0
  217. data/source/images/blockquote/open@2x.png +0 -0
  218. data/source/images/elements/heroku_suported.svg +32 -0
  219. data/source/images/forms/select-input-arrows.svg +8 -0
  220. data/source/js/init.js +26 -0
  221. data/source/js/main.js +22 -0
  222. data/source/js/vendor/bourbon-modal.js +17 -0
  223. data/source/js/vendor/fitvids.js +77 -0
  224. data/source/js/vendor/fixto.js +719 -0
  225. data/source/js/vendor/jquery-2.0.0b2.js +8690 -0
  226. data/source/js/vendor/modernizr.js +4 -0
  227. data/source/js/vendor/owl.carousel.js +3069 -0
  228. data/source/js/vendor/readmore.js +11 -0
  229. data/source/js/vendor/unslider.js +1 -0
  230. data/source/js/vendor/vertical-tabs.js +34 -0
  231. data/test/files/test.css +19 -0
  232. data/test/lineage_hunter_tests.js +262 -0
  233. data/test/list_item_hunter_tests.js +167 -0
  234. data/test/media_hunter_tests.js +74 -0
  235. data/test/object_factory_tests.js +62 -0
  236. data/test/parameter_hunter_tests.js +298 -0
  237. data/test/pattern_assembler_tests.js +43 -0
  238. data/test/patternlab_tests.js +8 -0
  239. metadata +320 -0
Binary file
@@ -0,0 +1,261 @@
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>© 2016 Heroku. All rights reserved.</metadata>
5
+ <defs>
6
+ <font id="hk-icon" horiz-adv-x="1000" >
7
+
8
+ <font-face
9
+ font-family="hk-icon"
10
+ font-weight="400"
11
+ font-stretch="normal"
12
+ units-per-em="1000"
13
+ ascent="850"
14
+ descent="-150"
15
+ />
16
+
17
+ <missing-glyph horiz-adv-x="1000" />
18
+
19
+
20
+ <glyph
21
+ glyph-name="addon"
22
+ unicode="&#xe000;"
23
+ d="M568.6 471.5C530.1 491.6 469.9 491.6 431.4 471.5 408.6 459.4 395.5 441.2 395.5 421.3S408.6 383 431.4 370.9C450.6 360.7 475.4 355.7 500 355.7 524.6 355.7 549.2 360.7 568.6 370.9 591.4 383 604.5 401.4 604.5 421.1S591.4 459.4 568.6 471.5ZM547.9 410.2C522.5 396.7 477.7 396.7 452.1 410.2 442.2 415.4 440 420.1 440 421.1S442.2 426.8 452.1 432C477.5 445.5 522.3 445.5 547.9 432 558 426.8 560.2 422.1 560.2 421.1S557.8 415.4 547.9 410.2ZM431.4 606.6C450.6 596.5 475.4 591.4 500 591.4 524.6 591.4 549.2 596.5 568.6 606.6 591.4 618.8 604.5 636.9 604.5 656.8S591.4 695.1 568.6 707.2C530.1 727.3 469.9 727.3 431.4 707.2 408.6 695.1 395.5 676.8 395.5 656.8 395.5 636.9 408.6 618.6 431.4 606.6ZM452.1 667.8C477.5 681.3 522.3 681.3 547.7 667.8 557.8 662.5 560 657.6 560 656.8 560 655.9 557.8 651.2 547.7 645.9 522.3 632.4 477.5 632.4 452 645.9 442 651.2 439.8 655.9 439.8 656.8 440 657.8 442.2 662.5 452.1 667.8ZM625.8 489.3C645.1 479.1 669.7 474 694.3 474 718.9 474 743.6 479.1 762.9 489.3 785.7 501.4 798.8 519.7 798.8 539.5 798.8 559.4 785.7 577.7 762.9 589.8 724.4 610 664.3 610 625.8 589.8 602.9 577.7 589.8 559.6 589.8 539.6S602.9 501.4 625.8 489.3ZM646.5 550.4C671.9 563.9 716.6 563.9 742.2 550.4 752.3 545.1 754.5 540.4 754.5 539.5S752.3 533.8 742.2 528.5C716.8 515 672.1 515 646.5 528.5 636.5 533.8 634.4 538.5 634.4 539.5S636.5 545.1 646.5 550.4ZM237.1 488.3C256.4 478.1 281.1 473 305.7 473S354.9 478.1 374.2 488.3C397.1 500.4 410.2 518.8 410.2 538.7 410.2 558.6 397.1 577 374.2 588.9 335.7 609.2 275.6 609 237.1 588.9 214.3 576.8 201.2 558.6 201.2 538.7 201.2 518.6 214.3 500.2 237.1 488.3ZM257.8 549.4C283.4 562.9 327.9 562.7 353.5 549.4 363.5 544.1 365.8 539.5 365.8 538.5S363.7 532.8 353.5 527.5C328.1 514.3 283.4 514.3 257.8 527.5 247.9 532.8 245.7 537.5 245.7 538.5 245.5 539.5 247.9 544.1 257.8 549.4ZM878.7 654.3L574.2 830.3C528.5 856.6 471.7 856.6 426 830.3L121.3 654.3C75.6 627.9 47.1 578.7 47.1 526V174.2C47.1 121.5 75.4 72.3 121.3 45.9L426-130.1C448.8-143.4 474.4-149.8 500.2-149.8 525.8-149.8 551.6-143.2 574.4-130.1L879.1 45.9C924.8 72.3 953.3 121.5 953.3 174.2V526C952.9 578.7 924.6 627.9 878.7 654.3ZM150.8 602.9L455.5 778.9C469.1 786.9 484.6 790.8 500 790.8S530.9 786.9 544.5 778.9L849.2 602.9C876.6 587.1 893.8 557.6 893.8 526V360.5C887.7 348 878.5 337.1 866 329.9L535.2 139.1C513.5 126.6 486.5 126.6 464.8 139.1L134.2 329.9C121.7 337.1 112.5 348 106.4 360.5V526C106.4 557.6 123.4 587.1 150.8 602.9ZM849.2 97.1L544.5-78.9C517.2-94.7 483-94.7 455.7-78.9L151 97.1C123.6 112.9 106.4 142.4 106.4 174V295.1C108.2 293.9 110 292.6 111.9 291.4L442.8 100.4C460.5 90.2 480.3 85 500.2 85S539.8 90 557.6 100.4L888.1 291.4C890 292.6 891.8 293.9 893.6 295.1V174C893.6 142.4 876.6 112.9 849.2 97.1Z"
24
+ horiz-adv-x="1000"
25
+ />
26
+
27
+ <glyph
28
+ glyph-name="app"
29
+ unicode="&#xe001;"
30
+ d="M872.1 660.9L583.4 827.7C532 857.4 468.2 857.4 416.8 827.7L127.9 660.9C76.6 631.3 44.5 576 44.5 516.6V183.2C44.5 123.8 76.4 68.6 127.9 38.9L416.6-127.9C442.4-142.8 471.1-150.2 500-150.2S557.6-142.8 583.4-127.9L872.1 38.9C923.4 68.6 955.5 123.8 955.5 183.2V516.8C955.5 576 923.4 631.3 872.1 660.9ZM896.5 183.2C896.5 144.7 875.8 109 842.6 89.8L553.9-77C520.7-96.1 479.3-96.1 446.1-77L157.4 89.8C124 109.2 103.5 144.9 103.5 183.2V516.8C103.5 555.3 124.2 591 157.4 610.2L446.1 777C479.3 796.1 520.7 796.1 553.9 777L842.6 610.2C875.8 591 896.5 555.3 896.5 516.8V183.2ZM633.8 470.7L537.5 526.2C514.3 539.6 485.5 539.6 462.3 526.2L366 470.5C342.8 457 328.5 432.2 328.5 405.5V294.3C328.5 267.6 343 242.6 366 229.3L462.3 173.8C473.8 167.2 486.9 163.9 499.8 163.9 512.9 163.9 525.8 167.2 537.3 173.8L633.6 229.5C656.8 243 671.1 267.8 671.1 294.5V405.7C671.5 432.4 657 457.2 633.8 470.7ZM612.5 294.3C612.5 288.5 609.4 283 604.3 280.3L508 224.6C502.9 221.7 496.7 221.7 491.6 224.6L395.3 280.3C390.2 283.2 387.1 288.7 387.1 294.3V405.5C387.1 411.3 390.2 416.8 395.3 419.5L491.6 475.2C494.1 476.6 496.9 477.3 499.8 477.3S505.5 476.6 508 475.2L604.3 419.5C609.4 416.6 612.5 411.1 612.5 405.5V294.3Z"
31
+ horiz-adv-x="1000"
32
+ />
33
+
34
+ <glyph
35
+ glyph-name="buildpack"
36
+ unicode="&#xe002;"
37
+ d="M697.9 421.3C720.5 434.4 734.8 458.8 734.8 485.2V670.9C734.8 697.1 720.7 721.7 697.9 734.8L536.9 827.7C514.3 840.8 485.9 840.8 463.3 827.7L302.1 734.8C279.5 721.7 265.2 697.3 265.2 670.9V485C265.2 458.8 279.3 434.2 302.1 421.1L463.1 328.1C474.4 321.5 487.3 318.4 500 318.4 512.7 318.4 525.4 321.7 536.9 328.1L697.9 421.3ZM491.8 377.9L330.9 470.9C325.8 473.8 322.7 479.3 322.7 485V670.9C322.7 676.8 325.8 682.2 330.9 685L491.8 777.9C496.9 780.9 503.1 780.9 508.2 777.9L669.1 685C674.2 682 677.3 676.6 677.3 670.9V485C677.3 479.1 674.2 473.8 669.1 470.9L508.2 377.9C503.1 375 496.9 375 491.8 377.9ZM621.3 670.7L522.3 729.9C508.4 737.9 491.2 737.9 477.1 729.7L378.5 670.7C368.4 664.6 362.3 654.1 362.3 642.2 362.3 630.5 368.4 619.7 378.5 613.7L477.5 554.5C484.4 550.6 492.2 548.6 499.8 548.6 507.6 548.6 515.4 550.6 522.7 554.7L621.3 613.7C631.4 619.7 637.5 630.3 637.5 642.2S631.4 664.6 621.3 670.7ZM499.4 591.8L415 642.2 500.8 692.8 585.2 642.4 499.4 591.8ZM432.6 278.7L271.5 371.7C248.8 384.8 220.5 384.8 197.9 371.7L36.9 278.7C14.1 265.6 0 241.2 0 214.8V28.9C0 2.7 14.1-21.9 36.9-35L197.9-127.9C209.2-134.6 221.9-137.7 234.8-137.7 247.5-137.7 260.4-134.4 271.7-127.9L432.6-35C455.3-21.9 469.5 2.5 469.5 28.9V214.8C469.3 241.2 455.3 265.6 432.6 278.7ZM411.9 29.1C411.9 23.2 408.8 17.8 403.7 15L242.8-77.9C237.7-80.9 231.4-80.9 226.4-77.9L65.4 15C60.4 18 57.2 23.4 57.2 29.1V215C57.2 220.9 60.4 226.4 65.4 229.1L226.4 322.1C231.4 325 237.7 325 242.8 322.1L403.7 229.1C408.8 226.2 411.9 220.7 411.9 215V29.1ZM356.1 214.6L257 273.8C243.2 281.8 226 281.8 211.9 273.6L113.3 214.6C103.1 208.6 97.1 198 97.1 186.1 97.1 174.4 103.1 163.7 113.3 157.6L212.3 98.4C219.1 94.5 227 92.6 234.6 92.6 242.4 92.6 250.2 94.5 257.4 98.6L356.1 157.6C366.2 163.7 372.3 174.2 372.3 186.1S366.2 208.6 356.1 214.6ZM234 135.7L149.6 186.1 235.4 236.7 319.7 186.3 234 135.7ZM963.1 278.7L802.1 371.7C779.5 384.8 751.2 384.8 728.5 371.7L567.6 278.7C544.9 265.6 530.7 241.2 530.7 214.8V28.9C530.7 2.7 544.7-21.9 567.6-35L728.5-127.9C739.8-134.6 752.5-137.7 765.4-137.7 778.1-137.7 791-134.4 802.3-127.9L963.3-35C985.9-21.9 1000.2 2.5 1000.2 28.9V214.8C1000 241.2 985.9 265.6 963.1 278.7ZM942.6 29.1C942.6 23.2 939.5 17.8 934.4 15L773.4-78.1C768.4-81.1 762.1-81.1 757-78.1L596.1 14.8C591 17.8 587.9 23.2 587.9 28.9V214.8C587.9 220.7 591 226.2 596.1 228.9L757 321.9C762.1 324.8 768.4 324.8 773.4 321.9L934.4 228.9C939.5 226 942.6 220.5 942.6 214.8V29.1ZM886.7 214.6L787.7 273.8C773.8 281.8 756.6 281.8 742.6 273.6L643.9 214.6C633.8 208.6 627.7 198 627.7 186.1 627.7 174.4 633.8 163.7 643.9 157.6L743 98.4C749.8 94.5 757.6 92.6 765.2 92.6 773 92.6 780.9 94.5 788.1 98.6L886.7 157.6C896.9 163.7 902.9 174.2 902.9 186.1S896.9 208.6 886.7 214.6ZM764.6 135.7L680.3 186.1 766 236.7 850.4 186.3 764.6 135.7Z"
38
+ horiz-adv-x="1000"
39
+ />
40
+
41
+ <glyph
42
+ glyph-name="connect"
43
+ unicode="&#xe003;"
44
+ d="M877.5 655.7L576 829.7C529.1 856.6 471.1 856.8 424.2 829.7L122.5 655.7C75.6 628.7 46.5 578.3 46.5 524.2V176C46.5 121.9 75.6 71.5 122.5 44.5L424-129.5C447.5-143 473.6-149.8 500-149.8 526.2-149.8 552.5-143 576-129.5L877.5 44.7C924.4 71.7 953.5 122.1 953.5 176.2V524.2C953.3 578.1 924.2 628.5 877.5 655.7ZM894.5 176C894.5 142.8 876.8 111.9 848 95.5L546.5-78.7C517.8-95.3 482.2-95.3 453.5-78.7L152 95.3C123.2 111.9 105.5 142.8 105.5 176V524.2C105.5 557.4 123.2 588.3 152 604.7L453.5 778.9C467.8 787.1 484 791.4 500 791.4S532.2 787.3 546.5 778.9L848 604.9C876.8 588.3 894.5 557.4 894.5 524.4V176ZM829.1 552.1L617 674.6 510.9 735.7C504.1 739.6 495.7 739.6 488.9 735.7L382.8 674.6 170.9 552.1C164.1 548.2 160 541 160 533V166C160 158.2 164.3 150.8 170.9 146.9L277 85.7C277.1 85.7 277.1 85.5 277.3 85.5L489.1-36.7C492.6-38.7 496.3-39.6 500-39.6S507.6-38.7 510.9-36.7L722.9 85.7 828.9 146.9C835.7 150.8 839.8 158 839.8 166V533.2C840 541 835.9 548.2 829.1 552.1ZM477.9 20.5L332.2 104.7 405.1 146.9C411.9 150.8 416 158 416 166V288.3 288.5C416 292 414.8 295.3 413.5 298.2 413.1 299.2 412.5 299.8 411.9 300.8 410.4 302.9 408.6 304.7 406.4 306.3 405.9 306.6 405.7 307.2 405.1 307.6L299 368.8C292.2 372.7 283.8 372.7 277 368.8L204.1 326.6V494.9L431.6 363.5 477.9 336.7V20.5ZM310.2 214.3L372.1 250V178.5L310.2 142.8V214.3ZM288.1 252.5L226.2 288.3 288.1 324 350 288.3 288.1 252.5ZM712.1 252.9L650.4 288.5 712.1 324.2 773.8 288.5 712.1 252.9ZM628.1 250.2L645.9 240 690 214.6V143L628.1 178.7V250.2ZM500 375L422.3 419.9 226.2 533.2 372.1 617.4V533.2C372.1 525.4 376.4 518 383 514.1L489.1 452.9C492.6 451 496.3 450 500 450S507.6 451 510.9 452.9L617 514.1C623.8 518 627.9 525.2 627.9 533.2V617.4L773.8 533.2 500 375ZM416 617.2L439.8 603.5 477.9 581.4V510.2L416 545.9V617.2ZM522.1 581.4L560.2 603.5 584 617.2V545.7L522.1 510.2V581.4ZM500 691.2L561.9 655.5 500 619.7 438.1 655.5 500 691.2ZM204.1 250L266 214.3V142.8L204.1 178.5V250ZM522.1 336.7L795.9 494.9V326.6L723 368.8C716.2 372.7 707.8 372.7 701 368.8L594.9 307.6C590.2 304.9 587.5 300.4 585.7 295.5 585 293.2 584 291 584 288.7V166.2C584 158.4 588.3 151 594.9 147.1L667.8 104.9 522.1 20.7V336.7ZM734.2 143V214.6L796.1 250.2V178.5L734.2 143Z"
45
+ horiz-adv-x="1000"
46
+ />
47
+
48
+ <glyph
49
+ glyph-name="control"
50
+ unicode="&#xe004;"
51
+ d="M42.6 668.6H691.4C705.9 600.6 766.2 549.6 838.3 549.6 921.1 549.6 988.5 617 988.5 699.8S921.3 850 838.3 850C766.2 850 705.9 798.8 691.4 731.1H42.6C25.4 731.1 11.3 717 11.3 699.8S25.4 668.6 42.6 668.6ZM838.3 787.5C886.7 787.5 926 748 926 699.8S886.5 612.1 838.3 612.1C789.8 612.1 750.4 651.6 750.4 699.8S790 787.5 838.3 787.5ZM957.4 31.4H725.8C711.3 99.4 651 150.4 578.9 150.4S446.5 99.2 432 31.4H42.6C25.4 31.4 11.3 17.4 11.3 0.2S25.4-31.1 42.6-31.1H431.8C446.3-99 506.6-150 578.7-150S711.1-98.8 725.6-31.1H957.2C974.4-31.1 988.5-17 988.5 0.2S974.6 31.4 957.4 31.4ZM578.9-87.5C530.5-87.5 491.2-48 491.2 0.2S530.7 87.9 578.9 87.9 666.6 48.4 666.6 0.2 627.1-87.5 578.9-87.5ZM957.4 381.3H477C462.5 449.2 402.1 500.2 330.1 500.2S197.7 449 183.2 381.3H42.6C25.4 381.3 11.3 367.2 11.3 350S25.4 318.8 42.6 318.8H183C197.5 250.8 257.8 199.8 329.9 199.8S462.3 251 476.8 318.8H957.2C974.4 318.8 988.5 332.8 988.5 350S974.6 381.3 957.4 381.3ZM329.9 262.3C281.4 262.3 242.2 301.8 242.2 350S281.6 437.7 329.9 437.7 417.6 398.2 417.6 350 378.3 262.3 329.9 262.3Z"
52
+ horiz-adv-x="1000"
53
+ />
54
+
55
+ <glyph
56
+ glyph-name="dataclips"
57
+ unicode="&#xe005;"
58
+ d="M878.1 645.1C799.4 723.8 696.5 767 587.9 767H251.8V765.6C111.1 750.8 0 622.5 0 468.9 0 391.2 27.9 317.6 78.5 261.3 128.9 205.5 198 173.8 273.2 172.5H548.2C597.3 172.5 641.6 190.8 676.4 225.8 711.1 260.5 729.7 304.9 729.7 353.9 729.7 401.6 710.4 448.2 676.4 482 642.6 515.8 595.9 535.4 548.2 535.4H308.2C287.7 535.4 271.9 519.3 271.9 499 271.9 478.5 287.9 462.7 308.4 462.7H548.4C577.7 462.7 605.1 451.2 625.6 430.3 645.5 410 656.1 383.6 655.7 355.5 655.7 326.6 644.5 300.2 623.4 279.1 602.9 258.6 575.2 246.9 547.1 246.9H274.6C221.3 246.9 171.5 269.9 134.2 311.9 94.9 355.9 74.2 410.7 74.2 470.3 74.2 592.4 164.1 692.8 274.6 693.9H583C674.8 693.9 761.3 658.2 826.4 593.2S927.1 441.8 927.1 349.8C927.1 160.2 772.9 5.7 583 5.7H65.4C44.9 5.7 29.1-10.4 29.1-30.7 29.1-51.2 45.1-67 65.4-67H583C813.1-67 1000 120.1 1000 350 1000 461.7 956.6 566.4 878.1 645.1Z"
59
+ horiz-adv-x="1000"
60
+ />
61
+
62
+ <glyph
63
+ glyph-name="dyno"
64
+ unicode="&#xe006;"
65
+ d="M885.4 647.9L565.2 832.6C525 855.9 475 855.9 434.8 832.6L114.6 647.9C74.4 624.6 49.4 581.3 49.4 534.8V165.2C49.4 118.8 74.4 75.4 114.6 52.1L434.8-132.6C454.9-144.1 477.3-150 500-150 522.5-150 545.1-144.1 565.2-132.6L885.4 52.1C925.6 75.4 950.6 118.8 950.6 165.2V534.8C950.6 581.3 925.6 624.6 885.4 647.9ZM891.6 165.2C891.6 139.6 877.9 116 855.9 103.1L535.7-81.6C513.7-94.3 486.1-94.3 464.1-81.6L144.1 103.1C122.1 115.8 108.4 139.6 108.4 165.2V534.8C108.4 560.4 122.1 584 144.1 596.9L464.3 781.6C486.3 794.3 513.9 794.3 535.9 781.6L856.1 596.9C878.1 584.2 891.8 560.4 891.8 534.8V165.2ZM775.2 560C758.2 550.4 749 532.4 749.8 514.3L542.8 399.2 582.2 500C600.4 501.6 617.2 513.1 624.2 531.3 634.2 556.8 621.7 585.7 596.1 595.7S541.6 593.2 531.6 567.6C524.6 549.4 528.9 529.7 541.2 516.2L490.8 387.7 266.4 514.1C267.4 532.2 258.4 550.4 241.4 560 217.4 573.4 187.1 565 173.6 541 160.2 517 168.6 486.7 192.6 473.2 209.6 463.7 229.7 465.4 244.9 475.6L459.8 354.5 347.1 296.9C332.4 307.8 312.3 310.2 294.9 301.4 270.5 288.9 260.7 258.8 273.2 234.4 285.7 210 315.8 200.2 340.2 212.7 357.6 221.5 367.4 239.3 367.2 257.6L474.6 312.5 453.9 72.7C436.9 66 424.2 50.2 422.5 30.9 420.1 3.5 440.4-20.7 467.8-23 495.1-25.4 519.3-5.1 521.7 22.3 523.4 41.8 513.5 59.4 497.9 68.9L519.9 324 698 292.2C703.1 274.6 717.6 260.5 736.9 257 764.1 252.1 789.8 270.1 794.7 297.3 799.6 324.4 781.6 350.2 754.5 355.1 735.4 358.6 716.8 350.2 705.9 335.5L564.8 360.7 771.3 475.6C786.3 465.2 806.4 463.5 823.6 473 847.7 486.3 856.3 516.8 843 540.8 829.5 564.8 799.2 573.4 775.2 560Z"
66
+ horiz-adv-x="1000"
67
+ />
68
+
69
+ <glyph
70
+ glyph-name="github"
71
+ unicode="&#xe007;"
72
+ d="M500 850C224.2 850 0 625.8 0 350S224.2-150 500-150 1000 74.2 1000 350 775.8 850 500 850ZM500-91.2C256.6-91.2 58.8 106.6 58.8 350S256.6 791.2 500 791.2 941.2 593.4 941.2 350 743.4-91.2 500-91.2ZM750 404.5S819.1 524 734.2 593.8C681.8 593.8 602 507.4 602 507.4L602.5 507C537.5 526.2 464.5 526.4 399.2 507.4 398.8 507.8 319.1 593.8 267 593.8 184 525.8 247.9 410.4 251 405.1 224.4 365.2 209.8 316 214.5 255.7 220.7 174 288.9 85.4 370.9 85.4H629.3C711.3 85.4 779.3 174 785.7 255.7 790.4 316 775.8 365.4 749.2 405.3L750 404.5ZM604.5 173.4H395.5C344.9 173.4 303.9 210.5 303.9 261.1 303.9 415.6 411.7 351.6 500 351.6S696.1 418.2 696.1 262.1C696.1 211.7 655.1 173.4 604.5 173.4ZM610.4 327C594.1 327 580.9 313.9 580.9 297.5V238.7C580.9 222.5 593.9 209.2 610.4 209.2 626.6 209.2 639.8 222.3 639.8 238.7V297.5C639.6 313.9 626.6 327 610.4 327ZM389.6 327C373.4 327 360.2 313.9 360.2 297.5V238.7C360.2 222.5 373.2 209.2 389.6 209.2 405.9 209.2 419.1 222.3 419.1 238.7V297.5C419.1 313.9 405.9 327 389.6 327Z"
73
+ horiz-adv-x="1000"
74
+ />
75
+
76
+ <glyph
77
+ glyph-name="metrics"
78
+ unicode="&#xe008;"
79
+ d="M872.1 660.9L583.4 827.7C532 857.4 468.2 857.4 416.8 827.7L127.9 660.9C76.6 631.3 44.5 576 44.5 516.6V183.2C44.5 123.8 76.4 68.6 127.9 38.9L416.6-127.9C442.4-142.8 471.1-150.2 500-150.2S557.6-142.8 583.4-127.9L872.1 38.9C923.4 68.6 955.5 123.8 955.5 183.2V516.8C955.5 576 923.4 631.3 872.1 660.9ZM103.5 446.1L308.4 345.1C311.5 343.6 314.8 342.8 318.2 342.8 324.4 342.8 330.5 345.5 334.8 350.4L484.4 523 579.5 423.2C584 418.6 590.4 416 596.5 416.4 602.9 416.6 608.8 419.7 612.7 424.8L725.8 568.4 874.6 581.6C888.5 563.3 896.5 540.4 896.5 516.8V410.2L724.8 239.3H617.2L517.2 363.9C513.1 369.1 506.6 372.1 500 372.1 493.8 371.3 486.9 368.9 482.6 363.7L319.3 156.6 103.5 269.9V446.1ZM157.4 610.2L446.1 777C479.3 796.1 520.7 796.1 553.9 777L823.2 621.5 712.5 611.7C706.4 611.1 701 608.2 697.1 603.3L593.8 472.3 499.6 571.3C495.3 575.8 489.5 577.9 483.2 578.1 477 577.9 471.1 575.2 467 570.5L312.7 392.4 103.5 495.3V516.8C103.5 555.1 124 590.8 157.4 610.2ZM842.6 89.8L553.9-77C520.7-96.1 479.3-96.1 446.1-77L157.4 89.8C124 109.2 103.5 144.9 103.5 183.2V220.1L315.2 109C318.6 107.2 322.1 106.4 325.4 106.4 332 106.4 338.5 109.4 342.8 114.8L500.2 314.5 589.5 203.3C593.6 198 600 195.1 606.6 195.1H734C739.8 195.1 745.5 197.5 749.6 201.6L896.5 347.9V183.2C896.5 144.9 876 109.2 842.6 89.8Z"
80
+ horiz-adv-x="1000"
81
+ />
82
+
83
+ <glyph
84
+ glyph-name="postgres"
85
+ unicode="&#xe009;"
86
+ d="M882.4 850H117.6C52.7 850 0 797.3 0 732.4V-32.2C0-97.3 52.7-150 117.6-150H882.2C947.1-150 999.8-97.3 999.8-32.4V732.4C1000 797.3 947.3 850 882.4 850ZM941.2-32.4C941.2-64.8 914.8-91.2 882.4-91.2H117.6C85.2-91.2 58.8-64.8 58.8-32.4V732.4C58.8 764.8 85.2 791.2 117.6 791.2H882.2C914.6 791.2 941 764.8 941 732.4V-32.4ZM477.9 307.6V644.5C477.9 660.7 464.8 674 448.4 674 312.3 674 131.3 660.7 131.3 546.3 131.3 440.8 267.4 278.1 448.4 278.1 464.8 278.1 477.9 291.2 477.9 307.6ZM419.1 338.7C285.2 355.1 190 479.3 190 546.1 190 586.5 275 611.7 419.1 614.6V338.7ZM551.6 674C535.4 674 522.1 660.9 522.1 644.5V107C522.1 89.1 508.4 82 504.3 80.3 500.2 78.5 485.4 73.8 472.9 86.5 461.3 98 442.8 98 431.3 86.5S419.7 56.4 431.3 44.9C448.2 27.9 470.1 18.9 492.8 18.9 504.1 18.9 515.6 21.3 527 25.8 560.4 39.6 581.1 70.7 581.1 106.8V279.5C747.3 295.7 868.9 446.5 868.9 546.1 868.8 660.7 687.7 674 551.6 674ZM580.9 338.7V614.8C725 611.9 809.8 586.7 809.8 546.3 810 479.3 714.8 355.1 580.9 338.7Z"
87
+ horiz-adv-x="1000"
88
+ />
89
+
90
+ <glyph
91
+ glyph-name="redis"
92
+ unicode="&#xe00a;"
93
+ d="M882.4 850H117.6C52.7 850 0 797.3 0 732.4V-32.2C0-97.3 52.7-150 117.6-150H882.2C947.1-150 999.8-97.3 999.8-32.4V732.4C1000 797.3 947.3 850 882.4 850ZM941.2-32.4C941.2-64.8 914.8-91.2 882.4-91.2H117.6C85.2-91.2 58.8-64.8 58.8-32.4V732.4C58.8 764.8 85.2 791.2 117.6 791.2H882.2C914.6 791.2 941 764.8 941 732.4V-32.4ZM448.4 674C333.8 674 250.6 590.8 250.6 476.2 250.6 392.2 295.3 325.2 364.3 295.3L226.6 63.7C221.1 54.5 221.1 43.4 226.4 34.2 231.6 25 241.4 19.3 252 19.3H448.4C464.6 19.3 477.9 32.4 477.9 48.8V644.5C477.9 660.7 464.8 674 448.4 674ZM309.4 476C309.4 547.7 353.1 600.4 418.9 612.5V387.5L394.5 346.3C342.6 365.6 309.4 413.7 309.4 476ZM419.1 77.9H303.7L419.1 272.3V77.9ZM652.1 303.1C711.7 336.1 749.2 399 749.2 476 749.2 590.6 666 673.8 551.4 673.8 535.2 673.8 521.9 660.7 521.9 644.3S535 614.8 551.4 614.8C633.2 614.8 690.4 557.6 690.4 475.8S633.2 336.7 551.4 336.7C535.2 336.7 521.9 323.6 521.9 307.2 521.9 291 535 277.7 551.4 277.7 567 277.7 582.2 279.3 596.5 282.2L721.5 34.8C726.8 24.6 737.1 18.6 747.9 18.6 752.3 18.6 756.8 19.5 761.1 21.7 775.6 29.1 781.4 46.7 774 61.1L652.1 303.1Z"
94
+ horiz-adv-x="1000"
95
+ />
96
+
97
+ <glyph
98
+ glyph-name="rollback"
99
+ unicode="&#xe00b;"
100
+ d="M493.4 243.9C481.8 255.5 463.3 255.5 451.8 243.9S440.2 213.9 451.8 202.3L555.9 98.2C561.3 92.8 568.9 89.6 576.6 89.6S591.8 92.8 597.3 98.2L946.9 447.7C958.4 459.2 958.4 477.7 946.9 489.3S916.8 500.8 905.3 489.3L576.6 160.5 493.4 243.9ZM966.4 364.3C960.4 379.3 943.2 386.5 928.1 380.3 913.1 374 905.9 357 912.1 342 927.7 303.9 935.5 264.1 935.5 223 935.5 49.8 794.5-91.2 621.3-91.2 507.6-91.2 407.8-30.7 352.7 60 351.4 64.5 349 68.6 345.7 72.1 321.1 117 307 168.4 307 223 307 396.3 448 537.3 621.3 537.3 689.6 537.3 754.7 515.4 809.8 474 821.3 465.4 837.3 466.2 847.7 476.2 858 486.1 859.8 502 851.8 513.9L829.5 546.7C797.9 598.4 755.3 640.2 706.1 670.9 635.7 783.2 516.8 850 385 850 176 850 5.9 679.9 5.9 470.9 5.9 339.1 72.7 219.9 184.6 150 213.7 103.3 252.7 62.5 300.8 31.6 366-77.1 485.2-150 620.9-150 826.8-150 994.1 17.4 994.1 223.2 994.1 271.7 984.8 319.1 966.4 364.3ZM64.6 470.9C64.6 647.5 208.4 791 385 791 459.8 791 529.7 765.2 585.5 719.7 559.8 725.2 533.2 728.7 506.1 728.7 296.9 729.1 126.8 559 126.8 350 126.8 322.9 130.3 296.3 135.7 270.5 90.4 326.4 64.6 396.3 64.6 470.9ZM254.7 151.4C245.9 162.5 238.1 174.2 230.9 186.3 230.3 187.1 230.1 187.9 229.5 188.7 201.2 236.7 185.7 292 185.7 350 185.7 526.6 329.5 670.1 506.1 670.1 564.3 670.1 619.5 654.3 667.8 625.8 667.8 625.8 668 625.8 668 625.6 689.3 612.9 709.4 598 727.5 580.5 693.4 590.6 657.6 595.9 621.1 595.9 415.2 595.9 247.9 428.5 247.9 222.7 247.9 198.6 250.2 174.6 254.7 151.4Z"
101
+ horiz-adv-x="1000"
102
+ />
103
+
104
+ <glyph
105
+ glyph-name="scale"
106
+ unicode="&#xe00c;"
107
+ d="M618.6 145.3L545.1 187.7C517.4 203.7 482.8 203.7 454.9 187.7L381.4 145.3C353.7 129.3 336.3 99.4 336.3 67.2V-17.6C336.3-49.6 353.5-79.7 381.4-95.7L454.9-138.1C468.8-146.1 484.4-150.2 500-150.2S531.3-146.1 545.1-138.1L618.6-95.7C646.3-79.7 663.7-49.8 663.7-17.6V67.2C663.7 99.4 646.3 129.3 618.6 145.3ZM604.7-17.6C604.7-28.7 598.6-39.1 589.1-44.7L515.6-86.9C506.1-92.6 493.9-92.6 484.4-86.9L410.9-44.5C401.4-38.9 395.3-28.5 395.3-17.4V67.4C395.3 78.5 401.4 88.9 410.9 94.5L484.4 136.9C489.3 139.6 494.5 141 500 141S510.7 139.6 515.6 136.9L589.1 94.5C598.6 88.9 604.7 78.5 604.7 67.4V-17.6ZM292.4 419.1L240.6 389.3C212.9 373.2 195.5 343.4 195.5 311.1V249C195.5 232.8 208.6 219.5 225 219.5S254.5 232.6 254.5 249V311.1C254.5 322.3 260.5 332.6 270.1 338.3L321.9 368.2C335.9 376.4 340.8 394.3 332.6 408.4 324.4 422.5 306.4 427.3 292.4 419.1ZM151.6 663.3L99.8 633.4C72.1 617.4 54.7 587.5 54.7 555.3V493.2C54.7 477 67.8 463.7 84.2 463.7S113.7 476.8 113.7 493.2V555.3C113.7 566.4 119.7 576.8 129.3 582.4L181.1 612.3C195.1 620.5 200 638.5 191.8 652.5 183.6 666.6 165.6 671.5 151.6 663.3ZM415.8 427.1C420.9 427.1 425.8 428.3 430.5 431.1L484.4 462.1C493.9 467.8 506.1 467.8 515.6 462.1L567.4 432.2C581.4 424 599.4 428.9 607.6 443 615.8 457 610.9 475 596.9 483.2L545.1 513.1C517.4 529.1 482.8 529.1 454.9 513.1L401 482C386.9 473.8 382 455.9 390.2 441.8 395.9 432.4 405.7 427.1 415.8 427.1ZM415.8 752C420.9 752 425.8 753.1 430.5 755.9L484.4 787.1C493.9 792.8 506.1 792.8 515.6 787.1L567.4 757.2C581.4 749 599.4 753.9 607.6 768 615.8 782 610.9 800 596.9 808.2L545.1 837.9C517.4 853.9 482.8 853.9 454.9 837.9L401 806.8C386.9 798.6 382 780.7 390.2 766.6 395.9 757.2 405.7 752 415.8 752ZM128.1 119.3C118.6 125 112.5 135.4 112.5 146.5V206.3C112.5 222.5 99.4 235.7 83 235.7S53.5 222.7 53.5 206.3V146.5C53.5 114.5 70.7 84.4 98.6 68.4 103.3 65.6 108.4 64.5 113.3 64.5 123.4 64.5 133.4 69.7 138.9 79.1 147.1 93.4 142.2 111.3 128.1 119.3ZM270.1 36.7C260.5 42.4 254.5 52.7 254.5 63.9V126.4C254.5 142.6 241.4 155.9 225 155.9S195.5 142.8 195.5 126.4V63.9C195.5 31.8 212.7 2 240.6-14.3 245.3-17 250.4-18.2 255.3-18.2 265.4-18.2 275.4-12.9 280.9-3.5 289.1 10.5 284.2 28.5 270.1 36.7ZM759.4 389.3L707.6 419.1C693.6 427.3 675.6 422.5 667.4 408.4 659.2 394.3 664.1 376.4 678.1 368.2L729.9 338.3C739.5 332.6 745.5 322.3 745.5 311.1V249C745.5 232.8 758.6 219.5 775 219.5S804.5 232.6 804.5 249V311.1C804.3 343.4 787.1 373.2 759.4 389.3ZM886.5 555.5V493.4C886.5 477.1 899.6 463.9 916 463.9S945.3 477 945.3 493.2V555.3C945.3 587.3 928.1 617.4 900.2 633.4L848.4 663.3C834.4 671.5 816.4 666.6 808.2 652.5 800 638.5 804.9 620.5 818.9 612.3L870.7 582.4C880.5 577 886.5 566.6 886.5 555.5ZM917 235.7C900.8 235.7 887.5 222.7 887.5 206.3V146.5C887.5 135.4 881.4 125 871.9 119.3 857.8 111.1 852.9 93.2 861.1 79.1 866.6 69.7 876.6 64.5 886.7 64.5 891.8 64.5 896.7 65.6 901.4 68.4 929.1 84.4 946.5 114.3 946.5 146.5V206.3C946.3 222.5 933.2 235.7 917 235.7ZM775 155.9C758.8 155.9 745.5 142.8 745.5 126.4V63.9C745.5 52.7 739.5 42.4 729.9 36.7 715.8 28.5 710.9 10.5 719.1-3.5 724.6-12.9 734.6-18.2 744.7-18.2 749.8-18.2 754.7-17 759.4-14.3 787.1 1.8 804.5 31.6 804.5 63.9V126.4C804.3 142.6 791.2 155.9 775 155.9ZM266 663.5C271.1 663.5 276 664.6 280.7 667.4L333.2 697.9C347.3 706.1 352.1 724 343.9 738.1 335.7 752.1 317.8 757 303.7 748.8L251.2 718.4C237.1 710.2 232.2 692.2 240.4 678.1 246.1 668.8 255.9 663.5 266 663.5ZM664.3 697.9L716.8 667.4C721.5 664.6 726.6 663.5 731.4 663.5 741.6 663.5 751.6 668.8 757 678.1 765.2 692.2 760.4 710.2 746.3 718.4L693.8 748.8C679.7 757 661.7 752.1 653.5 738.1 645.3 723.8 650.2 705.9 664.3 697.9ZM83 290.2C99.2 290.2 112.5 303.3 112.5 319.7V380.5C112.5 396.7 99.4 410 83 410S53.5 396.9 53.5 380.5V319.7C53.7 303.3 66.8 290.2 83 290.2ZM917 409.8C900.8 409.8 887.5 396.7 887.5 380.3V319.5C887.5 303.3 900.6 290 917 290S946.5 303.1 946.5 319.5V380.3C946.3 396.7 933.2 409.8 917 409.8Z"
108
+ horiz-adv-x="1000"
109
+ />
110
+
111
+ <glyph
112
+ glyph-name="spaces"
113
+ unicode="&#xe00d;"
114
+ d="M872.1 660.9L583.4 827.7C532 857.4 468.2 857.4 416.8 827.7L127.9 660.9C76.6 631.3 44.5 576 44.5 516.6V183.2C44.5 123.8 76.4 68.6 127.9 38.9L416.6-127.9C442.4-142.8 471.1-150.2 500-150.2S557.6-142.8 583.4-127.9L872.1 38.9C923.4 68.6 955.5 123.8 955.5 183.2V516.8C955.5 576 923.4 631.3 872.1 660.9ZM896.5 183.2C896.5 144.7 875.8 109 842.6 89.8L553.9-77C520.7-96.1 479.3-96.1 446.1-77L157.4 89.8C124 109.2 103.5 144.9 103.5 183.2V516.8C103.5 555.3 124.2 591 157.4 610.2L446.1 777C479.3 796.1 520.7 796.1 553.9 777L842.6 610.2C875.8 591 896.5 555.3 896.5 516.8V183.2ZM429.9 333.8L361.1 373.4C342 384.6 318.2 384.6 299 373.4L230.3 333.8C211.1 322.7 199.2 302.1 199.2 280.1V200.6C199.2 178.5 211.1 157.8 230.3 146.9L299 107.2C308.6 101.8 319.3 99 330.1 99S351.6 101.8 361.1 107.2L429.9 146.9C449 158 460.9 178.5 460.9 200.6V280.1C460.9 302.1 449 322.7 429.9 333.8ZM402 200.6C402 199.4 401.4 198.4 400.4 197.9L331.6 158.2C330.7 157.6 329.3 157.6 328.3 158.2L259.6 197.9C258.6 198.4 258 199.6 258 200.6V280.1C258 281.3 258.6 282.2 259.6 282.8L328.3 322.5C328.9 322.7 329.3 322.9 329.9 322.9S331.1 322.7 331.4 322.5L400.2 282.8C401.2 282.2 401.8 281.1 401.8 280.1V200.6ZM630.9 483.6V562.9C630.9 585 618.9 605.7 599.8 616.6L531.1 656.3C511.9 667.4 488.1 667.4 468.9 656.3L400.2 616.6C381.1 605.5 369.1 585 369.1 562.9V483.4C369.1 461.3 381.1 440.6 400.2 429.7L468.9 390C478.5 384.6 489.3 381.8 500 381.8S521.5 384.6 531.1 390L599.8 429.7C618.9 440.8 630.9 461.5 630.9 483.6ZM572.1 483.6C572.1 482.4 571.5 481.4 570.5 480.9L501.8 441.2C500.8 440.6 499.4 440.6 498.4 441.2L429.7 480.9C428.7 481.4 428.1 482.6 428.1 483.6V562.9C428.1 564.1 428.7 565 429.7 565.6L498.4 605.3C499.4 605.9 500.6 605.9 501.8 605.3L570.5 565.6C571.5 565 572.1 564.1 572.1 562.9V483.6ZM768.8 333.8L700 373.4C680.9 384.6 657 384.6 637.9 373.4L569.1 333.8C550 322.7 538.1 302.1 538.1 280.1V200.6C538.1 178.5 550 157.8 569.1 146.9L637.9 107.2C647.5 101.8 658.2 99 668.9 99S690.4 101.8 700 107.2L768.8 146.9C787.9 158 799.8 178.5 799.8 200.6V280.1C799.8 302.1 787.9 322.9 768.8 333.8ZM740.8 200.6C740.8 199.4 740.2 198.4 739.3 197.9L670.5 158.2C669.5 157.6 668.2 157.6 667.2 158.2L598.4 197.9C597.5 198.4 596.9 199.6 596.9 200.6V280.1C596.9 281.3 597.5 282.2 598.4 282.8L667.2 322.5C667.8 322.7 668.2 322.9 668.8 322.9S669.9 322.7 670.3 322.5L739.1 282.8C740 282.2 740.6 281.3 740.6 280.1V200.6Z"
115
+ horiz-adv-x="1000"
116
+ />
117
+
118
+ <glyph
119
+ glyph-name="support"
120
+ unicode="&#xe00e;"
121
+ d="M872.1 660.9L583.4 827.7C532 857.4 468.2 857.4 416.8 827.7L127.9 660.9C76.6 631.3 44.5 576 44.5 516.6V183.2C44.5 123.8 76.4 68.6 127.9 38.9L416.6-127.9C442.4-142.8 471.1-150.2 500-150.2S557.6-142.8 583.4-127.9L872.1 38.9C923.4 68.6 955.5 123.8 955.5 183.2V516.8C955.5 576 923.4 631.3 872.1 660.9ZM636.1-29.3L576.8 66.4 723 150.8 782.4 55.1 636.1-29.3ZM526.4 594.7L699 495.1C715.2 485.7 725.4 468.4 725.4 449.6V250.4C725.4 231.6 715.2 214.3 699 204.9L526.4 105.3C510.2 95.9 490 95.9 473.8 105.3L301.2 204.9C285 214.3 274.8 231.6 274.8 250.4V449.6C274.8 468.4 285 485.7 301.2 495.1L473.8 594.7C482 599.4 491 601.8 500.2 601.8 509.2 601.8 518.2 599.4 526.4 594.7ZM722.7 549.4L576.4 633.8 634.4 730.3 780.9 645.7 722.7 549.4ZM157.4 610.2L446.1 777C479.3 796.1 520.7 796.1 553.9 777L596.1 752.3 537.1 654.1C506.8 664.8 472.7 662.1 444.3 645.7L271.7 546.1C245.7 531.1 227.1 506.3 219.7 477.9L103.5 477.7V516.8C103.5 555.1 124 590.8 157.4 610.2ZM103.5 264.6V433.4L216 433.6V264.8L103.5 264.6ZM553.9-76.8C520.7-95.9 479.3-95.9 446.1-76.8L157.4 89.8C124 109.2 103.5 144.9 103.5 183.2V220.5L220.1 220.7C227.7 192.8 246.1 168.6 271.9 153.7L444.5 54.1C461.7 44.1 481.1 39.3 500.2 39.3 512.9 39.3 525.6 41.6 537.7 45.9L598.2-51.6 553.9-76.8ZM896.5 183.2C896.5 144.7 875.8 109 842.6 89.8L820.5 77.1 757.4 178.7C774 198.4 783.8 223.8 783.8 250.4V449.6C783.8 476.4 774 501.8 757.2 521.5L818.9 623.6 842.6 610C875.8 590.8 896.5 555.1 896.5 516.6V183.2Z"
122
+ horiz-adv-x="1000"
123
+ />
124
+
125
+ <glyph
126
+ glyph-name="sync"
127
+ unicode="&#xe00f;"
128
+ d="M943.2 468C938.7 484.6 921.5 494.5 904.9 490 888.3 485.5 878.3 468.4 882.8 451.8 919.1 316.6 879.9 171.1 780.3 72.3 639.5-67.6 418.2-79.5 262.9 35.7L371.1 65.8C387.7 70.5 397.5 87.7 392.8 104.3 388.1 120.9 370.9 130.7 354.3 126L189.5 80.1C188.7 79.9 188.3 79.5 187.5 79.3 186.3 78.9 185.4 78.3 184.2 77.7 181.6 76.6 179.3 75 177.3 73 176.8 72.7 176.2 72.5 175.6 71.9 175.4 71.7 175.4 71.3 175 71.1 172.5 68.4 170.3 65.4 168.9 61.9 168.6 61.1 168.6 60.4 168.4 59.6 167.8 57.6 167 55.7 166.6 53.5L145.9-114.8C143.8-132 156.1-147.7 173-149.6 174.4-149.8 175.6-149.8 177-149.8 192.6-149.8 206.1-138.3 208-122.5L221.7-11.3C303.5-73.4 401.8-105.1 500-105.1 617.4-105.1 735-60.7 824.2 27.9 939.8 142.4 985.4 311.1 943.2 468ZM219.7 627.7C360.7 767.8 582 779.5 737.1 664.3L628.9 634.2C612.3 629.5 602.5 612.3 607.2 595.7 611.1 581.8 623.6 572.9 637.3 572.9 640 572.9 643 573.2 645.7 574L810.5 619.9C811.3 620.1 811.9 620.5 812.7 620.9 813.7 621.3 814.6 621.7 815.8 622.3 818.4 623.4 820.7 625 822.9 627 823.4 627.3 824 627.5 824.6 628.1 824.8 628.3 824.8 628.7 825.2 628.9 827.7 631.6 829.7 634.6 831.3 638.1 831.6 638.9 831.6 639.6 831.8 640.4 832.4 642.4 833.2 644.3 833.4 646.3L854.1 815C856.3 832.2 843.9 847.9 827 849.8 810.2 851.8 794.1 839.6 792.2 822.7L778.5 711.5C598.6 848 340 835.2 175.8 672.3 60.4 557.6 14.6 389.1 56.8 232.2 60.5 218.4 73.2 209 86.9 209 89.6 209 92.4 209.4 95.1 210.2 111.7 214.6 121.7 231.8 117.2 248.4 80.9 383.6 120.1 528.9 219.7 627.7Z"
129
+ horiz-adv-x="1000"
130
+ />
131
+
132
+ <glyph
133
+ glyph-name="team"
134
+ unicode="&#xe010;"
135
+ d="M394.7 516.2V471.3C394.7 429.9 428.3 396.3 469.7 396.3H530.5C571.9 396.3 605.5 429.9 605.5 471.3V516.2C605.5 543.2 616.2 564.8 628.7 590 642.8 618.2 658.6 650.2 658.6 692.2 658.6 779.3 587.5 850 500 850 415.6 850 341.4 776.2 341.4 692.2 341.4 653.1 356.8 621.3 370.5 593.4 383 568 394.7 543.9 394.7 516.2ZM500 791.2C554.1 791.2 599.8 745.9 599.8 692.2 599.8 664.1 588.9 642 576 616.2 562.1 588.5 546.5 557 546.5 516.2V471.3C546.5 462.3 539.3 455.1 530.3 455.1H469.5C460.5 455.1 453.3 462.3 453.3 471.3V516.2C453.3 557.4 437.3 590.2 423.2 619.1 410.7 644.7 400 666.6 400 692.2 400.2 738.9 443 791.2 500 791.2ZM478.5 646.7L499.8 668 521.7 646.1C526 641.8 531.6 639.6 537.3 639.6S548.6 641.8 552.9 646.1C561.5 654.7 561.5 668.8 552.9 677.3L515.4 714.8C506.8 723.4 492.8 723.4 484.2 714.8L447.3 677.9C438.7 669.3 438.7 655.3 447.3 646.7S469.7 638.1 478.5 646.7ZM810.4 102.5C807.2 102.9 805.1 103.5 803.7 104.1 805.3 106.1 807 108.4 809 110.9 828.1 135.4 863.5 180.7 863.5 273.8 863.5 368.8 798.4 440.2 712.3 440.2S561.1 368.8 561.1 273.8C561.1 167 598.2 127 618.2 105.5L619.9 103.7C618.8 103.3 617.2 102.9 615.2 102.7 612.5 102.3 553.9 94.9 502.9 66.4 450.2 97.5 386.3 102.7 385.4 102.7 382.2 103.1 380.1 103.7 378.7 104.3 380.3 106.3 382 108.6 384 111.1 403.1 135.5 438.5 180.9 438.5 274 438.5 368.9 373.4 440.4 287.3 440.4S136.1 368.9 136.1 274C136.1 167.2 173.2 127.1 193.2 105.7 193.8 105.1 194.3 104.3 194.9 103.7 193.9 103.5 193 103.1 191.6 102.9 120.5 97.5 0 60.9 0-43.2 0-94.7 31.1-150 118-150H882C968.9-150 1000-94.7 1000-43.2 1000 60.9 879.5 97.5 810.4 102.5ZM882-91.2H118C77.7-91.2 58.8-76 58.8-43.2 58.8 32.8 194.7 43.9 198 44.3 235.9 50 257.6 74 256.1 108.6 255.3 125 245.1 135.9 236.3 145.5 220.9 162.1 194.9 190 194.9 273.8 194.9 336.1 233.8 381.4 287.3 381.4S379.7 336.1 379.7 273.8C379.7 201 354.3 168.6 337.7 147.3 328.3 135.4 319.3 123.8 318.8 108.6 317 74 338.7 50 378.7 44.1 396.5 42.8 450.4 33.6 484.8 7.8 494.9 0.2 508.8 0 519.1 7.2 561.1 36.3 621.9 44.3 623 44.5 660.9 50.2 682.6 74.2 681.1 108.8 680.3 125.2 670.1 136.1 661.3 145.7 645.9 162.3 619.9 190.2 619.9 274 619.9 336.3 658.8 381.6 712.3 381.6S804.7 336.3 804.7 274C804.7 201.2 779.3 168.8 762.7 147.5 753.3 135.5 744.3 124 743.8 108.8 742 74.2 763.7 50.2 803.9 44.3 805.3 44.1 941 32.2 941-42.8 941.2-76 922.5-91.2 882-91.2Z"
136
+ horiz-adv-x="1000"
137
+ />
138
+
139
+ <glyph
140
+ glyph-name="user"
141
+ unicode="&#xe011;"
142
+ d="M500 847.1C225.8 847.1 2.9 624.2 2.9 350S225.8-147.1 500-147.1 997.1 75.8 997.1 350 774.2 847.1 500 847.1ZM500-88.6C258.1-88.6 61.4 108.1 61.4 350S258.1 788.6 500 788.6 938.6 591.9 938.6 350 741.9-88.6 500-88.6ZM784.9 101.3C716.7 142.2 634 149.6 632.4 149.8 604.5 153.9 605 165.7 605 168.1 606.4 172.7 615.7 185.5 623.1 195.8 651.7 235.4 699.2 302 698.6 397.4 697.7 540.7 616.9 633.5 492.4 633.9H491.7 491.5C367 633.5 286 540.7 285.2 397.4 284.7 302 332.2 235.6 360.8 195.8 368.2 185.5 377.5 172.5 378.6 170.2 378.8 165.7 379.4 153.9 353.4 150 349.9 149.6 267.2 142.4 199 101.3 185.2 92.9 180.8 75 189.1 61.1 197.5 47.3 215.3 42.8 229.3 51.2 285.4 85 357.7 91.6 360.2 91.9 419.4 100.7 438.8 139.5 437.3 173.1 436.5 191.4 424.7 207.5 408.5 230 381.2 268.3 343.5 320.7 344.1 397 344.3 438.7 355.7 575.2 492.4 575.4 629.1 575.2 640.6 438.7 640.8 397 641.2 320.7 603.7 268.3 576.3 230 560.2 207.5 548.5 191.2 547.6 173.1 546 139.5 565.4 100.7 626.4 91.7 627.2 91.7 699.2 85.1 755.5 51.2 760.2 48.3 765.4 46.9 770.7 46.9 780.6 46.9 790.3 51.9 795.7 61.1 803.1 74.9 798.6 92.9 784.9 101.3Z"
143
+ horiz-adv-x="1000"
144
+ />
145
+
146
+ <glyph
147
+ glyph-name="control-2"
148
+ unicode="&#xe012;"
149
+ d="M500-150C471.3-150 442.4-142.6 416.6-127.7L127.9 38.9C76.6 68.6 44.5 123.8 44.5 183.2V516.8C44.5 576.2 76.4 631.4 127.9 661.1L416.6 827.9C468 857.6 531.8 857.6 583.2 827.9L871.9 661.1C923.2 631.4 955.3 576.2 955.3 516.8V183.4C955.3 124 923.4 68.8 871.9 39.1L583.2-127.7C557.6-142.6 528.9-150 500-150ZM157.4 610.2C124 590.8 103.5 555.1 103.5 516.8V183.4C103.5 144.9 124.2 109.2 157.4 90L446.1-76.8C479.3-95.9 520.7-95.9 553.9-76.8L842.6 90C875.8 109.2 896.5 145.1 896.5 183.4V516.8C896.5 555.3 875.8 591 842.6 610.2L553.9 776.8C520.5 795.9 479.3 795.9 446.1 776.8L157.4 610.2ZM675.4 431.6C626.2 431.6 586.3 471.7 586.3 520.7S626.4 609.8 675.4 609.8C724.6 609.8 764.5 569.7 764.5 520.7S724.4 431.6 675.4 431.6ZM675.4 551C658.8 551 645.1 537.3 645.1 520.7S658.8 490.4 675.4 490.4C692.2 490.4 705.7 504.1 705.7 520.7 705.7 537.5 692 551 675.4 551ZM615.6 498.6H276.2C264.1 498.6 254.1 508.6 254.1 520.7 254.1 532.8 264.1 542.8 276.2 542.8H615.6C627.7 542.8 637.7 532.8 637.7 520.7 637.7 508.6 627.7 498.6 615.6 498.6ZM420.3 256.3C371.1 256.3 331.3 296.3 331.3 345.3S371.3 434.4 420.3 434.4 509.4 394.3 509.4 345.3 469.5 256.3 420.3 256.3ZM420.3 375.6C403.7 375.6 390 361.9 390 345.3S403.7 315 420.3 315 450.6 328.7 450.6 345.3C450.6 362.1 436.9 375.6 420.3 375.6ZM360.5 323.2H276.2C264.1 323.2 254.1 333.2 254.1 345.3 254.1 357.4 264.1 367.4 276.2 367.4H360.5C372.7 367.4 382.6 357.4 382.6 345.3 382.6 333.2 372.9 323.2 360.5 323.2ZM545.1 80.9C495.9 80.9 456.1 120.9 456.1 169.9 456.1 219.1 496.1 259 545.1 259S634.2 218.9 634.2 169.9 594.3 80.9 545.1 80.9ZM545.1 200.2C528.5 200.2 514.8 186.5 514.8 169.9S528.5 139.6 545.1 139.6 575.4 153.3 575.4 169.9C575.4 186.7 561.9 200.2 545.1 200.2ZM485.4 147.9H276.2C264.1 147.9 254.1 157.8 254.1 169.9 254.1 182 264.1 192 276.2 192H485.5C497.7 192 507.6 182 507.6 169.9 507.4 157.8 497.7 147.9 485.4 147.9ZM735 147.9H604.7C592.6 147.9 582.6 157.8 582.6 169.9 582.6 182 592.6 192 604.7 192H735C747.1 192 757 182 757 169.9 757 157.8 747.3 147.9 735 147.9ZM735 323.2H480.1C468 323.2 458 333.2 458 345.3 458 357.4 468 367.4 480.1 367.4H735.2C747.3 367.4 757.2 357.4 757.2 345.3 757 333.2 747.3 323.2 735 323.2Z"
150
+ horiz-adv-x="1000"
151
+ />
152
+
153
+ <glyph
154
+ glyph-name="data"
155
+ unicode="&#xe013;"
156
+ d="M500 216.8C467 216.8 433.8 225.4 404.5 242.4L116.6 408.6C71.5 434.8 44.5 481.4 44.5 533.4S71.5 632.2 116.6 658.2L404.3 824.4C463.3 858.4 536.5 858.4 595.5 824.4L883.4 658.2C928.5 632 955.5 585.4 955.5 533.4S928.5 434.6 883.4 408.6L595.5 242.4C566.2 225.4 533 216.8 500 216.8ZM145.9 607.4C119.1 592 103.3 564.5 103.3 533.6S119.3 475.2 145.9 459.8L433.8 293.4C474.6 269.7 525.4 269.9 566.2 293.4L854.1 459.6C880.9 475 896.7 502.5 896.7 533.4S880.7 591.8 854.1 607.2L566.2 773.4C525.4 797.1 474.6 797.1 433.8 773.4L145.9 607.4ZM500 33.4C467 33.4 433.8 42 404.5 59L116.6 225.2C74.2 249.6 47.3 293.4 44.7 342.2 42.2 391.2 63.9 437.5 103.1 466.2 116.2 475.8 134.6 473 144.1 459.8 153.7 446.7 150.8 428.3 137.7 418.8 114.6 402 101.8 374.4 103.3 345.5 104.9 316.2 120.3 291 145.9 276.4L433.8 110.2C474.6 86.5 525.4 86.7 566.2 110.2L854.1 276.4C879.1 290.8 894.5 315.6 896.7 344.3 898.6 372.9 886.5 400.2 864.3 417.4 851.4 427.3 849 445.9 859 458.6 868.9 471.5 887.5 473.8 900.2 463.9 937.9 434.6 958.4 388.5 955.3 340.2 952 292.4 925.2 249.4 883.6 225.4L595.5 59C566.2 42 533 33.4 500 33.4ZM500-150C467-150 433.8-141.4 404.5-124.4L116.6 41.8C74.4 66.2 47.7 109.6 44.7 158.2 42 206.8 63.3 253.1 102.1 282 115.2 291.8 133.6 289.1 143.4 276S150.4 244.5 137.3 234.8C114.5 217.8 101.8 190.4 103.5 161.5 105.3 132.4 120.7 107.2 146.1 92.8L434-73.4C474.8-97.1 525.6-96.9 566.4-73.4L854.3 92.8C879.7 107.4 895.3 132.6 896.9 161.9 898.4 191 885.5 218.4 862.5 235.4 849.4 244.9 846.5 263.3 856.1 276.4 865.6 289.5 884 292.4 897.1 282.8 936.3 254.1 958 207.8 955.5 158.8 952.7 110 926 66.4 883.6 41.8L595.7-124.4C566.2-141.4 533-150 500-150ZM226 263.9C220.1 263.9 214.3 266.2 210.4 270.3 206.3 274.4 203.9 280.1 203.9 285.9 203.9 291.6 206.3 297.5 210.4 301.6 218 309.6 233.2 309.8 241.6 301.6 245.7 297.5 248 291.8 248 285.9S245.7 274.4 241.6 270.3C237.5 266.2 231.6 263.9 226 263.9ZM161.1 305.3C155.3 305.3 149.6 307.6 145.5 311.7 141.4 315.8 139.1 321.7 139.1 327.3 139.1 333.2 141.4 339.1 145.5 343 153.7 351.2 168.8 351.2 176.8 343 180.9 338.9 183.2 333.2 183.2 327.3 183.2 321.7 180.9 315.8 176.8 311.7 172.9 307.6 167 305.3 161.1 305.3ZM226 80.3C220.1 80.3 214.3 82.6 210.4 86.7 206.3 90.6 203.9 96.5 203.9 102.3 203.9 108 206.3 113.9 210.4 118 218 126 233.2 126.2 241.6 118 245.7 113.5 248 108 248 102.3 248 96.5 245.7 90.8 241.6 86.7 237.5 82.6 232 80.3 226 80.3ZM161.1 121.7C155.3 121.7 149.6 124 145.5 128.1 141.4 132.2 139.1 137.9 139.1 143.8S141.4 155.3 145.5 159.4C153.7 167.6 168.6 167.6 176.8 159.4 180.9 155.3 183.2 149.6 183.2 143.8S180.9 132.2 176.8 128.1C172.5 124 167 121.7 161.1 121.7ZM226 460.9C220.1 460.9 214.3 463.3 210.4 467.4 206.3 471.5 203.9 477.1 203.9 483 203.9 488.7 206.3 494.5 210.4 498.6 218.4 506.6 233 506.6 241.2 498.6 245.7 494.5 248 488.9 248 483S245.7 471.5 241.6 467.4C237.5 463.3 231.6 460.9 226 460.9ZM161.1 502.3C155.3 502.3 149.6 504.7 145.5 508.8 141.4 512.9 139.1 518.8 139.1 524.4 139.1 530.3 141.4 535.9 145.5 540 154.1 548.2 168.2 548.2 176.8 540.4 180.9 535.9 183.2 530.5 183.2 524.6S180.9 513.1 176.8 509C172.5 504.7 167 502.3 161.1 502.3Z"
157
+ horiz-adv-x="1000"
158
+ />
159
+
160
+ <glyph
161
+ glyph-name="deploy"
162
+ unicode="&#xe014;"
163
+ d="M852.1 671.3L579.5 828.7C530.5 857 469.5 857 420.5 828.7L147.9 671.3C98.8 643 68.4 590.2 68.4 533.8V218.9C68.4 162.3 98.8 109.6 147.9 81.3L334.4-26.4C348.4-34.4 366.4-29.7 374.6-15.6 382.8-1.6 377.9 16.4 363.9 24.6L177.3 132.2C146.5 150 127.3 183.2 127.3 218.9V533.8C127.3 569.5 146.5 602.7 177.3 620.5L450 777.7C480.9 795.7 519.3 795.7 550.2 777.7L822.9 620.3C853.7 602.5 872.9 569.3 872.9 533.6V218.8C872.9 183 853.7 149.8 822.9 132L636.1 24.2C622.1 16 617.2-2 625.4-16 630.9-25.4 640.8-30.7 651-30.7 656.1-30.7 660.9-29.5 665.6-26.8L852.3 81.1C901.4 109.4 931.8 162.1 931.8 218.8V533.8C931.6 590.2 901.2 643 852.1 671.3ZM657.4 283.2C663.1 277.5 670.7 274.6 678.1 274.6 685.7 274.6 693.2 277.5 698.8 283.2 710.4 294.7 710.4 313.3 698.8 324.8L520.5 502.9C517.8 505.7 514.5 507.8 510.9 509.4 503.7 512.3 495.7 512.3 488.5 509.4 484.8 507.8 481.6 505.7 478.9 502.9L300.6 324.8C289.1 313.3 289.1 294.7 300.6 283.2S330.7 271.7 342.2 283.2L470.3 411.3V-120.5C470.3-136.7 483.4-150 499.8-150 516-150 529.3-136.9 529.3-120.5V411.1L657.4 283.2Z"
164
+ horiz-adv-x="1000"
165
+ />
166
+
167
+ <glyph
168
+ glyph-name="twitter"
169
+ unicode="&#xe015;"
170
+ d="M897.7 553.9C898 545.1 898.2 536.1 898.2 527.3 898.2 256.1 691.8-56.4 314.5-56.4 198.6-56.4 90.8-22.5 0 35.7 16 34 32.4 33 48.8 33 144.9 33 233.4 65.8 303.5 120.9 213.7 122.5 137.9 181.8 111.9 263.5 124.4 260.9 137.3 259.8 150.6 259.8 169.3 259.8 187.5 262.3 204.7 267 110.9 285.7 40 368.8 40 468.2V470.7C67.8 455.5 99.4 446.1 133 445.1 77.9 482 41.8 544.7 41.8 615.8 41.8 653.5 52 688.7 69.5 718.9 170.7 594.7 321.9 513.3 492.4 504.7 488.9 519.7 487.1 535.4 487.1 551.4 487.1 664.6 578.9 756.6 692.2 756.6 751.2 756.6 804.5 731.8 842 691.8 888.7 701 932.6 718.2 972.3 741.6 957 693.8 924.4 653.5 882 628.1 923.4 633 963.1 644.1 999.8 660.4 972.5 618.9 937.7 582.8 897.7 553.9Z"
171
+ horiz-adv-x="1000"
172
+ />
173
+
174
+ <glyph
175
+ glyph-name="pipelines"
176
+ unicode="&#xe016;"
177
+ d="M930.9 514.1L708 642.2C704.5 644.1 701 646.1 697.5 647.7 696.7 648.2 696.1 648.6 695.3 649.2L588.9 714.1C587.7 715 586.3 716 585 716.8L430.9 809.4C388.1 834 335.2 833.8 292.4 809.4L69.3 681.3C26.6 656.6 0 610.9 0 561.7V305.3C0 256.3 26.6 210.4 68.6 186.3L239.6 82.6C241.6 81.4 243.8 80.5 245.9 79.7L331.1 29.1C335.9 25.4 341 21.9 346.3 18.9L405.1-14.8 430.7-30.1C432.2-31.1 434-31.8 435.7-32.6L569.1-109.4C590.4-121.7 614.5-127.7 638.3-127.7S686.1-121.7 707.4-109.4L930.3 18.8C973 43.4 999.4 89.1 999.4 138.1V394.7C1000 443.8 973.4 489.5 930.9 514.1ZM138.7 219.5L101.6 242C78.9 255.1 64.8 279.3 64.8 305.3V561.7C64.8 587.7 78.9 612.1 101.6 625L324.4 753.3C347.1 766.4 375.2 766.4 397.3 753.7L437.5 729.5C435.2 728.3 432.8 727.1 430.7 725.8L207.8 597.7C165 573 138.7 527.3 138.7 478.3V219.5ZM277.3 394.7V136.5L240.2 158.6C217.6 171.7 203.5 195.9 203.5 221.9V478.1C203.5 504.1 217.6 528.5 240.2 541.4L463.1 669.7C485.7 682.8 513.9 682.8 535.9 670.1L576 645.7C573.8 644.5 571.5 643.4 569.3 642.2L346.5 514.1C303.9 489.5 277.3 443.8 277.3 394.7ZM935 138.3C935 112.3 920.9 87.9 898.2 75L675.4-53.3C652.7-66.4 624.6-66.4 602-53.3L437.1 41.4 368.6 82C352.1 95.7 342.2 116.4 342.2 138.1V394.7C342.2 420.7 356.3 445.1 378.9 458L601.8 586.1C624.4 599.2 652.5 599.2 675.2 586.1L898 458C920.7 444.9 934.8 420.7 934.8 394.7V138.3Z"
178
+ horiz-adv-x="1000"
179
+ />
180
+
181
+ <glyph
182
+ glyph-name="github-2"
183
+ unicode="&#xe017;"
184
+ d="M500 820.5C776.2 820.5 1000 604.5 1000 338.1 1000 125 856.8-55.7 658.4-119.7 633-124.4 624-109.4 624-96.5 624-80.7 624.6-28.7 624.6 35.9 624.6 80.9 608.6 110.4 590.6 125.2 702 137.1 818.9 177.9 818.9 363.3 818.9 416 799.6 459 767.6 492.8 772.7 504.9 789.8 554.1 762.5 620.5 762.5 620.5 720.5 633.4 625.2 571.1 585.4 581.8 542.6 587.1 500 587.3 457.4 587.1 414.6 581.8 374.8 571.1 279.3 633.6 237.3 620.5 237.3 620.5 210.2 554.1 227.1 505.1 232.4 492.8 200.4 459 180.9 416 180.9 363.3 180.9 178.3 297.7 136.9 408.6 124.8 394.3 112.7 381.4 91.4 377 60.4 348.4 48 276 26.8 231.4 100.4 231.4 100.4 205.1 146.7 154.9 150.2 154.9 150.2 106.1 150.8 151.4 120.9 151.4 120.9 184.2 106.1 206.8 50.4 206.8 50.4 236.1-43.4 375.2-14.3 375.4-54.5 375.8-84.8 375.8-96.3 375.8-109.2 366.6-124 341.6-119.5 143.2-55.9 0 125 0 338.1 0 604.5 223.8 820.5 500 820.5"
185
+ horiz-adv-x="1000"
186
+ />
187
+
188
+ <glyph
189
+ glyph-name="cli"
190
+ unicode="&#xe018;"
191
+ d="M882.4 850H117.6C52.7 850 0 797.3 0 732.4V-32.2C0-97.3 52.7-150 117.6-150H882.2C947.1-150 999.8-97.3 999.8-32.4V732.4C1000 797.3 947.3 850 882.4 850ZM941.2-32.4C941.2-64.8 914.8-91.2 882.4-91.2H117.6C85.2-91.2 58.8-64.8 58.8-32.4V567.2H941.2V-32.4ZM941.2 611.3H58.8V732.4C58.8 764.8 85.2 791.2 117.6 791.2H882.2C914.6 791.2 941 764.8 941 732.4V611.3ZM202.9 696.1C202.9 673.4 184.6 654.9 161.7 654.9 139.1 654.9 120.5 673.2 120.5 696.1S138.9 737.3 161.7 737.3C184.6 737.3 202.9 718.9 202.9 696.1ZM308.4 696.1C308.4 673.4 290 654.9 267.2 654.9 244.5 654.9 226 673.2 226 696.1S244.3 737.3 267.2 737.3C289.8 737.3 308.4 718.9 308.4 696.1ZM413.7 696.1C413.7 673.4 395.3 654.9 372.5 654.9 349.8 654.9 331.3 673.2 331.3 696.1S349.6 737.3 372.5 737.3C395.1 737.3 413.7 718.9 413.7 696.1ZM126.8 354.1L176.6 403.9 126.8 453.7C115.6 464.8 115.6 483 126.8 494.1 137.9 505.3 156.1 505.3 167.2 494.1L237.3 424C248.4 412.9 248.4 394.7 237.3 383.6L167.2 313.5C161.5 307.8 154.3 305.1 147.1 305.1 139.8 305.1 132.4 307.8 127 313.5 115.6 325 115.6 343 126.8 354.1ZM254.7 319.3C254.7 335.2 267.4 347.9 283.2 347.9H398.2C414.1 347.9 426.8 335.2 426.8 319.3S414.1 290.8 398.2 290.8H283.2C267.4 290.6 254.7 303.5 254.7 319.3Z"
192
+ horiz-adv-x="1000"
193
+ />
194
+
195
+ <glyph
196
+ glyph-name="clock"
197
+ unicode="&#xe019;"
198
+ d="M691.4 392.4C697.1 375.2 687.5 356.6 670.3 351L513.9 300.4C510.5 299.2 507.2 298.8 503.7 298.8 496.9 298.8 490 301 484.4 305.1 476 311.3 470.9 321.1 470.9 331.6V607.8C470.9 626 485.5 640.6 503.7 640.6S536.5 626 536.5 607.8V376.8L650 413.5C667.6 419.1 685.9 409.6 691.4 392.4ZM1000 350C1000 74.2 775.8-150 500-150S0 74.2 0 350 224.4 850 500 850 1000 625.8 1000 350ZM860.5 108.2L821.5 131.3C809.8 138.1 805.9 153.3 812.7 165S834.6 180.9 846.5 173.8L885.4 151C912.7 203.7 929.3 262.7 933 325.2H887.9C874.2 325.2 863.3 336.1 863.3 349.8S874.2 374.4 887.9 374.4H933C929.7 435 914.1 492.2 888.3 543.6L848.8 521.1C844.9 518.9 840.8 517.8 836.7 517.8 828.1 517.8 819.9 522.3 815.2 530.3 808.6 542 812.5 557 824.4 563.9L863.9 586.5C831.8 635.7 790.2 678.1 741.6 710.9L718.4 671.5C713.9 663.7 705.5 659.4 697.1 659.4 692.8 659.4 688.5 660.5 684.6 662.9 672.9 669.7 668.9 685 675.8 696.7L699.2 735.5C646.5 762.9 587.3 779.5 524.6 783.2V737.7C524.6 724 513.7 713.1 500 713.1S475.4 724 475.4 737.7V783C414.8 779.7 357.6 763.9 306.1 738.1L328.7 698.6C335.4 686.9 331.4 671.9 319.5 665 315.6 662.9 311.5 661.7 307.4 661.7 298.8 661.7 290.6 666.2 285.9 674.2L263.3 713.9C214.1 681.8 171.7 640.2 139.1 591.4L178.5 568.2C190.2 561.3 194.1 546.1 187.3 534.4 182.8 526.6 174.4 522.3 166 522.3 161.7 522.3 157.4 523.4 153.5 525.8L114.3 548.8C86.9 496.1 70.3 436.9 67 374.4H112.1C125.8 374.4 136.7 363.5 136.7 349.8S125.8 325.2 112.1 325.2H67C70.5 264.6 86.1 207.6 112.1 156.3L151.2 178.7C162.9 185.4 177.9 181.3 184.8 169.5 191.4 157.8 187.5 142.8 175.6 135.9L136.5 113.5C168.6 64.5 210.2 22.1 258.8-10.5L281.8 28.3C288.7 40 303.7 43.9 315.6 36.9 327.3 30.1 331.3 14.8 324.2 3.1L301.4-35.5C354.1-62.9 413.1-79.5 475.6-83V-38.3C475.6-24.6 486.5-13.7 500.2-13.7S524.8-24.6 524.8-38.3V-83C585.2-79.7 642.4-63.9 693.8-38.1L671.5 0.8C664.8 12.5 668.8 27.5 680.7 34.4 692.4 41 707.4 36.9 714.3 25.2L736.5-13.9C785.5 18.2 827.9 59.6 860.5 108.2Z"
199
+ horiz-adv-x="1000"
200
+ />
201
+
202
+ <glyph
203
+ glyph-name="events"
204
+ unicode="&#xe01a;"
205
+ d="M320.9 478.5C320.9 545.1 266.8 599.2 200.2 599.2 133.6 599.2 79.5 545.1 79.5 478.5 79.5 422.9 117.4 375.8 168.8 361.9V68.9C122.5 55.3 88.5 12.5 88.5-38.3 88.5-99.8 138.7-150 200.2-150S311.9-99.8 311.9-38.3C311.9 12.5 277.9 55.3 231.6 68.9V361.9C282.8 375.8 320.9 422.7 320.9 478.5ZM126.6 478.5C126.6 519.1 159.6 552.1 200.2 552.1 240.8 552.1 273.8 519.1 273.8 478.5 273.8 437.9 240.8 404.9 200.2 404.9 159.6 404.9 126.6 437.9 126.6 478.5ZM620.7 603.9C620.7 670.5 566.6 724.6 500 724.6 433.4 724.6 379.3 670.5 379.3 603.9 379.3 548.2 417.2 501.2 468.6 487.3V194.3C422.3 180.7 388.3 137.9 388.3 87.1 388.3 25.6 438.5-24.6 500-24.6 561.5-24.6 611.7 25.6 611.7 87.1 611.7 137.9 577.7 180.7 531.4 194.3V487.3C582.8 501.2 620.7 548.2 620.7 603.9ZM426.4 603.9C426.4 644.5 459.4 677.5 500 677.5 540.6 677.5 573.6 644.5 573.6 603.9 573.6 563.3 540.6 530.3 500 530.3 459.4 530.3 426.4 563.3 426.4 603.9ZM831.3 319.7V612.7C882.6 626.6 920.5 673.6 920.5 729.3 920.5 795.9 866.4 850 799.8 850 733.2 850 679.1 795.9 679.1 729.3 679.1 673.6 717 626.6 768.4 612.7V319.7C722.1 306.1 688.1 263.3 688.1 212.5 688.1 151 738.3 100.8 799.8 100.8 861.3 100.8 911.5 151 911.5 212.5 911.5 263.3 877.5 306.1 831.3 319.7ZM726.2 729.3C726.2 769.9 759.2 802.9 799.8 802.9 840.4 802.9 873.4 769.9 873.4 729.3 873.4 688.7 840.4 655.7 799.8 655.7 759.2 655.7 726.2 688.7 726.2 729.3Z"
206
+ horiz-adv-x="1000"
207
+ />
208
+
209
+ <glyph
210
+ glyph-name="kafka"
211
+ unicode="&#xe01b;"
212
+ d="M882.4 850H117.6C52.7 850 0 797.3 0 732.4V-32.2C0-97.3 52.7-150 117.6-150H882.2C947.1-150 999.8-97.3 999.8-32.4V732.4C1000 797.3 947.3 850 882.4 850ZM941.2-32.4C941.2-64.8 914.8-91.2 882.4-91.2H117.6C85.2-91.2 58.8-64.8 58.8-32.4V732.4C58.8 764.8 85.2 791.2 117.6 791.2H882.2C914.6 791.2 941 764.8 941 732.4V-32.4ZM369.7 252.3C386.3 229.5 409.6 211.3 437.1 200.2 440.6 198.8 444.3 198 448 198 453.9 198 459.6 199.8 464.6 203.1 472.7 208.6 477.5 217.8 477.5 227.5L476.6 458.8C476.6 468.6 471.7 477.7 463.5 483.2 455.5 488.7 445.1 489.6 435.9 485.9 409.8 475.2 387.7 458 371.3 436.7L306.4 467.2C306.6 470.1 306.8 473 306.8 476 306.8 524.8 267.2 564.5 218.4 564.5S129.9 524.8 129.9 476 169.5 387.5 218.4 387.5C243 387.5 265.2 397.7 281.3 413.9L345.3 383.8C341.8 370.7 339.8 357.2 339.8 343.2 339.8 330.3 341.4 317.6 344.5 305.5L280.1 273.6C264.1 289.3 242.4 298.8 218.4 298.8 169.5 298.8 129.9 259.2 129.9 210.4 129.9 161.5 169.5 121.9 218.4 121.9S306.8 161.5 306.8 210.4C306.8 213.9 306.6 217.4 306.3 220.9L369.7 252.3ZM218.6 446.5C202.1 446.5 189.1 459.8 189.1 476S202.3 505.5 218.6 505.5C235 505.5 248 492.2 248 476 248 471.9 247.3 468.2 245.7 464.6L245.1 463.5C244.9 463.1 244.9 462.9 244.7 462.5 240 452.9 230.1 446.5 218.6 446.5ZM418.4 285.4C414.6 290.2 411.3 295.5 408.6 301 408.2 302 407.8 302.7 407.4 303.7 407.2 304.1 407 304.3 406.8 304.7 401.6 316.6 398.8 329.5 398.8 343.2 398.8 364.5 405.7 384.4 418 400.4L418.4 285.4ZM218.6 180.9C202.1 180.9 189.1 194.1 189.1 210.4S202.3 239.8 218.6 239.8C229.9 239.8 239.8 233.4 244.7 224 244.9 223.8 244.9 223.6 245.1 223.4 245.3 223.2 245.3 223 245.5 222.9 247.3 219.1 248.2 214.8 248.2 210.4 248.2 194.1 235 180.9 218.6 180.9ZM448.2 697.1C399.4 697.1 359.8 657.4 359.8 608.6S399.4 520.1 448.2 520.1C464.5 520.1 477.7 533.2 477.7 549.6V667.8C477.5 684 464.5 697.1 448.2 697.1ZM418.8 605.5C418.6 606.4 418.6 607.6 418.6 608.6 418.6 609.8 418.6 610.7 418.8 611.7V605.5ZM448.2 166.2C399.4 166.2 359.8 126.6 359.8 77.7S399.4-10.7 448.2-10.7C464.5-10.7 477.7 2.3 477.7 18.8V136.7C477.5 152.9 464.5 166.2 448.2 166.2ZM418.8 74.6C418.6 75.6 418.6 76.8 418.6 77.7S418.6 79.9 418.8 80.9V74.6ZM589.6 355.5V336.5L853.5 207C868.2 199.8 874 182.2 867 167.8 861.9 157.4 851.4 151.4 840.6 151.4 836.3 151.4 831.8 152.3 827.7 154.3L589.8 271.1V18.8C589.8 2.5 576.8-10.7 560.4-10.7 544.1-10.7 530.9 2.3 530.9 18.8V666.6C530.9 682.8 543.9 696.1 560.4 696.1 576.6 696.1 589.8 683 589.8 666.6V420.3L828.1 531.3C843 538.1 860.4 531.6 867.2 517S867.6 484.8 852.9 477.9L589.6 355.5Z"
213
+ horiz-adv-x="1000"
214
+ />
215
+
216
+ <glyph
217
+ glyph-name="levelup"
218
+ unicode="&#xe01c;"
219
+ d="M500-150C474.4-150 448.8-143.4 426-130.3L121.1 45.7C75.4 72.1 46.9 121.3 46.9 174V526C46.9 578.7 75.2 627.9 121.1 654.3L425.8 830.3C471.5 856.6 528.3 856.6 574 830.3L878.7 654.3C924.4 627.9 952.9 578.7 952.9 526V174.2C952.9 121.5 924.6 72.3 878.7 45.9L574-130.1C551.4-143.4 525.6-150 500-150ZM500 790.8C484.6 790.8 469.1 786.9 455.5 778.9L150.8 602.9C123.4 587.1 106.3 557.6 106.3 526V174.2C106.3 142.6 123.2 113.1 150.8 97.3L455.5-78.7C482.8-94.5 517-94.5 544.5-78.7L849.2 97.3C876.6 113.1 893.8 142.6 893.8 174.2V526C893.8 557.6 876.8 587.1 849.2 602.9L544.5 778.9C530.9 786.7 515.4 790.8 500 790.8ZM135.9 628.7H136.1 135.9ZM500 587.7C368.9 587.7 262.3 481.1 262.3 350S368.9 112.3 500 112.3 737.7 218.9 737.7 350 631.1 587.7 500 587.7ZM500 171.7C401.6 171.7 321.7 251.8 321.7 350S401.8 528.3 500 528.3 678.3 448.2 678.3 350 598.4 171.7 500 171.7ZM599.2 388.9H529.7V458.4C529.7 474.8 516.4 488.1 500 488.1 483.6 488.1 470.3 474.8 470.3 458.4V388.9H400.8C384.4 388.9 371.1 375.6 371.1 359.2S384.4 329.5 400.8 329.5H470.3V260C470.3 243.6 483.6 230.3 500 230.3 516.4 230.3 529.7 243.6 529.7 260V329.5H599.2C615.6 329.5 628.9 342.8 628.9 359.2S615.6 388.9 599.2 388.9Z"
220
+ horiz-adv-x="1000"
221
+ />
222
+
223
+ <glyph
224
+ glyph-name="enterprise"
225
+ unicode="&#xe01d;"
226
+ d="M829.7 563.7L712.9 629.1C698.6 637.1 680.5 632 672.7 617.8 664.6 603.5 669.7 585.5 684 577.5L800.6 512.3C822.7 499.6 837.1 473 837.1 444.5V140.8C837.1 123.2 831.1 106.6 821.7 93.4L739.5 139.8V327.7C739.5 335.5 735.4 342.8 728.7 346.7L632 405.7V678.1C632 678.5 631.8 678.7 631.8 679.1 631.6 682.4 631.1 685.9 629.3 689.1L629.1 689.3C628.9 689.5 628.7 689.6 628.7 689.8 627 692.8 624.4 694.9 621.7 696.7 621.3 696.9 621.1 697.3 620.9 697.5L524.8 751.8V827.5C524.8 839.8 514.8 849.8 502.5 849.8 490.2 849.8 480.3 839.8 480.3 827.5V751.8L384.2 697.5C383.8 697.3 383.4 696.7 383 696.5L380.7 694.7C379.9 694.1 379.3 693.4 378.7 692.8L377 690.4C376.6 690 376.2 689.6 376 689.3 375.8 688.9 375.8 688.5 375.6 688.1 375.2 687.3 374.8 686.5 374.6 685.5 374.2 684.6 374 683.6 373.8 682.4 373.6 681.4 373.4 680.5 373.4 679.5 373.4 679.1 373.2 678.7 373.2 678.3V405.9L276.6 346.9C269.9 342.8 265.8 335.7 265.8 327.9V140L179.7 91.4C169.3 105.1 162.9 122.3 162.9 140.8V444.5C162.9 473 177.1 499.6 198.8 511.9L310.9 572.7C325.4 580.5 330.7 598.4 322.9 612.9 315 627.3 297.1 632.6 282.6 624.8L169.9 563.7C128.9 540.2 103.5 494.5 103.5 444.5V140.8C103.5 91.4 129.5 44.7 169.5 21.9L431.6-132.4C452.3-144.3 476.2-150.2 500-150.2S547.9-144.1 568.9-132.2L830.1 21.7C870.3 44.7 896.5 91.4 896.5 140.8V444.5C896.3 494.5 870.9 540.2 829.7 563.7ZM502.3 713.3L564.6 678.1 502.3 643 440 678.1 502.3 713.3ZM372.7-28.9L218.2 62.1 287.5 101.4 372.7 53.1V-28.9ZM587.5 66V-52.3L539.1-81.1C515.4-94.5 484.8-94.7 461.3-81.3L417.2-55.3V66C417.2 74 412.9 81.4 405.9 85.4L309.8 139.6V315L372.7 353.3V251.6C353.5 243 340 223.8 340 201.4 340 171.1 364.6 146.5 394.9 146.5S449.8 171.1 449.8 201.4C449.8 223.6 436.3 243 417.2 251.6V640L480.3 604.5V14.8C480.3 2.5 490.2-7.4 502.5-7.4 514.8-7.4 524.8 2.5 524.8 14.8V604.3L587.9 639.8V251.6C568.8 243 555.3 223.8 555.3 201.4 555.3 171.1 579.9 146.5 610.2 146.5S665 171.1 665 201.4C665 223.6 651.6 243 632.4 251.6V353.3L695.3 315V139.6L599.2 85.4C591.8 81.4 587.5 74 587.5 66ZM632-26.2V53.1L717.2 101.4 784.2 63.5 632-26.2Z"
227
+ horiz-adv-x="1000"
228
+ />
229
+
230
+ <glyph
231
+ glyph-name="stars"
232
+ unicode="&#xe01f;"
233
+ d="M499.8 804.2H499.8C486.9 804.2 462.1 800 441.7 772.1 432.4 759.4 424.9 743.1 418.8 722.4L363.8 536C361.5 528.2 348.2 517.3 338.3 517.3H124.8C103.5 517.3 85.9 514.8 71.3 509.6 38.5 498.1 27.5 475.3 23.9 462.8 20.3 450.3 17.6 425.2 39.3 398 49 385.8 62.7 374.3 81 362.9L256.9 252.9C262.8 249.2 266.5 238.1 263.9 231.9L175.6 22.7C164-4.8 151.1-44.9 172.3-76.9 183.9-94.5 203.2-104.6 225-104.6 247.3-104.6 270.9-94.3 299.1-72.1L486.2 74.9C488.4 76.7 493.3 78.7 499.8 78.7 506.4 78.7 511.2 76.7 513.5 74.9L700.6-72.1C728.7-94.2 752.2-104.5 774.5-104.5 796.4-104.5 815.6-94.4 827.3-76.7 848.5-44.8 835.6-4.7 824.1 22.6L735.8 231.9C733.5 237.4 736.6 249 742.8 252.9L918.7 362.9C937.1 374.3 950.7 385.8 960.5 397.9 982.4 425.2 979.7 450.4 976.1 462.9 972.5 475.5 961.5 498.2 928.5 509.7 913.9 514.8 896.3 517.3 874.9 517.3H661.4C651.6 517.3 638.5 526.9 635.8 536L580.9 722.4C574.8 743.1 567.3 759.3 558 772 537.6 800 512.8 804.2 499.8 804.2M499.8 753.7C511.6 753.7 523.4 738.4 532.4 708.1L587.4 521.7C596.3 491.4 628.9 466.8 661.4 466.8H874.8C938.2 466.8 946.1 439.6 891.9 405.7L716 295.7C688.9 278.8 677.2 240.9 689.2 212.3L777.5 3C793.1-34 790.8-54 774.5-54 764.9-54 750.3-47 731.8-32.4L544.7 114.7C532.3 124.4 516.1 129.2 499.8 129.2 483.6 129.2 467.3 124.4 455 114.7L267.9-32.3C249.2-47 234.6-54.1 225-54.1 208.8-54.1 206.5-34.1 222.2 3L310.4 212.3C322.8 241.4 310.6 279 283.7 295.7L107.7 405.7C53.8 439.4 62.1 466.8 124.8 466.8H338.3C370.2 466.8 403.6 492.1 412.3 521.7L467.3 708.1C476.3 738.5 488.1 753.7 499.8 753.7"
234
+ horiz-adv-x="1000"
235
+ />
236
+
237
+ <glyph
238
+ glyph-name="check"
239
+ unicode="&#xe020;"
240
+ d="M943.1 685.7C929.8 699 908.1 699 894.8 685.7L296.8 87.8 103.3 281.3C89.9 294.7 68.3 294.7 54.9 281.3 41.6 268 41.6 246.3 54.9 233L272.7 15.2C279.3 8.6 288.1 5.2 296.8 5.2 305.6 5.2 314.3 8.6 321 15.2L943.1 637.4C956.5 650.7 956.5 672.3 943.1 685.7"
241
+ horiz-adv-x="1000"
242
+ />
243
+
244
+ <glyph
245
+ glyph-name="cancel"
246
+ unicode="&#xe021;"
247
+ d="M897.4-83C908.9-94.4 927.4-94.4 938.8-83 950.3-71.5 950.3-53 938.8-41.6L115.4 781.8C104 793.3 85.5 793.3 74 781.8 62.6 770.4 62.6 751.9 74 740.4L897.4-83ZM926.2 741.4C937.6 752.8 937.6 771.4 926.2 782.8 914.7 794.3 896.2 794.3 884.7 782.8L61.3-40.6C49.9-52 49.9-70.6 61.3-82 72.8-93.5 91.3-93.5 102.7-82L926.2 741.4Z"
248
+ horiz-adv-x="1000"
249
+ />
250
+
251
+ <glyph
252
+ glyph-name="forks"
253
+ unicode="&#xe022;"
254
+ d="M257.8 176.2V146.9H316.4V555.1H257.8V525.8M719.7 226.8C754.7 244.4 781.3 287.4 781.3 326.6V451.6H722.7V326.6C722.7 309.6 708.6 286.8 693.4 279.1L373.6 118.4 399.9 66 719.7 226.8ZM427.7 646.9C427.7 724.5 364.8 787.5 287.1 787.5S146.5 724.5 146.5 646.9 209.4 506.3 287.1 506.3 427.7 569.2 427.7 646.9ZM205.1 646.9C205.1 692.2 241.8 728.9 287.1 728.9S369.1 692.2 369.1 646.9 332.4 564.8 287.1 564.8 205.1 601.6 205.1 646.9ZM892.6 562.9C892.6 640.6 829.6 703.5 752 703.5S611.3 640.6 611.3 562.9 674.3 422.3 752 422.3 892.6 485.2 892.6 562.9ZM669.9 562.9C669.9 608.2 706.6 644.9 752 644.9S834 608.2 834 562.9 797.3 480.9 752 480.9 669.9 517.6 669.9 562.9ZM427.7 51.2C427.7 128.8 364.8 191.8 287.1 191.8S146.5 128.8 146.5 51.2 209.4-89.5 287.1-89.5 427.7-26.5 427.7 51.2ZM205.1 51.2C205.1 96.5 241.8 133.2 287.1 133.2S369.1 96.5 369.1 51.2 332.4-30.9 287.1-30.9 205.1 5.9 205.1 51.2Z"
255
+ horiz-adv-x="1000"
256
+ />
257
+
258
+
259
+ </font>
260
+ </defs>
261
+ </svg>
Binary file
Binary file